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

64009 строки
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"]
  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. }
  2355. //species
  2356. function getSpeciesInfo(speciesList) {
  2357. let result = new Set();
  2358. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2359. result.add(entry)
  2360. });
  2361. return Array.from(result);
  2362. };
  2363. function getSpeciesInfoHelper(species) {
  2364. if (!speciesData[species]) {
  2365. console.warn(species + " doesn't exist");
  2366. return [];
  2367. }
  2368. if (speciesData[species].parents) {
  2369. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2370. } else {
  2371. return [species];
  2372. }
  2373. }
  2374. characterMakers.push(() => makeCharacter(
  2375. {
  2376. name: "Fen",
  2377. species: ["crux"],
  2378. description: {
  2379. title: "Bio",
  2380. text: "Very furry. Sheds on everything."
  2381. },
  2382. tags: [
  2383. "anthro",
  2384. "goo"
  2385. ]
  2386. },
  2387. {
  2388. front: {
  2389. height: math.unit(12, "feet"),
  2390. weight: math.unit(2400, "lb"),
  2391. preyCapacity: math.unit(1, "people"),
  2392. name: "Front",
  2393. image: {
  2394. source: "./media/characters/fen/front.svg",
  2395. extra: 1804/1562,
  2396. bottom: 205/2009
  2397. },
  2398. extraAttributes: {
  2399. pawSize: {
  2400. name: "Paw Size",
  2401. power: 2,
  2402. type: "area",
  2403. base: math.unit(0.35, "m^2")
  2404. }
  2405. }
  2406. },
  2407. diving: {
  2408. height: math.unit(4.9, "meters"),
  2409. weight: math.unit(2400, "lb"),
  2410. name: "Diving",
  2411. image: {
  2412. source: "./media/characters/fen/diving.svg"
  2413. }
  2414. },
  2415. sleeby: {
  2416. height: math.unit(3.45, "meters"),
  2417. weight: math.unit(2400, "lb"),
  2418. name: "Sleeby",
  2419. image: {
  2420. source: "./media/characters/fen/sleeby.svg"
  2421. }
  2422. },
  2423. goo: {
  2424. height: math.unit(12, "feet"),
  2425. weight: math.unit(3600, "lb"),
  2426. volume: math.unit(1000, "liters"),
  2427. preyCapacity: math.unit(6, "people"),
  2428. name: "Goo",
  2429. image: {
  2430. source: "./media/characters/fen/goo.svg",
  2431. extra: 1307/1071,
  2432. bottom: 134/1441
  2433. }
  2434. },
  2435. horror: {
  2436. height: math.unit(13.6, "feet"),
  2437. weight: math.unit(2400, "lb"),
  2438. preyCapacity: math.unit(1, "people"),
  2439. name: "Horror",
  2440. image: {
  2441. source: "./media/characters/fen/horror.svg",
  2442. extra: 893/797,
  2443. bottom: 0/893
  2444. }
  2445. },
  2446. gooNsfw: {
  2447. height: math.unit(12, "feet"),
  2448. weight: math.unit(3750, "lb"),
  2449. volume: math.unit(1000, "liters"),
  2450. preyCapacity: math.unit(6, "people"),
  2451. name: "Goo (NSFW)",
  2452. image: {
  2453. source: "./media/characters/fen/goo-nsfw.svg",
  2454. extra: 1875/1734,
  2455. bottom: 122/1997
  2456. }
  2457. },
  2458. maw: {
  2459. height: math.unit(5.03, "feet"),
  2460. name: "Maw",
  2461. image: {
  2462. source: "./media/characters/fen/maw.svg"
  2463. }
  2464. },
  2465. gooCeiling: {
  2466. height: math.unit(6.6, "feet"),
  2467. weight: math.unit(3000, "lb"),
  2468. volume: math.unit(1000, "liters"),
  2469. preyCapacity: math.unit(6, "people"),
  2470. name: "Maw (Goo)",
  2471. image: {
  2472. source: "./media/characters/fen/goo-maw.svg"
  2473. }
  2474. },
  2475. paw: {
  2476. height: math.unit(3.77, "feet"),
  2477. name: "Paw",
  2478. image: {
  2479. source: "./media/characters/fen/paw.svg"
  2480. },
  2481. extraAttributes: {
  2482. "toeSize": {
  2483. name: "Toe Size",
  2484. power: 2,
  2485. type: "area",
  2486. base: math.unit(0.02875, "m^2")
  2487. },
  2488. "pawSize": {
  2489. name: "Paw Size",
  2490. power: 2,
  2491. type: "area",
  2492. base: math.unit(0.378, "m^2")
  2493. },
  2494. }
  2495. },
  2496. tail: {
  2497. height: math.unit(12.1, "feet"),
  2498. name: "Tail",
  2499. image: {
  2500. source: "./media/characters/fen/tail.svg"
  2501. }
  2502. },
  2503. tailFull: {
  2504. height: math.unit(12.1, "feet"),
  2505. name: "Full Tail",
  2506. image: {
  2507. source: "./media/characters/fen/tail-full.svg"
  2508. }
  2509. },
  2510. back: {
  2511. height: math.unit(12, "feet"),
  2512. weight: math.unit(2400, "lb"),
  2513. name: "Back",
  2514. image: {
  2515. source: "./media/characters/fen/back.svg",
  2516. },
  2517. info: {
  2518. description: {
  2519. mode: "append",
  2520. text: "\n\nHe is not currently looking at you."
  2521. }
  2522. }
  2523. },
  2524. full: {
  2525. height: math.unit(1.85, "meter"),
  2526. weight: math.unit(3200, "lb"),
  2527. preyCapacity: math.unit(3, "people"),
  2528. name: "Full",
  2529. image: {
  2530. source: "./media/characters/fen/full.svg",
  2531. extra: 1133/859,
  2532. bottom: 145/1278
  2533. },
  2534. info: {
  2535. description: {
  2536. mode: "append",
  2537. text: "\n\nMunch."
  2538. }
  2539. }
  2540. },
  2541. gooLounging: {
  2542. height: math.unit(4.53, "feet"),
  2543. weight: math.unit(3000, "lb"),
  2544. preyCapacity: math.unit(6, "people"),
  2545. name: "Goo (Lounging)",
  2546. image: {
  2547. source: "./media/characters/fen/goo-lounging.svg",
  2548. bottom: 116 / 613
  2549. }
  2550. },
  2551. lounging: {
  2552. height: math.unit(10.52, "feet"),
  2553. weight: math.unit(2400, "lb"),
  2554. name: "Lounging",
  2555. image: {
  2556. source: "./media/characters/fen/lounging.svg"
  2557. }
  2558. },
  2559. },
  2560. [
  2561. {
  2562. name: "Small",
  2563. height: math.unit(2.2428, "meter")
  2564. },
  2565. {
  2566. name: "Normal",
  2567. height: math.unit(12, "feet"),
  2568. default: true,
  2569. },
  2570. {
  2571. name: "Big",
  2572. height: math.unit(20, "feet")
  2573. },
  2574. {
  2575. name: "Minimacro",
  2576. height: math.unit(40, "feet"),
  2577. info: {
  2578. description: {
  2579. mode: "append",
  2580. text: "\n\nTOO DAMN BIG"
  2581. }
  2582. }
  2583. },
  2584. {
  2585. name: "Macro",
  2586. height: math.unit(100, "feet"),
  2587. info: {
  2588. description: {
  2589. mode: "append",
  2590. text: "\n\nTOO DAMN BIG"
  2591. }
  2592. }
  2593. },
  2594. {
  2595. name: "Megamacro",
  2596. height: math.unit(2, "miles")
  2597. },
  2598. {
  2599. name: "Gigamacro",
  2600. height: math.unit(10, "earths")
  2601. },
  2602. ]
  2603. ))
  2604. characterMakers.push(() => makeCharacter(
  2605. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2606. {
  2607. front: {
  2608. height: math.unit(183, "cm"),
  2609. weight: math.unit(80, "kg"),
  2610. name: "Front",
  2611. image: {
  2612. source: "./media/characters/sofia-fluttertail/front.svg",
  2613. bottom: 0.01,
  2614. extra: 2154 / 2081
  2615. }
  2616. },
  2617. frontAlt: {
  2618. height: math.unit(183, "cm"),
  2619. weight: math.unit(80, "kg"),
  2620. name: "Front (alt)",
  2621. image: {
  2622. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2623. }
  2624. },
  2625. back: {
  2626. height: math.unit(183, "cm"),
  2627. weight: math.unit(80, "kg"),
  2628. name: "Back",
  2629. image: {
  2630. source: "./media/characters/sofia-fluttertail/back.svg"
  2631. }
  2632. },
  2633. kneeling: {
  2634. height: math.unit(125, "cm"),
  2635. weight: math.unit(80, "kg"),
  2636. name: "Kneeling",
  2637. image: {
  2638. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2639. extra: 1033 / 977,
  2640. bottom: 23.7 / 1057
  2641. }
  2642. },
  2643. maw: {
  2644. height: math.unit(183 / 5, "cm"),
  2645. name: "Maw",
  2646. image: {
  2647. source: "./media/characters/sofia-fluttertail/maw.svg"
  2648. }
  2649. },
  2650. mawcloseup: {
  2651. height: math.unit(183 / 5 * 0.41, "cm"),
  2652. name: "Maw (Closeup)",
  2653. image: {
  2654. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2655. }
  2656. },
  2657. paws: {
  2658. height: math.unit(1.17, "feet"),
  2659. name: "Paws",
  2660. image: {
  2661. source: "./media/characters/sofia-fluttertail/paws.svg",
  2662. extra: 851 / 851,
  2663. bottom: 17 / 868
  2664. }
  2665. },
  2666. },
  2667. [
  2668. {
  2669. name: "Normal",
  2670. height: math.unit(1.83, "meter")
  2671. },
  2672. {
  2673. name: "Size Thief",
  2674. height: math.unit(18, "feet")
  2675. },
  2676. {
  2677. name: "50 Foot Collie",
  2678. height: math.unit(50, "feet")
  2679. },
  2680. {
  2681. name: "Macro",
  2682. height: math.unit(96, "feet"),
  2683. default: true
  2684. },
  2685. {
  2686. name: "Megamerger",
  2687. height: math.unit(650, "feet")
  2688. },
  2689. ]
  2690. ))
  2691. characterMakers.push(() => makeCharacter(
  2692. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2693. {
  2694. front: {
  2695. height: math.unit(7, "feet"),
  2696. weight: math.unit(100, "kg"),
  2697. name: "Front",
  2698. image: {
  2699. source: "./media/characters/march/front.svg",
  2700. extra: 1992/1851,
  2701. bottom: 39/2031
  2702. }
  2703. },
  2704. foot: {
  2705. height: math.unit(0.9, "feet"),
  2706. name: "Foot",
  2707. image: {
  2708. source: "./media/characters/march/foot.svg"
  2709. }
  2710. },
  2711. },
  2712. [
  2713. {
  2714. name: "Normal",
  2715. height: math.unit(7.9, "feet")
  2716. },
  2717. {
  2718. name: "Macro",
  2719. height: math.unit(220, "meters")
  2720. },
  2721. {
  2722. name: "Megamacro",
  2723. height: math.unit(2.98, "km"),
  2724. default: true
  2725. },
  2726. {
  2727. name: "Gigamacro",
  2728. height: math.unit(15963, "km")
  2729. },
  2730. {
  2731. name: "Teramacro",
  2732. height: math.unit(2980000000, "km")
  2733. },
  2734. {
  2735. name: "Examacro",
  2736. height: math.unit(250, "parsecs")
  2737. },
  2738. ]
  2739. ))
  2740. characterMakers.push(() => makeCharacter(
  2741. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2742. {
  2743. front: {
  2744. height: math.unit(6, "feet"),
  2745. weight: math.unit(60, "kg"),
  2746. name: "Front",
  2747. image: {
  2748. source: "./media/characters/noir/front.svg",
  2749. extra: 1,
  2750. bottom: 0.032
  2751. }
  2752. },
  2753. },
  2754. [
  2755. {
  2756. name: "Normal",
  2757. height: math.unit(6.6, "feet")
  2758. },
  2759. {
  2760. name: "Macro",
  2761. height: math.unit(500, "feet")
  2762. },
  2763. {
  2764. name: "Megamacro",
  2765. height: math.unit(2.5, "km"),
  2766. default: true
  2767. },
  2768. {
  2769. name: "Gigamacro",
  2770. height: math.unit(22500, "km")
  2771. },
  2772. {
  2773. name: "Teramacro",
  2774. height: math.unit(2500000000, "km")
  2775. },
  2776. {
  2777. name: "Examacro",
  2778. height: math.unit(200, "parsecs")
  2779. },
  2780. ]
  2781. ))
  2782. characterMakers.push(() => makeCharacter(
  2783. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2784. {
  2785. front: {
  2786. height: math.unit(7, "feet"),
  2787. weight: math.unit(100, "kg"),
  2788. name: "Front",
  2789. image: {
  2790. source: "./media/characters/okuri/front.svg",
  2791. extra: 739/665,
  2792. bottom: 39/778
  2793. }
  2794. },
  2795. back: {
  2796. height: math.unit(7, "feet"),
  2797. weight: math.unit(100, "kg"),
  2798. name: "Back",
  2799. image: {
  2800. source: "./media/characters/okuri/back.svg",
  2801. extra: 734/653,
  2802. bottom: 13/747
  2803. }
  2804. },
  2805. sitting: {
  2806. height: math.unit(2.95, "feet"),
  2807. weight: math.unit(100, "kg"),
  2808. name: "Sitting",
  2809. image: {
  2810. source: "./media/characters/okuri/sitting.svg",
  2811. extra: 370/318,
  2812. bottom: 99/469
  2813. }
  2814. },
  2815. },
  2816. [
  2817. {
  2818. name: "Smallest",
  2819. height: math.unit(5 + 2/12, "feet")
  2820. },
  2821. {
  2822. name: "Smaller",
  2823. height: math.unit(300, "feet")
  2824. },
  2825. {
  2826. name: "Small",
  2827. height: math.unit(1000, "feet")
  2828. },
  2829. {
  2830. name: "Macro",
  2831. height: math.unit(1, "mile")
  2832. },
  2833. {
  2834. name: "Mega Macro (Small)",
  2835. height: math.unit(20, "km")
  2836. },
  2837. {
  2838. name: "Mega Macro (Large)",
  2839. height: math.unit(600, "km")
  2840. },
  2841. {
  2842. name: "Giga Macro",
  2843. height: math.unit(10000, "km")
  2844. },
  2845. {
  2846. name: "Normal",
  2847. height: math.unit(577560, "km"),
  2848. default: true
  2849. },
  2850. {
  2851. name: "Large",
  2852. height: math.unit(4, "galaxies")
  2853. },
  2854. {
  2855. name: "Largest",
  2856. height: math.unit(15, "multiverses")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(7, "feet"),
  2865. weight: math.unit(100, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/manny/front.svg",
  2869. extra: 1,
  2870. bottom: 0.06
  2871. }
  2872. },
  2873. back: {
  2874. height: math.unit(7, "feet"),
  2875. weight: math.unit(100, "kg"),
  2876. name: "Back",
  2877. image: {
  2878. source: "./media/characters/manny/back.svg",
  2879. extra: 1,
  2880. bottom: 0.014
  2881. }
  2882. },
  2883. },
  2884. [
  2885. {
  2886. name: "Normal",
  2887. height: math.unit(7, "feet"),
  2888. },
  2889. {
  2890. name: "Macro",
  2891. height: math.unit(78, "feet"),
  2892. default: true
  2893. },
  2894. {
  2895. name: "Macro+",
  2896. height: math.unit(300, "meters")
  2897. },
  2898. {
  2899. name: "Macro++",
  2900. height: math.unit(2400, "meters")
  2901. },
  2902. {
  2903. name: "Megamacro",
  2904. height: math.unit(5167, "meters")
  2905. },
  2906. {
  2907. name: "Gigamacro",
  2908. height: math.unit(41769, "miles")
  2909. },
  2910. ]
  2911. ))
  2912. characterMakers.push(() => makeCharacter(
  2913. { name: "Adake", species: ["tiger"], 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/adake/front-1.svg"
  2921. }
  2922. },
  2923. frontAlt: {
  2924. height: math.unit(7, "feet"),
  2925. weight: math.unit(100, "kg"),
  2926. name: "Front (Alt)",
  2927. image: {
  2928. source: "./media/characters/adake/front-2.svg",
  2929. extra: 1,
  2930. bottom: 0.01
  2931. }
  2932. },
  2933. back: {
  2934. height: math.unit(7, "feet"),
  2935. weight: math.unit(100, "kg"),
  2936. name: "Back",
  2937. image: {
  2938. source: "./media/characters/adake/back.svg",
  2939. }
  2940. },
  2941. kneel: {
  2942. height: math.unit(5.385, "feet"),
  2943. weight: math.unit(100, "kg"),
  2944. name: "Kneeling",
  2945. image: {
  2946. source: "./media/characters/adake/kneel.svg",
  2947. bottom: 0.052
  2948. }
  2949. },
  2950. },
  2951. [
  2952. {
  2953. name: "Normal",
  2954. height: math.unit(7, "feet"),
  2955. },
  2956. {
  2957. name: "Macro",
  2958. height: math.unit(78, "feet"),
  2959. default: true
  2960. },
  2961. {
  2962. name: "Macro+",
  2963. height: math.unit(300, "meters")
  2964. },
  2965. {
  2966. name: "Macro++",
  2967. height: math.unit(2400, "meters")
  2968. },
  2969. {
  2970. name: "Megamacro",
  2971. height: math.unit(5167, "meters")
  2972. },
  2973. {
  2974. name: "Gigamacro",
  2975. height: math.unit(41769, "miles")
  2976. },
  2977. ]
  2978. ))
  2979. characterMakers.push(() => makeCharacter(
  2980. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2981. {
  2982. front: {
  2983. height: math.unit(1.65, "meters"),
  2984. weight: math.unit(50, "kg"),
  2985. name: "Front",
  2986. image: {
  2987. source: "./media/characters/elijah/front.svg",
  2988. extra: 858 / 830,
  2989. bottom: 95.5 / 953.8559
  2990. }
  2991. },
  2992. back: {
  2993. height: math.unit(1.65, "meters"),
  2994. weight: math.unit(50, "kg"),
  2995. name: "Back",
  2996. image: {
  2997. source: "./media/characters/elijah/back.svg",
  2998. extra: 895 / 850,
  2999. bottom: 5.3 / 897.956
  3000. }
  3001. },
  3002. frontNsfw: {
  3003. height: math.unit(1.65, "meters"),
  3004. weight: math.unit(50, "kg"),
  3005. name: "Front (NSFW)",
  3006. image: {
  3007. source: "./media/characters/elijah/front-nsfw.svg",
  3008. extra: 858 / 830,
  3009. bottom: 95.5 / 953.8559
  3010. }
  3011. },
  3012. backNsfw: {
  3013. height: math.unit(1.65, "meters"),
  3014. weight: math.unit(50, "kg"),
  3015. name: "Back (NSFW)",
  3016. image: {
  3017. source: "./media/characters/elijah/back-nsfw.svg",
  3018. extra: 895 / 850,
  3019. bottom: 5.3 / 897.956
  3020. }
  3021. },
  3022. dick: {
  3023. height: math.unit(1, "feet"),
  3024. name: "Dick",
  3025. image: {
  3026. source: "./media/characters/elijah/dick.svg"
  3027. }
  3028. },
  3029. beakOpen: {
  3030. height: math.unit(1.25, "feet"),
  3031. name: "Beak (Open)",
  3032. image: {
  3033. source: "./media/characters/elijah/beak-open.svg"
  3034. }
  3035. },
  3036. beakShut: {
  3037. height: math.unit(1.25, "feet"),
  3038. name: "Beak (Shut)",
  3039. image: {
  3040. source: "./media/characters/elijah/beak-shut.svg"
  3041. }
  3042. },
  3043. footFlexing: {
  3044. height: math.unit(1.61, "feet"),
  3045. name: "Foot (Flexing)",
  3046. image: {
  3047. source: "./media/characters/elijah/foot-flexing.svg"
  3048. }
  3049. },
  3050. footStepping: {
  3051. height: math.unit(1.44, "feet"),
  3052. name: "Foot (Stepping)",
  3053. image: {
  3054. source: "./media/characters/elijah/foot-stepping.svg"
  3055. }
  3056. },
  3057. plantigradeLeg: {
  3058. height: math.unit(2.34, "feet"),
  3059. name: "Plantigrade Leg",
  3060. image: {
  3061. source: "./media/characters/elijah/plantigrade-leg.svg"
  3062. }
  3063. },
  3064. plantigradeFootLeft: {
  3065. height: math.unit(0.9, "feet"),
  3066. name: "Plantigrade Foot (Left)",
  3067. image: {
  3068. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3069. }
  3070. },
  3071. plantigradeFootRight: {
  3072. height: math.unit(0.9, "feet"),
  3073. name: "Plantigrade Foot (Right)",
  3074. image: {
  3075. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3076. }
  3077. },
  3078. },
  3079. [
  3080. {
  3081. name: "Normal",
  3082. height: math.unit(1.65, "meters")
  3083. },
  3084. {
  3085. name: "Macro",
  3086. height: math.unit(55, "meters"),
  3087. default: true
  3088. },
  3089. {
  3090. name: "Macro+",
  3091. height: math.unit(105, "meters")
  3092. },
  3093. ]
  3094. ))
  3095. characterMakers.push(() => makeCharacter(
  3096. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3097. {
  3098. front: {
  3099. height: math.unit(7 + 2/12, "feet"),
  3100. weight: math.unit(320, "kg"),
  3101. preyCapacity: math.unit(0.276549935, "people"),
  3102. name: "Front",
  3103. image: {
  3104. source: "./media/characters/rai/front.svg",
  3105. extra: 1802/1696,
  3106. bottom: 68/1870
  3107. },
  3108. form: "anthro",
  3109. default: true
  3110. },
  3111. frontDressed: {
  3112. height: math.unit(7 + 2/12, "feet"),
  3113. weight: math.unit(320, "kg"),
  3114. preyCapacity: math.unit(0.276549935, "people"),
  3115. name: "Front (Dressed)",
  3116. image: {
  3117. source: "./media/characters/rai/front-dressed.svg",
  3118. extra: 1802/1696,
  3119. bottom: 68/1870
  3120. },
  3121. form: "anthro"
  3122. },
  3123. side: {
  3124. height: math.unit(7 + 2/12, "feet"),
  3125. weight: math.unit(320, "kg"),
  3126. preyCapacity: math.unit(0.276549935, "people"),
  3127. name: "Side",
  3128. image: {
  3129. source: "./media/characters/rai/side.svg",
  3130. extra: 1789/1710,
  3131. bottom: 115/1904
  3132. },
  3133. form: "anthro"
  3134. },
  3135. back: {
  3136. height: math.unit(7 + 2/12, "feet"),
  3137. weight: math.unit(320, "kg"),
  3138. preyCapacity: math.unit(0.276549935, "people"),
  3139. name: "Back",
  3140. image: {
  3141. source: "./media/characters/rai/back.svg",
  3142. extra: 1770/1707,
  3143. bottom: 28/1798
  3144. },
  3145. form: "anthro"
  3146. },
  3147. feral: {
  3148. height: math.unit(9.5, "feet"),
  3149. weight: math.unit(640, "kg"),
  3150. preyCapacity: math.unit(4, "people"),
  3151. name: "Feral",
  3152. image: {
  3153. source: "./media/characters/rai/feral.svg",
  3154. extra: 945/553,
  3155. bottom: 176/1121
  3156. },
  3157. form: "feral",
  3158. default: true
  3159. },
  3160. dragon: {
  3161. height: math.unit(23, "feet"),
  3162. weight: math.unit(50000, "lb"),
  3163. name: "Dragon",
  3164. image: {
  3165. source: "./media/characters/rai/dragon.svg",
  3166. extra: 2498 / 2030,
  3167. bottom: 85.2 / 2584
  3168. },
  3169. form: "dragon",
  3170. default: true
  3171. },
  3172. maw: {
  3173. height: math.unit(1.69, "feet"),
  3174. name: "Maw",
  3175. image: {
  3176. source: "./media/characters/rai/maw.svg"
  3177. },
  3178. form: "anthro"
  3179. },
  3180. },
  3181. [
  3182. {
  3183. name: "Normal",
  3184. height: math.unit(7 + 2/12, "feet"),
  3185. form: "anthro"
  3186. },
  3187. {
  3188. name: "Big",
  3189. height: math.unit(11, "feet"),
  3190. form: "anthro"
  3191. },
  3192. {
  3193. name: "Minimacro",
  3194. height: math.unit(77, "feet"),
  3195. form: "anthro"
  3196. },
  3197. {
  3198. name: "Macro",
  3199. height: math.unit(302, "feet"),
  3200. default: true,
  3201. form: "anthro"
  3202. },
  3203. {
  3204. name: "Normal",
  3205. height: math.unit(9.5, "feet"),
  3206. form: "feral",
  3207. default: true
  3208. },
  3209. {
  3210. name: "Normal",
  3211. height: math.unit(23, "feet"),
  3212. form: "dragon",
  3213. default: true
  3214. }
  3215. ],
  3216. {
  3217. "anthro": {
  3218. name: "Anthro",
  3219. default: true
  3220. },
  3221. "feral": {
  3222. name: "Feral",
  3223. },
  3224. "dragon": {
  3225. name: "Dragon",
  3226. },
  3227. }
  3228. ))
  3229. characterMakers.push(() => makeCharacter(
  3230. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3231. {
  3232. frontDressed: {
  3233. height: math.unit(216, "feet"),
  3234. weight: math.unit(7000000, "lb"),
  3235. preyCapacity: math.unit(1321, "people"),
  3236. name: "Front (Dressed)",
  3237. image: {
  3238. source: "./media/characters/jazzy/front-dressed.svg",
  3239. extra: 2738 / 2651,
  3240. bottom: 41.8 / 2786
  3241. }
  3242. },
  3243. backDressed: {
  3244. height: math.unit(216, "feet"),
  3245. weight: math.unit(7000000, "lb"),
  3246. preyCapacity: math.unit(1321, "people"),
  3247. name: "Back (Dressed)",
  3248. image: {
  3249. source: "./media/characters/jazzy/back-dressed.svg",
  3250. extra: 2775 / 2673,
  3251. bottom: 36.8 / 2817
  3252. }
  3253. },
  3254. front: {
  3255. height: math.unit(216, "feet"),
  3256. weight: math.unit(7000000, "lb"),
  3257. preyCapacity: math.unit(1321, "people"),
  3258. name: "Front",
  3259. image: {
  3260. source: "./media/characters/jazzy/front.svg",
  3261. extra: 2738 / 2651,
  3262. bottom: 41.8 / 2786
  3263. }
  3264. },
  3265. back: {
  3266. height: math.unit(216, "feet"),
  3267. weight: math.unit(7000000, "lb"),
  3268. preyCapacity: math.unit(1321, "people"),
  3269. name: "Back",
  3270. image: {
  3271. source: "./media/characters/jazzy/back.svg",
  3272. extra: 2775 / 2673,
  3273. bottom: 36.8 / 2817
  3274. }
  3275. },
  3276. maw: {
  3277. height: math.unit(20, "feet"),
  3278. name: "Maw",
  3279. image: {
  3280. source: "./media/characters/jazzy/maw.svg"
  3281. }
  3282. },
  3283. paws: {
  3284. height: math.unit(27.5, "feet"),
  3285. name: "Paws",
  3286. image: {
  3287. source: "./media/characters/jazzy/paws.svg"
  3288. }
  3289. },
  3290. eye: {
  3291. height: math.unit(4.4, "feet"),
  3292. name: "Eye",
  3293. image: {
  3294. source: "./media/characters/jazzy/eye.svg"
  3295. }
  3296. },
  3297. droneOffense: {
  3298. height: math.unit(9.5, "inches"),
  3299. name: "Drone (Offense)",
  3300. image: {
  3301. source: "./media/characters/jazzy/drone-offense.svg"
  3302. }
  3303. },
  3304. droneRecon: {
  3305. height: math.unit(9.5, "inches"),
  3306. name: "Drone (Recon)",
  3307. image: {
  3308. source: "./media/characters/jazzy/drone-recon.svg"
  3309. }
  3310. },
  3311. droneDefense: {
  3312. height: math.unit(9.5, "inches"),
  3313. name: "Drone (Defense)",
  3314. image: {
  3315. source: "./media/characters/jazzy/drone-defense.svg"
  3316. }
  3317. },
  3318. },
  3319. [
  3320. {
  3321. name: "Macro",
  3322. height: math.unit(216, "feet"),
  3323. default: true
  3324. },
  3325. ]
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3329. {
  3330. front: {
  3331. height: math.unit(9 + 6/12, "feet"),
  3332. weight: math.unit(700, "lb"),
  3333. name: "Front",
  3334. image: {
  3335. source: "./media/characters/flamm/front.svg",
  3336. extra: 1736/1596,
  3337. bottom: 93/1829
  3338. }
  3339. },
  3340. buff: {
  3341. height: math.unit(9 + 6/12, "feet"),
  3342. weight: math.unit(950, "lb"),
  3343. name: "Buff",
  3344. image: {
  3345. source: "./media/characters/flamm/buff.svg",
  3346. extra: 3018/2874,
  3347. bottom: 221/3239
  3348. }
  3349. },
  3350. },
  3351. [
  3352. {
  3353. name: "Normal",
  3354. height: math.unit(9.5, "feet")
  3355. },
  3356. {
  3357. name: "Macro",
  3358. height: math.unit(200, "feet"),
  3359. default: true
  3360. },
  3361. ]
  3362. ))
  3363. characterMakers.push(() => makeCharacter(
  3364. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3365. {
  3366. front: {
  3367. height: math.unit(5 + 3/12, "feet"),
  3368. weight: math.unit(60, "kg"),
  3369. name: "Front",
  3370. image: {
  3371. source: "./media/characters/zephiro/front.svg",
  3372. extra: 1873/1761,
  3373. bottom: 147/2020
  3374. }
  3375. },
  3376. side: {
  3377. height: math.unit(5 + 3/12, "feet"),
  3378. weight: math.unit(60, "kg"),
  3379. name: "Side",
  3380. image: {
  3381. source: "./media/characters/zephiro/side.svg",
  3382. extra: 1929/1827,
  3383. bottom: 65/1994
  3384. }
  3385. },
  3386. back: {
  3387. height: math.unit(5 + 3/12, "feet"),
  3388. weight: math.unit(60, "kg"),
  3389. name: "Back",
  3390. image: {
  3391. source: "./media/characters/zephiro/back.svg",
  3392. extra: 1926/1816,
  3393. bottom: 41/1967
  3394. }
  3395. },
  3396. hand: {
  3397. height: math.unit(0.68, "feet"),
  3398. name: "Hand",
  3399. image: {
  3400. source: "./media/characters/zephiro/hand.svg"
  3401. }
  3402. },
  3403. paw: {
  3404. height: math.unit(1, "feet"),
  3405. name: "Paw",
  3406. image: {
  3407. source: "./media/characters/zephiro/paw.svg"
  3408. }
  3409. },
  3410. beans: {
  3411. height: math.unit(0.93, "feet"),
  3412. name: "Beans",
  3413. image: {
  3414. source: "./media/characters/zephiro/beans.svg"
  3415. }
  3416. },
  3417. },
  3418. [
  3419. {
  3420. name: "Micro",
  3421. height: math.unit(3, "inches")
  3422. },
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(5 + 3 / 12, "feet"),
  3426. default: true
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(118, "feet")
  3431. },
  3432. ]
  3433. ))
  3434. characterMakers.push(() => makeCharacter(
  3435. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3436. {
  3437. front: {
  3438. height: math.unit(5, "feet"),
  3439. weight: math.unit(90, "kg"),
  3440. preyCapacity: math.unit(14, "people"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/fory/front.svg",
  3444. extra: 2862 / 2674,
  3445. bottom: 180 / 3043.8
  3446. },
  3447. form: "weaselbun",
  3448. default: true,
  3449. extraAttributes: {
  3450. "pawSize": {
  3451. name: "Paw Size",
  3452. power: 2,
  3453. type: "area",
  3454. base: math.unit(0.1596, "m^2")
  3455. },
  3456. "pawLength": {
  3457. name: "Paw Length",
  3458. power: 1,
  3459. type: "length",
  3460. base: math.unit(0.7, "m")
  3461. }
  3462. }
  3463. },
  3464. back: {
  3465. height: math.unit(5, "feet"),
  3466. weight: math.unit(90, "kg"),
  3467. preyCapacity: math.unit(14, "people"),
  3468. name: "Back",
  3469. image: {
  3470. source: "./media/characters/fory/back.svg",
  3471. extra: 1790/1672,
  3472. bottom: 84/1874
  3473. },
  3474. form: "weaselbun",
  3475. extraAttributes: {
  3476. "pawSize": {
  3477. name: "Paw Size",
  3478. power: 2,
  3479. type: "area",
  3480. base: math.unit(0.1596, "m^2")
  3481. },
  3482. "pawLength": {
  3483. name: "Paw Length",
  3484. power: 1,
  3485. type: "length",
  3486. base: math.unit(0.7, "m")
  3487. }
  3488. }
  3489. },
  3490. paw: {
  3491. height: math.unit(2.14, "feet"),
  3492. name: "Paw",
  3493. image: {
  3494. source: "./media/characters/fory/paw.svg"
  3495. },
  3496. form: "weaselbun",
  3497. extraAttributes: {
  3498. "pawSize": {
  3499. name: "Paw Size",
  3500. power: 2,
  3501. type: "area",
  3502. base: math.unit(0.1596, "m^2")
  3503. },
  3504. "pawLength": {
  3505. name: "Paw Length",
  3506. power: 1,
  3507. type: "length",
  3508. base: math.unit(0.48, "m")
  3509. }
  3510. }
  3511. },
  3512. bunBack: {
  3513. height: math.unit(3, "feet"),
  3514. weight: math.unit(20, "kg"),
  3515. preyCapacity: math.unit(3, "people"),
  3516. name: "Back",
  3517. image: {
  3518. source: "./media/characters/fory/bun-back.svg",
  3519. extra: 1749/1564,
  3520. bottom: 246/1995
  3521. },
  3522. form: "bun",
  3523. default: true,
  3524. extraAttributes: {
  3525. "pawSize": {
  3526. name: "Paw Size",
  3527. power: 2,
  3528. type: "area",
  3529. base: math.unit(0.072, "m^2")
  3530. },
  3531. "pawLength": {
  3532. name: "Paw Length",
  3533. power: 1,
  3534. type: "length",
  3535. base: math.unit(0.45, "m")
  3536. }
  3537. }
  3538. },
  3539. },
  3540. [
  3541. {
  3542. name: "Normal",
  3543. height: math.unit(5, "feet"),
  3544. form: "weaselbun"
  3545. },
  3546. {
  3547. name: "Macro",
  3548. height: math.unit(50, "feet"),
  3549. default: true,
  3550. form: "weaselbun"
  3551. },
  3552. {
  3553. name: "Megamacro",
  3554. height: math.unit(10, "miles"),
  3555. form: "weaselbun"
  3556. },
  3557. {
  3558. name: "Gigamacro",
  3559. height: math.unit(5, "earths"),
  3560. form: "weaselbun"
  3561. },
  3562. {
  3563. name: "Normal",
  3564. height: math.unit(3, "feet"),
  3565. default: true,
  3566. form: "bun"
  3567. },
  3568. {
  3569. name: "Fun-Size",
  3570. height: math.unit(12, "feet"),
  3571. form: "bun"
  3572. },
  3573. {
  3574. name: "Macro",
  3575. height: math.unit(100, "feet"),
  3576. form: "bun"
  3577. },
  3578. {
  3579. name: "Planetary",
  3580. height: math.unit(3, "earths"),
  3581. form: "bun"
  3582. },
  3583. ],
  3584. {
  3585. "weaselbun": {
  3586. name: "Weaselbun",
  3587. default: true
  3588. },
  3589. "bun": {
  3590. name: "Bun",
  3591. },
  3592. }
  3593. ))
  3594. characterMakers.push(() => makeCharacter(
  3595. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3596. {
  3597. front: {
  3598. height: math.unit(7, "feet"),
  3599. weight: math.unit(90, "kg"),
  3600. name: "Front",
  3601. image: {
  3602. source: "./media/characters/kurrikage/front.svg",
  3603. extra: 1845/1733,
  3604. bottom: 119/1964
  3605. }
  3606. },
  3607. back: {
  3608. height: math.unit(7, "feet"),
  3609. weight: math.unit(90, "kg"),
  3610. name: "Back",
  3611. image: {
  3612. source: "./media/characters/kurrikage/back.svg",
  3613. extra: 1790/1677,
  3614. bottom: 61/1851
  3615. }
  3616. },
  3617. dressed: {
  3618. height: math.unit(7, "feet"),
  3619. weight: math.unit(90, "kg"),
  3620. name: "Dressed",
  3621. image: {
  3622. source: "./media/characters/kurrikage/dressed.svg",
  3623. extra: 1845/1733,
  3624. bottom: 119/1964
  3625. }
  3626. },
  3627. foot: {
  3628. height: math.unit(1.5, "feet"),
  3629. name: "Foot",
  3630. image: {
  3631. source: "./media/characters/kurrikage/foot.svg"
  3632. }
  3633. },
  3634. staff: {
  3635. height: math.unit(6.7, "feet"),
  3636. name: "Staff",
  3637. image: {
  3638. source: "./media/characters/kurrikage/staff.svg"
  3639. }
  3640. },
  3641. peek: {
  3642. height: math.unit(1.05, "feet"),
  3643. name: "Peeking",
  3644. image: {
  3645. source: "./media/characters/kurrikage/peek.svg",
  3646. bottom: 0.08
  3647. }
  3648. },
  3649. },
  3650. [
  3651. {
  3652. name: "Normal",
  3653. height: math.unit(12, "feet"),
  3654. default: true
  3655. },
  3656. {
  3657. name: "Big",
  3658. height: math.unit(20, "feet")
  3659. },
  3660. {
  3661. name: "Macro",
  3662. height: math.unit(500, "feet")
  3663. },
  3664. {
  3665. name: "Megamacro",
  3666. height: math.unit(20, "miles")
  3667. },
  3668. ]
  3669. ))
  3670. characterMakers.push(() => makeCharacter(
  3671. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3672. {
  3673. front: {
  3674. height: math.unit(6, "feet"),
  3675. weight: math.unit(75, "kg"),
  3676. name: "Front",
  3677. image: {
  3678. source: "./media/characters/shingo/front.svg",
  3679. extra: 1900/1825,
  3680. bottom: 82/1982
  3681. }
  3682. },
  3683. side: {
  3684. height: math.unit(6, "feet"),
  3685. weight: math.unit(75, "kg"),
  3686. name: "Side",
  3687. image: {
  3688. source: "./media/characters/shingo/side.svg",
  3689. extra: 1930/1865,
  3690. bottom: 16/1946
  3691. }
  3692. },
  3693. back: {
  3694. height: math.unit(6, "feet"),
  3695. weight: math.unit(75, "kg"),
  3696. name: "Back",
  3697. image: {
  3698. source: "./media/characters/shingo/back.svg",
  3699. extra: 1922/1852,
  3700. bottom: 16/1938
  3701. }
  3702. },
  3703. frontDressed: {
  3704. height: math.unit(6, "feet"),
  3705. weight: math.unit(150, "lb"),
  3706. name: "Front-dressed",
  3707. image: {
  3708. source: "./media/characters/shingo/front-dressed.svg",
  3709. extra: 1900/1825,
  3710. bottom: 82/1982
  3711. }
  3712. },
  3713. paw: {
  3714. height: math.unit(1.29, "feet"),
  3715. name: "Paw",
  3716. image: {
  3717. source: "./media/characters/shingo/paw.svg"
  3718. }
  3719. },
  3720. hand: {
  3721. height: math.unit(1.07, "feet"),
  3722. name: "Hand",
  3723. image: {
  3724. source: "./media/characters/shingo/hand.svg"
  3725. }
  3726. },
  3727. frontAlt: {
  3728. height: math.unit(6, "feet"),
  3729. weight: math.unit(75, "kg"),
  3730. name: "Front (Alt)",
  3731. image: {
  3732. source: "./media/characters/shingo/front-alt.svg",
  3733. extra: 3511 / 3338,
  3734. bottom: 0.005
  3735. }
  3736. },
  3737. frontAlt2: {
  3738. height: math.unit(6, "feet"),
  3739. weight: math.unit(75, "kg"),
  3740. name: "Front (Alt 2)",
  3741. image: {
  3742. source: "./media/characters/shingo/front-alt-2.svg",
  3743. extra: 706/681,
  3744. bottom: 11/717
  3745. }
  3746. },
  3747. pawAlt: {
  3748. height: math.unit(1, "feet"),
  3749. name: "Paw (Alt)",
  3750. image: {
  3751. source: "./media/characters/shingo/paw-alt.svg"
  3752. }
  3753. },
  3754. },
  3755. [
  3756. {
  3757. name: "Micro",
  3758. height: math.unit(4, "inches")
  3759. },
  3760. {
  3761. name: "Normal",
  3762. height: math.unit(6, "feet"),
  3763. default: true
  3764. },
  3765. {
  3766. name: "Macro",
  3767. height: math.unit(108, "feet")
  3768. },
  3769. {
  3770. name: "Macro+",
  3771. height: math.unit(1500, "feet")
  3772. },
  3773. ]
  3774. ))
  3775. characterMakers.push(() => makeCharacter(
  3776. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3777. {
  3778. side: {
  3779. height: math.unit(6, "feet"),
  3780. weight: math.unit(75, "kg"),
  3781. name: "Side",
  3782. image: {
  3783. source: "./media/characters/aigey/side.svg"
  3784. }
  3785. },
  3786. },
  3787. [
  3788. {
  3789. name: "Macro",
  3790. height: math.unit(200, "feet"),
  3791. default: true
  3792. },
  3793. {
  3794. name: "Megamacro",
  3795. height: math.unit(100, "miles")
  3796. },
  3797. ]
  3798. )
  3799. )
  3800. characterMakers.push(() => makeCharacter(
  3801. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3802. {
  3803. front: {
  3804. height: math.unit(5 + 5 / 12, "feet"),
  3805. weight: math.unit(75, "kg"),
  3806. name: "Front",
  3807. image: {
  3808. source: "./media/characters/natasha/front.svg",
  3809. extra: 859 / 824,
  3810. bottom: 23 / 879.6
  3811. }
  3812. },
  3813. frontNsfw: {
  3814. height: math.unit(5 + 5 / 12, "feet"),
  3815. weight: math.unit(75, "kg"),
  3816. name: "Front (NSFW)",
  3817. image: {
  3818. source: "./media/characters/natasha/front-nsfw.svg",
  3819. extra: 859 / 824,
  3820. bottom: 23 / 879.6
  3821. }
  3822. },
  3823. frontErect: {
  3824. height: math.unit(5 + 5 / 12, "feet"),
  3825. weight: math.unit(75, "kg"),
  3826. name: "Front (Erect)",
  3827. image: {
  3828. source: "./media/characters/natasha/front-erect.svg",
  3829. extra: 859 / 824,
  3830. bottom: 23 / 879.6
  3831. }
  3832. },
  3833. back: {
  3834. height: math.unit(5 + 5 / 12, "feet"),
  3835. weight: math.unit(75, "kg"),
  3836. name: "Back",
  3837. image: {
  3838. source: "./media/characters/natasha/back.svg",
  3839. extra: 887.9 / 852.6,
  3840. bottom: 9.7 / 896.4
  3841. }
  3842. },
  3843. backAlt: {
  3844. height: math.unit(5 + 5 / 12, "feet"),
  3845. weight: math.unit(75, "kg"),
  3846. name: "Back (Alt)",
  3847. image: {
  3848. source: "./media/characters/natasha/back-alt.svg",
  3849. extra: 1236.7 / 1192,
  3850. bottom: 22.3 / 1258.2
  3851. }
  3852. },
  3853. dick: {
  3854. height: math.unit(1.772, "feet"),
  3855. name: "Dick",
  3856. image: {
  3857. source: "./media/characters/natasha/dick.svg"
  3858. }
  3859. },
  3860. paw: {
  3861. height: math.unit(0.250, "meters"),
  3862. name: "Paw",
  3863. image: {
  3864. source: "./media/characters/natasha/paw.svg"
  3865. },
  3866. extraAttributes: {
  3867. "toeSize": {
  3868. name: "Toe Size",
  3869. power: 2,
  3870. type: "area",
  3871. base: math.unit(0.0024, "m^2")
  3872. },
  3873. "padSize": {
  3874. name: "Pad Size",
  3875. power: 2,
  3876. type: "area",
  3877. base: math.unit(0.00889, "m^2")
  3878. },
  3879. "pawSize": {
  3880. name: "Paw Size",
  3881. power: 2,
  3882. type: "area",
  3883. base: math.unit(0.023667, "m^2")
  3884. },
  3885. }
  3886. },
  3887. },
  3888. [
  3889. {
  3890. name: "Shortstack",
  3891. height: math.unit(3, "feet"),
  3892. default: true
  3893. },
  3894. {
  3895. name: "Normal",
  3896. height: math.unit(5 + 5 / 12, "feet")
  3897. },
  3898. {
  3899. name: "Large",
  3900. height: math.unit(12, "feet")
  3901. },
  3902. {
  3903. name: "Macro",
  3904. height: math.unit(100, "feet")
  3905. },
  3906. {
  3907. name: "Macro+",
  3908. height: math.unit(260, "feet")
  3909. },
  3910. {
  3911. name: "Macro++",
  3912. height: math.unit(1, "mile")
  3913. },
  3914. ]
  3915. ))
  3916. characterMakers.push(() => makeCharacter(
  3917. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3918. {
  3919. front: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(75, "kg"),
  3922. name: "Front",
  3923. image: {
  3924. source: "./media/characters/malik/front.svg",
  3925. extra: 1750/1561,
  3926. bottom: 80/1830
  3927. },
  3928. extraAttributes: {
  3929. "toeSize": {
  3930. name: "Toe Size",
  3931. power: 2,
  3932. type: "area",
  3933. base: math.unit(0.0159, "m^2")
  3934. },
  3935. "pawSize": {
  3936. name: "Paw Size",
  3937. power: 2,
  3938. type: "area",
  3939. base: math.unit(0.09834, "m^2")
  3940. },
  3941. }
  3942. },
  3943. side: {
  3944. height: math.unit(6, "feet"),
  3945. weight: math.unit(75, "kg"),
  3946. name: "Side",
  3947. image: {
  3948. source: "./media/characters/malik/side.svg",
  3949. extra: 1802/1685,
  3950. bottom: 42/1844
  3951. },
  3952. extraAttributes: {
  3953. "toeSize": {
  3954. name: "Toe Size",
  3955. power: 2,
  3956. type: "area",
  3957. base: math.unit(0.0159, "m^2")
  3958. },
  3959. "pawSize": {
  3960. name: "Paw Size",
  3961. power: 2,
  3962. type: "area",
  3963. base: math.unit(0.09834, "m^2")
  3964. },
  3965. }
  3966. },
  3967. back: {
  3968. height: math.unit(6, "feet"),
  3969. weight: math.unit(75, "kg"),
  3970. name: "Back",
  3971. image: {
  3972. source: "./media/characters/malik/back.svg",
  3973. extra: 1803/1607,
  3974. bottom: 33/1836
  3975. },
  3976. extraAttributes: {
  3977. "toeSize": {
  3978. name: "Toe Size",
  3979. power: 2,
  3980. type: "area",
  3981. base: math.unit(0.0159, "m^2")
  3982. },
  3983. "pawSize": {
  3984. name: "Paw Size",
  3985. power: 2,
  3986. type: "area",
  3987. base: math.unit(0.09834, "m^2")
  3988. },
  3989. }
  3990. },
  3991. },
  3992. [
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(156, "feet"),
  3996. default: true
  3997. },
  3998. {
  3999. name: "Macro+",
  4000. height: math.unit(1188, "feet")
  4001. },
  4002. ]
  4003. ))
  4004. characterMakers.push(() => makeCharacter(
  4005. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4006. {
  4007. front: {
  4008. height: math.unit(6, "feet"),
  4009. weight: math.unit(75, "kg"),
  4010. name: "Front",
  4011. image: {
  4012. source: "./media/characters/sefer/front.svg",
  4013. extra: 848 / 659,
  4014. bottom: 28.3 / 876.442
  4015. }
  4016. },
  4017. back: {
  4018. height: math.unit(6, "feet"),
  4019. weight: math.unit(75, "kg"),
  4020. name: "Back",
  4021. image: {
  4022. source: "./media/characters/sefer/back.svg",
  4023. extra: 864 / 695,
  4024. bottom: 10 / 871
  4025. }
  4026. },
  4027. frontDressed: {
  4028. height: math.unit(6, "feet"),
  4029. weight: math.unit(75, "kg"),
  4030. name: "Dressed",
  4031. image: {
  4032. source: "./media/characters/sefer/dressed.svg",
  4033. extra: 839 / 653,
  4034. bottom: 37.6 / 878
  4035. }
  4036. },
  4037. },
  4038. [
  4039. {
  4040. name: "Normal",
  4041. height: math.unit(6, "feet"),
  4042. default: true
  4043. },
  4044. {
  4045. name: "Big",
  4046. height: math.unit(8, "meters")
  4047. },
  4048. ]
  4049. ))
  4050. characterMakers.push(() => makeCharacter(
  4051. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4052. {
  4053. body: {
  4054. height: math.unit(2.2428, "meter"),
  4055. weight: math.unit(124.738, "kg"),
  4056. name: "Body",
  4057. image: {
  4058. extra: 1225 / 1050,
  4059. source: "./media/characters/north/front.svg"
  4060. }
  4061. }
  4062. },
  4063. [
  4064. {
  4065. name: "Micro",
  4066. height: math.unit(4, "inches")
  4067. },
  4068. {
  4069. name: "Macro",
  4070. height: math.unit(63, "meters")
  4071. },
  4072. {
  4073. name: "Megamacro",
  4074. height: math.unit(101, "miles"),
  4075. default: true
  4076. }
  4077. ]
  4078. ))
  4079. characterMakers.push(() => makeCharacter(
  4080. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4081. {
  4082. angled: {
  4083. height: math.unit(4, "meter"),
  4084. weight: math.unit(150, "kg"),
  4085. name: "Angled",
  4086. image: {
  4087. source: "./media/characters/talan/angled-sfw.svg",
  4088. bottom: 29 / 3734
  4089. }
  4090. },
  4091. angledNsfw: {
  4092. height: math.unit(4, "meter"),
  4093. weight: math.unit(150, "kg"),
  4094. name: "Angled (NSFW)",
  4095. image: {
  4096. source: "./media/characters/talan/angled-nsfw.svg",
  4097. bottom: 29 / 3734
  4098. }
  4099. },
  4100. frontNsfw: {
  4101. height: math.unit(4, "meter"),
  4102. weight: math.unit(150, "kg"),
  4103. name: "Front (NSFW)",
  4104. image: {
  4105. source: "./media/characters/talan/front-nsfw.svg",
  4106. bottom: 29 / 3734
  4107. }
  4108. },
  4109. sideNsfw: {
  4110. height: math.unit(4, "meter"),
  4111. weight: math.unit(150, "kg"),
  4112. name: "Side (NSFW)",
  4113. image: {
  4114. source: "./media/characters/talan/side-nsfw.svg",
  4115. bottom: 29 / 3734
  4116. }
  4117. },
  4118. back: {
  4119. height: math.unit(4, "meter"),
  4120. weight: math.unit(150, "kg"),
  4121. name: "Back",
  4122. image: {
  4123. source: "./media/characters/talan/back.svg"
  4124. }
  4125. },
  4126. dickBottom: {
  4127. height: math.unit(0.621, "meter"),
  4128. name: "Dick (Bottom)",
  4129. image: {
  4130. source: "./media/characters/talan/dick-bottom.svg"
  4131. }
  4132. },
  4133. dickTop: {
  4134. height: math.unit(0.621, "meter"),
  4135. name: "Dick (Top)",
  4136. image: {
  4137. source: "./media/characters/talan/dick-top.svg"
  4138. }
  4139. },
  4140. dickSide: {
  4141. height: math.unit(0.305, "meter"),
  4142. name: "Dick (Side)",
  4143. image: {
  4144. source: "./media/characters/talan/dick-side.svg"
  4145. }
  4146. },
  4147. dickFront: {
  4148. height: math.unit(0.305, "meter"),
  4149. name: "Dick (Front)",
  4150. image: {
  4151. source: "./media/characters/talan/dick-front.svg"
  4152. }
  4153. },
  4154. },
  4155. [
  4156. {
  4157. name: "Normal",
  4158. height: math.unit(4, "meters")
  4159. },
  4160. {
  4161. name: "Macro",
  4162. height: math.unit(100, "meters")
  4163. },
  4164. {
  4165. name: "Megamacro",
  4166. height: math.unit(2, "miles"),
  4167. default: true
  4168. },
  4169. {
  4170. name: "Gigamacro",
  4171. height: math.unit(5000, "miles")
  4172. },
  4173. {
  4174. name: "Teramacro",
  4175. height: math.unit(100, "parsecs")
  4176. }
  4177. ]
  4178. ))
  4179. characterMakers.push(() => makeCharacter(
  4180. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4181. {
  4182. front: {
  4183. height: math.unit(2, "meter"),
  4184. weight: math.unit(90, "kg"),
  4185. name: "Front",
  4186. image: {
  4187. source: "./media/characters/gael'rathus/front.svg"
  4188. }
  4189. },
  4190. frontAlt: {
  4191. height: math.unit(2, "meter"),
  4192. weight: math.unit(90, "kg"),
  4193. name: "Front (alt)",
  4194. image: {
  4195. source: "./media/characters/gael'rathus/front-alt.svg"
  4196. }
  4197. },
  4198. frontAlt2: {
  4199. height: math.unit(2, "meter"),
  4200. weight: math.unit(90, "kg"),
  4201. name: "Front (alt 2)",
  4202. image: {
  4203. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4204. }
  4205. }
  4206. },
  4207. [
  4208. {
  4209. name: "Normal",
  4210. height: math.unit(9, "feet"),
  4211. default: true
  4212. },
  4213. {
  4214. name: "Large",
  4215. height: math.unit(25, "feet")
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(0.25, "miles")
  4220. },
  4221. {
  4222. name: "Megamacro",
  4223. height: math.unit(10, "miles")
  4224. }
  4225. ]
  4226. ))
  4227. characterMakers.push(() => makeCharacter(
  4228. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4229. {
  4230. side: {
  4231. height: math.unit(2, "meter"),
  4232. weight: math.unit(140, "kg"),
  4233. name: "Side",
  4234. image: {
  4235. source: "./media/characters/sosha/side.svg",
  4236. extra: 1170/1006,
  4237. bottom: 94/1264
  4238. }
  4239. },
  4240. maw: {
  4241. height: math.unit(2.87, "feet"),
  4242. name: "Maw",
  4243. image: {
  4244. source: "./media/characters/sosha/maw.svg",
  4245. extra: 966/865,
  4246. bottom: 0/966
  4247. }
  4248. },
  4249. cooch: {
  4250. height: math.unit(5.6, "feet"),
  4251. name: "Cooch",
  4252. image: {
  4253. source: "./media/characters/sosha/cooch.svg"
  4254. }
  4255. },
  4256. },
  4257. [
  4258. {
  4259. name: "Normal",
  4260. height: math.unit(12, "feet"),
  4261. default: true
  4262. }
  4263. ]
  4264. ))
  4265. characterMakers.push(() => makeCharacter(
  4266. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4267. {
  4268. side: {
  4269. height: math.unit(5 + 5 / 12, "feet"),
  4270. weight: math.unit(170, "kg"),
  4271. name: "Side",
  4272. image: {
  4273. source: "./media/characters/runnola/side.svg",
  4274. extra: 741 / 448,
  4275. bottom: 0.05
  4276. }
  4277. },
  4278. },
  4279. [
  4280. {
  4281. name: "Small",
  4282. height: math.unit(3, "feet")
  4283. },
  4284. {
  4285. name: "Normal",
  4286. height: math.unit(5 + 5 / 12, "feet"),
  4287. default: true
  4288. },
  4289. {
  4290. name: "Big",
  4291. height: math.unit(10, "feet")
  4292. },
  4293. ]
  4294. ))
  4295. characterMakers.push(() => makeCharacter(
  4296. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4297. {
  4298. front: {
  4299. height: math.unit(2, "meter"),
  4300. weight: math.unit(50, "kg"),
  4301. name: "Front",
  4302. image: {
  4303. source: "./media/characters/kurribird/front.svg",
  4304. bottom: 0.015
  4305. }
  4306. },
  4307. frontAlt: {
  4308. height: math.unit(1.5, "meter"),
  4309. weight: math.unit(50, "kg"),
  4310. name: "Front (Alt)",
  4311. image: {
  4312. source: "./media/characters/kurribird/front-alt.svg",
  4313. extra: 1.45
  4314. }
  4315. },
  4316. },
  4317. [
  4318. {
  4319. name: "Normal",
  4320. height: math.unit(7, "feet")
  4321. },
  4322. {
  4323. name: "Big",
  4324. height: math.unit(12, "feet"),
  4325. default: true
  4326. },
  4327. {
  4328. name: "Macro",
  4329. height: math.unit(1500, "feet")
  4330. },
  4331. {
  4332. name: "Megamacro",
  4333. height: math.unit(2, "miles")
  4334. }
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4339. {
  4340. front: {
  4341. height: math.unit(2, "meter"),
  4342. weight: math.unit(80, "kg"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/elbial/front.svg",
  4346. extra: 1643 / 1556,
  4347. bottom: 60.2 / 1696
  4348. }
  4349. },
  4350. side: {
  4351. height: math.unit(2, "meter"),
  4352. weight: math.unit(80, "kg"),
  4353. name: "Side",
  4354. image: {
  4355. source: "./media/characters/elbial/side.svg",
  4356. extra: 1601/1528,
  4357. bottom: 97/1698
  4358. }
  4359. },
  4360. back: {
  4361. height: math.unit(2, "meter"),
  4362. weight: math.unit(80, "kg"),
  4363. name: "Back",
  4364. image: {
  4365. source: "./media/characters/elbial/back.svg",
  4366. extra: 1653/1569,
  4367. bottom: 20/1673
  4368. }
  4369. },
  4370. frontDressed: {
  4371. height: math.unit(2, "meter"),
  4372. weight: math.unit(80, "kg"),
  4373. name: "Front (Dressed)",
  4374. image: {
  4375. source: "./media/characters/elbial/front-dressed.svg",
  4376. extra: 1638/1569,
  4377. bottom: 70/1708
  4378. }
  4379. },
  4380. genitals: {
  4381. height: math.unit(2 / 3.367, "meter"),
  4382. name: "Genitals",
  4383. image: {
  4384. source: "./media/characters/elbial/genitals.svg"
  4385. }
  4386. },
  4387. },
  4388. [
  4389. {
  4390. name: "Large",
  4391. height: math.unit(100, "feet")
  4392. },
  4393. {
  4394. name: "Macro",
  4395. height: math.unit(500, "feet"),
  4396. default: true
  4397. },
  4398. {
  4399. name: "Megamacro",
  4400. height: math.unit(10, "miles")
  4401. },
  4402. {
  4403. name: "Gigamacro",
  4404. height: math.unit(25000, "miles")
  4405. },
  4406. {
  4407. name: "Full-Size",
  4408. height: math.unit(8000000, "gigaparsecs")
  4409. }
  4410. ]
  4411. ))
  4412. characterMakers.push(() => makeCharacter(
  4413. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4414. {
  4415. front: {
  4416. height: math.unit(2, "meter"),
  4417. weight: math.unit(60, "kg"),
  4418. name: "Front",
  4419. image: {
  4420. source: "./media/characters/noah/front.svg",
  4421. extra: 1383/1313,
  4422. bottom: 104/1487
  4423. }
  4424. },
  4425. hand: {
  4426. height: math.unit(0.6, "feet"),
  4427. name: "Hand",
  4428. image: {
  4429. source: "./media/characters/noah/hand.svg"
  4430. }
  4431. },
  4432. talons: {
  4433. height: math.unit(1.385, "feet"),
  4434. name: "Talons",
  4435. image: {
  4436. source: "./media/characters/noah/talons.svg"
  4437. }
  4438. },
  4439. beak: {
  4440. height: math.unit(0.43, "feet"),
  4441. name: "Beak",
  4442. image: {
  4443. source: "./media/characters/noah/beak.svg"
  4444. }
  4445. },
  4446. collar: {
  4447. height: math.unit(0.88, "feet"),
  4448. name: "Collar",
  4449. image: {
  4450. source: "./media/characters/noah/collar.svg"
  4451. }
  4452. },
  4453. eyeNarrow: {
  4454. height: math.unit(0.18, "feet"),
  4455. name: "Eye (Narrow)",
  4456. image: {
  4457. source: "./media/characters/noah/eye-narrow.svg"
  4458. }
  4459. },
  4460. eyeNormal: {
  4461. height: math.unit(0.18, "feet"),
  4462. name: "Eye (Normal)",
  4463. image: {
  4464. source: "./media/characters/noah/eye-normal.svg"
  4465. }
  4466. },
  4467. eyeWide: {
  4468. height: math.unit(0.18, "feet"),
  4469. name: "Eye (Wide)",
  4470. image: {
  4471. source: "./media/characters/noah/eye-wide.svg"
  4472. }
  4473. },
  4474. ear: {
  4475. height: math.unit(0.64, "feet"),
  4476. name: "Ear",
  4477. image: {
  4478. source: "./media/characters/noah/ear.svg"
  4479. }
  4480. },
  4481. },
  4482. [
  4483. {
  4484. name: "Large",
  4485. height: math.unit(50, "feet")
  4486. },
  4487. {
  4488. name: "Macro",
  4489. height: math.unit(750, "feet"),
  4490. default: true
  4491. },
  4492. {
  4493. name: "Megamacro",
  4494. height: math.unit(50, "miles")
  4495. },
  4496. {
  4497. name: "Gigamacro",
  4498. height: math.unit(100000, "miles")
  4499. },
  4500. {
  4501. name: "Full-Size",
  4502. height: math.unit(3000000000, "miles")
  4503. }
  4504. ]
  4505. ))
  4506. characterMakers.push(() => makeCharacter(
  4507. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4508. {
  4509. front: {
  4510. height: math.unit(2, "meter"),
  4511. weight: math.unit(80, "kg"),
  4512. name: "Front",
  4513. image: {
  4514. source: "./media/characters/natalya/front.svg"
  4515. }
  4516. },
  4517. back: {
  4518. height: math.unit(2, "meter"),
  4519. weight: math.unit(80, "kg"),
  4520. name: "Back",
  4521. image: {
  4522. source: "./media/characters/natalya/back.svg"
  4523. }
  4524. }
  4525. },
  4526. [
  4527. {
  4528. name: "Normal",
  4529. height: math.unit(150, "feet"),
  4530. default: true
  4531. },
  4532. {
  4533. name: "Megamacro",
  4534. height: math.unit(5, "miles")
  4535. },
  4536. {
  4537. name: "Full-Size",
  4538. height: math.unit(600, "kiloparsecs")
  4539. }
  4540. ]
  4541. ))
  4542. characterMakers.push(() => makeCharacter(
  4543. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4544. {
  4545. front: {
  4546. height: math.unit(2, "meter"),
  4547. weight: math.unit(50, "kg"),
  4548. name: "Front",
  4549. image: {
  4550. source: "./media/characters/erestrebah/front.svg",
  4551. extra: 1262/1162,
  4552. bottom: 96/1358
  4553. }
  4554. },
  4555. back: {
  4556. height: math.unit(2, "meter"),
  4557. weight: math.unit(50, "kg"),
  4558. name: "Back",
  4559. image: {
  4560. source: "./media/characters/erestrebah/back.svg",
  4561. extra: 1257/1139,
  4562. bottom: 13/1270
  4563. }
  4564. },
  4565. wing: {
  4566. height: math.unit(2, "meter"),
  4567. weight: math.unit(50, "kg"),
  4568. name: "Wing",
  4569. image: {
  4570. source: "./media/characters/erestrebah/wing.svg",
  4571. extra: 1262/1162,
  4572. bottom: 96/1358
  4573. }
  4574. },
  4575. mouth: {
  4576. height: math.unit(0.39, "feet"),
  4577. name: "Mouth",
  4578. image: {
  4579. source: "./media/characters/erestrebah/mouth.svg"
  4580. }
  4581. }
  4582. },
  4583. [
  4584. {
  4585. name: "Normal",
  4586. height: math.unit(10, "feet")
  4587. },
  4588. {
  4589. name: "Large",
  4590. height: math.unit(50, "feet"),
  4591. default: true
  4592. },
  4593. {
  4594. name: "Macro",
  4595. height: math.unit(300, "feet")
  4596. },
  4597. {
  4598. name: "Macro+",
  4599. height: math.unit(750, "feet")
  4600. },
  4601. {
  4602. name: "Megamacro",
  4603. height: math.unit(3, "miles")
  4604. }
  4605. ]
  4606. ))
  4607. characterMakers.push(() => makeCharacter(
  4608. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4609. {
  4610. front: {
  4611. height: math.unit(2, "meter"),
  4612. weight: math.unit(80, "kg"),
  4613. name: "Front",
  4614. image: {
  4615. source: "./media/characters/jennifer/front.svg",
  4616. bottom: 0.11,
  4617. extra: 1.16
  4618. }
  4619. },
  4620. frontAlt: {
  4621. height: math.unit(2, "meter"),
  4622. weight: math.unit(80, "kg"),
  4623. name: "Front (Alt)",
  4624. image: {
  4625. source: "./media/characters/jennifer/front-alt.svg"
  4626. }
  4627. }
  4628. },
  4629. [
  4630. {
  4631. name: "Canon Height",
  4632. height: math.unit(120, "feet"),
  4633. default: true
  4634. },
  4635. {
  4636. name: "Macro+",
  4637. height: math.unit(300, "feet")
  4638. },
  4639. {
  4640. name: "Megamacro",
  4641. height: math.unit(20000, "feet")
  4642. }
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4647. {
  4648. front: {
  4649. height: math.unit(2, "meter"),
  4650. weight: math.unit(50, "kg"),
  4651. name: "Front",
  4652. image: {
  4653. source: "./media/characters/kalista/front.svg",
  4654. extra: 1314/1145,
  4655. bottom: 101/1415
  4656. }
  4657. },
  4658. back: {
  4659. height: math.unit(2, "meter"),
  4660. weight: math.unit(50, "kg"),
  4661. name: "Back",
  4662. image: {
  4663. source: "./media/characters/kalista/back.svg",
  4664. extra: 1366 / 1156,
  4665. bottom: 33.9 / 1362.78
  4666. }
  4667. }
  4668. },
  4669. [
  4670. {
  4671. name: "Uncomfortably Small",
  4672. height: math.unit(10, "feet")
  4673. },
  4674. {
  4675. name: "Small",
  4676. height: math.unit(30, "feet")
  4677. },
  4678. {
  4679. name: "Macro",
  4680. height: math.unit(100, "feet"),
  4681. default: true
  4682. },
  4683. {
  4684. name: "Macro+",
  4685. height: math.unit(2000, "feet")
  4686. },
  4687. {
  4688. name: "True Form",
  4689. height: math.unit(8924, "miles")
  4690. }
  4691. ]
  4692. ))
  4693. characterMakers.push(() => makeCharacter(
  4694. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4695. {
  4696. front: {
  4697. height: math.unit(2, "meter"),
  4698. weight: math.unit(120, "kg"),
  4699. name: "Front",
  4700. image: {
  4701. source: "./media/characters/ggv/front.svg"
  4702. }
  4703. },
  4704. side: {
  4705. height: math.unit(2, "meter"),
  4706. weight: math.unit(120, "kg"),
  4707. name: "Side",
  4708. image: {
  4709. source: "./media/characters/ggv/side.svg"
  4710. }
  4711. }
  4712. },
  4713. [
  4714. {
  4715. name: "Extremely Puny",
  4716. height: math.unit(9 + 5 / 12, "feet")
  4717. },
  4718. {
  4719. name: "Horribly Small",
  4720. height: math.unit(47.7, "miles"),
  4721. default: true
  4722. },
  4723. {
  4724. name: "Reasonably Sized",
  4725. height: math.unit(25000, "parsecs")
  4726. },
  4727. {
  4728. name: "Slightly Uncompressed",
  4729. height: math.unit(7.77e31, "parsecs")
  4730. },
  4731. {
  4732. name: "Omniversal",
  4733. height: math.unit(1e300, "meters")
  4734. },
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4739. {
  4740. front: {
  4741. height: math.unit(2, "meter"),
  4742. weight: math.unit(75, "lb"),
  4743. name: "Front",
  4744. image: {
  4745. source: "./media/characters/napalm/front.svg"
  4746. }
  4747. },
  4748. back: {
  4749. height: math.unit(2, "meter"),
  4750. weight: math.unit(75, "lb"),
  4751. name: "Back",
  4752. image: {
  4753. source: "./media/characters/napalm/back.svg"
  4754. }
  4755. }
  4756. },
  4757. [
  4758. {
  4759. name: "Standard",
  4760. height: math.unit(55, "feet"),
  4761. default: true
  4762. }
  4763. ]
  4764. ))
  4765. characterMakers.push(() => makeCharacter(
  4766. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4767. {
  4768. front: {
  4769. height: math.unit(7 + 5 / 6, "feet"),
  4770. weight: math.unit(325, "lb"),
  4771. name: "Front",
  4772. image: {
  4773. source: "./media/characters/asana/front.svg",
  4774. extra: 1133 / 1060,
  4775. bottom: 15.2 / 1148.6
  4776. }
  4777. },
  4778. back: {
  4779. height: math.unit(7 + 5 / 6, "feet"),
  4780. weight: math.unit(325, "lb"),
  4781. name: "Back",
  4782. image: {
  4783. source: "./media/characters/asana/back.svg",
  4784. extra: 1114 / 1043,
  4785. bottom: 5 / 1120
  4786. }
  4787. },
  4788. dressedDark: {
  4789. height: math.unit(7 + 5 / 6, "feet"),
  4790. weight: math.unit(325, "lb"),
  4791. name: "Dressed (Dark)",
  4792. image: {
  4793. source: "./media/characters/asana/dressed-dark.svg",
  4794. extra: 1133 / 1060,
  4795. bottom: 15.2 / 1148.6
  4796. }
  4797. },
  4798. dressedLight: {
  4799. height: math.unit(7 + 5 / 6, "feet"),
  4800. weight: math.unit(325, "lb"),
  4801. name: "Dressed (Light)",
  4802. image: {
  4803. source: "./media/characters/asana/dressed-light.svg",
  4804. extra: 1133 / 1060,
  4805. bottom: 15.2 / 1148.6
  4806. }
  4807. },
  4808. },
  4809. [
  4810. {
  4811. name: "Standard",
  4812. height: math.unit(7 + 5 / 6, "feet"),
  4813. default: true
  4814. },
  4815. {
  4816. name: "Large",
  4817. height: math.unit(10, "meters")
  4818. },
  4819. {
  4820. name: "Macro",
  4821. height: math.unit(2500, "meters")
  4822. },
  4823. {
  4824. name: "Megamacro",
  4825. height: math.unit(5e6, "meters")
  4826. },
  4827. {
  4828. name: "Examacro",
  4829. height: math.unit(5e12, "lightyears")
  4830. },
  4831. {
  4832. name: "Max Size",
  4833. height: math.unit(1e31, "lightyears")
  4834. }
  4835. ]
  4836. ))
  4837. characterMakers.push(() => makeCharacter(
  4838. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4839. {
  4840. front: {
  4841. height: math.unit(2, "meter"),
  4842. weight: math.unit(60, "kg"),
  4843. name: "Front",
  4844. image: {
  4845. source: "./media/characters/ebony/front.svg",
  4846. bottom: 0.03,
  4847. extra: 1045 / 810 + 0.03
  4848. }
  4849. },
  4850. side: {
  4851. height: math.unit(2, "meter"),
  4852. weight: math.unit(60, "kg"),
  4853. name: "Side",
  4854. image: {
  4855. source: "./media/characters/ebony/side.svg",
  4856. bottom: 0.03,
  4857. extra: 1045 / 810 + 0.03
  4858. }
  4859. },
  4860. back: {
  4861. height: math.unit(2, "meter"),
  4862. weight: math.unit(60, "kg"),
  4863. name: "Back",
  4864. image: {
  4865. source: "./media/characters/ebony/back.svg",
  4866. bottom: 0.01,
  4867. extra: 1045 / 810 + 0.01
  4868. }
  4869. },
  4870. },
  4871. [
  4872. // TODO check why I did this lol
  4873. {
  4874. name: "Standard",
  4875. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Macro",
  4880. height: math.unit(200, "feet")
  4881. },
  4882. {
  4883. name: "Gigamacro",
  4884. height: math.unit(13000, "km")
  4885. }
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4890. {
  4891. front: {
  4892. height: math.unit(6, "feet"),
  4893. weight: math.unit(175, "lb"),
  4894. name: "Front",
  4895. image: {
  4896. source: "./media/characters/mountain/front.svg",
  4897. extra: 972 / 955,
  4898. bottom: 64 / 1036.6
  4899. }
  4900. },
  4901. back: {
  4902. height: math.unit(6, "feet"),
  4903. weight: math.unit(175, "lb"),
  4904. name: "Back",
  4905. image: {
  4906. source: "./media/characters/mountain/back.svg",
  4907. extra: 970 / 950,
  4908. bottom: 28.25 / 999
  4909. }
  4910. },
  4911. },
  4912. [
  4913. {
  4914. name: "Large",
  4915. height: math.unit(20, "meters")
  4916. },
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(300, "meters")
  4920. },
  4921. {
  4922. name: "Gigamacro",
  4923. height: math.unit(10000, "km"),
  4924. default: true
  4925. },
  4926. {
  4927. name: "Examacro",
  4928. height: math.unit(10e9, "lightyears")
  4929. }
  4930. ]
  4931. ))
  4932. characterMakers.push(() => makeCharacter(
  4933. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4934. {
  4935. front: {
  4936. height: math.unit(8, "feet"),
  4937. weight: math.unit(500, "lb"),
  4938. name: "Front",
  4939. image: {
  4940. source: "./media/characters/rick/front.svg"
  4941. }
  4942. }
  4943. },
  4944. [
  4945. {
  4946. name: "Normal",
  4947. height: math.unit(8, "feet"),
  4948. default: true
  4949. },
  4950. {
  4951. name: "Macro",
  4952. height: math.unit(5, "km")
  4953. }
  4954. ]
  4955. ))
  4956. characterMakers.push(() => makeCharacter(
  4957. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4958. {
  4959. front: {
  4960. height: math.unit(8, "feet"),
  4961. weight: math.unit(120, "lb"),
  4962. name: "Front",
  4963. image: {
  4964. source: "./media/characters/ona/front.svg"
  4965. }
  4966. },
  4967. frontAlt: {
  4968. height: math.unit(8, "feet"),
  4969. weight: math.unit(120, "lb"),
  4970. name: "Front (Alt)",
  4971. image: {
  4972. source: "./media/characters/ona/front-alt.svg"
  4973. }
  4974. },
  4975. back: {
  4976. height: math.unit(8, "feet"),
  4977. weight: math.unit(120, "lb"),
  4978. name: "Back",
  4979. image: {
  4980. source: "./media/characters/ona/back.svg"
  4981. }
  4982. },
  4983. foot: {
  4984. height: math.unit(1.1, "feet"),
  4985. name: "Foot",
  4986. image: {
  4987. source: "./media/characters/ona/foot.svg"
  4988. }
  4989. }
  4990. },
  4991. [
  4992. {
  4993. name: "Megamacro",
  4994. height: math.unit(70, "km"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Gigamacro",
  4999. height: math.unit(681818, "miles")
  5000. },
  5001. {
  5002. name: "Examacro",
  5003. height: math.unit(3800000, "lightyears")
  5004. },
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(12, "feet"),
  5012. weight: math.unit(3000, "lb"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/mech/front.svg",
  5016. extra: 2900 / 2770,
  5017. bottom: 110 / 3010
  5018. }
  5019. },
  5020. back: {
  5021. height: math.unit(12, "feet"),
  5022. weight: math.unit(3000, "lb"),
  5023. name: "Back",
  5024. image: {
  5025. source: "./media/characters/mech/back.svg",
  5026. extra: 3011 / 2890,
  5027. bottom: 94 / 3105
  5028. }
  5029. },
  5030. maw: {
  5031. height: math.unit(3.07, "feet"),
  5032. name: "Maw",
  5033. image: {
  5034. source: "./media/characters/mech/maw.svg"
  5035. }
  5036. },
  5037. head: {
  5038. height: math.unit(3.07, "feet"),
  5039. name: "Head",
  5040. image: {
  5041. source: "./media/characters/mech/head.svg"
  5042. }
  5043. },
  5044. dick: {
  5045. height: math.unit(1.43, "feet"),
  5046. name: "Dick",
  5047. image: {
  5048. source: "./media/characters/mech/dick.svg"
  5049. }
  5050. },
  5051. },
  5052. [
  5053. {
  5054. name: "Normal",
  5055. height: math.unit(12, "feet")
  5056. },
  5057. {
  5058. name: "Macro",
  5059. height: math.unit(300, "feet"),
  5060. default: true
  5061. },
  5062. {
  5063. name: "Macro+",
  5064. height: math.unit(1500, "feet")
  5065. },
  5066. ]
  5067. ))
  5068. characterMakers.push(() => makeCharacter(
  5069. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5070. {
  5071. front: {
  5072. height: math.unit(1.3, "meter"),
  5073. weight: math.unit(30, "kg"),
  5074. name: "Front",
  5075. image: {
  5076. source: "./media/characters/gregory/front.svg",
  5077. }
  5078. }
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(1.3, "meter"),
  5084. default: true
  5085. },
  5086. {
  5087. name: "Macro",
  5088. height: math.unit(20, "meter")
  5089. }
  5090. ]
  5091. ))
  5092. characterMakers.push(() => makeCharacter(
  5093. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5094. {
  5095. front: {
  5096. height: math.unit(2.8, "meter"),
  5097. weight: math.unit(200, "kg"),
  5098. name: "Front",
  5099. image: {
  5100. source: "./media/characters/elory/front.svg",
  5101. }
  5102. }
  5103. },
  5104. [
  5105. {
  5106. name: "Normal",
  5107. height: math.unit(2.8, "meter"),
  5108. default: true
  5109. },
  5110. {
  5111. name: "Macro",
  5112. height: math.unit(38, "meter")
  5113. }
  5114. ]
  5115. ))
  5116. characterMakers.push(() => makeCharacter(
  5117. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5118. {
  5119. front: {
  5120. height: math.unit(470, "feet"),
  5121. weight: math.unit(924, "tons"),
  5122. name: "Front",
  5123. image: {
  5124. source: "./media/characters/angelpatamon/front.svg",
  5125. }
  5126. }
  5127. },
  5128. [
  5129. {
  5130. name: "Normal",
  5131. height: math.unit(470, "feet"),
  5132. default: true
  5133. },
  5134. {
  5135. name: "Deity Size I",
  5136. height: math.unit(28651.2, "km")
  5137. },
  5138. {
  5139. name: "Deity Size II",
  5140. height: math.unit(171907.2, "km")
  5141. }
  5142. ]
  5143. ))
  5144. characterMakers.push(() => makeCharacter(
  5145. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5146. {
  5147. side: {
  5148. height: math.unit(7.2, "meter"),
  5149. weight: math.unit(8.2, "tons"),
  5150. name: "Side",
  5151. image: {
  5152. source: "./media/characters/cryae/side.svg",
  5153. extra: 3500 / 1500
  5154. }
  5155. }
  5156. },
  5157. [
  5158. {
  5159. name: "Normal",
  5160. height: math.unit(7.2, "meter"),
  5161. default: true
  5162. }
  5163. ]
  5164. ))
  5165. characterMakers.push(() => makeCharacter(
  5166. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5167. {
  5168. front: {
  5169. height: math.unit(6, "feet"),
  5170. weight: math.unit(175, "lb"),
  5171. name: "Front",
  5172. image: {
  5173. source: "./media/characters/xera/front.svg",
  5174. extra: 2377 / 1972,
  5175. bottom: 75.5 / 2452
  5176. }
  5177. },
  5178. side: {
  5179. height: math.unit(6, "feet"),
  5180. weight: math.unit(175, "lb"),
  5181. name: "Side",
  5182. image: {
  5183. source: "./media/characters/xera/side.svg",
  5184. extra: 2345 / 2019,
  5185. bottom: 39.7 / 2384
  5186. }
  5187. },
  5188. back: {
  5189. height: math.unit(6, "feet"),
  5190. weight: math.unit(175, "lb"),
  5191. name: "Back",
  5192. image: {
  5193. source: "./media/characters/xera/back.svg",
  5194. extra: 2095 / 1984,
  5195. bottom: 67 / 2166
  5196. }
  5197. },
  5198. },
  5199. [
  5200. {
  5201. name: "Small",
  5202. height: math.unit(10, "feet")
  5203. },
  5204. {
  5205. name: "Macro",
  5206. height: math.unit(500, "meters"),
  5207. default: true
  5208. },
  5209. {
  5210. name: "Macro+",
  5211. height: math.unit(10, "km")
  5212. },
  5213. {
  5214. name: "Gigamacro",
  5215. height: math.unit(25000, "km")
  5216. },
  5217. {
  5218. name: "Teramacro",
  5219. height: math.unit(3e6, "km")
  5220. }
  5221. ]
  5222. ))
  5223. characterMakers.push(() => makeCharacter(
  5224. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5225. {
  5226. front: {
  5227. height: math.unit(6, "feet"),
  5228. weight: math.unit(175, "lb"),
  5229. name: "Front",
  5230. image: {
  5231. source: "./media/characters/nebula/front.svg",
  5232. extra: 2566 / 2362,
  5233. bottom: 81 / 2644
  5234. }
  5235. }
  5236. },
  5237. [
  5238. {
  5239. name: "Small",
  5240. height: math.unit(4.5, "meters")
  5241. },
  5242. {
  5243. name: "Macro",
  5244. height: math.unit(1500, "meters"),
  5245. default: true
  5246. },
  5247. {
  5248. name: "Megamacro",
  5249. height: math.unit(150, "km")
  5250. },
  5251. {
  5252. name: "Gigamacro",
  5253. height: math.unit(27000, "km")
  5254. }
  5255. ]
  5256. ))
  5257. characterMakers.push(() => makeCharacter(
  5258. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5259. {
  5260. front: {
  5261. height: math.unit(6, "feet"),
  5262. weight: math.unit(225, "lb"),
  5263. name: "Front",
  5264. image: {
  5265. source: "./media/characters/abysgar/front.svg",
  5266. extra: 1739/1614,
  5267. bottom: 71/1810
  5268. }
  5269. },
  5270. frontNsfw: {
  5271. height: math.unit(6, "feet"),
  5272. weight: math.unit(225, "lb"),
  5273. name: "Front (NSFW)",
  5274. image: {
  5275. source: "./media/characters/abysgar/front-nsfw.svg",
  5276. extra: 1739/1614,
  5277. bottom: 71/1810
  5278. }
  5279. },
  5280. back: {
  5281. height: math.unit(4.6, "feet"),
  5282. weight: math.unit(225, "lb"),
  5283. name: "Back",
  5284. image: {
  5285. source: "./media/characters/abysgar/back.svg",
  5286. extra: 1384/1327,
  5287. bottom: 0/1384
  5288. }
  5289. },
  5290. head: {
  5291. height: math.unit(1.25, "feet"),
  5292. name: "Head",
  5293. image: {
  5294. source: "./media/characters/abysgar/head.svg",
  5295. extra: 669/569,
  5296. bottom: 0/669
  5297. }
  5298. },
  5299. },
  5300. [
  5301. {
  5302. name: "Small",
  5303. height: math.unit(4.5, "meters")
  5304. },
  5305. {
  5306. name: "Macro",
  5307. height: math.unit(1250, "meters"),
  5308. default: true
  5309. },
  5310. {
  5311. name: "Megamacro",
  5312. height: math.unit(125, "km")
  5313. },
  5314. {
  5315. name: "Gigamacro",
  5316. height: math.unit(26000, "km")
  5317. }
  5318. ]
  5319. ))
  5320. characterMakers.push(() => makeCharacter(
  5321. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5322. {
  5323. front: {
  5324. height: math.unit(6, "feet"),
  5325. weight: math.unit(180, "lb"),
  5326. name: "Front",
  5327. image: {
  5328. source: "./media/characters/yakuz/front.svg"
  5329. }
  5330. }
  5331. },
  5332. [
  5333. {
  5334. name: "Small",
  5335. height: math.unit(5, "meters")
  5336. },
  5337. {
  5338. name: "Macro",
  5339. height: math.unit(1500, "meters"),
  5340. default: true
  5341. },
  5342. {
  5343. name: "Megamacro",
  5344. height: math.unit(200, "km")
  5345. },
  5346. {
  5347. name: "Gigamacro",
  5348. height: math.unit(100000, "km")
  5349. }
  5350. ]
  5351. ))
  5352. characterMakers.push(() => makeCharacter(
  5353. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5354. {
  5355. front: {
  5356. height: math.unit(6, "feet"),
  5357. weight: math.unit(175, "lb"),
  5358. name: "Front",
  5359. image: {
  5360. source: "./media/characters/mirova/front.svg",
  5361. extra: 3334 / 3071,
  5362. bottom: 42 / 3375.6
  5363. }
  5364. }
  5365. },
  5366. [
  5367. {
  5368. name: "Small",
  5369. height: math.unit(5, "meters")
  5370. },
  5371. {
  5372. name: "Macro",
  5373. height: math.unit(900, "meters"),
  5374. default: true
  5375. },
  5376. {
  5377. name: "Megamacro",
  5378. height: math.unit(135, "km")
  5379. },
  5380. {
  5381. name: "Gigamacro",
  5382. height: math.unit(20000, "km")
  5383. }
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5388. {
  5389. side: {
  5390. height: math.unit(28.35, "feet"),
  5391. weight: math.unit(99.75, "tons"),
  5392. name: "Side",
  5393. image: {
  5394. source: "./media/characters/asana-mech/side.svg",
  5395. extra: 923 / 699,
  5396. bottom: 50 / 975
  5397. }
  5398. },
  5399. chaingun: {
  5400. height: math.unit(7, "feet"),
  5401. weight: math.unit(2400, "lb"),
  5402. name: "Chaingun",
  5403. image: {
  5404. source: "./media/characters/asana-mech/chaingun.svg"
  5405. }
  5406. },
  5407. laser: {
  5408. height: math.unit(7.12, "feet"),
  5409. weight: math.unit(2000, "lb"),
  5410. name: "Laser",
  5411. image: {
  5412. source: "./media/characters/asana-mech/laser.svg"
  5413. }
  5414. },
  5415. },
  5416. [
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(28.35, "feet"),
  5420. default: true
  5421. },
  5422. {
  5423. name: "Macro",
  5424. height: math.unit(2500, "feet")
  5425. },
  5426. {
  5427. name: "Megamacro",
  5428. height: math.unit(25, "miles")
  5429. },
  5430. {
  5431. name: "Examacro",
  5432. height: math.unit(6e8, "lightyears")
  5433. },
  5434. ]
  5435. ))
  5436. characterMakers.push(() => makeCharacter(
  5437. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5438. {
  5439. front: {
  5440. height: math.unit(5, "meters"),
  5441. weight: math.unit(1000, "kg"),
  5442. name: "Front",
  5443. image: {
  5444. source: "./media/characters/asche/front.svg",
  5445. extra: 1258 / 1190,
  5446. bottom: 47 / 1305
  5447. }
  5448. },
  5449. frontUnderwear: {
  5450. height: math.unit(5, "meters"),
  5451. weight: math.unit(1000, "kg"),
  5452. name: "Front (Underwear)",
  5453. image: {
  5454. source: "./media/characters/asche/front-underwear.svg",
  5455. extra: 1258 / 1190,
  5456. bottom: 47 / 1305
  5457. }
  5458. },
  5459. frontDressed: {
  5460. height: math.unit(5, "meters"),
  5461. weight: math.unit(1000, "kg"),
  5462. name: "Front (Dressed)",
  5463. image: {
  5464. source: "./media/characters/asche/front-dressed.svg",
  5465. extra: 1258 / 1190,
  5466. bottom: 47 / 1305
  5467. }
  5468. },
  5469. frontArmor: {
  5470. height: math.unit(5, "meters"),
  5471. weight: math.unit(1000, "kg"),
  5472. name: "Front (Armored)",
  5473. image: {
  5474. source: "./media/characters/asche/front-armored.svg",
  5475. extra: 1374 / 1308,
  5476. bottom: 23 / 1397
  5477. }
  5478. },
  5479. mp724: {
  5480. height: math.unit(0.96, "meters"),
  5481. weight: math.unit(38, "kg"),
  5482. name: "H&K MP724",
  5483. image: {
  5484. source: "./media/characters/asche/h&k-mp724.svg"
  5485. }
  5486. },
  5487. side: {
  5488. height: math.unit(5, "meters"),
  5489. weight: math.unit(1000, "kg"),
  5490. name: "Side",
  5491. image: {
  5492. source: "./media/characters/asche/side.svg",
  5493. extra: 1717 / 1609,
  5494. bottom: 0.005
  5495. }
  5496. },
  5497. back: {
  5498. height: math.unit(5, "meters"),
  5499. weight: math.unit(1000, "kg"),
  5500. name: "Back",
  5501. image: {
  5502. source: "./media/characters/asche/back.svg",
  5503. extra: 1570 / 1501
  5504. }
  5505. },
  5506. },
  5507. [
  5508. {
  5509. name: "DEFCON 5",
  5510. height: math.unit(5, "meters")
  5511. },
  5512. {
  5513. name: "DEFCON 4",
  5514. height: math.unit(500, "meters"),
  5515. default: true
  5516. },
  5517. {
  5518. name: "DEFCON 3",
  5519. height: math.unit(5, "km")
  5520. },
  5521. {
  5522. name: "DEFCON 2",
  5523. height: math.unit(500, "km")
  5524. },
  5525. {
  5526. name: "DEFCON 1",
  5527. height: math.unit(500000, "km")
  5528. },
  5529. {
  5530. name: "DEFCON 0",
  5531. height: math.unit(3, "gigaparsecs")
  5532. },
  5533. ]
  5534. ))
  5535. characterMakers.push(() => makeCharacter(
  5536. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5537. {
  5538. front: {
  5539. height: math.unit(7, "feet"),
  5540. weight: math.unit(92.7, "kg"),
  5541. name: "Front",
  5542. image: {
  5543. source: "./media/characters/gale/front.svg",
  5544. extra: 977/919,
  5545. bottom: 105/1082
  5546. }
  5547. },
  5548. side: {
  5549. height: math.unit(6.7, "feet"),
  5550. weight: math.unit(92.7, "kg"),
  5551. name: "Side",
  5552. image: {
  5553. source: "./media/characters/gale/side.svg",
  5554. extra: 978/922,
  5555. bottom: 140/1118
  5556. }
  5557. },
  5558. back: {
  5559. height: math.unit(7, "feet"),
  5560. weight: math.unit(92.7, "kg"),
  5561. name: "Back",
  5562. image: {
  5563. source: "./media/characters/gale/back.svg",
  5564. extra: 966/920,
  5565. bottom: 61/1027
  5566. }
  5567. },
  5568. maw: {
  5569. height: math.unit(2.23, "feet"),
  5570. name: "Maw",
  5571. image: {
  5572. source: "./media/characters/gale/maw.svg"
  5573. }
  5574. },
  5575. foot: {
  5576. height: math.unit(2.1, "feet"),
  5577. name: "Foot",
  5578. image: {
  5579. source: "./media/characters/gale/foot.svg"
  5580. }
  5581. },
  5582. },
  5583. [
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(7, "feet")
  5587. },
  5588. {
  5589. name: "Macro",
  5590. height: math.unit(150, "feet"),
  5591. default: true
  5592. },
  5593. {
  5594. name: "Macro+",
  5595. height: math.unit(300, "feet")
  5596. },
  5597. ]
  5598. ))
  5599. characterMakers.push(() => makeCharacter(
  5600. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5601. {
  5602. front: {
  5603. height: math.unit(5 + 10/12, "feet"),
  5604. weight: math.unit(67, "kg"),
  5605. name: "Front",
  5606. image: {
  5607. source: "./media/characters/draylen/front.svg",
  5608. extra: 832/777,
  5609. bottom: 85/917
  5610. }
  5611. }
  5612. },
  5613. [
  5614. {
  5615. name: "Normal",
  5616. height: math.unit(5 + 10/12, "feet")
  5617. },
  5618. {
  5619. name: "Macro",
  5620. height: math.unit(150, "feet"),
  5621. default: true
  5622. }
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5627. {
  5628. front: {
  5629. height: math.unit(7 + 9 / 12, "feet"),
  5630. weight: math.unit(379, "lbs"),
  5631. name: "Front",
  5632. image: {
  5633. source: "./media/characters/chez/front.svg"
  5634. }
  5635. },
  5636. side: {
  5637. height: math.unit(7 + 9 / 12, "feet"),
  5638. weight: math.unit(379, "lbs"),
  5639. name: "Side",
  5640. image: {
  5641. source: "./media/characters/chez/side.svg"
  5642. }
  5643. }
  5644. },
  5645. [
  5646. {
  5647. name: "Normal",
  5648. height: math.unit(7 + 9 / 12, "feet"),
  5649. default: true
  5650. },
  5651. {
  5652. name: "God King",
  5653. height: math.unit(9750000, "meters")
  5654. }
  5655. ]
  5656. ))
  5657. characterMakers.push(() => makeCharacter(
  5658. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5659. {
  5660. front: {
  5661. height: math.unit(6, "feet"),
  5662. weight: math.unit(275, "lbs"),
  5663. name: "Front",
  5664. image: {
  5665. source: "./media/characters/kaylum/front.svg",
  5666. bottom: 0.01,
  5667. extra: 1166 / 1031
  5668. }
  5669. },
  5670. frontWingless: {
  5671. height: math.unit(6, "feet"),
  5672. weight: math.unit(275, "lbs"),
  5673. name: "Front (Wingless)",
  5674. image: {
  5675. source: "./media/characters/kaylum/front-wingless.svg",
  5676. bottom: 0.01,
  5677. extra: 1117 / 1031
  5678. }
  5679. }
  5680. },
  5681. [
  5682. {
  5683. name: "Normal",
  5684. height: math.unit(3.05, "meters")
  5685. },
  5686. {
  5687. name: "Master",
  5688. height: math.unit(5.5, "meters")
  5689. },
  5690. {
  5691. name: "Rampage",
  5692. height: math.unit(19, "meters")
  5693. },
  5694. {
  5695. name: "Macro Lite",
  5696. height: math.unit(37, "meters")
  5697. },
  5698. {
  5699. name: "Hyper Predator",
  5700. height: math.unit(61, "meters")
  5701. },
  5702. {
  5703. name: "Macro",
  5704. height: math.unit(138, "meters"),
  5705. default: true
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5711. {
  5712. front: {
  5713. height: math.unit(5 + 5 / 12, "feet"),
  5714. weight: math.unit(120, "lbs"),
  5715. name: "Front",
  5716. image: {
  5717. source: "./media/characters/geta/front.svg",
  5718. extra: 1003/933,
  5719. bottom: 21/1024
  5720. }
  5721. },
  5722. paw: {
  5723. height: math.unit(0.35, "feet"),
  5724. name: "Paw",
  5725. image: {
  5726. source: "./media/characters/geta/paw.svg"
  5727. }
  5728. },
  5729. },
  5730. [
  5731. {
  5732. name: "Micro",
  5733. height: math.unit(3, "inches"),
  5734. default: true
  5735. },
  5736. {
  5737. name: "Normal",
  5738. height: math.unit(5 + 5 / 12, "feet")
  5739. }
  5740. ]
  5741. ))
  5742. characterMakers.push(() => makeCharacter(
  5743. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5744. {
  5745. front: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(300, "lbs"),
  5748. name: "Front",
  5749. image: {
  5750. source: "./media/characters/tyrnn/front.svg"
  5751. }
  5752. }
  5753. },
  5754. [
  5755. {
  5756. name: "Main Height",
  5757. height: math.unit(355, "feet"),
  5758. default: true
  5759. },
  5760. {
  5761. name: "Fave. Height",
  5762. height: math.unit(2400, "feet")
  5763. }
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5768. {
  5769. front: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(300, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/appledectomy/front.svg"
  5775. }
  5776. }
  5777. },
  5778. [
  5779. {
  5780. name: "Macro",
  5781. height: math.unit(2500, "feet")
  5782. },
  5783. {
  5784. name: "Megamacro",
  5785. height: math.unit(50, "miles"),
  5786. default: true
  5787. },
  5788. {
  5789. name: "Gigamacro",
  5790. height: math.unit(5000, "miles")
  5791. },
  5792. {
  5793. name: "Teramacro",
  5794. height: math.unit(250000, "miles")
  5795. },
  5796. ]
  5797. ))
  5798. characterMakers.push(() => makeCharacter(
  5799. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5800. {
  5801. front: {
  5802. height: math.unit(6, "feet"),
  5803. weight: math.unit(200, "lbs"),
  5804. name: "Front",
  5805. image: {
  5806. source: "./media/characters/vulpes/front.svg",
  5807. extra: 573 / 543,
  5808. bottom: 0.033
  5809. }
  5810. },
  5811. side: {
  5812. height: math.unit(6, "feet"),
  5813. weight: math.unit(200, "lbs"),
  5814. name: "Side",
  5815. image: {
  5816. source: "./media/characters/vulpes/side.svg",
  5817. extra: 577 / 549,
  5818. bottom: 11 / 588
  5819. }
  5820. },
  5821. back: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(200, "lbs"),
  5824. name: "Back",
  5825. image: {
  5826. source: "./media/characters/vulpes/back.svg",
  5827. extra: 573 / 549,
  5828. bottom: 20 / 593
  5829. }
  5830. },
  5831. feet: {
  5832. height: math.unit(1.276, "feet"),
  5833. name: "Feet",
  5834. image: {
  5835. source: "./media/characters/vulpes/feet.svg"
  5836. }
  5837. },
  5838. maw: {
  5839. height: math.unit(1.18, "feet"),
  5840. name: "Maw",
  5841. image: {
  5842. source: "./media/characters/vulpes/maw.svg"
  5843. }
  5844. },
  5845. },
  5846. [
  5847. {
  5848. name: "Micro",
  5849. height: math.unit(2, "inches")
  5850. },
  5851. {
  5852. name: "Normal",
  5853. height: math.unit(6.3, "feet")
  5854. },
  5855. {
  5856. name: "Macro",
  5857. height: math.unit(850, "feet")
  5858. },
  5859. {
  5860. name: "Megamacro",
  5861. height: math.unit(7500, "feet"),
  5862. default: true
  5863. },
  5864. {
  5865. name: "Gigamacro",
  5866. height: math.unit(570000, "miles")
  5867. }
  5868. ]
  5869. ))
  5870. characterMakers.push(() => makeCharacter(
  5871. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5872. {
  5873. front: {
  5874. height: math.unit(6, "feet"),
  5875. weight: math.unit(210, "lbs"),
  5876. name: "Front",
  5877. image: {
  5878. source: "./media/characters/rain-fallen/front.svg"
  5879. }
  5880. },
  5881. side: {
  5882. height: math.unit(6, "feet"),
  5883. weight: math.unit(210, "lbs"),
  5884. name: "Side",
  5885. image: {
  5886. source: "./media/characters/rain-fallen/side.svg"
  5887. }
  5888. },
  5889. back: {
  5890. height: math.unit(6, "feet"),
  5891. weight: math.unit(210, "lbs"),
  5892. name: "Back",
  5893. image: {
  5894. source: "./media/characters/rain-fallen/back.svg"
  5895. }
  5896. },
  5897. feral: {
  5898. height: math.unit(9, "feet"),
  5899. weight: math.unit(700, "lbs"),
  5900. name: "Feral",
  5901. image: {
  5902. source: "./media/characters/rain-fallen/feral.svg"
  5903. }
  5904. },
  5905. },
  5906. [
  5907. {
  5908. name: "Meddling with Mortals",
  5909. height: math.unit(8 + 8/12, "feet")
  5910. },
  5911. {
  5912. name: "Normal",
  5913. height: math.unit(5, "meter")
  5914. },
  5915. {
  5916. name: "Macro",
  5917. height: math.unit(150, "meter"),
  5918. default: true
  5919. },
  5920. {
  5921. name: "Megamacro",
  5922. height: math.unit(278e6, "meter")
  5923. },
  5924. {
  5925. name: "Gigamacro",
  5926. height: math.unit(2e9, "meter")
  5927. },
  5928. {
  5929. name: "Teramacro",
  5930. height: math.unit(8e12, "meter")
  5931. },
  5932. {
  5933. name: "Devourer",
  5934. height: math.unit(14, "zettameters")
  5935. },
  5936. {
  5937. name: "Scarlet King",
  5938. height: math.unit(18, "yottameters")
  5939. },
  5940. {
  5941. name: "Void",
  5942. height: math.unit(1e88, "yottameters")
  5943. }
  5944. ]
  5945. ))
  5946. characterMakers.push(() => makeCharacter(
  5947. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5948. {
  5949. standing: {
  5950. height: math.unit(6, "feet"),
  5951. weight: math.unit(180, "lbs"),
  5952. name: "Standing",
  5953. image: {
  5954. source: "./media/characters/zaakira/standing.svg",
  5955. extra: 1599/1504,
  5956. bottom: 39/1638
  5957. }
  5958. },
  5959. laying: {
  5960. height: math.unit(3.3, "feet"),
  5961. weight: math.unit(180, "lbs"),
  5962. name: "Laying",
  5963. image: {
  5964. source: "./media/characters/zaakira/laying.svg"
  5965. }
  5966. },
  5967. },
  5968. [
  5969. {
  5970. name: "Normal",
  5971. height: math.unit(12, "feet")
  5972. },
  5973. {
  5974. name: "Macro",
  5975. height: math.unit(279, "feet"),
  5976. default: true
  5977. }
  5978. ]
  5979. ))
  5980. characterMakers.push(() => makeCharacter(
  5981. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5982. {
  5983. femSfw: {
  5984. height: math.unit(8, "feet"),
  5985. weight: math.unit(350, "lb"),
  5986. name: "Fem",
  5987. image: {
  5988. source: "./media/characters/sigvald/fem-sfw.svg",
  5989. extra: 182 / 164,
  5990. bottom: 8.7 / 190.5
  5991. }
  5992. },
  5993. femNsfw: {
  5994. height: math.unit(8, "feet"),
  5995. weight: math.unit(350, "lb"),
  5996. name: "Fem (NSFW)",
  5997. image: {
  5998. source: "./media/characters/sigvald/fem-nsfw.svg",
  5999. extra: 182 / 164,
  6000. bottom: 8.7 / 190.5
  6001. }
  6002. },
  6003. maleNsfw: {
  6004. height: math.unit(8, "feet"),
  6005. weight: math.unit(350, "lb"),
  6006. name: "Male (NSFW)",
  6007. image: {
  6008. source: "./media/characters/sigvald/male-nsfw.svg",
  6009. extra: 182 / 164,
  6010. bottom: 8.7 / 190.5
  6011. }
  6012. },
  6013. hermNsfw: {
  6014. height: math.unit(8, "feet"),
  6015. weight: math.unit(350, "lb"),
  6016. name: "Herm (NSFW)",
  6017. image: {
  6018. source: "./media/characters/sigvald/herm-nsfw.svg",
  6019. extra: 182 / 164,
  6020. bottom: 8.7 / 190.5
  6021. }
  6022. },
  6023. dick: {
  6024. height: math.unit(2.36, "feet"),
  6025. name: "Dick",
  6026. image: {
  6027. source: "./media/characters/sigvald/dick.svg"
  6028. }
  6029. },
  6030. eye: {
  6031. height: math.unit(0.31, "feet"),
  6032. name: "Eye",
  6033. image: {
  6034. source: "./media/characters/sigvald/eye.svg"
  6035. }
  6036. },
  6037. mouth: {
  6038. height: math.unit(0.92, "feet"),
  6039. name: "Mouth",
  6040. image: {
  6041. source: "./media/characters/sigvald/mouth.svg"
  6042. }
  6043. },
  6044. paws: {
  6045. height: math.unit(2.2, "feet"),
  6046. name: "Paws",
  6047. image: {
  6048. source: "./media/characters/sigvald/paws.svg"
  6049. }
  6050. }
  6051. },
  6052. [
  6053. {
  6054. name: "Normal",
  6055. height: math.unit(8, "feet")
  6056. },
  6057. {
  6058. name: "Large",
  6059. height: math.unit(12, "feet")
  6060. },
  6061. {
  6062. name: "Larger",
  6063. height: math.unit(20, "feet")
  6064. },
  6065. {
  6066. name: "Macro",
  6067. height: math.unit(150, "feet")
  6068. },
  6069. {
  6070. name: "Macro+",
  6071. height: math.unit(200, "feet"),
  6072. default: true
  6073. },
  6074. ]
  6075. ))
  6076. characterMakers.push(() => makeCharacter(
  6077. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6078. {
  6079. side: {
  6080. height: math.unit(12, "feet"),
  6081. weight: math.unit(2000, "kg"),
  6082. name: "Side",
  6083. image: {
  6084. source: "./media/characters/scott/side.svg",
  6085. extra: 754 / 724,
  6086. bottom: 0.069
  6087. }
  6088. },
  6089. upright: {
  6090. height: math.unit(12, "feet"),
  6091. weight: math.unit(2000, "kg"),
  6092. name: "Upright",
  6093. image: {
  6094. source: "./media/characters/scott/upright.svg",
  6095. extra: 3881 / 3722,
  6096. bottom: 0.05
  6097. }
  6098. },
  6099. },
  6100. [
  6101. {
  6102. name: "Normal",
  6103. height: math.unit(12, "feet"),
  6104. default: true
  6105. },
  6106. ]
  6107. ))
  6108. characterMakers.push(() => makeCharacter(
  6109. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6110. {
  6111. side: {
  6112. height: math.unit(8, "meters"),
  6113. weight: math.unit(84755, "lbs"),
  6114. name: "Side",
  6115. image: {
  6116. source: "./media/characters/tobias/side.svg",
  6117. extra: 1474 / 1096,
  6118. bottom: 38.9 / 1513.1235
  6119. }
  6120. },
  6121. maw: {
  6122. height: math.unit(2.3, "meters"),
  6123. name: "Maw",
  6124. image: {
  6125. source: "./media/characters/tobias/maw.svg"
  6126. }
  6127. },
  6128. burp: {
  6129. height: math.unit(2.85, "meters"),
  6130. name: "Burp",
  6131. image: {
  6132. source: "./media/characters/tobias/burp.svg"
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Normal",
  6139. height: math.unit(8, "meters"),
  6140. default: true
  6141. },
  6142. ]
  6143. ))
  6144. characterMakers.push(() => makeCharacter(
  6145. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6146. {
  6147. front: {
  6148. height: math.unit(5.5, "feet"),
  6149. weight: math.unit(400, "lbs"),
  6150. name: "Front",
  6151. image: {
  6152. source: "./media/characters/kieran/front.svg",
  6153. extra: 2694 / 2364,
  6154. bottom: 217 / 2908
  6155. }
  6156. },
  6157. side: {
  6158. height: math.unit(5.5, "feet"),
  6159. weight: math.unit(400, "lbs"),
  6160. name: "Side",
  6161. image: {
  6162. source: "./media/characters/kieran/side.svg",
  6163. extra: 875 / 777,
  6164. bottom: 84.6 / 959
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Normal",
  6171. height: math.unit(5.5, "feet"),
  6172. default: true
  6173. },
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6178. {
  6179. side: {
  6180. height: math.unit(2, "meters"),
  6181. weight: math.unit(70, "kg"),
  6182. name: "Side",
  6183. image: {
  6184. source: "./media/characters/sanya/side.svg",
  6185. bottom: 0.02,
  6186. extra: 1.02
  6187. }
  6188. },
  6189. },
  6190. [
  6191. {
  6192. name: "Small",
  6193. height: math.unit(2, "meters")
  6194. },
  6195. {
  6196. name: "Normal",
  6197. height: math.unit(3, "meters")
  6198. },
  6199. {
  6200. name: "Macro",
  6201. height: math.unit(16, "meters"),
  6202. default: true
  6203. },
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6208. {
  6209. front: {
  6210. height: math.unit(2, "meters"),
  6211. weight: math.unit(120, "kg"),
  6212. name: "Front",
  6213. image: {
  6214. source: "./media/characters/miranda/front.svg",
  6215. extra: 195 / 185,
  6216. bottom: 10.9 / 206.5
  6217. }
  6218. },
  6219. back: {
  6220. height: math.unit(2, "meters"),
  6221. weight: math.unit(120, "kg"),
  6222. name: "Back",
  6223. image: {
  6224. source: "./media/characters/miranda/back.svg",
  6225. extra: 201 / 193,
  6226. bottom: 2.3 / 203.7
  6227. }
  6228. },
  6229. },
  6230. [
  6231. {
  6232. name: "Normal",
  6233. height: math.unit(10, "feet"),
  6234. default: true
  6235. }
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "James", species: ["deer"], tags: ["anthro"] },
  6240. {
  6241. side: {
  6242. height: math.unit(2, "meters"),
  6243. weight: math.unit(100, "kg"),
  6244. name: "Front",
  6245. image: {
  6246. source: "./media/characters/james/front.svg",
  6247. extra: 10 / 8.5
  6248. }
  6249. },
  6250. },
  6251. [
  6252. {
  6253. name: "Normal",
  6254. height: math.unit(8.5, "feet"),
  6255. default: true
  6256. }
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6261. {
  6262. side: {
  6263. height: math.unit(9.5, "feet"),
  6264. weight: math.unit(2500, "lbs"),
  6265. name: "Side",
  6266. image: {
  6267. source: "./media/characters/heather/side.svg"
  6268. }
  6269. },
  6270. },
  6271. [
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(9.5, "feet"),
  6275. default: true
  6276. }
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6281. {
  6282. side: {
  6283. height: math.unit(6.5, "feet"),
  6284. weight: math.unit(400, "lbs"),
  6285. name: "Side",
  6286. image: {
  6287. source: "./media/characters/lukas/side.svg",
  6288. extra: 7.25 / 6.5
  6289. }
  6290. },
  6291. },
  6292. [
  6293. {
  6294. name: "Normal",
  6295. height: math.unit(6.5, "feet"),
  6296. default: true
  6297. }
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6302. {
  6303. side: {
  6304. height: math.unit(5, "feet"),
  6305. weight: math.unit(3000, "lbs"),
  6306. name: "Side",
  6307. image: {
  6308. source: "./media/characters/louise/side.svg"
  6309. }
  6310. },
  6311. },
  6312. [
  6313. {
  6314. name: "Normal",
  6315. height: math.unit(5, "feet"),
  6316. default: true
  6317. }
  6318. ]
  6319. ))
  6320. characterMakers.push(() => makeCharacter(
  6321. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6322. {
  6323. side: {
  6324. height: math.unit(6, "feet"),
  6325. weight: math.unit(150, "lbs"),
  6326. name: "Side",
  6327. image: {
  6328. source: "./media/characters/ramona/side.svg",
  6329. extra: 871/854,
  6330. bottom: 41/912
  6331. }
  6332. },
  6333. },
  6334. [
  6335. {
  6336. name: "Normal",
  6337. height: math.unit(6 + 4/12, "feet")
  6338. },
  6339. {
  6340. name: "Minimacro",
  6341. height: math.unit(5.3, "meters"),
  6342. default: true
  6343. },
  6344. {
  6345. name: "Macro",
  6346. height: math.unit(20, "stories")
  6347. },
  6348. {
  6349. name: "Macro+",
  6350. height: math.unit(50, "stories")
  6351. },
  6352. ]
  6353. ))
  6354. characterMakers.push(() => makeCharacter(
  6355. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6356. {
  6357. standing: {
  6358. height: math.unit(5.75, "feet"),
  6359. weight: math.unit(160, "lbs"),
  6360. name: "Standing",
  6361. image: {
  6362. source: "./media/characters/deerpuff/standing.svg",
  6363. extra: 682 / 624
  6364. }
  6365. },
  6366. sitting: {
  6367. height: math.unit(5.75 / 1.79, "feet"),
  6368. weight: math.unit(160, "lbs"),
  6369. name: "Sitting",
  6370. image: {
  6371. source: "./media/characters/deerpuff/sitting.svg",
  6372. bottom: 44 / 400,
  6373. extra: 1
  6374. }
  6375. },
  6376. taurLaying: {
  6377. height: math.unit(6, "feet"),
  6378. weight: math.unit(400, "lbs"),
  6379. name: "Taur (Laying)",
  6380. image: {
  6381. source: "./media/characters/deerpuff/taur-laying.svg"
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Puffball",
  6388. height: math.unit(6, "inches")
  6389. },
  6390. {
  6391. name: "Normalpuff",
  6392. height: math.unit(5.75, "feet")
  6393. },
  6394. {
  6395. name: "Macropuff",
  6396. height: math.unit(1500, "feet"),
  6397. default: true
  6398. },
  6399. {
  6400. name: "Megapuff",
  6401. height: math.unit(500, "miles")
  6402. },
  6403. {
  6404. name: "Gigapuff",
  6405. height: math.unit(250000, "miles")
  6406. },
  6407. {
  6408. name: "Omegapuff",
  6409. height: math.unit(1000, "lightyears")
  6410. },
  6411. ]
  6412. ))
  6413. characterMakers.push(() => makeCharacter(
  6414. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6415. {
  6416. stomping: {
  6417. height: math.unit(6, "feet"),
  6418. weight: math.unit(170, "lbs"),
  6419. name: "Stomping",
  6420. image: {
  6421. source: "./media/characters/vivian/stomping.svg"
  6422. }
  6423. },
  6424. sitting: {
  6425. height: math.unit(6 / 1.75, "feet"),
  6426. weight: math.unit(170, "lbs"),
  6427. name: "Sitting",
  6428. image: {
  6429. source: "./media/characters/vivian/sitting.svg",
  6430. bottom: 1 / 6.4,
  6431. extra: 1,
  6432. }
  6433. },
  6434. },
  6435. [
  6436. {
  6437. name: "Normal",
  6438. height: math.unit(7, "feet"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Macro",
  6443. height: math.unit(10, "stories")
  6444. },
  6445. {
  6446. name: "Macro+",
  6447. height: math.unit(30, "stories")
  6448. },
  6449. {
  6450. name: "Megamacro",
  6451. height: math.unit(10, "miles")
  6452. },
  6453. {
  6454. name: "Megamacro+",
  6455. height: math.unit(2750000, "meters")
  6456. },
  6457. ]
  6458. ))
  6459. characterMakers.push(() => makeCharacter(
  6460. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6461. {
  6462. front: {
  6463. height: math.unit(6, "feet"),
  6464. weight: math.unit(160, "lbs"),
  6465. name: "Front",
  6466. image: {
  6467. source: "./media/characters/prince/front.svg",
  6468. extra: 1938/1682,
  6469. bottom: 45/1983
  6470. }
  6471. },
  6472. back: {
  6473. height: math.unit(6, "feet"),
  6474. weight: math.unit(160, "lbs"),
  6475. name: "Back",
  6476. image: {
  6477. source: "./media/characters/prince/back.svg",
  6478. extra: 1955/1726,
  6479. bottom: 6/1961
  6480. }
  6481. },
  6482. },
  6483. [
  6484. {
  6485. name: "Normal",
  6486. height: math.unit(7.75, "feet"),
  6487. default: true
  6488. },
  6489. {
  6490. name: "Not cute",
  6491. height: math.unit(17, "feet")
  6492. },
  6493. {
  6494. name: "I said NOT",
  6495. height: math.unit(91, "feet")
  6496. },
  6497. {
  6498. name: "Please stop",
  6499. height: math.unit(560, "feet")
  6500. },
  6501. {
  6502. name: "What have you done",
  6503. height: math.unit(2200, "feet")
  6504. },
  6505. {
  6506. name: "Deer God",
  6507. height: math.unit(3.6, "miles")
  6508. },
  6509. ]
  6510. ))
  6511. characterMakers.push(() => makeCharacter(
  6512. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6513. {
  6514. standing: {
  6515. height: math.unit(6, "feet"),
  6516. weight: math.unit(300, "lbs"),
  6517. name: "Standing",
  6518. image: {
  6519. source: "./media/characters/psymon/standing.svg",
  6520. extra: 1888 / 1810,
  6521. bottom: 0.05
  6522. }
  6523. },
  6524. slithering: {
  6525. height: math.unit(6, "feet"),
  6526. weight: math.unit(300, "lbs"),
  6527. name: "Slithering",
  6528. image: {
  6529. source: "./media/characters/psymon/slithering.svg",
  6530. extra: 1330 / 1224
  6531. }
  6532. },
  6533. slitheringAlt: {
  6534. height: math.unit(6, "feet"),
  6535. weight: math.unit(300, "lbs"),
  6536. name: "Slithering (Alt)",
  6537. image: {
  6538. source: "./media/characters/psymon/slithering-alt.svg",
  6539. extra: 1330 / 1224
  6540. }
  6541. },
  6542. },
  6543. [
  6544. {
  6545. name: "Normal",
  6546. height: math.unit(11.25, "feet"),
  6547. default: true
  6548. },
  6549. {
  6550. name: "Large",
  6551. height: math.unit(27, "feet")
  6552. },
  6553. {
  6554. name: "Giant",
  6555. height: math.unit(87, "feet")
  6556. },
  6557. {
  6558. name: "Macro",
  6559. height: math.unit(365, "feet")
  6560. },
  6561. {
  6562. name: "Megamacro",
  6563. height: math.unit(3, "miles")
  6564. },
  6565. {
  6566. name: "World Serpent",
  6567. height: math.unit(8000, "miles")
  6568. },
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6573. {
  6574. front: {
  6575. height: math.unit(6, "feet"),
  6576. weight: math.unit(180, "lbs"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/daimos/front.svg",
  6580. extra: 4160 / 3897,
  6581. bottom: 0.021
  6582. }
  6583. }
  6584. },
  6585. [
  6586. {
  6587. name: "Normal",
  6588. height: math.unit(8, "feet"),
  6589. default: true
  6590. },
  6591. {
  6592. name: "Big Dog",
  6593. height: math.unit(22, "feet")
  6594. },
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(127, "feet")
  6598. },
  6599. {
  6600. name: "Megamacro",
  6601. height: math.unit(3600, "feet")
  6602. },
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6607. {
  6608. side: {
  6609. height: math.unit(6, "feet"),
  6610. weight: math.unit(180, "lbs"),
  6611. name: "Side",
  6612. image: {
  6613. source: "./media/characters/blake/side.svg",
  6614. extra: 1212 / 1120,
  6615. bottom: 0.05
  6616. }
  6617. },
  6618. crouched: {
  6619. height: math.unit(6 * 0.57, "feet"),
  6620. weight: math.unit(180, "lbs"),
  6621. name: "Crouched",
  6622. image: {
  6623. source: "./media/characters/blake/crouched.svg",
  6624. extra: 840 / 587,
  6625. bottom: 0.04
  6626. }
  6627. },
  6628. bent: {
  6629. height: math.unit(6 * 0.75, "feet"),
  6630. weight: math.unit(180, "lbs"),
  6631. name: "Bent",
  6632. image: {
  6633. source: "./media/characters/blake/bent.svg",
  6634. extra: 592 / 544,
  6635. bottom: 0.035
  6636. }
  6637. },
  6638. },
  6639. [
  6640. {
  6641. name: "Normal",
  6642. height: math.unit(8 + 1 / 6, "feet"),
  6643. default: true
  6644. },
  6645. {
  6646. name: "Big Backside",
  6647. height: math.unit(37, "feet")
  6648. },
  6649. {
  6650. name: "Subway Shredder",
  6651. height: math.unit(72, "feet")
  6652. },
  6653. {
  6654. name: "City Carver",
  6655. height: math.unit(1675, "feet")
  6656. },
  6657. {
  6658. name: "Tectonic Tweaker",
  6659. height: math.unit(2300, "miles")
  6660. },
  6661. ]
  6662. ))
  6663. characterMakers.push(() => makeCharacter(
  6664. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6665. {
  6666. front: {
  6667. height: math.unit(6, "feet"),
  6668. weight: math.unit(180, "lbs"),
  6669. name: "Front",
  6670. image: {
  6671. source: "./media/characters/guisetto/front.svg",
  6672. extra: 856 / 817,
  6673. bottom: 0.06
  6674. }
  6675. },
  6676. airborne: {
  6677. height: math.unit(6, "feet"),
  6678. weight: math.unit(180, "lbs"),
  6679. name: "Airborne",
  6680. image: {
  6681. source: "./media/characters/guisetto/airborne.svg",
  6682. extra: 584 / 525
  6683. }
  6684. },
  6685. },
  6686. [
  6687. {
  6688. name: "Normal",
  6689. height: math.unit(10 + 11 / 12, "feet"),
  6690. default: true
  6691. },
  6692. {
  6693. name: "Large",
  6694. height: math.unit(35, "feet")
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(475, "feet")
  6699. },
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(180, "lbs"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/luxor/front.svg",
  6711. extra: 2940 / 2152
  6712. }
  6713. },
  6714. back: {
  6715. height: math.unit(6, "feet"),
  6716. weight: math.unit(180, "lbs"),
  6717. name: "Back",
  6718. image: {
  6719. source: "./media/characters/luxor/back.svg",
  6720. extra: 1083 / 960
  6721. }
  6722. },
  6723. },
  6724. [
  6725. {
  6726. name: "Normal",
  6727. height: math.unit(5 + 5 / 6, "feet"),
  6728. default: true
  6729. },
  6730. {
  6731. name: "Lamp",
  6732. height: math.unit(50, "feet")
  6733. },
  6734. {
  6735. name: "Lämp",
  6736. height: math.unit(300, "feet")
  6737. },
  6738. {
  6739. name: "The sun is a lamp",
  6740. height: math.unit(250000, "miles")
  6741. },
  6742. ]
  6743. ))
  6744. characterMakers.push(() => makeCharacter(
  6745. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6746. {
  6747. front: {
  6748. height: math.unit(6, "feet"),
  6749. weight: math.unit(50, "lbs"),
  6750. name: "Front",
  6751. image: {
  6752. source: "./media/characters/huoyan/front.svg"
  6753. }
  6754. },
  6755. side: {
  6756. height: math.unit(6, "feet"),
  6757. weight: math.unit(180, "lbs"),
  6758. name: "Side",
  6759. image: {
  6760. source: "./media/characters/huoyan/side.svg"
  6761. }
  6762. },
  6763. },
  6764. [
  6765. {
  6766. name: "Chef",
  6767. height: math.unit(9, "feet")
  6768. },
  6769. {
  6770. name: "Normal",
  6771. height: math.unit(65, "feet"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Macro",
  6776. height: math.unit(780, "feet")
  6777. },
  6778. {
  6779. name: "Flaming Mountain",
  6780. height: math.unit(4.8, "miles")
  6781. },
  6782. {
  6783. name: "Celestial",
  6784. height: math.unit(765000, "miles")
  6785. },
  6786. ]
  6787. ))
  6788. characterMakers.push(() => makeCharacter(
  6789. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6790. {
  6791. front: {
  6792. height: math.unit(5 + 3 / 4, "feet"),
  6793. weight: math.unit(120, "lbs"),
  6794. name: "Front",
  6795. image: {
  6796. source: "./media/characters/tails/front.svg"
  6797. }
  6798. }
  6799. },
  6800. [
  6801. {
  6802. name: "Normal",
  6803. height: math.unit(5 + 3 / 4, "feet"),
  6804. default: true
  6805. }
  6806. ]
  6807. ))
  6808. characterMakers.push(() => makeCharacter(
  6809. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6810. {
  6811. front: {
  6812. height: math.unit(4, "feet"),
  6813. weight: math.unit(50, "lbs"),
  6814. name: "Front",
  6815. image: {
  6816. source: "./media/characters/rainy/front.svg"
  6817. }
  6818. }
  6819. },
  6820. [
  6821. {
  6822. name: "Macro",
  6823. height: math.unit(800, "feet"),
  6824. default: true
  6825. }
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(6, "feet"),
  6833. weight: math.unit(150, "lbs"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/rainier/front.svg"
  6837. }
  6838. }
  6839. },
  6840. [
  6841. {
  6842. name: "Micro",
  6843. height: math.unit(2, "mm"),
  6844. default: true
  6845. }
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(8 + 4/12, "feet"),
  6853. weight: math.unit(450, "kilograms"),
  6854. volume: math.unit(5, "cups"),
  6855. name: "Front",
  6856. image: {
  6857. source: "./media/characters/andy-renard/front.svg",
  6858. extra: 1839/1726,
  6859. bottom: 134/1973
  6860. }
  6861. },
  6862. back: {
  6863. height: math.unit(8 + 4/12, "feet"),
  6864. weight: math.unit(450, "kilograms"),
  6865. volume: math.unit(5, "cups"),
  6866. name: "Back",
  6867. image: {
  6868. source: "./media/characters/andy-renard/back.svg",
  6869. extra: 1838/1710,
  6870. bottom: 105/1943
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Tall",
  6877. height: math.unit(8 + 4/12, "feet")
  6878. },
  6879. {
  6880. name: "Mini Macro",
  6881. height: math.unit(15, "feet"),
  6882. default: true
  6883. },
  6884. {
  6885. name: "Macro",
  6886. height: math.unit(100, "feet")
  6887. },
  6888. {
  6889. name: "Mega Macro",
  6890. height: math.unit(1000, "feet")
  6891. },
  6892. {
  6893. name: "Giga Macro",
  6894. height: math.unit(10, "miles")
  6895. },
  6896. {
  6897. name: "God Macro",
  6898. height: math.unit(1, "multiverse")
  6899. },
  6900. ]
  6901. ))
  6902. characterMakers.push(() => makeCharacter(
  6903. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6904. {
  6905. front: {
  6906. height: math.unit(6, "feet"),
  6907. weight: math.unit(210, "lbs"),
  6908. name: "Front",
  6909. image: {
  6910. source: "./media/characters/cimmaron/front-sfw.svg",
  6911. extra: 701 / 676,
  6912. bottom: 0.046
  6913. }
  6914. },
  6915. back: {
  6916. height: math.unit(6, "feet"),
  6917. weight: math.unit(210, "lbs"),
  6918. name: "Back",
  6919. image: {
  6920. source: "./media/characters/cimmaron/back-sfw.svg",
  6921. extra: 701 / 676,
  6922. bottom: 0.046
  6923. }
  6924. },
  6925. frontNsfw: {
  6926. height: math.unit(6, "feet"),
  6927. weight: math.unit(210, "lbs"),
  6928. name: "Front (NSFW)",
  6929. image: {
  6930. source: "./media/characters/cimmaron/front-nsfw.svg",
  6931. extra: 701 / 676,
  6932. bottom: 0.046
  6933. }
  6934. },
  6935. backNsfw: {
  6936. height: math.unit(6, "feet"),
  6937. weight: math.unit(210, "lbs"),
  6938. name: "Back (NSFW)",
  6939. image: {
  6940. source: "./media/characters/cimmaron/back-nsfw.svg",
  6941. extra: 701 / 676,
  6942. bottom: 0.046
  6943. }
  6944. },
  6945. dick: {
  6946. height: math.unit(1.714, "feet"),
  6947. name: "Dick",
  6948. image: {
  6949. source: "./media/characters/cimmaron/dick.svg"
  6950. }
  6951. },
  6952. },
  6953. [
  6954. {
  6955. name: "Normal",
  6956. height: math.unit(6, "feet"),
  6957. default: true
  6958. },
  6959. {
  6960. name: "Macro Mayor",
  6961. height: math.unit(350, "meters")
  6962. },
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6967. {
  6968. front: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(200, "lbs"),
  6971. name: "Front",
  6972. image: {
  6973. source: "./media/characters/akari/front.svg",
  6974. extra: 962 / 901,
  6975. bottom: 0.04
  6976. }
  6977. }
  6978. },
  6979. [
  6980. {
  6981. name: "Micro",
  6982. height: math.unit(5, "inches"),
  6983. default: true
  6984. },
  6985. {
  6986. name: "Normal",
  6987. height: math.unit(7, "feet")
  6988. },
  6989. ]
  6990. ))
  6991. characterMakers.push(() => makeCharacter(
  6992. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6993. {
  6994. front: {
  6995. height: math.unit(6, "feet"),
  6996. weight: math.unit(140, "lbs"),
  6997. name: "Front",
  6998. image: {
  6999. source: "./media/characters/cynosura/front.svg",
  7000. extra: 437/410,
  7001. bottom: 9/446
  7002. }
  7003. },
  7004. back: {
  7005. height: math.unit(6, "feet"),
  7006. weight: math.unit(140, "lbs"),
  7007. name: "Back",
  7008. image: {
  7009. source: "./media/characters/cynosura/back.svg",
  7010. extra: 1304/1160,
  7011. bottom: 71/1375
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Micro",
  7018. height: math.unit(4, "inches")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(5.75, "feet"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Tall",
  7027. height: math.unit(10, "feet")
  7028. },
  7029. {
  7030. name: "Big",
  7031. height: math.unit(20, "feet")
  7032. },
  7033. {
  7034. name: "Macro",
  7035. height: math.unit(50, "feet")
  7036. },
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(13 + 2/12, "feet"),
  7044. weight: math.unit(800, "kg"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/gin/front.svg",
  7048. extra: 1312/1191,
  7049. bottom: 45/1357
  7050. }
  7051. },
  7052. mouth: {
  7053. height: math.unit(2.39 * 1.8, "feet"),
  7054. name: "Mouth",
  7055. image: {
  7056. source: "./media/characters/gin/mouth.svg"
  7057. }
  7058. },
  7059. hand: {
  7060. height: math.unit(1.57 * 2.19, "feet"),
  7061. name: "Hand",
  7062. image: {
  7063. source: "./media/characters/gin/hand.svg"
  7064. }
  7065. },
  7066. foot: {
  7067. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7068. name: "Foot",
  7069. image: {
  7070. source: "./media/characters/gin/foot.svg"
  7071. }
  7072. },
  7073. sole: {
  7074. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7075. name: "Sole",
  7076. image: {
  7077. source: "./media/characters/gin/sole.svg"
  7078. }
  7079. },
  7080. },
  7081. [
  7082. {
  7083. name: "Very Small",
  7084. height: math.unit(13 + 2 / 12, "feet")
  7085. },
  7086. {
  7087. name: "Micro",
  7088. height: math.unit(600, "miles")
  7089. },
  7090. {
  7091. name: "Regular",
  7092. height: math.unit(20, "earths"),
  7093. default: true
  7094. },
  7095. {
  7096. name: "Macro",
  7097. height: math.unit(2.2, "solarradii")
  7098. },
  7099. {
  7100. name: "Teramacro",
  7101. height: math.unit(1.2, "galaxies")
  7102. },
  7103. {
  7104. name: "Omegamacro",
  7105. height: math.unit(200, "universes")
  7106. },
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(6 + 1 / 6, "feet"),
  7114. weight: math.unit(178, "lbs"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/guy/front.svg"
  7118. }
  7119. }
  7120. },
  7121. [
  7122. {
  7123. name: "Normal",
  7124. height: math.unit(6 + 1 / 6, "feet"),
  7125. default: true
  7126. },
  7127. {
  7128. name: "Large",
  7129. height: math.unit(25 + 7 / 12, "feet")
  7130. },
  7131. {
  7132. name: "Macro",
  7133. height: math.unit(60 + 9 / 12, "feet")
  7134. },
  7135. {
  7136. name: "Macro+",
  7137. height: math.unit(246, "feet")
  7138. },
  7139. {
  7140. name: "Macro++",
  7141. height: math.unit(878, "feet")
  7142. }
  7143. ]
  7144. ))
  7145. characterMakers.push(() => makeCharacter(
  7146. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7147. {
  7148. front: {
  7149. height: math.unit(9, "feet"),
  7150. weight: math.unit(800, "lbs"),
  7151. name: "Front",
  7152. image: {
  7153. source: "./media/characters/tiberius/front.svg",
  7154. extra: 2295 / 2071
  7155. }
  7156. },
  7157. back: {
  7158. height: math.unit(9, "feet"),
  7159. weight: math.unit(800, "lbs"),
  7160. name: "Back",
  7161. image: {
  7162. source: "./media/characters/tiberius/back.svg",
  7163. extra: 2373 / 2160
  7164. }
  7165. },
  7166. },
  7167. [
  7168. {
  7169. name: "Normal",
  7170. height: math.unit(9, "feet"),
  7171. default: true
  7172. }
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7177. {
  7178. front: {
  7179. height: math.unit(6, "feet"),
  7180. weight: math.unit(600, "lbs"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/surgo/front.svg",
  7184. extra: 3591 / 2227
  7185. }
  7186. },
  7187. back: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(600, "lbs"),
  7190. name: "Back",
  7191. image: {
  7192. source: "./media/characters/surgo/back.svg",
  7193. extra: 3557 / 2228
  7194. }
  7195. },
  7196. laying: {
  7197. height: math.unit(6 * 0.85, "feet"),
  7198. weight: math.unit(600, "lbs"),
  7199. name: "Laying",
  7200. image: {
  7201. source: "./media/characters/surgo/laying.svg"
  7202. }
  7203. },
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(6, "feet"),
  7209. default: true
  7210. }
  7211. ]
  7212. ))
  7213. characterMakers.push(() => makeCharacter(
  7214. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7215. {
  7216. side: {
  7217. height: math.unit(6, "feet"),
  7218. weight: math.unit(150, "lbs"),
  7219. name: "Side",
  7220. image: {
  7221. source: "./media/characters/cibus/side.svg",
  7222. extra: 800 / 400
  7223. }
  7224. },
  7225. },
  7226. [
  7227. {
  7228. name: "Normal",
  7229. height: math.unit(6, "feet"),
  7230. default: true
  7231. }
  7232. ]
  7233. ))
  7234. characterMakers.push(() => makeCharacter(
  7235. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7236. {
  7237. front: {
  7238. height: math.unit(6, "feet"),
  7239. weight: math.unit(240, "lbs"),
  7240. name: "Front",
  7241. image: {
  7242. source: "./media/characters/nibbles/front.svg"
  7243. }
  7244. },
  7245. side: {
  7246. height: math.unit(6, "feet"),
  7247. weight: math.unit(240, "lbs"),
  7248. name: "Side",
  7249. image: {
  7250. source: "./media/characters/nibbles/side.svg"
  7251. }
  7252. },
  7253. },
  7254. [
  7255. {
  7256. name: "Normal",
  7257. height: math.unit(9, "feet"),
  7258. default: true
  7259. }
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7264. {
  7265. side: {
  7266. height: math.unit(5 + 1 / 6, "feet"),
  7267. weight: math.unit(130, "lbs"),
  7268. name: "Side",
  7269. image: {
  7270. source: "./media/characters/rikky/side.svg",
  7271. extra: 851 / 801
  7272. }
  7273. },
  7274. },
  7275. [
  7276. {
  7277. name: "Normal",
  7278. height: math.unit(5 + 1 / 6, "feet")
  7279. },
  7280. {
  7281. name: "Macro",
  7282. height: math.unit(152, "feet"),
  7283. default: true
  7284. },
  7285. {
  7286. name: "Megamacro",
  7287. height: math.unit(7, "miles")
  7288. }
  7289. ]
  7290. ))
  7291. characterMakers.push(() => makeCharacter(
  7292. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7293. {
  7294. side: {
  7295. height: math.unit(370, "cm"),
  7296. weight: math.unit(350, "lbs"),
  7297. name: "Side",
  7298. image: {
  7299. source: "./media/characters/malfressa/side.svg"
  7300. }
  7301. },
  7302. walking: {
  7303. height: math.unit(370, "cm"),
  7304. weight: math.unit(350, "lbs"),
  7305. name: "Walking",
  7306. image: {
  7307. source: "./media/characters/malfressa/walking.svg"
  7308. }
  7309. },
  7310. feral: {
  7311. height: math.unit(2500, "cm"),
  7312. weight: math.unit(100000, "lbs"),
  7313. name: "Feral",
  7314. image: {
  7315. source: "./media/characters/malfressa/feral.svg",
  7316. extra: 2108 / 837,
  7317. bottom: 0.02
  7318. }
  7319. },
  7320. },
  7321. [
  7322. {
  7323. name: "Normal",
  7324. height: math.unit(370, "cm")
  7325. },
  7326. {
  7327. name: "Macro",
  7328. height: math.unit(300, "meters"),
  7329. default: true
  7330. }
  7331. ]
  7332. ))
  7333. characterMakers.push(() => makeCharacter(
  7334. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7335. {
  7336. front: {
  7337. height: math.unit(6, "feet"),
  7338. weight: math.unit(60, "kg"),
  7339. name: "Front",
  7340. image: {
  7341. source: "./media/characters/jaro/front.svg",
  7342. extra: 845/817,
  7343. bottom: 45/890
  7344. }
  7345. },
  7346. back: {
  7347. height: math.unit(6, "feet"),
  7348. weight: math.unit(60, "kg"),
  7349. name: "Back",
  7350. image: {
  7351. source: "./media/characters/jaro/back.svg",
  7352. extra: 847/817,
  7353. bottom: 34/881
  7354. }
  7355. },
  7356. },
  7357. [
  7358. {
  7359. name: "Micro",
  7360. height: math.unit(7, "inches")
  7361. },
  7362. {
  7363. name: "Normal",
  7364. height: math.unit(5.5, "feet"),
  7365. default: true
  7366. },
  7367. {
  7368. name: "Minimacro",
  7369. height: math.unit(20, "feet")
  7370. },
  7371. {
  7372. name: "Macro",
  7373. height: math.unit(200, "meters")
  7374. }
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7379. {
  7380. front: {
  7381. height: math.unit(6, "feet"),
  7382. weight: math.unit(195, "lb"),
  7383. name: "Front",
  7384. image: {
  7385. source: "./media/characters/rogue/front.svg"
  7386. }
  7387. },
  7388. },
  7389. [
  7390. {
  7391. name: "Macro",
  7392. height: math.unit(90, "feet"),
  7393. default: true
  7394. },
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7399. {
  7400. standing: {
  7401. height: math.unit(5 + 8 / 12, "feet"),
  7402. weight: math.unit(140, "lb"),
  7403. name: "Standing",
  7404. image: {
  7405. source: "./media/characters/piper/standing.svg",
  7406. extra: 1440/1284,
  7407. bottom: 66/1506
  7408. }
  7409. },
  7410. running: {
  7411. height: math.unit(5 + 8 / 12, "feet"),
  7412. weight: math.unit(140, "lb"),
  7413. name: "Running",
  7414. image: {
  7415. source: "./media/characters/piper/running.svg",
  7416. extra: 3948/3655,
  7417. bottom: 0/3948
  7418. }
  7419. },
  7420. sole: {
  7421. height: math.unit(0.81, "feet"),
  7422. weight: math.unit(2, "kg"),
  7423. name: "Sole",
  7424. image: {
  7425. source: "./media/characters/piper/sole.svg"
  7426. }
  7427. },
  7428. nipple: {
  7429. height: math.unit(0.25, "feet"),
  7430. weight: math.unit(1.5, "lb"),
  7431. name: "Nipple",
  7432. image: {
  7433. source: "./media/characters/piper/nipple.svg"
  7434. }
  7435. },
  7436. head: {
  7437. height: math.unit(1.1, "feet"),
  7438. name: "Head",
  7439. image: {
  7440. source: "./media/characters/piper/head.svg"
  7441. }
  7442. },
  7443. },
  7444. [
  7445. {
  7446. name: "Micro",
  7447. height: math.unit(2, "inches")
  7448. },
  7449. {
  7450. name: "Normal",
  7451. height: math.unit(5 + 8 / 12, "feet")
  7452. },
  7453. {
  7454. name: "Macro",
  7455. height: math.unit(250, "feet"),
  7456. default: true
  7457. },
  7458. {
  7459. name: "Megamacro",
  7460. height: math.unit(7, "miles")
  7461. },
  7462. ]
  7463. ))
  7464. characterMakers.push(() => makeCharacter(
  7465. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7466. {
  7467. front: {
  7468. height: math.unit(6, "feet"),
  7469. weight: math.unit(220, "lb"),
  7470. name: "Front",
  7471. image: {
  7472. source: "./media/characters/gemini/front.svg"
  7473. }
  7474. },
  7475. back: {
  7476. height: math.unit(6, "feet"),
  7477. weight: math.unit(220, "lb"),
  7478. name: "Back",
  7479. image: {
  7480. source: "./media/characters/gemini/back.svg"
  7481. }
  7482. },
  7483. kneeling: {
  7484. height: math.unit(6 / 1.5, "feet"),
  7485. weight: math.unit(220, "lb"),
  7486. name: "Kneeling",
  7487. image: {
  7488. source: "./media/characters/gemini/kneeling.svg",
  7489. bottom: 0.02
  7490. }
  7491. },
  7492. },
  7493. [
  7494. {
  7495. name: "Macro",
  7496. height: math.unit(300, "meters"),
  7497. default: true
  7498. },
  7499. {
  7500. name: "Megamacro",
  7501. height: math.unit(6900, "meters")
  7502. },
  7503. ]
  7504. ))
  7505. characterMakers.push(() => makeCharacter(
  7506. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7507. {
  7508. anthro: {
  7509. height: math.unit(2.35, "meters"),
  7510. weight: math.unit(73, "kg"),
  7511. name: "Anthro",
  7512. image: {
  7513. source: "./media/characters/alicia/anthro.svg",
  7514. extra: 2571 / 2385,
  7515. bottom: 75 / 2648
  7516. }
  7517. },
  7518. paw: {
  7519. height: math.unit(1.32, "feet"),
  7520. name: "Paw",
  7521. image: {
  7522. source: "./media/characters/alicia/paw.svg"
  7523. }
  7524. },
  7525. feral: {
  7526. height: math.unit(1.69, "meters"),
  7527. weight: math.unit(73, "kg"),
  7528. name: "Feral",
  7529. image: {
  7530. source: "./media/characters/alicia/feral.svg",
  7531. extra: 2123 / 1715,
  7532. bottom: 222 / 2349
  7533. }
  7534. },
  7535. },
  7536. [
  7537. {
  7538. name: "Normal",
  7539. height: math.unit(2.35, "meters")
  7540. },
  7541. {
  7542. name: "Macro",
  7543. height: math.unit(60, "meters"),
  7544. default: true
  7545. },
  7546. {
  7547. name: "Megamacro",
  7548. height: math.unit(10000, "kilometers")
  7549. },
  7550. ]
  7551. ))
  7552. characterMakers.push(() => makeCharacter(
  7553. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7554. {
  7555. front: {
  7556. height: math.unit(7, "feet"),
  7557. weight: math.unit(250, "lbs"),
  7558. name: "Front",
  7559. image: {
  7560. source: "./media/characters/archy/front.svg"
  7561. }
  7562. }
  7563. },
  7564. [
  7565. {
  7566. name: "Micro",
  7567. height: math.unit(1, "inch")
  7568. },
  7569. {
  7570. name: "Shorty",
  7571. height: math.unit(5, "feet")
  7572. },
  7573. {
  7574. name: "Normal",
  7575. height: math.unit(7, "feet")
  7576. },
  7577. {
  7578. name: "Macro",
  7579. height: math.unit(600, "meters"),
  7580. default: true
  7581. },
  7582. {
  7583. name: "Megamacro",
  7584. height: math.unit(1, "mile")
  7585. },
  7586. ]
  7587. ))
  7588. characterMakers.push(() => makeCharacter(
  7589. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7590. {
  7591. front: {
  7592. height: math.unit(1.65, "meters"),
  7593. weight: math.unit(74, "kg"),
  7594. name: "Front",
  7595. image: {
  7596. source: "./media/characters/berri/front.svg",
  7597. extra: 857 / 837,
  7598. bottom: 18 / 877
  7599. }
  7600. },
  7601. bum: {
  7602. height: math.unit(1.46, "feet"),
  7603. name: "Bum",
  7604. image: {
  7605. source: "./media/characters/berri/bum.svg"
  7606. }
  7607. },
  7608. mouth: {
  7609. height: math.unit(0.44, "feet"),
  7610. name: "Mouth",
  7611. image: {
  7612. source: "./media/characters/berri/mouth.svg"
  7613. }
  7614. },
  7615. paw: {
  7616. height: math.unit(0.826, "feet"),
  7617. name: "Paw",
  7618. image: {
  7619. source: "./media/characters/berri/paw.svg"
  7620. }
  7621. },
  7622. },
  7623. [
  7624. {
  7625. name: "Normal",
  7626. height: math.unit(1.65, "meters")
  7627. },
  7628. {
  7629. name: "Macro",
  7630. height: math.unit(60, "m"),
  7631. default: true
  7632. },
  7633. {
  7634. name: "Megamacro",
  7635. height: math.unit(9.213, "km")
  7636. },
  7637. {
  7638. name: "Planet Eater",
  7639. height: math.unit(489, "megameters")
  7640. },
  7641. {
  7642. name: "Teramacro",
  7643. height: math.unit(2471635000000, "meters")
  7644. },
  7645. {
  7646. name: "Examacro",
  7647. height: math.unit(8.0624e+26, "meters")
  7648. }
  7649. ]
  7650. ))
  7651. characterMakers.push(() => makeCharacter(
  7652. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7653. {
  7654. front: {
  7655. height: math.unit(1.72, "meters"),
  7656. weight: math.unit(68, "kg"),
  7657. name: "Front",
  7658. image: {
  7659. source: "./media/characters/lexi/front.svg"
  7660. }
  7661. }
  7662. },
  7663. [
  7664. {
  7665. name: "Very Smol",
  7666. height: math.unit(10, "mm")
  7667. },
  7668. {
  7669. name: "Micro",
  7670. height: math.unit(6.8, "cm"),
  7671. default: true
  7672. },
  7673. {
  7674. name: "Normal",
  7675. height: math.unit(1.72, "m")
  7676. }
  7677. ]
  7678. ))
  7679. characterMakers.push(() => makeCharacter(
  7680. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7681. {
  7682. front: {
  7683. height: math.unit(1.69, "meters"),
  7684. weight: math.unit(68, "kg"),
  7685. name: "Front",
  7686. image: {
  7687. source: "./media/characters/martin/front.svg",
  7688. extra: 596 / 581
  7689. }
  7690. }
  7691. },
  7692. [
  7693. {
  7694. name: "Micro",
  7695. height: math.unit(6.85, "cm"),
  7696. default: true
  7697. },
  7698. {
  7699. name: "Normal",
  7700. height: math.unit(1.69, "m")
  7701. }
  7702. ]
  7703. ))
  7704. characterMakers.push(() => makeCharacter(
  7705. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7706. {
  7707. front: {
  7708. height: math.unit(1.69, "meters"),
  7709. weight: math.unit(68, "kg"),
  7710. name: "Front",
  7711. image: {
  7712. source: "./media/characters/juno/front.svg"
  7713. }
  7714. }
  7715. },
  7716. [
  7717. {
  7718. name: "Micro",
  7719. height: math.unit(7, "cm")
  7720. },
  7721. {
  7722. name: "Normal",
  7723. height: math.unit(1.89, "m")
  7724. },
  7725. {
  7726. name: "Macro",
  7727. height: math.unit(353, "meters"),
  7728. default: true
  7729. }
  7730. ]
  7731. ))
  7732. characterMakers.push(() => makeCharacter(
  7733. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7734. {
  7735. front: {
  7736. height: math.unit(1.93, "meters"),
  7737. weight: math.unit(83, "kg"),
  7738. name: "Front",
  7739. image: {
  7740. source: "./media/characters/samantha/front.svg"
  7741. }
  7742. },
  7743. frontClothed: {
  7744. height: math.unit(1.93, "meters"),
  7745. weight: math.unit(83, "kg"),
  7746. name: "Front (Clothed)",
  7747. image: {
  7748. source: "./media/characters/samantha/front-clothed.svg"
  7749. }
  7750. },
  7751. back: {
  7752. height: math.unit(1.93, "meters"),
  7753. weight: math.unit(83, "kg"),
  7754. name: "Back",
  7755. image: {
  7756. source: "./media/characters/samantha/back.svg"
  7757. }
  7758. },
  7759. },
  7760. [
  7761. {
  7762. name: "Normal",
  7763. height: math.unit(1.93, "m")
  7764. },
  7765. {
  7766. name: "Macro",
  7767. height: math.unit(74, "meters"),
  7768. default: true
  7769. },
  7770. {
  7771. name: "Macro+",
  7772. height: math.unit(223, "meters"),
  7773. },
  7774. {
  7775. name: "Megamacro",
  7776. height: math.unit(8381, "meters"),
  7777. },
  7778. {
  7779. name: "Megamacro+",
  7780. height: math.unit(12000, "kilometers")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(1.92, "meters"),
  7789. weight: math.unit(80, "kg"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/dr-clay/front.svg"
  7793. }
  7794. },
  7795. frontClothed: {
  7796. height: math.unit(1.92, "meters"),
  7797. weight: math.unit(80, "kg"),
  7798. name: "Front (Clothed)",
  7799. image: {
  7800. source: "./media/characters/dr-clay/front-clothed.svg"
  7801. }
  7802. }
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(1.92, "m")
  7808. },
  7809. {
  7810. name: "Macro",
  7811. height: math.unit(214, "meters"),
  7812. default: true
  7813. },
  7814. {
  7815. name: "Macro+",
  7816. height: math.unit(12.237, "meters"),
  7817. },
  7818. {
  7819. name: "Megamacro",
  7820. height: math.unit(557, "megameters"),
  7821. },
  7822. {
  7823. name: "Unimaginable",
  7824. height: math.unit(120e9, "lightyears")
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(2, "meters"),
  7833. weight: math.unit(80, "kg"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7837. }
  7838. }
  7839. },
  7840. [
  7841. {
  7842. name: "Teramacro",
  7843. height: math.unit(500000, "lightyears"),
  7844. default: true
  7845. },
  7846. ]
  7847. ))
  7848. characterMakers.push(() => makeCharacter(
  7849. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7850. {
  7851. crux: {
  7852. height: math.unit(2, "meters"),
  7853. weight: math.unit(150, "kg"),
  7854. name: "Crux",
  7855. image: {
  7856. source: "./media/characters/vemus/crux.svg",
  7857. extra: 1074/936,
  7858. bottom: 23/1097
  7859. }
  7860. },
  7861. skunkTanuki: {
  7862. height: math.unit(2, "meters"),
  7863. weight: math.unit(150, "kg"),
  7864. name: "Skunk-Tanuki",
  7865. image: {
  7866. source: "./media/characters/vemus/skunk-tanuki.svg",
  7867. extra: 926/893,
  7868. bottom: 20/946
  7869. }
  7870. },
  7871. },
  7872. [
  7873. {
  7874. name: "Normal",
  7875. height: math.unit(4, "meters"),
  7876. default: true
  7877. },
  7878. {
  7879. name: "Big",
  7880. height: math.unit(8, "meters")
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(100, "meters")
  7885. },
  7886. {
  7887. name: "Macro+",
  7888. height: math.unit(1500, "meters")
  7889. },
  7890. {
  7891. name: "Stellar",
  7892. height: math.unit(14e8, "meters")
  7893. },
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7898. {
  7899. front: {
  7900. height: math.unit(2, "meters"),
  7901. weight: math.unit(70, "kg"),
  7902. name: "Front",
  7903. image: {
  7904. source: "./media/characters/beherit/front.svg",
  7905. extra: 1234/1109,
  7906. bottom: 55/1289
  7907. }
  7908. }
  7909. },
  7910. [
  7911. {
  7912. name: "Normal",
  7913. height: math.unit(6, "feet")
  7914. },
  7915. {
  7916. name: "Lorg",
  7917. height: math.unit(25, "feet"),
  7918. default: true
  7919. },
  7920. {
  7921. name: "Lorger",
  7922. height: math.unit(75, "feet")
  7923. },
  7924. {
  7925. name: "Macro",
  7926. height: math.unit(200, "meters")
  7927. },
  7928. ]
  7929. ))
  7930. characterMakers.push(() => makeCharacter(
  7931. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7932. {
  7933. front: {
  7934. height: math.unit(2, "meters"),
  7935. weight: math.unit(150, "kg"),
  7936. name: "Front",
  7937. image: {
  7938. source: "./media/characters/everett/front.svg",
  7939. extra: 1017/866,
  7940. bottom: 86/1103
  7941. }
  7942. },
  7943. paw: {
  7944. height: math.unit(2 / 3.6, "meters"),
  7945. name: "Paw",
  7946. image: {
  7947. source: "./media/characters/everett/paw.svg"
  7948. }
  7949. },
  7950. },
  7951. [
  7952. {
  7953. name: "Normal",
  7954. height: math.unit(15, "feet"),
  7955. default: true
  7956. },
  7957. {
  7958. name: "Lorg",
  7959. height: math.unit(70, "feet"),
  7960. default: true
  7961. },
  7962. {
  7963. name: "Lorger",
  7964. height: math.unit(250, "feet")
  7965. },
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(500, "meters")
  7969. },
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7974. {
  7975. front: {
  7976. height: math.unit(2, "meters"),
  7977. weight: math.unit(86, "kg"),
  7978. name: "Front",
  7979. image: {
  7980. source: "./media/characters/rose/front.svg",
  7981. extra: 1785/1636,
  7982. bottom: 30/1815
  7983. },
  7984. form: "liom",
  7985. default: true
  7986. },
  7987. frontSporty: {
  7988. height: math.unit(2, "meters"),
  7989. weight: math.unit(86, "kg"),
  7990. name: "Front (Sporty)",
  7991. image: {
  7992. source: "./media/characters/rose/front-sporty.svg",
  7993. extra: 350/335,
  7994. bottom: 10/360
  7995. },
  7996. form: "liom"
  7997. },
  7998. frontAlt: {
  7999. height: math.unit(1.6, "meters"),
  8000. weight: math.unit(86, "kg"),
  8001. name: "Front (Alt)",
  8002. image: {
  8003. source: "./media/characters/rose/front-alt.svg",
  8004. extra: 299/283,
  8005. bottom: 3/302
  8006. },
  8007. form: "liom"
  8008. },
  8009. plush: {
  8010. height: math.unit(2, "meters"),
  8011. weight: math.unit(86/3, "kg"),
  8012. name: "Plush",
  8013. image: {
  8014. source: "./media/characters/rose/plush.svg",
  8015. extra: 361/337,
  8016. bottom: 11/372
  8017. },
  8018. form: "plush",
  8019. default: true
  8020. },
  8021. faeStanding: {
  8022. height: math.unit(10, "cm"),
  8023. weight: math.unit(10, "grams"),
  8024. name: "Standing",
  8025. image: {
  8026. source: "./media/characters/rose/fae-standing.svg",
  8027. extra: 1189/1060,
  8028. bottom: 27/1216
  8029. },
  8030. form: "fae",
  8031. default: true
  8032. },
  8033. faeSitting: {
  8034. height: math.unit(5, "cm"),
  8035. weight: math.unit(10, "grams"),
  8036. name: "Sitting",
  8037. image: {
  8038. source: "./media/characters/rose/fae-sitting.svg",
  8039. extra: 737/577,
  8040. bottom: 356/1093
  8041. },
  8042. form: "fae"
  8043. },
  8044. faePaw: {
  8045. height: math.unit(1.35, "cm"),
  8046. name: "Paw",
  8047. image: {
  8048. source: "./media/characters/rose/fae-paw.svg"
  8049. },
  8050. form: "fae"
  8051. },
  8052. },
  8053. [
  8054. {
  8055. name: "True Micro",
  8056. height: math.unit(9, "cm"),
  8057. form: "liom"
  8058. },
  8059. {
  8060. name: "Micro",
  8061. height: math.unit(16, "cm"),
  8062. form: "liom"
  8063. },
  8064. {
  8065. name: "Normal",
  8066. height: math.unit(1.85, "meters"),
  8067. default: true,
  8068. form: "liom"
  8069. },
  8070. {
  8071. name: "Mini-Macro",
  8072. height: math.unit(5, "meters"),
  8073. form: "liom"
  8074. },
  8075. {
  8076. name: "Macro",
  8077. height: math.unit(15, "meters"),
  8078. form: "liom"
  8079. },
  8080. {
  8081. name: "True Macro",
  8082. height: math.unit(40, "meters"),
  8083. form: "liom"
  8084. },
  8085. {
  8086. name: "City Scale",
  8087. height: math.unit(1, "km"),
  8088. form: "liom"
  8089. },
  8090. {
  8091. name: "Plushie",
  8092. height: math.unit(9, "cm"),
  8093. form: "plush",
  8094. default: true
  8095. },
  8096. {
  8097. name: "Fae",
  8098. height: math.unit(10, "cm"),
  8099. form: "fae",
  8100. default: true
  8101. },
  8102. ],
  8103. {
  8104. "liom": {
  8105. name: "Liom"
  8106. },
  8107. "plush": {
  8108. name: "Plush"
  8109. },
  8110. "fae": {
  8111. name: "Fae Fox",
  8112. default: true
  8113. }
  8114. }
  8115. ))
  8116. characterMakers.push(() => makeCharacter(
  8117. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8118. {
  8119. front: {
  8120. height: math.unit(2, "meters"),
  8121. weight: math.unit(350, "lbs"),
  8122. name: "Front",
  8123. image: {
  8124. source: "./media/characters/regal/front.svg"
  8125. }
  8126. },
  8127. back: {
  8128. height: math.unit(2, "meters"),
  8129. weight: math.unit(350, "lbs"),
  8130. name: "Back",
  8131. image: {
  8132. source: "./media/characters/regal/back.svg"
  8133. }
  8134. },
  8135. },
  8136. [
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(350, "feet"),
  8140. default: true
  8141. }
  8142. ]
  8143. ))
  8144. characterMakers.push(() => makeCharacter(
  8145. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8146. {
  8147. standing: {
  8148. height: math.unit(4 + 11/12, "feet"),
  8149. weight: math.unit(100, "lb"),
  8150. name: "Standing",
  8151. image: {
  8152. source: "./media/characters/opal/standing.svg",
  8153. extra: 1588/1513,
  8154. bottom: 23/1611
  8155. }
  8156. },
  8157. sitting: {
  8158. height: math.unit(2.3, "feet"),
  8159. weight: math.unit(100, "lb"),
  8160. name: "Sitting",
  8161. image: {
  8162. source: "./media/characters/opal/sitting.svg",
  8163. extra: 1031/892,
  8164. bottom: 142/1173
  8165. }
  8166. },
  8167. hand: {
  8168. height: math.unit(0.59, "feet"),
  8169. name: "Hand",
  8170. image: {
  8171. source: "./media/characters/opal/hand.svg"
  8172. }
  8173. },
  8174. foot: {
  8175. height: math.unit(0.61, "feet"),
  8176. name: "Foot",
  8177. image: {
  8178. source: "./media/characters/opal/foot.svg"
  8179. }
  8180. },
  8181. },
  8182. [
  8183. {
  8184. name: "Small",
  8185. height: math.unit(4 + 11 / 12, "feet")
  8186. },
  8187. {
  8188. name: "Normal",
  8189. height: math.unit(20, "feet"),
  8190. default: true
  8191. },
  8192. {
  8193. name: "Macro",
  8194. height: math.unit(120, "feet")
  8195. },
  8196. {
  8197. name: "Megamacro",
  8198. height: math.unit(80, "miles")
  8199. },
  8200. {
  8201. name: "True Size",
  8202. height: math.unit(100000, "lightyears")
  8203. },
  8204. ]
  8205. ))
  8206. characterMakers.push(() => makeCharacter(
  8207. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8208. {
  8209. front: {
  8210. height: math.unit(6, "feet"),
  8211. weight: math.unit(200, "lbs"),
  8212. name: "Front",
  8213. image: {
  8214. source: "./media/characters/vector-wuff/front.svg"
  8215. }
  8216. }
  8217. },
  8218. [
  8219. {
  8220. name: "Normal",
  8221. height: math.unit(2.8, "meters")
  8222. },
  8223. {
  8224. name: "Macro",
  8225. height: math.unit(450, "meters"),
  8226. default: true
  8227. },
  8228. {
  8229. name: "Megamacro",
  8230. height: math.unit(15, "kilometers")
  8231. }
  8232. ]
  8233. ))
  8234. characterMakers.push(() => makeCharacter(
  8235. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8236. {
  8237. front: {
  8238. height: math.unit(6, "feet"),
  8239. weight: math.unit(256, "lbs"),
  8240. name: "Front",
  8241. image: {
  8242. source: "./media/characters/dannik/front.svg"
  8243. }
  8244. }
  8245. },
  8246. [
  8247. {
  8248. name: "Macro",
  8249. height: math.unit(69.57, "meters"),
  8250. default: true
  8251. },
  8252. ]
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8256. {
  8257. front: {
  8258. height: math.unit(6, "feet"),
  8259. weight: math.unit(120, "lbs"),
  8260. name: "Front",
  8261. image: {
  8262. source: "./media/characters/azura-saharah/front.svg"
  8263. }
  8264. },
  8265. back: {
  8266. height: math.unit(6, "feet"),
  8267. weight: math.unit(120, "lbs"),
  8268. name: "Back",
  8269. image: {
  8270. source: "./media/characters/azura-saharah/back.svg"
  8271. }
  8272. },
  8273. },
  8274. [
  8275. {
  8276. name: "Macro",
  8277. height: math.unit(100, "feet"),
  8278. default: true
  8279. },
  8280. ]
  8281. ))
  8282. characterMakers.push(() => makeCharacter(
  8283. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8284. {
  8285. side: {
  8286. height: math.unit(5 + 4 / 12, "feet"),
  8287. weight: math.unit(163, "lbs"),
  8288. name: "Side",
  8289. image: {
  8290. source: "./media/characters/kennedy/side.svg"
  8291. }
  8292. }
  8293. },
  8294. [
  8295. {
  8296. name: "Standard Doggo",
  8297. height: math.unit(5 + 4 / 12, "feet")
  8298. },
  8299. {
  8300. name: "Big Doggo",
  8301. height: math.unit(25 + 3 / 12, "feet"),
  8302. default: true
  8303. },
  8304. ]
  8305. ))
  8306. characterMakers.push(() => makeCharacter(
  8307. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8308. {
  8309. front: {
  8310. height: math.unit(5 + 5/12, "feet"),
  8311. weight: math.unit(100, "lbs"),
  8312. name: "Front",
  8313. image: {
  8314. source: "./media/characters/odios-de-lunar/front.svg",
  8315. extra: 1468/1323,
  8316. bottom: 22/1490
  8317. }
  8318. }
  8319. },
  8320. [
  8321. {
  8322. name: "Micro",
  8323. height: math.unit(3, "inches")
  8324. },
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(5.5, "feet"),
  8328. default: true
  8329. },
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(100, "feet")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8338. {
  8339. back: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(220, "lbs"),
  8342. name: "Back",
  8343. image: {
  8344. source: "./media/characters/mandake/back.svg"
  8345. }
  8346. }
  8347. },
  8348. [
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(7, "feet"),
  8352. default: true
  8353. },
  8354. {
  8355. name: "Macro",
  8356. height: math.unit(78, "feet")
  8357. },
  8358. {
  8359. name: "Macro+",
  8360. height: math.unit(300, "meters")
  8361. },
  8362. {
  8363. name: "Macro++",
  8364. height: math.unit(2400, "feet")
  8365. },
  8366. {
  8367. name: "Megamacro",
  8368. height: math.unit(5167, "meters")
  8369. },
  8370. {
  8371. name: "Gigamacro",
  8372. height: math.unit(41769, "miles")
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(6, "feet"),
  8381. weight: math.unit(120, "lbs"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/yozey/front.svg"
  8385. }
  8386. },
  8387. frontAlt: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(120, "lbs"),
  8390. name: "Front (Alt)",
  8391. image: {
  8392. source: "./media/characters/yozey/front-alt.svg"
  8393. }
  8394. },
  8395. side: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(120, "lbs"),
  8398. name: "Side",
  8399. image: {
  8400. source: "./media/characters/yozey/side.svg"
  8401. }
  8402. },
  8403. },
  8404. [
  8405. {
  8406. name: "Micro",
  8407. height: math.unit(3, "inches"),
  8408. default: true
  8409. },
  8410. {
  8411. name: "Normal",
  8412. height: math.unit(6, "feet")
  8413. }
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(6, "feet"),
  8421. weight: math.unit(103, "lbs"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/valeska-voss/front.svg"
  8425. }
  8426. }
  8427. },
  8428. [
  8429. {
  8430. name: "Mini-Sized Sub",
  8431. height: math.unit(3.1, "inches")
  8432. },
  8433. {
  8434. name: "Mid-Sized Sub",
  8435. height: math.unit(6.2, "inches")
  8436. },
  8437. {
  8438. name: "Full-Sized Sub",
  8439. height: math.unit(9.3, "inches")
  8440. },
  8441. {
  8442. name: "Normal",
  8443. height: math.unit(5 + 2 / 12, "foot"),
  8444. default: true
  8445. },
  8446. ]
  8447. ))
  8448. characterMakers.push(() => makeCharacter(
  8449. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8450. {
  8451. front: {
  8452. height: math.unit(6, "feet"),
  8453. weight: math.unit(160, "lbs"),
  8454. name: "Front",
  8455. image: {
  8456. source: "./media/characters/gene-zeta/front.svg",
  8457. extra: 3006 / 2826,
  8458. bottom: 182 / 3188
  8459. }
  8460. }
  8461. },
  8462. [
  8463. {
  8464. name: "Micro",
  8465. height: math.unit(6, "inches")
  8466. },
  8467. {
  8468. name: "Normal",
  8469. height: math.unit(5 + 11 / 12, "foot"),
  8470. default: true
  8471. },
  8472. {
  8473. name: "Macro",
  8474. height: math.unit(140, "feet")
  8475. },
  8476. {
  8477. name: "Supercharged",
  8478. height: math.unit(2500, "feet")
  8479. },
  8480. ]
  8481. ))
  8482. characterMakers.push(() => makeCharacter(
  8483. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8484. {
  8485. front: {
  8486. height: math.unit(6, "feet"),
  8487. weight: math.unit(350, "lbs"),
  8488. name: "Front",
  8489. image: {
  8490. source: "./media/characters/razinox/front.svg",
  8491. extra: 1686 / 1548,
  8492. bottom: 28.2 / 1868
  8493. }
  8494. },
  8495. back: {
  8496. height: math.unit(6, "feet"),
  8497. weight: math.unit(350, "lbs"),
  8498. name: "Back",
  8499. image: {
  8500. source: "./media/characters/razinox/back.svg",
  8501. extra: 1660 / 1590,
  8502. bottom: 15 / 1665
  8503. }
  8504. },
  8505. },
  8506. [
  8507. {
  8508. name: "Normal",
  8509. height: math.unit(10 + 8 / 12, "foot")
  8510. },
  8511. {
  8512. name: "Minimacro",
  8513. height: math.unit(15, "foot")
  8514. },
  8515. {
  8516. name: "Macro",
  8517. height: math.unit(60, "foot"),
  8518. default: true
  8519. },
  8520. {
  8521. name: "Megamacro",
  8522. height: math.unit(5, "miles")
  8523. },
  8524. {
  8525. name: "Gigamacro",
  8526. height: math.unit(6000, "miles")
  8527. },
  8528. ]
  8529. ))
  8530. characterMakers.push(() => makeCharacter(
  8531. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8532. {
  8533. front: {
  8534. height: math.unit(6, "feet"),
  8535. weight: math.unit(150, "lbs"),
  8536. name: "Front",
  8537. image: {
  8538. source: "./media/characters/cobalt/front.svg"
  8539. }
  8540. }
  8541. },
  8542. [
  8543. {
  8544. name: "Normal",
  8545. height: math.unit(8 + 1 / 12, "foot")
  8546. },
  8547. {
  8548. name: "Macro",
  8549. height: math.unit(111, "foot"),
  8550. default: true
  8551. },
  8552. {
  8553. name: "Supracosmic",
  8554. height: math.unit(1e42, "feet")
  8555. },
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(5, "inches"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/amanda/front.svg",
  8566. extra: 926/791,
  8567. bottom: 38/964
  8568. }
  8569. },
  8570. back: {
  8571. height: math.unit(5, "inches"),
  8572. name: "Back",
  8573. image: {
  8574. source: "./media/characters/amanda/back.svg",
  8575. extra: 909/805,
  8576. bottom: 43/952
  8577. }
  8578. },
  8579. },
  8580. [
  8581. {
  8582. name: "Micro",
  8583. height: math.unit(5, "inches"),
  8584. default: true
  8585. },
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(2.75, "meters"),
  8593. weight: math.unit(1200, "lb"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/teal/front.svg",
  8597. extra: 2463 / 2320,
  8598. bottom: 166 / 2629
  8599. }
  8600. },
  8601. back: {
  8602. height: math.unit(2.75, "meters"),
  8603. weight: math.unit(1200, "lb"),
  8604. name: "Back",
  8605. image: {
  8606. source: "./media/characters/teal/back.svg",
  8607. extra: 2580 / 2489,
  8608. bottom: 151 / 2731
  8609. }
  8610. },
  8611. sitting: {
  8612. height: math.unit(1.9, "meters"),
  8613. weight: math.unit(1200, "lb"),
  8614. name: "Sitting",
  8615. image: {
  8616. source: "./media/characters/teal/sitting.svg",
  8617. extra: 623 / 590,
  8618. bottom: 121 / 744
  8619. }
  8620. },
  8621. standing: {
  8622. height: math.unit(2.75, "meters"),
  8623. weight: math.unit(1200, "lb"),
  8624. name: "Standing",
  8625. image: {
  8626. source: "./media/characters/teal/standing.svg",
  8627. extra: 923 / 893,
  8628. bottom: 60 / 983
  8629. }
  8630. },
  8631. stretching: {
  8632. height: math.unit(3.65, "meters"),
  8633. weight: math.unit(1200, "lb"),
  8634. name: "Stretching",
  8635. image: {
  8636. source: "./media/characters/teal/stretching.svg",
  8637. extra: 1276 / 1244,
  8638. bottom: 0 / 1276
  8639. }
  8640. },
  8641. legged: {
  8642. height: math.unit(1.3, "meters"),
  8643. weight: math.unit(100, "lb"),
  8644. name: "Legged",
  8645. image: {
  8646. source: "./media/characters/teal/legged.svg",
  8647. extra: 462 / 437,
  8648. bottom: 24 / 486
  8649. }
  8650. },
  8651. naga: {
  8652. height: math.unit(5.4, "meters"),
  8653. weight: math.unit(4000, "lb"),
  8654. name: "Naga",
  8655. image: {
  8656. source: "./media/characters/teal/naga.svg",
  8657. extra: 1902 / 1858,
  8658. bottom: 0 / 1902
  8659. }
  8660. },
  8661. hand: {
  8662. height: math.unit(0.52, "meters"),
  8663. name: "Hand",
  8664. image: {
  8665. source: "./media/characters/teal/hand.svg"
  8666. }
  8667. },
  8668. maw: {
  8669. height: math.unit(0.43, "meters"),
  8670. name: "Maw",
  8671. image: {
  8672. source: "./media/characters/teal/maw.svg"
  8673. }
  8674. },
  8675. slit: {
  8676. height: math.unit(0.25, "meters"),
  8677. name: "Slit",
  8678. image: {
  8679. source: "./media/characters/teal/slit.svg"
  8680. }
  8681. },
  8682. },
  8683. [
  8684. {
  8685. name: "Normal",
  8686. height: math.unit(2.75, "meters"),
  8687. default: true
  8688. },
  8689. {
  8690. name: "Macro",
  8691. height: math.unit(300, "feet")
  8692. },
  8693. {
  8694. name: "Macro+",
  8695. height: math.unit(2000, "feet")
  8696. },
  8697. ]
  8698. ))
  8699. characterMakers.push(() => makeCharacter(
  8700. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8701. {
  8702. frontCat: {
  8703. height: math.unit(6, "feet"),
  8704. weight: math.unit(180, "lbs"),
  8705. name: "Front (Cat)",
  8706. image: {
  8707. source: "./media/characters/ravin-amulet/front-cat.svg"
  8708. }
  8709. },
  8710. frontCatAlt: {
  8711. height: math.unit(6, "feet"),
  8712. weight: math.unit(180, "lbs"),
  8713. name: "Front (Alt, Cat)",
  8714. image: {
  8715. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8716. }
  8717. },
  8718. frontWerewolf: {
  8719. height: math.unit(6 * 1.2, "feet"),
  8720. weight: math.unit(225, "lbs"),
  8721. name: "Front (Werewolf)",
  8722. image: {
  8723. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8724. }
  8725. },
  8726. backWerewolf: {
  8727. height: math.unit(6 * 1.2, "feet"),
  8728. weight: math.unit(225, "lbs"),
  8729. name: "Back (Werewolf)",
  8730. image: {
  8731. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Nano",
  8738. height: math.unit(1, "micrometer")
  8739. },
  8740. {
  8741. name: "Micro",
  8742. height: math.unit(1, "inch")
  8743. },
  8744. {
  8745. name: "Normal",
  8746. height: math.unit(6, "feet"),
  8747. default: true
  8748. },
  8749. {
  8750. name: "Macro",
  8751. height: math.unit(60, "feet")
  8752. }
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(6, "feet"),
  8760. weight: math.unit(165, "lbs"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/fluoresce/front.svg"
  8764. }
  8765. }
  8766. },
  8767. [
  8768. {
  8769. name: "Micro",
  8770. height: math.unit(6, "cm")
  8771. },
  8772. {
  8773. name: "Normal",
  8774. height: math.unit(5 + 7 / 12, "feet"),
  8775. default: true
  8776. },
  8777. {
  8778. name: "Macro",
  8779. height: math.unit(56, "feet")
  8780. },
  8781. {
  8782. name: "Megamacro",
  8783. height: math.unit(1.9, "miles")
  8784. },
  8785. ]
  8786. ))
  8787. characterMakers.push(() => makeCharacter(
  8788. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8789. {
  8790. front: {
  8791. height: math.unit(9 + 6 / 12, "feet"),
  8792. weight: math.unit(523, "lbs"),
  8793. name: "Side",
  8794. image: {
  8795. source: "./media/characters/aurora/side.svg",
  8796. extra: 474/393,
  8797. bottom: 5/479
  8798. }
  8799. }
  8800. },
  8801. [
  8802. {
  8803. name: "Normal",
  8804. height: math.unit(9 + 6 / 12, "feet")
  8805. },
  8806. {
  8807. name: "Macro",
  8808. height: math.unit(96, "feet"),
  8809. default: true
  8810. },
  8811. {
  8812. name: "Macro+",
  8813. height: math.unit(243, "feet")
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8819. {
  8820. front: {
  8821. height: math.unit(194, "cm"),
  8822. weight: math.unit(90, "kg"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/ranek/front.svg",
  8826. extra: 1862/1791,
  8827. bottom: 80/1942
  8828. }
  8829. },
  8830. back: {
  8831. height: math.unit(194, "cm"),
  8832. weight: math.unit(90, "kg"),
  8833. name: "Back",
  8834. image: {
  8835. source: "./media/characters/ranek/back.svg",
  8836. extra: 1853/1787,
  8837. bottom: 74/1927
  8838. }
  8839. },
  8840. feral: {
  8841. height: math.unit(30, "cm"),
  8842. weight: math.unit(1.6, "lbs"),
  8843. name: "Feral",
  8844. image: {
  8845. source: "./media/characters/ranek/feral.svg",
  8846. extra: 990/631,
  8847. bottom: 29/1019
  8848. }
  8849. },
  8850. },
  8851. [
  8852. {
  8853. name: "Normal",
  8854. height: math.unit(194, "cm"),
  8855. default: true
  8856. },
  8857. {
  8858. name: "Macro",
  8859. height: math.unit(100, "meters")
  8860. },
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8865. {
  8866. front: {
  8867. height: math.unit(5 + 6 / 12, "feet"),
  8868. weight: math.unit(153, "lbs"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/andrew-cooper/front.svg"
  8872. }
  8873. },
  8874. },
  8875. [
  8876. {
  8877. name: "Nano",
  8878. height: math.unit(1, "mm")
  8879. },
  8880. {
  8881. name: "Micro",
  8882. height: math.unit(2, "inches")
  8883. },
  8884. {
  8885. name: "Normal",
  8886. height: math.unit(5 + 6 / 12, "feet"),
  8887. default: true
  8888. }
  8889. ]
  8890. ))
  8891. characterMakers.push(() => makeCharacter(
  8892. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8893. {
  8894. front: {
  8895. height: math.unit(6, "feet"),
  8896. weight: math.unit(180, "lbs"),
  8897. name: "Front",
  8898. image: {
  8899. source: "./media/characters/akane-sato/front.svg",
  8900. extra: 1219 / 1140
  8901. }
  8902. },
  8903. back: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(180, "lbs"),
  8906. name: "Back",
  8907. image: {
  8908. source: "./media/characters/akane-sato/back.svg",
  8909. extra: 1219 / 1170
  8910. }
  8911. },
  8912. },
  8913. [
  8914. {
  8915. name: "Normal",
  8916. height: math.unit(2.5, "meters")
  8917. },
  8918. {
  8919. name: "Macro",
  8920. height: math.unit(250, "meters"),
  8921. default: true
  8922. },
  8923. {
  8924. name: "Megamacro",
  8925. height: math.unit(25, "km")
  8926. },
  8927. ]
  8928. ))
  8929. characterMakers.push(() => makeCharacter(
  8930. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8931. {
  8932. front: {
  8933. height: math.unit(6, "feet"),
  8934. weight: math.unit(65, "kg"),
  8935. name: "Front",
  8936. image: {
  8937. source: "./media/characters/rook/front.svg",
  8938. extra: 960 / 950
  8939. }
  8940. }
  8941. },
  8942. [
  8943. {
  8944. name: "Normal",
  8945. height: math.unit(8.8, "feet")
  8946. },
  8947. {
  8948. name: "Macro",
  8949. height: math.unit(88, "feet"),
  8950. default: true
  8951. },
  8952. {
  8953. name: "Megamacro",
  8954. height: math.unit(8, "miles")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8960. {
  8961. front: {
  8962. height: math.unit(12 + 2 / 12, "feet"),
  8963. weight: math.unit(808, "lbs"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/prodigy/front.svg"
  8967. }
  8968. }
  8969. },
  8970. [
  8971. {
  8972. name: "Normal",
  8973. height: math.unit(12 + 2 / 12, "feet"),
  8974. default: true
  8975. },
  8976. {
  8977. name: "Macro",
  8978. height: math.unit(143, "feet")
  8979. },
  8980. {
  8981. name: "Macro+",
  8982. height: math.unit(400, "feet")
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8988. {
  8989. front: {
  8990. height: math.unit(6, "feet"),
  8991. weight: math.unit(225, "lbs"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/daniel/front.svg"
  8995. }
  8996. },
  8997. leaning: {
  8998. height: math.unit(6, "feet"),
  8999. weight: math.unit(225, "lbs"),
  9000. name: "Leaning",
  9001. image: {
  9002. source: "./media/characters/daniel/leaning.svg"
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Macro",
  9009. height: math.unit(1000, "feet"),
  9010. default: true
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(88, "lbs"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/chiros/front.svg",
  9023. extra: 306 / 226
  9024. }
  9025. },
  9026. side: {
  9027. height: math.unit(6, "feet"),
  9028. weight: math.unit(88, "lbs"),
  9029. name: "Side",
  9030. image: {
  9031. source: "./media/characters/chiros/side.svg",
  9032. extra: 306 / 226
  9033. }
  9034. },
  9035. },
  9036. [
  9037. {
  9038. name: "Normal",
  9039. height: math.unit(6, "cm"),
  9040. default: true
  9041. },
  9042. ]
  9043. ))
  9044. characterMakers.push(() => makeCharacter(
  9045. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9046. {
  9047. front: {
  9048. height: math.unit(6, "feet"),
  9049. weight: math.unit(100, "lbs"),
  9050. name: "Front",
  9051. image: {
  9052. source: "./media/characters/selka/front.svg",
  9053. extra: 947 / 887
  9054. }
  9055. }
  9056. },
  9057. [
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(5, "cm"),
  9061. default: true
  9062. },
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9067. {
  9068. front: {
  9069. height: math.unit(8 + 3 / 12, "feet"),
  9070. weight: math.unit(424, "lbs"),
  9071. name: "Front",
  9072. image: {
  9073. source: "./media/characters/verin/front.svg",
  9074. extra: 1845 / 1550
  9075. }
  9076. },
  9077. frontArmored: {
  9078. height: math.unit(8 + 3 / 12, "feet"),
  9079. weight: math.unit(424, "lbs"),
  9080. name: "Front (Armored)",
  9081. image: {
  9082. source: "./media/characters/verin/front-armor.svg",
  9083. extra: 1845 / 1550,
  9084. bottom: 0.01
  9085. }
  9086. },
  9087. back: {
  9088. height: math.unit(8 + 3 / 12, "feet"),
  9089. weight: math.unit(424, "lbs"),
  9090. name: "Back",
  9091. image: {
  9092. source: "./media/characters/verin/back.svg",
  9093. bottom: 0.1,
  9094. extra: 1
  9095. }
  9096. },
  9097. foot: {
  9098. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9099. name: "Foot",
  9100. image: {
  9101. source: "./media/characters/verin/foot.svg"
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Normal",
  9108. height: math.unit(8 + 3 / 12, "feet")
  9109. },
  9110. {
  9111. name: "Minimacro",
  9112. height: math.unit(21, "feet"),
  9113. default: true
  9114. },
  9115. {
  9116. name: "Macro",
  9117. height: math.unit(626, "feet")
  9118. },
  9119. ]
  9120. ))
  9121. characterMakers.push(() => makeCharacter(
  9122. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9123. {
  9124. front: {
  9125. height: math.unit(2.718, "meters"),
  9126. weight: math.unit(150, "lbs"),
  9127. name: "Front",
  9128. image: {
  9129. source: "./media/characters/sovrim-terraquian/front.svg",
  9130. extra: 1752/1689,
  9131. bottom: 36/1788
  9132. }
  9133. },
  9134. back: {
  9135. height: math.unit(2.718, "meters"),
  9136. weight: math.unit(150, "lbs"),
  9137. name: "Back",
  9138. image: {
  9139. source: "./media/characters/sovrim-terraquian/back.svg",
  9140. extra: 1698/1657,
  9141. bottom: 58/1756
  9142. }
  9143. },
  9144. tongue: {
  9145. height: math.unit(2.865, "feet"),
  9146. name: "Tongue",
  9147. image: {
  9148. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9149. }
  9150. },
  9151. hand: {
  9152. height: math.unit(1.61, "feet"),
  9153. name: "Hand",
  9154. image: {
  9155. source: "./media/characters/sovrim-terraquian/hand.svg"
  9156. }
  9157. },
  9158. foot: {
  9159. height: math.unit(1.05, "feet"),
  9160. name: "Foot",
  9161. image: {
  9162. source: "./media/characters/sovrim-terraquian/foot.svg"
  9163. }
  9164. },
  9165. footAlt: {
  9166. height: math.unit(0.88, "feet"),
  9167. name: "Foot (Alt)",
  9168. image: {
  9169. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Micro",
  9176. height: math.unit(2, "inches")
  9177. },
  9178. {
  9179. name: "Small",
  9180. height: math.unit(1, "meter")
  9181. },
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(Math.E, "meters"),
  9185. default: true
  9186. },
  9187. {
  9188. name: "Macro",
  9189. height: math.unit(20, "meters")
  9190. },
  9191. {
  9192. name: "Macro+",
  9193. height: math.unit(400, "meters")
  9194. },
  9195. ]
  9196. ))
  9197. characterMakers.push(() => makeCharacter(
  9198. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9199. {
  9200. front: {
  9201. height: math.unit(7, "feet"),
  9202. weight: math.unit(489, "lbs"),
  9203. name: "Front",
  9204. image: {
  9205. source: "./media/characters/reece-silvermane/front.svg",
  9206. bottom: 0.02,
  9207. extra: 1
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Macro",
  9214. height: math.unit(1.5, "miles"),
  9215. default: true
  9216. },
  9217. ]
  9218. ))
  9219. characterMakers.push(() => makeCharacter(
  9220. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9221. {
  9222. front: {
  9223. height: math.unit(6, "feet"),
  9224. weight: math.unit(78, "kg"),
  9225. name: "Front",
  9226. image: {
  9227. source: "./media/characters/kane/front.svg",
  9228. extra: 978 / 899
  9229. }
  9230. },
  9231. back: {
  9232. height: math.unit(6, "feet"),
  9233. weight: math.unit(78, "kg"),
  9234. name: "Back",
  9235. image: {
  9236. source: "./media/characters/kane/back.svg",
  9237. extra: 1966/1800,
  9238. bottom: 0/1966
  9239. }
  9240. },
  9241. head: {
  9242. height: math.unit(1.4, "feet"),
  9243. name: "Head",
  9244. image: {
  9245. source: "./media/characters/kane/head.svg"
  9246. }
  9247. },
  9248. },
  9249. [
  9250. {
  9251. name: "Normal",
  9252. height: math.unit(2.1, "m"),
  9253. },
  9254. {
  9255. name: "Macro",
  9256. height: math.unit(1, "km"),
  9257. default: true
  9258. },
  9259. ]
  9260. ))
  9261. characterMakers.push(() => makeCharacter(
  9262. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9263. {
  9264. front: {
  9265. height: math.unit(6, "feet"),
  9266. weight: math.unit(200, "kg"),
  9267. name: "Front",
  9268. image: {
  9269. source: "./media/characters/tegon/front.svg",
  9270. bottom: 0.01,
  9271. extra: 1
  9272. }
  9273. },
  9274. },
  9275. [
  9276. {
  9277. name: "Micro",
  9278. height: math.unit(1, "inch")
  9279. },
  9280. {
  9281. name: "Normal",
  9282. height: math.unit(6 + 3 / 12, "feet"),
  9283. default: true
  9284. },
  9285. {
  9286. name: "Macro",
  9287. height: math.unit(300, "feet")
  9288. },
  9289. {
  9290. name: "Megamacro",
  9291. height: math.unit(69, "miles")
  9292. },
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9297. {
  9298. side: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(2304, "lbs"),
  9301. name: "Side",
  9302. image: {
  9303. source: "./media/characters/arcturax/side.svg",
  9304. extra: 790 / 376,
  9305. bottom: 0.01
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Micro",
  9312. height: math.unit(2, "inch")
  9313. },
  9314. {
  9315. name: "Normal",
  9316. height: math.unit(6, "feet")
  9317. },
  9318. {
  9319. name: "Macro",
  9320. height: math.unit(39, "feet"),
  9321. default: true
  9322. },
  9323. {
  9324. name: "Megamacro",
  9325. height: math.unit(7, "miles")
  9326. },
  9327. ]
  9328. ))
  9329. characterMakers.push(() => makeCharacter(
  9330. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9331. {
  9332. front: {
  9333. height: math.unit(6, "feet"),
  9334. weight: math.unit(50, "lbs"),
  9335. name: "Front",
  9336. image: {
  9337. source: "./media/characters/sentri/front.svg",
  9338. extra: 1750 / 1570,
  9339. bottom: 0.025
  9340. }
  9341. },
  9342. frontAlt: {
  9343. height: math.unit(6, "feet"),
  9344. weight: math.unit(50, "lbs"),
  9345. name: "Front (Alt)",
  9346. image: {
  9347. source: "./media/characters/sentri/front-alt.svg",
  9348. extra: 1750 / 1570,
  9349. bottom: 0.025
  9350. }
  9351. },
  9352. },
  9353. [
  9354. {
  9355. name: "Normal",
  9356. height: math.unit(15, "feet"),
  9357. default: true
  9358. },
  9359. {
  9360. name: "Macro",
  9361. height: math.unit(2500, "feet")
  9362. }
  9363. ]
  9364. ))
  9365. characterMakers.push(() => makeCharacter(
  9366. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9367. {
  9368. front: {
  9369. height: math.unit(5 + 8 / 12, "feet"),
  9370. weight: math.unit(130, "lbs"),
  9371. name: "Front",
  9372. image: {
  9373. source: "./media/characters/corvin/front.svg",
  9374. extra: 1803 / 1629
  9375. }
  9376. },
  9377. frontShirt: {
  9378. height: math.unit(5 + 8 / 12, "feet"),
  9379. weight: math.unit(130, "lbs"),
  9380. name: "Front (Shirt)",
  9381. image: {
  9382. source: "./media/characters/corvin/front-shirt.svg",
  9383. extra: 1803 / 1629
  9384. }
  9385. },
  9386. frontPoncho: {
  9387. height: math.unit(5 + 8 / 12, "feet"),
  9388. weight: math.unit(130, "lbs"),
  9389. name: "Front (Poncho)",
  9390. image: {
  9391. source: "./media/characters/corvin/front-poncho.svg",
  9392. extra: 1803 / 1629
  9393. }
  9394. },
  9395. side: {
  9396. height: math.unit(5 + 8 / 12, "feet"),
  9397. weight: math.unit(130, "lbs"),
  9398. name: "Side",
  9399. image: {
  9400. source: "./media/characters/corvin/side.svg",
  9401. extra: 1012 / 945
  9402. }
  9403. },
  9404. back: {
  9405. height: math.unit(5 + 8 / 12, "feet"),
  9406. weight: math.unit(130, "lbs"),
  9407. name: "Back",
  9408. image: {
  9409. source: "./media/characters/corvin/back.svg",
  9410. extra: 1803 / 1629
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Micro",
  9417. height: math.unit(3, "inches")
  9418. },
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(5 + 8 / 12, "feet")
  9422. },
  9423. {
  9424. name: "Macro",
  9425. height: math.unit(300, "feet"),
  9426. default: true
  9427. },
  9428. {
  9429. name: "Megamacro",
  9430. height: math.unit(500, "miles")
  9431. }
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9436. {
  9437. front: {
  9438. height: math.unit(6, "feet"),
  9439. weight: math.unit(135, "lbs"),
  9440. name: "Front",
  9441. image: {
  9442. source: "./media/characters/q/front.svg",
  9443. extra: 854 / 752,
  9444. bottom: 0.005
  9445. }
  9446. },
  9447. back: {
  9448. height: math.unit(6, "feet"),
  9449. weight: math.unit(130, "lbs"),
  9450. name: "Back",
  9451. image: {
  9452. source: "./media/characters/q/back.svg",
  9453. extra: 854 / 752
  9454. }
  9455. },
  9456. },
  9457. [
  9458. {
  9459. name: "Macro",
  9460. height: math.unit(90, "feet"),
  9461. default: true
  9462. },
  9463. {
  9464. name: "Extra Macro",
  9465. height: math.unit(300, "feet"),
  9466. },
  9467. {
  9468. name: "BIG WALF",
  9469. height: math.unit(750, "feet"),
  9470. },
  9471. ]
  9472. ))
  9473. characterMakers.push(() => makeCharacter(
  9474. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9475. {
  9476. front: {
  9477. height: math.unit(3, "feet"),
  9478. weight: math.unit(28, "lbs"),
  9479. name: "Front",
  9480. image: {
  9481. source: "./media/characters/citrine/front.svg"
  9482. }
  9483. }
  9484. },
  9485. [
  9486. {
  9487. name: "Normal",
  9488. height: math.unit(3, "feet"),
  9489. default: true
  9490. }
  9491. ]
  9492. ))
  9493. characterMakers.push(() => makeCharacter(
  9494. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9495. {
  9496. front: {
  9497. height: math.unit(14, "feet"),
  9498. weight: math.unit(1450, "kg"),
  9499. preyCapacity: math.unit(15, "people"),
  9500. name: "Front",
  9501. image: {
  9502. source: "./media/characters/aura-starwind/front.svg",
  9503. extra: 1440/1327,
  9504. bottom: 11/1451
  9505. }
  9506. },
  9507. side: {
  9508. height: math.unit(14, "feet"),
  9509. weight: math.unit(1450, "kg"),
  9510. preyCapacity: math.unit(15, "people"),
  9511. name: "Side",
  9512. image: {
  9513. source: "./media/characters/aura-starwind/side.svg",
  9514. extra: 1654 / 1497
  9515. }
  9516. },
  9517. taur: {
  9518. height: math.unit(18, "feet"),
  9519. weight: math.unit(5500, "kg"),
  9520. preyCapacity: math.unit(50, "people"),
  9521. name: "Taur",
  9522. image: {
  9523. source: "./media/characters/aura-starwind/taur.svg",
  9524. extra: 1760 / 1650
  9525. }
  9526. },
  9527. feral: {
  9528. height: math.unit(46, "feet"),
  9529. weight: math.unit(25000, "kg"),
  9530. preyCapacity: math.unit(120, "people"),
  9531. name: "Feral",
  9532. image: {
  9533. source: "./media/characters/aura-starwind/feral.svg"
  9534. }
  9535. },
  9536. },
  9537. [
  9538. {
  9539. name: "Normal",
  9540. height: math.unit(14, "feet"),
  9541. default: true
  9542. },
  9543. {
  9544. name: "Macro",
  9545. height: math.unit(50, "meters")
  9546. },
  9547. {
  9548. name: "Megamacro",
  9549. height: math.unit(5000, "meters")
  9550. },
  9551. {
  9552. name: "Gigamacro",
  9553. height: math.unit(100000, "kilometers")
  9554. },
  9555. ]
  9556. ))
  9557. characterMakers.push(() => makeCharacter(
  9558. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9559. {
  9560. front: {
  9561. height: math.unit(2 + 7 / 12, "feet"),
  9562. weight: math.unit(32, "lbs"),
  9563. name: "Front",
  9564. image: {
  9565. source: "./media/characters/rivet/front.svg",
  9566. extra: 1716 / 1658,
  9567. bottom: 0.03
  9568. }
  9569. },
  9570. foot: {
  9571. height: math.unit(0.551, "feet"),
  9572. name: "Rivet's Foot",
  9573. image: {
  9574. source: "./media/characters/rivet/foot.svg"
  9575. },
  9576. rename: true
  9577. }
  9578. },
  9579. [
  9580. {
  9581. name: "Micro",
  9582. height: math.unit(1.5, "inches"),
  9583. },
  9584. {
  9585. name: "Normal",
  9586. height: math.unit(2 + 7 / 12, "feet"),
  9587. default: true
  9588. },
  9589. {
  9590. name: "Macro",
  9591. height: math.unit(85, "feet")
  9592. },
  9593. {
  9594. name: "Megamacro",
  9595. height: math.unit(2.2, "km")
  9596. }
  9597. ]
  9598. ))
  9599. characterMakers.push(() => makeCharacter(
  9600. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9601. {
  9602. front: {
  9603. height: math.unit(5 + 9 / 12, "feet"),
  9604. weight: math.unit(150, "lbs"),
  9605. name: "Front",
  9606. image: {
  9607. source: "./media/characters/coffee/front.svg",
  9608. extra: 946/880,
  9609. bottom: 66/1012
  9610. }
  9611. },
  9612. foot: {
  9613. height: math.unit(1.29, "feet"),
  9614. name: "Foot",
  9615. image: {
  9616. source: "./media/characters/coffee/foot.svg"
  9617. }
  9618. },
  9619. },
  9620. [
  9621. {
  9622. name: "Micro",
  9623. height: math.unit(2, "inches"),
  9624. },
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(5 + 9 / 12, "feet"),
  9628. default: true
  9629. },
  9630. {
  9631. name: "Macro",
  9632. height: math.unit(800, "feet")
  9633. },
  9634. {
  9635. name: "Megamacro",
  9636. height: math.unit(25, "miles")
  9637. }
  9638. ]
  9639. ))
  9640. characterMakers.push(() => makeCharacter(
  9641. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9642. {
  9643. front: {
  9644. height: math.unit(6, "feet"),
  9645. weight: math.unit(200, "lbs"),
  9646. name: "Front",
  9647. image: {
  9648. source: "./media/characters/chari-gal/front.svg",
  9649. extra: 735/649,
  9650. bottom: 55/790
  9651. },
  9652. form: "normal",
  9653. default: true
  9654. },
  9655. back: {
  9656. height: math.unit(6, "feet"),
  9657. weight: math.unit(200, "lb"),
  9658. name: "Back",
  9659. image: {
  9660. source: "./media/characters/chari-gal/back.svg",
  9661. extra: 762/666,
  9662. bottom: 31/793
  9663. },
  9664. form: "normal"
  9665. },
  9666. mouth: {
  9667. height: math.unit(1.35, "feet"),
  9668. name: "Mouth",
  9669. image: {
  9670. source: "./media/characters/chari-gal/mouth.svg"
  9671. },
  9672. form: "normal"
  9673. },
  9674. gigantamax: {
  9675. height: math.unit(6 * 16, "feet"),
  9676. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9677. name: "Gigantamax",
  9678. image: {
  9679. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9680. extra: 1507/1149,
  9681. bottom: 254/1761
  9682. },
  9683. form: "gigantamax",
  9684. default: true
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(5 + 7 / 12, "feet"),
  9691. form: "normal",
  9692. },
  9693. {
  9694. name: "Macro",
  9695. height: math.unit(200, "feet"),
  9696. default: true,
  9697. form: "normal"
  9698. },
  9699. {
  9700. name: "Normal",
  9701. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9702. form: "gigantamax",
  9703. },
  9704. {
  9705. name: "Macro",
  9706. height: math.unit(16 * 200, "feet"),
  9707. default: true,
  9708. form: "gigantamax"
  9709. },
  9710. ],
  9711. {
  9712. "normal": {
  9713. name: "Normal",
  9714. default: true
  9715. },
  9716. "gigantamax": {
  9717. name: "Gigantamax",
  9718. },
  9719. }
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9723. {
  9724. front: {
  9725. height: math.unit(6, "feet"),
  9726. weight: math.unit(150, "lbs"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/nova/front.svg",
  9730. extra: 5000 / 4722,
  9731. bottom: 0.02
  9732. }
  9733. }
  9734. },
  9735. [
  9736. {
  9737. name: "Micro-",
  9738. height: math.unit(0.8, "inches")
  9739. },
  9740. {
  9741. name: "Micro",
  9742. height: math.unit(2, "inches"),
  9743. default: true
  9744. },
  9745. ]
  9746. ))
  9747. characterMakers.push(() => makeCharacter(
  9748. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9749. {
  9750. koboldFront: {
  9751. height: math.unit(3 + 1 / 12, "feet"),
  9752. weight: math.unit(21.7, "lbs"),
  9753. name: "Front",
  9754. image: {
  9755. source: "./media/characters/argent/kobold-front.svg",
  9756. extra: 1471 / 1331,
  9757. bottom: 100.8 / 1575.5
  9758. },
  9759. form: "kobold",
  9760. default: true
  9761. },
  9762. dragonFront: {
  9763. height: math.unit(75, "inches"),
  9764. name: "Front",
  9765. image: {
  9766. source: "./media/characters/argent/dragon-front.svg",
  9767. extra: 1389/1248,
  9768. bottom: 54/1443
  9769. },
  9770. form: "dragon",
  9771. },
  9772. dragonBack: {
  9773. height: math.unit(75, "inches"),
  9774. name: "Back",
  9775. image: {
  9776. source: "./media/characters/argent/dragon-back.svg",
  9777. extra: 1399/1271,
  9778. bottom: 23/1422
  9779. },
  9780. form: "dragon",
  9781. },
  9782. dragonDressed: {
  9783. height: math.unit(75, "inches"),
  9784. name: "Dressed",
  9785. image: {
  9786. source: "./media/characters/argent/dragon-dressed.svg",
  9787. extra: 1350/1215,
  9788. bottom: 26/1376
  9789. },
  9790. form: "dragon"
  9791. },
  9792. dragonHead: {
  9793. height: math.unit(23.5, "inches"),
  9794. name: "Head",
  9795. image: {
  9796. source: "./media/characters/argent/dragon-head.svg"
  9797. },
  9798. form: "dragon",
  9799. },
  9800. },
  9801. [
  9802. {
  9803. name: "Micro",
  9804. height: math.unit(2, "inches"),
  9805. form: "kobold",
  9806. },
  9807. {
  9808. name: "Normal",
  9809. height: math.unit(3 + 1 / 12, "feet"),
  9810. form: "kobold",
  9811. default: true
  9812. },
  9813. {
  9814. name: "Macro",
  9815. height: math.unit(120, "feet"),
  9816. form: "kobold",
  9817. },
  9818. {
  9819. name: "Speck",
  9820. height: math.unit(1, "mm"),
  9821. form: "dragon",
  9822. },
  9823. {
  9824. name: "Tiny",
  9825. height: math.unit(1, "cm"),
  9826. form: "dragon",
  9827. },
  9828. {
  9829. name: "Micro",
  9830. height: math.unit(5, "cm"),
  9831. form: "dragon",
  9832. },
  9833. {
  9834. name: "Normal",
  9835. height: math.unit(75, "inches"),
  9836. form: "dragon",
  9837. default: true
  9838. },
  9839. {
  9840. name: "Extra Tall",
  9841. height: math.unit(9, "feet"),
  9842. form: "dragon",
  9843. },
  9844. {
  9845. name: "Inconvenient",
  9846. height: math.unit(5, "meters"),
  9847. form: "dragon",
  9848. },
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(70, "meters"),
  9852. form: "dragon",
  9853. },
  9854. {
  9855. name: "Macro+",
  9856. height: math.unit(250, "meters"),
  9857. form: "dragon",
  9858. },
  9859. {
  9860. name: "Megamacro",
  9861. height: math.unit(20, "km"),
  9862. form: "dragon",
  9863. },
  9864. {
  9865. name: "Mountainous",
  9866. height: math.unit(100, "km"),
  9867. form: "dragon",
  9868. },
  9869. {
  9870. name: "Continental",
  9871. height: math.unit(2, "megameters"),
  9872. form: "dragon",
  9873. },
  9874. {
  9875. name: "Too Big",
  9876. height: math.unit(900, "megameters"),
  9877. form: "dragon",
  9878. },
  9879. ],
  9880. {
  9881. "kobold": {
  9882. name: "Kobold",
  9883. default: true
  9884. },
  9885. "dragon": {
  9886. name: "Dragon",
  9887. },
  9888. }
  9889. ))
  9890. characterMakers.push(() => makeCharacter(
  9891. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9892. {
  9893. lamp: {
  9894. height: math.unit(7 * 1559 / 989, "feet"),
  9895. name: "Magic Lamp",
  9896. image: {
  9897. source: "./media/characters/mira-al-cul/lamp.svg",
  9898. extra: 1617 / 1559
  9899. }
  9900. },
  9901. front: {
  9902. height: math.unit(7, "feet"),
  9903. name: "Front",
  9904. image: {
  9905. source: "./media/characters/mira-al-cul/front.svg",
  9906. extra: 1044 / 990
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Heavily Restricted",
  9913. height: math.unit(7 * 1559 / 989, "feet")
  9914. },
  9915. {
  9916. name: "Freshly Freed",
  9917. height: math.unit(50 * 1559 / 989, "feet")
  9918. },
  9919. {
  9920. name: "World Encompassing",
  9921. height: math.unit(10000 * 1559 / 989, "miles")
  9922. },
  9923. {
  9924. name: "Galactic",
  9925. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9926. },
  9927. {
  9928. name: "Palmed Universe",
  9929. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9930. default: true
  9931. },
  9932. {
  9933. name: "Multiversal Matriarch",
  9934. height: math.unit(8.87e10, "yottameters")
  9935. },
  9936. {
  9937. name: "Void Mother",
  9938. height: math.unit(3.14e110, "yottaparsecs")
  9939. },
  9940. {
  9941. name: "Toying with Transcendence",
  9942. height: math.unit(1e307, "meters")
  9943. },
  9944. ]
  9945. ))
  9946. characterMakers.push(() => makeCharacter(
  9947. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9948. {
  9949. front: {
  9950. height: math.unit(17 + 1 / 12, "feet"),
  9951. weight: math.unit(476.2 * 5, "lbs"),
  9952. name: "Front",
  9953. image: {
  9954. source: "./media/characters/kuro-shi-uchū/front.svg",
  9955. extra: 2329 / 1835,
  9956. bottom: 0.02
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Micro",
  9963. height: math.unit(2, "inches")
  9964. },
  9965. {
  9966. name: "Normal",
  9967. height: math.unit(12, "meters")
  9968. },
  9969. {
  9970. name: "Planetary",
  9971. height: math.unit(0.00929, "AU"),
  9972. default: true
  9973. },
  9974. {
  9975. name: "Universal",
  9976. height: math.unit(20, "gigaparsecs")
  9977. },
  9978. ]
  9979. ))
  9980. characterMakers.push(() => makeCharacter(
  9981. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9982. {
  9983. front: {
  9984. height: math.unit(5 + 2 / 12, "feet"),
  9985. weight: math.unit(120, "lbs"),
  9986. name: "Front",
  9987. image: {
  9988. source: "./media/characters/katherine/front.svg",
  9989. extra: 2075 / 1969
  9990. }
  9991. },
  9992. dress: {
  9993. height: math.unit(5 + 2 / 12, "feet"),
  9994. weight: math.unit(120, "lbs"),
  9995. name: "Dress",
  9996. image: {
  9997. source: "./media/characters/katherine/dress.svg",
  9998. extra: 2258 / 2064
  9999. }
  10000. },
  10001. },
  10002. [
  10003. {
  10004. name: "Micro",
  10005. height: math.unit(1, "inches"),
  10006. default: true
  10007. },
  10008. {
  10009. name: "Normal",
  10010. height: math.unit(5 + 2 / 12, "feet")
  10011. },
  10012. {
  10013. name: "Macro",
  10014. height: math.unit(100, "meters")
  10015. },
  10016. {
  10017. name: "Megamacro",
  10018. height: math.unit(80, "miles")
  10019. },
  10020. ]
  10021. ))
  10022. characterMakers.push(() => makeCharacter(
  10023. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10024. {
  10025. front: {
  10026. height: math.unit(7 + 8 / 12, "feet"),
  10027. weight: math.unit(250, "lbs"),
  10028. name: "Front",
  10029. image: {
  10030. source: "./media/characters/yevis/front.svg",
  10031. extra: 1938 / 1755
  10032. }
  10033. }
  10034. },
  10035. [
  10036. {
  10037. name: "Mortal",
  10038. height: math.unit(7 + 8 / 12, "feet")
  10039. },
  10040. {
  10041. name: "Battle",
  10042. height: math.unit(25 + 11 / 12, "feet")
  10043. },
  10044. {
  10045. name: "Wrath",
  10046. height: math.unit(1654 + 11 / 12, "feet")
  10047. },
  10048. {
  10049. name: "Planet Destroyer",
  10050. height: math.unit(12000, "miles")
  10051. },
  10052. {
  10053. name: "Galaxy Conqueror",
  10054. height: math.unit(1.45, "zettameters"),
  10055. default: true
  10056. },
  10057. {
  10058. name: "Universal War",
  10059. height: math.unit(184, "gigaparsecs")
  10060. },
  10061. {
  10062. name: "Eternity War",
  10063. height: math.unit(1.98e55, "yottaparsecs")
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10069. {
  10070. front: {
  10071. height: math.unit(5 + 8 / 12, "feet"),
  10072. weight: math.unit(63, "kg"),
  10073. name: "Front",
  10074. image: {
  10075. source: "./media/characters/xavier/front.svg",
  10076. extra: 944 / 883
  10077. }
  10078. },
  10079. frontStretch: {
  10080. height: math.unit(5 + 8 / 12, "feet"),
  10081. weight: math.unit(63, "kg"),
  10082. name: "Stretching",
  10083. image: {
  10084. source: "./media/characters/xavier/front-stretch.svg",
  10085. extra: 962 / 820
  10086. }
  10087. },
  10088. },
  10089. [
  10090. {
  10091. name: "Normal",
  10092. height: math.unit(5 + 8 / 12, "feet")
  10093. },
  10094. {
  10095. name: "Macro",
  10096. height: math.unit(100, "meters"),
  10097. default: true
  10098. },
  10099. {
  10100. name: "McLargeHuge",
  10101. height: math.unit(10, "miles")
  10102. },
  10103. ]
  10104. ))
  10105. characterMakers.push(() => makeCharacter(
  10106. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10107. {
  10108. front: {
  10109. height: math.unit(5 + 5 / 12, "feet"),
  10110. weight: math.unit(150, "lb"),
  10111. name: "Front",
  10112. image: {
  10113. source: "./media/characters/joshii/front.svg",
  10114. extra: 765 / 653,
  10115. bottom: 51 / 816
  10116. }
  10117. },
  10118. foot: {
  10119. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10120. name: "Foot",
  10121. image: {
  10122. source: "./media/characters/joshii/foot.svg"
  10123. }
  10124. },
  10125. },
  10126. [
  10127. {
  10128. name: "Micro",
  10129. height: math.unit(2, "inches")
  10130. },
  10131. {
  10132. name: "Normal",
  10133. height: math.unit(5 + 5 / 12, "feet")
  10134. },
  10135. {
  10136. name: "Macro",
  10137. height: math.unit(785, "feet"),
  10138. default: true
  10139. },
  10140. {
  10141. name: "Megamacro",
  10142. height: math.unit(24.5, "miles")
  10143. },
  10144. ]
  10145. ))
  10146. characterMakers.push(() => makeCharacter(
  10147. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10148. {
  10149. front: {
  10150. height: math.unit(6, "feet"),
  10151. weight: math.unit(150, "lb"),
  10152. name: "Front",
  10153. image: {
  10154. source: "./media/characters/goddess-elizabeth/front.svg",
  10155. extra: 1800 / 1525,
  10156. bottom: 0.005
  10157. }
  10158. },
  10159. foot: {
  10160. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10161. name: "Foot",
  10162. image: {
  10163. source: "./media/characters/goddess-elizabeth/foot.svg"
  10164. }
  10165. },
  10166. mouth: {
  10167. height: math.unit(6, "feet"),
  10168. name: "Mouth",
  10169. image: {
  10170. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10171. }
  10172. },
  10173. },
  10174. [
  10175. {
  10176. name: "Micro",
  10177. height: math.unit(12, "feet")
  10178. },
  10179. {
  10180. name: "Normal",
  10181. height: math.unit(80, "miles"),
  10182. default: true
  10183. },
  10184. {
  10185. name: "Macro",
  10186. height: math.unit(15000, "parsecs")
  10187. },
  10188. ]
  10189. ))
  10190. characterMakers.push(() => makeCharacter(
  10191. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10192. {
  10193. front: {
  10194. height: math.unit(5 + 9 / 12, "feet"),
  10195. weight: math.unit(144, "lb"),
  10196. name: "Front",
  10197. image: {
  10198. source: "./media/characters/kara/front.svg"
  10199. }
  10200. },
  10201. feet: {
  10202. height: math.unit(6 / 6.765, "feet"),
  10203. name: "Kara's Feet",
  10204. rename: true,
  10205. image: {
  10206. source: "./media/characters/kara/feet.svg"
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Normal",
  10213. height: math.unit(5 + 9 / 12, "feet")
  10214. },
  10215. {
  10216. name: "Macro",
  10217. height: math.unit(174, "feet"),
  10218. default: true
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(18, "feet"),
  10227. weight: math.unit(4050, "lb"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/tyrone/front.svg",
  10231. extra: 2405 / 2270,
  10232. bottom: 182 / 2587
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(18, "feet"),
  10240. default: true
  10241. },
  10242. {
  10243. name: "Macro",
  10244. height: math.unit(300, "feet")
  10245. },
  10246. {
  10247. name: "Megamacro",
  10248. height: math.unit(15, "km")
  10249. },
  10250. {
  10251. name: "Gigamacro",
  10252. height: math.unit(500, "km")
  10253. },
  10254. {
  10255. name: "Teramacro",
  10256. height: math.unit(0.5, "gigameters")
  10257. },
  10258. {
  10259. name: "Omnimacro",
  10260. height: math.unit(1e252, "yottauniverse")
  10261. },
  10262. ]
  10263. ))
  10264. characterMakers.push(() => makeCharacter(
  10265. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10266. {
  10267. front: {
  10268. height: math.unit(7 + 8 / 12, "feet"),
  10269. weight: math.unit(120, "lb"),
  10270. name: "Front",
  10271. image: {
  10272. source: "./media/characters/danny/front.svg",
  10273. extra: 1490 / 1350
  10274. }
  10275. },
  10276. back: {
  10277. height: math.unit(7 + 8 / 12, "feet"),
  10278. weight: math.unit(120, "lb"),
  10279. name: "Back",
  10280. image: {
  10281. source: "./media/characters/danny/back.svg",
  10282. extra: 1490 / 1350
  10283. }
  10284. },
  10285. },
  10286. [
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(7 + 8 / 12, "feet"),
  10290. default: true
  10291. },
  10292. ]
  10293. ))
  10294. characterMakers.push(() => makeCharacter(
  10295. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10296. {
  10297. front: {
  10298. height: math.unit(3.5, "inches"),
  10299. weight: math.unit(19, "grams"),
  10300. name: "Front",
  10301. image: {
  10302. source: "./media/characters/mallow/front.svg",
  10303. extra: 471 / 431
  10304. }
  10305. },
  10306. back: {
  10307. height: math.unit(3.5, "inches"),
  10308. weight: math.unit(19, "grams"),
  10309. name: "Back",
  10310. image: {
  10311. source: "./media/characters/mallow/back.svg",
  10312. extra: 471 / 431
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(3.5, "inches"),
  10320. default: true
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(9, "feet"),
  10329. weight: math.unit(230, "kg"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/starry-aqua/front.svg"
  10333. }
  10334. },
  10335. back: {
  10336. height: math.unit(9, "feet"),
  10337. weight: math.unit(230, "kg"),
  10338. name: "Back",
  10339. image: {
  10340. source: "./media/characters/starry-aqua/back.svg"
  10341. }
  10342. },
  10343. hand: {
  10344. height: math.unit(9 * 0.1168, "feet"),
  10345. name: "Hand",
  10346. image: {
  10347. source: "./media/characters/starry-aqua/hand.svg"
  10348. }
  10349. },
  10350. foot: {
  10351. height: math.unit(9 * 0.18, "feet"),
  10352. name: "Foot",
  10353. image: {
  10354. source: "./media/characters/starry-aqua/foot.svg"
  10355. }
  10356. }
  10357. },
  10358. [
  10359. {
  10360. name: "Micro",
  10361. height: math.unit(3, "inches")
  10362. },
  10363. {
  10364. name: "Normal",
  10365. height: math.unit(9, "feet")
  10366. },
  10367. {
  10368. name: "Macro",
  10369. height: math.unit(300, "feet"),
  10370. default: true
  10371. },
  10372. {
  10373. name: "Megamacro",
  10374. height: math.unit(3200, "feet")
  10375. }
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10380. {
  10381. front: {
  10382. height: math.unit(15, "feet"),
  10383. weight: math.unit(5026, "lb"),
  10384. name: "Front",
  10385. image: {
  10386. source: "./media/characters/luka-towers/front.svg",
  10387. extra: 1269/1133,
  10388. bottom: 51/1320
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Normal",
  10395. height: math.unit(15, "feet"),
  10396. default: true
  10397. },
  10398. {
  10399. name: "Minimacro",
  10400. height: math.unit(25, "feet")
  10401. },
  10402. {
  10403. name: "Macro",
  10404. height: math.unit(320, "feet")
  10405. },
  10406. {
  10407. name: "Megamacro",
  10408. height: math.unit(35000, "feet")
  10409. },
  10410. {
  10411. name: "Gigamacro",
  10412. height: math.unit(4000, "miles")
  10413. },
  10414. {
  10415. name: "Teramacro",
  10416. height: math.unit(15000, "miles")
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(150, "lb"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/natalie-nightring/front.svg",
  10429. extra: 1,
  10430. bottom: 0.06
  10431. }
  10432. },
  10433. },
  10434. [
  10435. {
  10436. name: "Uh Oh",
  10437. height: math.unit(0.1, "mm")
  10438. },
  10439. {
  10440. name: "Small",
  10441. height: math.unit(3, "inches")
  10442. },
  10443. {
  10444. name: "Human Scale",
  10445. height: math.unit(6, "feet")
  10446. },
  10447. {
  10448. name: "Librarian",
  10449. height: math.unit(50, "feet"),
  10450. default: true
  10451. },
  10452. {
  10453. name: "Immense",
  10454. height: math.unit(200, "miles")
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10460. {
  10461. front: {
  10462. height: math.unit(6, "feet"),
  10463. weight: math.unit(180, "lbs"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/danni-rosie/front.svg",
  10467. extra: 1260 / 1128,
  10468. bottom: 0.022
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Micro",
  10475. height: math.unit(2, "inches"),
  10476. default: true
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(5 + 9 / 12, "feet"),
  10485. weight: math.unit(220, "lb"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/samantha-kruse/front.svg",
  10489. extra: (985 / 935),
  10490. bottom: 0.03
  10491. }
  10492. },
  10493. frontUndressed: {
  10494. height: math.unit(5 + 9 / 12, "feet"),
  10495. weight: math.unit(220, "lb"),
  10496. name: "Front (Undressed)",
  10497. image: {
  10498. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10499. extra: (973 / 923),
  10500. bottom: 0.025
  10501. }
  10502. },
  10503. fat: {
  10504. height: math.unit(5 + 9 / 12, "feet"),
  10505. weight: math.unit(900, "lb"),
  10506. name: "Front (Fat)",
  10507. image: {
  10508. source: "./media/characters/samantha-kruse/fat.svg",
  10509. extra: 2688 / 2561
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Normal",
  10516. height: math.unit(5 + 9 / 12, "feet"),
  10517. default: true
  10518. }
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10523. {
  10524. back: {
  10525. height: math.unit(5 + 4 / 12, "feet"),
  10526. weight: math.unit(4963, "lb"),
  10527. name: "Back",
  10528. image: {
  10529. source: "./media/characters/amelia-rosie/back.svg",
  10530. extra: 1113 / 963,
  10531. bottom: 0.01
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Level 0",
  10538. height: math.unit(5 + 4 / 12, "feet")
  10539. },
  10540. {
  10541. name: "Level 1",
  10542. height: math.unit(164597, "feet"),
  10543. default: true
  10544. },
  10545. {
  10546. name: "Level 2",
  10547. height: math.unit(956243, "miles")
  10548. },
  10549. {
  10550. name: "Level 3",
  10551. height: math.unit(29421709423, "miles")
  10552. },
  10553. {
  10554. name: "Level 4",
  10555. height: math.unit(154, "lightyears")
  10556. },
  10557. {
  10558. name: "Level 5",
  10559. height: math.unit(4738272, "lightyears")
  10560. },
  10561. {
  10562. name: "Level 6",
  10563. height: math.unit(145787152896, "lightyears")
  10564. },
  10565. ]
  10566. ))
  10567. characterMakers.push(() => makeCharacter(
  10568. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10569. {
  10570. front: {
  10571. height: math.unit(5 + 11 / 12, "feet"),
  10572. weight: math.unit(65, "kg"),
  10573. name: "Front",
  10574. image: {
  10575. source: "./media/characters/rook-kitara/front.svg",
  10576. extra: 1347 / 1274,
  10577. bottom: 0.005
  10578. }
  10579. },
  10580. },
  10581. [
  10582. {
  10583. name: "Totally Unfair",
  10584. height: math.unit(1.8, "mm")
  10585. },
  10586. {
  10587. name: "Lap Rookie",
  10588. height: math.unit(1.4, "feet")
  10589. },
  10590. {
  10591. name: "Normal",
  10592. height: math.unit(5 + 11 / 12, "feet"),
  10593. default: true
  10594. },
  10595. {
  10596. name: "How Did This Happen",
  10597. height: math.unit(80, "miles")
  10598. }
  10599. ]
  10600. ))
  10601. characterMakers.push(() => makeCharacter(
  10602. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10603. {
  10604. front: {
  10605. height: math.unit(7, "feet"),
  10606. weight: math.unit(300, "lb"),
  10607. name: "Front",
  10608. image: {
  10609. source: "./media/characters/pisces/front.svg",
  10610. extra: 2255 / 2115,
  10611. bottom: 0.03
  10612. }
  10613. },
  10614. back: {
  10615. height: math.unit(7, "feet"),
  10616. weight: math.unit(300, "lb"),
  10617. name: "Back",
  10618. image: {
  10619. source: "./media/characters/pisces/back.svg",
  10620. extra: 2146 / 2055,
  10621. bottom: 0.04
  10622. }
  10623. },
  10624. },
  10625. [
  10626. {
  10627. name: "Normal",
  10628. height: math.unit(7, "feet"),
  10629. default: true
  10630. },
  10631. {
  10632. name: "Swimming Pool",
  10633. height: math.unit(12.2, "meters")
  10634. },
  10635. {
  10636. name: "Olympic Swimming Pool",
  10637. height: math.unit(56.3, "meters")
  10638. },
  10639. {
  10640. name: "Lake Superior",
  10641. height: math.unit(93900, "meters")
  10642. },
  10643. {
  10644. name: "Mediterranean Sea",
  10645. height: math.unit(644457, "meters")
  10646. },
  10647. {
  10648. name: "World's Oceans",
  10649. height: math.unit(4567491, "meters")
  10650. },
  10651. ]
  10652. ))
  10653. characterMakers.push(() => makeCharacter(
  10654. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10655. {
  10656. front: {
  10657. height: math.unit(2.3, "meters"),
  10658. weight: math.unit(120, "kg"),
  10659. name: "Front",
  10660. image: {
  10661. source: "./media/characters/zelas/front.svg"
  10662. }
  10663. },
  10664. side: {
  10665. height: math.unit(2.3, "meters"),
  10666. weight: math.unit(120, "kg"),
  10667. name: "Side",
  10668. image: {
  10669. source: "./media/characters/zelas/side.svg"
  10670. }
  10671. },
  10672. back: {
  10673. height: math.unit(2.3, "meters"),
  10674. weight: math.unit(120, "kg"),
  10675. name: "Back",
  10676. image: {
  10677. source: "./media/characters/zelas/back.svg"
  10678. }
  10679. },
  10680. foot: {
  10681. height: math.unit(1.116, "feet"),
  10682. name: "Foot",
  10683. image: {
  10684. source: "./media/characters/zelas/foot.svg"
  10685. }
  10686. },
  10687. },
  10688. [
  10689. {
  10690. name: "Normal",
  10691. height: math.unit(2.3, "meters")
  10692. },
  10693. {
  10694. name: "Macro",
  10695. height: math.unit(30, "meters"),
  10696. default: true
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10702. {
  10703. front: {
  10704. height: math.unit(1, "inch"),
  10705. weight: math.unit(0.21, "grams"),
  10706. name: "Front",
  10707. image: {
  10708. source: "./media/characters/talbot/front.svg",
  10709. extra: 594 / 544
  10710. }
  10711. },
  10712. },
  10713. [
  10714. {
  10715. name: "Micro",
  10716. height: math.unit(1, "inch"),
  10717. default: true
  10718. },
  10719. ]
  10720. ))
  10721. characterMakers.push(() => makeCharacter(
  10722. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10723. {
  10724. front: {
  10725. height: math.unit(3 + 3 / 12, "feet"),
  10726. weight: math.unit(51.8, "lb"),
  10727. name: "Front",
  10728. image: {
  10729. source: "./media/characters/fliss/front.svg",
  10730. extra: 840 / 640
  10731. }
  10732. },
  10733. },
  10734. [
  10735. {
  10736. name: "Teeny Tiny",
  10737. height: math.unit(1, "mm")
  10738. },
  10739. {
  10740. name: "Small",
  10741. height: math.unit(1, "inch"),
  10742. default: true
  10743. },
  10744. {
  10745. name: "Standard Sylveon",
  10746. height: math.unit(3 + 3 / 12, "feet")
  10747. },
  10748. {
  10749. name: "Large Nuisance",
  10750. height: math.unit(33, "feet")
  10751. },
  10752. {
  10753. name: "City Filler",
  10754. height: math.unit(3000, "feet")
  10755. },
  10756. {
  10757. name: "New Horizon",
  10758. height: math.unit(6000, "miles")
  10759. },
  10760. ]
  10761. ))
  10762. characterMakers.push(() => makeCharacter(
  10763. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10764. {
  10765. front: {
  10766. height: math.unit(5, "cm"),
  10767. weight: math.unit(1.94, "g"),
  10768. name: "Front",
  10769. image: {
  10770. source: "./media/characters/fleta/front.svg",
  10771. extra: 835 / 803
  10772. }
  10773. },
  10774. back: {
  10775. height: math.unit(5, "cm"),
  10776. weight: math.unit(1.94, "g"),
  10777. name: "Back",
  10778. image: {
  10779. source: "./media/characters/fleta/back.svg",
  10780. extra: 835 / 803
  10781. }
  10782. },
  10783. },
  10784. [
  10785. {
  10786. name: "Micro",
  10787. height: math.unit(5, "cm"),
  10788. default: true
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10794. {
  10795. front: {
  10796. height: math.unit(6, "feet"),
  10797. weight: math.unit(225, "lb"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/dominic/front.svg",
  10801. extra: 1770 / 1620,
  10802. bottom: 0.025
  10803. }
  10804. },
  10805. back: {
  10806. height: math.unit(6, "feet"),
  10807. weight: math.unit(225, "lb"),
  10808. name: "Back",
  10809. image: {
  10810. source: "./media/characters/dominic/back.svg",
  10811. extra: 1745 / 1620,
  10812. bottom: 0.065
  10813. }
  10814. },
  10815. },
  10816. [
  10817. {
  10818. name: "Nano",
  10819. height: math.unit(0.1, "mm")
  10820. },
  10821. {
  10822. name: "Micro-",
  10823. height: math.unit(1, "mm")
  10824. },
  10825. {
  10826. name: "Micro",
  10827. height: math.unit(4, "inches")
  10828. },
  10829. {
  10830. name: "Normal",
  10831. height: math.unit(6 + 4 / 12, "feet"),
  10832. default: true
  10833. },
  10834. {
  10835. name: "Macro",
  10836. height: math.unit(115, "feet")
  10837. },
  10838. {
  10839. name: "Macro+",
  10840. height: math.unit(955, "feet")
  10841. },
  10842. {
  10843. name: "Megamacro",
  10844. height: math.unit(8990, "feet")
  10845. },
  10846. {
  10847. name: "Gigmacro",
  10848. height: math.unit(9310, "miles")
  10849. },
  10850. {
  10851. name: "Teramacro",
  10852. height: math.unit(1567005010, "miles")
  10853. },
  10854. {
  10855. name: "Examacro",
  10856. height: math.unit(1425, "parsecs")
  10857. },
  10858. ]
  10859. ))
  10860. characterMakers.push(() => makeCharacter(
  10861. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10862. {
  10863. front: {
  10864. height: math.unit(400, "feet"),
  10865. weight: math.unit(44444444, "lb"),
  10866. name: "Front",
  10867. image: {
  10868. source: "./media/characters/major-colonel/front.svg"
  10869. }
  10870. },
  10871. back: {
  10872. height: math.unit(400, "feet"),
  10873. weight: math.unit(44444444, "lb"),
  10874. name: "Back",
  10875. image: {
  10876. source: "./media/characters/major-colonel/back.svg"
  10877. }
  10878. },
  10879. },
  10880. [
  10881. {
  10882. name: "Macro",
  10883. height: math.unit(400, "feet"),
  10884. default: true
  10885. },
  10886. ]
  10887. ))
  10888. characterMakers.push(() => makeCharacter(
  10889. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10890. {
  10891. catFront: {
  10892. height: math.unit(6, "feet"),
  10893. weight: math.unit(120, "lb"),
  10894. name: "Front (Cat Side)",
  10895. image: {
  10896. source: "./media/characters/axel-lycan/cat-front.svg",
  10897. extra: 430 / 402,
  10898. bottom: 43 / 472.35
  10899. }
  10900. },
  10901. catBack: {
  10902. height: math.unit(6, "feet"),
  10903. weight: math.unit(120, "lb"),
  10904. name: "Back (Cat Side)",
  10905. image: {
  10906. source: "./media/characters/axel-lycan/cat-back.svg",
  10907. extra: 447 / 419,
  10908. bottom: 23.3 / 469
  10909. }
  10910. },
  10911. wolfFront: {
  10912. height: math.unit(6, "feet"),
  10913. weight: math.unit(120, "lb"),
  10914. name: "Front (Wolf Side)",
  10915. image: {
  10916. source: "./media/characters/axel-lycan/wolf-front.svg",
  10917. extra: 485 / 456,
  10918. bottom: 19 / 504
  10919. }
  10920. },
  10921. wolfBack: {
  10922. height: math.unit(6, "feet"),
  10923. weight: math.unit(120, "lb"),
  10924. name: "Back (Wolf Side)",
  10925. image: {
  10926. source: "./media/characters/axel-lycan/wolf-back.svg",
  10927. extra: 475 / 438,
  10928. bottom: 39.2 / 514
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Macro",
  10935. height: math.unit(1, "km"),
  10936. default: true
  10937. },
  10938. ]
  10939. ))
  10940. characterMakers.push(() => makeCharacter(
  10941. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10942. {
  10943. front: {
  10944. height: math.unit(5 + 9 / 12, "feet"),
  10945. weight: math.unit(175, "lb"),
  10946. name: "Front",
  10947. image: {
  10948. source: "./media/characters/vanrel-hyena/front.svg",
  10949. extra: 1086 / 1010,
  10950. bottom: 0.04
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(5 + 9 / 12, "feet"),
  10958. default: true
  10959. },
  10960. ]
  10961. ))
  10962. characterMakers.push(() => makeCharacter(
  10963. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10964. {
  10965. front: {
  10966. height: math.unit(6, "feet"),
  10967. weight: math.unit(103, "lb"),
  10968. name: "Front",
  10969. image: {
  10970. source: "./media/characters/abbott-absol/front.svg",
  10971. extra: 765/694,
  10972. bottom: 47/812
  10973. }
  10974. },
  10975. },
  10976. [
  10977. {
  10978. name: "Megamicro",
  10979. height: math.unit(0.1, "mm")
  10980. },
  10981. {
  10982. name: "Micro",
  10983. height: math.unit(1, "inch")
  10984. },
  10985. {
  10986. name: "Normal",
  10987. height: math.unit(6, "feet"),
  10988. default: true
  10989. },
  10990. ]
  10991. ))
  10992. characterMakers.push(() => makeCharacter(
  10993. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10994. {
  10995. front: {
  10996. height: math.unit(6, "feet"),
  10997. weight: math.unit(264, "lb"),
  10998. name: "Front",
  10999. image: {
  11000. source: "./media/characters/hector/front.svg",
  11001. extra: 2280 / 2130,
  11002. bottom: 0.07
  11003. }
  11004. },
  11005. },
  11006. [
  11007. {
  11008. name: "Normal",
  11009. height: math.unit(12.25, "foot"),
  11010. default: true
  11011. },
  11012. {
  11013. name: "Macro",
  11014. height: math.unit(160, "feet")
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(6, "feet"),
  11023. weight: math.unit(150, "lb"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/sal/front.svg",
  11027. extra: 1846 / 1699,
  11028. bottom: 0.04
  11029. }
  11030. },
  11031. },
  11032. [
  11033. {
  11034. name: "Megamacro",
  11035. height: math.unit(10, "miles"),
  11036. default: true
  11037. },
  11038. ]
  11039. ))
  11040. characterMakers.push(() => makeCharacter(
  11041. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11042. {
  11043. front: {
  11044. height: math.unit(3, "meters"),
  11045. weight: math.unit(450, "kg"),
  11046. name: "front",
  11047. image: {
  11048. source: "./media/characters/ranger/front.svg",
  11049. extra: 2401 / 2243,
  11050. bottom: 0.05
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Normal",
  11057. height: math.unit(3, "meters"),
  11058. default: true
  11059. },
  11060. ]
  11061. ))
  11062. characterMakers.push(() => makeCharacter(
  11063. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11064. {
  11065. front: {
  11066. height: math.unit(14, "feet"),
  11067. weight: math.unit(800, "kg"),
  11068. name: "Front",
  11069. image: {
  11070. source: "./media/characters/theresa/front.svg",
  11071. extra: 3575 / 3346,
  11072. bottom: 0.03
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Normal",
  11079. height: math.unit(14, "feet"),
  11080. default: true
  11081. },
  11082. ]
  11083. ))
  11084. characterMakers.push(() => makeCharacter(
  11085. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11086. {
  11087. front: {
  11088. height: math.unit(6, "feet"),
  11089. weight: math.unit(3, "kg"),
  11090. name: "Front",
  11091. image: {
  11092. source: "./media/characters/ine/front.svg",
  11093. extra: 678 / 539,
  11094. bottom: 0.023
  11095. }
  11096. },
  11097. },
  11098. [
  11099. {
  11100. name: "Normal",
  11101. height: math.unit(2.265, "feet"),
  11102. default: true
  11103. },
  11104. ]
  11105. ))
  11106. characterMakers.push(() => makeCharacter(
  11107. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11108. {
  11109. front: {
  11110. height: math.unit(5, "feet"),
  11111. weight: math.unit(30, "kg"),
  11112. name: "Front",
  11113. image: {
  11114. source: "./media/characters/vial/front.svg",
  11115. extra: 1365 / 1277,
  11116. bottom: 0.04
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Normal",
  11123. height: math.unit(5, "feet"),
  11124. default: true
  11125. },
  11126. ]
  11127. ))
  11128. characterMakers.push(() => makeCharacter(
  11129. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11130. {
  11131. side: {
  11132. height: math.unit(3.4, "meters"),
  11133. weight: math.unit(1000, "lb"),
  11134. name: "Side",
  11135. image: {
  11136. source: "./media/characters/rovoska/side.svg",
  11137. extra: 4403 / 1515
  11138. }
  11139. },
  11140. },
  11141. [
  11142. {
  11143. name: "Normal",
  11144. height: math.unit(3.4, "meters"),
  11145. default: true
  11146. },
  11147. ]
  11148. ))
  11149. characterMakers.push(() => makeCharacter(
  11150. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11151. {
  11152. front: {
  11153. height: math.unit(8, "feet"),
  11154. weight: math.unit(315, "lb"),
  11155. name: "Front",
  11156. image: {
  11157. source: "./media/characters/gunner-rotthbauer/front.svg"
  11158. }
  11159. },
  11160. back: {
  11161. height: math.unit(8, "feet"),
  11162. weight: math.unit(315, "lb"),
  11163. name: "Back",
  11164. image: {
  11165. source: "./media/characters/gunner-rotthbauer/back.svg"
  11166. }
  11167. },
  11168. },
  11169. [
  11170. {
  11171. name: "Micro",
  11172. height: math.unit(3.5, "inches")
  11173. },
  11174. {
  11175. name: "Normal",
  11176. height: math.unit(8, "feet"),
  11177. default: true
  11178. },
  11179. {
  11180. name: "Macro",
  11181. height: math.unit(250, "feet")
  11182. },
  11183. {
  11184. name: "Megamacro",
  11185. height: math.unit(1, "AU")
  11186. },
  11187. ]
  11188. ))
  11189. characterMakers.push(() => makeCharacter(
  11190. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11191. {
  11192. front: {
  11193. height: math.unit(5 + 5 / 12, "feet"),
  11194. weight: math.unit(140, "lb"),
  11195. name: "Front",
  11196. image: {
  11197. source: "./media/characters/allatia/front.svg",
  11198. extra: 1227 / 1180,
  11199. bottom: 0.027
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Normal",
  11206. height: math.unit(5 + 5 / 12, "feet")
  11207. },
  11208. {
  11209. name: "Macro",
  11210. height: math.unit(250, "feet"),
  11211. default: true
  11212. },
  11213. {
  11214. name: "Megamacro",
  11215. height: math.unit(8, "miles")
  11216. }
  11217. ]
  11218. ))
  11219. characterMakers.push(() => makeCharacter(
  11220. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11221. {
  11222. front: {
  11223. height: math.unit(6, "feet"),
  11224. weight: math.unit(120, "lb"),
  11225. name: "Front",
  11226. image: {
  11227. source: "./media/characters/tene/front.svg",
  11228. extra: 814/750,
  11229. bottom: 36/850
  11230. }
  11231. },
  11232. stomping: {
  11233. height: math.unit(2.025, "meters"),
  11234. weight: math.unit(120, "lb"),
  11235. name: "Stomping",
  11236. image: {
  11237. source: "./media/characters/tene/stomping.svg",
  11238. extra: 885/821,
  11239. bottom: 15/900
  11240. }
  11241. },
  11242. sitting: {
  11243. height: math.unit(1, "meter"),
  11244. weight: math.unit(120, "lb"),
  11245. name: "Sitting",
  11246. image: {
  11247. source: "./media/characters/tene/sitting.svg",
  11248. extra: 396/366,
  11249. bottom: 79/475
  11250. }
  11251. },
  11252. smiling: {
  11253. height: math.unit(1.2, "feet"),
  11254. name: "Smiling",
  11255. image: {
  11256. source: "./media/characters/tene/smiling.svg",
  11257. extra: 1364/1071,
  11258. bottom: 0/1364
  11259. }
  11260. },
  11261. smug: {
  11262. height: math.unit(1.3, "feet"),
  11263. name: "Smug",
  11264. image: {
  11265. source: "./media/characters/tene/smug.svg",
  11266. extra: 1323/1082,
  11267. bottom: 0/1323
  11268. }
  11269. },
  11270. feral: {
  11271. height: math.unit(3.9, "feet"),
  11272. weight: math.unit(250, "lb"),
  11273. name: "Feral",
  11274. image: {
  11275. source: "./media/characters/tene/feral.svg",
  11276. extra: 717 / 458,
  11277. bottom: 0.179
  11278. }
  11279. },
  11280. },
  11281. [
  11282. {
  11283. name: "Normal",
  11284. height: math.unit(6, "feet")
  11285. },
  11286. {
  11287. name: "Macro",
  11288. height: math.unit(300, "feet"),
  11289. default: true
  11290. },
  11291. {
  11292. name: "Megamacro",
  11293. height: math.unit(5, "miles")
  11294. },
  11295. ]
  11296. ))
  11297. characterMakers.push(() => makeCharacter(
  11298. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11299. {
  11300. side: {
  11301. height: math.unit(6, "feet"),
  11302. name: "Side",
  11303. image: {
  11304. source: "./media/characters/evander/side.svg",
  11305. extra: 877 / 477
  11306. }
  11307. },
  11308. },
  11309. [
  11310. {
  11311. name: "Normal",
  11312. height: math.unit(0.83, "meters"),
  11313. default: true
  11314. },
  11315. ]
  11316. ))
  11317. characterMakers.push(() => makeCharacter(
  11318. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11319. {
  11320. front: {
  11321. height: math.unit(12, "feet"),
  11322. weight: math.unit(1000, "lb"),
  11323. name: "Front",
  11324. image: {
  11325. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11326. extra: 1762 / 1611
  11327. }
  11328. },
  11329. back: {
  11330. height: math.unit(12, "feet"),
  11331. weight: math.unit(1000, "lb"),
  11332. name: "Back",
  11333. image: {
  11334. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11335. extra: 1762 / 1611
  11336. }
  11337. },
  11338. },
  11339. [
  11340. {
  11341. name: "Normal",
  11342. height: math.unit(12, "feet"),
  11343. default: true
  11344. },
  11345. {
  11346. name: "Kaiju",
  11347. height: math.unit(150, "feet")
  11348. },
  11349. ]
  11350. ))
  11351. characterMakers.push(() => makeCharacter(
  11352. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11353. {
  11354. front: {
  11355. height: math.unit(6, "feet"),
  11356. weight: math.unit(150, "lb"),
  11357. name: "Front",
  11358. image: {
  11359. source: "./media/characters/zero-alurus/front.svg"
  11360. }
  11361. },
  11362. back: {
  11363. height: math.unit(6, "feet"),
  11364. weight: math.unit(150, "lb"),
  11365. name: "Back",
  11366. image: {
  11367. source: "./media/characters/zero-alurus/back.svg"
  11368. }
  11369. },
  11370. },
  11371. [
  11372. {
  11373. name: "Normal",
  11374. height: math.unit(5 + 10 / 12, "feet")
  11375. },
  11376. {
  11377. name: "Macro",
  11378. height: math.unit(60, "feet"),
  11379. default: true
  11380. },
  11381. {
  11382. name: "Macro+",
  11383. height: math.unit(450, "feet")
  11384. },
  11385. ]
  11386. ))
  11387. characterMakers.push(() => makeCharacter(
  11388. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11389. {
  11390. front: {
  11391. height: math.unit(6, "feet"),
  11392. weight: math.unit(200, "lb"),
  11393. name: "Front",
  11394. image: {
  11395. source: "./media/characters/mega-shi/front.svg",
  11396. extra: 1279 / 1250,
  11397. bottom: 0.02
  11398. }
  11399. },
  11400. back: {
  11401. height: math.unit(6, "feet"),
  11402. weight: math.unit(200, "lb"),
  11403. name: "Back",
  11404. image: {
  11405. source: "./media/characters/mega-shi/back.svg",
  11406. extra: 1279 / 1250,
  11407. bottom: 0.02
  11408. }
  11409. },
  11410. },
  11411. [
  11412. {
  11413. name: "Micro",
  11414. height: math.unit(16 + 6 / 12, "feet")
  11415. },
  11416. {
  11417. name: "Third Dimension",
  11418. height: math.unit(40, "meters")
  11419. },
  11420. {
  11421. name: "Normal",
  11422. height: math.unit(660, "feet"),
  11423. default: true
  11424. },
  11425. {
  11426. name: "Megamacro",
  11427. height: math.unit(10, "miles")
  11428. },
  11429. {
  11430. name: "Planetary Launch",
  11431. height: math.unit(500, "miles")
  11432. },
  11433. {
  11434. name: "Interstellar",
  11435. height: math.unit(1e9, "miles")
  11436. },
  11437. {
  11438. name: "Leaving the Universe",
  11439. height: math.unit(1, "gigaparsec")
  11440. },
  11441. {
  11442. name: "Travelling Universes",
  11443. height: math.unit(30e15, "parsecs")
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11449. {
  11450. front: {
  11451. height: math.unit(5 + 4/12, "feet"),
  11452. weight: math.unit(120, "lb"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/odyssey/front.svg",
  11456. extra: 1747/1571,
  11457. bottom: 47/1794
  11458. }
  11459. },
  11460. side: {
  11461. height: math.unit(5.1, "feet"),
  11462. weight: math.unit(120, "lb"),
  11463. name: "Side",
  11464. image: {
  11465. source: "./media/characters/odyssey/side.svg",
  11466. extra: 1847/1619,
  11467. bottom: 47/1894
  11468. }
  11469. },
  11470. lounging: {
  11471. height: math.unit(1.464, "feet"),
  11472. weight: math.unit(120, "lb"),
  11473. name: "Lounging",
  11474. image: {
  11475. source: "./media/characters/odyssey/lounging.svg",
  11476. extra: 1235/837,
  11477. bottom: 551/1786
  11478. }
  11479. },
  11480. },
  11481. [
  11482. {
  11483. name: "Normal",
  11484. height: math.unit(5 + 4 / 12, "feet")
  11485. },
  11486. {
  11487. name: "Macro",
  11488. height: math.unit(1, "km")
  11489. },
  11490. {
  11491. name: "Megamacro",
  11492. height: math.unit(3000, "km")
  11493. },
  11494. {
  11495. name: "Gigamacro",
  11496. height: math.unit(1, "AU"),
  11497. default: true
  11498. },
  11499. {
  11500. name: "Omniversal",
  11501. height: math.unit(100e14, "lightyears")
  11502. },
  11503. ]
  11504. ))
  11505. characterMakers.push(() => makeCharacter(
  11506. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11507. {
  11508. front: {
  11509. height: math.unit(5 + 10/12, "feet"),
  11510. name: "Front",
  11511. image: {
  11512. source: "./media/characters/mekuto/front.svg",
  11513. extra: 875/835,
  11514. bottom: 46/921
  11515. }
  11516. },
  11517. },
  11518. [
  11519. {
  11520. name: "Minimicro",
  11521. height: math.unit(0.2, "inches")
  11522. },
  11523. {
  11524. name: "Micro",
  11525. height: math.unit(1.5, "inches")
  11526. },
  11527. {
  11528. name: "Normal",
  11529. height: math.unit(5 + 10 / 12, "feet"),
  11530. default: true
  11531. },
  11532. {
  11533. name: "Minimacro",
  11534. height: math.unit(17 + 9 / 12, "feet")
  11535. },
  11536. {
  11537. name: "Macro",
  11538. height: math.unit(177.5, "feet")
  11539. },
  11540. {
  11541. name: "Megamacro",
  11542. height: math.unit(152, "miles")
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(6.5, "inches"),
  11551. weight: math.unit(13, "oz"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/dafydd-tomos/front.svg",
  11555. extra: 2990 / 2603,
  11556. bottom: 0.03
  11557. }
  11558. },
  11559. },
  11560. [
  11561. {
  11562. name: "Micro",
  11563. height: math.unit(6.5, "inches"),
  11564. default: true
  11565. },
  11566. ]
  11567. ))
  11568. characterMakers.push(() => makeCharacter(
  11569. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11570. {
  11571. front: {
  11572. height: math.unit(6, "feet"),
  11573. weight: math.unit(150, "lb"),
  11574. name: "Front",
  11575. image: {
  11576. source: "./media/characters/splinter/front.svg",
  11577. extra: 2990 / 2882,
  11578. bottom: 0.04
  11579. }
  11580. },
  11581. back: {
  11582. height: math.unit(6, "feet"),
  11583. weight: math.unit(150, "lb"),
  11584. name: "Back",
  11585. image: {
  11586. source: "./media/characters/splinter/back.svg",
  11587. extra: 2990 / 2882,
  11588. bottom: 0.04
  11589. }
  11590. },
  11591. },
  11592. [
  11593. {
  11594. name: "Normal",
  11595. height: math.unit(6, "feet")
  11596. },
  11597. {
  11598. name: "Macro",
  11599. height: math.unit(230, "meters"),
  11600. default: true
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(4 + 10 / 12, "feet"),
  11609. weight: math.unit(480, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/snow-gabumon/front.svg",
  11613. extra: 1140 / 963,
  11614. bottom: 0.058
  11615. }
  11616. },
  11617. back: {
  11618. height: math.unit(4 + 10 / 12, "feet"),
  11619. weight: math.unit(480, "lb"),
  11620. name: "Back",
  11621. image: {
  11622. source: "./media/characters/snow-gabumon/back.svg",
  11623. extra: 1115 / 962,
  11624. bottom: 0.041
  11625. }
  11626. },
  11627. frontUndresed: {
  11628. height: math.unit(4 + 10 / 12, "feet"),
  11629. weight: math.unit(480, "lb"),
  11630. name: "Front (Undressed)",
  11631. image: {
  11632. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11633. extra: 1061 / 960,
  11634. bottom: 0.045
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Micro",
  11641. height: math.unit(1, "inch")
  11642. },
  11643. {
  11644. name: "Normal",
  11645. height: math.unit(4 + 10 / 12, "feet"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Macro",
  11650. height: math.unit(200, "feet")
  11651. },
  11652. {
  11653. name: "Megamacro",
  11654. height: math.unit(120, "miles")
  11655. },
  11656. {
  11657. name: "Gigamacro",
  11658. height: math.unit(9800, "miles")
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11664. {
  11665. front: {
  11666. height: math.unit(1.7, "meters"),
  11667. weight: math.unit(140, "lb"),
  11668. name: "Front",
  11669. image: {
  11670. source: "./media/characters/moody/front.svg",
  11671. extra: 3226 / 3007,
  11672. bottom: 0.087
  11673. }
  11674. },
  11675. },
  11676. [
  11677. {
  11678. name: "Micro",
  11679. height: math.unit(1, "mm")
  11680. },
  11681. {
  11682. name: "Normal",
  11683. height: math.unit(1.7, "meters"),
  11684. default: true
  11685. },
  11686. {
  11687. name: "Macro",
  11688. height: math.unit(80, "meters")
  11689. },
  11690. {
  11691. name: "Macro+",
  11692. height: math.unit(500, "meters")
  11693. },
  11694. ]
  11695. ))
  11696. characterMakers.push(() => makeCharacter(
  11697. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11698. {
  11699. front: {
  11700. height: math.unit(6, "feet"),
  11701. weight: math.unit(150, "lb"),
  11702. name: "Front",
  11703. image: {
  11704. source: "./media/characters/zyas/front.svg",
  11705. extra: 1180 / 1120,
  11706. bottom: 0.045
  11707. }
  11708. },
  11709. },
  11710. [
  11711. {
  11712. name: "Normal",
  11713. height: math.unit(10, "feet"),
  11714. default: true
  11715. },
  11716. {
  11717. name: "Macro",
  11718. height: math.unit(500, "feet")
  11719. },
  11720. {
  11721. name: "Megamacro",
  11722. height: math.unit(5, "miles")
  11723. },
  11724. {
  11725. name: "Teramacro",
  11726. height: math.unit(150000, "miles")
  11727. },
  11728. ]
  11729. ))
  11730. characterMakers.push(() => makeCharacter(
  11731. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11732. {
  11733. front: {
  11734. height: math.unit(6, "feet"),
  11735. weight: math.unit(150, "lb"),
  11736. name: "Front",
  11737. image: {
  11738. source: "./media/characters/cuon/front.svg",
  11739. extra: 1390 / 1320,
  11740. bottom: 0.008
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "Micro",
  11747. height: math.unit(3, "inches")
  11748. },
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(18 + 9 / 12, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Macro",
  11756. height: math.unit(360, "feet")
  11757. },
  11758. {
  11759. name: "Megamacro",
  11760. height: math.unit(360, "miles")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(2.4, "meters"),
  11769. weight: math.unit(70, "kg"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/nyanuxk/front.svg",
  11773. extra: 1172 / 1084,
  11774. bottom: 0.065
  11775. }
  11776. },
  11777. side: {
  11778. height: math.unit(2.4, "meters"),
  11779. weight: math.unit(70, "kg"),
  11780. name: "Side",
  11781. image: {
  11782. source: "./media/characters/nyanuxk/side.svg",
  11783. extra: 1190 / 1132,
  11784. bottom: 0.007
  11785. }
  11786. },
  11787. back: {
  11788. height: math.unit(2.4, "meters"),
  11789. weight: math.unit(70, "kg"),
  11790. name: "Back",
  11791. image: {
  11792. source: "./media/characters/nyanuxk/back.svg",
  11793. extra: 1200 / 1141,
  11794. bottom: 0.015
  11795. }
  11796. },
  11797. foot: {
  11798. height: math.unit(0.52, "meters"),
  11799. name: "Foot",
  11800. image: {
  11801. source: "./media/characters/nyanuxk/foot.svg"
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Micro",
  11808. height: math.unit(2, "cm")
  11809. },
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(2.4, "meters"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Smaller Macro",
  11817. height: math.unit(120, "meters")
  11818. },
  11819. {
  11820. name: "Bigger Macro",
  11821. height: math.unit(1.2, "km")
  11822. },
  11823. {
  11824. name: "Megamacro",
  11825. height: math.unit(15, "kilometers")
  11826. },
  11827. {
  11828. name: "Gigamacro",
  11829. height: math.unit(2000, "km")
  11830. },
  11831. {
  11832. name: "Teramacro",
  11833. height: math.unit(500000, "km")
  11834. },
  11835. ]
  11836. ))
  11837. characterMakers.push(() => makeCharacter(
  11838. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11839. {
  11840. side: {
  11841. height: math.unit(6, "feet"),
  11842. name: "Side",
  11843. image: {
  11844. source: "./media/characters/ailbhe/side.svg",
  11845. extra: 757 / 464,
  11846. bottom: 0.041
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(1.07, "meters"),
  11854. default: true
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(6, "feet"),
  11863. weight: math.unit(120, "kg"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/zevulfius/front.svg",
  11867. extra: 965 / 903
  11868. }
  11869. },
  11870. side: {
  11871. height: math.unit(6, "feet"),
  11872. weight: math.unit(120, "kg"),
  11873. name: "Side",
  11874. image: {
  11875. source: "./media/characters/zevulfius/side.svg",
  11876. extra: 939 / 900
  11877. }
  11878. },
  11879. back: {
  11880. height: math.unit(6, "feet"),
  11881. weight: math.unit(120, "kg"),
  11882. name: "Back",
  11883. image: {
  11884. source: "./media/characters/zevulfius/back.svg",
  11885. extra: 918 / 854,
  11886. bottom: 0.005
  11887. }
  11888. },
  11889. foot: {
  11890. height: math.unit(6 / 3.72, "feet"),
  11891. name: "Foot",
  11892. image: {
  11893. source: "./media/characters/zevulfius/foot.svg"
  11894. }
  11895. },
  11896. },
  11897. [
  11898. {
  11899. name: "Macro",
  11900. height: math.unit(750, "meters")
  11901. },
  11902. {
  11903. name: "Megamacro",
  11904. height: math.unit(20, "km"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Gigamacro",
  11909. height: math.unit(2000, "km")
  11910. },
  11911. {
  11912. name: "Teramacro",
  11913. height: math.unit(250000, "km")
  11914. },
  11915. ]
  11916. ))
  11917. characterMakers.push(() => makeCharacter(
  11918. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11919. {
  11920. front: {
  11921. height: math.unit(100, "feet"),
  11922. weight: math.unit(350, "kg"),
  11923. name: "Front",
  11924. image: {
  11925. source: "./media/characters/rikes/front.svg",
  11926. extra: 1565 / 1483,
  11927. bottom: 0.017
  11928. }
  11929. },
  11930. },
  11931. [
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(100, "feet"),
  11935. default: true
  11936. },
  11937. ]
  11938. ))
  11939. characterMakers.push(() => makeCharacter(
  11940. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11941. {
  11942. front: {
  11943. height: math.unit(8, "feet"),
  11944. weight: math.unit(356, "lb"),
  11945. name: "Front",
  11946. image: {
  11947. source: "./media/characters/adam-silver-mane/front.svg",
  11948. extra: 1036/937,
  11949. bottom: 63/1099
  11950. }
  11951. },
  11952. side: {
  11953. height: math.unit(8, "feet"),
  11954. weight: math.unit(356, "lb"),
  11955. name: "Side",
  11956. image: {
  11957. source: "./media/characters/adam-silver-mane/side.svg",
  11958. extra: 997/901,
  11959. bottom: 59/1056
  11960. }
  11961. },
  11962. frontNsfw: {
  11963. height: math.unit(8, "feet"),
  11964. weight: math.unit(356, "lb"),
  11965. name: "Front (NSFW)",
  11966. image: {
  11967. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11968. extra: 1036/937,
  11969. bottom: 63/1099
  11970. }
  11971. },
  11972. sideNsfw: {
  11973. height: math.unit(8, "feet"),
  11974. weight: math.unit(356, "lb"),
  11975. name: "Side (NSFW)",
  11976. image: {
  11977. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11978. extra: 997/901,
  11979. bottom: 59/1056
  11980. }
  11981. },
  11982. dick: {
  11983. height: math.unit(2.1, "feet"),
  11984. name: "Dick",
  11985. image: {
  11986. source: "./media/characters/adam-silver-mane/dick.svg"
  11987. }
  11988. },
  11989. taur: {
  11990. height: math.unit(16, "feet"),
  11991. weight: math.unit(1500, "kg"),
  11992. name: "Taur",
  11993. image: {
  11994. source: "./media/characters/adam-silver-mane/taur.svg",
  11995. extra: 1713 / 1571,
  11996. bottom: 0.01
  11997. }
  11998. },
  11999. },
  12000. [
  12001. {
  12002. name: "Normal",
  12003. height: math.unit(8, "feet")
  12004. },
  12005. {
  12006. name: "Minimacro",
  12007. height: math.unit(80, "feet")
  12008. },
  12009. {
  12010. name: "MDA",
  12011. height: math.unit(80, "meters")
  12012. },
  12013. {
  12014. name: "Macro",
  12015. height: math.unit(800, "feet"),
  12016. default: true
  12017. },
  12018. {
  12019. name: "Megamacro",
  12020. height: math.unit(8000, "feet")
  12021. },
  12022. {
  12023. name: "Gigamacro",
  12024. height: math.unit(800, "miles")
  12025. },
  12026. {
  12027. name: "Teramacro",
  12028. height: math.unit(80000, "miles")
  12029. },
  12030. {
  12031. name: "Celestial",
  12032. height: math.unit(8e6, "miles")
  12033. },
  12034. {
  12035. name: "Star Dragon",
  12036. height: math.unit(800000, "parsecs")
  12037. },
  12038. {
  12039. name: "Godly",
  12040. height: math.unit(800, "teraparsecs")
  12041. },
  12042. ]
  12043. ))
  12044. characterMakers.push(() => makeCharacter(
  12045. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12046. {
  12047. front: {
  12048. height: math.unit(6, "feet"),
  12049. weight: math.unit(150, "lb"),
  12050. name: "Front",
  12051. image: {
  12052. source: "./media/characters/ky'owin/front.svg",
  12053. extra: 3862/3053,
  12054. bottom: 74/3936
  12055. }
  12056. },
  12057. },
  12058. [
  12059. {
  12060. name: "Normal",
  12061. height: math.unit(6 + 8 / 12, "feet")
  12062. },
  12063. {
  12064. name: "Large",
  12065. height: math.unit(68, "feet")
  12066. },
  12067. {
  12068. name: "Macro",
  12069. height: math.unit(132, "feet")
  12070. },
  12071. {
  12072. name: "Macro+",
  12073. height: math.unit(340, "feet")
  12074. },
  12075. {
  12076. name: "Macro++",
  12077. height: math.unit(680, "feet"),
  12078. default: true
  12079. },
  12080. {
  12081. name: "Megamacro",
  12082. height: math.unit(1, "mile")
  12083. },
  12084. {
  12085. name: "Megamacro+",
  12086. height: math.unit(10, "miles")
  12087. },
  12088. ]
  12089. ))
  12090. characterMakers.push(() => makeCharacter(
  12091. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12092. {
  12093. front: {
  12094. height: math.unit(4, "feet"),
  12095. weight: math.unit(50, "lb"),
  12096. name: "Front",
  12097. image: {
  12098. source: "./media/characters/mal/front.svg",
  12099. extra: 785 / 724,
  12100. bottom: 0.07
  12101. }
  12102. },
  12103. },
  12104. [
  12105. {
  12106. name: "Micro",
  12107. height: math.unit(4, "inches")
  12108. },
  12109. {
  12110. name: "Normal",
  12111. height: math.unit(4, "feet"),
  12112. default: true
  12113. },
  12114. {
  12115. name: "Macro",
  12116. height: math.unit(200, "feet")
  12117. },
  12118. ]
  12119. ))
  12120. characterMakers.push(() => makeCharacter(
  12121. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12122. {
  12123. front: {
  12124. height: math.unit(6, "feet"),
  12125. weight: math.unit(150, "lb"),
  12126. name: "Front",
  12127. image: {
  12128. source: "./media/characters/jordan-deware/front.svg",
  12129. extra: 1191 / 1012
  12130. }
  12131. },
  12132. },
  12133. [
  12134. {
  12135. name: "Nano",
  12136. height: math.unit(0.01, "mm")
  12137. },
  12138. {
  12139. name: "Minimicro",
  12140. height: math.unit(1, "mm")
  12141. },
  12142. {
  12143. name: "Micro",
  12144. height: math.unit(0.5, "inches")
  12145. },
  12146. {
  12147. name: "Normal",
  12148. height: math.unit(4, "feet"),
  12149. default: true
  12150. },
  12151. {
  12152. name: "Minimacro",
  12153. height: math.unit(40, "meters")
  12154. },
  12155. {
  12156. name: "Small Macro",
  12157. height: math.unit(400, "meters")
  12158. },
  12159. {
  12160. name: "Macro",
  12161. height: math.unit(4, "miles")
  12162. },
  12163. {
  12164. name: "Megamacro",
  12165. height: math.unit(40, "miles")
  12166. },
  12167. {
  12168. name: "Megamacro+",
  12169. height: math.unit(400, "miles")
  12170. },
  12171. {
  12172. name: "Gigamacro",
  12173. height: math.unit(400000, "miles")
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12179. {
  12180. side: {
  12181. height: math.unit(6, "feet"),
  12182. weight: math.unit(150, "lb"),
  12183. name: "Side",
  12184. image: {
  12185. source: "./media/characters/kimiko/side.svg",
  12186. extra: 600 / 358
  12187. }
  12188. },
  12189. },
  12190. [
  12191. {
  12192. name: "Normal",
  12193. height: math.unit(15, "feet"),
  12194. default: true
  12195. },
  12196. {
  12197. name: "Macro",
  12198. height: math.unit(220, "feet")
  12199. },
  12200. {
  12201. name: "Macro+",
  12202. height: math.unit(1450, "feet")
  12203. },
  12204. {
  12205. name: "Megamacro",
  12206. height: math.unit(11500, "feet")
  12207. },
  12208. {
  12209. name: "Gigamacro",
  12210. height: math.unit(9500, "miles")
  12211. },
  12212. {
  12213. name: "Teramacro",
  12214. height: math.unit(2208005005, "miles")
  12215. },
  12216. {
  12217. name: "Examacro",
  12218. height: math.unit(2750, "parsecs")
  12219. },
  12220. {
  12221. name: "Zettamacro",
  12222. height: math.unit(101500, "parsecs")
  12223. },
  12224. ]
  12225. ))
  12226. characterMakers.push(() => makeCharacter(
  12227. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12228. {
  12229. front: {
  12230. height: math.unit(6, "feet"),
  12231. weight: math.unit(70, "kg"),
  12232. name: "Front",
  12233. image: {
  12234. source: "./media/characters/andrew-sleepy/front.svg"
  12235. }
  12236. },
  12237. side: {
  12238. height: math.unit(6, "feet"),
  12239. weight: math.unit(70, "kg"),
  12240. name: "Side",
  12241. image: {
  12242. source: "./media/characters/andrew-sleepy/side.svg"
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Micro",
  12249. height: math.unit(1, "mm"),
  12250. default: true
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12256. {
  12257. front: {
  12258. height: math.unit(6, "feet"),
  12259. weight: math.unit(150, "lb"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/judio/front.svg",
  12263. extra: 1258 / 1110
  12264. }
  12265. },
  12266. },
  12267. [
  12268. {
  12269. name: "Normal",
  12270. height: math.unit(5 + 6 / 12, "feet")
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(1000, "feet"),
  12275. default: true
  12276. },
  12277. {
  12278. name: "Megamacro",
  12279. height: math.unit(10, "miles")
  12280. },
  12281. ]
  12282. ))
  12283. characterMakers.push(() => makeCharacter(
  12284. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12285. {
  12286. frontDressed: {
  12287. height: math.unit(6, "feet"),
  12288. weight: math.unit(68, "kg"),
  12289. name: "Front (Dressed)",
  12290. image: {
  12291. source: "./media/characters/nomaxice/front-dressed.svg",
  12292. extra: 1137/824,
  12293. bottom: 74/1211
  12294. }
  12295. },
  12296. frontShorts: {
  12297. height: math.unit(6, "feet"),
  12298. weight: math.unit(68, "kg"),
  12299. name: "Front (Shorts)",
  12300. image: {
  12301. source: "./media/characters/nomaxice/front-shorts.svg",
  12302. extra: 1137/824,
  12303. bottom: 74/1211
  12304. }
  12305. },
  12306. back: {
  12307. height: math.unit(6, "feet"),
  12308. weight: math.unit(68, "kg"),
  12309. name: "Back",
  12310. image: {
  12311. source: "./media/characters/nomaxice/back.svg",
  12312. extra: 822/786,
  12313. bottom: 39/861
  12314. }
  12315. },
  12316. hand: {
  12317. height: math.unit(0.565, "feet"),
  12318. name: "Hand",
  12319. image: {
  12320. source: "./media/characters/nomaxice/hand.svg"
  12321. }
  12322. },
  12323. foot: {
  12324. height: math.unit(1, "feet"),
  12325. name: "Foot",
  12326. image: {
  12327. source: "./media/characters/nomaxice/foot.svg"
  12328. }
  12329. },
  12330. },
  12331. [
  12332. {
  12333. name: "Micro",
  12334. height: math.unit(8, "cm")
  12335. },
  12336. {
  12337. name: "Norm",
  12338. height: math.unit(1.82, "m")
  12339. },
  12340. {
  12341. name: "Norm+",
  12342. height: math.unit(8.8, "feet"),
  12343. default: true
  12344. },
  12345. {
  12346. name: "Big",
  12347. height: math.unit(8, "meters")
  12348. },
  12349. {
  12350. name: "Macro",
  12351. height: math.unit(18, "meters")
  12352. },
  12353. {
  12354. name: "Macro+",
  12355. height: math.unit(88, "meters")
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12361. {
  12362. front: {
  12363. height: math.unit(12, "feet"),
  12364. weight: math.unit(1.5, "tons"),
  12365. name: "Front",
  12366. image: {
  12367. source: "./media/characters/dydros/front.svg",
  12368. extra: 863 / 800,
  12369. bottom: 0.015
  12370. }
  12371. },
  12372. back: {
  12373. height: math.unit(12, "feet"),
  12374. weight: math.unit(1.5, "tons"),
  12375. name: "Back",
  12376. image: {
  12377. source: "./media/characters/dydros/back.svg",
  12378. extra: 900 / 843,
  12379. bottom: 0.005
  12380. }
  12381. },
  12382. },
  12383. [
  12384. {
  12385. name: "Normal",
  12386. height: math.unit(12, "feet"),
  12387. default: true
  12388. },
  12389. ]
  12390. ))
  12391. characterMakers.push(() => makeCharacter(
  12392. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12393. {
  12394. front: {
  12395. height: math.unit(6, "feet"),
  12396. weight: math.unit(100, "kg"),
  12397. name: "Front",
  12398. image: {
  12399. source: "./media/characters/riggi/front.svg",
  12400. extra: 5787 / 5303
  12401. }
  12402. },
  12403. hyper: {
  12404. height: math.unit(6 * 5 / 3, "feet"),
  12405. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12406. name: "Hyper",
  12407. image: {
  12408. source: "./media/characters/riggi/hyper.svg",
  12409. extra: 3595 / 3485
  12410. }
  12411. },
  12412. },
  12413. [
  12414. {
  12415. name: "Small Macro",
  12416. height: math.unit(50, "feet")
  12417. },
  12418. {
  12419. name: "Default",
  12420. height: math.unit(200, "feet"),
  12421. default: true
  12422. },
  12423. {
  12424. name: "Loom",
  12425. height: math.unit(10000, "feet")
  12426. },
  12427. {
  12428. name: "Cruising Altitude",
  12429. height: math.unit(30000, "feet")
  12430. },
  12431. {
  12432. name: "Megamacro",
  12433. height: math.unit(100, "miles")
  12434. },
  12435. {
  12436. name: "Continent Sized",
  12437. height: math.unit(2800, "miles")
  12438. },
  12439. {
  12440. name: "Earth Sized",
  12441. height: math.unit(8000, "miles")
  12442. },
  12443. ]
  12444. ))
  12445. characterMakers.push(() => makeCharacter(
  12446. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12447. {
  12448. front: {
  12449. height: math.unit(6, "feet"),
  12450. weight: math.unit(250, "lb"),
  12451. name: "Front",
  12452. image: {
  12453. source: "./media/characters/alexi/front.svg",
  12454. extra: 3483 / 3291,
  12455. bottom: 0.04
  12456. }
  12457. },
  12458. back: {
  12459. height: math.unit(6, "feet"),
  12460. weight: math.unit(250, "lb"),
  12461. name: "Back",
  12462. image: {
  12463. source: "./media/characters/alexi/back.svg",
  12464. extra: 3533 / 3356,
  12465. bottom: 0.021
  12466. }
  12467. },
  12468. frontTransforming: {
  12469. height: math.unit(8.58, "feet"),
  12470. weight: math.unit(1300, "lb"),
  12471. name: "Transforming",
  12472. image: {
  12473. source: "./media/characters/alexi/front-transforming.svg",
  12474. extra: 437 / 409,
  12475. bottom: 19 / 458.66
  12476. }
  12477. },
  12478. frontTransformed: {
  12479. height: math.unit(12.5, "feet"),
  12480. weight: math.unit(4000, "lb"),
  12481. name: "Transformed",
  12482. image: {
  12483. source: "./media/characters/alexi/front-transformed.svg",
  12484. extra: 639 / 614,
  12485. bottom: 30.55 / 671
  12486. }
  12487. },
  12488. },
  12489. [
  12490. {
  12491. name: "Normal",
  12492. height: math.unit(14, "feet"),
  12493. default: true
  12494. },
  12495. {
  12496. name: "Minimacro",
  12497. height: math.unit(30, "meters")
  12498. },
  12499. {
  12500. name: "Macro",
  12501. height: math.unit(500, "meters")
  12502. },
  12503. {
  12504. name: "Megamacro",
  12505. height: math.unit(9000, "km")
  12506. },
  12507. {
  12508. name: "Teramacro",
  12509. height: math.unit(384000, "km")
  12510. },
  12511. ]
  12512. ))
  12513. characterMakers.push(() => makeCharacter(
  12514. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12515. {
  12516. front: {
  12517. height: math.unit(6, "feet"),
  12518. weight: math.unit(150, "lb"),
  12519. name: "Front",
  12520. image: {
  12521. source: "./media/characters/kayroo/front.svg",
  12522. extra: 1153 / 1038,
  12523. bottom: 0.06
  12524. }
  12525. },
  12526. foot: {
  12527. height: math.unit(6, "feet"),
  12528. weight: math.unit(150, "lb"),
  12529. name: "Foot",
  12530. image: {
  12531. source: "./media/characters/kayroo/foot.svg"
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Normal",
  12538. height: math.unit(8, "feet"),
  12539. default: true
  12540. },
  12541. {
  12542. name: "Minimacro",
  12543. height: math.unit(250, "feet")
  12544. },
  12545. {
  12546. name: "Macro",
  12547. height: math.unit(2800, "feet")
  12548. },
  12549. {
  12550. name: "Megamacro",
  12551. height: math.unit(5200, "feet")
  12552. },
  12553. {
  12554. name: "Gigamacro",
  12555. height: math.unit(27000, "feet")
  12556. },
  12557. {
  12558. name: "Omega",
  12559. height: math.unit(45000, "feet")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12565. {
  12566. front: {
  12567. height: math.unit(18, "feet"),
  12568. weight: math.unit(5800, "lb"),
  12569. name: "Front",
  12570. image: {
  12571. source: "./media/characters/rhys/front.svg",
  12572. extra: 3386 / 3090,
  12573. bottom: 0.07
  12574. }
  12575. },
  12576. },
  12577. [
  12578. {
  12579. name: "Normal",
  12580. height: math.unit(18, "feet"),
  12581. default: true
  12582. },
  12583. {
  12584. name: "Working Size",
  12585. height: math.unit(200, "feet")
  12586. },
  12587. {
  12588. name: "Demolition Size",
  12589. height: math.unit(2000, "feet")
  12590. },
  12591. {
  12592. name: "Maximum Licensed Size",
  12593. height: math.unit(5, "miles")
  12594. },
  12595. {
  12596. name: "Maximum Observed Size",
  12597. height: math.unit(10, "yottameters")
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12603. {
  12604. front: {
  12605. height: math.unit(6, "feet"),
  12606. weight: math.unit(250, "lb"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/toto/front.svg",
  12610. extra: 527 / 479,
  12611. bottom: 0.05
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Micro",
  12618. height: math.unit(3, "feet")
  12619. },
  12620. {
  12621. name: "Normal",
  12622. height: math.unit(10, "feet")
  12623. },
  12624. {
  12625. name: "Macro",
  12626. height: math.unit(150, "feet"),
  12627. default: true
  12628. },
  12629. {
  12630. name: "Megamacro",
  12631. height: math.unit(1200, "feet")
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "King", species: ["lion"], tags: ["anthro"] },
  12637. {
  12638. back: {
  12639. height: math.unit(6, "feet"),
  12640. weight: math.unit(150, "lb"),
  12641. name: "Back",
  12642. image: {
  12643. source: "./media/characters/king/back.svg"
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Micro",
  12650. height: math.unit(2, "inches")
  12651. },
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(8, "feet")
  12655. },
  12656. {
  12657. name: "Macro",
  12658. height: math.unit(200, "feet"),
  12659. default: true
  12660. },
  12661. {
  12662. name: "Megamacro",
  12663. height: math.unit(50, "miles")
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12669. {
  12670. front: {
  12671. height: math.unit(11, "feet"),
  12672. weight: math.unit(1400, "lb"),
  12673. name: "Front",
  12674. image: {
  12675. source: "./media/characters/cordite/front.svg",
  12676. extra: 1919/1827,
  12677. bottom: 40/1959
  12678. }
  12679. },
  12680. side: {
  12681. height: math.unit(11, "feet"),
  12682. weight: math.unit(1400, "lb"),
  12683. name: "Side",
  12684. image: {
  12685. source: "./media/characters/cordite/side.svg",
  12686. extra: 1908/1793,
  12687. bottom: 38/1946
  12688. }
  12689. },
  12690. back: {
  12691. height: math.unit(11, "feet"),
  12692. weight: math.unit(1400, "lb"),
  12693. name: "Back",
  12694. image: {
  12695. source: "./media/characters/cordite/back.svg",
  12696. extra: 1938/1837,
  12697. bottom: 10/1948
  12698. }
  12699. },
  12700. feral: {
  12701. height: math.unit(2, "feet"),
  12702. weight: math.unit(90, "lb"),
  12703. name: "Feral",
  12704. image: {
  12705. source: "./media/characters/cordite/feral.svg",
  12706. extra: 1260 / 755,
  12707. bottom: 0.05
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Normal",
  12714. height: math.unit(11, "feet"),
  12715. default: true
  12716. },
  12717. ]
  12718. ))
  12719. characterMakers.push(() => makeCharacter(
  12720. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12721. {
  12722. front: {
  12723. height: math.unit(6, "feet"),
  12724. weight: math.unit(150, "lb"),
  12725. name: "Front",
  12726. image: {
  12727. source: "./media/characters/pianostrong/front.svg",
  12728. extra: 6577 / 6254,
  12729. bottom: 0.02
  12730. }
  12731. },
  12732. side: {
  12733. height: math.unit(6, "feet"),
  12734. weight: math.unit(150, "lb"),
  12735. name: "Side",
  12736. image: {
  12737. source: "./media/characters/pianostrong/side.svg",
  12738. extra: 6106 / 5730
  12739. }
  12740. },
  12741. back: {
  12742. height: math.unit(6, "feet"),
  12743. weight: math.unit(150, "lb"),
  12744. name: "Back",
  12745. image: {
  12746. source: "./media/characters/pianostrong/back.svg",
  12747. extra: 6085 / 5733,
  12748. bottom: 0.01
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Macro",
  12755. height: math.unit(100, "feet")
  12756. },
  12757. {
  12758. name: "Macro+",
  12759. height: math.unit(300, "feet"),
  12760. default: true
  12761. },
  12762. {
  12763. name: "Macro++",
  12764. height: math.unit(1000, "feet")
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12770. {
  12771. front: {
  12772. height: math.unit(6, "feet"),
  12773. weight: math.unit(150, "lb"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/kona/front.svg",
  12777. extra: 2960 / 2629,
  12778. bottom: 0.005
  12779. }
  12780. },
  12781. },
  12782. [
  12783. {
  12784. name: "Normal",
  12785. height: math.unit(11 + 8 / 12, "feet")
  12786. },
  12787. {
  12788. name: "Macro",
  12789. height: math.unit(850, "feet"),
  12790. default: true
  12791. },
  12792. {
  12793. name: "Macro+",
  12794. height: math.unit(1.5, "km"),
  12795. default: true
  12796. },
  12797. {
  12798. name: "Megamacro",
  12799. height: math.unit(80, "miles")
  12800. },
  12801. {
  12802. name: "Gigamacro",
  12803. height: math.unit(3500, "miles")
  12804. },
  12805. ]
  12806. ))
  12807. characterMakers.push(() => makeCharacter(
  12808. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12809. {
  12810. side: {
  12811. height: math.unit(1.9, "meters"),
  12812. weight: math.unit(326, "kg"),
  12813. name: "Side",
  12814. image: {
  12815. source: "./media/characters/levi/side.svg",
  12816. extra: 1704 / 1334,
  12817. bottom: 0.02
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Normal",
  12824. height: math.unit(1.9, "meters"),
  12825. default: true
  12826. },
  12827. {
  12828. name: "Macro",
  12829. height: math.unit(20, "meters")
  12830. },
  12831. {
  12832. name: "Macro+",
  12833. height: math.unit(200, "meters")
  12834. },
  12835. {
  12836. name: "Megamacro",
  12837. height: math.unit(2, "km")
  12838. },
  12839. {
  12840. name: "Megamacro+",
  12841. height: math.unit(20, "km")
  12842. },
  12843. {
  12844. name: "Gigamacro",
  12845. height: math.unit(2500, "km")
  12846. },
  12847. {
  12848. name: "Gigamacro+",
  12849. height: math.unit(120000, "km")
  12850. },
  12851. {
  12852. name: "Teramacro",
  12853. height: math.unit(7.77e6, "km")
  12854. },
  12855. ]
  12856. ))
  12857. characterMakers.push(() => makeCharacter(
  12858. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12859. {
  12860. front: {
  12861. height: math.unit(6 + 4/12, "feet"),
  12862. weight: math.unit(190, "lb"),
  12863. name: "Front",
  12864. image: {
  12865. source: "./media/characters/bmc/front.svg",
  12866. extra: 1626/1472,
  12867. bottom: 79/1705
  12868. }
  12869. },
  12870. back: {
  12871. height: math.unit(6 + 4/12, "feet"),
  12872. weight: math.unit(190, "lb"),
  12873. name: "Back",
  12874. image: {
  12875. source: "./media/characters/bmc/back.svg",
  12876. extra: 1640/1479,
  12877. bottom: 45/1685
  12878. }
  12879. },
  12880. frontArmor: {
  12881. height: math.unit(6 + 4/12, "feet"),
  12882. weight: math.unit(190, "lb"),
  12883. name: "Front-armor",
  12884. image: {
  12885. source: "./media/characters/bmc/front-armor.svg",
  12886. extra: 1538/1468,
  12887. bottom: 79/1617
  12888. }
  12889. },
  12890. },
  12891. [
  12892. {
  12893. name: "Human-sized",
  12894. height: math.unit(6 + 4 / 12, "feet")
  12895. },
  12896. {
  12897. name: "Interactive Size",
  12898. height: math.unit(25, "feet")
  12899. },
  12900. {
  12901. name: "Small",
  12902. height: math.unit(250, "feet")
  12903. },
  12904. {
  12905. name: "Normal",
  12906. height: math.unit(1250, "feet"),
  12907. default: true
  12908. },
  12909. {
  12910. name: "Good Day",
  12911. height: math.unit(88, "miles")
  12912. },
  12913. {
  12914. name: "Largest Measured Size",
  12915. height: math.unit(105.960, "galaxies")
  12916. },
  12917. ]
  12918. ))
  12919. characterMakers.push(() => makeCharacter(
  12920. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12921. {
  12922. front: {
  12923. height: math.unit(20, "feet"),
  12924. weight: math.unit(2016, "kg"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/sven-the-kaiju/front.svg",
  12928. extra: 1277/1250,
  12929. bottom: 35/1312
  12930. }
  12931. },
  12932. mouth: {
  12933. height: math.unit(1.85, "feet"),
  12934. name: "Mouth",
  12935. image: {
  12936. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12937. }
  12938. },
  12939. },
  12940. [
  12941. {
  12942. name: "Fairy",
  12943. height: math.unit(6, "inches")
  12944. },
  12945. {
  12946. name: "Normal",
  12947. height: math.unit(20, "feet"),
  12948. default: true
  12949. },
  12950. {
  12951. name: "Rampage",
  12952. height: math.unit(200, "feet")
  12953. },
  12954. {
  12955. name: "Archfey Forest Guardian",
  12956. height: math.unit(1, "mile")
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12962. {
  12963. front: {
  12964. height: math.unit(4, "meters"),
  12965. weight: math.unit(2, "tons"),
  12966. name: "Front",
  12967. image: {
  12968. source: "./media/characters/marik/front.svg",
  12969. extra: 1057 / 1003,
  12970. bottom: 0.08
  12971. }
  12972. },
  12973. },
  12974. [
  12975. {
  12976. name: "Normal",
  12977. height: math.unit(4, "meters"),
  12978. default: true
  12979. },
  12980. {
  12981. name: "Macro",
  12982. height: math.unit(20, "meters")
  12983. },
  12984. {
  12985. name: "Megamacro",
  12986. height: math.unit(50, "km")
  12987. },
  12988. {
  12989. name: "Gigamacro",
  12990. height: math.unit(100, "km")
  12991. },
  12992. {
  12993. name: "Alpha Macro",
  12994. height: math.unit(7.88e7, "yottameters")
  12995. },
  12996. ]
  12997. ))
  12998. characterMakers.push(() => makeCharacter(
  12999. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13000. {
  13001. front: {
  13002. height: math.unit(6, "feet"),
  13003. weight: math.unit(110, "lb"),
  13004. name: "Front",
  13005. image: {
  13006. source: "./media/characters/mel/front.svg",
  13007. extra: 736 / 617,
  13008. bottom: 0.017
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Pico",
  13015. height: math.unit(3, "pm")
  13016. },
  13017. {
  13018. name: "Nano",
  13019. height: math.unit(3, "nm")
  13020. },
  13021. {
  13022. name: "Micro",
  13023. height: math.unit(0.3, "mm"),
  13024. default: true
  13025. },
  13026. {
  13027. name: "Micro+",
  13028. height: math.unit(3, "mm")
  13029. },
  13030. {
  13031. name: "Normal",
  13032. height: math.unit(5 + 10.5 / 12, "feet")
  13033. },
  13034. ]
  13035. ))
  13036. characterMakers.push(() => makeCharacter(
  13037. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13038. {
  13039. kaiju: {
  13040. height: math.unit(1.75, "meters"),
  13041. weight: math.unit(55, "kg"),
  13042. name: "Kaiju",
  13043. image: {
  13044. source: "./media/characters/lykonous/kaiju.svg",
  13045. extra: 1055 / 946,
  13046. bottom: 0.135
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Normal",
  13053. height: math.unit(2.5, "meters"),
  13054. default: true
  13055. },
  13056. {
  13057. name: "Kaiju Dragon",
  13058. height: math.unit(60, "meters")
  13059. },
  13060. {
  13061. name: "Mega Kaiju",
  13062. height: math.unit(120, "km")
  13063. },
  13064. {
  13065. name: "Giga Kaiju",
  13066. height: math.unit(200, "megameters")
  13067. },
  13068. {
  13069. name: "Terra Kaiju",
  13070. height: math.unit(400, "gigameters")
  13071. },
  13072. {
  13073. name: "Kaiju Dragon God",
  13074. height: math.unit(13000, "exaparsecs")
  13075. },
  13076. ]
  13077. ))
  13078. characterMakers.push(() => makeCharacter(
  13079. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13080. {
  13081. front: {
  13082. height: math.unit(6, "feet"),
  13083. weight: math.unit(150, "lb"),
  13084. name: "Front",
  13085. image: {
  13086. source: "./media/characters/blü/front.svg",
  13087. extra: 1883 / 1564,
  13088. bottom: 0.031
  13089. }
  13090. },
  13091. },
  13092. [
  13093. {
  13094. name: "Normal",
  13095. height: math.unit(13, "feet"),
  13096. default: true
  13097. },
  13098. {
  13099. name: "Big Boi",
  13100. height: math.unit(150, "meters")
  13101. },
  13102. {
  13103. name: "Mini Stomper",
  13104. height: math.unit(300, "meters")
  13105. },
  13106. {
  13107. name: "Macro",
  13108. height: math.unit(1000, "meters")
  13109. },
  13110. {
  13111. name: "Megamacro",
  13112. height: math.unit(11000, "meters")
  13113. },
  13114. {
  13115. name: "Gigamacro",
  13116. height: math.unit(11000, "km")
  13117. },
  13118. {
  13119. name: "Teramacro",
  13120. height: math.unit(420000, "km")
  13121. },
  13122. {
  13123. name: "Examacro",
  13124. height: math.unit(120, "parsecs")
  13125. },
  13126. {
  13127. name: "God Tho",
  13128. height: math.unit(98000000000, "parsecs")
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13134. {
  13135. taurFront: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(200, "lb"),
  13138. name: "Taur (Front)",
  13139. image: {
  13140. source: "./media/characters/scales/taur-front.svg",
  13141. extra: 1,
  13142. bottom: 0.05
  13143. }
  13144. },
  13145. taurBack: {
  13146. height: math.unit(6, "feet"),
  13147. weight: math.unit(200, "lb"),
  13148. name: "Taur (Back)",
  13149. image: {
  13150. source: "./media/characters/scales/taur-back.svg",
  13151. extra: 1,
  13152. bottom: 0.08
  13153. }
  13154. },
  13155. anthro: {
  13156. height: math.unit(6 * 7 / 12, "feet"),
  13157. weight: math.unit(100, "lb"),
  13158. name: "Anthro",
  13159. image: {
  13160. source: "./media/characters/scales/anthro.svg",
  13161. extra: 1,
  13162. bottom: 0.06
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Normal",
  13169. height: math.unit(12, "feet"),
  13170. default: true
  13171. },
  13172. ]
  13173. ))
  13174. characterMakers.push(() => makeCharacter(
  13175. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13176. {
  13177. front: {
  13178. height: math.unit(6, "feet"),
  13179. weight: math.unit(150, "lb"),
  13180. name: "Front",
  13181. image: {
  13182. source: "./media/characters/koragos/front.svg",
  13183. extra: 841 / 794,
  13184. bottom: 0.035
  13185. }
  13186. },
  13187. back: {
  13188. height: math.unit(6, "feet"),
  13189. weight: math.unit(150, "lb"),
  13190. name: "Back",
  13191. image: {
  13192. source: "./media/characters/koragos/back.svg",
  13193. extra: 841 / 810,
  13194. bottom: 0.022
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(6 + 11 / 12, "feet"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Macro",
  13206. height: math.unit(490, "feet")
  13207. },
  13208. {
  13209. name: "Megamacro",
  13210. height: math.unit(10, "miles")
  13211. },
  13212. {
  13213. name: "Gigamacro",
  13214. height: math.unit(50, "miles")
  13215. },
  13216. ]
  13217. ))
  13218. characterMakers.push(() => makeCharacter(
  13219. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13220. {
  13221. front: {
  13222. height: math.unit(6, "feet"),
  13223. weight: math.unit(250, "lb"),
  13224. name: "Front",
  13225. image: {
  13226. source: "./media/characters/xylrem/front.svg",
  13227. extra: 3323 / 3050,
  13228. bottom: 0.065
  13229. }
  13230. },
  13231. },
  13232. [
  13233. {
  13234. name: "Micro",
  13235. height: math.unit(4, "feet")
  13236. },
  13237. {
  13238. name: "Normal",
  13239. height: math.unit(16, "feet"),
  13240. default: true
  13241. },
  13242. {
  13243. name: "Macro",
  13244. height: math.unit(2720, "feet")
  13245. },
  13246. {
  13247. name: "Megamacro",
  13248. height: math.unit(25000, "miles")
  13249. },
  13250. ]
  13251. ))
  13252. characterMakers.push(() => makeCharacter(
  13253. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13254. {
  13255. front: {
  13256. height: math.unit(8, "feet"),
  13257. weight: math.unit(250, "kg"),
  13258. name: "Front",
  13259. image: {
  13260. source: "./media/characters/ikideru/front.svg",
  13261. extra: 930 / 870,
  13262. bottom: 0.087
  13263. }
  13264. },
  13265. back: {
  13266. height: math.unit(8, "feet"),
  13267. weight: math.unit(250, "kg"),
  13268. name: "Back",
  13269. image: {
  13270. source: "./media/characters/ikideru/back.svg",
  13271. extra: 919 / 852,
  13272. bottom: 0.055
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Rare",
  13279. height: math.unit(8, "feet"),
  13280. default: true
  13281. },
  13282. {
  13283. name: "Playful Loom",
  13284. height: math.unit(80, "feet")
  13285. },
  13286. {
  13287. name: "City Leaner",
  13288. height: math.unit(230, "feet")
  13289. },
  13290. {
  13291. name: "Megamacro",
  13292. height: math.unit(2500, "feet")
  13293. },
  13294. {
  13295. name: "Gigamacro",
  13296. height: math.unit(26400, "feet")
  13297. },
  13298. {
  13299. name: "Tectonic Shifter",
  13300. height: math.unit(1.7, "megameters")
  13301. },
  13302. {
  13303. name: "Planet Carer",
  13304. height: math.unit(21, "megameters")
  13305. },
  13306. {
  13307. name: "God",
  13308. height: math.unit(11157.22, "parsecs")
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13314. {
  13315. front: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(120, "lb"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/neo/front.svg"
  13321. }
  13322. },
  13323. },
  13324. [
  13325. {
  13326. name: "Micro",
  13327. height: math.unit(2, "inches"),
  13328. default: true
  13329. },
  13330. {
  13331. name: "Human Size",
  13332. height: math.unit(5 + 8 / 12, "feet")
  13333. },
  13334. ]
  13335. ))
  13336. characterMakers.push(() => makeCharacter(
  13337. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13338. {
  13339. front: {
  13340. height: math.unit(13 + 10 / 12, "feet"),
  13341. weight: math.unit(5320, "lb"),
  13342. name: "Front",
  13343. image: {
  13344. source: "./media/characters/chauncey-chantz/front.svg",
  13345. extra: 1587 / 1435,
  13346. bottom: 0.02
  13347. }
  13348. },
  13349. },
  13350. [
  13351. {
  13352. name: "Normal",
  13353. height: math.unit(13 + 10 / 12, "feet"),
  13354. default: true
  13355. },
  13356. {
  13357. name: "Macro",
  13358. height: math.unit(45, "feet")
  13359. },
  13360. {
  13361. name: "Megamacro",
  13362. height: math.unit(250, "miles")
  13363. },
  13364. {
  13365. name: "Planetary",
  13366. height: math.unit(10000, "miles")
  13367. },
  13368. {
  13369. name: "Galactic",
  13370. height: math.unit(40000, "parsecs")
  13371. },
  13372. {
  13373. name: "Universal",
  13374. height: math.unit(1, "yottameter")
  13375. },
  13376. ]
  13377. ))
  13378. characterMakers.push(() => makeCharacter(
  13379. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13380. {
  13381. front: {
  13382. height: math.unit(6, "feet"),
  13383. weight: math.unit(150, "lb"),
  13384. name: "Front",
  13385. image: {
  13386. source: "./media/characters/epifox/front.svg",
  13387. extra: 1,
  13388. bottom: 0.075
  13389. }
  13390. },
  13391. },
  13392. [
  13393. {
  13394. name: "Micro",
  13395. height: math.unit(6, "inches")
  13396. },
  13397. {
  13398. name: "Normal",
  13399. height: math.unit(12, "feet"),
  13400. default: true
  13401. },
  13402. {
  13403. name: "Macro",
  13404. height: math.unit(3810, "feet")
  13405. },
  13406. {
  13407. name: "Megamacro",
  13408. height: math.unit(500, "miles")
  13409. },
  13410. ]
  13411. ))
  13412. characterMakers.push(() => makeCharacter(
  13413. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13414. {
  13415. front: {
  13416. height: math.unit(1.8796, "m"),
  13417. weight: math.unit(230, "lb"),
  13418. name: "Front",
  13419. image: {
  13420. source: "./media/characters/colin-t/front.svg",
  13421. extra: 1272 / 1193,
  13422. bottom: 0.07
  13423. }
  13424. },
  13425. },
  13426. [
  13427. {
  13428. name: "Micro",
  13429. height: math.unit(0.571, "meters")
  13430. },
  13431. {
  13432. name: "Normal",
  13433. height: math.unit(1.8796, "meters"),
  13434. default: true
  13435. },
  13436. {
  13437. name: "Tall",
  13438. height: math.unit(4, "meters")
  13439. },
  13440. {
  13441. name: "Macro",
  13442. height: math.unit(67.241, "meters")
  13443. },
  13444. {
  13445. name: "Megamacro",
  13446. height: math.unit(371.856, "meters")
  13447. },
  13448. {
  13449. name: "Planetary",
  13450. height: math.unit(12631.5689, "km")
  13451. },
  13452. ]
  13453. ))
  13454. characterMakers.push(() => makeCharacter(
  13455. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13456. {
  13457. front: {
  13458. height: math.unit(1.85, "meters"),
  13459. weight: math.unit(80, "kg"),
  13460. name: "Front",
  13461. image: {
  13462. source: "./media/characters/matvei/front.svg",
  13463. extra: 456/447,
  13464. bottom: 8/464
  13465. }
  13466. },
  13467. back: {
  13468. height: math.unit(1.85, "meters"),
  13469. weight: math.unit(80, "kg"),
  13470. name: "Back",
  13471. image: {
  13472. source: "./media/characters/matvei/back.svg",
  13473. extra: 434/427,
  13474. bottom: 11/445
  13475. }
  13476. },
  13477. },
  13478. [
  13479. {
  13480. name: "Normal",
  13481. height: math.unit(1.85, "meters"),
  13482. default: true
  13483. },
  13484. ]
  13485. ))
  13486. characterMakers.push(() => makeCharacter(
  13487. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13488. {
  13489. front: {
  13490. height: math.unit(5 + 9 / 12, "feet"),
  13491. weight: math.unit(70, "lb"),
  13492. name: "Front",
  13493. image: {
  13494. source: "./media/characters/quincy/front.svg",
  13495. extra: 3041 / 2751
  13496. }
  13497. },
  13498. back: {
  13499. height: math.unit(5 + 9 / 12, "feet"),
  13500. weight: math.unit(70, "lb"),
  13501. name: "Back",
  13502. image: {
  13503. source: "./media/characters/quincy/back.svg",
  13504. extra: 3041 / 2751
  13505. }
  13506. },
  13507. flying: {
  13508. height: math.unit(5 + 4 / 12, "feet"),
  13509. weight: math.unit(70, "lb"),
  13510. name: "Flying",
  13511. image: {
  13512. source: "./media/characters/quincy/flying.svg",
  13513. extra: 1044 / 930
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Micro",
  13520. height: math.unit(3, "cm")
  13521. },
  13522. {
  13523. name: "Normal",
  13524. height: math.unit(5 + 9 / 12, "feet")
  13525. },
  13526. {
  13527. name: "Macro",
  13528. height: math.unit(200, "meters"),
  13529. default: true
  13530. },
  13531. {
  13532. name: "Megamacro",
  13533. height: math.unit(1000, "meters")
  13534. },
  13535. ]
  13536. ))
  13537. characterMakers.push(() => makeCharacter(
  13538. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13539. {
  13540. front: {
  13541. height: math.unit(3 + 11/12, "feet"),
  13542. weight: math.unit(50, "lb"),
  13543. name: "Front",
  13544. image: {
  13545. source: "./media/characters/vanrel/front.svg",
  13546. extra: 1104/949,
  13547. bottom: 52/1156
  13548. }
  13549. },
  13550. back: {
  13551. height: math.unit(3 + 11/12, "feet"),
  13552. weight: math.unit(50, "lb"),
  13553. name: "Back",
  13554. image: {
  13555. source: "./media/characters/vanrel/back.svg",
  13556. extra: 1119/976,
  13557. bottom: 37/1156
  13558. }
  13559. },
  13560. tome: {
  13561. height: math.unit(1.35, "feet"),
  13562. weight: math.unit(10, "lb"),
  13563. name: "Vanrel's Tome",
  13564. rename: true,
  13565. image: {
  13566. source: "./media/characters/vanrel/tome.svg"
  13567. }
  13568. },
  13569. beans: {
  13570. height: math.unit(0.89, "feet"),
  13571. name: "Beans",
  13572. image: {
  13573. source: "./media/characters/vanrel/beans.svg"
  13574. }
  13575. },
  13576. },
  13577. [
  13578. {
  13579. name: "Normal",
  13580. height: math.unit(3 + 11/12, "feet"),
  13581. default: true
  13582. },
  13583. ]
  13584. ))
  13585. characterMakers.push(() => makeCharacter(
  13586. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13587. {
  13588. front: {
  13589. height: math.unit(7 + 5 / 12, "feet"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/kuiper-vanrel/front.svg",
  13593. extra: 1219/1169,
  13594. bottom: 69/1288
  13595. }
  13596. },
  13597. back: {
  13598. height: math.unit(7 + 5 / 12, "feet"),
  13599. name: "Back",
  13600. image: {
  13601. source: "./media/characters/kuiper-vanrel/back.svg",
  13602. extra: 1236/1193,
  13603. bottom: 27/1263
  13604. }
  13605. },
  13606. foot: {
  13607. height: math.unit(0.55, "meters"),
  13608. name: "Foot",
  13609. image: {
  13610. source: "./media/characters/kuiper-vanrel/foot.svg",
  13611. }
  13612. },
  13613. battle: {
  13614. height: math.unit(6.824, "feet"),
  13615. name: "Battle",
  13616. image: {
  13617. source: "./media/characters/kuiper-vanrel/battle.svg",
  13618. extra: 1466 / 1327,
  13619. bottom: 29 / 1492.5
  13620. }
  13621. },
  13622. meerkui: {
  13623. height: math.unit(18, "inches"),
  13624. name: "Meerkui",
  13625. image: {
  13626. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13627. extra: 1354/1289,
  13628. bottom: 69/1423
  13629. }
  13630. },
  13631. },
  13632. [
  13633. {
  13634. name: "Normal",
  13635. height: math.unit(7 + 5 / 12, "feet"),
  13636. default: true
  13637. },
  13638. ]
  13639. ))
  13640. characterMakers.push(() => makeCharacter(
  13641. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13642. {
  13643. front: {
  13644. height: math.unit(8 + 5 / 12, "feet"),
  13645. name: "Front",
  13646. image: {
  13647. source: "./media/characters/keset-vanrel/front.svg",
  13648. extra: 1231/1148,
  13649. bottom: 82/1313
  13650. }
  13651. },
  13652. back: {
  13653. height: math.unit(8 + 5 / 12, "feet"),
  13654. name: "Back",
  13655. image: {
  13656. source: "./media/characters/keset-vanrel/back.svg",
  13657. extra: 1240/1174,
  13658. bottom: 33/1273
  13659. }
  13660. },
  13661. hand: {
  13662. height: math.unit(0.6, "meters"),
  13663. name: "Hand",
  13664. image: {
  13665. source: "./media/characters/keset-vanrel/hand.svg"
  13666. }
  13667. },
  13668. foot: {
  13669. height: math.unit(0.94978, "meters"),
  13670. name: "Foot",
  13671. image: {
  13672. source: "./media/characters/keset-vanrel/foot.svg"
  13673. }
  13674. },
  13675. battle: {
  13676. height: math.unit(7.408, "feet"),
  13677. name: "Battle",
  13678. image: {
  13679. source: "./media/characters/keset-vanrel/battle.svg",
  13680. extra: 1890 / 1386,
  13681. bottom: 73.28 / 1970
  13682. }
  13683. },
  13684. },
  13685. [
  13686. {
  13687. name: "Normal",
  13688. height: math.unit(8 + 5 / 12, "feet"),
  13689. default: true
  13690. },
  13691. ]
  13692. ))
  13693. characterMakers.push(() => makeCharacter(
  13694. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13695. {
  13696. front: {
  13697. height: math.unit(6, "feet"),
  13698. weight: math.unit(150, "lb"),
  13699. name: "Front",
  13700. image: {
  13701. source: "./media/characters/neos/front.svg",
  13702. extra: 1696 / 992,
  13703. bottom: 0.14
  13704. }
  13705. },
  13706. },
  13707. [
  13708. {
  13709. name: "Normal",
  13710. height: math.unit(54, "cm"),
  13711. default: true
  13712. },
  13713. {
  13714. name: "Macro",
  13715. height: math.unit(100, "m")
  13716. },
  13717. {
  13718. name: "Megamacro",
  13719. height: math.unit(10, "km")
  13720. },
  13721. {
  13722. name: "Megamacro+",
  13723. height: math.unit(100, "km")
  13724. },
  13725. {
  13726. name: "Gigamacro",
  13727. height: math.unit(100, "Mm")
  13728. },
  13729. {
  13730. name: "Teramacro",
  13731. height: math.unit(100, "Gm")
  13732. },
  13733. {
  13734. name: "Examacro",
  13735. height: math.unit(100, "Em")
  13736. },
  13737. {
  13738. name: "Godly",
  13739. height: math.unit(10000, "Ym")
  13740. },
  13741. {
  13742. name: "Beyond Godly",
  13743. height: math.unit(25, "multiverses")
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13749. {
  13750. feminine: {
  13751. height: math.unit(5, "feet"),
  13752. weight: math.unit(100, "lb"),
  13753. name: "Feminine",
  13754. image: {
  13755. source: "./media/characters/sammy-mouse/feminine.svg",
  13756. extra: 2526 / 2425,
  13757. bottom: 0.123
  13758. }
  13759. },
  13760. masculine: {
  13761. height: math.unit(5, "feet"),
  13762. weight: math.unit(100, "lb"),
  13763. name: "Masculine",
  13764. image: {
  13765. source: "./media/characters/sammy-mouse/masculine.svg",
  13766. extra: 2526 / 2425,
  13767. bottom: 0.123
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "Micro",
  13774. height: math.unit(5, "inches")
  13775. },
  13776. {
  13777. name: "Normal",
  13778. height: math.unit(5, "feet"),
  13779. default: true
  13780. },
  13781. {
  13782. name: "Macro",
  13783. height: math.unit(60, "feet")
  13784. },
  13785. ]
  13786. ))
  13787. characterMakers.push(() => makeCharacter(
  13788. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13789. {
  13790. front: {
  13791. height: math.unit(4, "feet"),
  13792. weight: math.unit(50, "lb"),
  13793. name: "Front",
  13794. image: {
  13795. source: "./media/characters/kole/front.svg",
  13796. extra: 1423 / 1303,
  13797. bottom: 0.025
  13798. }
  13799. },
  13800. back: {
  13801. height: math.unit(4, "feet"),
  13802. weight: math.unit(50, "lb"),
  13803. name: "Back",
  13804. image: {
  13805. source: "./media/characters/kole/back.svg",
  13806. extra: 1426 / 1280,
  13807. bottom: 0.02
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Normal",
  13814. height: math.unit(4, "feet"),
  13815. default: true
  13816. },
  13817. ]
  13818. ))
  13819. characterMakers.push(() => makeCharacter(
  13820. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13821. {
  13822. front: {
  13823. height: math.unit(2.5, "feet"),
  13824. weight: math.unit(32, "lb"),
  13825. name: "Front",
  13826. image: {
  13827. source: "./media/characters/rufran/front.svg",
  13828. extra: 1313/885,
  13829. bottom: 94/1407
  13830. }
  13831. },
  13832. side: {
  13833. height: math.unit(2.5, "feet"),
  13834. weight: math.unit(32, "lb"),
  13835. name: "Side",
  13836. image: {
  13837. source: "./media/characters/rufran/side.svg",
  13838. extra: 1109/852,
  13839. bottom: 118/1227
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(2.5, "feet"),
  13844. weight: math.unit(32, "lb"),
  13845. name: "Back",
  13846. image: {
  13847. source: "./media/characters/rufran/back.svg",
  13848. extra: 1280/878,
  13849. bottom: 131/1411
  13850. }
  13851. },
  13852. mouth: {
  13853. height: math.unit(1.13, "feet"),
  13854. name: "Mouth",
  13855. image: {
  13856. source: "./media/characters/rufran/mouth.svg"
  13857. }
  13858. },
  13859. foot: {
  13860. height: math.unit(1.33, "feet"),
  13861. name: "Foot",
  13862. image: {
  13863. source: "./media/characters/rufran/foot.svg"
  13864. }
  13865. },
  13866. koboldFront: {
  13867. height: math.unit(2 + 6 / 12, "feet"),
  13868. weight: math.unit(20, "lb"),
  13869. name: "Front (Kobold)",
  13870. image: {
  13871. source: "./media/characters/rufran/kobold-front.svg",
  13872. extra: 2041 / 1839,
  13873. bottom: 0.055
  13874. }
  13875. },
  13876. koboldBack: {
  13877. height: math.unit(2 + 6 / 12, "feet"),
  13878. weight: math.unit(20, "lb"),
  13879. name: "Back (Kobold)",
  13880. image: {
  13881. source: "./media/characters/rufran/kobold-back.svg",
  13882. extra: 2054 / 1839,
  13883. bottom: 0.01
  13884. }
  13885. },
  13886. koboldHand: {
  13887. height: math.unit(0.2166, "meters"),
  13888. name: "Hand (Kobold)",
  13889. image: {
  13890. source: "./media/characters/rufran/kobold-hand.svg"
  13891. }
  13892. },
  13893. koboldFoot: {
  13894. height: math.unit(0.185, "meters"),
  13895. name: "Foot (Kobold)",
  13896. image: {
  13897. source: "./media/characters/rufran/kobold-foot.svg"
  13898. }
  13899. },
  13900. },
  13901. [
  13902. {
  13903. name: "Micro",
  13904. height: math.unit(1, "inch")
  13905. },
  13906. {
  13907. name: "Normal",
  13908. height: math.unit(2 + 6 / 12, "feet"),
  13909. default: true
  13910. },
  13911. {
  13912. name: "Big",
  13913. height: math.unit(60, "feet")
  13914. },
  13915. {
  13916. name: "Macro",
  13917. height: math.unit(325, "feet")
  13918. },
  13919. ]
  13920. ))
  13921. characterMakers.push(() => makeCharacter(
  13922. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13923. {
  13924. front: {
  13925. height: math.unit(0.3, "meters"),
  13926. weight: math.unit(3.5, "kg"),
  13927. name: "Front",
  13928. image: {
  13929. source: "./media/characters/chip/front.svg",
  13930. extra: 748 / 674
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Micro",
  13937. height: math.unit(1, "inch"),
  13938. default: true
  13939. },
  13940. ]
  13941. ))
  13942. characterMakers.push(() => makeCharacter(
  13943. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13944. {
  13945. side: {
  13946. height: math.unit(2.3, "meters"),
  13947. weight: math.unit(3500, "lb"),
  13948. name: "Side",
  13949. image: {
  13950. source: "./media/characters/torvid/side.svg",
  13951. extra: 1972 / 722,
  13952. bottom: 0.035
  13953. }
  13954. },
  13955. },
  13956. [
  13957. {
  13958. name: "Normal",
  13959. height: math.unit(2.3, "meters"),
  13960. default: true
  13961. },
  13962. ]
  13963. ))
  13964. characterMakers.push(() => makeCharacter(
  13965. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13966. {
  13967. front: {
  13968. height: math.unit(2, "meters"),
  13969. weight: math.unit(150.5, "kg"),
  13970. name: "Front",
  13971. image: {
  13972. source: "./media/characters/susan/front.svg",
  13973. extra: 693 / 635,
  13974. bottom: 0.05
  13975. }
  13976. },
  13977. },
  13978. [
  13979. {
  13980. name: "Megamacro",
  13981. height: math.unit(505, "miles"),
  13982. default: true
  13983. },
  13984. ]
  13985. ))
  13986. characterMakers.push(() => makeCharacter(
  13987. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13988. {
  13989. front: {
  13990. height: math.unit(6, "feet"),
  13991. weight: math.unit(150, "lb"),
  13992. name: "Front",
  13993. image: {
  13994. source: "./media/characters/raindrops/front.svg",
  13995. extra: 2655 / 2461,
  13996. bottom: 49 / 2705
  13997. }
  13998. },
  13999. back: {
  14000. height: math.unit(6, "feet"),
  14001. weight: math.unit(150, "lb"),
  14002. name: "Back",
  14003. image: {
  14004. source: "./media/characters/raindrops/back.svg",
  14005. extra: 2574 / 2400,
  14006. bottom: 65 / 2634
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Micro",
  14013. height: math.unit(6, "inches")
  14014. },
  14015. {
  14016. name: "Normal",
  14017. height: math.unit(6 + 2 / 12, "feet")
  14018. },
  14019. {
  14020. name: "Macro",
  14021. height: math.unit(131, "feet"),
  14022. default: true
  14023. },
  14024. {
  14025. name: "Megamacro",
  14026. height: math.unit(15, "miles")
  14027. },
  14028. {
  14029. name: "Gigamacro",
  14030. height: math.unit(4000, "miles")
  14031. },
  14032. {
  14033. name: "Teramacro",
  14034. height: math.unit(315000, "miles")
  14035. },
  14036. ]
  14037. ))
  14038. characterMakers.push(() => makeCharacter(
  14039. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14040. {
  14041. front: {
  14042. height: math.unit(2.794, "meters"),
  14043. weight: math.unit(325, "kg"),
  14044. name: "Front",
  14045. image: {
  14046. source: "./media/characters/tezwa/front.svg",
  14047. extra: 2083 / 1906,
  14048. bottom: 0.031
  14049. }
  14050. },
  14051. foot: {
  14052. height: math.unit(0.687, "meters"),
  14053. name: "Foot",
  14054. image: {
  14055. source: "./media/characters/tezwa/foot.svg"
  14056. }
  14057. },
  14058. },
  14059. [
  14060. {
  14061. name: "Normal",
  14062. height: math.unit(9 + 2 / 12, "feet"),
  14063. default: true
  14064. },
  14065. ]
  14066. ))
  14067. characterMakers.push(() => makeCharacter(
  14068. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14069. {
  14070. front: {
  14071. height: math.unit(58, "feet"),
  14072. weight: math.unit(89000, "lb"),
  14073. name: "Front",
  14074. image: {
  14075. source: "./media/characters/typhus/front.svg",
  14076. extra: 816 / 800,
  14077. bottom: 0.065
  14078. }
  14079. },
  14080. },
  14081. [
  14082. {
  14083. name: "Macro",
  14084. height: math.unit(58, "feet"),
  14085. default: true
  14086. },
  14087. ]
  14088. ))
  14089. characterMakers.push(() => makeCharacter(
  14090. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14091. {
  14092. front: {
  14093. height: math.unit(12, "feet"),
  14094. weight: math.unit(6, "tonnes"),
  14095. name: "Front",
  14096. image: {
  14097. source: "./media/characters/lyra-von-wulf/front.svg",
  14098. extra: 1,
  14099. bottom: 0.10
  14100. }
  14101. },
  14102. frontMecha: {
  14103. height: math.unit(12, "feet"),
  14104. weight: math.unit(12, "tonnes"),
  14105. name: "Front (Mecha)",
  14106. image: {
  14107. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14108. extra: 1,
  14109. bottom: 0.042
  14110. }
  14111. },
  14112. maw: {
  14113. height: math.unit(2.2, "feet"),
  14114. name: "Maw",
  14115. image: {
  14116. source: "./media/characters/lyra-von-wulf/maw.svg"
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(12, "feet"),
  14124. default: true
  14125. },
  14126. {
  14127. name: "Classic",
  14128. height: math.unit(50, "feet")
  14129. },
  14130. {
  14131. name: "Macro",
  14132. height: math.unit(500, "feet")
  14133. },
  14134. {
  14135. name: "Megamacro",
  14136. height: math.unit(1, "mile")
  14137. },
  14138. {
  14139. name: "Gigamacro",
  14140. height: math.unit(400, "miles")
  14141. },
  14142. {
  14143. name: "Teramacro",
  14144. height: math.unit(22000, "miles")
  14145. },
  14146. {
  14147. name: "Solarmacro",
  14148. height: math.unit(8600000, "miles")
  14149. },
  14150. {
  14151. name: "Galactic",
  14152. height: math.unit(1057000, "lightyears")
  14153. },
  14154. ]
  14155. ))
  14156. characterMakers.push(() => makeCharacter(
  14157. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14158. {
  14159. front: {
  14160. height: math.unit(6 + 10 / 12, "feet"),
  14161. weight: math.unit(150, "lb"),
  14162. name: "Front",
  14163. image: {
  14164. source: "./media/characters/dixon/front.svg",
  14165. extra: 3361 / 3209,
  14166. bottom: 0.01
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Normal",
  14173. height: math.unit(6 + 10 / 12, "feet"),
  14174. default: true
  14175. },
  14176. {
  14177. name: "Big",
  14178. height: math.unit(12, "meters")
  14179. },
  14180. {
  14181. name: "Macro",
  14182. height: math.unit(500, "meters")
  14183. },
  14184. {
  14185. name: "Megamacro",
  14186. height: math.unit(2, "km")
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(185, "cm"),
  14195. weight: math.unit(68, "kg"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/kauko/front.svg",
  14199. extra: 1455 / 1421,
  14200. bottom: 0.03
  14201. }
  14202. },
  14203. back: {
  14204. height: math.unit(185, "cm"),
  14205. weight: math.unit(68, "kg"),
  14206. name: "Back",
  14207. image: {
  14208. source: "./media/characters/kauko/back.svg",
  14209. extra: 1455 / 1421,
  14210. bottom: 0.004
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Normal",
  14217. height: math.unit(185, "cm"),
  14218. default: true
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14224. {
  14225. frontSfw: {
  14226. height: math.unit(5, "meters"),
  14227. weight: math.unit(4250, "lb"),
  14228. name: "Front",
  14229. image: {
  14230. source: "./media/characters/varg/front-sfw.svg",
  14231. extra: 1103/1010,
  14232. bottom: 50/1153
  14233. },
  14234. form: "anthro",
  14235. default: true
  14236. },
  14237. backSfw: {
  14238. height: math.unit(5, "meters"),
  14239. weight: math.unit(4250, "lb"),
  14240. name: "Back",
  14241. image: {
  14242. source: "./media/characters/varg/back-sfw.svg",
  14243. extra: 1038/1022,
  14244. bottom: 36/1074
  14245. },
  14246. form: "anthro"
  14247. },
  14248. frontNsfw: {
  14249. height: math.unit(5, "meters"),
  14250. weight: math.unit(4250, "lb"),
  14251. name: "Front (NSFW)",
  14252. image: {
  14253. source: "./media/characters/varg/front-nsfw.svg",
  14254. extra: 1103/1010,
  14255. bottom: 50/1153
  14256. },
  14257. form: "anthro"
  14258. },
  14259. sheath: {
  14260. height: math.unit(3.8, "feet"),
  14261. weight: math.unit(90, "kilograms"),
  14262. name: "Sheath",
  14263. image: {
  14264. source: "./media/characters/varg/sheath.svg"
  14265. },
  14266. form: "anthro"
  14267. },
  14268. dick: {
  14269. height: math.unit(4.6, "feet"),
  14270. weight: math.unit(451, "kilograms"),
  14271. name: "Dick",
  14272. image: {
  14273. source: "./media/characters/varg/dick.svg"
  14274. },
  14275. form: "anthro"
  14276. },
  14277. feralSfw: {
  14278. height: math.unit(5, "meters"),
  14279. weight: math.unit(100000, "lb"),
  14280. name: "Side",
  14281. image: {
  14282. source: "./media/characters/varg/feral-sfw.svg",
  14283. extra: 1065/511,
  14284. bottom: 211/1276
  14285. },
  14286. form: "feral",
  14287. default: true
  14288. },
  14289. feralNsfw: {
  14290. height: math.unit(5, "meters"),
  14291. weight: math.unit(100000, "lb"),
  14292. name: "Side (NSFW)",
  14293. image: {
  14294. source: "./media/characters/varg/feral-nsfw.svg",
  14295. extra: 1065/511,
  14296. bottom: 211/1276
  14297. },
  14298. form: "feral",
  14299. },
  14300. feralSheath: {
  14301. height: math.unit(9.8, "feet"),
  14302. weight: math.unit(2000, "kilograms"),
  14303. name: "Sheath",
  14304. image: {
  14305. source: "./media/characters/varg/sheath.svg"
  14306. },
  14307. form: "feral"
  14308. },
  14309. feralDick: {
  14310. height: math.unit(13.11, "feet"),
  14311. weight: math.unit(10440, "kilograms"),
  14312. name: "Dick",
  14313. image: {
  14314. source: "./media/characters/varg/dick.svg"
  14315. },
  14316. form: "feral"
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Normal",
  14322. height: math.unit(5, "meters"),
  14323. form: "anthro"
  14324. },
  14325. {
  14326. name: "Macro",
  14327. height: math.unit(200, "meters"),
  14328. form: "anthro"
  14329. },
  14330. {
  14331. name: "Megamacro",
  14332. height: math.unit(20, "kilometers"),
  14333. form: "anthro"
  14334. },
  14335. {
  14336. name: "True Size",
  14337. height: math.unit(211, "km"),
  14338. form: "anthro",
  14339. default: true
  14340. },
  14341. {
  14342. name: "Gigamacro",
  14343. height: math.unit(1000, "km"),
  14344. form: "anthro"
  14345. },
  14346. {
  14347. name: "Gigamacro+",
  14348. height: math.unit(8000, "km"),
  14349. form: "anthro"
  14350. },
  14351. {
  14352. name: "Teramacro",
  14353. height: math.unit(1000000, "km"),
  14354. form: "anthro"
  14355. },
  14356. {
  14357. name: "Normal",
  14358. height: math.unit(5, "meters"),
  14359. form: "feral"
  14360. },
  14361. {
  14362. name: "Macro",
  14363. height: math.unit(200, "meters"),
  14364. form: "feral"
  14365. },
  14366. {
  14367. name: "Megamacro",
  14368. height: math.unit(20, "kilometers"),
  14369. form: "feral"
  14370. },
  14371. {
  14372. name: "True Size",
  14373. height: math.unit(211, "km"),
  14374. form: "feral",
  14375. default: true
  14376. },
  14377. {
  14378. name: "Gigamacro",
  14379. height: math.unit(1000, "km"),
  14380. form: "feral"
  14381. },
  14382. {
  14383. name: "Gigamacro+",
  14384. height: math.unit(8000, "km"),
  14385. form: "feral"
  14386. },
  14387. {
  14388. name: "Teramacro",
  14389. height: math.unit(1000000, "km"),
  14390. form: "feral"
  14391. },
  14392. ],
  14393. {
  14394. "anthro": {
  14395. name: "Anthro",
  14396. default: true
  14397. },
  14398. "feral": {
  14399. name: "Feral",
  14400. },
  14401. }
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14405. {
  14406. front: {
  14407. height: math.unit(7 + 7 / 12, "feet"),
  14408. weight: math.unit(267, "lb"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/dayza/front.svg",
  14412. extra: 1262 / 1200,
  14413. bottom: 0.035
  14414. }
  14415. },
  14416. side: {
  14417. height: math.unit(7 + 7 / 12, "feet"),
  14418. weight: math.unit(267, "lb"),
  14419. name: "Side",
  14420. image: {
  14421. source: "./media/characters/dayza/side.svg",
  14422. extra: 1295 / 1245,
  14423. bottom: 0.05
  14424. }
  14425. },
  14426. back: {
  14427. height: math.unit(7 + 7 / 12, "feet"),
  14428. weight: math.unit(267, "lb"),
  14429. name: "Back",
  14430. image: {
  14431. source: "./media/characters/dayza/back.svg",
  14432. extra: 1241 / 1170
  14433. }
  14434. },
  14435. },
  14436. [
  14437. {
  14438. name: "Normal",
  14439. height: math.unit(7 + 7 / 12, "feet"),
  14440. default: true
  14441. },
  14442. {
  14443. name: "Macro",
  14444. height: math.unit(155, "feet")
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14450. {
  14451. front: {
  14452. height: math.unit(6 + 5 / 12, "feet"),
  14453. weight: math.unit(160, "lb"),
  14454. name: "Front",
  14455. image: {
  14456. source: "./media/characters/xanthos/front.svg",
  14457. extra: 1,
  14458. bottom: 0.04
  14459. }
  14460. },
  14461. back: {
  14462. height: math.unit(6 + 5 / 12, "feet"),
  14463. weight: math.unit(160, "lb"),
  14464. name: "Back",
  14465. image: {
  14466. source: "./media/characters/xanthos/back.svg",
  14467. extra: 1,
  14468. bottom: 0.03
  14469. }
  14470. },
  14471. hand: {
  14472. height: math.unit(0.928, "feet"),
  14473. name: "Hand",
  14474. image: {
  14475. source: "./media/characters/xanthos/hand.svg"
  14476. }
  14477. },
  14478. foot: {
  14479. height: math.unit(1.286, "feet"),
  14480. name: "Foot",
  14481. image: {
  14482. source: "./media/characters/xanthos/foot.svg"
  14483. }
  14484. },
  14485. },
  14486. [
  14487. {
  14488. name: "Normal",
  14489. height: math.unit(6 + 5 / 12, "feet"),
  14490. default: true
  14491. },
  14492. {
  14493. name: "Normal+",
  14494. height: math.unit(6, "meters")
  14495. },
  14496. {
  14497. name: "Macro",
  14498. height: math.unit(40, "feet")
  14499. },
  14500. {
  14501. name: "Macro+",
  14502. height: math.unit(200, "meters")
  14503. },
  14504. {
  14505. name: "Megamacro",
  14506. height: math.unit(20, "km")
  14507. },
  14508. {
  14509. name: "Megamacro+",
  14510. height: math.unit(100, "km")
  14511. },
  14512. {
  14513. name: "Gigamacro",
  14514. height: math.unit(200, "megameters")
  14515. },
  14516. {
  14517. name: "Gigamacro+",
  14518. height: math.unit(1.5, "gigameters")
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(6 + 3 / 12, "feet"),
  14527. weight: math.unit(215, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/grynn/front.svg",
  14531. extra: 4627 / 4209,
  14532. bottom: 0.047
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Micro",
  14539. height: math.unit(6, "inches")
  14540. },
  14541. {
  14542. name: "Normal",
  14543. height: math.unit(6 + 3 / 12, "feet"),
  14544. default: true
  14545. },
  14546. {
  14547. name: "Big",
  14548. height: math.unit(104, "feet")
  14549. },
  14550. {
  14551. name: "Macro",
  14552. height: math.unit(944, "feet")
  14553. },
  14554. {
  14555. name: "Macro+",
  14556. height: math.unit(9480, "feet")
  14557. },
  14558. {
  14559. name: "Megamacro",
  14560. height: math.unit(78752, "feet")
  14561. },
  14562. {
  14563. name: "Megamacro+",
  14564. height: math.unit(630128, "feet")
  14565. },
  14566. {
  14567. name: "Megamacro++",
  14568. height: math.unit(3150695, "feet")
  14569. },
  14570. ]
  14571. ))
  14572. characterMakers.push(() => makeCharacter(
  14573. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14574. {
  14575. front: {
  14576. height: math.unit(7 + 5 / 12, "feet"),
  14577. weight: math.unit(450, "lb"),
  14578. name: "Front",
  14579. image: {
  14580. source: "./media/characters/mocha-aura/front.svg",
  14581. extra: 1907 / 1817,
  14582. bottom: 0.04
  14583. }
  14584. },
  14585. back: {
  14586. height: math.unit(7 + 5 / 12, "feet"),
  14587. weight: math.unit(450, "lb"),
  14588. name: "Back",
  14589. image: {
  14590. source: "./media/characters/mocha-aura/back.svg",
  14591. extra: 1900 / 1825,
  14592. bottom: 0.045
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Nano",
  14599. height: math.unit(1, "nm")
  14600. },
  14601. {
  14602. name: "Megamicro",
  14603. height: math.unit(1, "mm")
  14604. },
  14605. {
  14606. name: "Micro",
  14607. height: math.unit(3, "inches")
  14608. },
  14609. {
  14610. name: "Normal",
  14611. height: math.unit(7 + 5 / 12, "feet"),
  14612. default: true
  14613. },
  14614. {
  14615. name: "Macro",
  14616. height: math.unit(30, "feet")
  14617. },
  14618. {
  14619. name: "Megamacro",
  14620. height: math.unit(3500, "feet")
  14621. },
  14622. {
  14623. name: "Teramacro",
  14624. height: math.unit(500000, "miles")
  14625. },
  14626. {
  14627. name: "Petamacro",
  14628. height: math.unit(50000000000000000, "parsecs")
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(6, "feet"),
  14637. weight: math.unit(150, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/ilisha-devya/front.svg",
  14641. extra: 1053/1049,
  14642. bottom: 270/1323
  14643. }
  14644. },
  14645. back: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(150, "lb"),
  14648. name: "Back",
  14649. image: {
  14650. source: "./media/characters/ilisha-devya/back.svg",
  14651. extra: 1131/1128,
  14652. bottom: 39/1170
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Macro",
  14659. height: math.unit(500, "feet"),
  14660. default: true
  14661. },
  14662. {
  14663. name: "Megamacro",
  14664. height: math.unit(10, "miles")
  14665. },
  14666. {
  14667. name: "Gigamacro",
  14668. height: math.unit(100000, "miles")
  14669. },
  14670. {
  14671. name: "Examacro",
  14672. height: math.unit(1e9, "lightyears")
  14673. },
  14674. {
  14675. name: "Omniversal",
  14676. height: math.unit(1e33, "lightyears")
  14677. },
  14678. {
  14679. name: "Beyond Infinite",
  14680. height: math.unit(1e100, "lightyears")
  14681. },
  14682. ]
  14683. ))
  14684. characterMakers.push(() => makeCharacter(
  14685. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14686. {
  14687. Side: {
  14688. height: math.unit(6, "feet"),
  14689. weight: math.unit(150, "lb"),
  14690. name: "Side",
  14691. image: {
  14692. source: "./media/characters/mira/side.svg",
  14693. extra: 900 / 799,
  14694. bottom: 0.02
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Human Size",
  14701. height: math.unit(6, "feet")
  14702. },
  14703. {
  14704. name: "Macro",
  14705. height: math.unit(100, "feet"),
  14706. default: true
  14707. },
  14708. {
  14709. name: "Megamacro",
  14710. height: math.unit(10, "miles")
  14711. },
  14712. {
  14713. name: "Gigamacro",
  14714. height: math.unit(25000, "miles")
  14715. },
  14716. {
  14717. name: "Teramacro",
  14718. height: math.unit(300, "AU")
  14719. },
  14720. {
  14721. name: "Full Size",
  14722. height: math.unit(4.5e10, "lightyears")
  14723. },
  14724. ]
  14725. ))
  14726. characterMakers.push(() => makeCharacter(
  14727. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14728. {
  14729. front: {
  14730. height: math.unit(6, "feet"),
  14731. weight: math.unit(150, "lb"),
  14732. name: "Front",
  14733. image: {
  14734. source: "./media/characters/holly/front.svg",
  14735. extra: 639 / 606
  14736. }
  14737. },
  14738. back: {
  14739. height: math.unit(6, "feet"),
  14740. weight: math.unit(150, "lb"),
  14741. name: "Back",
  14742. image: {
  14743. source: "./media/characters/holly/back.svg",
  14744. extra: 623 / 598
  14745. }
  14746. },
  14747. frontWorking: {
  14748. height: math.unit(6, "feet"),
  14749. weight: math.unit(150, "lb"),
  14750. name: "Front (Working)",
  14751. image: {
  14752. source: "./media/characters/holly/front-working.svg",
  14753. extra: 607 / 577,
  14754. bottom: 0.048
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(12 + 3 / 12, "feet"),
  14762. default: true
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(6, "feet"),
  14771. weight: math.unit(150, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/porter/front.svg",
  14775. extra: 1,
  14776. bottom: 0.01
  14777. }
  14778. },
  14779. frontRobes: {
  14780. height: math.unit(6, "feet"),
  14781. weight: math.unit(150, "lb"),
  14782. name: "Front (Robes)",
  14783. image: {
  14784. source: "./media/characters/porter/front-robes.svg",
  14785. extra: 1.01,
  14786. bottom: 0.01
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(11 + 9 / 12, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14800. {
  14801. legendary: {
  14802. height: math.unit(6, "feet"),
  14803. weight: math.unit(150, "lb"),
  14804. name: "Legendary",
  14805. image: {
  14806. source: "./media/characters/lucy/legendary.svg",
  14807. extra: 1355 / 1100,
  14808. bottom: 0.045
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Legendary",
  14815. height: math.unit(86882 * 2, "miles"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(6, "feet"),
  14825. weight: math.unit(150, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/drusilla/front.svg",
  14829. extra: 678 / 635,
  14830. bottom: 0.03
  14831. }
  14832. },
  14833. back: {
  14834. height: math.unit(6, "feet"),
  14835. weight: math.unit(150, "lb"),
  14836. name: "Back",
  14837. image: {
  14838. source: "./media/characters/drusilla/back.svg",
  14839. extra: 678 / 635,
  14840. bottom: 0.005
  14841. }
  14842. },
  14843. },
  14844. [
  14845. {
  14846. name: "Macro",
  14847. height: math.unit(100, "feet")
  14848. },
  14849. {
  14850. name: "Canon Height",
  14851. height: math.unit(2000, "feet"),
  14852. default: true
  14853. },
  14854. ]
  14855. ))
  14856. characterMakers.push(() => makeCharacter(
  14857. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14858. {
  14859. front: {
  14860. height: math.unit(6, "feet"),
  14861. weight: math.unit(180, "lb"),
  14862. name: "Front",
  14863. image: {
  14864. source: "./media/characters/renard-thatch/front.svg",
  14865. extra: 2411 / 2275,
  14866. bottom: 0.01
  14867. }
  14868. },
  14869. frontPosing: {
  14870. height: math.unit(6, "feet"),
  14871. weight: math.unit(180, "lb"),
  14872. name: "Front (Posing)",
  14873. image: {
  14874. source: "./media/characters/renard-thatch/front-posing.svg",
  14875. extra: 2381 / 2261,
  14876. bottom: 0.01
  14877. }
  14878. },
  14879. back: {
  14880. height: math.unit(6, "feet"),
  14881. weight: math.unit(180, "lb"),
  14882. name: "Back",
  14883. image: {
  14884. source: "./media/characters/renard-thatch/back.svg",
  14885. extra: 2428 / 2288
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Micro",
  14892. height: math.unit(3, "inches")
  14893. },
  14894. {
  14895. name: "Default",
  14896. height: math.unit(6, "feet"),
  14897. default: true
  14898. },
  14899. {
  14900. name: "Macro",
  14901. height: math.unit(75, "feet")
  14902. },
  14903. ]
  14904. ))
  14905. characterMakers.push(() => makeCharacter(
  14906. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14907. {
  14908. front: {
  14909. height: math.unit(1450, "feet"),
  14910. weight: math.unit(1.21e6, "tons"),
  14911. name: "Front",
  14912. image: {
  14913. source: "./media/characters/sekvra/front.svg",
  14914. extra: 1193/1190,
  14915. bottom: 78/1271
  14916. }
  14917. },
  14918. side: {
  14919. height: math.unit(1450, "feet"),
  14920. weight: math.unit(1.21e6, "tons"),
  14921. name: "Side",
  14922. image: {
  14923. source: "./media/characters/sekvra/side.svg",
  14924. extra: 1193/1190,
  14925. bottom: 52/1245
  14926. }
  14927. },
  14928. back: {
  14929. height: math.unit(1450, "feet"),
  14930. weight: math.unit(1.21e6, "tons"),
  14931. name: "Back",
  14932. image: {
  14933. source: "./media/characters/sekvra/back.svg",
  14934. extra: 1219/1216,
  14935. bottom: 21/1240
  14936. }
  14937. },
  14938. frontClothed: {
  14939. height: math.unit(1450, "feet"),
  14940. weight: math.unit(1.21e6, "tons"),
  14941. name: "Front (Clothed)",
  14942. image: {
  14943. source: "./media/characters/sekvra/front-clothed.svg",
  14944. extra: 1192/1189,
  14945. bottom: 79/1271
  14946. }
  14947. },
  14948. },
  14949. [
  14950. {
  14951. name: "Macro",
  14952. height: math.unit(1450, "feet"),
  14953. default: true
  14954. },
  14955. {
  14956. name: "Megamacro",
  14957. height: math.unit(15000, "feet")
  14958. },
  14959. ]
  14960. ))
  14961. characterMakers.push(() => makeCharacter(
  14962. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14963. {
  14964. front: {
  14965. height: math.unit(6, "feet"),
  14966. weight: math.unit(150, "lb"),
  14967. name: "Front",
  14968. image: {
  14969. source: "./media/characters/carmine/front.svg",
  14970. extra: 1557/1538,
  14971. bottom: 68/1625
  14972. }
  14973. },
  14974. frontArmor: {
  14975. height: math.unit(6, "feet"),
  14976. weight: math.unit(150, "lb"),
  14977. name: "Front (Armor)",
  14978. image: {
  14979. source: "./media/characters/carmine/front-armor.svg",
  14980. extra: 1549/1530,
  14981. bottom: 82/1631
  14982. }
  14983. },
  14984. mouth: {
  14985. height: math.unit(0.55, "feet"),
  14986. name: "Mouth",
  14987. image: {
  14988. source: "./media/characters/carmine/mouth.svg"
  14989. }
  14990. },
  14991. hand: {
  14992. height: math.unit(1.05, "feet"),
  14993. name: "Hand",
  14994. image: {
  14995. source: "./media/characters/carmine/hand.svg"
  14996. }
  14997. },
  14998. foot: {
  14999. height: math.unit(0.6, "feet"),
  15000. name: "Foot",
  15001. image: {
  15002. source: "./media/characters/carmine/foot.svg"
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Large",
  15009. height: math.unit(1, "mile")
  15010. },
  15011. {
  15012. name: "Huge",
  15013. height: math.unit(40, "miles"),
  15014. default: true
  15015. },
  15016. {
  15017. name: "Colossal",
  15018. height: math.unit(2500, "miles")
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(150, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/elyssia/front.svg",
  15031. extra: 2201 / 2035,
  15032. bottom: 0.05
  15033. }
  15034. },
  15035. frontClothed: {
  15036. height: math.unit(6, "feet"),
  15037. weight: math.unit(150, "lb"),
  15038. name: "Front (Clothed)",
  15039. image: {
  15040. source: "./media/characters/elyssia/front-clothed.svg",
  15041. extra: 2201 / 2035,
  15042. bottom: 0.05
  15043. }
  15044. },
  15045. back: {
  15046. height: math.unit(6, "feet"),
  15047. weight: math.unit(150, "lb"),
  15048. name: "Back",
  15049. image: {
  15050. source: "./media/characters/elyssia/back.svg",
  15051. extra: 2201 / 2035,
  15052. bottom: 0.013
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Smaller",
  15059. height: math.unit(150, "feet")
  15060. },
  15061. {
  15062. name: "Standard",
  15063. height: math.unit(1400, "feet"),
  15064. default: true
  15065. },
  15066. {
  15067. name: "Distracted",
  15068. height: math.unit(15000, "feet")
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15074. {
  15075. front: {
  15076. height: math.unit(7 + 4/12, "feet"),
  15077. weight: math.unit(690, "lb"),
  15078. name: "Front",
  15079. image: {
  15080. source: "./media/characters/geno-maxwell/front.svg",
  15081. extra: 984/856,
  15082. bottom: 87/1071
  15083. }
  15084. },
  15085. back: {
  15086. height: math.unit(7 + 4/12, "feet"),
  15087. weight: math.unit(690, "lb"),
  15088. name: "Back",
  15089. image: {
  15090. source: "./media/characters/geno-maxwell/back.svg",
  15091. extra: 981/854,
  15092. bottom: 57/1038
  15093. }
  15094. },
  15095. frontCostume: {
  15096. height: math.unit(7 + 4/12, "feet"),
  15097. weight: math.unit(690, "lb"),
  15098. name: "Front (Costume)",
  15099. image: {
  15100. source: "./media/characters/geno-maxwell/front-costume.svg",
  15101. extra: 984/856,
  15102. bottom: 87/1071
  15103. }
  15104. },
  15105. backcostume: {
  15106. height: math.unit(7 + 4/12, "feet"),
  15107. weight: math.unit(690, "lb"),
  15108. name: "Back (Costume)",
  15109. image: {
  15110. source: "./media/characters/geno-maxwell/back-costume.svg",
  15111. extra: 981/854,
  15112. bottom: 57/1038
  15113. }
  15114. },
  15115. },
  15116. [
  15117. {
  15118. name: "Micro",
  15119. height: math.unit(3, "inches")
  15120. },
  15121. {
  15122. name: "Normal",
  15123. height: math.unit(7 + 4 / 12, "feet"),
  15124. default: true
  15125. },
  15126. {
  15127. name: "Macro",
  15128. height: math.unit(220, "feet")
  15129. },
  15130. {
  15131. name: "Megamacro",
  15132. height: math.unit(11, "miles")
  15133. },
  15134. ]
  15135. ))
  15136. characterMakers.push(() => makeCharacter(
  15137. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15138. {
  15139. front: {
  15140. height: math.unit(7 + 4/12, "feet"),
  15141. weight: math.unit(750, "lb"),
  15142. name: "Front",
  15143. image: {
  15144. source: "./media/characters/regena-maxwell/front.svg",
  15145. extra: 984/856,
  15146. bottom: 87/1071
  15147. }
  15148. },
  15149. back: {
  15150. height: math.unit(7 + 4/12, "feet"),
  15151. weight: math.unit(750, "lb"),
  15152. name: "Back",
  15153. image: {
  15154. source: "./media/characters/regena-maxwell/back.svg",
  15155. extra: 981/854,
  15156. bottom: 57/1038
  15157. }
  15158. },
  15159. frontCostume: {
  15160. height: math.unit(7 + 4/12, "feet"),
  15161. weight: math.unit(750, "lb"),
  15162. name: "Front (Costume)",
  15163. image: {
  15164. source: "./media/characters/regena-maxwell/front-costume.svg",
  15165. extra: 984/856,
  15166. bottom: 87/1071
  15167. }
  15168. },
  15169. backcostume: {
  15170. height: math.unit(7 + 4/12, "feet"),
  15171. weight: math.unit(750, "lb"),
  15172. name: "Back (Costume)",
  15173. image: {
  15174. source: "./media/characters/regena-maxwell/back-costume.svg",
  15175. extra: 981/854,
  15176. bottom: 57/1038
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(7 + 4 / 12, "feet"),
  15184. default: true
  15185. },
  15186. {
  15187. name: "Macro",
  15188. height: math.unit(220, "feet")
  15189. },
  15190. {
  15191. name: "Megamacro",
  15192. height: math.unit(11, "miles")
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15198. {
  15199. front: {
  15200. height: math.unit(6, "feet"),
  15201. weight: math.unit(150, "lb"),
  15202. name: "Front",
  15203. image: {
  15204. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15205. extra: 860 / 690,
  15206. bottom: 0.03
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(1.7, "meters"),
  15214. default: true
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15220. {
  15221. front: {
  15222. height: math.unit(6, "feet"),
  15223. weight: math.unit(150, "lb"),
  15224. name: "Front",
  15225. image: {
  15226. source: "./media/characters/quilly/front.svg",
  15227. extra: 890 / 776
  15228. }
  15229. },
  15230. },
  15231. [
  15232. {
  15233. name: "Gigamacro",
  15234. height: math.unit(404090, "miles"),
  15235. default: true
  15236. },
  15237. ]
  15238. ))
  15239. characterMakers.push(() => makeCharacter(
  15240. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15241. {
  15242. front: {
  15243. height: math.unit(7 + 8 / 12, "feet"),
  15244. weight: math.unit(350, "lb"),
  15245. name: "Front",
  15246. image: {
  15247. source: "./media/characters/tempest/front.svg",
  15248. extra: 1175 / 1086,
  15249. bottom: 0.02
  15250. }
  15251. },
  15252. },
  15253. [
  15254. {
  15255. name: "Normal",
  15256. height: math.unit(7 + 8 / 12, "feet"),
  15257. default: true
  15258. },
  15259. ]
  15260. ))
  15261. characterMakers.push(() => makeCharacter(
  15262. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15263. {
  15264. side: {
  15265. height: math.unit(4 + 5 / 12, "feet"),
  15266. weight: math.unit(80, "lb"),
  15267. name: "Side",
  15268. image: {
  15269. source: "./media/characters/rodger/side.svg",
  15270. extra: 1235 / 1118
  15271. }
  15272. },
  15273. },
  15274. [
  15275. {
  15276. name: "Micro",
  15277. height: math.unit(1, "inch")
  15278. },
  15279. {
  15280. name: "Normal",
  15281. height: math.unit(4 + 5 / 12, "feet"),
  15282. default: true
  15283. },
  15284. {
  15285. name: "Macro",
  15286. height: math.unit(120, "feet")
  15287. },
  15288. ]
  15289. ))
  15290. characterMakers.push(() => makeCharacter(
  15291. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15292. {
  15293. front: {
  15294. height: math.unit(6, "feet"),
  15295. weight: math.unit(150, "lb"),
  15296. name: "Front",
  15297. image: {
  15298. source: "./media/characters/danyel/front.svg",
  15299. extra: 1185 / 1123,
  15300. bottom: 0.05
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Shrunken",
  15307. height: math.unit(0.5, "mm")
  15308. },
  15309. {
  15310. name: "Micro",
  15311. height: math.unit(1, "mm"),
  15312. default: true
  15313. },
  15314. {
  15315. name: "Upsized",
  15316. height: math.unit(5 + 5 / 12, "feet")
  15317. },
  15318. ]
  15319. ))
  15320. characterMakers.push(() => makeCharacter(
  15321. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15322. {
  15323. front: {
  15324. height: math.unit(5 + 6 / 12, "feet"),
  15325. weight: math.unit(200, "lb"),
  15326. name: "Front",
  15327. image: {
  15328. source: "./media/characters/vivian-bijoux/front.svg",
  15329. extra: 1217/1209,
  15330. bottom: 76/1293
  15331. }
  15332. },
  15333. back: {
  15334. height: math.unit(5 + 6 / 12, "feet"),
  15335. weight: math.unit(200, "lb"),
  15336. name: "Back",
  15337. image: {
  15338. source: "./media/characters/vivian-bijoux/back.svg",
  15339. extra: 1214/1208,
  15340. bottom: 51/1265
  15341. }
  15342. },
  15343. dressed: {
  15344. height: math.unit(5 + 6 / 12, "feet"),
  15345. weight: math.unit(200, "lb"),
  15346. name: "Dressed",
  15347. image: {
  15348. source: "./media/characters/vivian-bijoux/dressed.svg",
  15349. extra: 1217/1209,
  15350. bottom: 76/1293
  15351. }
  15352. },
  15353. },
  15354. [
  15355. {
  15356. name: "Normal",
  15357. height: math.unit(5 + 6 / 12, "feet"),
  15358. default: true
  15359. },
  15360. {
  15361. name: "Bad Dream",
  15362. height: math.unit(500, "feet")
  15363. },
  15364. {
  15365. name: "Nightmare",
  15366. height: math.unit(500, "miles")
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15372. {
  15373. front: {
  15374. height: math.unit(6 + 1 / 12, "feet"),
  15375. weight: math.unit(260, "lb"),
  15376. name: "Front",
  15377. image: {
  15378. source: "./media/characters/zeta/front.svg",
  15379. extra: 1968 / 1889,
  15380. bottom: 0.06
  15381. }
  15382. },
  15383. back: {
  15384. height: math.unit(6 + 1 / 12, "feet"),
  15385. weight: math.unit(260, "lb"),
  15386. name: "Back",
  15387. image: {
  15388. source: "./media/characters/zeta/back.svg",
  15389. extra: 1944 / 1858,
  15390. bottom: 0.03
  15391. }
  15392. },
  15393. hand: {
  15394. height: math.unit(1.112, "feet"),
  15395. name: "Hand",
  15396. image: {
  15397. source: "./media/characters/zeta/hand.svg"
  15398. }
  15399. },
  15400. foot: {
  15401. height: math.unit(1.48, "feet"),
  15402. name: "Foot",
  15403. image: {
  15404. source: "./media/characters/zeta/foot.svg"
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Micro",
  15411. height: math.unit(6, "inches")
  15412. },
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(6 + 1 / 12, "feet"),
  15416. default: true
  15417. },
  15418. {
  15419. name: "Macro",
  15420. height: math.unit(20, "feet")
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(6, "feet"),
  15429. weight: math.unit(150, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/jamie-larsen/front.svg",
  15433. extra: 962 / 933,
  15434. bottom: 0.02
  15435. }
  15436. },
  15437. back: {
  15438. height: math.unit(6, "feet"),
  15439. weight: math.unit(150, "lb"),
  15440. name: "Back",
  15441. image: {
  15442. source: "./media/characters/jamie-larsen/back.svg",
  15443. extra: 997 / 946
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Macro",
  15450. height: math.unit(28 + 7 / 12, "feet"),
  15451. default: true
  15452. },
  15453. {
  15454. name: "Macro+",
  15455. height: math.unit(180, "feet")
  15456. },
  15457. {
  15458. name: "Megamacro",
  15459. height: math.unit(10, "miles")
  15460. },
  15461. {
  15462. name: "Gigamacro",
  15463. height: math.unit(200000, "miles")
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15469. {
  15470. front: {
  15471. height: math.unit(6, "feet"),
  15472. weight: math.unit(120, "lb"),
  15473. name: "Front",
  15474. image: {
  15475. source: "./media/characters/vance/front.svg",
  15476. extra: 1980 / 1890,
  15477. bottom: 0.09
  15478. }
  15479. },
  15480. back: {
  15481. height: math.unit(6, "feet"),
  15482. weight: math.unit(120, "lb"),
  15483. name: "Back",
  15484. image: {
  15485. source: "./media/characters/vance/back.svg",
  15486. extra: 2081 / 1994,
  15487. bottom: 0.014
  15488. }
  15489. },
  15490. hand: {
  15491. height: math.unit(0.88, "feet"),
  15492. name: "Hand",
  15493. image: {
  15494. source: "./media/characters/vance/hand.svg"
  15495. }
  15496. },
  15497. foot: {
  15498. height: math.unit(0.64, "feet"),
  15499. name: "Foot",
  15500. image: {
  15501. source: "./media/characters/vance/foot.svg"
  15502. }
  15503. },
  15504. },
  15505. [
  15506. {
  15507. name: "Small",
  15508. height: math.unit(90, "feet"),
  15509. default: true
  15510. },
  15511. {
  15512. name: "Macro",
  15513. height: math.unit(100, "meters")
  15514. },
  15515. {
  15516. name: "Megamacro",
  15517. height: math.unit(15, "miles")
  15518. },
  15519. ]
  15520. ))
  15521. characterMakers.push(() => makeCharacter(
  15522. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15523. {
  15524. front: {
  15525. height: math.unit(6, "feet"),
  15526. weight: math.unit(180, "lb"),
  15527. name: "Front",
  15528. image: {
  15529. source: "./media/characters/xochitl/front.svg",
  15530. extra: 2297 / 2261,
  15531. bottom: 0.065
  15532. }
  15533. },
  15534. back: {
  15535. height: math.unit(6, "feet"),
  15536. weight: math.unit(180, "lb"),
  15537. name: "Back",
  15538. image: {
  15539. source: "./media/characters/xochitl/back.svg",
  15540. extra: 2386 / 2354,
  15541. bottom: 0.01
  15542. }
  15543. },
  15544. foot: {
  15545. height: math.unit(6 / 5 * 1.15, "feet"),
  15546. weight: math.unit(150, "lb"),
  15547. name: "Foot",
  15548. image: {
  15549. source: "./media/characters/xochitl/foot.svg"
  15550. }
  15551. },
  15552. },
  15553. [
  15554. {
  15555. name: "Macro",
  15556. height: math.unit(80, "feet")
  15557. },
  15558. {
  15559. name: "Macro+",
  15560. height: math.unit(400, "feet"),
  15561. default: true
  15562. },
  15563. {
  15564. name: "Gigamacro",
  15565. height: math.unit(80000, "miles")
  15566. },
  15567. {
  15568. name: "Gigamacro+",
  15569. height: math.unit(400000, "miles")
  15570. },
  15571. {
  15572. name: "Teramacro",
  15573. height: math.unit(300, "AU")
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(6, "feet"),
  15582. weight: math.unit(150, "lb"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/vincent/front.svg",
  15586. extra: 1130 / 1080,
  15587. bottom: 0.055
  15588. }
  15589. },
  15590. beak: {
  15591. height: math.unit(6 * 0.1, "feet"),
  15592. name: "Beak",
  15593. image: {
  15594. source: "./media/characters/vincent/beak.svg"
  15595. }
  15596. },
  15597. hand: {
  15598. height: math.unit(6 * 0.85, "feet"),
  15599. weight: math.unit(150, "lb"),
  15600. name: "Hand",
  15601. image: {
  15602. source: "./media/characters/vincent/hand.svg"
  15603. }
  15604. },
  15605. foot: {
  15606. height: math.unit(6 * 0.19, "feet"),
  15607. weight: math.unit(150, "lb"),
  15608. name: "Foot",
  15609. image: {
  15610. source: "./media/characters/vincent/foot.svg"
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Base",
  15617. height: math.unit(6 + 5 / 12, "feet"),
  15618. default: true
  15619. },
  15620. {
  15621. name: "Macro",
  15622. height: math.unit(300, "feet")
  15623. },
  15624. {
  15625. name: "Megamacro",
  15626. height: math.unit(2, "miles")
  15627. },
  15628. {
  15629. name: "Gigamacro",
  15630. height: math.unit(1000, "miles")
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15636. {
  15637. front: {
  15638. height: math.unit(2, "meters"),
  15639. weight: math.unit(500, "kg"),
  15640. name: "Front",
  15641. image: {
  15642. source: "./media/characters/coatl/front.svg",
  15643. extra: 3948 / 3500,
  15644. bottom: 0.082
  15645. }
  15646. },
  15647. },
  15648. [
  15649. {
  15650. name: "Normal",
  15651. height: math.unit(4, "meters")
  15652. },
  15653. {
  15654. name: "Macro",
  15655. height: math.unit(100, "meters"),
  15656. default: true
  15657. },
  15658. {
  15659. name: "Macro+",
  15660. height: math.unit(300, "meters")
  15661. },
  15662. {
  15663. name: "Megamacro",
  15664. height: math.unit(3, "gigameters")
  15665. },
  15666. {
  15667. name: "Megamacro+",
  15668. height: math.unit(300, "terameters")
  15669. },
  15670. {
  15671. name: "Megamacro++",
  15672. height: math.unit(3, "lightyears")
  15673. },
  15674. ]
  15675. ))
  15676. characterMakers.push(() => makeCharacter(
  15677. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15678. {
  15679. front: {
  15680. height: math.unit(6, "feet"),
  15681. weight: math.unit(50, "kg"),
  15682. name: "front",
  15683. image: {
  15684. source: "./media/characters/shiroryu/front.svg",
  15685. extra: 1990 / 1935
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Mortal Mingling",
  15692. height: math.unit(3, "meters")
  15693. },
  15694. {
  15695. name: "Kaiju-ish",
  15696. height: math.unit(250, "meters")
  15697. },
  15698. {
  15699. name: "Somewhat Godly",
  15700. height: math.unit(400, "km"),
  15701. default: true
  15702. },
  15703. {
  15704. name: "Planetary",
  15705. height: math.unit(300, "megameters")
  15706. },
  15707. {
  15708. name: "Galaxy-dwarfing",
  15709. height: math.unit(450, "kiloparsecs")
  15710. },
  15711. {
  15712. name: "Universe Eater",
  15713. height: math.unit(150, "gigaparsecs")
  15714. },
  15715. {
  15716. name: "Almost Immeasurable",
  15717. height: math.unit(1.3e266, "yottaparsecs")
  15718. },
  15719. ]
  15720. ))
  15721. characterMakers.push(() => makeCharacter(
  15722. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15723. {
  15724. front: {
  15725. height: math.unit(6, "feet"),
  15726. weight: math.unit(150, "lb"),
  15727. name: "Front",
  15728. image: {
  15729. source: "./media/characters/umeko/front.svg",
  15730. extra: 1,
  15731. bottom: 0.019
  15732. }
  15733. },
  15734. frontArmored: {
  15735. height: math.unit(6, "feet"),
  15736. weight: math.unit(150, "lb"),
  15737. name: "Front (Armored)",
  15738. image: {
  15739. source: "./media/characters/umeko/front-armored.svg",
  15740. extra: 1,
  15741. bottom: 0.021
  15742. }
  15743. },
  15744. },
  15745. [
  15746. {
  15747. name: "Macro",
  15748. height: math.unit(220, "feet"),
  15749. default: true
  15750. },
  15751. {
  15752. name: "Guardian Dragon",
  15753. height: math.unit(50, "miles")
  15754. },
  15755. {
  15756. name: "Cosmic",
  15757. height: math.unit(800000, "miles")
  15758. },
  15759. ]
  15760. ))
  15761. characterMakers.push(() => makeCharacter(
  15762. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15763. {
  15764. front: {
  15765. height: math.unit(6, "feet"),
  15766. weight: math.unit(150, "lb"),
  15767. name: "Front",
  15768. image: {
  15769. source: "./media/characters/cassidy/front.svg",
  15770. extra: 810/808,
  15771. bottom: 41/851
  15772. }
  15773. },
  15774. },
  15775. [
  15776. {
  15777. name: "Canon Height",
  15778. height: math.unit(120, "feet"),
  15779. default: true
  15780. },
  15781. {
  15782. name: "Macro+",
  15783. height: math.unit(400, "feet")
  15784. },
  15785. {
  15786. name: "Macro++",
  15787. height: math.unit(4000, "feet")
  15788. },
  15789. {
  15790. name: "Megamacro",
  15791. height: math.unit(3, "miles")
  15792. },
  15793. ]
  15794. ))
  15795. characterMakers.push(() => makeCharacter(
  15796. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15797. {
  15798. front: {
  15799. height: math.unit(6, "feet"),
  15800. weight: math.unit(150, "lb"),
  15801. name: "Front",
  15802. image: {
  15803. source: "./media/characters/isaac/front.svg",
  15804. extra: 896 / 815,
  15805. bottom: 0.11
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Human Size",
  15812. height: math.unit(8, "feet"),
  15813. default: true
  15814. },
  15815. {
  15816. name: "Macro",
  15817. height: math.unit(400, "feet")
  15818. },
  15819. {
  15820. name: "Megamacro",
  15821. height: math.unit(50, "miles")
  15822. },
  15823. {
  15824. name: "Canon Height",
  15825. height: math.unit(200, "AU")
  15826. },
  15827. ]
  15828. ))
  15829. characterMakers.push(() => makeCharacter(
  15830. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15831. {
  15832. front: {
  15833. height: math.unit(6, "feet"),
  15834. weight: math.unit(72, "kg"),
  15835. name: "Front",
  15836. image: {
  15837. source: "./media/characters/sleekit/front.svg",
  15838. extra: 4693 / 4487,
  15839. bottom: 0.012
  15840. }
  15841. },
  15842. },
  15843. [
  15844. {
  15845. name: "Minimum Height",
  15846. height: math.unit(10, "meters")
  15847. },
  15848. {
  15849. name: "Smaller",
  15850. height: math.unit(25, "meters")
  15851. },
  15852. {
  15853. name: "Larger",
  15854. height: math.unit(38, "meters"),
  15855. default: true
  15856. },
  15857. {
  15858. name: "Maximum height",
  15859. height: math.unit(100, "meters")
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(6, "feet"),
  15868. weight: math.unit(150, "lb"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/nillia/front.svg",
  15872. extra: 719/665,
  15873. bottom: 6/725
  15874. }
  15875. },
  15876. back: {
  15877. height: math.unit(6, "feet"),
  15878. weight: math.unit(150, "lb"),
  15879. name: "Back",
  15880. image: {
  15881. source: "./media/characters/nillia/back.svg",
  15882. extra: 705/651,
  15883. bottom: 5/710
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Canon Height",
  15890. height: math.unit(489, "feet"),
  15891. default: true
  15892. }
  15893. ]
  15894. ))
  15895. characterMakers.push(() => makeCharacter(
  15896. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15897. {
  15898. front: {
  15899. height: math.unit(6, "feet"),
  15900. weight: math.unit(150, "lb"),
  15901. name: "Front",
  15902. image: {
  15903. source: "./media/characters/mesmyriza/front.svg",
  15904. extra: 1541/1291,
  15905. bottom: 87/1628
  15906. }
  15907. },
  15908. foot: {
  15909. height: math.unit(6 / (250 / 35), "feet"),
  15910. name: "Foot",
  15911. image: {
  15912. source: "./media/characters/mesmyriza/foot.svg"
  15913. }
  15914. },
  15915. },
  15916. [
  15917. {
  15918. name: "Macro",
  15919. height: math.unit(457, "meters"),
  15920. default: true
  15921. },
  15922. {
  15923. name: "Megamacro",
  15924. height: math.unit(8, "megameters")
  15925. },
  15926. ]
  15927. ))
  15928. characterMakers.push(() => makeCharacter(
  15929. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15930. {
  15931. front: {
  15932. height: math.unit(6, "feet"),
  15933. weight: math.unit(250, "lb"),
  15934. name: "Front",
  15935. image: {
  15936. source: "./media/characters/saudade/front.svg",
  15937. extra: 1172 / 1139,
  15938. bottom: 0.035
  15939. }
  15940. },
  15941. },
  15942. [
  15943. {
  15944. name: "Micro",
  15945. height: math.unit(3, "inches")
  15946. },
  15947. {
  15948. name: "Normal",
  15949. height: math.unit(6, "feet"),
  15950. default: true
  15951. },
  15952. {
  15953. name: "Macro",
  15954. height: math.unit(50, "feet")
  15955. },
  15956. {
  15957. name: "Megamacro",
  15958. height: math.unit(2800, "feet")
  15959. },
  15960. ]
  15961. ))
  15962. characterMakers.push(() => makeCharacter(
  15963. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15964. {
  15965. front: {
  15966. height: math.unit(5 + 4 / 12, "feet"),
  15967. weight: math.unit(100, "lb"),
  15968. name: "Front",
  15969. image: {
  15970. source: "./media/characters/keireer/front.svg",
  15971. extra: 716 / 666,
  15972. bottom: 0.05
  15973. }
  15974. },
  15975. },
  15976. [
  15977. {
  15978. name: "Normal",
  15979. height: math.unit(5 + 4 / 12, "feet"),
  15980. default: true
  15981. },
  15982. ]
  15983. ))
  15984. characterMakers.push(() => makeCharacter(
  15985. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15986. {
  15987. front: {
  15988. height: math.unit(5.5, "feet"),
  15989. weight: math.unit(90, "kg"),
  15990. name: "Front",
  15991. image: {
  15992. source: "./media/characters/mirja/front.svg",
  15993. extra: 1452/1262,
  15994. bottom: 67/1519
  15995. }
  15996. },
  15997. frontDressed: {
  15998. height: math.unit(5.5, "feet"),
  15999. weight: math.unit(90, "lb"),
  16000. name: "Front (Dressed)",
  16001. image: {
  16002. source: "./media/characters/mirja/dressed.svg",
  16003. extra: 1452/1262,
  16004. bottom: 67/1519
  16005. }
  16006. },
  16007. back: {
  16008. height: math.unit(6, "feet"),
  16009. weight: math.unit(90, "lb"),
  16010. name: "Back",
  16011. image: {
  16012. source: "./media/characters/mirja/back.svg",
  16013. extra: 1892/1795,
  16014. bottom: 48/1940
  16015. }
  16016. },
  16017. maw: {
  16018. height: math.unit(1.312, "feet"),
  16019. name: "Maw",
  16020. image: {
  16021. source: "./media/characters/mirja/maw.svg"
  16022. }
  16023. },
  16024. paw: {
  16025. height: math.unit(1.15, "feet"),
  16026. name: "Paw",
  16027. image: {
  16028. source: "./media/characters/mirja/paw.svg"
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "\"Incognito\"",
  16035. height: math.unit(3, "meters")
  16036. },
  16037. {
  16038. name: "Strolling Size",
  16039. height: math.unit(15, "km")
  16040. },
  16041. {
  16042. name: "Larger Strolling Size",
  16043. height: math.unit(400, "km")
  16044. },
  16045. {
  16046. name: "Preferred Size",
  16047. height: math.unit(5000, "km"),
  16048. default: true
  16049. },
  16050. {
  16051. name: "True Size",
  16052. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16058. {
  16059. front: {
  16060. height: math.unit(15, "feet"),
  16061. weight: math.unit(880, "kg"),
  16062. name: "Front",
  16063. image: {
  16064. source: "./media/characters/nightraver/front.svg",
  16065. extra: 2444 / 2160,
  16066. bottom: 0.027
  16067. }
  16068. },
  16069. back: {
  16070. height: math.unit(15, "feet"),
  16071. weight: math.unit(880, "kg"),
  16072. name: "Back",
  16073. image: {
  16074. source: "./media/characters/nightraver/back.svg",
  16075. extra: 2309 / 2180,
  16076. bottom: 0.005
  16077. }
  16078. },
  16079. sole: {
  16080. height: math.unit(2.878, "feet"),
  16081. name: "Sole",
  16082. image: {
  16083. source: "./media/characters/nightraver/sole.svg"
  16084. }
  16085. },
  16086. foot: {
  16087. height: math.unit(2.285, "feet"),
  16088. name: "Foot",
  16089. image: {
  16090. source: "./media/characters/nightraver/foot.svg"
  16091. }
  16092. },
  16093. maw: {
  16094. height: math.unit(2.67, "feet"),
  16095. name: "Maw",
  16096. image: {
  16097. source: "./media/characters/nightraver/maw.svg"
  16098. }
  16099. },
  16100. },
  16101. [
  16102. {
  16103. name: "Micro",
  16104. height: math.unit(1, "cm")
  16105. },
  16106. {
  16107. name: "Normal",
  16108. height: math.unit(15, "feet"),
  16109. default: true
  16110. },
  16111. {
  16112. name: "Macro",
  16113. height: math.unit(300, "feet")
  16114. },
  16115. {
  16116. name: "Megamacro",
  16117. height: math.unit(300, "miles")
  16118. },
  16119. {
  16120. name: "Gigamacro",
  16121. height: math.unit(10000, "miles")
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16127. {
  16128. side: {
  16129. height: math.unit(2, "inches"),
  16130. weight: math.unit(5, "grams"),
  16131. name: "Side",
  16132. image: {
  16133. source: "./media/characters/arc/side.svg"
  16134. }
  16135. },
  16136. },
  16137. [
  16138. {
  16139. name: "Micro",
  16140. height: math.unit(2, "inches"),
  16141. default: true
  16142. },
  16143. ]
  16144. ))
  16145. characterMakers.push(() => makeCharacter(
  16146. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16147. {
  16148. front: {
  16149. height: math.unit(1.1938, "meters"),
  16150. weight: math.unit(54, "kg"),
  16151. name: "Front",
  16152. image: {
  16153. source: "./media/characters/nebula-shahar/front.svg",
  16154. extra: 1642 / 1436,
  16155. bottom: 0.06
  16156. }
  16157. },
  16158. },
  16159. [
  16160. {
  16161. name: "Megamicro",
  16162. height: math.unit(0.3, "mm")
  16163. },
  16164. {
  16165. name: "Micro",
  16166. height: math.unit(3, "cm")
  16167. },
  16168. {
  16169. name: "Normal",
  16170. height: math.unit(138, "cm"),
  16171. default: true
  16172. },
  16173. {
  16174. name: "Macro",
  16175. height: math.unit(30, "m")
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16181. {
  16182. front: {
  16183. height: math.unit(5.24, "feet"),
  16184. weight: math.unit(150, "lb"),
  16185. name: "Front",
  16186. image: {
  16187. source: "./media/characters/shayla/front.svg",
  16188. extra: 1512 / 1414,
  16189. bottom: 0.01
  16190. }
  16191. },
  16192. back: {
  16193. height: math.unit(5.24, "feet"),
  16194. weight: math.unit(150, "lb"),
  16195. name: "Back",
  16196. image: {
  16197. source: "./media/characters/shayla/back.svg",
  16198. extra: 1512 / 1414
  16199. }
  16200. },
  16201. hand: {
  16202. height: math.unit(0.7781496062992126, "feet"),
  16203. name: "Hand",
  16204. image: {
  16205. source: "./media/characters/shayla/hand.svg"
  16206. }
  16207. },
  16208. foot: {
  16209. height: math.unit(1.4206036745406823, "feet"),
  16210. name: "Foot",
  16211. image: {
  16212. source: "./media/characters/shayla/foot.svg"
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Micro",
  16219. height: math.unit(0.32, "feet")
  16220. },
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(5.24, "feet"),
  16224. default: true
  16225. },
  16226. {
  16227. name: "Macro",
  16228. height: math.unit(492.12, "feet")
  16229. },
  16230. {
  16231. name: "Megamacro",
  16232. height: math.unit(186.41, "miles")
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(2.2, "m"),
  16241. weight: math.unit(120, "kg"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/pia-jr/front.svg",
  16245. extra: 1000 / 970,
  16246. bottom: 0.035
  16247. }
  16248. },
  16249. hand: {
  16250. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16251. name: "Hand",
  16252. image: {
  16253. source: "./media/characters/pia-jr/hand.svg"
  16254. }
  16255. },
  16256. paw: {
  16257. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16258. name: "Paw",
  16259. image: {
  16260. source: "./media/characters/pia-jr/paw.svg"
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Micro",
  16267. height: math.unit(1.2, "cm")
  16268. },
  16269. {
  16270. name: "Normal",
  16271. height: math.unit(2.2, "m"),
  16272. default: true
  16273. },
  16274. {
  16275. name: "Macro",
  16276. height: math.unit(180, "m")
  16277. },
  16278. {
  16279. name: "Megamacro",
  16280. height: math.unit(420, "km")
  16281. },
  16282. ]
  16283. ))
  16284. characterMakers.push(() => makeCharacter(
  16285. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16286. {
  16287. front: {
  16288. height: math.unit(2, "m"),
  16289. weight: math.unit(115, "kg"),
  16290. name: "Front",
  16291. image: {
  16292. source: "./media/characters/pia-sr/front.svg",
  16293. extra: 760 / 730,
  16294. bottom: 0.015
  16295. }
  16296. },
  16297. back: {
  16298. height: math.unit(2, "m"),
  16299. weight: math.unit(115, "kg"),
  16300. name: "Back",
  16301. image: {
  16302. source: "./media/characters/pia-sr/back.svg",
  16303. extra: 760 / 730,
  16304. bottom: 0.01
  16305. }
  16306. },
  16307. hand: {
  16308. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16309. name: "Hand",
  16310. image: {
  16311. source: "./media/characters/pia-sr/hand.svg"
  16312. }
  16313. },
  16314. foot: {
  16315. height: math.unit(1.83, "feet"),
  16316. name: "Foot",
  16317. image: {
  16318. source: "./media/characters/pia-sr/foot.svg"
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Micro",
  16325. height: math.unit(88, "mm")
  16326. },
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(2, "m"),
  16330. default: true
  16331. },
  16332. {
  16333. name: "Macro",
  16334. height: math.unit(200, "m")
  16335. },
  16336. {
  16337. name: "Megamacro",
  16338. height: math.unit(420, "km")
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16344. {
  16345. front: {
  16346. height: math.unit(8 + 2 / 12, "feet"),
  16347. weight: math.unit(300, "lb"),
  16348. name: "Front",
  16349. image: {
  16350. source: "./media/characters/kibibyte/front.svg",
  16351. extra: 2221 / 2098,
  16352. bottom: 0.04
  16353. }
  16354. },
  16355. },
  16356. [
  16357. {
  16358. name: "Normal",
  16359. height: math.unit(8 + 2 / 12, "feet"),
  16360. default: true
  16361. },
  16362. {
  16363. name: "Socialable Macro",
  16364. height: math.unit(50, "feet")
  16365. },
  16366. {
  16367. name: "Macro",
  16368. height: math.unit(300, "feet")
  16369. },
  16370. {
  16371. name: "Megamacro",
  16372. height: math.unit(500, "miles")
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16378. {
  16379. front: {
  16380. height: math.unit(6, "feet"),
  16381. weight: math.unit(150, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/felix/front.svg",
  16385. extra: 762 / 722,
  16386. bottom: 0.02
  16387. }
  16388. },
  16389. frontClothed: {
  16390. height: math.unit(6, "feet"),
  16391. weight: math.unit(150, "lb"),
  16392. name: "Front (Clothed)",
  16393. image: {
  16394. source: "./media/characters/felix/front-clothed.svg",
  16395. extra: 762 / 722,
  16396. bottom: 0.02
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Normal",
  16403. height: math.unit(6 + 8 / 12, "feet"),
  16404. default: true
  16405. },
  16406. {
  16407. name: "Macro",
  16408. height: math.unit(2600, "feet")
  16409. },
  16410. {
  16411. name: "Megamacro",
  16412. height: math.unit(450, "miles")
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16418. {
  16419. front: {
  16420. height: math.unit(6 + 1 / 12, "feet"),
  16421. weight: math.unit(250, "lb"),
  16422. name: "Front",
  16423. image: {
  16424. source: "./media/characters/tobo/front.svg",
  16425. extra: 608 / 586,
  16426. bottom: 0.023
  16427. }
  16428. },
  16429. back: {
  16430. height: math.unit(6 + 1 / 12, "feet"),
  16431. weight: math.unit(250, "lb"),
  16432. name: "Back",
  16433. image: {
  16434. source: "./media/characters/tobo/back.svg",
  16435. extra: 608 / 586
  16436. }
  16437. },
  16438. },
  16439. [
  16440. {
  16441. name: "Nano",
  16442. height: math.unit(2, "nm")
  16443. },
  16444. {
  16445. name: "Megamicro",
  16446. height: math.unit(0.1, "mm")
  16447. },
  16448. {
  16449. name: "Micro",
  16450. height: math.unit(1, "inch"),
  16451. default: true
  16452. },
  16453. {
  16454. name: "Human-sized",
  16455. height: math.unit(6 + 1 / 12, "feet")
  16456. },
  16457. {
  16458. name: "Macro",
  16459. height: math.unit(250, "feet")
  16460. },
  16461. {
  16462. name: "Megamacro",
  16463. height: math.unit(75, "miles")
  16464. },
  16465. {
  16466. name: "Texas-sized",
  16467. height: math.unit(750, "miles")
  16468. },
  16469. {
  16470. name: "Teramacro",
  16471. height: math.unit(50000, "miles")
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(6, "feet"),
  16480. weight: math.unit(269, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/danny-kapowsky/front.svg",
  16484. extra: 766 / 736,
  16485. bottom: 0.044
  16486. }
  16487. },
  16488. back: {
  16489. height: math.unit(6, "feet"),
  16490. weight: math.unit(269, "lb"),
  16491. name: "Back",
  16492. image: {
  16493. source: "./media/characters/danny-kapowsky/back.svg",
  16494. extra: 797 / 760,
  16495. bottom: 0.025
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Macro",
  16502. height: math.unit(150, "feet"),
  16503. default: true
  16504. },
  16505. {
  16506. name: "Macro+",
  16507. height: math.unit(200, "feet")
  16508. },
  16509. {
  16510. name: "Macro++",
  16511. height: math.unit(300, "feet")
  16512. },
  16513. {
  16514. name: "Macro+++",
  16515. height: math.unit(400, "feet")
  16516. },
  16517. ]
  16518. ))
  16519. characterMakers.push(() => makeCharacter(
  16520. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16521. {
  16522. side: {
  16523. height: math.unit(6, "feet"),
  16524. weight: math.unit(170, "lb"),
  16525. name: "Side",
  16526. image: {
  16527. source: "./media/characters/finn/side.svg",
  16528. extra: 1953 / 1807,
  16529. bottom: 0.057
  16530. }
  16531. },
  16532. },
  16533. [
  16534. {
  16535. name: "Megamacro",
  16536. height: math.unit(14445, "feet"),
  16537. default: true
  16538. },
  16539. ]
  16540. ))
  16541. characterMakers.push(() => makeCharacter(
  16542. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16543. {
  16544. front: {
  16545. height: math.unit(5 + 6 / 12, "feet"),
  16546. weight: math.unit(125, "lb"),
  16547. name: "Front",
  16548. image: {
  16549. source: "./media/characters/roy/front.svg",
  16550. extra: 1,
  16551. bottom: 0.11
  16552. }
  16553. },
  16554. },
  16555. [
  16556. {
  16557. name: "Micro",
  16558. height: math.unit(3, "inches"),
  16559. default: true
  16560. },
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(5 + 6 / 12, "feet")
  16564. },
  16565. {
  16566. name: "Lesser Macro",
  16567. height: math.unit(60, "feet")
  16568. },
  16569. {
  16570. name: "Greater Macro",
  16571. height: math.unit(120, "feet")
  16572. },
  16573. ]
  16574. ))
  16575. characterMakers.push(() => makeCharacter(
  16576. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16577. {
  16578. front: {
  16579. height: math.unit(6, "feet"),
  16580. weight: math.unit(100, "lb"),
  16581. name: "Front",
  16582. image: {
  16583. source: "./media/characters/aevsivs/front.svg",
  16584. extra: 1,
  16585. bottom: 0.03
  16586. }
  16587. },
  16588. back: {
  16589. height: math.unit(6, "feet"),
  16590. weight: math.unit(100, "lb"),
  16591. name: "Back",
  16592. image: {
  16593. source: "./media/characters/aevsivs/back.svg"
  16594. }
  16595. },
  16596. },
  16597. [
  16598. {
  16599. name: "Micro",
  16600. height: math.unit(2, "inches"),
  16601. default: true
  16602. },
  16603. {
  16604. name: "Normal",
  16605. height: math.unit(5, "feet")
  16606. },
  16607. ]
  16608. ))
  16609. characterMakers.push(() => makeCharacter(
  16610. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16611. {
  16612. front: {
  16613. height: math.unit(5 + 7 / 12, "feet"),
  16614. weight: math.unit(159, "lb"),
  16615. name: "Front",
  16616. image: {
  16617. source: "./media/characters/hildegard/front.svg",
  16618. extra: 289 / 269,
  16619. bottom: 7.63 / 297.8
  16620. }
  16621. },
  16622. back: {
  16623. height: math.unit(5 + 7 / 12, "feet"),
  16624. weight: math.unit(159, "lb"),
  16625. name: "Back",
  16626. image: {
  16627. source: "./media/characters/hildegard/back.svg",
  16628. extra: 280 / 260,
  16629. bottom: 2.3 / 282
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Normal",
  16636. height: math.unit(5 + 7 / 12, "feet"),
  16637. default: true
  16638. },
  16639. ]
  16640. ))
  16641. characterMakers.push(() => makeCharacter(
  16642. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16643. {
  16644. bernard: {
  16645. height: math.unit(2 + 7 / 12, "feet"),
  16646. weight: math.unit(66, "lb"),
  16647. name: "Bernard",
  16648. rename: true,
  16649. image: {
  16650. source: "./media/characters/bernard-wilder/bernard.svg",
  16651. extra: 192 / 128,
  16652. bottom: 0.05
  16653. }
  16654. },
  16655. wilder: {
  16656. height: math.unit(5 + 8 / 12, "feet"),
  16657. weight: math.unit(143, "lb"),
  16658. name: "Wilder",
  16659. rename: true,
  16660. image: {
  16661. source: "./media/characters/bernard-wilder/wilder.svg",
  16662. extra: 361 / 312,
  16663. bottom: 0.02
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(2 + 7 / 12, "feet"),
  16671. default: true
  16672. },
  16673. ]
  16674. ))
  16675. characterMakers.push(() => makeCharacter(
  16676. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16677. {
  16678. anthro: {
  16679. height: math.unit(6 + 1 / 12, "feet"),
  16680. weight: math.unit(155, "lb"),
  16681. name: "Anthro",
  16682. image: {
  16683. source: "./media/characters/hearth/anthro.svg",
  16684. extra: 1178/1136,
  16685. bottom: 28/1206
  16686. }
  16687. },
  16688. feral: {
  16689. height: math.unit(3.78, "feet"),
  16690. weight: math.unit(35, "kg"),
  16691. name: "Feral",
  16692. image: {
  16693. source: "./media/characters/hearth/feral.svg",
  16694. extra: 153 / 135,
  16695. bottom: 0.03
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Normal",
  16702. height: math.unit(6 + 1 / 12, "feet"),
  16703. default: true
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16709. {
  16710. front: {
  16711. height: math.unit(6, "feet"),
  16712. weight: math.unit(182, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/ingrid/front.svg",
  16716. extra: 294 / 268,
  16717. bottom: 0.027
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Normal",
  16724. height: math.unit(6, "feet"),
  16725. default: true
  16726. },
  16727. ]
  16728. ))
  16729. characterMakers.push(() => makeCharacter(
  16730. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16731. {
  16732. eevee: {
  16733. height: math.unit(2 + 10 / 12, "feet"),
  16734. weight: math.unit(86, "lb"),
  16735. name: "Malgam",
  16736. image: {
  16737. source: "./media/characters/malgam/eevee.svg",
  16738. extra: 952/784,
  16739. bottom: 38/990
  16740. }
  16741. },
  16742. sylveon: {
  16743. height: math.unit(4, "feet"),
  16744. weight: math.unit(101, "lb"),
  16745. name: "Future Malgam",
  16746. rename: true,
  16747. image: {
  16748. source: "./media/characters/malgam/sylveon.svg",
  16749. extra: 371 / 325,
  16750. bottom: 0.015
  16751. }
  16752. },
  16753. gigantamax: {
  16754. height: math.unit(50, "feet"),
  16755. name: "Gigantamax Malgam",
  16756. rename: true,
  16757. image: {
  16758. source: "./media/characters/malgam/gigantamax.svg"
  16759. }
  16760. },
  16761. },
  16762. [
  16763. {
  16764. name: "Normal",
  16765. height: math.unit(2 + 10 / 12, "feet"),
  16766. default: true
  16767. },
  16768. ]
  16769. ))
  16770. characterMakers.push(() => makeCharacter(
  16771. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16772. {
  16773. front: {
  16774. height: math.unit(5 + 11 / 12, "feet"),
  16775. weight: math.unit(188, "lb"),
  16776. name: "Front",
  16777. image: {
  16778. source: "./media/characters/fleur/front.svg",
  16779. extra: 309 / 283,
  16780. bottom: 0.007
  16781. }
  16782. },
  16783. },
  16784. [
  16785. {
  16786. name: "Normal",
  16787. height: math.unit(5 + 11 / 12, "feet"),
  16788. default: true
  16789. },
  16790. ]
  16791. ))
  16792. characterMakers.push(() => makeCharacter(
  16793. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16794. {
  16795. front: {
  16796. height: math.unit(5 + 4 / 12, "feet"),
  16797. weight: math.unit(122, "lb"),
  16798. name: "Front",
  16799. image: {
  16800. source: "./media/characters/jude/front.svg",
  16801. extra: 288 / 273,
  16802. bottom: 0.03
  16803. }
  16804. },
  16805. },
  16806. [
  16807. {
  16808. name: "Normal",
  16809. height: math.unit(5 + 4 / 12, "feet"),
  16810. default: true
  16811. },
  16812. ]
  16813. ))
  16814. characterMakers.push(() => makeCharacter(
  16815. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16816. {
  16817. front: {
  16818. height: math.unit(5 + 11 / 12, "feet"),
  16819. weight: math.unit(190, "lb"),
  16820. name: "Front",
  16821. image: {
  16822. source: "./media/characters/seara/front.svg",
  16823. extra: 1,
  16824. bottom: 0.05
  16825. }
  16826. },
  16827. },
  16828. [
  16829. {
  16830. name: "Normal",
  16831. height: math.unit(5 + 11 / 12, "feet"),
  16832. default: true
  16833. },
  16834. ]
  16835. ))
  16836. characterMakers.push(() => makeCharacter(
  16837. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16838. {
  16839. front: {
  16840. height: math.unit(16 + 5 / 12, "feet"),
  16841. weight: math.unit(524, "lb"),
  16842. name: "Front",
  16843. image: {
  16844. source: "./media/characters/caspian-lugia/front.svg",
  16845. extra: 1,
  16846. bottom: 0.04
  16847. }
  16848. },
  16849. },
  16850. [
  16851. {
  16852. name: "Normal",
  16853. height: math.unit(16 + 5 / 12, "feet"),
  16854. default: true
  16855. },
  16856. ]
  16857. ))
  16858. characterMakers.push(() => makeCharacter(
  16859. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16860. {
  16861. front: {
  16862. height: math.unit(5 + 7 / 12, "feet"),
  16863. weight: math.unit(170, "lb"),
  16864. name: "Front",
  16865. image: {
  16866. source: "./media/characters/mika/front.svg",
  16867. extra: 1,
  16868. bottom: 0.016
  16869. }
  16870. },
  16871. },
  16872. [
  16873. {
  16874. name: "Normal",
  16875. height: math.unit(5 + 7 / 12, "feet"),
  16876. default: true
  16877. },
  16878. ]
  16879. ))
  16880. characterMakers.push(() => makeCharacter(
  16881. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16882. {
  16883. front: {
  16884. height: math.unit(6 + 2 / 12, "feet"),
  16885. weight: math.unit(268, "lb"),
  16886. name: "Front",
  16887. image: {
  16888. source: "./media/characters/sol/front.svg",
  16889. extra: 247 / 231,
  16890. bottom: 0.05
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Normal",
  16897. height: math.unit(6 + 2 / 12, "feet"),
  16898. default: true
  16899. },
  16900. ]
  16901. ))
  16902. characterMakers.push(() => makeCharacter(
  16903. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16904. {
  16905. buizel: {
  16906. height: math.unit(2 + 5 / 12, "feet"),
  16907. weight: math.unit(87, "lb"),
  16908. name: "Front",
  16909. image: {
  16910. source: "./media/characters/umiko/buizel.svg",
  16911. extra: 172 / 157,
  16912. bottom: 0.01
  16913. },
  16914. form: "buizel",
  16915. default: true
  16916. },
  16917. floatzel: {
  16918. height: math.unit(5 + 9 / 12, "feet"),
  16919. weight: math.unit(250, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/umiko/floatzel.svg",
  16923. extra: 1076/1006,
  16924. bottom: 15/1091
  16925. },
  16926. form: "floatzel",
  16927. default: true
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(2 + 5 / 12, "feet"),
  16934. form: "buizel",
  16935. default: true
  16936. },
  16937. {
  16938. name: "Normal",
  16939. height: math.unit(5 + 9 / 12, "feet"),
  16940. form: "floatzel",
  16941. default: true
  16942. },
  16943. ],
  16944. {
  16945. "buizel": {
  16946. name: "Buizel"
  16947. },
  16948. "floatzel": {
  16949. name: "Floatzel",
  16950. default: true
  16951. }
  16952. }
  16953. ))
  16954. characterMakers.push(() => makeCharacter(
  16955. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16956. {
  16957. front: {
  16958. height: math.unit(6 + 2 / 12, "feet"),
  16959. weight: math.unit(146, "lb"),
  16960. name: "Front",
  16961. image: {
  16962. source: "./media/characters/iliac/front.svg",
  16963. extra: 389 / 365,
  16964. bottom: 0.035
  16965. }
  16966. },
  16967. },
  16968. [
  16969. {
  16970. name: "Normal",
  16971. height: math.unit(6 + 2 / 12, "feet"),
  16972. default: true
  16973. },
  16974. ]
  16975. ))
  16976. characterMakers.push(() => makeCharacter(
  16977. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16978. {
  16979. front: {
  16980. height: math.unit(6, "feet"),
  16981. weight: math.unit(170, "lb"),
  16982. name: "Front",
  16983. image: {
  16984. source: "./media/characters/topaz/front.svg",
  16985. extra: 317 / 303,
  16986. bottom: 0.055
  16987. }
  16988. },
  16989. },
  16990. [
  16991. {
  16992. name: "Normal",
  16993. height: math.unit(6, "feet"),
  16994. default: true
  16995. },
  16996. ]
  16997. ))
  16998. characterMakers.push(() => makeCharacter(
  16999. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17000. {
  17001. front: {
  17002. height: math.unit(5 + 11 / 12, "feet"),
  17003. weight: math.unit(144, "lb"),
  17004. name: "Front",
  17005. image: {
  17006. source: "./media/characters/gabriel/front.svg",
  17007. extra: 285 / 262,
  17008. bottom: 0.004
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(5 + 11 / 12, "feet"),
  17016. default: true
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17022. {
  17023. side: {
  17024. height: math.unit(6 + 5 / 12, "feet"),
  17025. weight: math.unit(300, "lb"),
  17026. name: "Side",
  17027. image: {
  17028. source: "./media/characters/tempest-suicune/side.svg",
  17029. extra: 195 / 154,
  17030. bottom: 0.04
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(6 + 5 / 12, "feet"),
  17038. default: true
  17039. },
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17044. {
  17045. front: {
  17046. height: math.unit(7 + 2 / 12, "feet"),
  17047. weight: math.unit(322, "lb"),
  17048. name: "Front",
  17049. image: {
  17050. source: "./media/characters/vulcan/front.svg",
  17051. extra: 154 / 147,
  17052. bottom: 0.04
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(7 + 2 / 12, "feet"),
  17060. default: true
  17061. },
  17062. ]
  17063. ))
  17064. characterMakers.push(() => makeCharacter(
  17065. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17066. {
  17067. front: {
  17068. height: math.unit(5 + 10 / 12, "feet"),
  17069. weight: math.unit(264, "lb"),
  17070. name: "Front",
  17071. image: {
  17072. source: "./media/characters/gault/front.svg",
  17073. extra: 161 / 140,
  17074. bottom: 0.028
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(5 + 10 / 12, "feet"),
  17082. default: true
  17083. },
  17084. ]
  17085. ))
  17086. characterMakers.push(() => makeCharacter(
  17087. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17088. {
  17089. front: {
  17090. height: math.unit(6, "feet"),
  17091. weight: math.unit(150, "lb"),
  17092. name: "Front",
  17093. image: {
  17094. source: "./media/characters/shard/front.svg",
  17095. extra: 273 / 238,
  17096. bottom: 0.02
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(3 + 6 / 12, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17110. {
  17111. front: {
  17112. height: math.unit(5 + 11 / 12, "feet"),
  17113. weight: math.unit(146, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/ashe/front.svg",
  17117. extra: 400 / 373,
  17118. bottom: 0.01
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Normal",
  17125. height: math.unit(5 + 11 / 12, "feet"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(5 + 5 / 12, "feet"),
  17135. weight: math.unit(135, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/beatrix/front.svg",
  17139. extra: 392 / 379,
  17140. bottom: 0.01
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(6, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(6 + 2/12, "feet"),
  17157. weight: math.unit(135, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/ignatius/front.svg",
  17161. extra: 1380/1259,
  17162. bottom: 27/1407
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Normal",
  17169. height: math.unit(6 + 2/12, "feet"),
  17170. default: true
  17171. },
  17172. ]
  17173. ))
  17174. characterMakers.push(() => makeCharacter(
  17175. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17176. {
  17177. front: {
  17178. height: math.unit(6 + 2 / 12, "feet"),
  17179. weight: math.unit(138, "lb"),
  17180. name: "Front",
  17181. image: {
  17182. source: "./media/characters/mei-li/front.svg",
  17183. extra: 237 / 229,
  17184. bottom: 0.03
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(6 + 2 / 12, "feet"),
  17192. default: true
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17198. {
  17199. front: {
  17200. height: math.unit(2 + 4 / 12, "feet"),
  17201. weight: math.unit(62, "lb"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/puru/front.svg",
  17205. extra: 206 / 149,
  17206. bottom: 0.06
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(2 + 4 / 12, "feet"),
  17214. default: true
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17220. {
  17221. anthro: {
  17222. height: math.unit(5 + 8/12, "feet"),
  17223. weight: math.unit(200, "lb"),
  17224. energyNeed: math.unit(2000, "kcal"),
  17225. name: "Anthro",
  17226. image: {
  17227. source: "./media/characters/kee/anthro.svg",
  17228. extra: 3251/3184,
  17229. bottom: 250/3501
  17230. }
  17231. },
  17232. taur: {
  17233. height: math.unit(11, "feet"),
  17234. weight: math.unit(500, "lb"),
  17235. energyNeed: math.unit(5000, "kcal"),
  17236. name: "Taur",
  17237. image: {
  17238. source: "./media/characters/kee/taur.svg",
  17239. extra: 1362/1320,
  17240. bottom: 83/1445
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(5 + 8/12, "feet"),
  17248. default: true
  17249. },
  17250. {
  17251. name: "Macro",
  17252. height: math.unit(35, "feet")
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17258. {
  17259. anthro: {
  17260. height: math.unit(7, "feet"),
  17261. weight: math.unit(190, "lb"),
  17262. name: "Anthro",
  17263. image: {
  17264. source: "./media/characters/cobalt-dracha/anthro.svg",
  17265. extra: 231 / 225,
  17266. bottom: 0.04
  17267. }
  17268. },
  17269. feral: {
  17270. height: math.unit(9 + 7 / 12, "feet"),
  17271. weight: math.unit(294, "lb"),
  17272. name: "Feral",
  17273. image: {
  17274. source: "./media/characters/cobalt-dracha/feral.svg",
  17275. extra: 692 / 633,
  17276. bottom: 0.05
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(7, "feet"),
  17284. default: true
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17290. {
  17291. fallen: {
  17292. height: math.unit(11 + 8 / 12, "feet"),
  17293. weight: math.unit(485, "lb"),
  17294. name: "Java (Fallen)",
  17295. rename: true,
  17296. image: {
  17297. source: "./media/characters/java/fallen.svg",
  17298. extra: 226 / 208,
  17299. bottom: 0.005
  17300. }
  17301. },
  17302. godkin: {
  17303. height: math.unit(10 + 6 / 12, "feet"),
  17304. weight: math.unit(328, "lb"),
  17305. name: "Java (Godkin)",
  17306. rename: true,
  17307. image: {
  17308. source: "./media/characters/java/godkin.svg",
  17309. extra: 1104/1068,
  17310. bottom: 36/1140
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Normal",
  17317. height: math.unit(11 + 8 / 12, "feet"),
  17318. default: true
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17324. {
  17325. front: {
  17326. height: math.unit(5 + 9 / 12, "feet"),
  17327. weight: math.unit(170, "lb"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/purna/front.svg",
  17331. extra: 239 / 229,
  17332. bottom: 0.01
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(5 + 9 / 12, "feet"),
  17340. default: true
  17341. },
  17342. ]
  17343. ))
  17344. characterMakers.push(() => makeCharacter(
  17345. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17346. {
  17347. front: {
  17348. height: math.unit(5 + 9 / 12, "feet"),
  17349. weight: math.unit(142, "lb"),
  17350. name: "Front",
  17351. image: {
  17352. source: "./media/characters/kuva/front.svg",
  17353. extra: 281 / 271,
  17354. bottom: 0.006
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(5 + 9 / 12, "feet"),
  17362. default: true
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17368. {
  17369. anthro: {
  17370. height: math.unit(9 + 2 / 12, "feet"),
  17371. weight: math.unit(270, "lb"),
  17372. name: "Anthro",
  17373. image: {
  17374. source: "./media/characters/embra/anthro.svg",
  17375. extra: 200 / 187,
  17376. bottom: 0.02
  17377. }
  17378. },
  17379. feral: {
  17380. height: math.unit(18 + 8 / 12, "feet"),
  17381. weight: math.unit(576, "lb"),
  17382. name: "Feral",
  17383. image: {
  17384. source: "./media/characters/embra/feral.svg",
  17385. extra: 152 / 137,
  17386. bottom: 0.037
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(9 + 2 / 12, "feet"),
  17394. default: true
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17400. {
  17401. anthro: {
  17402. height: math.unit(10 + 9 / 12, "feet"),
  17403. weight: math.unit(224, "lb"),
  17404. name: "Anthro",
  17405. image: {
  17406. source: "./media/characters/grottos/anthro.svg",
  17407. extra: 350 / 332,
  17408. bottom: 0.045
  17409. }
  17410. },
  17411. feral: {
  17412. height: math.unit(20 + 7 / 12, "feet"),
  17413. weight: math.unit(629, "lb"),
  17414. name: "Feral",
  17415. image: {
  17416. source: "./media/characters/grottos/feral.svg",
  17417. extra: 207 / 190,
  17418. bottom: 0.05
  17419. }
  17420. },
  17421. },
  17422. [
  17423. {
  17424. name: "Normal",
  17425. height: math.unit(10 + 9 / 12, "feet"),
  17426. default: true
  17427. },
  17428. ]
  17429. ))
  17430. characterMakers.push(() => makeCharacter(
  17431. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17432. {
  17433. anthro: {
  17434. height: math.unit(9 + 6 / 12, "feet"),
  17435. weight: math.unit(298, "lb"),
  17436. name: "Anthro",
  17437. image: {
  17438. source: "./media/characters/frifna/anthro.svg",
  17439. extra: 282 / 269,
  17440. bottom: 0.015
  17441. }
  17442. },
  17443. feral: {
  17444. height: math.unit(16 + 2 / 12, "feet"),
  17445. weight: math.unit(624, "lb"),
  17446. name: "Feral",
  17447. image: {
  17448. source: "./media/characters/frifna/feral.svg"
  17449. }
  17450. },
  17451. },
  17452. [
  17453. {
  17454. name: "Normal",
  17455. height: math.unit(9 + 6 / 12, "feet"),
  17456. default: true
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17462. {
  17463. front: {
  17464. height: math.unit(6 + 2 / 12, "feet"),
  17465. weight: math.unit(168, "lb"),
  17466. name: "Front",
  17467. image: {
  17468. source: "./media/characters/elise/front.svg",
  17469. extra: 276 / 271
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(6 + 2 / 12, "feet"),
  17477. default: true
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(5 + 10 / 12, "feet"),
  17486. weight: math.unit(210, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/glade/front.svg",
  17490. extra: 258 / 247,
  17491. bottom: 0.008
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(5 + 10 / 12, "feet"),
  17499. default: true
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(5 + 10 / 12, "feet"),
  17508. weight: math.unit(129, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/rina/front.svg",
  17512. extra: 266 / 255,
  17513. bottom: 0.005
  17514. }
  17515. },
  17516. },
  17517. [
  17518. {
  17519. name: "Normal",
  17520. height: math.unit(5 + 10 / 12, "feet"),
  17521. default: true
  17522. },
  17523. ]
  17524. ))
  17525. characterMakers.push(() => makeCharacter(
  17526. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17527. {
  17528. front: {
  17529. height: math.unit(6 + 1 / 12, "feet"),
  17530. weight: math.unit(192, "lb"),
  17531. name: "Front",
  17532. image: {
  17533. source: "./media/characters/veronica/front.svg",
  17534. extra: 319 / 309,
  17535. bottom: 0.005
  17536. }
  17537. },
  17538. },
  17539. [
  17540. {
  17541. name: "Normal",
  17542. height: math.unit(6 + 1 / 12, "feet"),
  17543. default: true
  17544. },
  17545. ]
  17546. ))
  17547. characterMakers.push(() => makeCharacter(
  17548. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17549. {
  17550. front: {
  17551. height: math.unit(9 + 3 / 12, "feet"),
  17552. weight: math.unit(1100, "lb"),
  17553. name: "Front",
  17554. image: {
  17555. source: "./media/characters/braxton/front.svg",
  17556. extra: 1057 / 984,
  17557. bottom: 0.05
  17558. }
  17559. },
  17560. },
  17561. [
  17562. {
  17563. name: "Normal",
  17564. height: math.unit(9 + 3 / 12, "feet")
  17565. },
  17566. {
  17567. name: "Giant",
  17568. height: math.unit(300, "feet"),
  17569. default: true
  17570. },
  17571. {
  17572. name: "Macro",
  17573. height: math.unit(700, "feet")
  17574. },
  17575. {
  17576. name: "Megamacro",
  17577. height: math.unit(6000, "feet")
  17578. },
  17579. ]
  17580. ))
  17581. characterMakers.push(() => makeCharacter(
  17582. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17583. {
  17584. front: {
  17585. height: math.unit(6 + 7 / 12, "feet"),
  17586. weight: math.unit(150, "lb"),
  17587. name: "Front",
  17588. image: {
  17589. source: "./media/characters/blue-feyonics/front.svg",
  17590. extra: 1403 / 1306,
  17591. bottom: 0.047
  17592. }
  17593. },
  17594. },
  17595. [
  17596. {
  17597. name: "Normal",
  17598. height: math.unit(6 + 7 / 12, "feet"),
  17599. default: true
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17605. {
  17606. front: {
  17607. height: math.unit(1.8, "meters"),
  17608. weight: math.unit(60, "kg"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/maxwell/front.svg",
  17612. extra: 2060 / 1873
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Micro",
  17619. height: math.unit(1, "mm")
  17620. },
  17621. {
  17622. name: "Normal",
  17623. height: math.unit(1.8, "meter"),
  17624. default: true
  17625. },
  17626. {
  17627. name: "Macro",
  17628. height: math.unit(30, "meters")
  17629. },
  17630. {
  17631. name: "Megamacro",
  17632. height: math.unit(10, "km")
  17633. },
  17634. ]
  17635. ))
  17636. characterMakers.push(() => makeCharacter(
  17637. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17638. {
  17639. front: {
  17640. height: math.unit(6, "feet"),
  17641. weight: math.unit(150, "lb"),
  17642. name: "Front",
  17643. image: {
  17644. source: "./media/characters/jack/front.svg",
  17645. extra: 1754 / 1640,
  17646. bottom: 0.01
  17647. }
  17648. },
  17649. },
  17650. [
  17651. {
  17652. name: "Normal",
  17653. height: math.unit(80000, "feet"),
  17654. default: true
  17655. },
  17656. {
  17657. name: "Max size",
  17658. height: math.unit(10, "lightyears")
  17659. },
  17660. ]
  17661. ))
  17662. characterMakers.push(() => makeCharacter(
  17663. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17664. {
  17665. urban: {
  17666. height: math.unit(5, "feet"),
  17667. weight: math.unit(240, "lb"),
  17668. name: "Urban",
  17669. image: {
  17670. source: "./media/characters/cafat/urban.svg",
  17671. extra: 1223/1126,
  17672. bottom: 205/1428
  17673. }
  17674. },
  17675. summer: {
  17676. height: math.unit(5, "feet"),
  17677. weight: math.unit(240, "lb"),
  17678. name: "Summer",
  17679. image: {
  17680. source: "./media/characters/cafat/summer.svg",
  17681. extra: 1223/1126,
  17682. bottom: 205/1428
  17683. }
  17684. },
  17685. winter: {
  17686. height: math.unit(5, "feet"),
  17687. weight: math.unit(240, "lb"),
  17688. name: "Winter",
  17689. image: {
  17690. source: "./media/characters/cafat/winter.svg",
  17691. extra: 1223/1126,
  17692. bottom: 205/1428
  17693. }
  17694. },
  17695. lingerie: {
  17696. height: math.unit(5, "feet"),
  17697. weight: math.unit(240, "lb"),
  17698. name: "Lingerie",
  17699. image: {
  17700. source: "./media/characters/cafat/lingerie.svg",
  17701. extra: 1223/1126,
  17702. bottom: 205/1428
  17703. }
  17704. },
  17705. upright: {
  17706. height: math.unit(6.3, "feet"),
  17707. weight: math.unit(240, "lb"),
  17708. name: "Upright",
  17709. image: {
  17710. source: "./media/characters/cafat/upright.svg",
  17711. bottom: 0.01
  17712. }
  17713. },
  17714. uprightFull: {
  17715. height: math.unit(6.3, "feet"),
  17716. weight: math.unit(240, "lb"),
  17717. name: "Upright (Full)",
  17718. image: {
  17719. source: "./media/characters/cafat/upright-full.svg",
  17720. bottom: 0.01
  17721. }
  17722. },
  17723. },
  17724. [
  17725. {
  17726. name: "Small",
  17727. height: math.unit(5, "feet"),
  17728. default: true
  17729. },
  17730. {
  17731. name: "Large",
  17732. height: math.unit(13, "feet")
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17738. {
  17739. front: {
  17740. height: math.unit(6, "feet"),
  17741. weight: math.unit(150, "lb"),
  17742. name: "Front",
  17743. image: {
  17744. source: "./media/characters/verin-raharra/front.svg",
  17745. extra: 5019 / 4835,
  17746. bottom: 0.023
  17747. }
  17748. },
  17749. },
  17750. [
  17751. {
  17752. name: "Normal",
  17753. height: math.unit(7 + 5 / 12, "feet"),
  17754. default: true
  17755. },
  17756. {
  17757. name: "Upsized",
  17758. height: math.unit(20, "feet")
  17759. },
  17760. ]
  17761. ))
  17762. characterMakers.push(() => makeCharacter(
  17763. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17764. {
  17765. front: {
  17766. height: math.unit(7, "feet"),
  17767. weight: math.unit(230, "lb"),
  17768. name: "Front",
  17769. image: {
  17770. source: "./media/characters/nakata/front.svg",
  17771. extra: 1.005,
  17772. bottom: 0.01
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Normal",
  17779. height: math.unit(7, "feet"),
  17780. default: true
  17781. },
  17782. {
  17783. name: "Big",
  17784. height: math.unit(14, "feet")
  17785. },
  17786. {
  17787. name: "Macro",
  17788. height: math.unit(400, "feet")
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17794. {
  17795. front: {
  17796. height: math.unit(4.91, "feet"),
  17797. weight: math.unit(100, "lb"),
  17798. name: "Front",
  17799. image: {
  17800. source: "./media/characters/lily/front.svg",
  17801. extra: 1585 / 1415,
  17802. bottom: 0.02
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(4.91, "feet"),
  17810. default: true
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17816. {
  17817. laying: {
  17818. height: math.unit(4 + 4 / 12, "feet"),
  17819. weight: math.unit(600, "lb"),
  17820. name: "Laying",
  17821. image: {
  17822. source: "./media/characters/sheila/laying.svg",
  17823. extra: 1333 / 1265,
  17824. bottom: 0.16
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(4 + 4 / 12, "feet"),
  17832. default: true
  17833. },
  17834. ]
  17835. ))
  17836. characterMakers.push(() => makeCharacter(
  17837. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17838. {
  17839. front: {
  17840. height: math.unit(6, "feet"),
  17841. weight: math.unit(190, "lb"),
  17842. name: "Front",
  17843. image: {
  17844. source: "./media/characters/sax/front.svg",
  17845. extra: 1187 / 973,
  17846. bottom: 0.042
  17847. }
  17848. },
  17849. },
  17850. [
  17851. {
  17852. name: "Micro",
  17853. height: math.unit(4, "inches"),
  17854. default: true
  17855. },
  17856. ]
  17857. ))
  17858. characterMakers.push(() => makeCharacter(
  17859. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17860. {
  17861. front: {
  17862. height: math.unit(6, "feet"),
  17863. weight: math.unit(150, "lb"),
  17864. name: "Front",
  17865. image: {
  17866. source: "./media/characters/pandora/front.svg",
  17867. extra: 2720 / 2556,
  17868. bottom: 0.015
  17869. }
  17870. },
  17871. back: {
  17872. height: math.unit(6, "feet"),
  17873. weight: math.unit(150, "lb"),
  17874. name: "Back",
  17875. image: {
  17876. source: "./media/characters/pandora/back.svg",
  17877. extra: 2720 / 2556,
  17878. bottom: 0.01
  17879. }
  17880. },
  17881. beans: {
  17882. height: math.unit(6 / 8, "feet"),
  17883. name: "Beans",
  17884. image: {
  17885. source: "./media/characters/pandora/beans.svg"
  17886. }
  17887. },
  17888. collar: {
  17889. height: math.unit(0.31, "feet"),
  17890. name: "Collar",
  17891. image: {
  17892. source: "./media/characters/pandora/collar.svg"
  17893. }
  17894. },
  17895. skirt: {
  17896. height: math.unit(6, "feet"),
  17897. weight: math.unit(150, "lb"),
  17898. name: "Skirt",
  17899. image: {
  17900. source: "./media/characters/pandora/skirt.svg",
  17901. extra: 1622 / 1525,
  17902. bottom: 0.015
  17903. }
  17904. },
  17905. hoodie: {
  17906. height: math.unit(6, "feet"),
  17907. weight: math.unit(150, "lb"),
  17908. name: "Hoodie",
  17909. image: {
  17910. source: "./media/characters/pandora/hoodie.svg",
  17911. extra: 1622 / 1525,
  17912. bottom: 0.015
  17913. }
  17914. },
  17915. casual: {
  17916. height: math.unit(6, "feet"),
  17917. weight: math.unit(150, "lb"),
  17918. name: "Casual",
  17919. image: {
  17920. source: "./media/characters/pandora/casual.svg",
  17921. extra: 1622 / 1525,
  17922. bottom: 0.015
  17923. }
  17924. },
  17925. },
  17926. [
  17927. {
  17928. name: "Normal",
  17929. height: math.unit(6, "feet")
  17930. },
  17931. {
  17932. name: "Big Steppy",
  17933. height: math.unit(1, "km"),
  17934. default: true
  17935. },
  17936. {
  17937. name: "Galactic Steppy",
  17938. height: math.unit(2, "gigameters")
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17944. {
  17945. side: {
  17946. height: math.unit(10, "feet"),
  17947. weight: math.unit(800, "kg"),
  17948. name: "Side",
  17949. image: {
  17950. source: "./media/characters/venio-darcony/side.svg",
  17951. extra: 1373 / 1003,
  17952. bottom: 0.037
  17953. }
  17954. },
  17955. front: {
  17956. height: math.unit(19, "feet"),
  17957. weight: math.unit(800, "kg"),
  17958. name: "Front",
  17959. image: {
  17960. source: "./media/characters/venio-darcony/front.svg"
  17961. }
  17962. },
  17963. back: {
  17964. height: math.unit(19, "feet"),
  17965. weight: math.unit(800, "kg"),
  17966. name: "Back",
  17967. image: {
  17968. source: "./media/characters/venio-darcony/back.svg"
  17969. }
  17970. },
  17971. sideNsfw: {
  17972. height: math.unit(10, "feet"),
  17973. weight: math.unit(800, "kg"),
  17974. name: "Side (NSFW)",
  17975. image: {
  17976. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17977. extra: 1373 / 1003,
  17978. bottom: 0.037
  17979. }
  17980. },
  17981. frontNsfw: {
  17982. height: math.unit(19, "feet"),
  17983. weight: math.unit(800, "kg"),
  17984. name: "Front (NSFW)",
  17985. image: {
  17986. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17987. }
  17988. },
  17989. backNsfw: {
  17990. height: math.unit(19, "feet"),
  17991. weight: math.unit(800, "kg"),
  17992. name: "Back (NSFW)",
  17993. image: {
  17994. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17995. }
  17996. },
  17997. sideArmored: {
  17998. height: math.unit(10, "feet"),
  17999. weight: math.unit(800, "kg"),
  18000. name: "Side (Armored)",
  18001. image: {
  18002. source: "./media/characters/venio-darcony/side-armored.svg",
  18003. extra: 1373 / 1003,
  18004. bottom: 0.037
  18005. }
  18006. },
  18007. frontArmored: {
  18008. height: math.unit(19, "feet"),
  18009. weight: math.unit(900, "kg"),
  18010. name: "Front (Armored)",
  18011. image: {
  18012. source: "./media/characters/venio-darcony/front-armored.svg"
  18013. }
  18014. },
  18015. backArmored: {
  18016. height: math.unit(19, "feet"),
  18017. weight: math.unit(900, "kg"),
  18018. name: "Back (Armored)",
  18019. image: {
  18020. source: "./media/characters/venio-darcony/back-armored.svg"
  18021. }
  18022. },
  18023. sword: {
  18024. height: math.unit(10, "feet"),
  18025. weight: math.unit(50, "lb"),
  18026. name: "Sword",
  18027. image: {
  18028. source: "./media/characters/venio-darcony/sword.svg"
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Normal",
  18035. height: math.unit(10, "feet")
  18036. },
  18037. {
  18038. name: "Macro",
  18039. height: math.unit(130, "feet"),
  18040. default: true
  18041. },
  18042. {
  18043. name: "Macro+",
  18044. height: math.unit(240, "feet")
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18050. {
  18051. front: {
  18052. height: math.unit(6, "feet"),
  18053. weight: math.unit(150, "lb"),
  18054. name: "Front",
  18055. image: {
  18056. source: "./media/characters/veski/front.svg",
  18057. extra: 1299 / 1225,
  18058. bottom: 0.04
  18059. }
  18060. },
  18061. back: {
  18062. height: math.unit(6, "feet"),
  18063. weight: math.unit(150, "lb"),
  18064. name: "Back",
  18065. image: {
  18066. source: "./media/characters/veski/back.svg",
  18067. extra: 1299 / 1225,
  18068. bottom: 0.008
  18069. }
  18070. },
  18071. maw: {
  18072. height: math.unit(1.5 * 1.21, "feet"),
  18073. name: "Maw",
  18074. image: {
  18075. source: "./media/characters/veski/maw.svg"
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Macro",
  18082. height: math.unit(2, "km"),
  18083. default: true
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18089. {
  18090. front: {
  18091. height: math.unit(5 + 7 / 12, "feet"),
  18092. name: "Front",
  18093. image: {
  18094. source: "./media/characters/isabelle/front.svg",
  18095. extra: 2130 / 1976,
  18096. bottom: 0.05
  18097. }
  18098. },
  18099. },
  18100. [
  18101. {
  18102. name: "Supermicro",
  18103. height: math.unit(10, "micrometers")
  18104. },
  18105. {
  18106. name: "Micro",
  18107. height: math.unit(1, "inch")
  18108. },
  18109. {
  18110. name: "Tiny",
  18111. height: math.unit(5, "inches")
  18112. },
  18113. {
  18114. name: "Standard",
  18115. height: math.unit(5 + 7 / 12, "inches")
  18116. },
  18117. {
  18118. name: "Macro",
  18119. height: math.unit(80, "meters"),
  18120. default: true
  18121. },
  18122. {
  18123. name: "Megamacro",
  18124. height: math.unit(250, "meters")
  18125. },
  18126. {
  18127. name: "Gigamacro",
  18128. height: math.unit(5, "km")
  18129. },
  18130. {
  18131. name: "Cosmic",
  18132. height: math.unit(2.5e6, "miles")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(6, "feet"),
  18141. weight: math.unit(150, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/hanzo/front.svg",
  18145. extra: 374 / 344,
  18146. bottom: 0.02
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Normal",
  18153. height: math.unit(8, "feet"),
  18154. default: true
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18160. {
  18161. front: {
  18162. height: math.unit(7, "feet"),
  18163. weight: math.unit(130, "lb"),
  18164. name: "Front",
  18165. image: {
  18166. source: "./media/characters/anna/front.svg",
  18167. extra: 169 / 145,
  18168. bottom: 0.06
  18169. }
  18170. },
  18171. full: {
  18172. height: math.unit(4.96, "feet"),
  18173. weight: math.unit(220, "lb"),
  18174. name: "Full",
  18175. image: {
  18176. source: "./media/characters/anna/full.svg",
  18177. extra: 138 / 114,
  18178. bottom: 0.15
  18179. }
  18180. },
  18181. tongue: {
  18182. height: math.unit(2.53, "feet"),
  18183. name: "Tongue",
  18184. image: {
  18185. source: "./media/characters/anna/tongue.svg"
  18186. }
  18187. },
  18188. },
  18189. [
  18190. {
  18191. name: "Normal",
  18192. height: math.unit(7, "feet"),
  18193. default: true
  18194. },
  18195. ]
  18196. ))
  18197. characterMakers.push(() => makeCharacter(
  18198. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18199. {
  18200. front: {
  18201. height: math.unit(7, "feet"),
  18202. weight: math.unit(150, "lb"),
  18203. name: "Front",
  18204. image: {
  18205. source: "./media/characters/ian-corvid/front.svg",
  18206. extra: 150 / 142,
  18207. bottom: 0.02
  18208. }
  18209. },
  18210. back: {
  18211. height: math.unit(7, "feet"),
  18212. weight: math.unit(150, "lb"),
  18213. name: "Back",
  18214. image: {
  18215. source: "./media/characters/ian-corvid/back.svg",
  18216. extra: 150 / 143,
  18217. bottom: 0.01
  18218. }
  18219. },
  18220. stomping: {
  18221. height: math.unit(7, "feet"),
  18222. weight: math.unit(150, "lb"),
  18223. name: "Stomping",
  18224. image: {
  18225. source: "./media/characters/ian-corvid/stomping.svg",
  18226. extra: 76 / 72
  18227. }
  18228. },
  18229. sitting: {
  18230. height: math.unit(7 / 1.8, "feet"),
  18231. weight: math.unit(150, "lb"),
  18232. name: "Sitting",
  18233. image: {
  18234. source: "./media/characters/ian-corvid/sitting.svg",
  18235. extra: 1400 / 1269,
  18236. bottom: 0.15
  18237. }
  18238. },
  18239. },
  18240. [
  18241. {
  18242. name: "Tiny Microw",
  18243. height: math.unit(1, "inch")
  18244. },
  18245. {
  18246. name: "Microw",
  18247. height: math.unit(6, "inches")
  18248. },
  18249. {
  18250. name: "Crow",
  18251. height: math.unit(7 + 1 / 12, "feet"),
  18252. default: true
  18253. },
  18254. {
  18255. name: "Macrow",
  18256. height: math.unit(176, "feet")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18262. {
  18263. front: {
  18264. height: math.unit(5 + 7 / 12, "feet"),
  18265. weight: math.unit(147, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/natalie-kellon/front.svg",
  18269. extra: 1214 / 1141,
  18270. bottom: 0.02
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Micro",
  18277. height: math.unit(1 / 16, "inch")
  18278. },
  18279. {
  18280. name: "Tiny",
  18281. height: math.unit(4, "inches")
  18282. },
  18283. {
  18284. name: "Normal",
  18285. height: math.unit(5 + 7 / 12, "feet"),
  18286. default: true
  18287. },
  18288. {
  18289. name: "Amazon",
  18290. height: math.unit(12, "feet")
  18291. },
  18292. {
  18293. name: "Giantess",
  18294. height: math.unit(160, "meters")
  18295. },
  18296. {
  18297. name: "Titaness",
  18298. height: math.unit(800, "meters")
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18304. {
  18305. front: {
  18306. height: math.unit(6, "feet"),
  18307. weight: math.unit(150, "lb"),
  18308. name: "Front",
  18309. image: {
  18310. source: "./media/characters/alluria/front.svg",
  18311. extra: 806 / 738,
  18312. bottom: 0.01
  18313. }
  18314. },
  18315. side: {
  18316. height: math.unit(6, "feet"),
  18317. weight: math.unit(150, "lb"),
  18318. name: "Side",
  18319. image: {
  18320. source: "./media/characters/alluria/side.svg",
  18321. extra: 800 / 750,
  18322. }
  18323. },
  18324. back: {
  18325. height: math.unit(6, "feet"),
  18326. weight: math.unit(150, "lb"),
  18327. name: "Back",
  18328. image: {
  18329. source: "./media/characters/alluria/back.svg",
  18330. extra: 806 / 738,
  18331. }
  18332. },
  18333. frontMaid: {
  18334. height: math.unit(6, "feet"),
  18335. weight: math.unit(150, "lb"),
  18336. name: "Front (Maid)",
  18337. image: {
  18338. source: "./media/characters/alluria/front-maid.svg",
  18339. extra: 806 / 738,
  18340. bottom: 0.01
  18341. }
  18342. },
  18343. sideMaid: {
  18344. height: math.unit(6, "feet"),
  18345. weight: math.unit(150, "lb"),
  18346. name: "Side (Maid)",
  18347. image: {
  18348. source: "./media/characters/alluria/side-maid.svg",
  18349. extra: 800 / 750,
  18350. bottom: 0.005
  18351. }
  18352. },
  18353. backMaid: {
  18354. height: math.unit(6, "feet"),
  18355. weight: math.unit(150, "lb"),
  18356. name: "Back (Maid)",
  18357. image: {
  18358. source: "./media/characters/alluria/back-maid.svg",
  18359. extra: 806 / 738,
  18360. }
  18361. },
  18362. },
  18363. [
  18364. {
  18365. name: "Micro",
  18366. height: math.unit(6, "inches"),
  18367. default: true
  18368. },
  18369. ]
  18370. ))
  18371. characterMakers.push(() => makeCharacter(
  18372. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18373. {
  18374. front: {
  18375. height: math.unit(6, "feet"),
  18376. weight: math.unit(150, "lb"),
  18377. name: "Front",
  18378. image: {
  18379. source: "./media/characters/kyle/front.svg",
  18380. extra: 1069 / 962,
  18381. bottom: 77.228 / 1727.45
  18382. }
  18383. },
  18384. },
  18385. [
  18386. {
  18387. name: "Macro",
  18388. height: math.unit(150, "feet"),
  18389. default: true
  18390. },
  18391. ]
  18392. ))
  18393. characterMakers.push(() => makeCharacter(
  18394. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18395. {
  18396. front: {
  18397. height: math.unit(6, "feet"),
  18398. weight: math.unit(300, "lb"),
  18399. name: "Front",
  18400. image: {
  18401. source: "./media/characters/duncan/front.svg",
  18402. extra: 1650 / 1482,
  18403. bottom: 0.05
  18404. }
  18405. },
  18406. },
  18407. [
  18408. {
  18409. name: "Macro",
  18410. height: math.unit(100, "feet"),
  18411. default: true
  18412. },
  18413. ]
  18414. ))
  18415. characterMakers.push(() => makeCharacter(
  18416. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18417. {
  18418. front: {
  18419. height: math.unit(5 + 4 / 12, "feet"),
  18420. weight: math.unit(220, "lb"),
  18421. name: "Front",
  18422. image: {
  18423. source: "./media/characters/memory/front.svg",
  18424. extra: 3641 / 3545,
  18425. bottom: 0.03
  18426. }
  18427. },
  18428. back: {
  18429. height: math.unit(5 + 4 / 12, "feet"),
  18430. weight: math.unit(220, "lb"),
  18431. name: "Back",
  18432. image: {
  18433. source: "./media/characters/memory/back.svg",
  18434. extra: 3641 / 3545,
  18435. bottom: 0.025
  18436. }
  18437. },
  18438. frontSkirt: {
  18439. height: math.unit(5 + 4 / 12, "feet"),
  18440. weight: math.unit(220, "lb"),
  18441. name: "Front (Skirt)",
  18442. image: {
  18443. source: "./media/characters/memory/front-skirt.svg",
  18444. extra: 3641 / 3545,
  18445. bottom: 0.03
  18446. }
  18447. },
  18448. frontDress: {
  18449. height: math.unit(5 + 4 / 12, "feet"),
  18450. weight: math.unit(220, "lb"),
  18451. name: "Front (Dress)",
  18452. image: {
  18453. source: "./media/characters/memory/front-dress.svg",
  18454. extra: 3641 / 3545,
  18455. bottom: 0.03
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Micro",
  18462. height: math.unit(6, "inches"),
  18463. default: true
  18464. },
  18465. {
  18466. name: "Normal",
  18467. height: math.unit(5 + 4 / 12, "feet")
  18468. },
  18469. ]
  18470. ))
  18471. characterMakers.push(() => makeCharacter(
  18472. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18473. {
  18474. front: {
  18475. height: math.unit(4 + 11 / 12, "feet"),
  18476. weight: math.unit(100, "lb"),
  18477. name: "Front",
  18478. image: {
  18479. source: "./media/characters/luno/front.svg",
  18480. extra: 1535 / 1487,
  18481. bottom: 0.03
  18482. }
  18483. },
  18484. },
  18485. [
  18486. {
  18487. name: "Micro",
  18488. height: math.unit(3, "inches")
  18489. },
  18490. {
  18491. name: "Normal",
  18492. height: math.unit(4 + 11 / 12, "feet"),
  18493. default: true
  18494. },
  18495. {
  18496. name: "Macro",
  18497. height: math.unit(300, "feet")
  18498. },
  18499. {
  18500. name: "Megamacro",
  18501. height: math.unit(700, "miles")
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18507. {
  18508. front: {
  18509. height: math.unit(6 + 2 / 12, "feet"),
  18510. weight: math.unit(170, "lb"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/jamesy/front.svg",
  18514. extra: 440 / 382,
  18515. bottom: 0.005
  18516. }
  18517. },
  18518. },
  18519. [
  18520. {
  18521. name: "Micro",
  18522. height: math.unit(3, "inches")
  18523. },
  18524. {
  18525. name: "Normal",
  18526. height: math.unit(6 + 2 / 12, "feet"),
  18527. default: true
  18528. },
  18529. {
  18530. name: "Macro",
  18531. height: math.unit(300, "feet")
  18532. },
  18533. {
  18534. name: "Megamacro",
  18535. height: math.unit(700, "miles")
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(6, "feet"),
  18544. weight: math.unit(160, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/mark/front.svg",
  18548. extra: 3300 / 3100,
  18549. bottom: 136.42 / 3440.47
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Macro",
  18556. height: math.unit(120, "meters")
  18557. },
  18558. {
  18559. name: "Bigger Macro",
  18560. height: math.unit(350, "meters")
  18561. },
  18562. {
  18563. name: "Megamacro",
  18564. height: math.unit(8, "km"),
  18565. default: true
  18566. },
  18567. {
  18568. name: "Continental",
  18569. height: math.unit(4550, "km")
  18570. },
  18571. {
  18572. name: "Planetary",
  18573. height: math.unit(65000, "km")
  18574. },
  18575. ]
  18576. ))
  18577. characterMakers.push(() => makeCharacter(
  18578. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18579. {
  18580. front: {
  18581. height: math.unit(6, "feet"),
  18582. weight: math.unit(400, "lb"),
  18583. name: "Front",
  18584. image: {
  18585. source: "./media/characters/mac/front.svg",
  18586. extra: 1048 / 987.7,
  18587. bottom: 60 / 1107.6,
  18588. }
  18589. },
  18590. },
  18591. [
  18592. {
  18593. name: "Macro",
  18594. height: math.unit(500, "feet"),
  18595. default: true
  18596. },
  18597. ]
  18598. ))
  18599. characterMakers.push(() => makeCharacter(
  18600. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18601. {
  18602. front: {
  18603. height: math.unit(5 + 2 / 12, "feet"),
  18604. weight: math.unit(190, "lb"),
  18605. name: "Front",
  18606. image: {
  18607. source: "./media/characters/bari/front.svg",
  18608. extra: 3156 / 2880,
  18609. bottom: 0.03
  18610. }
  18611. },
  18612. back: {
  18613. height: math.unit(5 + 2 / 12, "feet"),
  18614. weight: math.unit(190, "lb"),
  18615. name: "Back",
  18616. image: {
  18617. source: "./media/characters/bari/back.svg",
  18618. extra: 3260 / 2834,
  18619. bottom: 0.025
  18620. }
  18621. },
  18622. frontPlush: {
  18623. height: math.unit(5 + 2 / 12, "feet"),
  18624. weight: math.unit(190, "lb"),
  18625. name: "Front (Plush)",
  18626. image: {
  18627. source: "./media/characters/bari/front-plush.svg",
  18628. extra: 1112 / 1061,
  18629. bottom: 0.002
  18630. }
  18631. },
  18632. },
  18633. [
  18634. {
  18635. name: "Micro",
  18636. height: math.unit(3, "inches")
  18637. },
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(5 + 2 / 12, "feet"),
  18641. default: true
  18642. },
  18643. {
  18644. name: "Macro",
  18645. height: math.unit(20, "feet")
  18646. },
  18647. ]
  18648. ))
  18649. characterMakers.push(() => makeCharacter(
  18650. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18651. {
  18652. front: {
  18653. height: math.unit(6 + 1 / 12, "feet"),
  18654. weight: math.unit(275, "lb"),
  18655. name: "Front",
  18656. image: {
  18657. source: "./media/characters/hunter-misha-raven/front.svg"
  18658. }
  18659. },
  18660. },
  18661. [
  18662. {
  18663. name: "Mortal",
  18664. height: math.unit(6 + 1 / 12, "feet")
  18665. },
  18666. {
  18667. name: "Divine",
  18668. height: math.unit(1.12134e34, "parsecs"),
  18669. default: true
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18675. {
  18676. front: {
  18677. height: math.unit(6 + 3 / 12, "feet"),
  18678. weight: math.unit(220, "lb"),
  18679. name: "Front",
  18680. image: {
  18681. source: "./media/characters/max-calore/front.svg",
  18682. extra: 1700 / 1648,
  18683. bottom: 0.01
  18684. }
  18685. },
  18686. back: {
  18687. height: math.unit(6 + 3 / 12, "feet"),
  18688. weight: math.unit(220, "lb"),
  18689. name: "Back",
  18690. image: {
  18691. source: "./media/characters/max-calore/back.svg",
  18692. extra: 1700 / 1648,
  18693. bottom: 0.01
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(6 + 3 / 12, "feet"),
  18701. default: true
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18707. {
  18708. side: {
  18709. height: math.unit(2 + 8 / 12, "feet"),
  18710. weight: math.unit(99, "lb"),
  18711. name: "Side",
  18712. image: {
  18713. source: "./media/characters/aspen/side.svg",
  18714. extra: 152 / 138,
  18715. bottom: 0.032
  18716. }
  18717. },
  18718. },
  18719. [
  18720. {
  18721. name: "Normal",
  18722. height: math.unit(2 + 8 / 12, "feet"),
  18723. default: true
  18724. },
  18725. ]
  18726. ))
  18727. characterMakers.push(() => makeCharacter(
  18728. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18729. {
  18730. side: {
  18731. height: math.unit(3 + 2 / 12, "feet"),
  18732. weight: math.unit(224, "lb"),
  18733. name: "Side",
  18734. image: {
  18735. source: "./media/characters/sheila-feral-wolf/side.svg",
  18736. extra: 179 / 166,
  18737. bottom: 0.03
  18738. }
  18739. },
  18740. },
  18741. [
  18742. {
  18743. name: "Normal",
  18744. height: math.unit(3 + 2 / 12, "feet"),
  18745. default: true
  18746. },
  18747. ]
  18748. ))
  18749. characterMakers.push(() => makeCharacter(
  18750. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18751. {
  18752. side: {
  18753. height: math.unit(1 + 9 / 12, "feet"),
  18754. weight: math.unit(38, "lb"),
  18755. name: "Side",
  18756. image: {
  18757. source: "./media/characters/michelle/side.svg",
  18758. extra: 147 / 136.7,
  18759. bottom: 0.03
  18760. }
  18761. },
  18762. },
  18763. [
  18764. {
  18765. name: "Normal",
  18766. height: math.unit(1 + 9 / 12, "feet"),
  18767. default: true
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18773. {
  18774. front: {
  18775. height: math.unit(1.54, "feet"),
  18776. weight: math.unit(50, "lb"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/nino/front.svg"
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(1.54, "feet"),
  18787. default: true
  18788. },
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18793. {
  18794. front: {
  18795. height: math.unit(1.49, "feet"),
  18796. weight: math.unit(45, "lb"),
  18797. name: "Front",
  18798. image: {
  18799. source: "./media/characters/viola/front.svg"
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(1.49, "feet"),
  18807. default: true
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(6 + 5 / 12, "feet"),
  18816. weight: math.unit(580, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/atlas/front.svg",
  18820. extra: 298.5 / 290,
  18821. bottom: 0.015
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(6 + 5 / 12, "feet"),
  18829. default: true
  18830. },
  18831. ]
  18832. ))
  18833. characterMakers.push(() => makeCharacter(
  18834. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18835. {
  18836. side: {
  18837. height: math.unit(15.6, "inches"),
  18838. weight: math.unit(10, "lb"),
  18839. name: "Side",
  18840. image: {
  18841. source: "./media/characters/davy/side.svg",
  18842. extra: 200 / 170,
  18843. bottom: 0.01
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(15.6, "inches"),
  18851. default: true
  18852. },
  18853. ]
  18854. ))
  18855. characterMakers.push(() => makeCharacter(
  18856. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18857. {
  18858. side: {
  18859. height: math.unit(4 + 8 / 12, "feet"),
  18860. weight: math.unit(166, "lb"),
  18861. name: "Side",
  18862. image: {
  18863. source: "./media/characters/fiona/side.svg",
  18864. extra: 232 / 220,
  18865. bottom: 0.03
  18866. }
  18867. },
  18868. },
  18869. [
  18870. {
  18871. name: "Normal",
  18872. height: math.unit(4 + 8 / 12, "feet"),
  18873. default: true
  18874. },
  18875. ]
  18876. ))
  18877. characterMakers.push(() => makeCharacter(
  18878. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18879. {
  18880. front: {
  18881. height: math.unit(26, "inches"),
  18882. weight: math.unit(35, "lb"),
  18883. name: "Front",
  18884. image: {
  18885. source: "./media/characters/lyla/front.svg",
  18886. bottom: 0.1
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(3, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18900. {
  18901. side: {
  18902. height: math.unit(1.8, "feet"),
  18903. weight: math.unit(44, "lb"),
  18904. name: "Side",
  18905. image: {
  18906. source: "./media/characters/perseus/side.svg",
  18907. bottom: 0.21
  18908. }
  18909. },
  18910. },
  18911. [
  18912. {
  18913. name: "Normal",
  18914. height: math.unit(1.8, "feet"),
  18915. default: true
  18916. },
  18917. ]
  18918. ))
  18919. characterMakers.push(() => makeCharacter(
  18920. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18921. {
  18922. side: {
  18923. height: math.unit(4 + 2 / 12, "feet"),
  18924. weight: math.unit(20, "lb"),
  18925. name: "Side",
  18926. image: {
  18927. source: "./media/characters/remus/side.svg"
  18928. }
  18929. },
  18930. },
  18931. [
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(4 + 2 / 12, "feet"),
  18935. default: true
  18936. },
  18937. ]
  18938. ))
  18939. characterMakers.push(() => makeCharacter(
  18940. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18941. {
  18942. front: {
  18943. height: math.unit(4 + 11 / 12, "feet"),
  18944. weight: math.unit(114, "lb"),
  18945. name: "Front",
  18946. image: {
  18947. source: "./media/characters/raf/front.svg",
  18948. extra: 1504/1339,
  18949. bottom: 26/1530
  18950. }
  18951. },
  18952. side: {
  18953. height: math.unit(4 + 11 / 12, "feet"),
  18954. weight: math.unit(114, "lb"),
  18955. name: "Side",
  18956. image: {
  18957. source: "./media/characters/raf/side.svg",
  18958. extra: 1466/1316,
  18959. bottom: 29/1495
  18960. }
  18961. },
  18962. paw: {
  18963. height: math.unit(1.45, "feet"),
  18964. name: "Paw",
  18965. image: {
  18966. source: "./media/characters/raf/paw.svg"
  18967. },
  18968. extraAttributes: {
  18969. "toeSize": {
  18970. name: "Toe Size",
  18971. power: 2,
  18972. type: "area",
  18973. base: math.unit(0.004, "m^2")
  18974. },
  18975. "padSize": {
  18976. name: "Pad Size",
  18977. power: 2,
  18978. type: "area",
  18979. base: math.unit(0.04, "m^2")
  18980. },
  18981. "footSize": {
  18982. name: "Foot Size",
  18983. power: 2,
  18984. type: "area",
  18985. base: math.unit(0.08, "m^2")
  18986. },
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Micro",
  18993. height: math.unit(2, "inches")
  18994. },
  18995. {
  18996. name: "Normal",
  18997. height: math.unit(4 + 11 / 12, "feet"),
  18998. default: true
  18999. },
  19000. {
  19001. name: "Macro",
  19002. height: math.unit(70, "feet")
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(1.5, "meters"),
  19011. weight: math.unit(68, "kg"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/liam-einarr/front.svg",
  19015. extra: 2822 / 2666
  19016. }
  19017. },
  19018. back: {
  19019. height: math.unit(1.5, "meters"),
  19020. weight: math.unit(68, "kg"),
  19021. name: "Back",
  19022. image: {
  19023. source: "./media/characters/liam-einarr/back.svg",
  19024. extra: 2822 / 2666,
  19025. bottom: 0.015
  19026. }
  19027. },
  19028. },
  19029. [
  19030. {
  19031. name: "Normal",
  19032. height: math.unit(1.5, "meters"),
  19033. default: true
  19034. },
  19035. {
  19036. name: "Macro",
  19037. height: math.unit(150, "meters")
  19038. },
  19039. {
  19040. name: "Megamacro",
  19041. height: math.unit(35, "km")
  19042. },
  19043. ]
  19044. ))
  19045. characterMakers.push(() => makeCharacter(
  19046. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19047. {
  19048. front: {
  19049. height: math.unit(6, "feet"),
  19050. weight: math.unit(75, "kg"),
  19051. name: "Front",
  19052. image: {
  19053. source: "./media/characters/linda/front.svg",
  19054. extra: 930 / 874,
  19055. bottom: 0.004
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Normal",
  19062. height: math.unit(6, "feet"),
  19063. default: true
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19069. {
  19070. front: {
  19071. height: math.unit(6 + 8 / 12, "feet"),
  19072. weight: math.unit(220, "lb"),
  19073. name: "Front",
  19074. image: {
  19075. source: "./media/characters/caylex/front.svg",
  19076. extra: 821 / 772,
  19077. bottom: 0.07
  19078. }
  19079. },
  19080. back: {
  19081. height: math.unit(6 + 8 / 12, "feet"),
  19082. weight: math.unit(220, "lb"),
  19083. name: "Back",
  19084. image: {
  19085. source: "./media/characters/caylex/back.svg",
  19086. extra: 821 / 772,
  19087. bottom: 0.022
  19088. }
  19089. },
  19090. hand: {
  19091. height: math.unit(1.25, "feet"),
  19092. name: "Hand",
  19093. image: {
  19094. source: "./media/characters/caylex/hand.svg"
  19095. }
  19096. },
  19097. foot: {
  19098. height: math.unit(1.6, "feet"),
  19099. name: "Foot",
  19100. image: {
  19101. source: "./media/characters/caylex/foot.svg"
  19102. }
  19103. },
  19104. armored: {
  19105. height: math.unit(6 + 8 / 12, "feet"),
  19106. weight: math.unit(250, "lb"),
  19107. name: "Armored",
  19108. image: {
  19109. source: "./media/characters/caylex/armored.svg",
  19110. extra: 1420 / 1310,
  19111. bottom: 0.045
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Normal",
  19118. height: math.unit(6 + 8 / 12, "feet"),
  19119. default: true
  19120. },
  19121. {
  19122. name: "Normal+",
  19123. height: math.unit(12, "feet")
  19124. },
  19125. ]
  19126. ))
  19127. characterMakers.push(() => makeCharacter(
  19128. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19129. {
  19130. front: {
  19131. height: math.unit(7 + 6 / 12, "feet"),
  19132. weight: math.unit(288, "lb"),
  19133. name: "Front",
  19134. image: {
  19135. source: "./media/characters/alana/front.svg",
  19136. extra: 679 / 653,
  19137. bottom: 22.5 / 701
  19138. }
  19139. },
  19140. },
  19141. [
  19142. {
  19143. name: "Normal",
  19144. height: math.unit(7 + 6 / 12, "feet")
  19145. },
  19146. {
  19147. name: "Large",
  19148. height: math.unit(50, "feet")
  19149. },
  19150. {
  19151. name: "Macro",
  19152. height: math.unit(100, "feet"),
  19153. default: true
  19154. },
  19155. {
  19156. name: "Macro+",
  19157. height: math.unit(200, "feet")
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19163. {
  19164. front: {
  19165. height: math.unit(6 + 1 / 12, "feet"),
  19166. weight: math.unit(210, "lb"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/hasani/front.svg",
  19170. extra: 244 / 232,
  19171. bottom: 0.01
  19172. }
  19173. },
  19174. back: {
  19175. height: math.unit(6 + 1 / 12, "feet"),
  19176. weight: math.unit(210, "lb"),
  19177. name: "Back",
  19178. image: {
  19179. source: "./media/characters/hasani/back.svg",
  19180. extra: 244 / 232,
  19181. bottom: 0.01
  19182. }
  19183. },
  19184. },
  19185. [
  19186. {
  19187. name: "Normal",
  19188. height: math.unit(6 + 1 / 12, "feet")
  19189. },
  19190. {
  19191. name: "Macro",
  19192. height: math.unit(175, "feet"),
  19193. default: true
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19199. {
  19200. front: {
  19201. height: math.unit(1.82, "meters"),
  19202. weight: math.unit(140, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/nita/front.svg",
  19206. extra: 2473 / 2363,
  19207. bottom: 0.01
  19208. }
  19209. },
  19210. },
  19211. [
  19212. {
  19213. name: "Normal",
  19214. height: math.unit(1.82, "m")
  19215. },
  19216. {
  19217. name: "Macro",
  19218. height: math.unit(300, "m")
  19219. },
  19220. {
  19221. name: "Mistake Canon",
  19222. height: math.unit(0.5, "miles"),
  19223. default: true
  19224. },
  19225. {
  19226. name: "Big Mistake",
  19227. height: math.unit(13, "miles")
  19228. },
  19229. {
  19230. name: "Playing God",
  19231. height: math.unit(2450, "miles")
  19232. },
  19233. ]
  19234. ))
  19235. characterMakers.push(() => makeCharacter(
  19236. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19237. {
  19238. front: {
  19239. height: math.unit(4, "feet"),
  19240. weight: math.unit(120, "lb"),
  19241. name: "Front",
  19242. image: {
  19243. source: "./media/characters/shiriko/front.svg",
  19244. extra: 970/934,
  19245. bottom: 5/975
  19246. }
  19247. },
  19248. },
  19249. [
  19250. {
  19251. name: "Normal",
  19252. height: math.unit(4, "feet"),
  19253. default: true
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19259. {
  19260. front: {
  19261. height: math.unit(6, "feet"),
  19262. name: "front",
  19263. image: {
  19264. source: "./media/characters/deja/front.svg",
  19265. extra: 926 / 840,
  19266. bottom: 0.07
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Planck Length",
  19273. height: math.unit(1.6e-35, "meters")
  19274. },
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(30.48, "meters"),
  19278. default: true
  19279. },
  19280. {
  19281. name: "Universal",
  19282. height: math.unit(8.8e26, "meters")
  19283. },
  19284. ]
  19285. ))
  19286. characterMakers.push(() => makeCharacter(
  19287. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19288. {
  19289. side: {
  19290. height: math.unit(8, "feet"),
  19291. weight: math.unit(6300, "lb"),
  19292. name: "Side",
  19293. image: {
  19294. source: "./media/characters/anima/side.svg",
  19295. bottom: 0.035
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(8, "feet"),
  19303. default: true
  19304. },
  19305. ]
  19306. ))
  19307. characterMakers.push(() => makeCharacter(
  19308. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19309. {
  19310. front: {
  19311. height: math.unit(8, "feet"),
  19312. weight: math.unit(350, "lb"),
  19313. name: "Front",
  19314. image: {
  19315. source: "./media/characters/bianca/front.svg",
  19316. extra: 234 / 225,
  19317. bottom: 0.03
  19318. }
  19319. },
  19320. },
  19321. [
  19322. {
  19323. name: "Normal",
  19324. height: math.unit(8, "feet"),
  19325. default: true
  19326. },
  19327. ]
  19328. ))
  19329. characterMakers.push(() => makeCharacter(
  19330. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19331. {
  19332. front: {
  19333. height: math.unit(11 + 5/12, "feet"),
  19334. weight: math.unit(1200, "lb"),
  19335. name: "Front",
  19336. image: {
  19337. source: "./media/characters/adinia/front.svg",
  19338. extra: 1767/1641,
  19339. bottom: 44/1811
  19340. },
  19341. extraAttributes: {
  19342. "energyIntake": {
  19343. name: "Energy Intake",
  19344. power: 3,
  19345. type: "energy",
  19346. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19347. },
  19348. }
  19349. },
  19350. back: {
  19351. height: math.unit(11 + 5/12, "feet"),
  19352. weight: math.unit(1200, "lb"),
  19353. name: "Back",
  19354. image: {
  19355. source: "./media/characters/adinia/back.svg",
  19356. extra: 1834/1684,
  19357. bottom: 14/1848
  19358. },
  19359. extraAttributes: {
  19360. "energyIntake": {
  19361. name: "Energy Intake",
  19362. power: 3,
  19363. type: "energy",
  19364. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19365. },
  19366. }
  19367. },
  19368. maw: {
  19369. height: math.unit(3.79, "feet"),
  19370. name: "Maw",
  19371. image: {
  19372. source: "./media/characters/adinia/maw.svg"
  19373. }
  19374. },
  19375. rump: {
  19376. height: math.unit(4.6, "feet"),
  19377. name: "Rump",
  19378. image: {
  19379. source: "./media/characters/adinia/rump.svg"
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(11 + 5 / 12, "feet"),
  19387. default: true
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19393. {
  19394. front: {
  19395. height: math.unit(3, "meters"),
  19396. weight: math.unit(200, "kg"),
  19397. name: "Front",
  19398. image: {
  19399. source: "./media/characters/lykasa/front.svg",
  19400. extra: 1076 / 976,
  19401. bottom: 0.06
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Normal",
  19408. height: math.unit(3, "meters")
  19409. },
  19410. {
  19411. name: "Kaiju",
  19412. height: math.unit(120, "meters"),
  19413. default: true
  19414. },
  19415. {
  19416. name: "Mega Kaiju",
  19417. height: math.unit(240, "km")
  19418. },
  19419. {
  19420. name: "Giga Kaiju",
  19421. height: math.unit(400, "megameters")
  19422. },
  19423. {
  19424. name: "Tera Kaiju",
  19425. height: math.unit(800, "gigameters")
  19426. },
  19427. {
  19428. name: "Kaiju Dragon Goddess",
  19429. height: math.unit(26, "zettaparsecs")
  19430. },
  19431. ]
  19432. ))
  19433. characterMakers.push(() => makeCharacter(
  19434. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19435. {
  19436. side: {
  19437. height: math.unit(283 / 124 * 6, "feet"),
  19438. weight: math.unit(35000, "lb"),
  19439. name: "Side",
  19440. image: {
  19441. source: "./media/characters/malfaren/side.svg",
  19442. extra: 1310/529,
  19443. bottom: 24/1334
  19444. }
  19445. },
  19446. front: {
  19447. height: math.unit(22.36, "feet"),
  19448. weight: math.unit(35000, "lb"),
  19449. name: "Front",
  19450. image: {
  19451. source: "./media/characters/malfaren/front.svg",
  19452. extra: 1237/1115,
  19453. bottom: 32/1269
  19454. }
  19455. },
  19456. maw: {
  19457. height: math.unit(6.9, "feet"),
  19458. name: "Maw",
  19459. image: {
  19460. source: "./media/characters/malfaren/maw.svg"
  19461. }
  19462. },
  19463. dick: {
  19464. height: math.unit(6.19, "feet"),
  19465. name: "Dick",
  19466. image: {
  19467. source: "./media/characters/malfaren/dick.svg"
  19468. }
  19469. },
  19470. eye: {
  19471. height: math.unit(0.69, "feet"),
  19472. name: "Eye",
  19473. image: {
  19474. source: "./media/characters/malfaren/eye.svg"
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Big",
  19481. height: math.unit(283 / 162 * 6, "feet"),
  19482. },
  19483. {
  19484. name: "Bigger",
  19485. height: math.unit(283 / 124 * 6, "feet")
  19486. },
  19487. {
  19488. name: "Massive",
  19489. height: math.unit(283 / 92 * 6, "feet"),
  19490. default: true
  19491. },
  19492. {
  19493. name: "👀💦",
  19494. height: math.unit(283 / 73 * 6, "feet"),
  19495. },
  19496. ]
  19497. ))
  19498. characterMakers.push(() => makeCharacter(
  19499. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19500. {
  19501. front: {
  19502. height: math.unit(1.7, "m"),
  19503. weight: math.unit(70, "kg"),
  19504. name: "Front",
  19505. image: {
  19506. source: "./media/characters/kernel/front.svg",
  19507. extra: 222 / 210,
  19508. bottom: 0.007
  19509. }
  19510. },
  19511. },
  19512. [
  19513. {
  19514. name: "Nano",
  19515. height: math.unit(17, "micrometers")
  19516. },
  19517. {
  19518. name: "Micro",
  19519. height: math.unit(1.7, "mm")
  19520. },
  19521. {
  19522. name: "Small",
  19523. height: math.unit(1.7, "cm")
  19524. },
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(1.7, "m"),
  19528. default: true
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19534. {
  19535. front: {
  19536. height: math.unit(1.75, "meters"),
  19537. weight: math.unit(65, "kg"),
  19538. name: "Front",
  19539. image: {
  19540. source: "./media/characters/jayne-folest/front.svg",
  19541. extra: 2115 / 2007,
  19542. bottom: 0.02
  19543. }
  19544. },
  19545. back: {
  19546. height: math.unit(1.75, "meters"),
  19547. weight: math.unit(65, "kg"),
  19548. name: "Back",
  19549. image: {
  19550. source: "./media/characters/jayne-folest/back.svg",
  19551. extra: 2115 / 2007,
  19552. bottom: 0.005
  19553. }
  19554. },
  19555. frontClothed: {
  19556. height: math.unit(1.75, "meters"),
  19557. weight: math.unit(65, "kg"),
  19558. name: "Front (Clothed)",
  19559. image: {
  19560. source: "./media/characters/jayne-folest/front-clothed.svg",
  19561. extra: 2115 / 2007,
  19562. bottom: 0.035
  19563. }
  19564. },
  19565. hand: {
  19566. height: math.unit(1 / 1.260, "feet"),
  19567. name: "Hand",
  19568. image: {
  19569. source: "./media/characters/jayne-folest/hand.svg"
  19570. }
  19571. },
  19572. foot: {
  19573. height: math.unit(1 / 0.918, "feet"),
  19574. name: "Foot",
  19575. image: {
  19576. source: "./media/characters/jayne-folest/foot.svg"
  19577. }
  19578. },
  19579. },
  19580. [
  19581. {
  19582. name: "Micro",
  19583. height: math.unit(4, "cm")
  19584. },
  19585. {
  19586. name: "Normal",
  19587. height: math.unit(1.75, "meters")
  19588. },
  19589. {
  19590. name: "Macro",
  19591. height: math.unit(47.5, "meters"),
  19592. default: true
  19593. },
  19594. ]
  19595. ))
  19596. characterMakers.push(() => makeCharacter(
  19597. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19598. {
  19599. front: {
  19600. height: math.unit(180, "cm"),
  19601. weight: math.unit(70, "kg"),
  19602. name: "Front",
  19603. image: {
  19604. source: "./media/characters/algier/front.svg",
  19605. extra: 596 / 572,
  19606. bottom: 0.04
  19607. }
  19608. },
  19609. back: {
  19610. height: math.unit(180, "cm"),
  19611. weight: math.unit(70, "kg"),
  19612. name: "Back",
  19613. image: {
  19614. source: "./media/characters/algier/back.svg",
  19615. extra: 596 / 572,
  19616. bottom: 0.025
  19617. }
  19618. },
  19619. frontdressed: {
  19620. height: math.unit(180, "cm"),
  19621. weight: math.unit(150, "kg"),
  19622. name: "Front-dressed",
  19623. image: {
  19624. source: "./media/characters/algier/front-dressed.svg",
  19625. extra: 596 / 572,
  19626. bottom: 0.038
  19627. }
  19628. },
  19629. },
  19630. [
  19631. {
  19632. name: "Micro",
  19633. height: math.unit(5, "cm")
  19634. },
  19635. {
  19636. name: "Normal",
  19637. height: math.unit(180, "cm"),
  19638. default: true
  19639. },
  19640. {
  19641. name: "Macro",
  19642. height: math.unit(64, "m")
  19643. },
  19644. ]
  19645. ))
  19646. characterMakers.push(() => makeCharacter(
  19647. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19648. {
  19649. upright: {
  19650. height: math.unit(7, "feet"),
  19651. weight: math.unit(300, "lb"),
  19652. name: "Upright",
  19653. image: {
  19654. source: "./media/characters/pretzel/upright.svg",
  19655. extra: 534 / 522,
  19656. bottom: 0.065
  19657. }
  19658. },
  19659. sprawling: {
  19660. height: math.unit(3.75, "feet"),
  19661. weight: math.unit(300, "lb"),
  19662. name: "Sprawling",
  19663. image: {
  19664. source: "./media/characters/pretzel/sprawling.svg",
  19665. extra: 314 / 281,
  19666. bottom: 0.1
  19667. }
  19668. },
  19669. tongue: {
  19670. height: math.unit(2, "feet"),
  19671. name: "Tongue",
  19672. image: {
  19673. source: "./media/characters/pretzel/tongue.svg"
  19674. }
  19675. },
  19676. },
  19677. [
  19678. {
  19679. name: "Normal",
  19680. height: math.unit(7, "feet"),
  19681. default: true
  19682. },
  19683. {
  19684. name: "Oversized",
  19685. height: math.unit(15, "feet")
  19686. },
  19687. {
  19688. name: "Huge",
  19689. height: math.unit(30, "feet")
  19690. },
  19691. {
  19692. name: "Macro",
  19693. height: math.unit(250, "feet")
  19694. },
  19695. ]
  19696. ))
  19697. characterMakers.push(() => makeCharacter(
  19698. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19699. {
  19700. sideFront: {
  19701. height: math.unit(5 + 2 / 12, "feet"),
  19702. weight: math.unit(120, "lb"),
  19703. name: "Front Side",
  19704. image: {
  19705. source: "./media/characters/roxi/side-front.svg",
  19706. extra: 2924 / 2717,
  19707. bottom: 0.08
  19708. }
  19709. },
  19710. sideBack: {
  19711. height: math.unit(5 + 2 / 12, "feet"),
  19712. weight: math.unit(120, "lb"),
  19713. name: "Back Side",
  19714. image: {
  19715. source: "./media/characters/roxi/side-back.svg",
  19716. extra: 2904 / 2693,
  19717. bottom: 0.06
  19718. }
  19719. },
  19720. front: {
  19721. height: math.unit(5 + 2 / 12, "feet"),
  19722. weight: math.unit(120, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/roxi/front.svg",
  19726. extra: 2028 / 1907,
  19727. bottom: 0.01
  19728. }
  19729. },
  19730. frontAlt: {
  19731. height: math.unit(5 + 2 / 12, "feet"),
  19732. weight: math.unit(120, "lb"),
  19733. name: "Front (Alt)",
  19734. image: {
  19735. source: "./media/characters/roxi/front-alt.svg",
  19736. extra: 1828 / 1798,
  19737. bottom: 0.01
  19738. }
  19739. },
  19740. sitting: {
  19741. height: math.unit(2.8, "feet"),
  19742. weight: math.unit(120, "lb"),
  19743. name: "Sitting",
  19744. image: {
  19745. source: "./media/characters/roxi/sitting.svg",
  19746. extra: 2660 / 2462,
  19747. bottom: 0.1
  19748. }
  19749. },
  19750. },
  19751. [
  19752. {
  19753. name: "Normal",
  19754. height: math.unit(5 + 2 / 12, "feet"),
  19755. default: true
  19756. },
  19757. ]
  19758. ))
  19759. characterMakers.push(() => makeCharacter(
  19760. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19761. {
  19762. side: {
  19763. height: math.unit(55, "feet"),
  19764. weight: math.unit(153, "tons"),
  19765. name: "Side",
  19766. image: {
  19767. source: "./media/characters/shadow/side.svg",
  19768. extra: 701 / 628,
  19769. bottom: 0.02
  19770. }
  19771. },
  19772. flying: {
  19773. height: math.unit(145, "feet"),
  19774. weight: math.unit(153, "tons"),
  19775. name: "Flying",
  19776. image: {
  19777. source: "./media/characters/shadow/flying.svg"
  19778. }
  19779. },
  19780. },
  19781. [
  19782. {
  19783. name: "Normal",
  19784. height: math.unit(55, "feet"),
  19785. default: true
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19791. {
  19792. front: {
  19793. height: math.unit(6, "feet"),
  19794. weight: math.unit(200, "lb"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/marcie/front.svg",
  19798. extra: 960 / 876,
  19799. bottom: 58 / 1017.87
  19800. }
  19801. },
  19802. },
  19803. [
  19804. {
  19805. name: "Macro",
  19806. height: math.unit(1, "mile"),
  19807. default: true
  19808. },
  19809. ]
  19810. ))
  19811. characterMakers.push(() => makeCharacter(
  19812. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19813. {
  19814. front: {
  19815. height: math.unit(7, "feet"),
  19816. weight: math.unit(200, "lb"),
  19817. name: "Front",
  19818. image: {
  19819. source: "./media/characters/kachina/front.svg",
  19820. extra: 1290.68 / 1119,
  19821. bottom: 36.5 / 1327.18
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Normal",
  19828. height: math.unit(7, "feet"),
  19829. default: true
  19830. },
  19831. ]
  19832. ))
  19833. characterMakers.push(() => makeCharacter(
  19834. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19835. {
  19836. looking: {
  19837. height: math.unit(2, "meters"),
  19838. weight: math.unit(300, "kg"),
  19839. name: "Looking",
  19840. image: {
  19841. source: "./media/characters/kash/looking.svg",
  19842. extra: 474 / 344,
  19843. bottom: 0.03
  19844. }
  19845. },
  19846. side: {
  19847. height: math.unit(2, "meters"),
  19848. weight: math.unit(300, "kg"),
  19849. name: "Side",
  19850. image: {
  19851. source: "./media/characters/kash/side.svg",
  19852. extra: 302 / 251,
  19853. bottom: 0.03
  19854. }
  19855. },
  19856. front: {
  19857. height: math.unit(2, "meters"),
  19858. weight: math.unit(300, "kg"),
  19859. name: "Front",
  19860. image: {
  19861. source: "./media/characters/kash/front.svg",
  19862. extra: 495 / 360,
  19863. bottom: 0.015
  19864. }
  19865. },
  19866. },
  19867. [
  19868. {
  19869. name: "Normal",
  19870. height: math.unit(2, "meters"),
  19871. default: true
  19872. },
  19873. {
  19874. name: "Big",
  19875. height: math.unit(3, "meters")
  19876. },
  19877. {
  19878. name: "Large",
  19879. height: math.unit(5, "meters")
  19880. },
  19881. ]
  19882. ))
  19883. characterMakers.push(() => makeCharacter(
  19884. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19885. {
  19886. feeding: {
  19887. height: math.unit(6.7, "feet"),
  19888. weight: math.unit(350, "lb"),
  19889. name: "Feeding",
  19890. image: {
  19891. source: "./media/characters/lalim/feeding.svg",
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(6.7, "feet"),
  19899. default: true
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19905. {
  19906. front: {
  19907. height: math.unit(9.5, "feet"),
  19908. weight: math.unit(600, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/de'vout/front.svg",
  19912. extra: 1443 / 1328,
  19913. bottom: 0.025
  19914. }
  19915. },
  19916. back: {
  19917. height: math.unit(9.5, "feet"),
  19918. weight: math.unit(600, "lb"),
  19919. name: "Back",
  19920. image: {
  19921. source: "./media/characters/de'vout/back.svg",
  19922. extra: 1443 / 1328
  19923. }
  19924. },
  19925. frontDressed: {
  19926. height: math.unit(9.5, "feet"),
  19927. weight: math.unit(600, "lb"),
  19928. name: "Front (Dressed",
  19929. image: {
  19930. source: "./media/characters/de'vout/front-dressed.svg",
  19931. extra: 1443 / 1328,
  19932. bottom: 0.025
  19933. }
  19934. },
  19935. backDressed: {
  19936. height: math.unit(9.5, "feet"),
  19937. weight: math.unit(600, "lb"),
  19938. name: "Back (Dressed",
  19939. image: {
  19940. source: "./media/characters/de'vout/back-dressed.svg",
  19941. extra: 1443 / 1328
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(9.5, "feet"),
  19949. default: true
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19955. {
  19956. front: {
  19957. height: math.unit(8, "feet"),
  19958. weight: math.unit(225, "lb"),
  19959. name: "Front",
  19960. image: {
  19961. source: "./media/characters/talana/front.svg",
  19962. extra: 1410 / 1300,
  19963. bottom: 0.015
  19964. }
  19965. },
  19966. frontDressed: {
  19967. height: math.unit(8, "feet"),
  19968. weight: math.unit(225, "lb"),
  19969. name: "Front (Dressed",
  19970. image: {
  19971. source: "./media/characters/talana/front-dressed.svg",
  19972. extra: 1410 / 1300,
  19973. bottom: 0.015
  19974. }
  19975. },
  19976. },
  19977. [
  19978. {
  19979. name: "Normal",
  19980. height: math.unit(8, "feet"),
  19981. default: true
  19982. },
  19983. ]
  19984. ))
  19985. characterMakers.push(() => makeCharacter(
  19986. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19987. {
  19988. side: {
  19989. height: math.unit(7.2, "feet"),
  19990. weight: math.unit(150, "lb"),
  19991. name: "Side",
  19992. image: {
  19993. source: "./media/characters/xeauvok/side.svg",
  19994. extra: 1975 / 1523,
  19995. bottom: 0.07
  19996. }
  19997. },
  19998. },
  19999. [
  20000. {
  20001. name: "Normal",
  20002. height: math.unit(7.2, "feet"),
  20003. default: true
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20009. {
  20010. side: {
  20011. height: math.unit(4, "meters"),
  20012. weight: math.unit(2200, "kg"),
  20013. name: "Side",
  20014. image: {
  20015. source: "./media/characters/zara/side.svg",
  20016. extra: 765/744,
  20017. bottom: 156/921
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(4, "meters"),
  20025. default: true
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20031. {
  20032. side: {
  20033. height: math.unit(6, "feet"),
  20034. weight: math.unit(150, "lb"),
  20035. name: "Side",
  20036. image: {
  20037. source: "./media/characters/richard-dragon/side.svg",
  20038. extra: 845 / 340,
  20039. bottom: 0.017
  20040. }
  20041. },
  20042. maw: {
  20043. height: math.unit(2.97, "feet"),
  20044. name: "Maw",
  20045. image: {
  20046. source: "./media/characters/richard-dragon/maw.svg"
  20047. }
  20048. },
  20049. },
  20050. [
  20051. ]
  20052. ))
  20053. characterMakers.push(() => makeCharacter(
  20054. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20055. {
  20056. front: {
  20057. height: math.unit(4, "feet"),
  20058. weight: math.unit(100, "lb"),
  20059. name: "Front",
  20060. image: {
  20061. source: "./media/characters/richard-smeargle/front.svg",
  20062. extra: 2952 / 2820,
  20063. bottom: 0.028
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Normal",
  20070. height: math.unit(4, "feet"),
  20071. default: true
  20072. },
  20073. {
  20074. name: "Dynamax",
  20075. height: math.unit(20, "meters")
  20076. },
  20077. ]
  20078. ))
  20079. characterMakers.push(() => makeCharacter(
  20080. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20081. {
  20082. front: {
  20083. height: math.unit(6, "feet"),
  20084. weight: math.unit(110, "lb"),
  20085. name: "Front",
  20086. image: {
  20087. source: "./media/characters/klay/front.svg",
  20088. extra: 962 / 883,
  20089. bottom: 0.04
  20090. }
  20091. },
  20092. back: {
  20093. height: math.unit(6, "feet"),
  20094. weight: math.unit(110, "lb"),
  20095. name: "Back",
  20096. image: {
  20097. source: "./media/characters/klay/back.svg",
  20098. extra: 962 / 883
  20099. }
  20100. },
  20101. beans: {
  20102. height: math.unit(1.15, "feet"),
  20103. name: "Beans",
  20104. image: {
  20105. source: "./media/characters/klay/beans.svg"
  20106. }
  20107. },
  20108. },
  20109. [
  20110. {
  20111. name: "Micro",
  20112. height: math.unit(6, "inches")
  20113. },
  20114. {
  20115. name: "Mini",
  20116. height: math.unit(3, "feet")
  20117. },
  20118. {
  20119. name: "Normal",
  20120. height: math.unit(6, "feet"),
  20121. default: true
  20122. },
  20123. {
  20124. name: "Big",
  20125. height: math.unit(25, "feet")
  20126. },
  20127. {
  20128. name: "Macro",
  20129. height: math.unit(100, "feet")
  20130. },
  20131. {
  20132. name: "Megamacro",
  20133. height: math.unit(400, "feet")
  20134. },
  20135. ]
  20136. ))
  20137. characterMakers.push(() => makeCharacter(
  20138. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20139. {
  20140. front: {
  20141. height: math.unit(6, "feet"),
  20142. weight: math.unit(160, "lb"),
  20143. name: "Front",
  20144. image: {
  20145. source: "./media/characters/marcus/front.svg",
  20146. extra: 734 / 676,
  20147. bottom: 0.03
  20148. }
  20149. },
  20150. },
  20151. [
  20152. {
  20153. name: "Little",
  20154. height: math.unit(6, "feet")
  20155. },
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(110, "feet"),
  20159. default: true
  20160. },
  20161. {
  20162. name: "Macro",
  20163. height: math.unit(250, "feet")
  20164. },
  20165. {
  20166. name: "Megamacro",
  20167. height: math.unit(1000, "feet")
  20168. },
  20169. ]
  20170. ))
  20171. characterMakers.push(() => makeCharacter(
  20172. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20173. {
  20174. front: {
  20175. height: math.unit(7, "feet"),
  20176. weight: math.unit(275, "lb"),
  20177. name: "Front",
  20178. image: {
  20179. source: "./media/characters/claude-delroute/front.svg",
  20180. extra: 902/827,
  20181. bottom: 26/928
  20182. }
  20183. },
  20184. side: {
  20185. height: math.unit(7, "feet"),
  20186. weight: math.unit(275, "lb"),
  20187. name: "Side",
  20188. image: {
  20189. source: "./media/characters/claude-delroute/side.svg",
  20190. extra: 908/853,
  20191. bottom: 16/924
  20192. }
  20193. },
  20194. back: {
  20195. height: math.unit(7, "feet"),
  20196. weight: math.unit(275, "lb"),
  20197. name: "Back",
  20198. image: {
  20199. source: "./media/characters/claude-delroute/back.svg",
  20200. extra: 911/829,
  20201. bottom: 18/929
  20202. }
  20203. },
  20204. maw: {
  20205. height: math.unit(0.6407, "meters"),
  20206. name: "Maw",
  20207. image: {
  20208. source: "./media/characters/claude-delroute/maw.svg"
  20209. }
  20210. },
  20211. },
  20212. [
  20213. {
  20214. name: "Normal",
  20215. height: math.unit(7, "feet"),
  20216. default: true
  20217. },
  20218. {
  20219. name: "Lorge",
  20220. height: math.unit(20, "feet")
  20221. },
  20222. ]
  20223. ))
  20224. characterMakers.push(() => makeCharacter(
  20225. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20226. {
  20227. front: {
  20228. height: math.unit(8 + 4 / 12, "feet"),
  20229. weight: math.unit(600, "lb"),
  20230. name: "Front",
  20231. image: {
  20232. source: "./media/characters/dragonien/front.svg",
  20233. extra: 100 / 94,
  20234. bottom: 3.3 / 103.3445
  20235. }
  20236. },
  20237. back: {
  20238. height: math.unit(8 + 4 / 12, "feet"),
  20239. weight: math.unit(600, "lb"),
  20240. name: "Back",
  20241. image: {
  20242. source: "./media/characters/dragonien/back.svg",
  20243. extra: 776 / 746,
  20244. bottom: 6.4 / 782.0616
  20245. }
  20246. },
  20247. foot: {
  20248. height: math.unit(1.54, "feet"),
  20249. name: "Foot",
  20250. image: {
  20251. source: "./media/characters/dragonien/foot.svg",
  20252. }
  20253. },
  20254. },
  20255. [
  20256. {
  20257. name: "Normal",
  20258. height: math.unit(8 + 4 / 12, "feet"),
  20259. default: true
  20260. },
  20261. {
  20262. name: "Macro",
  20263. height: math.unit(200, "feet")
  20264. },
  20265. {
  20266. name: "Megamacro",
  20267. height: math.unit(1, "mile")
  20268. },
  20269. {
  20270. name: "Gigamacro",
  20271. height: math.unit(1000, "miles")
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20277. {
  20278. front: {
  20279. height: math.unit(5 + 2 / 12, "feet"),
  20280. weight: math.unit(110, "lb"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/desta/front.svg",
  20284. extra: 767 / 726,
  20285. bottom: 11.7 / 779
  20286. }
  20287. },
  20288. back: {
  20289. height: math.unit(5 + 2 / 12, "feet"),
  20290. weight: math.unit(110, "lb"),
  20291. name: "Back",
  20292. image: {
  20293. source: "./media/characters/desta/back.svg",
  20294. extra: 777 / 728,
  20295. bottom: 6 / 784
  20296. }
  20297. },
  20298. frontAlt: {
  20299. height: math.unit(5 + 2 / 12, "feet"),
  20300. weight: math.unit(110, "lb"),
  20301. name: "Front",
  20302. image: {
  20303. source: "./media/characters/desta/front-alt.svg",
  20304. extra: 1482 / 1417
  20305. }
  20306. },
  20307. side: {
  20308. height: math.unit(5 + 2 / 12, "feet"),
  20309. weight: math.unit(110, "lb"),
  20310. name: "Side",
  20311. image: {
  20312. source: "./media/characters/desta/side.svg",
  20313. extra: 2579 / 2491,
  20314. bottom: 0.053
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Micro",
  20321. height: math.unit(6, "inches")
  20322. },
  20323. {
  20324. name: "Normal",
  20325. height: math.unit(5 + 2 / 12, "feet"),
  20326. default: true
  20327. },
  20328. {
  20329. name: "Macro",
  20330. height: math.unit(62, "feet")
  20331. },
  20332. {
  20333. name: "Megamacro",
  20334. height: math.unit(1800, "feet")
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(10, "feet"),
  20343. weight: math.unit(700, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/storm-alystar/front.svg",
  20347. extra: 2112 / 1898,
  20348. bottom: 0.034
  20349. }
  20350. },
  20351. },
  20352. [
  20353. {
  20354. name: "Micro",
  20355. height: math.unit(3.5, "inches")
  20356. },
  20357. {
  20358. name: "Normal",
  20359. height: math.unit(10, "feet"),
  20360. default: true
  20361. },
  20362. {
  20363. name: "Macro",
  20364. height: math.unit(400, "feet")
  20365. },
  20366. {
  20367. name: "Deific",
  20368. height: math.unit(60, "miles")
  20369. },
  20370. ]
  20371. ))
  20372. characterMakers.push(() => makeCharacter(
  20373. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20374. {
  20375. front: {
  20376. height: math.unit(2.35, "meters"),
  20377. weight: math.unit(119, "kg"),
  20378. name: "Front",
  20379. image: {
  20380. source: "./media/characters/ilia/front.svg",
  20381. extra: 1285 / 1255,
  20382. bottom: 0.06
  20383. }
  20384. },
  20385. },
  20386. [
  20387. {
  20388. name: "Normal",
  20389. height: math.unit(2.35, "meters")
  20390. },
  20391. {
  20392. name: "Macro",
  20393. height: math.unit(140, "meters"),
  20394. default: true
  20395. },
  20396. {
  20397. name: "Megamacro",
  20398. height: math.unit(100, "miles")
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20404. {
  20405. front: {
  20406. height: math.unit(6 + 5 / 12, "feet"),
  20407. weight: math.unit(190, "lb"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/kingdead/front.svg",
  20411. extra: 1228 / 1177
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Micro",
  20418. height: math.unit(7, "inches")
  20419. },
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(6 + 5 / 12, "feet")
  20423. },
  20424. {
  20425. name: "Macro",
  20426. height: math.unit(150, "feet"),
  20427. default: true
  20428. },
  20429. {
  20430. name: "Megamacro",
  20431. height: math.unit(200, "miles")
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20437. {
  20438. front: {
  20439. height: math.unit(8, "feet"),
  20440. weight: math.unit(600, "lb"),
  20441. name: "Front",
  20442. image: {
  20443. source: "./media/characters/kyrehx/front.svg",
  20444. extra: 1195 / 1095,
  20445. bottom: 0.034
  20446. }
  20447. },
  20448. },
  20449. [
  20450. {
  20451. name: "Micro",
  20452. height: math.unit(2, "inches")
  20453. },
  20454. {
  20455. name: "Normal",
  20456. height: math.unit(8, "feet"),
  20457. default: true
  20458. },
  20459. {
  20460. name: "Macro",
  20461. height: math.unit(255, "feet")
  20462. },
  20463. ]
  20464. ))
  20465. characterMakers.push(() => makeCharacter(
  20466. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20467. {
  20468. front: {
  20469. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20470. weight: math.unit(184, "lb"),
  20471. name: "Front",
  20472. image: {
  20473. source: "./media/characters/xang/front.svg",
  20474. extra: 845 / 755
  20475. }
  20476. },
  20477. },
  20478. [
  20479. {
  20480. name: "Normal",
  20481. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20482. default: true
  20483. },
  20484. {
  20485. name: "Macro",
  20486. height: math.unit(0.935 * 146, "feet")
  20487. },
  20488. {
  20489. name: "Megamacro",
  20490. height: math.unit(0.935 * 3, "miles")
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20496. {
  20497. frontDressed: {
  20498. height: math.unit(5 + 7 / 12, "feet"),
  20499. weight: math.unit(140, "lb"),
  20500. name: "Front (Dressed)",
  20501. image: {
  20502. source: "./media/characters/doc-weardno/front-dressed.svg",
  20503. extra: 263 / 234
  20504. }
  20505. },
  20506. backDressed: {
  20507. height: math.unit(5 + 7 / 12, "feet"),
  20508. weight: math.unit(140, "lb"),
  20509. name: "Back (Dressed)",
  20510. image: {
  20511. source: "./media/characters/doc-weardno/back-dressed.svg",
  20512. extra: 266 / 238
  20513. }
  20514. },
  20515. front: {
  20516. height: math.unit(5 + 7 / 12, "feet"),
  20517. weight: math.unit(140, "lb"),
  20518. name: "Front",
  20519. image: {
  20520. source: "./media/characters/doc-weardno/front.svg",
  20521. extra: 254 / 233
  20522. }
  20523. },
  20524. },
  20525. [
  20526. {
  20527. name: "Micro",
  20528. height: math.unit(3, "inches")
  20529. },
  20530. {
  20531. name: "Normal",
  20532. height: math.unit(5 + 7 / 12, "feet"),
  20533. default: true
  20534. },
  20535. {
  20536. name: "Macro",
  20537. height: math.unit(25, "feet")
  20538. },
  20539. {
  20540. name: "Megamacro",
  20541. height: math.unit(2, "miles")
  20542. },
  20543. ]
  20544. ))
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20547. {
  20548. front: {
  20549. height: math.unit(6 + 2 / 12, "feet"),
  20550. weight: math.unit(153, "lb"),
  20551. name: "Front",
  20552. image: {
  20553. source: "./media/characters/seth-whilst/front.svg",
  20554. bottom: 0.07
  20555. }
  20556. },
  20557. },
  20558. [
  20559. {
  20560. name: "Micro",
  20561. height: math.unit(5, "inches")
  20562. },
  20563. {
  20564. name: "Normal",
  20565. height: math.unit(6 + 2 / 12, "feet"),
  20566. default: true
  20567. },
  20568. ]
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20572. {
  20573. front: {
  20574. height: math.unit(3, "inches"),
  20575. weight: math.unit(8, "grams"),
  20576. name: "Front",
  20577. image: {
  20578. source: "./media/characters/pocket-jabari/front.svg",
  20579. extra: 1024 / 974,
  20580. bottom: 0.039
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Minimicro",
  20587. height: math.unit(8, "mm")
  20588. },
  20589. {
  20590. name: "Micro",
  20591. height: math.unit(3, "inches"),
  20592. default: true
  20593. },
  20594. {
  20595. name: "Normal",
  20596. height: math.unit(3, "feet")
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20602. {
  20603. frontDressed: {
  20604. height: math.unit(15, "feet"),
  20605. weight: math.unit(3280, "lb"),
  20606. name: "Front (Dressed)",
  20607. image: {
  20608. source: "./media/characters/sapphy/front-dressed.svg",
  20609. extra: 1951/1654,
  20610. bottom: 194/2145
  20611. },
  20612. form: "anthro",
  20613. default: true
  20614. },
  20615. backDressed: {
  20616. height: math.unit(15, "feet"),
  20617. weight: math.unit(3280, "lb"),
  20618. name: "Back (Dressed)",
  20619. image: {
  20620. source: "./media/characters/sapphy/back-dressed.svg",
  20621. extra: 2058/1918,
  20622. bottom: 125/2183
  20623. },
  20624. form: "anthro"
  20625. },
  20626. frontNude: {
  20627. height: math.unit(15, "feet"),
  20628. weight: math.unit(3280, "lb"),
  20629. name: "Front (Nude)",
  20630. image: {
  20631. source: "./media/characters/sapphy/front-nude.svg",
  20632. extra: 1951/1654,
  20633. bottom: 194/2145
  20634. },
  20635. form: "anthro"
  20636. },
  20637. backNude: {
  20638. height: math.unit(15, "feet"),
  20639. weight: math.unit(3280, "lb"),
  20640. name: "Back (Nude)",
  20641. image: {
  20642. source: "./media/characters/sapphy/back-nude.svg",
  20643. extra: 2058/1918,
  20644. bottom: 125/2183
  20645. },
  20646. form: "anthro"
  20647. },
  20648. full: {
  20649. height: math.unit(15, "feet"),
  20650. weight: math.unit(3280, "lb"),
  20651. name: "Full",
  20652. image: {
  20653. source: "./media/characters/sapphy/full.svg",
  20654. extra: 1396/1317,
  20655. bottom: 44/1440
  20656. },
  20657. form: "anthro"
  20658. },
  20659. dick: {
  20660. height: math.unit(3.8, "feet"),
  20661. name: "Dick",
  20662. image: {
  20663. source: "./media/characters/sapphy/dick.svg"
  20664. },
  20665. form: "anthro"
  20666. },
  20667. feral: {
  20668. height: math.unit(35, "feet"),
  20669. weight: math.unit(160, "tons"),
  20670. name: "Feral",
  20671. image: {
  20672. source: "./media/characters/sapphy/feral.svg",
  20673. extra: 1050/573,
  20674. bottom: 60/1110
  20675. },
  20676. form: "feral",
  20677. default: true
  20678. },
  20679. },
  20680. [
  20681. {
  20682. name: "Normal",
  20683. height: math.unit(15, "feet"),
  20684. form: "anthro"
  20685. },
  20686. {
  20687. name: "Casual Macro",
  20688. height: math.unit(120, "feet"),
  20689. form: "anthro"
  20690. },
  20691. {
  20692. name: "Macro",
  20693. height: math.unit(2150, "feet"),
  20694. default: true,
  20695. form: "anthro"
  20696. },
  20697. {
  20698. name: "Megamacro",
  20699. height: math.unit(8, "miles"),
  20700. form: "anthro"
  20701. },
  20702. {
  20703. name: "Galaxy Mom",
  20704. height: math.unit(6, "megalightyears"),
  20705. form: "anthro"
  20706. },
  20707. {
  20708. name: "Normal",
  20709. height: math.unit(35, "feet"),
  20710. form: "feral",
  20711. default: true
  20712. },
  20713. {
  20714. name: "Macro",
  20715. height: math.unit(300, "feet"),
  20716. form: "feral"
  20717. },
  20718. {
  20719. name: "Galaxy Mom",
  20720. height: math.unit(10, "megalightyears"),
  20721. form: "feral"
  20722. },
  20723. ],
  20724. {
  20725. "anthro": {
  20726. name: "Anthro",
  20727. default: true
  20728. },
  20729. "feral": {
  20730. name: "Feral"
  20731. }
  20732. }
  20733. ))
  20734. characterMakers.push(() => makeCharacter(
  20735. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20736. {
  20737. hyenaFront: {
  20738. height: math.unit(6, "feet"),
  20739. weight: math.unit(190, "lb"),
  20740. name: "Front",
  20741. image: {
  20742. source: "./media/characters/kiro/hyena-front.svg",
  20743. extra: 927/839,
  20744. bottom: 91/1018
  20745. },
  20746. form: "hyena",
  20747. default: true
  20748. },
  20749. front: {
  20750. height: math.unit(6, "feet"),
  20751. weight: math.unit(170, "lb"),
  20752. name: "Front",
  20753. image: {
  20754. source: "./media/characters/kiro/front.svg",
  20755. extra: 1064 / 1012,
  20756. bottom: 0.052
  20757. },
  20758. form: "folf",
  20759. default: true
  20760. },
  20761. },
  20762. [
  20763. {
  20764. name: "Micro",
  20765. height: math.unit(6, "inches"),
  20766. form: "folf"
  20767. },
  20768. {
  20769. name: "Normal",
  20770. height: math.unit(6, "feet"),
  20771. form: "folf",
  20772. default: true
  20773. },
  20774. {
  20775. name: "Macro",
  20776. height: math.unit(72, "feet"),
  20777. form: "folf"
  20778. },
  20779. {
  20780. name: "Micro",
  20781. height: math.unit(6, "inches"),
  20782. form: "hyena"
  20783. },
  20784. {
  20785. name: "Normal",
  20786. height: math.unit(6, "feet"),
  20787. form: "hyena",
  20788. default: true
  20789. },
  20790. {
  20791. name: "Macro",
  20792. height: math.unit(72, "feet"),
  20793. form: "hyena"
  20794. },
  20795. ],
  20796. {
  20797. "hyena": {
  20798. name: "Hyena",
  20799. default: true
  20800. },
  20801. "folf": {
  20802. name: "Folf",
  20803. },
  20804. }
  20805. ))
  20806. characterMakers.push(() => makeCharacter(
  20807. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20808. {
  20809. front: {
  20810. height: math.unit(5 + 9 / 12, "feet"),
  20811. weight: math.unit(175, "lb"),
  20812. name: "Front",
  20813. image: {
  20814. source: "./media/characters/irishfox/front.svg",
  20815. extra: 1912 / 1680,
  20816. bottom: 0.02
  20817. }
  20818. },
  20819. },
  20820. [
  20821. {
  20822. name: "Nano",
  20823. height: math.unit(1, "mm")
  20824. },
  20825. {
  20826. name: "Micro",
  20827. height: math.unit(2, "inches")
  20828. },
  20829. {
  20830. name: "Normal",
  20831. height: math.unit(5 + 9 / 12, "feet"),
  20832. default: true
  20833. },
  20834. {
  20835. name: "Macro",
  20836. height: math.unit(45, "feet")
  20837. },
  20838. ]
  20839. ))
  20840. characterMakers.push(() => makeCharacter(
  20841. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20842. {
  20843. front: {
  20844. height: math.unit(6 + 1 / 12, "feet"),
  20845. weight: math.unit(75, "lb"),
  20846. name: "Front",
  20847. image: {
  20848. source: "./media/characters/aronai-sieyes/front.svg",
  20849. extra: 1532/1450,
  20850. bottom: 42/1574
  20851. }
  20852. },
  20853. side: {
  20854. height: math.unit(6 + 1 / 12, "feet"),
  20855. weight: math.unit(75, "lb"),
  20856. name: "Side",
  20857. image: {
  20858. source: "./media/characters/aronai-sieyes/side.svg",
  20859. extra: 1422/1365,
  20860. bottom: 148/1570
  20861. }
  20862. },
  20863. back: {
  20864. height: math.unit(6 + 1 / 12, "feet"),
  20865. weight: math.unit(75, "lb"),
  20866. name: "Back",
  20867. image: {
  20868. source: "./media/characters/aronai-sieyes/back.svg",
  20869. extra: 1526/1464,
  20870. bottom: 51/1577
  20871. }
  20872. },
  20873. dressed: {
  20874. height: math.unit(6 + 1 / 12, "feet"),
  20875. weight: math.unit(75, "lb"),
  20876. name: "Dressed",
  20877. image: {
  20878. source: "./media/characters/aronai-sieyes/dressed.svg",
  20879. extra: 1559/1483,
  20880. bottom: 39/1598
  20881. }
  20882. },
  20883. slit: {
  20884. height: math.unit(1.3, "feet"),
  20885. name: "Slit",
  20886. image: {
  20887. source: "./media/characters/aronai-sieyes/slit.svg"
  20888. }
  20889. },
  20890. slitSpread: {
  20891. height: math.unit(0.9, "feet"),
  20892. name: "Slit (Spread)",
  20893. image: {
  20894. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20895. }
  20896. },
  20897. rump: {
  20898. height: math.unit(1.3, "feet"),
  20899. name: "Rump",
  20900. image: {
  20901. source: "./media/characters/aronai-sieyes/rump.svg"
  20902. }
  20903. },
  20904. maw: {
  20905. height: math.unit(1.25, "feet"),
  20906. name: "Maw",
  20907. image: {
  20908. source: "./media/characters/aronai-sieyes/maw.svg"
  20909. }
  20910. },
  20911. feral: {
  20912. height: math.unit(18, "feet"),
  20913. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20914. name: "Feral",
  20915. image: {
  20916. source: "./media/characters/aronai-sieyes/feral.svg",
  20917. extra: 1530 / 1240,
  20918. bottom: 0.035
  20919. }
  20920. },
  20921. },
  20922. [
  20923. {
  20924. name: "Micro",
  20925. height: math.unit(2, "inches")
  20926. },
  20927. {
  20928. name: "Normal",
  20929. height: math.unit(6 + 1 / 12, "feet"),
  20930. default: true
  20931. }
  20932. ]
  20933. ))
  20934. characterMakers.push(() => makeCharacter(
  20935. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20936. {
  20937. front: {
  20938. height: math.unit(12, "feet"),
  20939. weight: math.unit(410, "kg"),
  20940. name: "Front",
  20941. image: {
  20942. source: "./media/characters/xuna/front.svg",
  20943. extra: 2184 / 1980
  20944. }
  20945. },
  20946. side: {
  20947. height: math.unit(12, "feet"),
  20948. weight: math.unit(410, "kg"),
  20949. name: "Side",
  20950. image: {
  20951. source: "./media/characters/xuna/side.svg",
  20952. extra: 2184 / 1980
  20953. }
  20954. },
  20955. back: {
  20956. height: math.unit(12, "feet"),
  20957. weight: math.unit(410, "kg"),
  20958. name: "Back",
  20959. image: {
  20960. source: "./media/characters/xuna/back.svg",
  20961. extra: 2184 / 1980
  20962. }
  20963. },
  20964. },
  20965. [
  20966. {
  20967. name: "Nano glow",
  20968. height: math.unit(10, "nm")
  20969. },
  20970. {
  20971. name: "Micro floof",
  20972. height: math.unit(0.3, "m")
  20973. },
  20974. {
  20975. name: "Huggable softy boi",
  20976. height: math.unit(3.6576, "m"),
  20977. default: true
  20978. },
  20979. {
  20980. name: "Admirable floof",
  20981. height: math.unit(80, "meters")
  20982. },
  20983. {
  20984. name: "Gentle macro",
  20985. height: math.unit(300, "meters")
  20986. },
  20987. {
  20988. name: "Very careful floof",
  20989. height: math.unit(3200, "meters")
  20990. },
  20991. {
  20992. name: "The mega floof",
  20993. height: math.unit(36000, "meters")
  20994. },
  20995. {
  20996. name: "Giga-fur-Wicker",
  20997. height: math.unit(4800000, "meters")
  20998. },
  20999. {
  21000. name: "Licky world",
  21001. height: math.unit(20000000, "meters")
  21002. },
  21003. {
  21004. name: "Floofy cyan sun",
  21005. height: math.unit(1500000000, "meters")
  21006. },
  21007. {
  21008. name: "Milky Wicker",
  21009. height: math.unit(1000000000000000000000, "meters")
  21010. },
  21011. {
  21012. name: "The observing Wicker",
  21013. height: math.unit(999999999999999999999999999, "meters")
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21019. {
  21020. front: {
  21021. height: math.unit(5 + 9 / 12, "feet"),
  21022. weight: math.unit(150, "lb"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/arokha-sieyes/front.svg",
  21026. extra: 1425 / 1284,
  21027. bottom: 0.05
  21028. }
  21029. },
  21030. },
  21031. [
  21032. {
  21033. name: "Normal",
  21034. height: math.unit(5 + 9 / 12, "feet")
  21035. },
  21036. {
  21037. name: "Macro",
  21038. height: math.unit(30, "meters"),
  21039. default: true
  21040. },
  21041. ]
  21042. ))
  21043. characterMakers.push(() => makeCharacter(
  21044. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21045. {
  21046. front: {
  21047. height: math.unit(6, "feet"),
  21048. weight: math.unit(180, "lb"),
  21049. name: "Front",
  21050. image: {
  21051. source: "./media/characters/arokh-sieyes/front.svg",
  21052. extra: 1830 / 1769,
  21053. bottom: 0.01
  21054. }
  21055. },
  21056. },
  21057. [
  21058. {
  21059. name: "Normal",
  21060. height: math.unit(6, "feet")
  21061. },
  21062. {
  21063. name: "Macro",
  21064. height: math.unit(30, "meters"),
  21065. default: true
  21066. },
  21067. ]
  21068. ))
  21069. characterMakers.push(() => makeCharacter(
  21070. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21071. {
  21072. side: {
  21073. height: math.unit(13 + 1 / 12, "feet"),
  21074. weight: math.unit(8.5, "tonnes"),
  21075. preyCapacity: math.unit(36, "people"),
  21076. name: "Side",
  21077. image: {
  21078. source: "./media/characters/goldeneye/side.svg",
  21079. extra: 1139/741,
  21080. bottom: 98/1237
  21081. }
  21082. },
  21083. front: {
  21084. height: math.unit(5.1, "feet"),
  21085. weight: math.unit(8.5, "tonnes"),
  21086. preyCapacity: math.unit(36, "people"),
  21087. name: "Front",
  21088. image: {
  21089. source: "./media/characters/goldeneye/front.svg",
  21090. extra: 635/365,
  21091. bottom: 598/1233
  21092. }
  21093. },
  21094. maw: {
  21095. height: math.unit(6.6, "feet"),
  21096. name: "Maw",
  21097. image: {
  21098. source: "./media/characters/goldeneye/maw.svg"
  21099. }
  21100. },
  21101. headFront: {
  21102. height: math.unit(8, "feet"),
  21103. name: "Head (Front)",
  21104. image: {
  21105. source: "./media/characters/goldeneye/head-front.svg"
  21106. }
  21107. },
  21108. headSide: {
  21109. height: math.unit(6, "feet"),
  21110. name: "Head (Side)",
  21111. image: {
  21112. source: "./media/characters/goldeneye/head-side.svg"
  21113. }
  21114. },
  21115. headBack: {
  21116. height: math.unit(8, "feet"),
  21117. name: "Head (Back)",
  21118. image: {
  21119. source: "./media/characters/goldeneye/head-back.svg"
  21120. }
  21121. },
  21122. paw: {
  21123. height: math.unit(3.4, "feet"),
  21124. name: "Paw",
  21125. image: {
  21126. source: "./media/characters/goldeneye/paw.svg"
  21127. }
  21128. },
  21129. toering: {
  21130. height: math.unit(0.45, "feet"),
  21131. name: "Toering",
  21132. image: {
  21133. source: "./media/characters/goldeneye/toering.svg"
  21134. }
  21135. },
  21136. eyes: {
  21137. height: math.unit(0.5, "feet"),
  21138. name: "Eyes",
  21139. image: {
  21140. source: "./media/characters/goldeneye/eyes.svg"
  21141. }
  21142. },
  21143. },
  21144. [
  21145. {
  21146. name: "Normal",
  21147. height: math.unit(13 + 1 / 12, "feet"),
  21148. default: true
  21149. },
  21150. ]
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21154. {
  21155. front: {
  21156. height: math.unit(6 + 1 / 12, "feet"),
  21157. weight: math.unit(210, "lb"),
  21158. name: "Front",
  21159. image: {
  21160. source: "./media/characters/leonardo-lycheborne/front.svg",
  21161. extra: 776/723,
  21162. bottom: 34/810
  21163. }
  21164. },
  21165. side: {
  21166. height: math.unit(6 + 1 / 12, "feet"),
  21167. weight: math.unit(210, "lb"),
  21168. name: "Side",
  21169. image: {
  21170. source: "./media/characters/leonardo-lycheborne/side.svg",
  21171. extra: 780/728,
  21172. bottom: 12/792
  21173. }
  21174. },
  21175. back: {
  21176. height: math.unit(6 + 1 / 12, "feet"),
  21177. weight: math.unit(210, "lb"),
  21178. name: "Back",
  21179. image: {
  21180. source: "./media/characters/leonardo-lycheborne/back.svg",
  21181. extra: 775/721,
  21182. bottom: 17/792
  21183. }
  21184. },
  21185. hand: {
  21186. height: math.unit(1.08, "feet"),
  21187. name: "Hand",
  21188. image: {
  21189. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21190. }
  21191. },
  21192. foot: {
  21193. height: math.unit(1.32, "feet"),
  21194. name: "Foot",
  21195. image: {
  21196. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21197. }
  21198. },
  21199. maw: {
  21200. height: math.unit(1, "feet"),
  21201. name: "Maw",
  21202. image: {
  21203. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21204. }
  21205. },
  21206. were: {
  21207. height: math.unit(20, "feet"),
  21208. weight: math.unit(7800, "lb"),
  21209. name: "Were",
  21210. image: {
  21211. source: "./media/characters/leonardo-lycheborne/were.svg",
  21212. extra: 1224/1165,
  21213. bottom: 72/1296
  21214. }
  21215. },
  21216. feral: {
  21217. height: math.unit(7.5, "feet"),
  21218. weight: math.unit(600, "lb"),
  21219. name: "Feral",
  21220. image: {
  21221. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21222. extra: 797/702,
  21223. bottom: 139/936
  21224. }
  21225. },
  21226. taur: {
  21227. height: math.unit(11, "feet"),
  21228. weight: math.unit(3300, "lb"),
  21229. name: "Taur",
  21230. image: {
  21231. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21232. extra: 1271/1197,
  21233. bottom: 47/1318
  21234. }
  21235. },
  21236. barghest: {
  21237. height: math.unit(11, "feet"),
  21238. weight: math.unit(1300, "lb"),
  21239. name: "Barghest",
  21240. image: {
  21241. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21242. extra: 1291/1204,
  21243. bottom: 37/1328
  21244. }
  21245. },
  21246. dick: {
  21247. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21248. name: "Dick",
  21249. image: {
  21250. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21251. }
  21252. },
  21253. dickWere: {
  21254. height: math.unit((20) / 3.8, "feet"),
  21255. name: "Dick (Were)",
  21256. image: {
  21257. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21258. }
  21259. },
  21260. },
  21261. [
  21262. {
  21263. name: "Normal",
  21264. height: math.unit(6 + 1 / 12, "feet"),
  21265. default: true
  21266. },
  21267. ]
  21268. ))
  21269. characterMakers.push(() => makeCharacter(
  21270. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21271. {
  21272. front: {
  21273. height: math.unit(10, "feet"),
  21274. weight: math.unit(350, "lb"),
  21275. name: "Front",
  21276. image: {
  21277. source: "./media/characters/jet/front.svg",
  21278. extra: 2050 / 1980,
  21279. bottom: 0.013
  21280. }
  21281. },
  21282. back: {
  21283. height: math.unit(10, "feet"),
  21284. weight: math.unit(350, "lb"),
  21285. name: "Back",
  21286. image: {
  21287. source: "./media/characters/jet/back.svg",
  21288. extra: 2050 / 1980,
  21289. bottom: 0.013
  21290. }
  21291. },
  21292. },
  21293. [
  21294. {
  21295. name: "Micro",
  21296. height: math.unit(6, "inches")
  21297. },
  21298. {
  21299. name: "Normal",
  21300. height: math.unit(10, "feet"),
  21301. default: true
  21302. },
  21303. {
  21304. name: "Macro",
  21305. height: math.unit(100, "feet")
  21306. },
  21307. ]
  21308. ))
  21309. characterMakers.push(() => makeCharacter(
  21310. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21311. {
  21312. front: {
  21313. height: math.unit(15, "feet"),
  21314. weight: math.unit(2800, "lb"),
  21315. name: "Front",
  21316. image: {
  21317. source: "./media/characters/tanarath/front.svg",
  21318. extra: 2392 / 2220,
  21319. bottom: 0.03
  21320. }
  21321. },
  21322. back: {
  21323. height: math.unit(15, "feet"),
  21324. weight: math.unit(2800, "lb"),
  21325. name: "Back",
  21326. image: {
  21327. source: "./media/characters/tanarath/back.svg",
  21328. extra: 2392 / 2220,
  21329. bottom: 0.03
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Normal",
  21336. height: math.unit(15, "feet"),
  21337. default: true
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21343. {
  21344. front: {
  21345. height: math.unit(7 + 1 / 12, "feet"),
  21346. weight: math.unit(175, "lb"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/patty-cattybatty/front.svg",
  21350. extra: 908 / 874,
  21351. bottom: 0.025
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Micro",
  21358. height: math.unit(1, "inch")
  21359. },
  21360. {
  21361. name: "Normal",
  21362. height: math.unit(7 + 1 / 12, "feet")
  21363. },
  21364. {
  21365. name: "Mini Macro",
  21366. height: math.unit(155, "feet")
  21367. },
  21368. {
  21369. name: "Macro",
  21370. height: math.unit(1077, "feet")
  21371. },
  21372. {
  21373. name: "Mega Macro",
  21374. height: math.unit(47650, "feet"),
  21375. default: true
  21376. },
  21377. {
  21378. name: "Giga Macro",
  21379. height: math.unit(440, "miles")
  21380. },
  21381. {
  21382. name: "Tera Macro",
  21383. height: math.unit(8700, "miles")
  21384. },
  21385. {
  21386. name: "Planetary Macro",
  21387. height: math.unit(32700, "miles")
  21388. },
  21389. {
  21390. name: "Solar Macro",
  21391. height: math.unit(550000, "miles")
  21392. },
  21393. {
  21394. name: "Celestial Macro",
  21395. height: math.unit(2.5, "AU")
  21396. },
  21397. ]
  21398. ))
  21399. characterMakers.push(() => makeCharacter(
  21400. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21401. {
  21402. front: {
  21403. height: math.unit(4 + 5 / 12, "feet"),
  21404. weight: math.unit(90, "lb"),
  21405. name: "Front",
  21406. image: {
  21407. source: "./media/characters/cappu/front.svg",
  21408. extra: 1247 / 1152,
  21409. bottom: 0.012
  21410. }
  21411. },
  21412. },
  21413. [
  21414. {
  21415. name: "Normal",
  21416. height: math.unit(4 + 5 / 12, "feet"),
  21417. default: true
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21423. {
  21424. frontDressed: {
  21425. height: math.unit(70, "cm"),
  21426. weight: math.unit(6, "kg"),
  21427. name: "Front (Dressed)",
  21428. image: {
  21429. source: "./media/characters/sebi/front-dressed.svg",
  21430. extra: 713.5 / 686.5,
  21431. bottom: 0.003
  21432. }
  21433. },
  21434. front: {
  21435. height: math.unit(70, "cm"),
  21436. weight: math.unit(5, "kg"),
  21437. name: "Front",
  21438. image: {
  21439. source: "./media/characters/sebi/front.svg",
  21440. extra: 713.5 / 686.5,
  21441. bottom: 0.003
  21442. }
  21443. }
  21444. },
  21445. [
  21446. {
  21447. name: "Normal",
  21448. height: math.unit(70, "cm"),
  21449. default: true
  21450. },
  21451. {
  21452. name: "Macro",
  21453. height: math.unit(8, "meters")
  21454. },
  21455. ]
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21459. {
  21460. front: {
  21461. height: math.unit(6, "feet"),
  21462. weight: math.unit(150, "lb"),
  21463. name: "Front",
  21464. image: {
  21465. source: "./media/characters/typhek/front.svg",
  21466. extra: 1948 / 1929,
  21467. bottom: 0.025
  21468. }
  21469. },
  21470. side: {
  21471. height: math.unit(6, "feet"),
  21472. weight: math.unit(150, "lb"),
  21473. name: "Side",
  21474. image: {
  21475. source: "./media/characters/typhek/side.svg",
  21476. extra: 2034 / 2010,
  21477. bottom: 0.003
  21478. }
  21479. },
  21480. back: {
  21481. height: math.unit(6, "feet"),
  21482. weight: math.unit(150, "lb"),
  21483. name: "Back",
  21484. image: {
  21485. source: "./media/characters/typhek/back.svg",
  21486. extra: 2005 / 1978,
  21487. bottom: 0.004
  21488. }
  21489. },
  21490. palm: {
  21491. height: math.unit(1.2, "feet"),
  21492. name: "Palm",
  21493. image: {
  21494. source: "./media/characters/typhek/palm.svg"
  21495. }
  21496. },
  21497. fist: {
  21498. height: math.unit(1.1, "feet"),
  21499. name: "Fist",
  21500. image: {
  21501. source: "./media/characters/typhek/fist.svg"
  21502. }
  21503. },
  21504. foot: {
  21505. height: math.unit(1.57, "feet"),
  21506. name: "Foot",
  21507. image: {
  21508. source: "./media/characters/typhek/foot.svg"
  21509. }
  21510. },
  21511. sole: {
  21512. height: math.unit(2.05, "feet"),
  21513. name: "Sole",
  21514. image: {
  21515. source: "./media/characters/typhek/sole.svg"
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Macro",
  21522. height: math.unit(40, "stories"),
  21523. default: true
  21524. },
  21525. {
  21526. name: "Megamacro",
  21527. height: math.unit(1, "mile")
  21528. },
  21529. {
  21530. name: "Gigamacro",
  21531. height: math.unit(4000, "solarradii")
  21532. },
  21533. {
  21534. name: "Universal",
  21535. height: math.unit(1.1, "universes")
  21536. }
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21541. {
  21542. side: {
  21543. height: math.unit(5 + 7 / 12, "feet"),
  21544. weight: math.unit(150, "lb"),
  21545. name: "Side",
  21546. image: {
  21547. source: "./media/characters/kassy/side.svg",
  21548. extra: 1280 / 1225,
  21549. bottom: 0.002
  21550. }
  21551. },
  21552. front: {
  21553. height: math.unit(5 + 7 / 12, "feet"),
  21554. weight: math.unit(150, "lb"),
  21555. name: "Front",
  21556. image: {
  21557. source: "./media/characters/kassy/front.svg",
  21558. extra: 1280 / 1225,
  21559. bottom: 0.025
  21560. }
  21561. },
  21562. back: {
  21563. height: math.unit(5 + 7 / 12, "feet"),
  21564. weight: math.unit(150, "lb"),
  21565. name: "Back",
  21566. image: {
  21567. source: "./media/characters/kassy/back.svg",
  21568. extra: 1280 / 1225,
  21569. bottom: 0.002
  21570. }
  21571. },
  21572. foot: {
  21573. height: math.unit(1.266, "feet"),
  21574. name: "Foot",
  21575. image: {
  21576. source: "./media/characters/kassy/foot.svg"
  21577. }
  21578. },
  21579. },
  21580. [
  21581. {
  21582. name: "Normal",
  21583. height: math.unit(5 + 7 / 12, "feet")
  21584. },
  21585. {
  21586. name: "Macro",
  21587. height: math.unit(137, "feet"),
  21588. default: true
  21589. },
  21590. {
  21591. name: "Megamacro",
  21592. height: math.unit(1, "mile")
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21598. {
  21599. front: {
  21600. height: math.unit(6 + 1 / 12, "feet"),
  21601. weight: math.unit(200, "lb"),
  21602. name: "Front",
  21603. image: {
  21604. source: "./media/characters/neil/front.svg",
  21605. extra: 1326 / 1250,
  21606. bottom: 0.023
  21607. }
  21608. },
  21609. },
  21610. [
  21611. {
  21612. name: "Normal",
  21613. height: math.unit(6 + 1 / 12, "feet"),
  21614. default: true
  21615. },
  21616. {
  21617. name: "Macro",
  21618. height: math.unit(200, "feet")
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21624. {
  21625. front: {
  21626. height: math.unit(5 + 9 / 12, "feet"),
  21627. weight: math.unit(190, "lb"),
  21628. name: "Front",
  21629. image: {
  21630. source: "./media/characters/atticus/front.svg",
  21631. extra: 2934 / 2785,
  21632. bottom: 0.025
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(5 + 9 / 12, "feet"),
  21640. default: true
  21641. },
  21642. {
  21643. name: "Macro",
  21644. height: math.unit(180, "feet")
  21645. },
  21646. ]
  21647. ))
  21648. characterMakers.push(() => makeCharacter(
  21649. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21650. {
  21651. side: {
  21652. height: math.unit(9, "feet"),
  21653. weight: math.unit(650, "lb"),
  21654. name: "Side",
  21655. image: {
  21656. source: "./media/characters/milo/side.svg",
  21657. extra: 2644 / 2310,
  21658. bottom: 0.032
  21659. }
  21660. },
  21661. },
  21662. [
  21663. {
  21664. name: "Normal",
  21665. height: math.unit(9, "feet"),
  21666. default: true
  21667. },
  21668. {
  21669. name: "Macro",
  21670. height: math.unit(300, "feet")
  21671. },
  21672. ]
  21673. ))
  21674. characterMakers.push(() => makeCharacter(
  21675. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21676. {
  21677. side: {
  21678. height: math.unit(8, "meters"),
  21679. weight: math.unit(90000, "kg"),
  21680. name: "Side",
  21681. image: {
  21682. source: "./media/characters/ijzer/side.svg",
  21683. extra: 2756 / 1600,
  21684. bottom: 0.01
  21685. }
  21686. },
  21687. },
  21688. [
  21689. {
  21690. name: "Small",
  21691. height: math.unit(3, "meters")
  21692. },
  21693. {
  21694. name: "Normal",
  21695. height: math.unit(8, "meters"),
  21696. default: true
  21697. },
  21698. {
  21699. name: "Normal+",
  21700. height: math.unit(10, "meters")
  21701. },
  21702. {
  21703. name: "Bigger",
  21704. height: math.unit(24, "meters")
  21705. },
  21706. {
  21707. name: "Huge",
  21708. height: math.unit(80, "meters")
  21709. },
  21710. ]
  21711. ))
  21712. characterMakers.push(() => makeCharacter(
  21713. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21714. {
  21715. front: {
  21716. height: math.unit(6 + 2 / 12, "feet"),
  21717. weight: math.unit(153, "lb"),
  21718. name: "Front",
  21719. image: {
  21720. source: "./media/characters/luca-cervicum/front.svg",
  21721. extra: 370 / 327,
  21722. bottom: 0.015
  21723. }
  21724. },
  21725. back: {
  21726. height: math.unit(6 + 2 / 12, "feet"),
  21727. weight: math.unit(153, "lb"),
  21728. name: "Back",
  21729. image: {
  21730. source: "./media/characters/luca-cervicum/back.svg",
  21731. extra: 367 / 333,
  21732. bottom: 0.005
  21733. }
  21734. },
  21735. frontGear: {
  21736. height: math.unit(6 + 2 / 12, "feet"),
  21737. weight: math.unit(173, "lb"),
  21738. name: "Front (Gear)",
  21739. image: {
  21740. source: "./media/characters/luca-cervicum/front-gear.svg",
  21741. extra: 377 / 333,
  21742. bottom: 0.006
  21743. }
  21744. },
  21745. },
  21746. [
  21747. {
  21748. name: "Normal",
  21749. height: math.unit(6 + 2 / 12, "feet"),
  21750. default: true
  21751. },
  21752. ]
  21753. ))
  21754. characterMakers.push(() => makeCharacter(
  21755. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21756. {
  21757. front: {
  21758. height: math.unit(6 + 1 / 12, "feet"),
  21759. weight: math.unit(304, "lb"),
  21760. name: "Front",
  21761. image: {
  21762. source: "./media/characters/oliver/front.svg",
  21763. extra: 157 / 143,
  21764. bottom: 0.08
  21765. }
  21766. },
  21767. },
  21768. [
  21769. {
  21770. name: "Normal",
  21771. height: math.unit(6 + 1 / 12, "feet"),
  21772. default: true
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21778. {
  21779. front: {
  21780. height: math.unit(5 + 7 / 12, "feet"),
  21781. weight: math.unit(140, "lb"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/shane/front.svg",
  21785. extra: 304 / 289,
  21786. bottom: 0.005
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Normal",
  21793. height: math.unit(5 + 7 / 12, "feet"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21800. {
  21801. front: {
  21802. height: math.unit(5 + 9 / 12, "feet"),
  21803. weight: math.unit(178, "lb"),
  21804. name: "Front",
  21805. image: {
  21806. source: "./media/characters/shin/front.svg",
  21807. extra: 159 / 151,
  21808. bottom: 0.015
  21809. }
  21810. },
  21811. },
  21812. [
  21813. {
  21814. name: "Normal",
  21815. height: math.unit(5 + 9 / 12, "feet"),
  21816. default: true
  21817. },
  21818. ]
  21819. ))
  21820. characterMakers.push(() => makeCharacter(
  21821. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21822. {
  21823. front: {
  21824. height: math.unit(5 + 10 / 12, "feet"),
  21825. weight: math.unit(168, "lb"),
  21826. name: "Front",
  21827. image: {
  21828. source: "./media/characters/xerxes/front.svg",
  21829. extra: 282 / 260,
  21830. bottom: 0.045
  21831. }
  21832. },
  21833. },
  21834. [
  21835. {
  21836. name: "Normal",
  21837. height: math.unit(5 + 10 / 12, "feet"),
  21838. default: true
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(6 + 7 / 12, "feet"),
  21847. weight: math.unit(208, "lb"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/chaska/front.svg",
  21851. extra: 332 / 319,
  21852. bottom: 0.015
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Normal",
  21859. height: math.unit(6 + 7 / 12, "feet"),
  21860. default: true
  21861. },
  21862. ]
  21863. ))
  21864. characterMakers.push(() => makeCharacter(
  21865. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21866. {
  21867. front: {
  21868. height: math.unit(5 + 8 / 12, "feet"),
  21869. weight: math.unit(208, "lb"),
  21870. name: "Front",
  21871. image: {
  21872. source: "./media/characters/enuk/front.svg",
  21873. extra: 437 / 406,
  21874. bottom: 0.02
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Normal",
  21881. height: math.unit(5 + 8 / 12, "feet"),
  21882. default: true
  21883. },
  21884. ]
  21885. ))
  21886. characterMakers.push(() => makeCharacter(
  21887. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21888. {
  21889. front: {
  21890. height: math.unit(5 + 10 / 12, "feet"),
  21891. weight: math.unit(252, "lb"),
  21892. name: "Front",
  21893. image: {
  21894. source: "./media/characters/bruun/front.svg",
  21895. extra: 197 / 187,
  21896. bottom: 0.012
  21897. }
  21898. },
  21899. },
  21900. [
  21901. {
  21902. name: "Normal",
  21903. height: math.unit(5 + 10 / 12, "feet"),
  21904. default: true
  21905. },
  21906. ]
  21907. ))
  21908. characterMakers.push(() => makeCharacter(
  21909. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21910. {
  21911. front: {
  21912. height: math.unit(6 + 10 / 12, "feet"),
  21913. weight: math.unit(255, "lb"),
  21914. name: "Front",
  21915. image: {
  21916. source: "./media/characters/alexeev/front.svg",
  21917. extra: 213 / 200,
  21918. bottom: 0.05
  21919. }
  21920. },
  21921. },
  21922. [
  21923. {
  21924. name: "Normal",
  21925. height: math.unit(6 + 10 / 12, "feet"),
  21926. default: true
  21927. },
  21928. ]
  21929. ))
  21930. characterMakers.push(() => makeCharacter(
  21931. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21932. {
  21933. front: {
  21934. height: math.unit(2 + 8 / 12, "feet"),
  21935. weight: math.unit(22, "lb"),
  21936. name: "Front",
  21937. image: {
  21938. source: "./media/characters/evelyn/front.svg",
  21939. extra: 208 / 180
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Normal",
  21946. height: math.unit(2 + 8 / 12, "feet"),
  21947. default: true
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21953. {
  21954. front: {
  21955. height: math.unit(5 + 9 / 12, "feet"),
  21956. weight: math.unit(139, "lb"),
  21957. name: "Front",
  21958. image: {
  21959. source: "./media/characters/inca/front.svg",
  21960. extra: 294 / 291,
  21961. bottom: 0.03
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(5 + 9 / 12, "feet"),
  21969. default: true
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(6 + 3 / 12, "feet"),
  21978. weight: math.unit(185, "lb"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/mera/front.svg",
  21982. extra: 291 / 277,
  21983. bottom: 0.03
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(6 + 3 / 12, "feet"),
  21991. default: true
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21997. {
  21998. front: {
  21999. height: math.unit(6 + 7 / 12, "feet"),
  22000. weight: math.unit(160, "lb"),
  22001. name: "Front",
  22002. image: {
  22003. source: "./media/characters/ceres/front.svg",
  22004. extra: 1023 / 950,
  22005. bottom: 0.027
  22006. }
  22007. },
  22008. back: {
  22009. height: math.unit(6 + 7 / 12, "feet"),
  22010. weight: math.unit(160, "lb"),
  22011. name: "Back",
  22012. image: {
  22013. source: "./media/characters/ceres/back.svg",
  22014. extra: 1023 / 950
  22015. }
  22016. },
  22017. },
  22018. [
  22019. {
  22020. name: "Normal",
  22021. height: math.unit(6 + 7 / 12, "feet"),
  22022. default: true
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22028. {
  22029. front: {
  22030. height: math.unit(5 + 10 / 12, "feet"),
  22031. weight: math.unit(150, "lb"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/kris/front.svg",
  22035. extra: 885 / 803,
  22036. bottom: 0.03
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Normal",
  22043. height: math.unit(5 + 10 / 12, "feet"),
  22044. default: true
  22045. },
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22050. {
  22051. dragon_front: {
  22052. height: math.unit(5, "feet"),
  22053. name: "Front",
  22054. image: {
  22055. source: "./media/characters/taluthus/dragon-front.svg",
  22056. extra: 1203/1098,
  22057. bottom: 46/1249
  22058. },
  22059. form: "dragon",
  22060. default: true
  22061. },
  22062. dragon_maw: {
  22063. height: math.unit(2.35, "feet"),
  22064. name: "Maw",
  22065. image: {
  22066. source: "./media/characters/taluthus/dragon-maw.svg"
  22067. },
  22068. form: "dragon",
  22069. },
  22070. kitsune_front: {
  22071. height: math.unit(7, "feet"),
  22072. name: "Front",
  22073. image: {
  22074. source: "./media/characters/taluthus/kitsune-front.svg",
  22075. extra: 900/841,
  22076. bottom: 65/965
  22077. },
  22078. form: "kitsune",
  22079. default: true
  22080. },
  22081. },
  22082. [
  22083. {
  22084. name: "Normal",
  22085. height: math.unit(5, "feet"),
  22086. form: "dragon",
  22087. default: true,
  22088. },
  22089. {
  22090. name: "Normal",
  22091. height: math.unit(7, "feet"),
  22092. form: "kitsune",
  22093. default: true
  22094. },
  22095. {
  22096. name: "Macro",
  22097. height: math.unit(300, "feet"),
  22098. allForms: true
  22099. },
  22100. ],
  22101. {
  22102. "dragon": {
  22103. name: "Dragon",
  22104. default: true
  22105. },
  22106. "kitsune": {
  22107. name: "Kitsune",
  22108. },
  22109. }
  22110. ))
  22111. characterMakers.push(() => makeCharacter(
  22112. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22113. {
  22114. front: {
  22115. height: math.unit(5 + 9 / 12, "feet"),
  22116. weight: math.unit(145, "lb"),
  22117. name: "Front",
  22118. image: {
  22119. source: "./media/characters/dawn/front.svg",
  22120. extra: 2094 / 2016,
  22121. bottom: 0.025
  22122. }
  22123. },
  22124. back: {
  22125. height: math.unit(5 + 9 / 12, "feet"),
  22126. weight: math.unit(160, "lb"),
  22127. name: "Back",
  22128. image: {
  22129. source: "./media/characters/dawn/back.svg",
  22130. extra: 2112 / 2080,
  22131. bottom: 0.005
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Normal",
  22138. height: math.unit(6 + 7 / 12, "feet"),
  22139. default: true
  22140. },
  22141. ]
  22142. ))
  22143. characterMakers.push(() => makeCharacter(
  22144. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22145. {
  22146. anthro: {
  22147. height: math.unit(8 + 3 / 12, "feet"),
  22148. weight: math.unit(450, "lb"),
  22149. name: "Anthro",
  22150. image: {
  22151. source: "./media/characters/arador/anthro.svg",
  22152. extra: 1835 / 1718,
  22153. bottom: 0.025
  22154. }
  22155. },
  22156. feral: {
  22157. height: math.unit(4, "feet"),
  22158. weight: math.unit(200, "lb"),
  22159. name: "Feral",
  22160. image: {
  22161. source: "./media/characters/arador/feral.svg",
  22162. extra: 1683 / 1514,
  22163. bottom: 0.07
  22164. }
  22165. },
  22166. },
  22167. [
  22168. {
  22169. name: "Normal",
  22170. height: math.unit(8 + 3 / 12, "feet")
  22171. },
  22172. {
  22173. name: "Macro",
  22174. height: math.unit(82.5, "feet"),
  22175. default: true
  22176. },
  22177. ]
  22178. ))
  22179. characterMakers.push(() => makeCharacter(
  22180. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22181. {
  22182. front: {
  22183. height: math.unit(5 + 10 / 12, "feet"),
  22184. weight: math.unit(125, "lb"),
  22185. name: "Front",
  22186. image: {
  22187. source: "./media/characters/dharsi/front.svg",
  22188. extra: 716 / 630,
  22189. bottom: 0.035
  22190. }
  22191. },
  22192. },
  22193. [
  22194. {
  22195. name: "Nano",
  22196. height: math.unit(100, "nm")
  22197. },
  22198. {
  22199. name: "Micro",
  22200. height: math.unit(2, "inches")
  22201. },
  22202. {
  22203. name: "Normal",
  22204. height: math.unit(5 + 10 / 12, "feet"),
  22205. default: true
  22206. },
  22207. {
  22208. name: "Macro",
  22209. height: math.unit(1000, "feet")
  22210. },
  22211. {
  22212. name: "Megamacro",
  22213. height: math.unit(10, "miles")
  22214. },
  22215. {
  22216. name: "Gigamacro",
  22217. height: math.unit(3000, "miles")
  22218. },
  22219. {
  22220. name: "Teramacro",
  22221. height: math.unit(500000, "miles")
  22222. },
  22223. {
  22224. name: "Teramacro+",
  22225. height: math.unit(30, "galaxies")
  22226. },
  22227. ]
  22228. ))
  22229. characterMakers.push(() => makeCharacter(
  22230. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22231. {
  22232. front: {
  22233. height: math.unit(6, "feet"),
  22234. weight: math.unit(150, "lb"),
  22235. name: "Front",
  22236. image: {
  22237. source: "./media/characters/deathy/front.svg",
  22238. extra: 1552 / 1463,
  22239. bottom: 0.025
  22240. }
  22241. },
  22242. side: {
  22243. height: math.unit(6, "feet"),
  22244. weight: math.unit(150, "lb"),
  22245. name: "Side",
  22246. image: {
  22247. source: "./media/characters/deathy/side.svg",
  22248. extra: 1604 / 1455,
  22249. bottom: 0.025
  22250. }
  22251. },
  22252. back: {
  22253. height: math.unit(6, "feet"),
  22254. weight: math.unit(150, "lb"),
  22255. name: "Back",
  22256. image: {
  22257. source: "./media/characters/deathy/back.svg",
  22258. extra: 1580 / 1463,
  22259. bottom: 0.005
  22260. }
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Micro",
  22266. height: math.unit(5, "millimeters")
  22267. },
  22268. {
  22269. name: "Normal",
  22270. height: math.unit(6 + 5 / 12, "feet"),
  22271. default: true
  22272. },
  22273. ]
  22274. ))
  22275. characterMakers.push(() => makeCharacter(
  22276. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22277. {
  22278. front: {
  22279. height: math.unit(16, "feet"),
  22280. weight: math.unit(4000, "lb"),
  22281. name: "Front",
  22282. image: {
  22283. source: "./media/characters/juniper/front.svg",
  22284. bottom: 0.04
  22285. }
  22286. },
  22287. },
  22288. [
  22289. {
  22290. name: "Normal",
  22291. height: math.unit(16, "feet"),
  22292. default: true
  22293. },
  22294. ]
  22295. ))
  22296. characterMakers.push(() => makeCharacter(
  22297. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22298. {
  22299. front: {
  22300. height: math.unit(6, "feet"),
  22301. weight: math.unit(150, "lb"),
  22302. name: "Front",
  22303. image: {
  22304. source: "./media/characters/hipster/front.svg",
  22305. extra: 1312 / 1209,
  22306. bottom: 0.025
  22307. }
  22308. },
  22309. back: {
  22310. height: math.unit(6, "feet"),
  22311. weight: math.unit(150, "lb"),
  22312. name: "Back",
  22313. image: {
  22314. source: "./media/characters/hipster/back.svg",
  22315. extra: 1281 / 1196,
  22316. bottom: 0.01
  22317. }
  22318. },
  22319. },
  22320. [
  22321. {
  22322. name: "Micro",
  22323. height: math.unit(1, "mm")
  22324. },
  22325. {
  22326. name: "Normal",
  22327. height: math.unit(4, "inches"),
  22328. default: true
  22329. },
  22330. {
  22331. name: "Macro",
  22332. height: math.unit(500, "feet")
  22333. },
  22334. {
  22335. name: "Megamacro",
  22336. height: math.unit(1000, "miles")
  22337. },
  22338. ]
  22339. ))
  22340. characterMakers.push(() => makeCharacter(
  22341. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22342. {
  22343. front: {
  22344. height: math.unit(6, "feet"),
  22345. weight: math.unit(150, "lb"),
  22346. name: "Front",
  22347. image: {
  22348. source: "./media/characters/tendirmuldr/front.svg",
  22349. extra: 1878 / 1772,
  22350. bottom: 0.015
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Megamacro",
  22357. height: math.unit(1500, "miles"),
  22358. default: true
  22359. },
  22360. ]
  22361. ))
  22362. characterMakers.push(() => makeCharacter(
  22363. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22364. {
  22365. front: {
  22366. height: math.unit(14, "feet"),
  22367. weight: math.unit(12000, "lb"),
  22368. name: "Front",
  22369. image: {
  22370. source: "./media/characters/mort/front.svg",
  22371. extra: 365 / 318,
  22372. bottom: 0.01
  22373. }
  22374. },
  22375. side: {
  22376. height: math.unit(14, "feet"),
  22377. weight: math.unit(12000, "lb"),
  22378. name: "Side",
  22379. image: {
  22380. source: "./media/characters/mort/side.svg",
  22381. extra: 365 / 318,
  22382. bottom: 0.052
  22383. },
  22384. default: true
  22385. },
  22386. back: {
  22387. height: math.unit(14, "feet"),
  22388. weight: math.unit(12000, "lb"),
  22389. name: "Back",
  22390. image: {
  22391. source: "./media/characters/mort/back.svg",
  22392. extra: 371 / 332,
  22393. bottom: 0.18
  22394. }
  22395. },
  22396. },
  22397. [
  22398. {
  22399. name: "Normal",
  22400. height: math.unit(14, "feet"),
  22401. default: true
  22402. },
  22403. ]
  22404. ))
  22405. characterMakers.push(() => makeCharacter(
  22406. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22407. {
  22408. front: {
  22409. height: math.unit(8, "feet"),
  22410. weight: math.unit(1, "ton"),
  22411. name: "Front",
  22412. image: {
  22413. source: "./media/characters/lycoa/front.svg",
  22414. extra: 1836/1728,
  22415. bottom: 81/1917
  22416. }
  22417. },
  22418. back: {
  22419. height: math.unit(8, "feet"),
  22420. weight: math.unit(1, "ton"),
  22421. name: "Back",
  22422. image: {
  22423. source: "./media/characters/lycoa/back.svg",
  22424. extra: 1785/1720,
  22425. bottom: 91/1876
  22426. }
  22427. },
  22428. head: {
  22429. height: math.unit(1.6243, "feet"),
  22430. name: "Head",
  22431. image: {
  22432. source: "./media/characters/lycoa/head.svg",
  22433. extra: 1011/782,
  22434. bottom: 0/1011
  22435. }
  22436. },
  22437. tailmaw: {
  22438. height: math.unit(1.9, "feet"),
  22439. name: "Tailmaw",
  22440. image: {
  22441. source: "./media/characters/lycoa/tailmaw.svg"
  22442. }
  22443. },
  22444. tentacles: {
  22445. height: math.unit(2.1, "feet"),
  22446. name: "Tentacles",
  22447. image: {
  22448. source: "./media/characters/lycoa/tentacles.svg"
  22449. }
  22450. },
  22451. dick: {
  22452. height: math.unit(1.73, "feet"),
  22453. name: "Dick",
  22454. image: {
  22455. source: "./media/characters/lycoa/dick.svg"
  22456. }
  22457. },
  22458. },
  22459. [
  22460. {
  22461. name: "Normal",
  22462. height: math.unit(8, "feet"),
  22463. default: true
  22464. },
  22465. {
  22466. name: "Macro",
  22467. height: math.unit(30, "feet")
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22473. {
  22474. front: {
  22475. height: math.unit(4 + 2 / 12, "feet"),
  22476. weight: math.unit(70, "lb"),
  22477. name: "Front",
  22478. image: {
  22479. source: "./media/characters/naldara/front.svg",
  22480. extra: 1664/1387,
  22481. bottom: 81/1745
  22482. },
  22483. form: "anthro",
  22484. default: true
  22485. },
  22486. naga: {
  22487. height: math.unit(20, "feet"),
  22488. weight: math.unit(15000, "kg"),
  22489. name: "Front",
  22490. image: {
  22491. source: "./media/characters/naldara/naga.svg",
  22492. extra: 1590/1396,
  22493. bottom: 285/1875
  22494. },
  22495. form: "naga",
  22496. default: true
  22497. },
  22498. },
  22499. [
  22500. {
  22501. name: "Normal",
  22502. height: math.unit(4 + 2 / 12, "feet"),
  22503. form: "anthro",
  22504. default: true
  22505. },
  22506. {
  22507. name: "Normal",
  22508. height: math.unit(20, "feet"),
  22509. form: "naga",
  22510. default: true
  22511. },
  22512. ],
  22513. {
  22514. "anthro": {
  22515. name: "Anthro",
  22516. default: true
  22517. },
  22518. "naga": {
  22519. name: "Naga"
  22520. }
  22521. }
  22522. ))
  22523. characterMakers.push(() => makeCharacter(
  22524. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22525. {
  22526. front: {
  22527. height: math.unit(13 + 7 / 12, "feet"),
  22528. weight: math.unit(1500, "lb"),
  22529. name: "Front",
  22530. image: {
  22531. source: "./media/characters/briar/front.svg",
  22532. extra: 1223/1157,
  22533. bottom: 123/1346
  22534. }
  22535. },
  22536. },
  22537. [
  22538. {
  22539. name: "Normal",
  22540. height: math.unit(13 + 7 / 12, "feet"),
  22541. default: true
  22542. },
  22543. ]
  22544. ))
  22545. characterMakers.push(() => makeCharacter(
  22546. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22547. {
  22548. side: {
  22549. height: math.unit(16, "feet"),
  22550. weight: math.unit(500, "lb"),
  22551. name: "Side",
  22552. image: {
  22553. source: "./media/characters/vanguard/side.svg",
  22554. extra: 1022/914,
  22555. bottom: 30/1052
  22556. }
  22557. },
  22558. sideAlt: {
  22559. height: math.unit(10, "feet"),
  22560. weight: math.unit(500, "lb"),
  22561. name: "Side (Alt)",
  22562. image: {
  22563. source: "./media/characters/vanguard/side-alt.svg",
  22564. extra: 502 / 425,
  22565. bottom: 0.087
  22566. }
  22567. },
  22568. },
  22569. [
  22570. {
  22571. name: "Normal",
  22572. height: math.unit(17.71, "feet"),
  22573. default: true
  22574. },
  22575. ]
  22576. ))
  22577. characterMakers.push(() => makeCharacter(
  22578. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22579. {
  22580. front: {
  22581. height: math.unit(7.5, "feet"),
  22582. weight: math.unit(2, "lb"),
  22583. name: "Front",
  22584. image: {
  22585. source: "./media/characters/artemis/work-safe-front.svg",
  22586. extra: 1192 / 1075,
  22587. bottom: 0.07
  22588. },
  22589. form: "work-safe",
  22590. default: true
  22591. },
  22592. frontNsfw: {
  22593. height: math.unit(7.5, "feet"),
  22594. weight: math.unit(2, "lb"),
  22595. name: "Front",
  22596. image: {
  22597. source: "./media/characters/artemis/calibrating-front.svg",
  22598. extra: 1192 / 1075,
  22599. bottom: 0.07
  22600. },
  22601. form: "calibrating",
  22602. default: true
  22603. },
  22604. frontNsfwer: {
  22605. height: math.unit(7.5, "feet"),
  22606. weight: math.unit(2, "lb"),
  22607. name: "Front",
  22608. image: {
  22609. source: "./media/characters/artemis/oversize-load-front.svg",
  22610. extra: 1192 / 1075,
  22611. bottom: 0.07
  22612. },
  22613. form: "oversize-load",
  22614. default: true
  22615. },
  22616. side: {
  22617. height: math.unit(7.5, "feet"),
  22618. weight: math.unit(2, "lb"),
  22619. name: "Side",
  22620. image: {
  22621. source: "./media/characters/artemis/work-safe-side.svg",
  22622. extra: 1192 / 1075,
  22623. bottom: 0.07
  22624. },
  22625. form: "work-safe"
  22626. },
  22627. sideNsfw: {
  22628. height: math.unit(7.5, "feet"),
  22629. weight: math.unit(2, "lb"),
  22630. name: "Side",
  22631. image: {
  22632. source: "./media/characters/artemis/calibrating-side.svg",
  22633. extra: 1192 / 1075,
  22634. bottom: 0.07
  22635. },
  22636. form: "calibrating"
  22637. },
  22638. sideNsfwer: {
  22639. height: math.unit(7.5, "feet"),
  22640. weight: math.unit(2, "lb"),
  22641. name: "Side",
  22642. image: {
  22643. source: "./media/characters/artemis/oversize-load-side.svg",
  22644. extra: 1192 / 1075,
  22645. bottom: 0.07
  22646. },
  22647. form: "oversize-load"
  22648. },
  22649. maw: {
  22650. height: math.unit(1.1, "feet"),
  22651. name: "Maw",
  22652. image: {
  22653. source: "./media/characters/artemis/maw.svg"
  22654. },
  22655. form: "work-safe"
  22656. },
  22657. stomach: {
  22658. height: math.unit(0.95, "feet"),
  22659. name: "Stomach",
  22660. image: {
  22661. source: "./media/characters/artemis/stomach.svg"
  22662. },
  22663. form: "work-safe"
  22664. },
  22665. dickCanine: {
  22666. height: math.unit(1, "feet"),
  22667. name: "Dick (Canine)",
  22668. image: {
  22669. source: "./media/characters/artemis/dick-canine.svg"
  22670. },
  22671. form: "calibrating"
  22672. },
  22673. dickEquine: {
  22674. height: math.unit(0.85, "feet"),
  22675. name: "Dick (Equine)",
  22676. image: {
  22677. source: "./media/characters/artemis/dick-equine.svg"
  22678. },
  22679. form: "calibrating"
  22680. },
  22681. dickExotic: {
  22682. height: math.unit(0.85, "feet"),
  22683. name: "Dick (Exotic)",
  22684. image: {
  22685. source: "./media/characters/artemis/dick-exotic.svg"
  22686. },
  22687. form: "calibrating"
  22688. },
  22689. dickCanineBigger: {
  22690. height: math.unit(1 * 1.33, "feet"),
  22691. name: "Dick (Canine)",
  22692. image: {
  22693. source: "./media/characters/artemis/dick-canine.svg"
  22694. },
  22695. form: "oversize-load"
  22696. },
  22697. dickEquineBigger: {
  22698. height: math.unit(0.85 * 1.33, "feet"),
  22699. name: "Dick (Equine)",
  22700. image: {
  22701. source: "./media/characters/artemis/dick-equine.svg"
  22702. },
  22703. form: "oversize-load"
  22704. },
  22705. dickExoticBigger: {
  22706. height: math.unit(0.85 * 1.33, "feet"),
  22707. name: "Dick (Exotic)",
  22708. image: {
  22709. source: "./media/characters/artemis/dick-exotic.svg"
  22710. },
  22711. form: "oversize-load"
  22712. },
  22713. },
  22714. [
  22715. {
  22716. name: "Normal",
  22717. height: math.unit(7.5, "feet"),
  22718. form: "work-safe",
  22719. default: true
  22720. },
  22721. {
  22722. name: "Normal",
  22723. height: math.unit(7.5, "feet"),
  22724. form: "calibrating",
  22725. default: true
  22726. },
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(7.5, "feet"),
  22730. form: "oversize-load",
  22731. default: true
  22732. },
  22733. {
  22734. name: "Enlarged",
  22735. height: math.unit(12, "feet"),
  22736. form: "work-safe",
  22737. },
  22738. {
  22739. name: "Enlarged",
  22740. height: math.unit(12, "feet"),
  22741. form: "calibrating",
  22742. },
  22743. {
  22744. name: "Enlarged",
  22745. height: math.unit(12, "feet"),
  22746. form: "oversize-load",
  22747. },
  22748. ],
  22749. {
  22750. "work-safe": {
  22751. name: "Work-Safe",
  22752. default: true
  22753. },
  22754. "calibrating": {
  22755. name: "Calibrating"
  22756. },
  22757. "oversize-load": {
  22758. name: "Oversize Load"
  22759. }
  22760. }
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22764. {
  22765. front: {
  22766. height: math.unit(5 + 3 / 12, "feet"),
  22767. weight: math.unit(160, "lb"),
  22768. name: "Front",
  22769. image: {
  22770. source: "./media/characters/kira/front.svg",
  22771. extra: 906 / 786,
  22772. bottom: 0.01
  22773. }
  22774. },
  22775. back: {
  22776. height: math.unit(5 + 3 / 12, "feet"),
  22777. weight: math.unit(160, "lb"),
  22778. name: "Back",
  22779. image: {
  22780. source: "./media/characters/kira/back.svg",
  22781. extra: 882 / 757,
  22782. bottom: 0.005
  22783. }
  22784. },
  22785. frontDressed: {
  22786. height: math.unit(5 + 3 / 12, "feet"),
  22787. weight: math.unit(160, "lb"),
  22788. name: "Front (Dressed)",
  22789. image: {
  22790. source: "./media/characters/kira/front-dressed.svg",
  22791. extra: 906 / 786,
  22792. bottom: 0.01
  22793. }
  22794. },
  22795. beans: {
  22796. height: math.unit(0.92, "feet"),
  22797. name: "Beans",
  22798. image: {
  22799. source: "./media/characters/kira/beans.svg"
  22800. }
  22801. },
  22802. },
  22803. [
  22804. {
  22805. name: "Normal",
  22806. height: math.unit(5 + 3 / 12, "feet"),
  22807. default: true
  22808. },
  22809. ]
  22810. ))
  22811. characterMakers.push(() => makeCharacter(
  22812. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22813. {
  22814. front: {
  22815. height: math.unit(5 + 4 / 12, "feet"),
  22816. weight: math.unit(145, "lb"),
  22817. name: "Front",
  22818. image: {
  22819. source: "./media/characters/scramble/front.svg",
  22820. extra: 763 / 727,
  22821. bottom: 0.05
  22822. }
  22823. },
  22824. back: {
  22825. height: math.unit(5 + 4 / 12, "feet"),
  22826. weight: math.unit(145, "lb"),
  22827. name: "Back",
  22828. image: {
  22829. source: "./media/characters/scramble/back.svg",
  22830. extra: 826 / 737,
  22831. bottom: 0.002
  22832. }
  22833. },
  22834. },
  22835. [
  22836. {
  22837. name: "Normal",
  22838. height: math.unit(5 + 4 / 12, "feet"),
  22839. default: true
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22845. {
  22846. side: {
  22847. height: math.unit(6 + 2 / 12, "feet"),
  22848. weight: math.unit(190, "lb"),
  22849. name: "Side",
  22850. image: {
  22851. source: "./media/characters/biscuit/side.svg",
  22852. extra: 858 / 791,
  22853. bottom: 0.044
  22854. }
  22855. },
  22856. },
  22857. [
  22858. {
  22859. name: "Normal",
  22860. height: math.unit(6 + 2 / 12, "feet"),
  22861. default: true
  22862. },
  22863. ]
  22864. ))
  22865. characterMakers.push(() => makeCharacter(
  22866. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22867. {
  22868. front: {
  22869. height: math.unit(5 + 2 / 12, "feet"),
  22870. weight: math.unit(120, "lb"),
  22871. name: "Front",
  22872. image: {
  22873. source: "./media/characters/poffin/front.svg",
  22874. extra: 786 / 680,
  22875. bottom: 0.005
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Normal",
  22882. height: math.unit(5 + 2 / 12, "feet"),
  22883. default: true
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22889. {
  22890. front: {
  22891. height: math.unit(6 + 3 / 12, "feet"),
  22892. weight: math.unit(519, "lb"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/dhari/front.svg",
  22896. extra: 1048 / 946,
  22897. bottom: 0.015
  22898. }
  22899. },
  22900. back: {
  22901. height: math.unit(6 + 3 / 12, "feet"),
  22902. weight: math.unit(519, "lb"),
  22903. name: "Back",
  22904. image: {
  22905. source: "./media/characters/dhari/back.svg",
  22906. extra: 1048 / 931,
  22907. bottom: 0.005
  22908. }
  22909. },
  22910. frontDressed: {
  22911. height: math.unit(6 + 3 / 12, "feet"),
  22912. weight: math.unit(519, "lb"),
  22913. name: "Front (Dressed)",
  22914. image: {
  22915. source: "./media/characters/dhari/front-dressed.svg",
  22916. extra: 1713 / 1546,
  22917. bottom: 0.02
  22918. }
  22919. },
  22920. backDressed: {
  22921. height: math.unit(6 + 3 / 12, "feet"),
  22922. weight: math.unit(519, "lb"),
  22923. name: "Back (Dressed)",
  22924. image: {
  22925. source: "./media/characters/dhari/back-dressed.svg",
  22926. extra: 1699 / 1537,
  22927. bottom: 0.01
  22928. }
  22929. },
  22930. maw: {
  22931. height: math.unit(0.95, "feet"),
  22932. name: "Maw",
  22933. image: {
  22934. source: "./media/characters/dhari/maw.svg"
  22935. }
  22936. },
  22937. wereFront: {
  22938. height: math.unit(12 + 8 / 12, "feet"),
  22939. weight: math.unit(4000, "lb"),
  22940. name: "Front (Were)",
  22941. image: {
  22942. source: "./media/characters/dhari/were-front.svg",
  22943. extra: 1065 / 969,
  22944. bottom: 0.015
  22945. }
  22946. },
  22947. wereBack: {
  22948. height: math.unit(12 + 8 / 12, "feet"),
  22949. weight: math.unit(4000, "lb"),
  22950. name: "Back (Were)",
  22951. image: {
  22952. source: "./media/characters/dhari/were-back.svg",
  22953. extra: 1065 / 969,
  22954. bottom: 0.012
  22955. }
  22956. },
  22957. wereMaw: {
  22958. height: math.unit(0.625, "meters"),
  22959. name: "Maw (Were)",
  22960. image: {
  22961. source: "./media/characters/dhari/were-maw.svg"
  22962. }
  22963. },
  22964. },
  22965. [
  22966. {
  22967. name: "Normal",
  22968. height: math.unit(6 + 3 / 12, "feet"),
  22969. default: true
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22975. {
  22976. anthro: {
  22977. height: math.unit(5 + 7 / 12, "feet"),
  22978. weight: math.unit(175, "lb"),
  22979. name: "Anthro",
  22980. image: {
  22981. source: "./media/characters/rena-dyne/anthro.svg",
  22982. extra: 1849 / 1785,
  22983. bottom: 0.005
  22984. }
  22985. },
  22986. taur: {
  22987. height: math.unit(15 + 6 / 12, "feet"),
  22988. weight: math.unit(8000, "lb"),
  22989. name: "Taur",
  22990. image: {
  22991. source: "./media/characters/rena-dyne/taur.svg",
  22992. extra: 2315 / 2234,
  22993. bottom: 0.033
  22994. }
  22995. },
  22996. },
  22997. [
  22998. {
  22999. name: "Normal",
  23000. height: math.unit(5 + 7 / 12, "feet"),
  23001. default: true
  23002. },
  23003. ]
  23004. ))
  23005. characterMakers.push(() => makeCharacter(
  23006. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23007. {
  23008. front: {
  23009. height: math.unit(8, "feet"),
  23010. weight: math.unit(600, "lb"),
  23011. name: "Front",
  23012. image: {
  23013. source: "./media/characters/weremeep/front.svg",
  23014. extra: 970/849,
  23015. bottom: 7/977
  23016. }
  23017. },
  23018. },
  23019. [
  23020. {
  23021. name: "Normal",
  23022. height: math.unit(8, "feet"),
  23023. default: true
  23024. },
  23025. {
  23026. name: "Lorg",
  23027. height: math.unit(12, "feet")
  23028. },
  23029. {
  23030. name: "Oh Lawd She Comin'",
  23031. height: math.unit(20, "feet")
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23037. {
  23038. front: {
  23039. height: math.unit(4, "feet"),
  23040. weight: math.unit(90, "lb"),
  23041. name: "Front",
  23042. image: {
  23043. source: "./media/characters/reza/front.svg",
  23044. extra: 1183 / 1111,
  23045. bottom: 0.017
  23046. }
  23047. },
  23048. back: {
  23049. height: math.unit(4, "feet"),
  23050. weight: math.unit(90, "lb"),
  23051. name: "Back",
  23052. image: {
  23053. source: "./media/characters/reza/back.svg",
  23054. extra: 1183 / 1111,
  23055. bottom: 0.01
  23056. }
  23057. },
  23058. drake: {
  23059. height: math.unit(30, "feet"),
  23060. weight: math.unit(246960, "lb"),
  23061. name: "Drake",
  23062. image: {
  23063. source: "./media/characters/reza/drake.svg",
  23064. extra: 2350 / 2024,
  23065. bottom: 60.7 / 2403
  23066. }
  23067. },
  23068. },
  23069. [
  23070. {
  23071. name: "Normal",
  23072. height: math.unit(4, "feet"),
  23073. default: true
  23074. },
  23075. ]
  23076. ))
  23077. characterMakers.push(() => makeCharacter(
  23078. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23079. {
  23080. side: {
  23081. height: math.unit(15, "feet"),
  23082. weight: math.unit(14, "tons"),
  23083. name: "Side",
  23084. image: {
  23085. source: "./media/characters/athea/side.svg",
  23086. extra: 960 / 540,
  23087. bottom: 0.003
  23088. }
  23089. },
  23090. sitting: {
  23091. height: math.unit(6 * 2.85, "feet"),
  23092. weight: math.unit(14, "tons"),
  23093. name: "Sitting",
  23094. image: {
  23095. source: "./media/characters/athea/sitting.svg",
  23096. extra: 621 / 581,
  23097. bottom: 0.075
  23098. }
  23099. },
  23100. maw: {
  23101. height: math.unit(7.59498031496063, "feet"),
  23102. name: "Maw",
  23103. image: {
  23104. source: "./media/characters/athea/maw.svg"
  23105. }
  23106. },
  23107. },
  23108. [
  23109. {
  23110. name: "Lap Cat",
  23111. height: math.unit(2.5, "feet")
  23112. },
  23113. {
  23114. name: "Minimacro",
  23115. height: math.unit(15, "feet"),
  23116. default: true
  23117. },
  23118. {
  23119. name: "Macro",
  23120. height: math.unit(120, "feet")
  23121. },
  23122. {
  23123. name: "Macro+",
  23124. height: math.unit(640, "feet")
  23125. },
  23126. {
  23127. name: "Colossus",
  23128. height: math.unit(2.2, "miles")
  23129. },
  23130. ]
  23131. ))
  23132. characterMakers.push(() => makeCharacter(
  23133. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23134. {
  23135. front: {
  23136. height: math.unit(8 + 8 / 12, "feet"),
  23137. weight: math.unit(130, "kg"),
  23138. name: "Front",
  23139. image: {
  23140. source: "./media/characters/seroko/front.svg",
  23141. extra: 1385 / 1280,
  23142. bottom: 0.025
  23143. }
  23144. },
  23145. back: {
  23146. height: math.unit(8 + 8 / 12, "feet"),
  23147. weight: math.unit(130, "kg"),
  23148. name: "Back",
  23149. image: {
  23150. source: "./media/characters/seroko/back.svg",
  23151. extra: 1369 / 1238,
  23152. bottom: 0.018
  23153. }
  23154. },
  23155. frontDressed: {
  23156. height: math.unit(8 + 8 / 12, "feet"),
  23157. weight: math.unit(130, "kg"),
  23158. name: "Front (Dressed)",
  23159. image: {
  23160. source: "./media/characters/seroko/front-dressed.svg",
  23161. extra: 1366 / 1275,
  23162. bottom: 0.03
  23163. }
  23164. },
  23165. },
  23166. [
  23167. {
  23168. name: "Normal",
  23169. height: math.unit(8 + 8 / 12, "feet"),
  23170. default: true
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23176. {
  23177. front: {
  23178. height: math.unit(5.5, "feet"),
  23179. weight: math.unit(160, "lb"),
  23180. name: "Front",
  23181. image: {
  23182. source: "./media/characters/quatzi/front.svg",
  23183. extra: 2346 / 2242,
  23184. bottom: 0.015
  23185. }
  23186. },
  23187. },
  23188. [
  23189. {
  23190. name: "Normal",
  23191. height: math.unit(5.5, "feet"),
  23192. default: true
  23193. },
  23194. {
  23195. name: "Big",
  23196. height: math.unit(7.7, "feet")
  23197. },
  23198. ]
  23199. ))
  23200. characterMakers.push(() => makeCharacter(
  23201. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23202. {
  23203. front: {
  23204. height: math.unit(5 + 11 / 12, "feet"),
  23205. weight: math.unit(180, "lb"),
  23206. name: "Front",
  23207. image: {
  23208. source: "./media/characters/sen/front.svg",
  23209. extra: 1321 / 1254,
  23210. bottom: 0.015
  23211. }
  23212. },
  23213. side: {
  23214. height: math.unit(5 + 11 / 12, "feet"),
  23215. weight: math.unit(180, "lb"),
  23216. name: "Side",
  23217. image: {
  23218. source: "./media/characters/sen/side.svg",
  23219. extra: 1321 / 1254,
  23220. bottom: 0.007
  23221. }
  23222. },
  23223. back: {
  23224. height: math.unit(5 + 11 / 12, "feet"),
  23225. weight: math.unit(180, "lb"),
  23226. name: "Back",
  23227. image: {
  23228. source: "./media/characters/sen/back.svg",
  23229. extra: 1321 / 1254
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Normal",
  23236. height: math.unit(5 + 11 / 12, "feet"),
  23237. default: true
  23238. },
  23239. ]
  23240. ))
  23241. characterMakers.push(() => makeCharacter(
  23242. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23243. {
  23244. front: {
  23245. height: math.unit(166.6, "cm"),
  23246. weight: math.unit(66.6, "kg"),
  23247. name: "Front",
  23248. image: {
  23249. source: "./media/characters/fruity/front.svg",
  23250. extra: 1510 / 1386,
  23251. bottom: 0.04
  23252. }
  23253. },
  23254. back: {
  23255. height: math.unit(166.6, "cm"),
  23256. weight: math.unit(66.6, "lb"),
  23257. name: "Back",
  23258. image: {
  23259. source: "./media/characters/fruity/back.svg",
  23260. extra: 1563 / 1435,
  23261. bottom: 0.005
  23262. }
  23263. },
  23264. },
  23265. [
  23266. {
  23267. name: "Normal",
  23268. height: math.unit(166.6, "cm"),
  23269. default: true
  23270. },
  23271. {
  23272. name: "Demonic",
  23273. height: math.unit(166.6, "feet")
  23274. },
  23275. ]
  23276. ))
  23277. characterMakers.push(() => makeCharacter(
  23278. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23279. {
  23280. side: {
  23281. height: math.unit(10, "feet"),
  23282. weight: math.unit(500, "lb"),
  23283. name: "Side",
  23284. image: {
  23285. source: "./media/characters/zost/side.svg",
  23286. extra: 2870/2533,
  23287. bottom: 252/3122
  23288. }
  23289. },
  23290. mawFront: {
  23291. height: math.unit(1.08, "meters"),
  23292. name: "Maw (Front)",
  23293. image: {
  23294. source: "./media/characters/zost/maw-front.svg"
  23295. }
  23296. },
  23297. mawSide: {
  23298. height: math.unit(2.66, "feet"),
  23299. name: "Maw (Side)",
  23300. image: {
  23301. source: "./media/characters/zost/maw-side.svg"
  23302. }
  23303. },
  23304. wingspan: {
  23305. height: math.unit(7.4, "feet"),
  23306. name: "Wingspan",
  23307. image: {
  23308. source: "./media/characters/zost/wingspan.svg"
  23309. }
  23310. },
  23311. },
  23312. [
  23313. {
  23314. name: "Normal",
  23315. height: math.unit(10, "feet"),
  23316. default: true
  23317. },
  23318. ]
  23319. ))
  23320. characterMakers.push(() => makeCharacter(
  23321. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23322. {
  23323. front: {
  23324. height: math.unit(5 + 4 / 12, "feet"),
  23325. weight: math.unit(120, "lb"),
  23326. name: "Front",
  23327. image: {
  23328. source: "./media/characters/luci/front.svg",
  23329. extra: 1985 / 1884,
  23330. bottom: 0.04
  23331. }
  23332. },
  23333. back: {
  23334. height: math.unit(5 + 4 / 12, "feet"),
  23335. weight: math.unit(120, "lb"),
  23336. name: "Back",
  23337. image: {
  23338. source: "./media/characters/luci/back.svg",
  23339. extra: 1892 / 1791,
  23340. bottom: 0.002
  23341. }
  23342. },
  23343. },
  23344. [
  23345. {
  23346. name: "Normal",
  23347. height: math.unit(5 + 4 / 12, "feet"),
  23348. default: true
  23349. },
  23350. ]
  23351. ))
  23352. characterMakers.push(() => makeCharacter(
  23353. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23354. {
  23355. front: {
  23356. height: math.unit(1500, "feet"),
  23357. weight: math.unit(3.8e6, "tons"),
  23358. name: "Front",
  23359. image: {
  23360. source: "./media/characters/2th/front.svg",
  23361. extra: 3489 / 3350,
  23362. bottom: 0.1
  23363. }
  23364. },
  23365. foot: {
  23366. height: math.unit(461, "feet"),
  23367. name: "Foot",
  23368. image: {
  23369. source: "./media/characters/2th/foot.svg"
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "\"Micro\"",
  23376. height: math.unit(15 + 7 / 12, "feet")
  23377. },
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(1500, "feet"),
  23381. default: true
  23382. },
  23383. {
  23384. name: "Macro",
  23385. height: math.unit(5000, "feet")
  23386. },
  23387. {
  23388. name: "Megamacro",
  23389. height: math.unit(15, "miles")
  23390. },
  23391. {
  23392. name: "Gigamacro",
  23393. height: math.unit(4000, "miles")
  23394. },
  23395. {
  23396. name: "Galactic",
  23397. height: math.unit(50, "AU")
  23398. },
  23399. ]
  23400. ))
  23401. characterMakers.push(() => makeCharacter(
  23402. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23403. {
  23404. front: {
  23405. height: math.unit(5 + 6 / 12, "feet"),
  23406. weight: math.unit(220, "lb"),
  23407. name: "Front",
  23408. image: {
  23409. source: "./media/characters/amethyst/front.svg",
  23410. extra: 2078 / 2040,
  23411. bottom: 0.045
  23412. }
  23413. },
  23414. back: {
  23415. height: math.unit(5 + 6 / 12, "feet"),
  23416. weight: math.unit(220, "lb"),
  23417. name: "Back",
  23418. image: {
  23419. source: "./media/characters/amethyst/back.svg",
  23420. extra: 2021 / 1989,
  23421. bottom: 0.02
  23422. }
  23423. },
  23424. },
  23425. [
  23426. {
  23427. name: "Normal",
  23428. height: math.unit(5 + 6 / 12, "feet"),
  23429. default: true
  23430. },
  23431. ]
  23432. ))
  23433. characterMakers.push(() => makeCharacter(
  23434. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23435. {
  23436. front: {
  23437. height: math.unit(4 + 11 / 12, "feet"),
  23438. weight: math.unit(120, "lb"),
  23439. name: "Front",
  23440. image: {
  23441. source: "./media/characters/yumi-akiyama/front.svg",
  23442. extra: 1327 / 1235,
  23443. bottom: 0.02
  23444. }
  23445. },
  23446. back: {
  23447. height: math.unit(4 + 11 / 12, "feet"),
  23448. weight: math.unit(120, "lb"),
  23449. name: "Back",
  23450. image: {
  23451. source: "./media/characters/yumi-akiyama/back.svg",
  23452. extra: 1287 / 1245,
  23453. bottom: 0.002
  23454. }
  23455. },
  23456. },
  23457. [
  23458. {
  23459. name: "Galactic",
  23460. height: math.unit(50, "galaxies"),
  23461. default: true
  23462. },
  23463. {
  23464. name: "Universal",
  23465. height: math.unit(100, "universes")
  23466. },
  23467. ]
  23468. ))
  23469. characterMakers.push(() => makeCharacter(
  23470. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23471. {
  23472. front: {
  23473. height: math.unit(8, "feet"),
  23474. weight: math.unit(500, "lb"),
  23475. name: "Front",
  23476. image: {
  23477. source: "./media/characters/rifter-yrmori/front.svg",
  23478. extra: 1180 / 1125,
  23479. bottom: 0.02
  23480. }
  23481. },
  23482. back: {
  23483. height: math.unit(8, "feet"),
  23484. weight: math.unit(500, "lb"),
  23485. name: "Back",
  23486. image: {
  23487. source: "./media/characters/rifter-yrmori/back.svg",
  23488. extra: 1190 / 1145,
  23489. bottom: 0.001
  23490. }
  23491. },
  23492. wings: {
  23493. height: math.unit(7.75, "feet"),
  23494. weight: math.unit(500, "lb"),
  23495. name: "Wings",
  23496. image: {
  23497. source: "./media/characters/rifter-yrmori/wings.svg",
  23498. extra: 1357 / 1285
  23499. }
  23500. },
  23501. maw: {
  23502. height: math.unit(0.8, "feet"),
  23503. name: "Maw",
  23504. image: {
  23505. source: "./media/characters/rifter-yrmori/maw.svg"
  23506. }
  23507. },
  23508. mawfront: {
  23509. height: math.unit(1.45, "feet"),
  23510. name: "Maw (Front)",
  23511. image: {
  23512. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23513. }
  23514. },
  23515. },
  23516. [
  23517. {
  23518. name: "Normal",
  23519. height: math.unit(8, "feet"),
  23520. default: true
  23521. },
  23522. {
  23523. name: "Macro",
  23524. height: math.unit(42, "meters")
  23525. },
  23526. ]
  23527. ))
  23528. characterMakers.push(() => makeCharacter(
  23529. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23530. {
  23531. were: {
  23532. height: math.unit(25 + 6 / 12, "feet"),
  23533. weight: math.unit(10000, "lb"),
  23534. name: "Were",
  23535. image: {
  23536. source: "./media/characters/tahajin/were.svg",
  23537. extra: 801 / 770,
  23538. bottom: 0.042
  23539. }
  23540. },
  23541. aquatic: {
  23542. height: math.unit(6 + 4 / 12, "feet"),
  23543. weight: math.unit(160, "lb"),
  23544. name: "Aquatic",
  23545. image: {
  23546. source: "./media/characters/tahajin/aquatic.svg",
  23547. extra: 572 / 542,
  23548. bottom: 0.04
  23549. }
  23550. },
  23551. chow: {
  23552. height: math.unit(8 + 11 / 12, "feet"),
  23553. weight: math.unit(450, "lb"),
  23554. name: "Chow",
  23555. image: {
  23556. source: "./media/characters/tahajin/chow.svg",
  23557. extra: 660 / 640,
  23558. bottom: 0.015
  23559. }
  23560. },
  23561. demiNaga: {
  23562. height: math.unit(6 + 8 / 12, "feet"),
  23563. weight: math.unit(300, "lb"),
  23564. name: "Demi Naga",
  23565. image: {
  23566. source: "./media/characters/tahajin/demi-naga.svg",
  23567. extra: 643 / 615,
  23568. bottom: 0.1
  23569. }
  23570. },
  23571. data: {
  23572. height: math.unit(5, "inches"),
  23573. weight: math.unit(0.1, "lb"),
  23574. name: "Data",
  23575. image: {
  23576. source: "./media/characters/tahajin/data.svg"
  23577. }
  23578. },
  23579. fluu: {
  23580. height: math.unit(5 + 7 / 12, "feet"),
  23581. weight: math.unit(140, "lb"),
  23582. name: "Fluu",
  23583. image: {
  23584. source: "./media/characters/tahajin/fluu.svg",
  23585. extra: 628 / 592,
  23586. bottom: 0.02
  23587. }
  23588. },
  23589. starWarrior: {
  23590. height: math.unit(4 + 5 / 12, "feet"),
  23591. weight: math.unit(50, "lb"),
  23592. name: "Star Warrior",
  23593. image: {
  23594. source: "./media/characters/tahajin/star-warrior.svg"
  23595. }
  23596. },
  23597. },
  23598. [
  23599. {
  23600. name: "Normal",
  23601. height: math.unit(25 + 6 / 12, "feet"),
  23602. default: true
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23608. {
  23609. front: {
  23610. height: math.unit(8, "feet"),
  23611. weight: math.unit(350, "lb"),
  23612. name: "Front",
  23613. image: {
  23614. source: "./media/characters/gabira/front.svg",
  23615. extra: 1261/1154,
  23616. bottom: 51/1312
  23617. }
  23618. },
  23619. back: {
  23620. height: math.unit(8, "feet"),
  23621. weight: math.unit(350, "lb"),
  23622. name: "Back",
  23623. image: {
  23624. source: "./media/characters/gabira/back.svg",
  23625. extra: 1265/1163,
  23626. bottom: 46/1311
  23627. }
  23628. },
  23629. head: {
  23630. height: math.unit(2.85, "feet"),
  23631. name: "Head",
  23632. image: {
  23633. source: "./media/characters/gabira/head.svg"
  23634. }
  23635. },
  23636. },
  23637. [
  23638. {
  23639. name: "Normal",
  23640. height: math.unit(8, "feet"),
  23641. default: true
  23642. },
  23643. ]
  23644. ))
  23645. characterMakers.push(() => makeCharacter(
  23646. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23647. {
  23648. front: {
  23649. height: math.unit(5 + 3 / 12, "feet"),
  23650. weight: math.unit(137, "lb"),
  23651. name: "Front",
  23652. image: {
  23653. source: "./media/characters/sasha-katraine/front.svg",
  23654. extra: 1745/1694,
  23655. bottom: 37/1782
  23656. }
  23657. },
  23658. back: {
  23659. height: math.unit(5 + 3 / 12, "feet"),
  23660. weight: math.unit(137, "lb"),
  23661. name: "Back",
  23662. image: {
  23663. source: "./media/characters/sasha-katraine/back.svg",
  23664. extra: 1776/1699,
  23665. bottom: 26/1802
  23666. }
  23667. },
  23668. },
  23669. [
  23670. {
  23671. name: "Micro",
  23672. height: math.unit(5, "inches")
  23673. },
  23674. {
  23675. name: "Normal",
  23676. height: math.unit(5 + 3 / 12, "feet"),
  23677. default: true
  23678. },
  23679. ]
  23680. ))
  23681. characterMakers.push(() => makeCharacter(
  23682. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23683. {
  23684. side: {
  23685. height: math.unit(4, "inches"),
  23686. weight: math.unit(200, "grams"),
  23687. name: "Side",
  23688. image: {
  23689. source: "./media/characters/der/side.svg",
  23690. extra: 719 / 400,
  23691. bottom: 30.6 / 749.9187
  23692. }
  23693. },
  23694. },
  23695. [
  23696. {
  23697. name: "Micro",
  23698. height: math.unit(4, "inches"),
  23699. default: true
  23700. },
  23701. ]
  23702. ))
  23703. characterMakers.push(() => makeCharacter(
  23704. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23705. {
  23706. side: {
  23707. height: math.unit(30, "meters"),
  23708. weight: math.unit(700, "tonnes"),
  23709. name: "Side",
  23710. image: {
  23711. source: "./media/characters/fixerdragon/side.svg",
  23712. extra: (1293.0514 - 116.03) / 1106.86,
  23713. bottom: 116.03 / 1293.0514
  23714. }
  23715. },
  23716. },
  23717. [
  23718. {
  23719. name: "Planck",
  23720. height: math.unit(1.6e-35, "meters")
  23721. },
  23722. {
  23723. name: "Micro",
  23724. height: math.unit(0.4, "meters")
  23725. },
  23726. {
  23727. name: "Normal",
  23728. height: math.unit(30, "meters"),
  23729. default: true
  23730. },
  23731. {
  23732. name: "Megamacro",
  23733. height: math.unit(1.2, "megameters")
  23734. },
  23735. {
  23736. name: "Teramacro",
  23737. height: math.unit(130, "terameters")
  23738. },
  23739. {
  23740. name: "Yottamacro",
  23741. height: math.unit(6200, "yottameters")
  23742. },
  23743. ]
  23744. ));
  23745. characterMakers.push(() => makeCharacter(
  23746. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23747. {
  23748. front: {
  23749. height: math.unit(8, "feet"),
  23750. weight: math.unit(250, "lb"),
  23751. name: "Front",
  23752. image: {
  23753. source: "./media/characters/kite/front.svg",
  23754. extra: 2796 / 2659,
  23755. bottom: 0.002
  23756. }
  23757. },
  23758. },
  23759. [
  23760. {
  23761. name: "Normal",
  23762. height: math.unit(8, "feet"),
  23763. default: true
  23764. },
  23765. {
  23766. name: "Macro",
  23767. height: math.unit(360, "feet")
  23768. },
  23769. {
  23770. name: "Megamacro",
  23771. height: math.unit(1500, "feet")
  23772. },
  23773. ]
  23774. ))
  23775. characterMakers.push(() => makeCharacter(
  23776. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23777. {
  23778. anthro_front: {
  23779. height: math.unit(5 + 11/12, "feet"),
  23780. weight: math.unit(170, "lb"),
  23781. name: "Front",
  23782. image: {
  23783. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23784. extra: 1735/1585,
  23785. bottom: 96/1831
  23786. },
  23787. form: "anthro",
  23788. default: true
  23789. },
  23790. anthro_back: {
  23791. height: math.unit(5 + 11/12, "feet"),
  23792. weight: math.unit(170, "lb"),
  23793. name: "Back",
  23794. image: {
  23795. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23796. extra: 1749/1607,
  23797. bottom: 28/1777
  23798. },
  23799. form: "anthro"
  23800. },
  23801. anthro_male: {
  23802. height: math.unit(5 + 11/12, "feet"),
  23803. weight: math.unit(170, "lb"),
  23804. name: "Male",
  23805. image: {
  23806. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23807. extra: 1855/1713,
  23808. bottom: 63/1918
  23809. },
  23810. form: "anthro"
  23811. },
  23812. taur_front: {
  23813. height: math.unit(5 + 7/12, "feet"),
  23814. weight: math.unit(170, "lb"),
  23815. name: "Front",
  23816. image: {
  23817. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23818. extra: 1151/1059,
  23819. bottom: 356/1507
  23820. },
  23821. form: "taur",
  23822. default: true
  23823. },
  23824. anthro_frontDressed: {
  23825. height: math.unit(5 + 11/12, "feet"),
  23826. weight: math.unit(170, "lb"),
  23827. name: "Front (Dressed)",
  23828. image: {
  23829. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23830. extra: 1735/1585,
  23831. bottom: 96/1831
  23832. },
  23833. form: "anthro"
  23834. },
  23835. anthro_backDressed: {
  23836. height: math.unit(5 + 11/12, "feet"),
  23837. weight: math.unit(170, "lb"),
  23838. name: "Back (Dressed)",
  23839. image: {
  23840. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23841. extra: 1749/1607,
  23842. bottom: 28/1777
  23843. },
  23844. form: "anthro"
  23845. },
  23846. anthro_maleDressed: {
  23847. height: math.unit(5 + 11/12, "feet"),
  23848. weight: math.unit(170, "lb"),
  23849. name: "Male (Dressed)",
  23850. image: {
  23851. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23852. extra: 1855/1713,
  23853. bottom: 63/1918
  23854. },
  23855. form: "anthro"
  23856. },
  23857. taur_frontDressed: {
  23858. height: math.unit(5 + 7/12, "feet"),
  23859. weight: math.unit(170, "lb"),
  23860. name: "Front (Dressed)",
  23861. image: {
  23862. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23863. extra: 1151/1059,
  23864. bottom: 356/1507
  23865. },
  23866. form: "taur"
  23867. },
  23868. maw: {
  23869. height: math.unit(1.46, "feet"),
  23870. name: "Maw",
  23871. image: {
  23872. source: "./media/characters/poojawa-vynar/maw.svg"
  23873. },
  23874. allForms: true
  23875. },
  23876. head: {
  23877. height: math.unit(2.34, "feet"),
  23878. name: "Head",
  23879. image: {
  23880. source: "./media/characters/poojawa-vynar/head.svg"
  23881. },
  23882. allForms: true
  23883. },
  23884. leftPaw: {
  23885. height: math.unit(1.72, "feet"),
  23886. name: "Left Paw",
  23887. image: {
  23888. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23889. },
  23890. allForms: true
  23891. },
  23892. rightPaw: {
  23893. height: math.unit(1.61, "feet"),
  23894. name: "Right Paw",
  23895. image: {
  23896. source: "./media/characters/poojawa-vynar/paw-right.svg"
  23897. },
  23898. allForms: true
  23899. },
  23900. toering: {
  23901. height: math.unit(2.9, "inches"),
  23902. name: "Toering",
  23903. image: {
  23904. source: "./media/characters/poojawa-vynar/toering.svg"
  23905. },
  23906. allForms: true
  23907. },
  23908. shaft: {
  23909. height: math.unit(0.625, "feet"),
  23910. name: "Shaft",
  23911. image: {
  23912. source: "./media/characters/poojawa-vynar/shaft.svg"
  23913. },
  23914. allForms: true
  23915. },
  23916. spade: {
  23917. height: math.unit(0.42, "feet"),
  23918. name: "Spade",
  23919. image: {
  23920. source: "./media/characters/poojawa-vynar/spade.svg"
  23921. },
  23922. allForms: true
  23923. },
  23924. },
  23925. [
  23926. {
  23927. name: "Shortstack",
  23928. height: math.unit(4, "feet"),
  23929. form: "anthro"
  23930. },
  23931. {
  23932. name: "Normal",
  23933. height: math.unit(5 + 11 / 12, "feet"),
  23934. form: "anthro",
  23935. default: true
  23936. },
  23937. {
  23938. name: "Tauric",
  23939. height: math.unit(4, "meters"),
  23940. form: "taur",
  23941. default: true
  23942. },
  23943. ],
  23944. {
  23945. "anthro": {
  23946. name: "Anthro",
  23947. default: true
  23948. },
  23949. "taur": {
  23950. name: "Taur",
  23951. },
  23952. }
  23953. ))
  23954. characterMakers.push(() => makeCharacter(
  23955. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23956. {
  23957. front: {
  23958. height: math.unit(293, "meters"),
  23959. weight: math.unit(70400, "tons"),
  23960. name: "Front",
  23961. image: {
  23962. source: "./media/characters/violette/front.svg",
  23963. extra: 1227 / 1180,
  23964. bottom: 0.005
  23965. }
  23966. },
  23967. back: {
  23968. height: math.unit(293, "meters"),
  23969. weight: math.unit(70400, "tons"),
  23970. name: "Back",
  23971. image: {
  23972. source: "./media/characters/violette/back.svg",
  23973. extra: 1227 / 1180,
  23974. bottom: 0.005
  23975. }
  23976. },
  23977. },
  23978. [
  23979. {
  23980. name: "Macro",
  23981. height: math.unit(293, "meters"),
  23982. default: true
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23988. {
  23989. front: {
  23990. height: math.unit(1050, "feet"),
  23991. weight: math.unit(200000, "tons"),
  23992. name: "Front",
  23993. image: {
  23994. source: "./media/characters/alessandra/front.svg",
  23995. extra: 960 / 912,
  23996. bottom: 0.06
  23997. }
  23998. },
  23999. },
  24000. [
  24001. {
  24002. name: "Macro",
  24003. height: math.unit(1050, "feet")
  24004. },
  24005. {
  24006. name: "Macro+",
  24007. height: math.unit(900, "meters"),
  24008. default: true
  24009. },
  24010. ]
  24011. ))
  24012. characterMakers.push(() => makeCharacter(
  24013. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24014. {
  24015. front: {
  24016. height: math.unit(5, "feet"),
  24017. weight: math.unit(187, "lb"),
  24018. name: "Front",
  24019. image: {
  24020. source: "./media/characters/person/front.svg",
  24021. extra: 3087 / 2945,
  24022. bottom: 91 / 3181
  24023. }
  24024. },
  24025. },
  24026. [
  24027. {
  24028. name: "Micro",
  24029. height: math.unit(3, "inches")
  24030. },
  24031. {
  24032. name: "Normal",
  24033. height: math.unit(5, "feet"),
  24034. default: true
  24035. },
  24036. {
  24037. name: "Macro",
  24038. height: math.unit(90, "feet")
  24039. },
  24040. {
  24041. name: "Max Size",
  24042. height: math.unit(280, "feet")
  24043. },
  24044. ]
  24045. ))
  24046. characterMakers.push(() => makeCharacter(
  24047. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24048. {
  24049. front: {
  24050. height: math.unit(4.5, "meters"),
  24051. weight: math.unit(3200, "lb"),
  24052. name: "Front",
  24053. image: {
  24054. source: "./media/characters/ty/front.svg",
  24055. extra: 1038 / 960,
  24056. bottom: 31.156 / 1068
  24057. }
  24058. },
  24059. back: {
  24060. height: math.unit(4.5, "meters"),
  24061. weight: math.unit(3200, "lb"),
  24062. name: "Back",
  24063. image: {
  24064. source: "./media/characters/ty/back.svg",
  24065. extra: 1044 / 966,
  24066. bottom: 7.48 / 1049
  24067. }
  24068. },
  24069. },
  24070. [
  24071. {
  24072. name: "Normal",
  24073. height: math.unit(4.5, "meters"),
  24074. default: true
  24075. },
  24076. ]
  24077. ))
  24078. characterMakers.push(() => makeCharacter(
  24079. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24080. {
  24081. front: {
  24082. height: math.unit(5 + 4 / 12, "feet"),
  24083. weight: math.unit(115, "lb"),
  24084. name: "Front",
  24085. image: {
  24086. source: "./media/characters/rocky/front.svg",
  24087. extra: 1012 / 975,
  24088. bottom: 54 / 1066
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Normal",
  24095. height: math.unit(5 + 4 / 12, "feet"),
  24096. default: true
  24097. },
  24098. ]
  24099. ))
  24100. characterMakers.push(() => makeCharacter(
  24101. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24102. {
  24103. upright: {
  24104. height: math.unit(6, "meters"),
  24105. weight: math.unit(4000, "kg"),
  24106. name: "Upright",
  24107. image: {
  24108. source: "./media/characters/ruin/upright.svg",
  24109. extra: 668 / 661,
  24110. bottom: 42 / 799.8396
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Normal",
  24117. height: math.unit(6, "meters"),
  24118. default: true
  24119. },
  24120. ]
  24121. ))
  24122. characterMakers.push(() => makeCharacter(
  24123. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24124. {
  24125. front: {
  24126. height: math.unit(5, "feet"),
  24127. weight: math.unit(106, "lb"),
  24128. name: "Front",
  24129. image: {
  24130. source: "./media/characters/robin/front.svg",
  24131. extra: 862 / 799,
  24132. bottom: 42.4 / 914.8856
  24133. }
  24134. },
  24135. },
  24136. [
  24137. {
  24138. name: "Normal",
  24139. height: math.unit(5, "feet"),
  24140. default: true
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24146. {
  24147. side: {
  24148. height: math.unit(3, "feet"),
  24149. weight: math.unit(225, "lb"),
  24150. name: "Side",
  24151. image: {
  24152. source: "./media/characters/saian/side.svg",
  24153. extra: 566 / 356,
  24154. bottom: 79.7 / 643
  24155. }
  24156. },
  24157. maw: {
  24158. height: math.unit(2.85, "feet"),
  24159. name: "Maw",
  24160. image: {
  24161. source: "./media/characters/saian/maw.svg"
  24162. }
  24163. },
  24164. },
  24165. [
  24166. {
  24167. name: "Normal",
  24168. height: math.unit(3, "feet"),
  24169. default: true
  24170. },
  24171. ]
  24172. ))
  24173. characterMakers.push(() => makeCharacter(
  24174. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24175. {
  24176. side: {
  24177. height: math.unit(8, "feet"),
  24178. weight: math.unit(300, "lb"),
  24179. name: "Side",
  24180. image: {
  24181. source: "./media/characters/equus-silvermane/side.svg",
  24182. extra: 2176 / 2050,
  24183. bottom: 65.7 / 2245
  24184. }
  24185. },
  24186. front: {
  24187. height: math.unit(8, "feet"),
  24188. weight: math.unit(300, "lb"),
  24189. name: "Front",
  24190. image: {
  24191. source: "./media/characters/equus-silvermane/front.svg",
  24192. extra: 4633 / 4400,
  24193. bottom: 71.3 / 4706.915
  24194. }
  24195. },
  24196. sideStepping: {
  24197. height: math.unit(8, "feet"),
  24198. weight: math.unit(300, "lb"),
  24199. name: "Side (Stepping)",
  24200. image: {
  24201. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24202. extra: 1968 / 1860,
  24203. bottom: 16.4 / 1989
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Normal",
  24210. height: math.unit(8, "feet")
  24211. },
  24212. {
  24213. name: "Minimacro",
  24214. height: math.unit(75, "feet"),
  24215. default: true
  24216. },
  24217. {
  24218. name: "Macro",
  24219. height: math.unit(150, "feet")
  24220. },
  24221. {
  24222. name: "Macro+",
  24223. height: math.unit(1000, "feet")
  24224. },
  24225. {
  24226. name: "Megamacro",
  24227. height: math.unit(1, "mile")
  24228. },
  24229. ]
  24230. ))
  24231. characterMakers.push(() => makeCharacter(
  24232. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24233. {
  24234. side: {
  24235. height: math.unit(20, "feet"),
  24236. weight: math.unit(30000, "kg"),
  24237. name: "Side",
  24238. image: {
  24239. source: "./media/characters/windar/side.svg",
  24240. extra: 1491 / 1248,
  24241. bottom: 82.56 / 1568
  24242. }
  24243. },
  24244. },
  24245. [
  24246. {
  24247. name: "Normal",
  24248. height: math.unit(20, "feet"),
  24249. default: true
  24250. },
  24251. ]
  24252. ))
  24253. characterMakers.push(() => makeCharacter(
  24254. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24255. {
  24256. side: {
  24257. height: math.unit(15.66, "feet"),
  24258. weight: math.unit(150, "lb"),
  24259. name: "Side",
  24260. image: {
  24261. source: "./media/characters/melody/side.svg",
  24262. extra: 1097 / 944,
  24263. bottom: 11.8 / 1109
  24264. }
  24265. },
  24266. sideOutfit: {
  24267. height: math.unit(15.66, "feet"),
  24268. weight: math.unit(150, "lb"),
  24269. name: "Side (Outfit)",
  24270. image: {
  24271. source: "./media/characters/melody/side-outfit.svg",
  24272. extra: 1097 / 944,
  24273. bottom: 11.8 / 1109
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Normal",
  24280. height: math.unit(15.66, "feet"),
  24281. default: true
  24282. },
  24283. ]
  24284. ))
  24285. characterMakers.push(() => makeCharacter(
  24286. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24287. {
  24288. armoredFront: {
  24289. height: math.unit(8, "feet"),
  24290. weight: math.unit(325, "lb"),
  24291. name: "Front",
  24292. image: {
  24293. source: "./media/characters/windera/armored-front.svg",
  24294. extra: 1830/1598,
  24295. bottom: 151/1981
  24296. },
  24297. form: "armored",
  24298. default: true
  24299. },
  24300. macroFront: {
  24301. height: math.unit(70, "feet"),
  24302. weight: math.unit(315453, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/windera/macro-front.svg",
  24306. extra: 963/883,
  24307. bottom: 23/986
  24308. },
  24309. form: "macro",
  24310. default: true
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(8, "feet"),
  24317. default: true,
  24318. form: "armored"
  24319. },
  24320. {
  24321. name: "Normal",
  24322. height: math.unit(70, "feet"),
  24323. default: true,
  24324. form: "macro"
  24325. },
  24326. ],
  24327. {
  24328. "armored": {
  24329. name: "Armored",
  24330. default: true
  24331. },
  24332. "macro": {
  24333. name: "Macro",
  24334. },
  24335. }
  24336. ))
  24337. characterMakers.push(() => makeCharacter(
  24338. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24339. {
  24340. front: {
  24341. height: math.unit(28.75, "feet"),
  24342. weight: math.unit(2000, "kg"),
  24343. name: "Front",
  24344. image: {
  24345. source: "./media/characters/sonear/front.svg",
  24346. extra: 1041.1 / 964.9,
  24347. bottom: 53.7 / 1096.6
  24348. }
  24349. },
  24350. },
  24351. [
  24352. {
  24353. name: "Normal",
  24354. height: math.unit(28.75, "feet"),
  24355. default: true
  24356. },
  24357. ]
  24358. ))
  24359. characterMakers.push(() => makeCharacter(
  24360. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24361. {
  24362. side: {
  24363. height: math.unit(25.5, "feet"),
  24364. weight: math.unit(23000, "kg"),
  24365. name: "Side",
  24366. image: {
  24367. source: "./media/characters/kanara/side.svg"
  24368. }
  24369. },
  24370. },
  24371. [
  24372. {
  24373. name: "Normal",
  24374. height: math.unit(25.5, "feet"),
  24375. default: true
  24376. },
  24377. ]
  24378. ))
  24379. characterMakers.push(() => makeCharacter(
  24380. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24381. {
  24382. side: {
  24383. height: math.unit(10, "feet"),
  24384. weight: math.unit(1000, "kg"),
  24385. name: "Side",
  24386. image: {
  24387. source: "./media/characters/ereus/side.svg",
  24388. extra: 1157 / 959,
  24389. bottom: 153 / 1312.5
  24390. }
  24391. },
  24392. },
  24393. [
  24394. {
  24395. name: "Normal",
  24396. height: math.unit(10, "feet"),
  24397. default: true
  24398. },
  24399. ]
  24400. ))
  24401. characterMakers.push(() => makeCharacter(
  24402. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24403. {
  24404. side: {
  24405. height: math.unit(4.5, "feet"),
  24406. weight: math.unit(500, "lb"),
  24407. name: "Side",
  24408. image: {
  24409. source: "./media/characters/e-ter/side.svg",
  24410. extra: 1550 / 1248,
  24411. bottom: 146 / 1694
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Normal",
  24418. height: math.unit(4.5, "feet"),
  24419. default: true
  24420. },
  24421. ]
  24422. ))
  24423. characterMakers.push(() => makeCharacter(
  24424. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24425. {
  24426. side: {
  24427. height: math.unit(9.7, "feet"),
  24428. weight: math.unit(4000, "kg"),
  24429. name: "Side",
  24430. image: {
  24431. source: "./media/characters/yamie/side.svg"
  24432. }
  24433. },
  24434. },
  24435. [
  24436. {
  24437. name: "Normal",
  24438. height: math.unit(9.7, "feet"),
  24439. default: true
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24445. {
  24446. front: {
  24447. height: math.unit(50, "feet"),
  24448. weight: math.unit(50000, "kg"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/anders/front.svg",
  24452. extra: 570 / 539,
  24453. bottom: 14.7 / 586.7
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Large",
  24460. height: math.unit(50, "feet")
  24461. },
  24462. {
  24463. name: "Macro",
  24464. height: math.unit(2000, "feet"),
  24465. default: true
  24466. },
  24467. {
  24468. name: "Megamacro",
  24469. height: math.unit(12, "miles")
  24470. },
  24471. ]
  24472. ))
  24473. characterMakers.push(() => makeCharacter(
  24474. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24475. {
  24476. front: {
  24477. height: math.unit(7 + 2 / 12, "feet"),
  24478. weight: math.unit(300, "lb"),
  24479. name: "Front",
  24480. image: {
  24481. source: "./media/characters/reban/front.svg",
  24482. extra: 1287/1212,
  24483. bottom: 148/1435
  24484. }
  24485. },
  24486. head: {
  24487. height: math.unit(1.95, "feet"),
  24488. name: "Head",
  24489. image: {
  24490. source: "./media/characters/reban/head.svg"
  24491. }
  24492. },
  24493. maw: {
  24494. height: math.unit(0.95, "feet"),
  24495. name: "Maw",
  24496. image: {
  24497. source: "./media/characters/reban/maw.svg"
  24498. }
  24499. },
  24500. foot: {
  24501. height: math.unit(1.65, "feet"),
  24502. name: "Foot",
  24503. image: {
  24504. source: "./media/characters/reban/foot.svg"
  24505. }
  24506. },
  24507. dick: {
  24508. height: math.unit(7 / 5, "feet"),
  24509. name: "Dick",
  24510. image: {
  24511. source: "./media/characters/reban/dick.svg"
  24512. }
  24513. },
  24514. },
  24515. [
  24516. {
  24517. name: "Natural Height",
  24518. height: math.unit(7 + 2 / 12, "feet")
  24519. },
  24520. {
  24521. name: "Macro",
  24522. height: math.unit(500, "feet"),
  24523. default: true
  24524. },
  24525. {
  24526. name: "Canon Height",
  24527. height: math.unit(50, "AU")
  24528. },
  24529. ]
  24530. ))
  24531. characterMakers.push(() => makeCharacter(
  24532. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24533. {
  24534. front: {
  24535. height: math.unit(6, "feet"),
  24536. weight: math.unit(150, "lb"),
  24537. name: "Front",
  24538. image: {
  24539. source: "./media/characters/terrance-keayes/front.svg",
  24540. extra: 1.005,
  24541. bottom: 151 / 1615
  24542. }
  24543. },
  24544. side: {
  24545. height: math.unit(6, "feet"),
  24546. weight: math.unit(150, "lb"),
  24547. name: "Side",
  24548. image: {
  24549. source: "./media/characters/terrance-keayes/side.svg",
  24550. extra: 1.005,
  24551. bottom: 129.4 / 1544
  24552. }
  24553. },
  24554. back: {
  24555. height: math.unit(6, "feet"),
  24556. weight: math.unit(150, "lb"),
  24557. name: "Back",
  24558. image: {
  24559. source: "./media/characters/terrance-keayes/back.svg",
  24560. extra: 1.005,
  24561. bottom: 58.4 / 1557.3
  24562. }
  24563. },
  24564. dick: {
  24565. height: math.unit(6 * 0.208, "feet"),
  24566. name: "Dick",
  24567. image: {
  24568. source: "./media/characters/terrance-keayes/dick.svg"
  24569. }
  24570. },
  24571. },
  24572. [
  24573. {
  24574. name: "Canon Height",
  24575. height: math.unit(35, "miles"),
  24576. default: true
  24577. },
  24578. ]
  24579. ))
  24580. characterMakers.push(() => makeCharacter(
  24581. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24582. {
  24583. front: {
  24584. height: math.unit(6, "feet"),
  24585. weight: math.unit(150, "lb"),
  24586. name: "Front",
  24587. image: {
  24588. source: "./media/characters/ofelia/front.svg",
  24589. extra: 1130/1117,
  24590. bottom: 91/1221
  24591. }
  24592. },
  24593. back: {
  24594. height: math.unit(6, "feet"),
  24595. weight: math.unit(150, "lb"),
  24596. name: "Back",
  24597. image: {
  24598. source: "./media/characters/ofelia/back.svg",
  24599. extra: 1172/1159,
  24600. bottom: 28/1200
  24601. }
  24602. },
  24603. maw: {
  24604. height: math.unit(1, "feet"),
  24605. name: "Maw",
  24606. image: {
  24607. source: "./media/characters/ofelia/maw.svg"
  24608. }
  24609. },
  24610. foot: {
  24611. height: math.unit(1.949, "feet"),
  24612. name: "Foot",
  24613. image: {
  24614. source: "./media/characters/ofelia/foot.svg"
  24615. }
  24616. },
  24617. },
  24618. [
  24619. {
  24620. name: "Canon Height",
  24621. height: math.unit(2000, "miles"),
  24622. default: true
  24623. },
  24624. ]
  24625. ))
  24626. characterMakers.push(() => makeCharacter(
  24627. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24628. {
  24629. front: {
  24630. height: math.unit(6, "feet"),
  24631. weight: math.unit(150, "lb"),
  24632. name: "Front",
  24633. image: {
  24634. source: "./media/characters/samuel/front.svg",
  24635. extra: 265 / 258,
  24636. bottom: 2 / 266.1566
  24637. }
  24638. },
  24639. },
  24640. [
  24641. {
  24642. name: "Macro",
  24643. height: math.unit(100, "feet"),
  24644. default: true
  24645. },
  24646. {
  24647. name: "Full Size",
  24648. height: math.unit(1000, "miles")
  24649. },
  24650. ]
  24651. ))
  24652. characterMakers.push(() => makeCharacter(
  24653. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24654. {
  24655. front: {
  24656. height: math.unit(6, "feet"),
  24657. weight: math.unit(300, "lb"),
  24658. name: "Front",
  24659. image: {
  24660. source: "./media/characters/beishir-kiel/front.svg",
  24661. extra: 569 / 547,
  24662. bottom: 41.9 / 609
  24663. }
  24664. },
  24665. maw: {
  24666. height: math.unit(6 * 0.202, "feet"),
  24667. name: "Maw",
  24668. image: {
  24669. source: "./media/characters/beishir-kiel/maw.svg"
  24670. }
  24671. },
  24672. },
  24673. [
  24674. {
  24675. name: "Macro",
  24676. height: math.unit(300, "feet"),
  24677. default: true
  24678. },
  24679. ]
  24680. ))
  24681. characterMakers.push(() => makeCharacter(
  24682. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24683. {
  24684. front: {
  24685. height: math.unit(5 + 7/12, "feet"),
  24686. weight: math.unit(120, "lb"),
  24687. name: "Front",
  24688. image: {
  24689. source: "./media/characters/logan-grey/front.svg",
  24690. extra: 1836/1738,
  24691. bottom: 108/1944
  24692. }
  24693. },
  24694. back: {
  24695. height: math.unit(5 + 7/12, "feet"),
  24696. weight: math.unit(120, "lb"),
  24697. name: "Back",
  24698. image: {
  24699. source: "./media/characters/logan-grey/back.svg",
  24700. extra: 1880/1794,
  24701. bottom: 24/1904
  24702. }
  24703. },
  24704. frontSfw: {
  24705. height: math.unit(5 + 7/12, "feet"),
  24706. weight: math.unit(120, "lb"),
  24707. name: "Front (SFW)",
  24708. image: {
  24709. source: "./media/characters/logan-grey/front-sfw.svg",
  24710. extra: 1836/1738,
  24711. bottom: 108/1944
  24712. }
  24713. },
  24714. backSfw: {
  24715. height: math.unit(5 + 7/12, "feet"),
  24716. weight: math.unit(120, "lb"),
  24717. name: "Back (SFW)",
  24718. image: {
  24719. source: "./media/characters/logan-grey/back-sfw.svg",
  24720. extra: 1880/1794,
  24721. bottom: 24/1904
  24722. }
  24723. },
  24724. hands: {
  24725. height: math.unit(0.84, "feet"),
  24726. name: "Hands",
  24727. image: {
  24728. source: "./media/characters/logan-grey/hands.svg"
  24729. }
  24730. },
  24731. paws: {
  24732. height: math.unit(0.72, "feet"),
  24733. name: "Paws",
  24734. image: {
  24735. source: "./media/characters/logan-grey/paws.svg"
  24736. }
  24737. },
  24738. cock: {
  24739. height: math.unit(1.45, "feet"),
  24740. name: "Cock",
  24741. image: {
  24742. source: "./media/characters/logan-grey/cock.svg"
  24743. }
  24744. },
  24745. cockAlt: {
  24746. height: math.unit(1.437, "feet"),
  24747. name: "Cock (alt)",
  24748. image: {
  24749. source: "./media/characters/logan-grey/cock-alt.svg"
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "Normal",
  24756. height: math.unit(5 + 8 / 12, "feet")
  24757. },
  24758. {
  24759. name: "The 500 Foot Femboy",
  24760. height: math.unit(500, "feet"),
  24761. default: true
  24762. },
  24763. {
  24764. name: "Megmacro",
  24765. height: math.unit(20, "miles")
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24771. {
  24772. front: {
  24773. height: math.unit(8 + 2 / 12, "feet"),
  24774. weight: math.unit(275, "lb"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/draganta/front.svg",
  24778. extra: 1177 / 1135,
  24779. bottom: 33.46 / 1212.1
  24780. }
  24781. },
  24782. },
  24783. [
  24784. {
  24785. name: "Normal",
  24786. height: math.unit(8 + 6 / 12, "feet"),
  24787. default: true
  24788. },
  24789. {
  24790. name: "Macro",
  24791. height: math.unit(150, "feet")
  24792. },
  24793. {
  24794. name: "Megamacro",
  24795. height: math.unit(1000, "miles")
  24796. },
  24797. ]
  24798. ))
  24799. characterMakers.push(() => makeCharacter(
  24800. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24801. {
  24802. front: {
  24803. height: math.unit(1.72, "m"),
  24804. weight: math.unit(80, "lb"),
  24805. name: "Front",
  24806. image: {
  24807. source: "./media/characters/voski/front.svg",
  24808. extra: 2076.22 / 2022.4,
  24809. bottom: 102.7 / 2177.3866
  24810. }
  24811. },
  24812. frontFlaccid: {
  24813. height: math.unit(1.72, "m"),
  24814. weight: math.unit(80, "lb"),
  24815. name: "Front (Flaccid)",
  24816. image: {
  24817. source: "./media/characters/voski/front-flaccid.svg",
  24818. extra: 2076.22 / 2022.4,
  24819. bottom: 102.7 / 2177.3866
  24820. }
  24821. },
  24822. frontErect: {
  24823. height: math.unit(1.72, "m"),
  24824. weight: math.unit(80, "lb"),
  24825. name: "Front (Erect)",
  24826. image: {
  24827. source: "./media/characters/voski/front-erect.svg",
  24828. extra: 2076.22 / 2022.4,
  24829. bottom: 102.7 / 2177.3866
  24830. }
  24831. },
  24832. back: {
  24833. height: math.unit(1.72, "m"),
  24834. weight: math.unit(80, "lb"),
  24835. name: "Back",
  24836. image: {
  24837. source: "./media/characters/voski/back.svg",
  24838. extra: 2104 / 2051,
  24839. bottom: 10.45 / 2113.63
  24840. }
  24841. },
  24842. },
  24843. [
  24844. {
  24845. name: "Normal",
  24846. height: math.unit(1.72, "m")
  24847. },
  24848. {
  24849. name: "Macro",
  24850. height: math.unit(55, "m"),
  24851. default: true
  24852. },
  24853. {
  24854. name: "Macro+",
  24855. height: math.unit(300, "m")
  24856. },
  24857. {
  24858. name: "Macro++",
  24859. height: math.unit(700, "m")
  24860. },
  24861. {
  24862. name: "Macro+++",
  24863. height: math.unit(4500, "m")
  24864. },
  24865. {
  24866. name: "Macro++++",
  24867. height: math.unit(45, "km")
  24868. },
  24869. {
  24870. name: "Macro+++++",
  24871. height: math.unit(1220, "km")
  24872. },
  24873. ]
  24874. ))
  24875. characterMakers.push(() => makeCharacter(
  24876. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24877. {
  24878. front: {
  24879. height: math.unit(2.3, "m"),
  24880. weight: math.unit(304, "kg"),
  24881. name: "Front",
  24882. image: {
  24883. source: "./media/characters/icowom-lee/front.svg",
  24884. extra: 985 / 955,
  24885. bottom: 25.4 / 1012
  24886. }
  24887. },
  24888. fronttentacles: {
  24889. height: math.unit(2.3, "m"),
  24890. weight: math.unit(304, "kg"),
  24891. name: "Front-tentacles",
  24892. image: {
  24893. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24894. extra: 985 / 955,
  24895. bottom: 25.4 / 1012
  24896. }
  24897. },
  24898. back: {
  24899. height: math.unit(2.3, "m"),
  24900. weight: math.unit(304, "kg"),
  24901. name: "Back",
  24902. image: {
  24903. source: "./media/characters/icowom-lee/back.svg",
  24904. extra: 975 / 954,
  24905. bottom: 9.5 / 985
  24906. }
  24907. },
  24908. backtentacles: {
  24909. height: math.unit(2.3, "m"),
  24910. weight: math.unit(304, "kg"),
  24911. name: "Back-tentacles",
  24912. image: {
  24913. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24914. extra: 975 / 954,
  24915. bottom: 9.5 / 985
  24916. }
  24917. },
  24918. frontDressed: {
  24919. height: math.unit(2.3, "m"),
  24920. weight: math.unit(304, "kg"),
  24921. name: "Front (Dressed)",
  24922. image: {
  24923. source: "./media/characters/icowom-lee/front-dressed.svg",
  24924. extra: 3076 / 2933,
  24925. bottom: 51.4 / 3125.1889
  24926. }
  24927. },
  24928. rump: {
  24929. height: math.unit(0.776, "meters"),
  24930. name: "Rump",
  24931. image: {
  24932. source: "./media/characters/icowom-lee/rump.svg"
  24933. }
  24934. },
  24935. genitals: {
  24936. height: math.unit(0.78, "meters"),
  24937. name: "Genitals",
  24938. image: {
  24939. source: "./media/characters/icowom-lee/genitals.svg"
  24940. }
  24941. },
  24942. },
  24943. [
  24944. {
  24945. name: "Normal",
  24946. height: math.unit(2.3, "meters"),
  24947. default: true
  24948. },
  24949. {
  24950. name: "Macro",
  24951. height: math.unit(94, "meters"),
  24952. default: true
  24953. },
  24954. ]
  24955. ))
  24956. characterMakers.push(() => makeCharacter(
  24957. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24958. {
  24959. front: {
  24960. height: math.unit(22, "meters"),
  24961. weight: math.unit(21000, "kg"),
  24962. name: "Front",
  24963. image: {
  24964. source: "./media/characters/shock-diamond/front.svg",
  24965. extra: 2204 / 2053,
  24966. bottom: 65 / 2239.47
  24967. }
  24968. },
  24969. frontNude: {
  24970. height: math.unit(22, "meters"),
  24971. weight: math.unit(21000, "kg"),
  24972. name: "Front (Nude)",
  24973. image: {
  24974. source: "./media/characters/shock-diamond/front-nude.svg",
  24975. extra: 2514 / 2285,
  24976. bottom: 13 / 2527.56
  24977. }
  24978. },
  24979. },
  24980. [
  24981. {
  24982. name: "Normal",
  24983. height: math.unit(3, "meters")
  24984. },
  24985. {
  24986. name: "Macro",
  24987. height: math.unit(22, "meters"),
  24988. default: true
  24989. },
  24990. ]
  24991. ))
  24992. characterMakers.push(() => makeCharacter(
  24993. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24994. {
  24995. front: {
  24996. height: math.unit(5 + 4/12, "feet"),
  24997. weight: math.unit(125, "lb"),
  24998. name: "Front",
  24999. image: {
  25000. source: "./media/characters/rory/front.svg",
  25001. extra: 1790/1681,
  25002. bottom: 66/1856
  25003. },
  25004. form: "normal",
  25005. default: true
  25006. },
  25007. back: {
  25008. height: math.unit(5 + 4/12, "feet"),
  25009. weight: math.unit(125, "lb"),
  25010. name: "Back",
  25011. image: {
  25012. source: "./media/characters/rory/back.svg",
  25013. extra: 1805/1690,
  25014. bottom: 56/1861
  25015. },
  25016. form: "normal"
  25017. },
  25018. frontDressed: {
  25019. height: math.unit(5 + 4/12, "feet"),
  25020. weight: math.unit(125, "lb"),
  25021. name: "Front (Dressed)",
  25022. image: {
  25023. source: "./media/characters/rory/front-dressed.svg",
  25024. extra: 1790/1681,
  25025. bottom: 66/1856
  25026. },
  25027. form: "normal"
  25028. },
  25029. backDressed: {
  25030. height: math.unit(5 + 4/12, "feet"),
  25031. weight: math.unit(125, "lb"),
  25032. name: "Back (Dressed)",
  25033. image: {
  25034. source: "./media/characters/rory/back-dressed.svg",
  25035. extra: 1805/1690,
  25036. bottom: 56/1861
  25037. },
  25038. form: "normal"
  25039. },
  25040. frontNsfw: {
  25041. height: math.unit(5 + 4/12, "feet"),
  25042. weight: math.unit(125, "lb"),
  25043. name: "Front (NSFW)",
  25044. image: {
  25045. source: "./media/characters/rory/front-nsfw.svg",
  25046. extra: 1790/1681,
  25047. bottom: 66/1856
  25048. },
  25049. form: "normal"
  25050. },
  25051. backNsfw: {
  25052. height: math.unit(5 + 4/12, "feet"),
  25053. weight: math.unit(125, "lb"),
  25054. name: "Back (NSFW)",
  25055. image: {
  25056. source: "./media/characters/rory/back-nsfw.svg",
  25057. extra: 1805/1690,
  25058. bottom: 56/1861
  25059. },
  25060. form: "normal"
  25061. },
  25062. dick: {
  25063. height: math.unit(0.8, "feet"),
  25064. name: "Dick",
  25065. image: {
  25066. source: "./media/characters/rory/dick.svg"
  25067. },
  25068. form: "normal"
  25069. },
  25070. thicc_front: {
  25071. height: math.unit(5 + 4/12, "feet"),
  25072. weight: math.unit(195, "lb"),
  25073. name: "Front",
  25074. image: {
  25075. source: "./media/characters/rory/thicc-front.svg",
  25076. extra: 1220/1100,
  25077. bottom: 103/1323
  25078. },
  25079. form: "thicc",
  25080. default: true
  25081. },
  25082. thicc_back: {
  25083. height: math.unit(5 + 4/12, "feet"),
  25084. weight: math.unit(195, "lb"),
  25085. name: "Back",
  25086. image: {
  25087. source: "./media/characters/rory/thicc-back.svg",
  25088. extra: 1166/1086,
  25089. bottom: 35/1201
  25090. },
  25091. form: "thicc"
  25092. },
  25093. },
  25094. [
  25095. {
  25096. name: "Micro",
  25097. height: math.unit(3, "inches"),
  25098. allForms: true
  25099. },
  25100. {
  25101. name: "Normal",
  25102. height: math.unit(5 + 4/12, "feet"),
  25103. allForms: true,
  25104. default: true
  25105. },
  25106. {
  25107. name: "Macro",
  25108. height: math.unit(90, "feet"),
  25109. allForms: true
  25110. },
  25111. {
  25112. name: "Supercharged",
  25113. height: math.unit(270, "feet"),
  25114. allForms: true
  25115. },
  25116. ],
  25117. {
  25118. "normal": {
  25119. name: "Normal",
  25120. default: true
  25121. },
  25122. "thicc": {
  25123. name: "Thicc",
  25124. },
  25125. }
  25126. ))
  25127. characterMakers.push(() => makeCharacter(
  25128. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25129. {
  25130. front: {
  25131. height: math.unit(5 + 9 / 12, "feet"),
  25132. weight: math.unit(190, "lb"),
  25133. name: "Front",
  25134. image: {
  25135. source: "./media/characters/sprisk/front.svg",
  25136. extra: 1225 / 1180,
  25137. bottom: 42.7 / 1266.4
  25138. }
  25139. },
  25140. frontNsfw: {
  25141. height: math.unit(5 + 9 / 12, "feet"),
  25142. weight: math.unit(190, "lb"),
  25143. name: "Front (NSFW)",
  25144. image: {
  25145. source: "./media/characters/sprisk/front-nsfw.svg",
  25146. extra: 1225 / 1180,
  25147. bottom: 42.7 / 1266.4
  25148. }
  25149. },
  25150. back: {
  25151. height: math.unit(5 + 9 / 12, "feet"),
  25152. weight: math.unit(190, "lb"),
  25153. name: "Back",
  25154. image: {
  25155. source: "./media/characters/sprisk/back.svg",
  25156. extra: 1247 / 1200,
  25157. bottom: 5.6 / 1253.04
  25158. }
  25159. },
  25160. },
  25161. [
  25162. {
  25163. name: "Tiny",
  25164. height: math.unit(2, "inches")
  25165. },
  25166. {
  25167. name: "Normal",
  25168. height: math.unit(5 + 9 / 12, "feet"),
  25169. default: true
  25170. },
  25171. {
  25172. name: "Mini Macro",
  25173. height: math.unit(18, "feet")
  25174. },
  25175. {
  25176. name: "Macro",
  25177. height: math.unit(100, "feet")
  25178. },
  25179. {
  25180. name: "MACRO",
  25181. height: math.unit(50, "miles")
  25182. },
  25183. {
  25184. name: "M A C R O",
  25185. height: math.unit(300, "miles")
  25186. },
  25187. ]
  25188. ))
  25189. characterMakers.push(() => makeCharacter(
  25190. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25191. {
  25192. side: {
  25193. height: math.unit(15.6, "meters"),
  25194. weight: math.unit(700000, "kg"),
  25195. name: "Side",
  25196. image: {
  25197. source: "./media/characters/bunsen/side.svg",
  25198. extra: 1644 / 358
  25199. }
  25200. },
  25201. foot: {
  25202. height: math.unit(1.611 * 1644 / 358, "meter"),
  25203. name: "Foot",
  25204. image: {
  25205. source: "./media/characters/bunsen/foot.svg"
  25206. }
  25207. },
  25208. },
  25209. [
  25210. {
  25211. name: "Small",
  25212. height: math.unit(10, "feet")
  25213. },
  25214. {
  25215. name: "Normal",
  25216. height: math.unit(15.6, "meters"),
  25217. default: true
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(4 + 11 / 12, "feet"),
  25226. weight: math.unit(140, "lb"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/sesh/front.svg",
  25230. extra: 3420 / 3231,
  25231. bottom: 72 / 3949.5
  25232. }
  25233. },
  25234. },
  25235. [
  25236. {
  25237. name: "Normal",
  25238. height: math.unit(4 + 11 / 12, "feet")
  25239. },
  25240. {
  25241. name: "Grown",
  25242. height: math.unit(15, "feet"),
  25243. default: true
  25244. },
  25245. {
  25246. name: "Macro",
  25247. height: math.unit(1500, "feet")
  25248. },
  25249. {
  25250. name: "Megamacro",
  25251. height: math.unit(30, "miles")
  25252. },
  25253. {
  25254. name: "Continental",
  25255. height: math.unit(3000, "miles")
  25256. },
  25257. {
  25258. name: "Gravity Mass",
  25259. height: math.unit(300000, "miles")
  25260. },
  25261. {
  25262. name: "Planet Buster",
  25263. height: math.unit(30000000, "miles")
  25264. },
  25265. {
  25266. name: "Big",
  25267. height: math.unit(3000000000, "miles")
  25268. },
  25269. ]
  25270. ))
  25271. characterMakers.push(() => makeCharacter(
  25272. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25273. {
  25274. front: {
  25275. height: math.unit(9, "feet"),
  25276. weight: math.unit(350, "lb"),
  25277. name: "Front",
  25278. image: {
  25279. source: "./media/characters/pepper/front.svg",
  25280. extra: 1448 / 1312,
  25281. bottom: 9.4 / 1457.88
  25282. }
  25283. },
  25284. back: {
  25285. height: math.unit(9, "feet"),
  25286. weight: math.unit(350, "lb"),
  25287. name: "Back",
  25288. image: {
  25289. source: "./media/characters/pepper/back.svg",
  25290. extra: 1423 / 1300,
  25291. bottom: 4.6 / 1429
  25292. }
  25293. },
  25294. maw: {
  25295. height: math.unit(0.932, "feet"),
  25296. name: "Maw",
  25297. image: {
  25298. source: "./media/characters/pepper/maw.svg"
  25299. }
  25300. },
  25301. },
  25302. [
  25303. {
  25304. name: "Normal",
  25305. height: math.unit(9, "feet"),
  25306. default: true
  25307. },
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25312. {
  25313. front: {
  25314. height: math.unit(6, "feet"),
  25315. weight: math.unit(150, "lb"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/maelstrom/front.svg",
  25319. extra: 2100 / 1883,
  25320. bottom: 94 / 2196.7
  25321. }
  25322. },
  25323. },
  25324. [
  25325. {
  25326. name: "Less Kaiju",
  25327. height: math.unit(200, "feet")
  25328. },
  25329. {
  25330. name: "Kaiju",
  25331. height: math.unit(400, "feet"),
  25332. default: true
  25333. },
  25334. {
  25335. name: "Kaiju-er",
  25336. height: math.unit(600, "feet")
  25337. },
  25338. ]
  25339. ))
  25340. characterMakers.push(() => makeCharacter(
  25341. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25342. {
  25343. front: {
  25344. height: math.unit(6 + 5 / 12, "feet"),
  25345. weight: math.unit(180, "lb"),
  25346. name: "Front",
  25347. image: {
  25348. source: "./media/characters/lexir/front.svg",
  25349. extra: 180 / 172,
  25350. bottom: 12 / 192
  25351. }
  25352. },
  25353. back: {
  25354. height: math.unit(6 + 5 / 12, "feet"),
  25355. weight: math.unit(180, "lb"),
  25356. name: "Back",
  25357. image: {
  25358. source: "./media/characters/lexir/back.svg",
  25359. extra: 1273/1201,
  25360. bottom: 39/1312
  25361. }
  25362. },
  25363. },
  25364. [
  25365. {
  25366. name: "Very Smal",
  25367. height: math.unit(1, "nm")
  25368. },
  25369. {
  25370. name: "Normal",
  25371. height: math.unit(6 + 5 / 12, "feet"),
  25372. default: true
  25373. },
  25374. {
  25375. name: "Macro",
  25376. height: math.unit(1, "mile")
  25377. },
  25378. {
  25379. name: "Megamacro",
  25380. height: math.unit(50, "miles")
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25386. {
  25387. front: {
  25388. height: math.unit(1.5, "meters"),
  25389. weight: math.unit(100, "lb"),
  25390. name: "Front",
  25391. image: {
  25392. source: "./media/characters/maksio/front.svg",
  25393. extra: 1549 / 1531,
  25394. bottom: 123.7 / 1674.5429
  25395. }
  25396. },
  25397. back: {
  25398. height: math.unit(1.5, "meters"),
  25399. weight: math.unit(100, "lb"),
  25400. name: "Back",
  25401. image: {
  25402. source: "./media/characters/maksio/back.svg",
  25403. extra: 1541 / 1509,
  25404. bottom: 97 / 1639
  25405. }
  25406. },
  25407. hand: {
  25408. height: math.unit(0.621, "feet"),
  25409. name: "Hand",
  25410. image: {
  25411. source: "./media/characters/maksio/hand.svg"
  25412. }
  25413. },
  25414. foot: {
  25415. height: math.unit(1.611, "feet"),
  25416. name: "Foot",
  25417. image: {
  25418. source: "./media/characters/maksio/foot.svg"
  25419. }
  25420. },
  25421. },
  25422. [
  25423. {
  25424. name: "Shrunken",
  25425. height: math.unit(10, "cm")
  25426. },
  25427. {
  25428. name: "Normal",
  25429. height: math.unit(150, "cm"),
  25430. default: true
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25436. {
  25437. front: {
  25438. height: math.unit(100, "feet"),
  25439. name: "Front",
  25440. image: {
  25441. source: "./media/characters/erza-bear/front.svg",
  25442. extra: 2449 / 2390,
  25443. bottom: 46 / 2494
  25444. }
  25445. },
  25446. back: {
  25447. height: math.unit(100, "feet"),
  25448. name: "Back",
  25449. image: {
  25450. source: "./media/characters/erza-bear/back.svg",
  25451. extra: 2489 / 2430,
  25452. bottom: 85.4 / 2480
  25453. }
  25454. },
  25455. tail: {
  25456. height: math.unit(42, "feet"),
  25457. name: "Tail",
  25458. image: {
  25459. source: "./media/characters/erza-bear/tail.svg"
  25460. }
  25461. },
  25462. tongue: {
  25463. height: math.unit(8, "feet"),
  25464. name: "Tongue",
  25465. image: {
  25466. source: "./media/characters/erza-bear/tongue.svg"
  25467. }
  25468. },
  25469. dick: {
  25470. height: math.unit(10.5, "feet"),
  25471. name: "Dick",
  25472. image: {
  25473. source: "./media/characters/erza-bear/dick.svg"
  25474. }
  25475. },
  25476. dickVertical: {
  25477. height: math.unit(16.9, "feet"),
  25478. name: "Dick (Vertical)",
  25479. image: {
  25480. source: "./media/characters/erza-bear/dick-vertical.svg"
  25481. }
  25482. },
  25483. },
  25484. [
  25485. {
  25486. name: "Macro",
  25487. height: math.unit(100, "feet"),
  25488. default: true
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25494. {
  25495. front: {
  25496. height: math.unit(172, "cm"),
  25497. weight: math.unit(73, "kg"),
  25498. name: "Front",
  25499. image: {
  25500. source: "./media/characters/violet-flor/front.svg",
  25501. extra: 1530 / 1442,
  25502. bottom: 61.9 / 1588.8
  25503. }
  25504. },
  25505. back: {
  25506. height: math.unit(180, "cm"),
  25507. weight: math.unit(73, "kg"),
  25508. name: "Back",
  25509. image: {
  25510. source: "./media/characters/violet-flor/back.svg",
  25511. extra: 1692 / 1630,
  25512. bottom: 20 / 1712
  25513. }
  25514. },
  25515. },
  25516. [
  25517. {
  25518. name: "Normal",
  25519. height: math.unit(172, "cm"),
  25520. default: true
  25521. },
  25522. ]
  25523. ))
  25524. characterMakers.push(() => makeCharacter(
  25525. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25526. {
  25527. front: {
  25528. height: math.unit(6, "feet"),
  25529. weight: math.unit(220, "lb"),
  25530. name: "Front",
  25531. image: {
  25532. source: "./media/characters/lynn-rhea/front.svg",
  25533. extra: 310 / 273
  25534. }
  25535. },
  25536. back: {
  25537. height: math.unit(6, "feet"),
  25538. weight: math.unit(220, "lb"),
  25539. name: "Back",
  25540. image: {
  25541. source: "./media/characters/lynn-rhea/back.svg",
  25542. extra: 310 / 273
  25543. }
  25544. },
  25545. dicks: {
  25546. height: math.unit(0.9, "feet"),
  25547. name: "Dicks",
  25548. image: {
  25549. source: "./media/characters/lynn-rhea/dicks.svg"
  25550. }
  25551. },
  25552. slit: {
  25553. height: math.unit(0.4, "feet"),
  25554. name: "Slit",
  25555. image: {
  25556. source: "./media/characters/lynn-rhea/slit.svg"
  25557. }
  25558. },
  25559. },
  25560. [
  25561. {
  25562. name: "Micro",
  25563. height: math.unit(1, "inch")
  25564. },
  25565. {
  25566. name: "Macro",
  25567. height: math.unit(60, "feet"),
  25568. default: true
  25569. },
  25570. {
  25571. name: "Megamacro",
  25572. height: math.unit(2, "miles")
  25573. },
  25574. {
  25575. name: "Gigamacro",
  25576. height: math.unit(3, "earths")
  25577. },
  25578. {
  25579. name: "Galactic",
  25580. height: math.unit(0.8, "galaxies")
  25581. },
  25582. ]
  25583. ))
  25584. characterMakers.push(() => makeCharacter(
  25585. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25586. {
  25587. front: {
  25588. height: math.unit(1600, "feet"),
  25589. weight: math.unit(85758785169, "kg"),
  25590. name: "Front",
  25591. image: {
  25592. source: "./media/characters/valathos/front.svg",
  25593. extra: 1451 / 1339
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Macro",
  25600. height: math.unit(1600, "feet"),
  25601. default: true
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25607. {
  25608. front: {
  25609. height: math.unit(7 + 5 / 12, "feet"),
  25610. weight: math.unit(300, "lb"),
  25611. name: "Front",
  25612. image: {
  25613. source: "./media/characters/azula/front.svg",
  25614. extra: 3208 / 2880,
  25615. bottom: 80.2 / 3277
  25616. }
  25617. },
  25618. back: {
  25619. height: math.unit(7 + 5 / 12, "feet"),
  25620. weight: math.unit(300, "lb"),
  25621. name: "Back",
  25622. image: {
  25623. source: "./media/characters/azula/back.svg",
  25624. extra: 3169 / 2822,
  25625. bottom: 150.6 / 3321
  25626. }
  25627. },
  25628. },
  25629. [
  25630. {
  25631. name: "Normal",
  25632. height: math.unit(7 + 5 / 12, "feet"),
  25633. default: true
  25634. },
  25635. {
  25636. name: "Big",
  25637. height: math.unit(20, "feet")
  25638. },
  25639. ]
  25640. ))
  25641. characterMakers.push(() => makeCharacter(
  25642. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25643. {
  25644. front: {
  25645. height: math.unit(5 + 1 / 12, "feet"),
  25646. weight: math.unit(110, "lb"),
  25647. name: "Front",
  25648. image: {
  25649. source: "./media/characters/rupert/front.svg",
  25650. extra: 1549 / 1495,
  25651. bottom: 54.2 / 1604.4
  25652. }
  25653. },
  25654. },
  25655. [
  25656. {
  25657. name: "Normal",
  25658. height: math.unit(5 + 1 / 12, "feet"),
  25659. default: true
  25660. },
  25661. ]
  25662. ))
  25663. characterMakers.push(() => makeCharacter(
  25664. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25665. {
  25666. front: {
  25667. height: math.unit(8 + 4 / 12, "feet"),
  25668. weight: math.unit(350, "lb"),
  25669. name: "Front",
  25670. image: {
  25671. source: "./media/characters/sheera-castellar/front.svg",
  25672. extra: 1957 / 1894,
  25673. bottom: 26.97 / 1975.017
  25674. }
  25675. },
  25676. side: {
  25677. height: math.unit(8 + 4 / 12, "feet"),
  25678. weight: math.unit(350, "lb"),
  25679. name: "Side",
  25680. image: {
  25681. source: "./media/characters/sheera-castellar/side.svg",
  25682. extra: 1957 / 1894
  25683. }
  25684. },
  25685. back: {
  25686. height: math.unit(8 + 4 / 12, "feet"),
  25687. weight: math.unit(350, "lb"),
  25688. name: "Back",
  25689. image: {
  25690. source: "./media/characters/sheera-castellar/back.svg",
  25691. extra: 1957 / 1894
  25692. }
  25693. },
  25694. angled: {
  25695. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25696. weight: math.unit(350, "lb"),
  25697. name: "Angled",
  25698. image: {
  25699. source: "./media/characters/sheera-castellar/angled.svg",
  25700. extra: 1807 / 1707,
  25701. bottom: 68 / 1875
  25702. }
  25703. },
  25704. genitals: {
  25705. height: math.unit(2.2, "feet"),
  25706. name: "Genitals",
  25707. image: {
  25708. source: "./media/characters/sheera-castellar/genitals.svg"
  25709. }
  25710. },
  25711. taur: {
  25712. height: math.unit(10 + 6/12, "feet"),
  25713. name: "Taur",
  25714. image: {
  25715. source: "./media/characters/sheera-castellar/taur.svg",
  25716. extra: 2017/1909,
  25717. bottom: 185/2202
  25718. }
  25719. },
  25720. },
  25721. [
  25722. {
  25723. name: "Normal",
  25724. height: math.unit(8 + 4 / 12, "feet")
  25725. },
  25726. {
  25727. name: "Macro",
  25728. height: math.unit(150, "feet"),
  25729. default: true
  25730. },
  25731. {
  25732. name: "Macro+",
  25733. height: math.unit(800, "feet")
  25734. },
  25735. ]
  25736. ))
  25737. characterMakers.push(() => makeCharacter(
  25738. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25739. {
  25740. front: {
  25741. height: math.unit(6, "feet"),
  25742. weight: math.unit(150, "lb"),
  25743. name: "Front",
  25744. image: {
  25745. source: "./media/characters/jaipur/front.svg",
  25746. extra: 3860 / 3731,
  25747. bottom: 287 / 4140
  25748. }
  25749. },
  25750. back: {
  25751. height: math.unit(6, "feet"),
  25752. weight: math.unit(150, "lb"),
  25753. name: "Back",
  25754. image: {
  25755. source: "./media/characters/jaipur/back.svg",
  25756. extra: 1637/1561,
  25757. bottom: 154/1791
  25758. }
  25759. },
  25760. },
  25761. [
  25762. {
  25763. name: "Normal",
  25764. height: math.unit(1.85, "meters"),
  25765. default: true
  25766. },
  25767. {
  25768. name: "Macro",
  25769. height: math.unit(150, "meters")
  25770. },
  25771. {
  25772. name: "Macro+",
  25773. height: math.unit(0.5, "miles")
  25774. },
  25775. {
  25776. name: "Macro++",
  25777. height: math.unit(2.5, "miles")
  25778. },
  25779. {
  25780. name: "Macro+++",
  25781. height: math.unit(12, "miles")
  25782. },
  25783. {
  25784. name: "Macro++++",
  25785. height: math.unit(120, "miles")
  25786. },
  25787. {
  25788. name: "Macro+++++",
  25789. height: math.unit(1200, "miles")
  25790. },
  25791. ]
  25792. ))
  25793. characterMakers.push(() => makeCharacter(
  25794. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25795. {
  25796. front: {
  25797. height: math.unit(6, "feet"),
  25798. weight: math.unit(150, "lb"),
  25799. name: "Front",
  25800. image: {
  25801. source: "./media/characters/sheila-wolf/front.svg",
  25802. extra: 1931 / 1808,
  25803. bottom: 29.5 / 1960
  25804. }
  25805. },
  25806. dick: {
  25807. height: math.unit(1.464, "feet"),
  25808. name: "Dick",
  25809. image: {
  25810. source: "./media/characters/sheila-wolf/dick.svg"
  25811. }
  25812. },
  25813. muzzle: {
  25814. height: math.unit(0.513, "feet"),
  25815. name: "Muzzle",
  25816. image: {
  25817. source: "./media/characters/sheila-wolf/muzzle.svg"
  25818. }
  25819. },
  25820. },
  25821. [
  25822. {
  25823. name: "Macro",
  25824. height: math.unit(70, "feet"),
  25825. default: true
  25826. },
  25827. ]
  25828. ))
  25829. characterMakers.push(() => makeCharacter(
  25830. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25831. {
  25832. front: {
  25833. height: math.unit(32, "meters"),
  25834. weight: math.unit(300000, "kg"),
  25835. name: "Front",
  25836. image: {
  25837. source: "./media/characters/almor/front.svg",
  25838. extra: 1408 / 1322,
  25839. bottom: 94.6 / 1506.5
  25840. }
  25841. },
  25842. },
  25843. [
  25844. {
  25845. name: "Macro",
  25846. height: math.unit(32, "meters"),
  25847. default: true
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25853. {
  25854. front: {
  25855. height: math.unit(7, "feet"),
  25856. weight: math.unit(200, "lb"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/silver/front.svg",
  25860. extra: 472.1 / 450.5,
  25861. bottom: 26.5 / 499.424
  25862. }
  25863. },
  25864. },
  25865. [
  25866. {
  25867. name: "Normal",
  25868. height: math.unit(7, "feet"),
  25869. default: true
  25870. },
  25871. {
  25872. name: "Macro",
  25873. height: math.unit(800, "feet")
  25874. },
  25875. {
  25876. name: "Megamacro",
  25877. height: math.unit(250, "miles")
  25878. },
  25879. ]
  25880. ))
  25881. characterMakers.push(() => makeCharacter(
  25882. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25883. {
  25884. front: {
  25885. height: math.unit(6, "feet"),
  25886. weight: math.unit(150, "lb"),
  25887. name: "Front",
  25888. image: {
  25889. source: "./media/characters/pliskin/front.svg",
  25890. extra: 1469 / 1359,
  25891. bottom: 70 / 1540
  25892. }
  25893. },
  25894. },
  25895. [
  25896. {
  25897. name: "Micro",
  25898. height: math.unit(3, "inches")
  25899. },
  25900. {
  25901. name: "Normal",
  25902. height: math.unit(5 + 11 / 12, "feet"),
  25903. default: true
  25904. },
  25905. {
  25906. name: "Macro",
  25907. height: math.unit(120, "feet")
  25908. },
  25909. ]
  25910. ))
  25911. characterMakers.push(() => makeCharacter(
  25912. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25913. {
  25914. front: {
  25915. height: math.unit(6, "feet"),
  25916. weight: math.unit(150, "lb"),
  25917. name: "Front",
  25918. image: {
  25919. source: "./media/characters/sammy/front.svg",
  25920. extra: 1193 / 1089,
  25921. bottom: 30.5 / 1226
  25922. }
  25923. },
  25924. },
  25925. [
  25926. {
  25927. name: "Macro",
  25928. height: math.unit(1700, "feet"),
  25929. default: true
  25930. },
  25931. {
  25932. name: "Examacro",
  25933. height: math.unit(2.5e9, "lightyears")
  25934. },
  25935. ]
  25936. ))
  25937. characterMakers.push(() => makeCharacter(
  25938. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25939. {
  25940. front: {
  25941. height: math.unit(21, "meters"),
  25942. weight: math.unit(12, "tonnes"),
  25943. name: "Front",
  25944. image: {
  25945. source: "./media/characters/kuru/front.svg",
  25946. extra: 4301 / 3785,
  25947. bottom: 371.3 / 4691
  25948. }
  25949. },
  25950. },
  25951. [
  25952. {
  25953. name: "Macro",
  25954. height: math.unit(21, "meters"),
  25955. default: true
  25956. },
  25957. ]
  25958. ))
  25959. characterMakers.push(() => makeCharacter(
  25960. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25961. {
  25962. front: {
  25963. height: math.unit(23, "meters"),
  25964. weight: math.unit(12.2, "tonnes"),
  25965. name: "Front",
  25966. image: {
  25967. source: "./media/characters/rakka/front.svg",
  25968. extra: 4670 / 4169,
  25969. bottom: 301 / 4968.7
  25970. }
  25971. },
  25972. },
  25973. [
  25974. {
  25975. name: "Macro",
  25976. height: math.unit(23, "meters"),
  25977. default: true
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25983. {
  25984. front: {
  25985. height: math.unit(6, "feet"),
  25986. weight: math.unit(150, "lb"),
  25987. name: "Front",
  25988. image: {
  25989. source: "./media/characters/rhys-feline/front.svg",
  25990. extra: 2488 / 2308,
  25991. bottom: 35.67 / 2519.19
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Really Small",
  25998. height: math.unit(1, "nm")
  25999. },
  26000. {
  26001. name: "Micro",
  26002. height: math.unit(4, "inches")
  26003. },
  26004. {
  26005. name: "Normal",
  26006. height: math.unit(4 + 10 / 12, "feet"),
  26007. default: true
  26008. },
  26009. {
  26010. name: "Macro",
  26011. height: math.unit(100, "feet")
  26012. },
  26013. {
  26014. name: "Megamacto",
  26015. height: math.unit(50, "miles")
  26016. },
  26017. ]
  26018. ))
  26019. characterMakers.push(() => makeCharacter(
  26020. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26021. {
  26022. side: {
  26023. height: math.unit(30, "feet"),
  26024. weight: math.unit(35000, "kg"),
  26025. name: "Side",
  26026. image: {
  26027. source: "./media/characters/alydar/side.svg",
  26028. extra: 234 / 222,
  26029. bottom: 6.5 / 241
  26030. }
  26031. },
  26032. front: {
  26033. height: math.unit(30, "feet"),
  26034. weight: math.unit(35000, "kg"),
  26035. name: "Front",
  26036. image: {
  26037. source: "./media/characters/alydar/front.svg",
  26038. extra: 223.37 / 210.2,
  26039. bottom: 22.3 / 246.76
  26040. }
  26041. },
  26042. top: {
  26043. height: math.unit(64.54, "feet"),
  26044. weight: math.unit(35000, "kg"),
  26045. name: "Top",
  26046. image: {
  26047. source: "./media/characters/alydar/top.svg"
  26048. }
  26049. },
  26050. anthro: {
  26051. height: math.unit(30, "feet"),
  26052. weight: math.unit(9000, "kg"),
  26053. name: "Anthro",
  26054. image: {
  26055. source: "./media/characters/alydar/anthro.svg",
  26056. extra: 432 / 421,
  26057. bottom: 7.18 / 440
  26058. }
  26059. },
  26060. maw: {
  26061. height: math.unit(11.693, "feet"),
  26062. name: "Maw",
  26063. image: {
  26064. source: "./media/characters/alydar/maw.svg"
  26065. }
  26066. },
  26067. head: {
  26068. height: math.unit(11.693, "feet"),
  26069. name: "Head",
  26070. image: {
  26071. source: "./media/characters/alydar/head.svg"
  26072. }
  26073. },
  26074. headAlt: {
  26075. height: math.unit(12.861, "feet"),
  26076. name: "Head (Alt)",
  26077. image: {
  26078. source: "./media/characters/alydar/head-alt.svg"
  26079. }
  26080. },
  26081. wing: {
  26082. height: math.unit(20.712, "feet"),
  26083. name: "Wing",
  26084. image: {
  26085. source: "./media/characters/alydar/wing.svg"
  26086. }
  26087. },
  26088. wingFeather: {
  26089. height: math.unit(9.662, "feet"),
  26090. name: "Wing Feather",
  26091. image: {
  26092. source: "./media/characters/alydar/wing-feather.svg"
  26093. }
  26094. },
  26095. countourFeather: {
  26096. height: math.unit(4.154, "feet"),
  26097. name: "Contour Feather",
  26098. image: {
  26099. source: "./media/characters/alydar/contour-feather.svg"
  26100. }
  26101. },
  26102. },
  26103. [
  26104. {
  26105. name: "Diplomatic",
  26106. height: math.unit(13, "feet"),
  26107. default: true
  26108. },
  26109. {
  26110. name: "Small",
  26111. height: math.unit(30, "feet")
  26112. },
  26113. {
  26114. name: "Normal",
  26115. height: math.unit(95, "feet"),
  26116. default: true
  26117. },
  26118. {
  26119. name: "Large",
  26120. height: math.unit(285, "feet")
  26121. },
  26122. {
  26123. name: "Incomprehensible",
  26124. height: math.unit(450, "megameters")
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26130. {
  26131. side: {
  26132. height: math.unit(11, "feet"),
  26133. weight: math.unit(1750, "kg"),
  26134. name: "Side",
  26135. image: {
  26136. source: "./media/characters/selicia/side.svg",
  26137. extra: 440 / 396,
  26138. bottom: 24.8 / 465.979
  26139. }
  26140. },
  26141. maw: {
  26142. height: math.unit(4.665, "feet"),
  26143. name: "Maw",
  26144. image: {
  26145. source: "./media/characters/selicia/maw.svg"
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Normal",
  26152. height: math.unit(11, "feet"),
  26153. default: true
  26154. },
  26155. ]
  26156. ))
  26157. characterMakers.push(() => makeCharacter(
  26158. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26159. {
  26160. side: {
  26161. height: math.unit(2 + 6 / 12, "feet"),
  26162. weight: math.unit(30, "lb"),
  26163. name: "Side",
  26164. image: {
  26165. source: "./media/characters/layla/side.svg",
  26166. extra: 244 / 188,
  26167. bottom: 18.2 / 262.1
  26168. }
  26169. },
  26170. back: {
  26171. height: math.unit(2 + 6 / 12, "feet"),
  26172. weight: math.unit(30, "lb"),
  26173. name: "Back",
  26174. image: {
  26175. source: "./media/characters/layla/back.svg",
  26176. extra: 308 / 241.5,
  26177. bottom: 8.9 / 316.8
  26178. }
  26179. },
  26180. cumming: {
  26181. height: math.unit(2 + 6 / 12, "feet"),
  26182. weight: math.unit(30, "lb"),
  26183. name: "Cumming",
  26184. image: {
  26185. source: "./media/characters/layla/cumming.svg",
  26186. extra: 342 / 279,
  26187. bottom: 595 / 938
  26188. }
  26189. },
  26190. dickFlaccid: {
  26191. height: math.unit(2.595, "feet"),
  26192. name: "Flaccid Genitals",
  26193. image: {
  26194. source: "./media/characters/layla/dick-flaccid.svg"
  26195. }
  26196. },
  26197. dickErect: {
  26198. height: math.unit(2.359, "feet"),
  26199. name: "Erect Genitals",
  26200. image: {
  26201. source: "./media/characters/layla/dick-erect.svg"
  26202. }
  26203. },
  26204. dragon: {
  26205. height: math.unit(40, "feet"),
  26206. name: "Dragon",
  26207. image: {
  26208. source: "./media/characters/layla/dragon.svg",
  26209. extra: 610/535,
  26210. bottom: 367/977
  26211. }
  26212. },
  26213. taur: {
  26214. height: math.unit(30, "feet"),
  26215. name: "Taur",
  26216. image: {
  26217. source: "./media/characters/layla/taur.svg",
  26218. extra: 1268/1199,
  26219. bottom: 112/1380
  26220. }
  26221. },
  26222. },
  26223. [
  26224. {
  26225. name: "Micro",
  26226. height: math.unit(1, "inch")
  26227. },
  26228. {
  26229. name: "Small",
  26230. height: math.unit(1, "foot")
  26231. },
  26232. {
  26233. name: "Normal",
  26234. height: math.unit(2 + 6 / 12, "feet"),
  26235. default: true
  26236. },
  26237. {
  26238. name: "Macro",
  26239. height: math.unit(200, "feet")
  26240. },
  26241. {
  26242. name: "Megamacro",
  26243. height: math.unit(1000, "miles")
  26244. },
  26245. {
  26246. name: "Planetary",
  26247. height: math.unit(8000, "miles")
  26248. },
  26249. {
  26250. name: "True Layla",
  26251. height: math.unit(200000 * 7, "multiverses")
  26252. },
  26253. ]
  26254. ))
  26255. characterMakers.push(() => makeCharacter(
  26256. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26257. {
  26258. back: {
  26259. height: math.unit(10.5, "feet"),
  26260. weight: math.unit(800, "lb"),
  26261. name: "Back",
  26262. image: {
  26263. source: "./media/characters/knox/back.svg",
  26264. extra: 1486 / 1089,
  26265. bottom: 107 / 1601.4
  26266. }
  26267. },
  26268. side: {
  26269. height: math.unit(10.5, "feet"),
  26270. weight: math.unit(800, "lb"),
  26271. name: "Side",
  26272. image: {
  26273. source: "./media/characters/knox/side.svg",
  26274. extra: 244 / 218,
  26275. bottom: 14 / 260
  26276. }
  26277. },
  26278. },
  26279. [
  26280. {
  26281. name: "Compact",
  26282. height: math.unit(10.5, "feet"),
  26283. default: true
  26284. },
  26285. {
  26286. name: "Dynamax",
  26287. height: math.unit(210, "feet")
  26288. },
  26289. {
  26290. name: "Full Macro",
  26291. height: math.unit(850, "feet")
  26292. },
  26293. ]
  26294. ))
  26295. characterMakers.push(() => makeCharacter(
  26296. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26297. {
  26298. front: {
  26299. height: math.unit(28, "feet"),
  26300. weight: math.unit(10500, "lb"),
  26301. name: "Front",
  26302. image: {
  26303. source: "./media/characters/kayda/front.svg",
  26304. extra: 1536 / 1428,
  26305. bottom: 68.7 / 1603
  26306. }
  26307. },
  26308. back: {
  26309. height: math.unit(28, "feet"),
  26310. weight: math.unit(10500, "lb"),
  26311. name: "Back",
  26312. image: {
  26313. source: "./media/characters/kayda/back.svg",
  26314. extra: 1557 / 1464,
  26315. bottom: 39.5 / 1597.49
  26316. }
  26317. },
  26318. dick: {
  26319. height: math.unit(3.858, "feet"),
  26320. name: "Dick",
  26321. image: {
  26322. source: "./media/characters/kayda/dick.svg"
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Macro",
  26329. height: math.unit(28, "feet"),
  26330. default: true
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26336. {
  26337. front: {
  26338. height: math.unit(10 + 11 / 12, "feet"),
  26339. weight: math.unit(1400, "lb"),
  26340. name: "Front",
  26341. image: {
  26342. source: "./media/characters/brian/front.svg",
  26343. extra: 737 / 692,
  26344. bottom: 55.4 / 785
  26345. }
  26346. },
  26347. },
  26348. [
  26349. {
  26350. name: "Normal",
  26351. height: math.unit(10 + 11 / 12, "feet"),
  26352. default: true
  26353. },
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(5 + 8 / 12, "feet"),
  26361. weight: math.unit(140, "lb"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/khemri/front.svg",
  26365. extra: 4780 / 4059,
  26366. bottom: 80.1 / 4859.25
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Micro",
  26373. height: math.unit(6, "inches")
  26374. },
  26375. {
  26376. name: "Normal",
  26377. height: math.unit(5 + 8 / 12, "feet"),
  26378. default: true
  26379. },
  26380. ]
  26381. ))
  26382. characterMakers.push(() => makeCharacter(
  26383. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26384. {
  26385. front: {
  26386. height: math.unit(13, "feet"),
  26387. weight: math.unit(1700, "lb"),
  26388. name: "Front",
  26389. image: {
  26390. source: "./media/characters/felix-braveheart/front.svg",
  26391. extra: 1222 / 1157,
  26392. bottom: 53.2 / 1280
  26393. }
  26394. },
  26395. back: {
  26396. height: math.unit(13, "feet"),
  26397. weight: math.unit(1700, "lb"),
  26398. name: "Back",
  26399. image: {
  26400. source: "./media/characters/felix-braveheart/back.svg",
  26401. extra: 1277 / 1203,
  26402. bottom: 50.2 / 1327
  26403. }
  26404. },
  26405. feral: {
  26406. height: math.unit(6, "feet"),
  26407. weight: math.unit(400, "lb"),
  26408. name: "Feral",
  26409. image: {
  26410. source: "./media/characters/felix-braveheart/feral.svg",
  26411. extra: 682 / 625,
  26412. bottom: 6.9 / 688
  26413. }
  26414. },
  26415. },
  26416. [
  26417. {
  26418. name: "Normal",
  26419. height: math.unit(13, "feet"),
  26420. default: true
  26421. },
  26422. ]
  26423. ))
  26424. characterMakers.push(() => makeCharacter(
  26425. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26426. {
  26427. side: {
  26428. height: math.unit(5 + 11 / 12, "feet"),
  26429. weight: math.unit(1400, "lb"),
  26430. name: "Side",
  26431. image: {
  26432. source: "./media/characters/shadow-blade/side.svg",
  26433. extra: 1726 / 1267,
  26434. bottom: 58.4 / 1785
  26435. }
  26436. },
  26437. },
  26438. [
  26439. {
  26440. name: "Normal",
  26441. height: math.unit(5 + 11 / 12, "feet"),
  26442. default: true
  26443. },
  26444. ]
  26445. ))
  26446. characterMakers.push(() => makeCharacter(
  26447. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26448. {
  26449. front: {
  26450. height: math.unit(1 + 6 / 12, "feet"),
  26451. weight: math.unit(25, "lb"),
  26452. name: "Front",
  26453. image: {
  26454. source: "./media/characters/karla-halldor/front.svg",
  26455. extra: 1459 / 1383,
  26456. bottom: 12 / 1472
  26457. }
  26458. },
  26459. },
  26460. [
  26461. {
  26462. name: "Normal",
  26463. height: math.unit(1 + 6 / 12, "feet"),
  26464. default: true
  26465. },
  26466. ]
  26467. ))
  26468. characterMakers.push(() => makeCharacter(
  26469. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26470. {
  26471. front: {
  26472. height: math.unit(6 + 2 / 12, "feet"),
  26473. weight: math.unit(160, "lb"),
  26474. name: "Front",
  26475. image: {
  26476. source: "./media/characters/ariam/front.svg",
  26477. extra: 1073/976,
  26478. bottom: 52/1125
  26479. }
  26480. },
  26481. back: {
  26482. height: math.unit(6 + 2/12, "feet"),
  26483. weight: math.unit(160, "lb"),
  26484. name: "Back",
  26485. image: {
  26486. source: "./media/characters/ariam/back.svg",
  26487. extra: 1103/1023,
  26488. bottom: 9/1112
  26489. }
  26490. },
  26491. dressed: {
  26492. height: math.unit(6 + 2/12, "feet"),
  26493. weight: math.unit(160, "lb"),
  26494. name: "Dressed",
  26495. image: {
  26496. source: "./media/characters/ariam/dressed.svg",
  26497. extra: 1099/1009,
  26498. bottom: 25/1124
  26499. }
  26500. },
  26501. squatting: {
  26502. height: math.unit(4.1, "feet"),
  26503. weight: math.unit(160, "lb"),
  26504. name: "Squatting",
  26505. image: {
  26506. source: "./media/characters/ariam/squatting.svg",
  26507. extra: 2617 / 2112,
  26508. bottom: 61.2 / 2681,
  26509. }
  26510. },
  26511. },
  26512. [
  26513. {
  26514. name: "Normal",
  26515. height: math.unit(6 + 2 / 12, "feet"),
  26516. default: true
  26517. },
  26518. {
  26519. name: "Normal+",
  26520. height: math.unit(4, "meters")
  26521. },
  26522. {
  26523. name: "Macro",
  26524. height: math.unit(50, "meters")
  26525. },
  26526. {
  26527. name: "Macro+",
  26528. height: math.unit(100, "meters")
  26529. },
  26530. {
  26531. name: "Megamacro",
  26532. height: math.unit(20, "km")
  26533. },
  26534. {
  26535. name: "Caretaker",
  26536. height: math.unit(444, "megameters")
  26537. },
  26538. ]
  26539. ))
  26540. characterMakers.push(() => makeCharacter(
  26541. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26542. {
  26543. front: {
  26544. height: math.unit(1.67, "meters"),
  26545. weight: math.unit(140, "lb"),
  26546. name: "Front",
  26547. image: {
  26548. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26549. extra: 438 / 410,
  26550. bottom: 0.75 / 439
  26551. }
  26552. },
  26553. },
  26554. [
  26555. {
  26556. name: "Shrunken",
  26557. height: math.unit(7.6, "cm")
  26558. },
  26559. {
  26560. name: "Human Scale",
  26561. height: math.unit(1.67, "meters")
  26562. },
  26563. {
  26564. name: "Wolxi Scale",
  26565. height: math.unit(36.7, "meters"),
  26566. default: true
  26567. },
  26568. ]
  26569. ))
  26570. characterMakers.push(() => makeCharacter(
  26571. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26572. {
  26573. front: {
  26574. height: math.unit(1.73, "meters"),
  26575. weight: math.unit(240, "lb"),
  26576. name: "Front",
  26577. image: {
  26578. source: "./media/characters/izue-two-mothers/front.svg",
  26579. extra: 469 / 437,
  26580. bottom: 1.24 / 470.6
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Shrunken",
  26587. height: math.unit(7.86, "cm")
  26588. },
  26589. {
  26590. name: "Human Scale",
  26591. height: math.unit(1.73, "meters")
  26592. },
  26593. {
  26594. name: "Wolxi Scale",
  26595. height: math.unit(38, "meters"),
  26596. default: true
  26597. },
  26598. ]
  26599. ))
  26600. characterMakers.push(() => makeCharacter(
  26601. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26602. {
  26603. front: {
  26604. height: math.unit(1.55, "meters"),
  26605. weight: math.unit(120, "lb"),
  26606. name: "Front",
  26607. image: {
  26608. source: "./media/characters/teeku-love-shack/front.svg",
  26609. extra: 387 / 362,
  26610. bottom: 1.51 / 388
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Shrunken",
  26617. height: math.unit(7, "cm")
  26618. },
  26619. {
  26620. name: "Human Scale",
  26621. height: math.unit(1.55, "meters")
  26622. },
  26623. {
  26624. name: "Wolxi Scale",
  26625. height: math.unit(34.1, "meters"),
  26626. default: true
  26627. },
  26628. ]
  26629. ))
  26630. characterMakers.push(() => makeCharacter(
  26631. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26632. {
  26633. front: {
  26634. height: math.unit(1.83, "meters"),
  26635. weight: math.unit(135, "lb"),
  26636. name: "Front",
  26637. image: {
  26638. source: "./media/characters/dejma-the-red/front.svg",
  26639. extra: 480 / 458,
  26640. bottom: 1.8 / 482
  26641. }
  26642. },
  26643. },
  26644. [
  26645. {
  26646. name: "Shrunken",
  26647. height: math.unit(8.3, "cm")
  26648. },
  26649. {
  26650. name: "Human Scale",
  26651. height: math.unit(1.83, "meters")
  26652. },
  26653. {
  26654. name: "Wolxi Scale",
  26655. height: math.unit(40, "meters"),
  26656. default: true
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26662. {
  26663. front: {
  26664. height: math.unit(1.78, "meters"),
  26665. weight: math.unit(65, "kg"),
  26666. name: "Front",
  26667. image: {
  26668. source: "./media/characters/aki/front.svg",
  26669. extra: 452 / 415
  26670. }
  26671. },
  26672. frontNsfw: {
  26673. height: math.unit(1.78, "meters"),
  26674. weight: math.unit(65, "kg"),
  26675. name: "Front (NSFW)",
  26676. image: {
  26677. source: "./media/characters/aki/front-nsfw.svg",
  26678. extra: 452 / 415
  26679. }
  26680. },
  26681. back: {
  26682. height: math.unit(1.78, "meters"),
  26683. weight: math.unit(65, "kg"),
  26684. name: "Back",
  26685. image: {
  26686. source: "./media/characters/aki/back.svg",
  26687. extra: 452 / 415
  26688. }
  26689. },
  26690. rump: {
  26691. height: math.unit(2.05, "feet"),
  26692. name: "Rump",
  26693. image: {
  26694. source: "./media/characters/aki/rump.svg"
  26695. }
  26696. },
  26697. dick: {
  26698. height: math.unit(0.95, "feet"),
  26699. name: "Dick",
  26700. image: {
  26701. source: "./media/characters/aki/dick.svg"
  26702. }
  26703. },
  26704. },
  26705. [
  26706. {
  26707. name: "Micro",
  26708. height: math.unit(15, "cm")
  26709. },
  26710. {
  26711. name: "Normal",
  26712. height: math.unit(178, "cm"),
  26713. default: true
  26714. },
  26715. {
  26716. name: "Macro",
  26717. height: math.unit(214, "m")
  26718. },
  26719. {
  26720. name: "Macro+",
  26721. height: math.unit(534, "m")
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26727. {
  26728. front: {
  26729. height: math.unit(5 + 5 / 12, "feet"),
  26730. weight: math.unit(120, "lb"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/ari/front.svg",
  26734. extra: 1550/1471,
  26735. bottom: 39/1589
  26736. }
  26737. },
  26738. },
  26739. [
  26740. {
  26741. name: "Normal",
  26742. height: math.unit(5 + 5 / 12, "feet")
  26743. },
  26744. {
  26745. name: "Macro",
  26746. height: math.unit(100, "feet"),
  26747. default: true
  26748. },
  26749. {
  26750. name: "Megamacro",
  26751. height: math.unit(100, "miles")
  26752. },
  26753. {
  26754. name: "Gigamacro",
  26755. height: math.unit(80000, "miles")
  26756. },
  26757. ]
  26758. ))
  26759. characterMakers.push(() => makeCharacter(
  26760. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26761. {
  26762. side: {
  26763. height: math.unit(9, "feet"),
  26764. weight: math.unit(400, "kg"),
  26765. name: "Side",
  26766. image: {
  26767. source: "./media/characters/bolt/side.svg",
  26768. extra: 1126 / 896,
  26769. bottom: 60 / 1187.3,
  26770. }
  26771. },
  26772. },
  26773. [
  26774. {
  26775. name: "Micro",
  26776. height: math.unit(5, "inches")
  26777. },
  26778. {
  26779. name: "Normal",
  26780. height: math.unit(9, "feet"),
  26781. default: true
  26782. },
  26783. {
  26784. name: "Macro",
  26785. height: math.unit(700, "feet")
  26786. },
  26787. {
  26788. name: "Max Size",
  26789. height: math.unit(1.52e22, "yottameters")
  26790. },
  26791. ]
  26792. ))
  26793. characterMakers.push(() => makeCharacter(
  26794. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26795. {
  26796. front: {
  26797. height: math.unit(4.3, "meters"),
  26798. weight: math.unit(3, "tons"),
  26799. name: "Front",
  26800. image: {
  26801. source: "./media/characters/draekon-sylviar/front.svg",
  26802. extra: 2072/1512,
  26803. bottom: 74/2146
  26804. }
  26805. },
  26806. back: {
  26807. height: math.unit(4.3, "meters"),
  26808. weight: math.unit(3, "tons"),
  26809. name: "Back",
  26810. image: {
  26811. source: "./media/characters/draekon-sylviar/back.svg",
  26812. extra: 1639/1483,
  26813. bottom: 41/1680
  26814. }
  26815. },
  26816. feral: {
  26817. height: math.unit(1.15, "meters"),
  26818. weight: math.unit(3, "tons"),
  26819. name: "Feral",
  26820. image: {
  26821. source: "./media/characters/draekon-sylviar/feral.svg",
  26822. extra: 1033/395,
  26823. bottom: 130/1163
  26824. }
  26825. },
  26826. maw: {
  26827. height: math.unit(1.3, "meters"),
  26828. name: "Maw",
  26829. image: {
  26830. source: "./media/characters/draekon-sylviar/maw.svg"
  26831. }
  26832. },
  26833. mawSeparated: {
  26834. height: math.unit(1.53, "meters"),
  26835. name: "Separated Maw",
  26836. image: {
  26837. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26838. }
  26839. },
  26840. tail: {
  26841. height: math.unit(1.15, "meters"),
  26842. name: "Tail",
  26843. image: {
  26844. source: "./media/characters/draekon-sylviar/tail.svg"
  26845. }
  26846. },
  26847. tailDick: {
  26848. height: math.unit(1.15, "meters"),
  26849. name: "Tail (Dick)",
  26850. image: {
  26851. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26852. }
  26853. },
  26854. tailDickSeparated: {
  26855. height: math.unit(1.19, "meters"),
  26856. name: "Tail (Separated Dick)",
  26857. image: {
  26858. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26859. }
  26860. },
  26861. slit: {
  26862. height: math.unit(1, "meters"),
  26863. name: "Slit",
  26864. image: {
  26865. source: "./media/characters/draekon-sylviar/slit.svg"
  26866. }
  26867. },
  26868. dick: {
  26869. height: math.unit(1.15, "meters"),
  26870. name: "Dick",
  26871. image: {
  26872. source: "./media/characters/draekon-sylviar/dick.svg"
  26873. }
  26874. },
  26875. dickSeparated: {
  26876. height: math.unit(1.1, "meters"),
  26877. name: "Separated Dick",
  26878. image: {
  26879. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26880. }
  26881. },
  26882. sheath: {
  26883. height: math.unit(1.15, "meters"),
  26884. name: "Sheath",
  26885. image: {
  26886. source: "./media/characters/draekon-sylviar/sheath.svg"
  26887. }
  26888. },
  26889. },
  26890. [
  26891. {
  26892. name: "Small",
  26893. height: math.unit(4.53 / 2, "meters"),
  26894. default: true
  26895. },
  26896. {
  26897. name: "Normal",
  26898. height: math.unit(4.53, "meters"),
  26899. default: true
  26900. },
  26901. {
  26902. name: "Large",
  26903. height: math.unit(4.53 * 2, "meters"),
  26904. },
  26905. ]
  26906. ))
  26907. characterMakers.push(() => makeCharacter(
  26908. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26909. {
  26910. front: {
  26911. height: math.unit(6 + 2 / 12, "feet"),
  26912. weight: math.unit(180, "lb"),
  26913. name: "Front",
  26914. image: {
  26915. source: "./media/characters/brawler/front.svg",
  26916. extra: 3301 / 3027,
  26917. bottom: 138 / 3439
  26918. }
  26919. },
  26920. },
  26921. [
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(6 + 2 / 12, "feet"),
  26925. default: true
  26926. },
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26931. {
  26932. front: {
  26933. height: math.unit(11, "feet"),
  26934. weight: math.unit(1000, "lb"),
  26935. name: "Front",
  26936. image: {
  26937. source: "./media/characters/alex/front.svg",
  26938. bottom: 44.5 / 620
  26939. }
  26940. },
  26941. },
  26942. [
  26943. {
  26944. name: "Micro",
  26945. height: math.unit(5, "inches")
  26946. },
  26947. {
  26948. name: "Normal",
  26949. height: math.unit(11, "feet"),
  26950. default: true
  26951. },
  26952. {
  26953. name: "Macro",
  26954. height: math.unit(9.5e9, "feet")
  26955. },
  26956. {
  26957. name: "Max Size",
  26958. height: math.unit(1.4e283, "yottameters")
  26959. },
  26960. ]
  26961. ))
  26962. characterMakers.push(() => makeCharacter(
  26963. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26964. {
  26965. female: {
  26966. height: math.unit(29.9, "m"),
  26967. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26968. name: "Female",
  26969. image: {
  26970. source: "./media/characters/zenari/female.svg",
  26971. extra: 3281.6 / 3217,
  26972. bottom: 72.2 / 3353
  26973. }
  26974. },
  26975. male: {
  26976. height: math.unit(27.7, "m"),
  26977. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26978. name: "Male",
  26979. image: {
  26980. source: "./media/characters/zenari/male.svg",
  26981. extra: 3008 / 2991,
  26982. bottom: 54.6 / 3069
  26983. }
  26984. },
  26985. },
  26986. [
  26987. {
  26988. name: "Macro",
  26989. height: math.unit(29.7, "meters"),
  26990. default: true
  26991. },
  26992. ]
  26993. ))
  26994. characterMakers.push(() => makeCharacter(
  26995. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26996. {
  26997. female: {
  26998. height: math.unit(23.8, "m"),
  26999. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27000. name: "Female",
  27001. image: {
  27002. source: "./media/characters/mactarian/female.svg",
  27003. extra: 2662 / 2569,
  27004. bottom: 73 / 2736
  27005. }
  27006. },
  27007. male: {
  27008. height: math.unit(23.8, "m"),
  27009. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27010. name: "Male",
  27011. image: {
  27012. source: "./media/characters/mactarian/male.svg",
  27013. extra: 2673 / 2600,
  27014. bottom: 76 / 2750
  27015. }
  27016. },
  27017. },
  27018. [
  27019. {
  27020. name: "Macro",
  27021. height: math.unit(23.8, "meters"),
  27022. default: true
  27023. },
  27024. ]
  27025. ))
  27026. characterMakers.push(() => makeCharacter(
  27027. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27028. {
  27029. female: {
  27030. height: math.unit(19.3, "m"),
  27031. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27032. name: "Female",
  27033. image: {
  27034. source: "./media/characters/umok/female.svg",
  27035. extra: 2186 / 2078,
  27036. bottom: 87 / 2277
  27037. }
  27038. },
  27039. male: {
  27040. height: math.unit(19.5, "m"),
  27041. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27042. name: "Male",
  27043. image: {
  27044. source: "./media/characters/umok/male.svg",
  27045. extra: 2233 / 2140,
  27046. bottom: 24.4 / 2258
  27047. }
  27048. },
  27049. },
  27050. [
  27051. {
  27052. name: "Macro",
  27053. height: math.unit(19.3, "meters"),
  27054. default: true
  27055. },
  27056. ]
  27057. ))
  27058. characterMakers.push(() => makeCharacter(
  27059. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27060. {
  27061. female: {
  27062. height: math.unit(26.15, "m"),
  27063. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27064. name: "Female",
  27065. image: {
  27066. source: "./media/characters/joraxian/female.svg",
  27067. extra: 2912 / 2824,
  27068. bottom: 36 / 2956
  27069. }
  27070. },
  27071. male: {
  27072. height: math.unit(25.4, "m"),
  27073. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27074. name: "Male",
  27075. image: {
  27076. source: "./media/characters/joraxian/male.svg",
  27077. extra: 2877 / 2721,
  27078. bottom: 82 / 2967
  27079. }
  27080. },
  27081. },
  27082. [
  27083. {
  27084. name: "Macro",
  27085. height: math.unit(26.15, "meters"),
  27086. default: true
  27087. },
  27088. ]
  27089. ))
  27090. characterMakers.push(() => makeCharacter(
  27091. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27092. {
  27093. female: {
  27094. height: math.unit(21.6, "m"),
  27095. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27096. name: "Female",
  27097. image: {
  27098. source: "./media/characters/sthara/female.svg",
  27099. extra: 2516 / 2347,
  27100. bottom: 21.5 / 2537
  27101. }
  27102. },
  27103. male: {
  27104. height: math.unit(24, "m"),
  27105. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27106. name: "Male",
  27107. image: {
  27108. source: "./media/characters/sthara/male.svg",
  27109. extra: 2732 / 2607,
  27110. bottom: 23 / 2732
  27111. }
  27112. },
  27113. },
  27114. [
  27115. {
  27116. name: "Macro",
  27117. height: math.unit(21.6, "meters"),
  27118. default: true
  27119. },
  27120. ]
  27121. ))
  27122. characterMakers.push(() => makeCharacter(
  27123. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27124. {
  27125. front: {
  27126. height: math.unit(6 + 4 / 12, "feet"),
  27127. weight: math.unit(175, "lb"),
  27128. name: "Front",
  27129. image: {
  27130. source: "./media/characters/luka-bryzant/front.svg",
  27131. extra: 311 / 289,
  27132. bottom: 4 / 315
  27133. }
  27134. },
  27135. back: {
  27136. height: math.unit(6 + 4 / 12, "feet"),
  27137. weight: math.unit(175, "lb"),
  27138. name: "Back",
  27139. image: {
  27140. source: "./media/characters/luka-bryzant/back.svg",
  27141. extra: 311 / 289,
  27142. bottom: 3.8 / 313.7
  27143. }
  27144. },
  27145. },
  27146. [
  27147. {
  27148. name: "Micro",
  27149. height: math.unit(10, "inches")
  27150. },
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(6 + 4 / 12, "feet"),
  27154. default: true
  27155. },
  27156. {
  27157. name: "Large",
  27158. height: math.unit(12, "feet")
  27159. },
  27160. ]
  27161. ))
  27162. characterMakers.push(() => makeCharacter(
  27163. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27164. {
  27165. front: {
  27166. height: math.unit(5 + 7 / 12, "feet"),
  27167. weight: math.unit(185, "lb"),
  27168. name: "Front",
  27169. image: {
  27170. source: "./media/characters/aman-aquila/front.svg",
  27171. extra: 1013 / 976,
  27172. bottom: 45.6 / 1057
  27173. }
  27174. },
  27175. side: {
  27176. height: math.unit(5 + 7 / 12, "feet"),
  27177. weight: math.unit(185, "lb"),
  27178. name: "Side",
  27179. image: {
  27180. source: "./media/characters/aman-aquila/side.svg",
  27181. extra: 1054 / 1011,
  27182. bottom: 15 / 1070
  27183. }
  27184. },
  27185. back: {
  27186. height: math.unit(5 + 7 / 12, "feet"),
  27187. weight: math.unit(185, "lb"),
  27188. name: "Back",
  27189. image: {
  27190. source: "./media/characters/aman-aquila/back.svg",
  27191. extra: 1026 / 970,
  27192. bottom: 12 / 1039
  27193. }
  27194. },
  27195. head: {
  27196. height: math.unit(1.211, "feet"),
  27197. name: "Head",
  27198. image: {
  27199. source: "./media/characters/aman-aquila/head.svg",
  27200. }
  27201. },
  27202. },
  27203. [
  27204. {
  27205. name: "Minimicro",
  27206. height: math.unit(0.057, "inches")
  27207. },
  27208. {
  27209. name: "Micro",
  27210. height: math.unit(7, "inches")
  27211. },
  27212. {
  27213. name: "Mini",
  27214. height: math.unit(3 + 7 / 12, "feet")
  27215. },
  27216. {
  27217. name: "Normal",
  27218. height: math.unit(5 + 7 / 12, "feet"),
  27219. default: true
  27220. },
  27221. {
  27222. name: "Macro",
  27223. height: math.unit(157 + 7 / 12, "feet")
  27224. },
  27225. {
  27226. name: "Megamacro",
  27227. height: math.unit(1557 + 7 / 12, "feet")
  27228. },
  27229. {
  27230. name: "Gigamacro",
  27231. height: math.unit(15557 + 7 / 12, "feet")
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27237. {
  27238. front: {
  27239. height: math.unit(3 + 2 / 12, "inches"),
  27240. weight: math.unit(0.3, "ounces"),
  27241. name: "Front",
  27242. image: {
  27243. source: "./media/characters/hiphae/front.svg",
  27244. extra: 1931 / 1683,
  27245. bottom: 24 / 1955
  27246. }
  27247. },
  27248. },
  27249. [
  27250. {
  27251. name: "Normal",
  27252. height: math.unit(3 + 1 / 2, "inches"),
  27253. default: true
  27254. },
  27255. ]
  27256. ))
  27257. characterMakers.push(() => makeCharacter(
  27258. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27259. {
  27260. front: {
  27261. height: math.unit(5 + 10 / 12, "feet"),
  27262. weight: math.unit(165, "lb"),
  27263. name: "Front",
  27264. image: {
  27265. source: "./media/characters/nicky/front.svg",
  27266. extra: 3144 / 2886,
  27267. bottom: 45.6 / 3192
  27268. }
  27269. },
  27270. back: {
  27271. height: math.unit(5 + 10 / 12, "feet"),
  27272. weight: math.unit(165, "lb"),
  27273. name: "Back",
  27274. image: {
  27275. source: "./media/characters/nicky/back.svg",
  27276. extra: 3055 / 2804,
  27277. bottom: 28.4 / 3087
  27278. }
  27279. },
  27280. frontclothed: {
  27281. height: math.unit(5 + 10 / 12, "feet"),
  27282. weight: math.unit(165, "lb"),
  27283. name: "Front-clothed",
  27284. image: {
  27285. source: "./media/characters/nicky/front-clothed.svg",
  27286. extra: 3184.9 / 2926.9,
  27287. bottom: 86.5 / 3239.9
  27288. }
  27289. },
  27290. foot: {
  27291. height: math.unit(1.16, "feet"),
  27292. name: "Foot",
  27293. image: {
  27294. source: "./media/characters/nicky/foot.svg"
  27295. }
  27296. },
  27297. feet: {
  27298. height: math.unit(1.34, "feet"),
  27299. name: "Feet",
  27300. image: {
  27301. source: "./media/characters/nicky/feet.svg"
  27302. }
  27303. },
  27304. maw: {
  27305. height: math.unit(0.9, "feet"),
  27306. name: "Maw",
  27307. image: {
  27308. source: "./media/characters/nicky/maw.svg"
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Normal",
  27315. height: math.unit(5 + 10 / 12, "feet"),
  27316. default: true
  27317. },
  27318. {
  27319. name: "Macro",
  27320. height: math.unit(60, "feet")
  27321. },
  27322. {
  27323. name: "Megamacro",
  27324. height: math.unit(1, "mile")
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27330. {
  27331. side: {
  27332. height: math.unit(10, "feet"),
  27333. weight: math.unit(600, "lb"),
  27334. name: "Side",
  27335. image: {
  27336. source: "./media/characters/blair/side.svg",
  27337. bottom: 16.6 / 475,
  27338. extra: 458 / 431
  27339. }
  27340. },
  27341. },
  27342. [
  27343. {
  27344. name: "Micro",
  27345. height: math.unit(8, "inches")
  27346. },
  27347. {
  27348. name: "Normal",
  27349. height: math.unit(10, "feet"),
  27350. default: true
  27351. },
  27352. {
  27353. name: "Macro",
  27354. height: math.unit(180, "feet")
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27360. {
  27361. front: {
  27362. height: math.unit(5 + 4 / 12, "feet"),
  27363. weight: math.unit(125, "lb"),
  27364. name: "Front",
  27365. image: {
  27366. source: "./media/characters/fisher/front.svg",
  27367. extra: 444 / 390,
  27368. bottom: 2 / 444.8
  27369. }
  27370. },
  27371. },
  27372. [
  27373. {
  27374. name: "Micro",
  27375. height: math.unit(4, "inches")
  27376. },
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(5 + 4 / 12, "feet"),
  27380. default: true
  27381. },
  27382. {
  27383. name: "Macro",
  27384. height: math.unit(100, "feet")
  27385. },
  27386. ]
  27387. ))
  27388. characterMakers.push(() => makeCharacter(
  27389. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27390. {
  27391. front: {
  27392. height: math.unit(6.71, "feet"),
  27393. weight: math.unit(200, "lb"),
  27394. preyCapacity: math.unit(1000000, "people"),
  27395. name: "Front",
  27396. image: {
  27397. source: "./media/characters/gliss/front.svg",
  27398. extra: 2347 / 2231,
  27399. bottom: 113 / 2462
  27400. }
  27401. },
  27402. hammerspaceSize: {
  27403. height: math.unit(6.71 * 717, "feet"),
  27404. weight: math.unit(200, "lb"),
  27405. preyCapacity: math.unit(1000000, "people"),
  27406. name: "Hammerspace Size",
  27407. image: {
  27408. source: "./media/characters/gliss/front.svg",
  27409. extra: 2347 / 2231,
  27410. bottom: 113 / 2462
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Normal",
  27417. height: math.unit(6.71, "feet"),
  27418. default: true
  27419. },
  27420. ]
  27421. ))
  27422. characterMakers.push(() => makeCharacter(
  27423. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27424. {
  27425. side: {
  27426. height: math.unit(1.44, "m"),
  27427. weight: math.unit(80, "kg"),
  27428. name: "Side",
  27429. image: {
  27430. source: "./media/characters/dune-anderson/side.svg",
  27431. bottom: 49 / 1426
  27432. }
  27433. },
  27434. },
  27435. [
  27436. {
  27437. name: "Wolf-sized",
  27438. height: math.unit(1.44, "meters")
  27439. },
  27440. {
  27441. name: "Normal",
  27442. height: math.unit(5.05, "meters"),
  27443. default: true
  27444. },
  27445. {
  27446. name: "Big",
  27447. height: math.unit(14.4, "meters")
  27448. },
  27449. {
  27450. name: "Huge",
  27451. height: math.unit(144, "meters")
  27452. },
  27453. ]
  27454. ))
  27455. characterMakers.push(() => makeCharacter(
  27456. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27457. {
  27458. front: {
  27459. height: math.unit(7, "feet"),
  27460. weight: math.unit(425, "lb"),
  27461. name: "Front",
  27462. image: {
  27463. source: "./media/characters/hind/front.svg",
  27464. extra: 2091 / 1860,
  27465. bottom: 129 / 2220
  27466. }
  27467. },
  27468. back: {
  27469. height: math.unit(7, "feet"),
  27470. weight: math.unit(425, "lb"),
  27471. name: "Back",
  27472. image: {
  27473. source: "./media/characters/hind/back.svg",
  27474. extra: 2091 / 1860,
  27475. bottom: 24.6 / 2309
  27476. }
  27477. },
  27478. tail: {
  27479. height: math.unit(2.8, "feet"),
  27480. name: "Tail",
  27481. image: {
  27482. source: "./media/characters/hind/tail.svg"
  27483. }
  27484. },
  27485. head: {
  27486. height: math.unit(2.55, "feet"),
  27487. name: "Head",
  27488. image: {
  27489. source: "./media/characters/hind/head.svg"
  27490. }
  27491. },
  27492. },
  27493. [
  27494. {
  27495. name: "XS",
  27496. height: math.unit(0.7, "feet")
  27497. },
  27498. {
  27499. name: "Normal",
  27500. height: math.unit(7, "feet"),
  27501. default: true
  27502. },
  27503. {
  27504. name: "XL",
  27505. height: math.unit(70, "feet")
  27506. },
  27507. ]
  27508. ))
  27509. characterMakers.push(() => makeCharacter(
  27510. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27511. {
  27512. front: {
  27513. height: math.unit(2.1, "meters"),
  27514. weight: math.unit(150, "lb"),
  27515. name: "Front",
  27516. image: {
  27517. source: "./media/characters/tharquench-sizestealer/front.svg",
  27518. extra: 1605/1470,
  27519. bottom: 36/1641
  27520. }
  27521. },
  27522. frontAlt: {
  27523. height: math.unit(2.1, "meters"),
  27524. weight: math.unit(150, "lb"),
  27525. name: "Front (Alt)",
  27526. image: {
  27527. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27528. extra: 2318 / 2063,
  27529. bottom: 93.4 / 2410
  27530. }
  27531. },
  27532. },
  27533. [
  27534. {
  27535. name: "Nano",
  27536. height: math.unit(1, "mm")
  27537. },
  27538. {
  27539. name: "Micro",
  27540. height: math.unit(1, "cm")
  27541. },
  27542. {
  27543. name: "Normal",
  27544. height: math.unit(2.1, "meters"),
  27545. default: true
  27546. },
  27547. ]
  27548. ))
  27549. characterMakers.push(() => makeCharacter(
  27550. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27551. {
  27552. front: {
  27553. height: math.unit(7 + 5 / 12, "feet"),
  27554. weight: math.unit(357, "lb"),
  27555. name: "Front",
  27556. image: {
  27557. source: "./media/characters/solex-draconov/front.svg",
  27558. extra: 1993 / 1865,
  27559. bottom: 117 / 2111
  27560. }
  27561. },
  27562. },
  27563. [
  27564. {
  27565. name: "Natural Height",
  27566. height: math.unit(7 + 5 / 12, "feet"),
  27567. default: true
  27568. },
  27569. {
  27570. name: "Macro",
  27571. height: math.unit(350, "feet")
  27572. },
  27573. {
  27574. name: "Macro+",
  27575. height: math.unit(1000, "feet")
  27576. },
  27577. {
  27578. name: "Megamacro",
  27579. height: math.unit(20, "km")
  27580. },
  27581. {
  27582. name: "Megamacro+",
  27583. height: math.unit(1000, "km")
  27584. },
  27585. {
  27586. name: "Gigamacro",
  27587. height: math.unit(2.5, "Gm")
  27588. },
  27589. {
  27590. name: "Teramacro",
  27591. height: math.unit(15, "Tm")
  27592. },
  27593. {
  27594. name: "Galactic",
  27595. height: math.unit(30, "Zm")
  27596. },
  27597. {
  27598. name: "Universal",
  27599. height: math.unit(21000, "Ym")
  27600. },
  27601. {
  27602. name: "Omniversal",
  27603. height: math.unit(9.861e50, "Ym")
  27604. },
  27605. {
  27606. name: "Existential",
  27607. height: math.unit(1e300, "meters")
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27613. {
  27614. side: {
  27615. height: math.unit(25, "feet"),
  27616. weight: math.unit(90000, "lb"),
  27617. name: "Side",
  27618. image: {
  27619. source: "./media/characters/mandarax/side.svg",
  27620. extra: 614 / 332,
  27621. bottom: 55 / 630
  27622. }
  27623. },
  27624. lounging: {
  27625. height: math.unit(15.4, "feet"),
  27626. weight: math.unit(90000, "lb"),
  27627. name: "Lounging",
  27628. image: {
  27629. source: "./media/characters/mandarax/lounging.svg",
  27630. extra: 817/609,
  27631. bottom: 685/1502
  27632. }
  27633. },
  27634. head: {
  27635. height: math.unit(11.4, "feet"),
  27636. name: "Head",
  27637. image: {
  27638. source: "./media/characters/mandarax/head.svg"
  27639. }
  27640. },
  27641. belly: {
  27642. height: math.unit(33, "feet"),
  27643. name: "Belly",
  27644. preyCapacity: math.unit(500, "people"),
  27645. image: {
  27646. source: "./media/characters/mandarax/belly.svg"
  27647. }
  27648. },
  27649. dick: {
  27650. height: math.unit(8.46, "feet"),
  27651. name: "Dick",
  27652. image: {
  27653. source: "./media/characters/mandarax/dick.svg"
  27654. }
  27655. },
  27656. top: {
  27657. height: math.unit(28, "meters"),
  27658. name: "Top",
  27659. image: {
  27660. source: "./media/characters/mandarax/top.svg"
  27661. }
  27662. },
  27663. },
  27664. [
  27665. {
  27666. name: "Normal",
  27667. height: math.unit(25, "feet"),
  27668. default: true
  27669. },
  27670. ]
  27671. ))
  27672. characterMakers.push(() => makeCharacter(
  27673. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27674. {
  27675. front: {
  27676. height: math.unit(5, "feet"),
  27677. weight: math.unit(90, "lb"),
  27678. name: "Front",
  27679. image: {
  27680. source: "./media/characters/pixil/front.svg",
  27681. extra: 2000 / 1618,
  27682. bottom: 12.3 / 2011
  27683. }
  27684. },
  27685. },
  27686. [
  27687. {
  27688. name: "Normal",
  27689. height: math.unit(5, "feet"),
  27690. default: true
  27691. },
  27692. {
  27693. name: "Megamacro",
  27694. height: math.unit(10, "miles"),
  27695. },
  27696. ]
  27697. ))
  27698. characterMakers.push(() => makeCharacter(
  27699. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27700. {
  27701. front: {
  27702. height: math.unit(7 + 2 / 12, "feet"),
  27703. weight: math.unit(200, "lb"),
  27704. name: "Front",
  27705. image: {
  27706. source: "./media/characters/angel/front.svg",
  27707. extra: 1946/1840,
  27708. bottom: 30/1976
  27709. }
  27710. },
  27711. },
  27712. [
  27713. {
  27714. name: "Normal",
  27715. height: math.unit(7 + 2 / 12, "feet"),
  27716. default: true
  27717. },
  27718. {
  27719. name: "Macro",
  27720. height: math.unit(1000, "feet")
  27721. },
  27722. {
  27723. name: "Megamacro",
  27724. height: math.unit(2, "miles")
  27725. },
  27726. {
  27727. name: "Gigamacro",
  27728. height: math.unit(20, "earths")
  27729. },
  27730. ]
  27731. ))
  27732. characterMakers.push(() => makeCharacter(
  27733. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27734. {
  27735. front: {
  27736. height: math.unit(5, "feet"),
  27737. weight: math.unit(180, "lb"),
  27738. name: "Front",
  27739. image: {
  27740. source: "./media/characters/mekana/front.svg",
  27741. extra: 1671 / 1605,
  27742. bottom: 3.5 / 1691
  27743. }
  27744. },
  27745. side: {
  27746. height: math.unit(5, "feet"),
  27747. weight: math.unit(180, "lb"),
  27748. name: "Side",
  27749. image: {
  27750. source: "./media/characters/mekana/side.svg",
  27751. extra: 1671 / 1605,
  27752. bottom: 3.5 / 1691
  27753. }
  27754. },
  27755. back: {
  27756. height: math.unit(5, "feet"),
  27757. weight: math.unit(180, "lb"),
  27758. name: "Back",
  27759. image: {
  27760. source: "./media/characters/mekana/back.svg",
  27761. extra: 1671 / 1605,
  27762. bottom: 3.5 / 1691
  27763. }
  27764. },
  27765. },
  27766. [
  27767. {
  27768. name: "Normal",
  27769. height: math.unit(5, "feet"),
  27770. default: true
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27776. {
  27777. front: {
  27778. height: math.unit(4 + 6 / 12, "feet"),
  27779. weight: math.unit(80, "lb"),
  27780. name: "Front",
  27781. image: {
  27782. source: "./media/characters/pixie/front.svg",
  27783. extra: 1924 / 1825,
  27784. bottom: 22.4 / 1946
  27785. }
  27786. },
  27787. },
  27788. [
  27789. {
  27790. name: "Normal",
  27791. height: math.unit(4 + 6 / 12, "feet"),
  27792. default: true
  27793. },
  27794. {
  27795. name: "Macro",
  27796. height: math.unit(40, "feet")
  27797. },
  27798. ]
  27799. ))
  27800. characterMakers.push(() => makeCharacter(
  27801. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27802. {
  27803. front: {
  27804. height: math.unit(2.1, "meters"),
  27805. weight: math.unit(200, "lb"),
  27806. name: "Front",
  27807. image: {
  27808. source: "./media/characters/the-lascivious/front.svg",
  27809. extra: 1 / 0.893,
  27810. bottom: 3.5 / 573.7
  27811. }
  27812. },
  27813. },
  27814. [
  27815. {
  27816. name: "Human Scale",
  27817. height: math.unit(2.1, "meters")
  27818. },
  27819. {
  27820. name: "Wolxi Scale",
  27821. height: math.unit(46.2, "m"),
  27822. default: true
  27823. },
  27824. {
  27825. name: "Boinker of Buildings",
  27826. height: math.unit(10, "km")
  27827. },
  27828. {
  27829. name: "Shagger of Skyscrapers",
  27830. height: math.unit(40, "km")
  27831. },
  27832. {
  27833. name: "Banger of Boroughs",
  27834. height: math.unit(4000, "km")
  27835. },
  27836. {
  27837. name: "Screwer of States",
  27838. height: math.unit(100000, "km")
  27839. },
  27840. {
  27841. name: "Pounder of Planets",
  27842. height: math.unit(2000000, "km")
  27843. },
  27844. ]
  27845. ))
  27846. characterMakers.push(() => makeCharacter(
  27847. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27848. {
  27849. front: {
  27850. height: math.unit(6, "feet"),
  27851. weight: math.unit(150, "lb"),
  27852. name: "Front",
  27853. image: {
  27854. source: "./media/characters/aj/front.svg",
  27855. extra: 2039 / 1562,
  27856. bottom: 40 / 2079
  27857. }
  27858. },
  27859. },
  27860. [
  27861. {
  27862. name: "Normal",
  27863. height: math.unit(11 + 6 / 12, "feet"),
  27864. default: true
  27865. },
  27866. {
  27867. name: "Megamacro",
  27868. height: math.unit(60, "megameters")
  27869. },
  27870. ]
  27871. ))
  27872. characterMakers.push(() => makeCharacter(
  27873. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27874. {
  27875. side: {
  27876. height: math.unit(31 + 8 / 12, "feet"),
  27877. weight: math.unit(75000, "kg"),
  27878. name: "Side",
  27879. image: {
  27880. source: "./media/characters/koros/side.svg",
  27881. extra: 1442 / 1297,
  27882. bottom: 122.7 / 1562
  27883. }
  27884. },
  27885. dicksKingsCrown: {
  27886. height: math.unit(6, "feet"),
  27887. name: "Dicks (King's Crown)",
  27888. image: {
  27889. source: "./media/characters/koros/dicks-kings-crown.svg"
  27890. }
  27891. },
  27892. dicksTailSet: {
  27893. height: math.unit(3, "feet"),
  27894. name: "Dicks (Tail Set)",
  27895. image: {
  27896. source: "./media/characters/koros/dicks-tail-set.svg"
  27897. }
  27898. },
  27899. dickCumming: {
  27900. height: math.unit(7.98, "feet"),
  27901. name: "Dick (Cumming)",
  27902. image: {
  27903. source: "./media/characters/koros/dick-cumming.svg"
  27904. }
  27905. },
  27906. dicksBack: {
  27907. height: math.unit(5.9, "feet"),
  27908. name: "Dicks (Back)",
  27909. image: {
  27910. source: "./media/characters/koros/dicks-back.svg"
  27911. }
  27912. },
  27913. dicksFront: {
  27914. height: math.unit(3.72, "feet"),
  27915. name: "Dicks (Front)",
  27916. image: {
  27917. source: "./media/characters/koros/dicks-front.svg"
  27918. }
  27919. },
  27920. dicksPeeking: {
  27921. height: math.unit(3.0, "feet"),
  27922. name: "Dicks (Peeking)",
  27923. image: {
  27924. source: "./media/characters/koros/dicks-peeking.svg"
  27925. }
  27926. },
  27927. eye: {
  27928. height: math.unit(1.7, "feet"),
  27929. name: "Eye",
  27930. image: {
  27931. source: "./media/characters/koros/eye.svg"
  27932. }
  27933. },
  27934. headFront: {
  27935. height: math.unit(11.69, "feet"),
  27936. name: "Head (Front)",
  27937. image: {
  27938. source: "./media/characters/koros/head-front.svg"
  27939. }
  27940. },
  27941. headSide: {
  27942. height: math.unit(14, "feet"),
  27943. name: "Head (Side)",
  27944. image: {
  27945. source: "./media/characters/koros/head-side.svg"
  27946. }
  27947. },
  27948. leg: {
  27949. height: math.unit(17, "feet"),
  27950. name: "Leg",
  27951. image: {
  27952. source: "./media/characters/koros/leg.svg"
  27953. }
  27954. },
  27955. mawSide: {
  27956. height: math.unit(12.8, "feet"),
  27957. name: "Maw (Side)",
  27958. image: {
  27959. source: "./media/characters/koros/maw-side.svg"
  27960. }
  27961. },
  27962. mawSpitting: {
  27963. height: math.unit(17, "feet"),
  27964. name: "Maw (Spitting)",
  27965. image: {
  27966. source: "./media/characters/koros/maw-spitting.svg"
  27967. }
  27968. },
  27969. slit: {
  27970. height: math.unit(2.8, "feet"),
  27971. name: "Slit",
  27972. image: {
  27973. source: "./media/characters/koros/slit.svg"
  27974. }
  27975. },
  27976. stomach: {
  27977. height: math.unit(6.8, "feet"),
  27978. preyCapacity: math.unit(20, "people"),
  27979. name: "Stomach",
  27980. image: {
  27981. source: "./media/characters/koros/stomach.svg"
  27982. }
  27983. },
  27984. wingspanBottom: {
  27985. height: math.unit(114, "feet"),
  27986. name: "Wingspan (Bottom)",
  27987. image: {
  27988. source: "./media/characters/koros/wingspan-bottom.svg"
  27989. }
  27990. },
  27991. wingspanTop: {
  27992. height: math.unit(104, "feet"),
  27993. name: "Wingspan (Top)",
  27994. image: {
  27995. source: "./media/characters/koros/wingspan-top.svg"
  27996. }
  27997. },
  27998. },
  27999. [
  28000. {
  28001. name: "Normal",
  28002. height: math.unit(31 + 8 / 12, "feet"),
  28003. default: true
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28009. {
  28010. front: {
  28011. height: math.unit(18 + 5 / 12, "feet"),
  28012. weight: math.unit(3750, "kg"),
  28013. name: "Front",
  28014. image: {
  28015. source: "./media/characters/vexx/front.svg",
  28016. extra: 426 / 396,
  28017. bottom: 31.5 / 458
  28018. }
  28019. },
  28020. maw: {
  28021. height: math.unit(6, "feet"),
  28022. name: "Maw",
  28023. image: {
  28024. source: "./media/characters/vexx/maw.svg"
  28025. }
  28026. },
  28027. },
  28028. [
  28029. {
  28030. name: "Normal",
  28031. height: math.unit(18 + 5 / 12, "feet"),
  28032. default: true
  28033. },
  28034. ]
  28035. ))
  28036. characterMakers.push(() => makeCharacter(
  28037. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28038. {
  28039. front: {
  28040. height: math.unit(17 + 6 / 12, "feet"),
  28041. weight: math.unit(150, "lb"),
  28042. name: "Front",
  28043. image: {
  28044. source: "./media/characters/baadra/front.svg",
  28045. extra: 1694/1553,
  28046. bottom: 179/1873
  28047. }
  28048. },
  28049. frontAlt: {
  28050. height: math.unit(17 + 6 / 12, "feet"),
  28051. weight: math.unit(150, "lb"),
  28052. name: "Front (Alt)",
  28053. image: {
  28054. source: "./media/characters/baadra/front-alt.svg",
  28055. extra: 3137 / 2890,
  28056. bottom: 168.4 / 3305
  28057. }
  28058. },
  28059. back: {
  28060. height: math.unit(17 + 6 / 12, "feet"),
  28061. weight: math.unit(150, "lb"),
  28062. name: "Back",
  28063. image: {
  28064. source: "./media/characters/baadra/back.svg",
  28065. extra: 3142 / 2890,
  28066. bottom: 220 / 3371
  28067. }
  28068. },
  28069. head: {
  28070. height: math.unit(5.45, "feet"),
  28071. name: "Head",
  28072. image: {
  28073. source: "./media/characters/baadra/head.svg"
  28074. }
  28075. },
  28076. headAngry: {
  28077. height: math.unit(4.95, "feet"),
  28078. name: "Head (Angry)",
  28079. image: {
  28080. source: "./media/characters/baadra/head-angry.svg"
  28081. }
  28082. },
  28083. headOpen: {
  28084. height: math.unit(6, "feet"),
  28085. name: "Head (Open)",
  28086. image: {
  28087. source: "./media/characters/baadra/head-open.svg"
  28088. }
  28089. },
  28090. },
  28091. [
  28092. {
  28093. name: "Normal",
  28094. height: math.unit(17 + 6 / 12, "feet"),
  28095. default: true
  28096. },
  28097. ]
  28098. ))
  28099. characterMakers.push(() => makeCharacter(
  28100. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28101. {
  28102. front: {
  28103. height: math.unit(7 + 3 / 12, "feet"),
  28104. weight: math.unit(180, "lb"),
  28105. name: "Front",
  28106. image: {
  28107. source: "./media/characters/juri/front.svg",
  28108. extra: 1401 / 1237,
  28109. bottom: 18.5 / 1418
  28110. }
  28111. },
  28112. side: {
  28113. height: math.unit(7 + 3 / 12, "feet"),
  28114. weight: math.unit(180, "lb"),
  28115. name: "Side",
  28116. image: {
  28117. source: "./media/characters/juri/side.svg",
  28118. extra: 1424 / 1242,
  28119. bottom: 18.5 / 1447
  28120. }
  28121. },
  28122. sitting: {
  28123. height: math.unit(6, "feet"),
  28124. weight: math.unit(180, "lb"),
  28125. name: "Sitting",
  28126. image: {
  28127. source: "./media/characters/juri/sitting.svg",
  28128. extra: 1270 / 1143,
  28129. bottom: 100 / 1343
  28130. }
  28131. },
  28132. back: {
  28133. height: math.unit(7 + 3 / 12, "feet"),
  28134. weight: math.unit(180, "lb"),
  28135. name: "Back",
  28136. image: {
  28137. source: "./media/characters/juri/back.svg",
  28138. extra: 1377 / 1240,
  28139. bottom: 23.7 / 1405
  28140. }
  28141. },
  28142. maw: {
  28143. height: math.unit(2.8, "feet"),
  28144. name: "Maw",
  28145. image: {
  28146. source: "./media/characters/juri/maw.svg"
  28147. }
  28148. },
  28149. stomach: {
  28150. height: math.unit(0.89, "feet"),
  28151. preyCapacity: math.unit(4, "liters"),
  28152. name: "Stomach",
  28153. image: {
  28154. source: "./media/characters/juri/stomach.svg"
  28155. }
  28156. },
  28157. },
  28158. [
  28159. {
  28160. name: "Normal",
  28161. height: math.unit(7 + 3 / 12, "feet"),
  28162. default: true
  28163. },
  28164. ]
  28165. ))
  28166. characterMakers.push(() => makeCharacter(
  28167. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28168. {
  28169. fox: {
  28170. height: math.unit(5 + 6 / 12, "feet"),
  28171. weight: math.unit(140, "lb"),
  28172. name: "Fox",
  28173. image: {
  28174. source: "./media/characters/maxene-sita/fox.svg",
  28175. extra: 146 / 138,
  28176. bottom: 2.1 / 148.19
  28177. }
  28178. },
  28179. foxLaying: {
  28180. height: math.unit(1.70, "feet"),
  28181. weight: math.unit(140, "lb"),
  28182. name: "Fox (Laying)",
  28183. image: {
  28184. source: "./media/characters/maxene-sita/fox-laying.svg",
  28185. extra: 910 / 572,
  28186. bottom: 71 / 981
  28187. }
  28188. },
  28189. kitsune: {
  28190. height: math.unit(10, "feet"),
  28191. weight: math.unit(800, "lb"),
  28192. name: "Kitsune",
  28193. image: {
  28194. source: "./media/characters/maxene-sita/kitsune.svg",
  28195. extra: 185 / 176,
  28196. bottom: 4.7 / 189.9
  28197. }
  28198. },
  28199. hellhound: {
  28200. height: math.unit(10, "feet"),
  28201. weight: math.unit(700, "lb"),
  28202. name: "Hellhound",
  28203. image: {
  28204. source: "./media/characters/maxene-sita/hellhound.svg",
  28205. extra: 1600 / 1545,
  28206. bottom: 81 / 1681
  28207. }
  28208. },
  28209. },
  28210. [
  28211. {
  28212. name: "Normal",
  28213. height: math.unit(5 + 6 / 12, "feet"),
  28214. default: true
  28215. },
  28216. ]
  28217. ))
  28218. characterMakers.push(() => makeCharacter(
  28219. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28220. {
  28221. front: {
  28222. height: math.unit(3 + 4 / 12, "feet"),
  28223. weight: math.unit(70, "lb"),
  28224. name: "Front",
  28225. image: {
  28226. source: "./media/characters/maia/front.svg",
  28227. extra: 227 / 219.5,
  28228. bottom: 40 / 267
  28229. }
  28230. },
  28231. back: {
  28232. height: math.unit(3 + 4 / 12, "feet"),
  28233. weight: math.unit(70, "lb"),
  28234. name: "Back",
  28235. image: {
  28236. source: "./media/characters/maia/back.svg",
  28237. extra: 237 / 225
  28238. }
  28239. },
  28240. },
  28241. [
  28242. {
  28243. name: "Normal",
  28244. height: math.unit(3 + 4 / 12, "feet"),
  28245. default: true
  28246. },
  28247. ]
  28248. ))
  28249. characterMakers.push(() => makeCharacter(
  28250. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28251. {
  28252. front: {
  28253. height: math.unit(5 + 10 / 12, "feet"),
  28254. weight: math.unit(197, "lb"),
  28255. name: "Front",
  28256. image: {
  28257. source: "./media/characters/jabaro/front.svg",
  28258. extra: 225 / 216,
  28259. bottom: 5.06 / 230
  28260. }
  28261. },
  28262. back: {
  28263. height: math.unit(5 + 10 / 12, "feet"),
  28264. weight: math.unit(197, "lb"),
  28265. name: "Back",
  28266. image: {
  28267. source: "./media/characters/jabaro/back.svg",
  28268. extra: 225 / 219,
  28269. bottom: 1.9 / 227
  28270. }
  28271. },
  28272. },
  28273. [
  28274. {
  28275. name: "Normal",
  28276. height: math.unit(5 + 10 / 12, "feet"),
  28277. default: true
  28278. },
  28279. ]
  28280. ))
  28281. characterMakers.push(() => makeCharacter(
  28282. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28283. {
  28284. front: {
  28285. height: math.unit(5 + 8 / 12, "feet"),
  28286. weight: math.unit(139, "lb"),
  28287. name: "Front",
  28288. image: {
  28289. source: "./media/characters/risa/front.svg",
  28290. extra: 270 / 260,
  28291. bottom: 11.2 / 282
  28292. }
  28293. },
  28294. back: {
  28295. height: math.unit(5 + 8 / 12, "feet"),
  28296. weight: math.unit(139, "lb"),
  28297. name: "Back",
  28298. image: {
  28299. source: "./media/characters/risa/back.svg",
  28300. extra: 264 / 255,
  28301. bottom: 4 / 268
  28302. }
  28303. },
  28304. },
  28305. [
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(5 + 8 / 12, "feet"),
  28309. default: true
  28310. },
  28311. ]
  28312. ))
  28313. characterMakers.push(() => makeCharacter(
  28314. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28315. {
  28316. front: {
  28317. height: math.unit(2 + 11 / 12, "feet"),
  28318. weight: math.unit(30, "lb"),
  28319. name: "Front",
  28320. image: {
  28321. source: "./media/characters/weatley/front.svg",
  28322. bottom: 10.7 / 414,
  28323. extra: 403.5 / 362
  28324. }
  28325. },
  28326. back: {
  28327. height: math.unit(2 + 11 / 12, "feet"),
  28328. weight: math.unit(30, "lb"),
  28329. name: "Back",
  28330. image: {
  28331. source: "./media/characters/weatley/back.svg",
  28332. bottom: 10.7 / 414,
  28333. extra: 403.5 / 362
  28334. }
  28335. },
  28336. },
  28337. [
  28338. {
  28339. name: "Normal",
  28340. height: math.unit(2 + 11 / 12, "feet"),
  28341. default: true
  28342. },
  28343. ]
  28344. ))
  28345. characterMakers.push(() => makeCharacter(
  28346. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28347. {
  28348. front: {
  28349. height: math.unit(5 + 2 / 12, "feet"),
  28350. weight: math.unit(50, "kg"),
  28351. name: "Front",
  28352. image: {
  28353. source: "./media/characters/mercury-crescent/front.svg",
  28354. extra: 1088 / 1033,
  28355. bottom: 18.9 / 1109
  28356. }
  28357. },
  28358. },
  28359. [
  28360. {
  28361. name: "Normal",
  28362. height: math.unit(5 + 2 / 12, "feet"),
  28363. default: true
  28364. },
  28365. ]
  28366. ))
  28367. characterMakers.push(() => makeCharacter(
  28368. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28369. {
  28370. front: {
  28371. height: math.unit(2, "feet"),
  28372. weight: math.unit(15, "kg"),
  28373. name: "Front",
  28374. image: {
  28375. source: "./media/characters/diamond-jones/front.svg",
  28376. extra: 727/723,
  28377. bottom: 46/773
  28378. }
  28379. },
  28380. },
  28381. [
  28382. {
  28383. name: "Normal",
  28384. height: math.unit(2, "feet"),
  28385. default: true
  28386. },
  28387. ]
  28388. ))
  28389. characterMakers.push(() => makeCharacter(
  28390. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28391. {
  28392. front: {
  28393. height: math.unit(3, "feet"),
  28394. weight: math.unit(30, "kg"),
  28395. name: "Front",
  28396. image: {
  28397. source: "./media/characters/sweet-bit/front.svg",
  28398. extra: 675 / 567,
  28399. bottom: 27.7 / 703
  28400. }
  28401. },
  28402. },
  28403. [
  28404. {
  28405. name: "Normal",
  28406. height: math.unit(3, "feet"),
  28407. default: true
  28408. },
  28409. ]
  28410. ))
  28411. characterMakers.push(() => makeCharacter(
  28412. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28413. {
  28414. side: {
  28415. height: math.unit(9.178, "feet"),
  28416. weight: math.unit(500, "lb"),
  28417. name: "Side",
  28418. image: {
  28419. source: "./media/characters/umbrazen/side.svg",
  28420. extra: 1730 / 1473,
  28421. bottom: 34.6 / 1765
  28422. }
  28423. },
  28424. },
  28425. [
  28426. {
  28427. name: "Normal",
  28428. height: math.unit(9.178, "feet"),
  28429. default: true
  28430. },
  28431. ]
  28432. ))
  28433. characterMakers.push(() => makeCharacter(
  28434. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28435. {
  28436. front: {
  28437. height: math.unit(10, "feet"),
  28438. weight: math.unit(750, "lb"),
  28439. name: "Front",
  28440. image: {
  28441. source: "./media/characters/arlist/front.svg",
  28442. extra: 961 / 778,
  28443. bottom: 6.2 / 986
  28444. }
  28445. },
  28446. },
  28447. [
  28448. {
  28449. name: "Normal",
  28450. height: math.unit(10, "feet"),
  28451. default: true
  28452. },
  28453. ]
  28454. ))
  28455. characterMakers.push(() => makeCharacter(
  28456. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28457. {
  28458. front: {
  28459. height: math.unit(5 + 1 / 12, "feet"),
  28460. weight: math.unit(110, "lb"),
  28461. name: "Front",
  28462. image: {
  28463. source: "./media/characters/aradel/front.svg",
  28464. extra: 324 / 303,
  28465. bottom: 3.6 / 329.4
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Normal",
  28472. height: math.unit(5 + 1 / 12, "feet"),
  28473. default: true
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28479. {
  28480. dressed: {
  28481. height: math.unit(3 + 8 / 12, "feet"),
  28482. weight: math.unit(50, "lb"),
  28483. name: "Dressed",
  28484. image: {
  28485. source: "./media/characters/serryn/dressed.svg",
  28486. extra: 1792 / 1656,
  28487. bottom: 43.5 / 1840
  28488. }
  28489. },
  28490. nude: {
  28491. height: math.unit(3 + 8 / 12, "feet"),
  28492. weight: math.unit(50, "lb"),
  28493. name: "Nude",
  28494. image: {
  28495. source: "./media/characters/serryn/nude.svg",
  28496. extra: 1792 / 1656,
  28497. bottom: 43.5 / 1840
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Normal",
  28504. height: math.unit(3 + 8 / 12, "feet"),
  28505. default: true
  28506. },
  28507. ]
  28508. ))
  28509. characterMakers.push(() => makeCharacter(
  28510. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28511. {
  28512. front: {
  28513. height: math.unit(7 + 10 / 12, "feet"),
  28514. weight: math.unit(255, "lb"),
  28515. name: "Front",
  28516. image: {
  28517. source: "./media/characters/xavier-thyme/front.svg",
  28518. extra: 3733 / 3642,
  28519. bottom: 131 / 3869
  28520. }
  28521. },
  28522. frontRaven: {
  28523. height: math.unit(7 + 10 / 12, "feet"),
  28524. weight: math.unit(255, "lb"),
  28525. name: "Front (Raven)",
  28526. image: {
  28527. source: "./media/characters/xavier-thyme/front-raven.svg",
  28528. extra: 4385 / 3642,
  28529. bottom: 131 / 4517
  28530. }
  28531. },
  28532. },
  28533. [
  28534. {
  28535. name: "Normal",
  28536. height: math.unit(7 + 10 / 12, "feet"),
  28537. default: true
  28538. },
  28539. ]
  28540. ))
  28541. characterMakers.push(() => makeCharacter(
  28542. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28543. {
  28544. front: {
  28545. height: math.unit(1.6, "m"),
  28546. weight: math.unit(50, "kg"),
  28547. name: "Front",
  28548. image: {
  28549. source: "./media/characters/kiki/front.svg",
  28550. extra: 4682 / 3610,
  28551. bottom: 115 / 4777
  28552. }
  28553. },
  28554. },
  28555. [
  28556. {
  28557. name: "Normal",
  28558. height: math.unit(1.6, "meters"),
  28559. default: true
  28560. },
  28561. ]
  28562. ))
  28563. characterMakers.push(() => makeCharacter(
  28564. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28565. {
  28566. front: {
  28567. height: math.unit(50, "m"),
  28568. weight: math.unit(500, "tonnes"),
  28569. name: "Front",
  28570. image: {
  28571. source: "./media/characters/ryoko/front.svg",
  28572. extra: 4632 / 3926,
  28573. bottom: 193 / 4823
  28574. }
  28575. },
  28576. },
  28577. [
  28578. {
  28579. name: "Normal",
  28580. height: math.unit(50, "meters"),
  28581. default: true
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28587. {
  28588. front: {
  28589. height: math.unit(30, "m"),
  28590. weight: math.unit(22, "tonnes"),
  28591. name: "Front",
  28592. image: {
  28593. source: "./media/characters/elio/front.svg",
  28594. extra: 4582 / 3720,
  28595. bottom: 236 / 4828
  28596. }
  28597. },
  28598. },
  28599. [
  28600. {
  28601. name: "Normal",
  28602. height: math.unit(30, "meters"),
  28603. default: true
  28604. },
  28605. ]
  28606. ))
  28607. characterMakers.push(() => makeCharacter(
  28608. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28609. {
  28610. front: {
  28611. height: math.unit(6 + 3 / 12, "feet"),
  28612. weight: math.unit(120, "lb"),
  28613. name: "Front",
  28614. image: {
  28615. source: "./media/characters/azura/front.svg",
  28616. extra: 1149 / 1135,
  28617. bottom: 45 / 1194
  28618. }
  28619. },
  28620. frontClothed: {
  28621. height: math.unit(6 + 3 / 12, "feet"),
  28622. weight: math.unit(120, "lb"),
  28623. name: "Front (Clothed)",
  28624. image: {
  28625. source: "./media/characters/azura/front-clothed.svg",
  28626. extra: 1149 / 1135,
  28627. bottom: 45 / 1194
  28628. }
  28629. },
  28630. },
  28631. [
  28632. {
  28633. name: "Normal",
  28634. height: math.unit(6 + 3 / 12, "feet"),
  28635. default: true
  28636. },
  28637. {
  28638. name: "Macro",
  28639. height: math.unit(20 + 6 / 12, "feet")
  28640. },
  28641. {
  28642. name: "Megamacro",
  28643. height: math.unit(12, "miles")
  28644. },
  28645. {
  28646. name: "Gigamacro",
  28647. height: math.unit(10000, "miles")
  28648. },
  28649. {
  28650. name: "Teramacro",
  28651. height: math.unit(900000, "miles")
  28652. },
  28653. ]
  28654. ))
  28655. characterMakers.push(() => makeCharacter(
  28656. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28657. {
  28658. front: {
  28659. height: math.unit(12, "feet"),
  28660. weight: math.unit(1, "ton"),
  28661. capacity: math.unit(660000, "gallons"),
  28662. name: "Front",
  28663. image: {
  28664. source: "./media/characters/zeus/front.svg",
  28665. extra: 5005 / 4717,
  28666. bottom: 363 / 5388
  28667. }
  28668. },
  28669. },
  28670. [
  28671. {
  28672. name: "Normal",
  28673. height: math.unit(12, "feet")
  28674. },
  28675. {
  28676. name: "Preferred Size",
  28677. height: math.unit(0.5, "miles"),
  28678. default: true
  28679. },
  28680. {
  28681. name: "Giga Horse",
  28682. height: math.unit(300, "miles")
  28683. },
  28684. {
  28685. name: "Riding Planets",
  28686. height: math.unit(30, "megameters")
  28687. },
  28688. {
  28689. name: "Cosmic Giant",
  28690. height: math.unit(3, "zettameters")
  28691. },
  28692. {
  28693. name: "Breeding God",
  28694. height: math.unit(9.92e22, "yottameters")
  28695. },
  28696. ]
  28697. ))
  28698. characterMakers.push(() => makeCharacter(
  28699. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28700. {
  28701. side: {
  28702. height: math.unit(9, "feet"),
  28703. weight: math.unit(1500, "kg"),
  28704. name: "Side",
  28705. image: {
  28706. source: "./media/characters/fang/side.svg",
  28707. extra: 924 / 866,
  28708. bottom: 47.5 / 972.3
  28709. }
  28710. },
  28711. },
  28712. [
  28713. {
  28714. name: "Normal",
  28715. height: math.unit(9, "feet"),
  28716. default: true
  28717. },
  28718. {
  28719. name: "Macro",
  28720. height: math.unit(75 + 6 / 12, "feet")
  28721. },
  28722. {
  28723. name: "Teramacro",
  28724. height: math.unit(50000, "miles")
  28725. },
  28726. ]
  28727. ))
  28728. characterMakers.push(() => makeCharacter(
  28729. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28730. {
  28731. front: {
  28732. height: math.unit(10, "feet"),
  28733. weight: math.unit(2, "tons"),
  28734. name: "Front",
  28735. image: {
  28736. source: "./media/characters/rekhit/front.svg",
  28737. extra: 2796 / 2590,
  28738. bottom: 225 / 3022
  28739. }
  28740. },
  28741. },
  28742. [
  28743. {
  28744. name: "Normal",
  28745. height: math.unit(10, "feet"),
  28746. default: true
  28747. },
  28748. {
  28749. name: "Macro",
  28750. height: math.unit(500, "feet")
  28751. },
  28752. ]
  28753. ))
  28754. characterMakers.push(() => makeCharacter(
  28755. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28756. {
  28757. front: {
  28758. height: math.unit(7 + 6.451 / 12, "feet"),
  28759. weight: math.unit(310, "lb"),
  28760. name: "Front",
  28761. image: {
  28762. source: "./media/characters/dahlia-verrick/front.svg",
  28763. extra: 1488 / 1365,
  28764. bottom: 6.2 / 1495
  28765. }
  28766. },
  28767. back: {
  28768. height: math.unit(7 + 6.451 / 12, "feet"),
  28769. weight: math.unit(310, "lb"),
  28770. name: "Back",
  28771. image: {
  28772. source: "./media/characters/dahlia-verrick/back.svg",
  28773. extra: 1472 / 1351,
  28774. bottom: 5.28 / 1477
  28775. }
  28776. },
  28777. frontBusiness: {
  28778. height: math.unit(7 + 6.451 / 12, "feet"),
  28779. weight: math.unit(200, "lb"),
  28780. name: "Front (Business)",
  28781. image: {
  28782. source: "./media/characters/dahlia-verrick/front-business.svg",
  28783. extra: 1478 / 1381,
  28784. bottom: 5.5 / 1484
  28785. }
  28786. },
  28787. frontCasual: {
  28788. height: math.unit(7 + 6.451 / 12, "feet"),
  28789. weight: math.unit(200, "lb"),
  28790. name: "Front (Casual)",
  28791. image: {
  28792. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28793. extra: 1478 / 1381,
  28794. bottom: 5.5 / 1484
  28795. }
  28796. },
  28797. },
  28798. [
  28799. {
  28800. name: "Travel-Sized",
  28801. height: math.unit(7.45, "inches")
  28802. },
  28803. {
  28804. name: "Normal",
  28805. height: math.unit(7 + 6.451 / 12, "feet"),
  28806. default: true
  28807. },
  28808. {
  28809. name: "Hitting the Town",
  28810. height: math.unit(37 + 8 / 12, "feet")
  28811. },
  28812. {
  28813. name: "Stomp in the Suburbs",
  28814. height: math.unit(964 + 9.728 / 12, "feet")
  28815. },
  28816. {
  28817. name: "Sit on the City",
  28818. height: math.unit(61747 + 10.592 / 12, "feet")
  28819. },
  28820. {
  28821. name: "Glomp the Globe",
  28822. height: math.unit(252919327 + 4.832 / 12, "feet")
  28823. },
  28824. ]
  28825. ))
  28826. characterMakers.push(() => makeCharacter(
  28827. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28828. {
  28829. front: {
  28830. height: math.unit(6 + 4 / 12, "feet"),
  28831. weight: math.unit(320, "lb"),
  28832. name: "Front",
  28833. image: {
  28834. source: "./media/characters/balina-mahigan/front.svg",
  28835. extra: 447 / 428,
  28836. bottom: 18 / 466
  28837. }
  28838. },
  28839. back: {
  28840. height: math.unit(6 + 4 / 12, "feet"),
  28841. weight: math.unit(320, "lb"),
  28842. name: "Back",
  28843. image: {
  28844. source: "./media/characters/balina-mahigan/back.svg",
  28845. extra: 445 / 428,
  28846. bottom: 4.07 / 448
  28847. }
  28848. },
  28849. arm: {
  28850. height: math.unit(1.88, "feet"),
  28851. name: "Arm",
  28852. image: {
  28853. source: "./media/characters/balina-mahigan/arm.svg"
  28854. }
  28855. },
  28856. backPort: {
  28857. height: math.unit(0.685, "feet"),
  28858. name: "Back Port",
  28859. image: {
  28860. source: "./media/characters/balina-mahigan/back-port.svg"
  28861. }
  28862. },
  28863. hoofpaw: {
  28864. height: math.unit(1.41, "feet"),
  28865. name: "Hoofpaw",
  28866. image: {
  28867. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28868. }
  28869. },
  28870. leftHandBack: {
  28871. height: math.unit(0.938, "feet"),
  28872. name: "Left Hand (Back)",
  28873. image: {
  28874. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28875. }
  28876. },
  28877. leftHandFront: {
  28878. height: math.unit(0.938, "feet"),
  28879. name: "Left Hand (Front)",
  28880. image: {
  28881. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28882. }
  28883. },
  28884. rightHandBack: {
  28885. height: math.unit(0.95, "feet"),
  28886. name: "Right Hand (Back)",
  28887. image: {
  28888. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28889. }
  28890. },
  28891. rightHandFront: {
  28892. height: math.unit(0.95, "feet"),
  28893. name: "Right Hand (Front)",
  28894. image: {
  28895. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28896. }
  28897. },
  28898. },
  28899. [
  28900. {
  28901. name: "Normal",
  28902. height: math.unit(6 + 4 / 12, "feet"),
  28903. default: true
  28904. },
  28905. ]
  28906. ))
  28907. characterMakers.push(() => makeCharacter(
  28908. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28909. {
  28910. front: {
  28911. height: math.unit(6, "feet"),
  28912. weight: math.unit(320, "lb"),
  28913. name: "Front",
  28914. image: {
  28915. source: "./media/characters/balina-mejeri/front.svg",
  28916. extra: 517 / 488,
  28917. bottom: 44.2 / 561
  28918. }
  28919. },
  28920. },
  28921. [
  28922. {
  28923. name: "Normal",
  28924. height: math.unit(6 + 4 / 12, "feet")
  28925. },
  28926. {
  28927. name: "Business",
  28928. height: math.unit(155, "feet"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28935. {
  28936. kneeling: {
  28937. height: math.unit(6 + 4 / 12, "feet"),
  28938. weight: math.unit(300 * 20, "lb"),
  28939. name: "Kneeling",
  28940. image: {
  28941. source: "./media/characters/balbarian/kneeling.svg",
  28942. extra: 922 / 862,
  28943. bottom: 42.4 / 965
  28944. }
  28945. },
  28946. },
  28947. [
  28948. {
  28949. name: "Normal",
  28950. height: math.unit(6 + 4 / 12, "feet")
  28951. },
  28952. {
  28953. name: "Treasured",
  28954. height: math.unit(18 + 9 / 12, "feet"),
  28955. default: true
  28956. },
  28957. {
  28958. name: "Macro",
  28959. height: math.unit(900, "feet")
  28960. },
  28961. ]
  28962. ))
  28963. characterMakers.push(() => makeCharacter(
  28964. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28965. {
  28966. front: {
  28967. height: math.unit(6 + 4 / 12, "feet"),
  28968. weight: math.unit(325, "lb"),
  28969. name: "Front",
  28970. image: {
  28971. source: "./media/characters/balina-amarini/front.svg",
  28972. extra: 415 / 403,
  28973. bottom: 19 / 433.4
  28974. }
  28975. },
  28976. back: {
  28977. height: math.unit(6 + 4 / 12, "feet"),
  28978. weight: math.unit(325, "lb"),
  28979. name: "Back",
  28980. image: {
  28981. source: "./media/characters/balina-amarini/back.svg",
  28982. extra: 415 / 403,
  28983. bottom: 13.5 / 432
  28984. }
  28985. },
  28986. overdrive: {
  28987. height: math.unit(6 + 4 / 12, "feet"),
  28988. weight: math.unit(400, "lb"),
  28989. name: "Overdrive",
  28990. image: {
  28991. source: "./media/characters/balina-amarini/overdrive.svg",
  28992. extra: 269 / 259,
  28993. bottom: 12 / 282
  28994. }
  28995. },
  28996. },
  28997. [
  28998. {
  28999. name: "Boom",
  29000. height: math.unit(9 + 10 / 12, "feet"),
  29001. default: true
  29002. },
  29003. {
  29004. name: "Macro",
  29005. height: math.unit(280, "feet")
  29006. },
  29007. ]
  29008. ))
  29009. characterMakers.push(() => makeCharacter(
  29010. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29011. {
  29012. goddess: {
  29013. height: math.unit(600, "feet"),
  29014. weight: math.unit(2000000, "tons"),
  29015. name: "Goddess",
  29016. image: {
  29017. source: "./media/characters/lady-kubwa/goddess.svg",
  29018. extra: 1240.5 / 1223,
  29019. bottom: 22 / 1263
  29020. }
  29021. },
  29022. goddesser: {
  29023. height: math.unit(900, "feet"),
  29024. weight: math.unit(20000000, "lb"),
  29025. name: "Goddess-er",
  29026. image: {
  29027. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29028. extra: 899 / 888,
  29029. bottom: 12.6 / 912
  29030. }
  29031. },
  29032. },
  29033. [
  29034. {
  29035. name: "Macro",
  29036. height: math.unit(600, "feet"),
  29037. default: true
  29038. },
  29039. {
  29040. name: "Megamacro",
  29041. height: math.unit(250, "miles")
  29042. },
  29043. ]
  29044. ))
  29045. characterMakers.push(() => makeCharacter(
  29046. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29047. {
  29048. front: {
  29049. height: math.unit(7 + 7 / 12, "feet"),
  29050. weight: math.unit(250, "lb"),
  29051. name: "Front",
  29052. image: {
  29053. source: "./media/characters/tala-grovehorn/front.svg",
  29054. extra: 2636 / 2525,
  29055. bottom: 147 / 2781
  29056. }
  29057. },
  29058. back: {
  29059. height: math.unit(7 + 7 / 12, "feet"),
  29060. weight: math.unit(250, "lb"),
  29061. name: "Back",
  29062. image: {
  29063. source: "./media/characters/tala-grovehorn/back.svg",
  29064. extra: 2635 / 2539,
  29065. bottom: 100 / 2732.8
  29066. }
  29067. },
  29068. mouth: {
  29069. height: math.unit(1.15, "feet"),
  29070. name: "Mouth",
  29071. image: {
  29072. source: "./media/characters/tala-grovehorn/mouth.svg"
  29073. }
  29074. },
  29075. dick: {
  29076. height: math.unit(2.36, "feet"),
  29077. name: "Dick",
  29078. image: {
  29079. source: "./media/characters/tala-grovehorn/dick.svg"
  29080. }
  29081. },
  29082. slit: {
  29083. height: math.unit(0.61, "feet"),
  29084. name: "Slit",
  29085. image: {
  29086. source: "./media/characters/tala-grovehorn/slit.svg"
  29087. }
  29088. },
  29089. },
  29090. [
  29091. ]
  29092. ))
  29093. characterMakers.push(() => makeCharacter(
  29094. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29095. {
  29096. front: {
  29097. height: math.unit(7 + 7 / 12, "feet"),
  29098. weight: math.unit(225, "lb"),
  29099. name: "Front",
  29100. image: {
  29101. source: "./media/characters/epona/front.svg",
  29102. extra: 2445 / 2290,
  29103. bottom: 251 / 2696
  29104. }
  29105. },
  29106. back: {
  29107. height: math.unit(7 + 7 / 12, "feet"),
  29108. weight: math.unit(225, "lb"),
  29109. name: "Back",
  29110. image: {
  29111. source: "./media/characters/epona/back.svg",
  29112. extra: 2546 / 2408,
  29113. bottom: 44 / 2589
  29114. }
  29115. },
  29116. genitals: {
  29117. height: math.unit(1.5, "feet"),
  29118. name: "Genitals",
  29119. image: {
  29120. source: "./media/characters/epona/genitals.svg"
  29121. }
  29122. },
  29123. },
  29124. [
  29125. {
  29126. name: "Normal",
  29127. height: math.unit(7 + 7 / 12, "feet"),
  29128. default: true
  29129. },
  29130. ]
  29131. ))
  29132. characterMakers.push(() => makeCharacter(
  29133. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29134. {
  29135. front: {
  29136. height: math.unit(7, "feet"),
  29137. weight: math.unit(518, "lb"),
  29138. name: "Front",
  29139. image: {
  29140. source: "./media/characters/avia-bloodbourn/front.svg",
  29141. extra: 1466 / 1350,
  29142. bottom: 65 / 1527
  29143. }
  29144. },
  29145. },
  29146. [
  29147. ]
  29148. ))
  29149. characterMakers.push(() => makeCharacter(
  29150. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29151. {
  29152. front: {
  29153. height: math.unit(9.35, "feet"),
  29154. weight: math.unit(600, "lb"),
  29155. name: "Front",
  29156. image: {
  29157. source: "./media/characters/amera/front.svg",
  29158. extra: 891 / 818,
  29159. bottom: 30 / 922.7
  29160. }
  29161. },
  29162. back: {
  29163. height: math.unit(9.35, "feet"),
  29164. weight: math.unit(600, "lb"),
  29165. name: "Back",
  29166. image: {
  29167. source: "./media/characters/amera/back.svg",
  29168. extra: 876 / 824,
  29169. bottom: 6.8 / 884
  29170. }
  29171. },
  29172. dick: {
  29173. height: math.unit(2.14, "feet"),
  29174. name: "Dick",
  29175. image: {
  29176. source: "./media/characters/amera/dick.svg"
  29177. }
  29178. },
  29179. },
  29180. [
  29181. {
  29182. name: "Normal",
  29183. height: math.unit(9.35, "feet"),
  29184. default: true
  29185. },
  29186. ]
  29187. ))
  29188. characterMakers.push(() => makeCharacter(
  29189. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29190. {
  29191. kneeling: {
  29192. height: math.unit(3 + 4 / 12, "feet"),
  29193. weight: math.unit(90, "lb"),
  29194. name: "Kneeling",
  29195. image: {
  29196. source: "./media/characters/rosewen/kneeling.svg",
  29197. extra: 1835 / 1571,
  29198. bottom: 27.7 / 1862
  29199. }
  29200. },
  29201. },
  29202. [
  29203. {
  29204. name: "Normal",
  29205. height: math.unit(3 + 4 / 12, "feet"),
  29206. default: true
  29207. },
  29208. ]
  29209. ))
  29210. characterMakers.push(() => makeCharacter(
  29211. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29212. {
  29213. front: {
  29214. height: math.unit(5 + 10 / 12, "feet"),
  29215. weight: math.unit(200, "lb"),
  29216. name: "Front",
  29217. image: {
  29218. source: "./media/characters/sabah/front.svg",
  29219. extra: 849 / 763,
  29220. bottom: 33.9 / 881
  29221. }
  29222. },
  29223. },
  29224. [
  29225. {
  29226. name: "Normal",
  29227. height: math.unit(5 + 10 / 12, "feet"),
  29228. default: true
  29229. },
  29230. ]
  29231. ))
  29232. characterMakers.push(() => makeCharacter(
  29233. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29234. {
  29235. front: {
  29236. height: math.unit(3 + 5 / 12, "feet"),
  29237. weight: math.unit(40, "kg"),
  29238. name: "Front",
  29239. image: {
  29240. source: "./media/characters/purple-flame/front.svg",
  29241. extra: 1577 / 1412,
  29242. bottom: 97 / 1694
  29243. }
  29244. },
  29245. frontDressed: {
  29246. height: math.unit(3 + 5 / 12, "feet"),
  29247. weight: math.unit(40, "kg"),
  29248. name: "Front (Dressed)",
  29249. image: {
  29250. source: "./media/characters/purple-flame/front-dressed.svg",
  29251. extra: 1577 / 1412,
  29252. bottom: 97 / 1694
  29253. }
  29254. },
  29255. headphones: {
  29256. height: math.unit(0.85, "feet"),
  29257. name: "Headphones",
  29258. image: {
  29259. source: "./media/characters/purple-flame/headphones.svg"
  29260. }
  29261. },
  29262. },
  29263. [
  29264. {
  29265. name: "Really Small",
  29266. height: math.unit(5, "cm")
  29267. },
  29268. {
  29269. name: "Micro",
  29270. height: math.unit(1 + 5 / 12, "feet")
  29271. },
  29272. {
  29273. name: "Normal",
  29274. height: math.unit(3 + 5 / 12, "feet"),
  29275. default: true
  29276. },
  29277. {
  29278. name: "Minimacro",
  29279. height: math.unit(125, "feet")
  29280. },
  29281. {
  29282. name: "Macro",
  29283. height: math.unit(0.5, "miles")
  29284. },
  29285. {
  29286. name: "Megamacro",
  29287. height: math.unit(50, "miles")
  29288. },
  29289. {
  29290. name: "Gigantic",
  29291. height: math.unit(750, "miles")
  29292. },
  29293. {
  29294. name: "Planetary",
  29295. height: math.unit(15000, "miles")
  29296. },
  29297. ]
  29298. ))
  29299. characterMakers.push(() => makeCharacter(
  29300. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29301. {
  29302. front: {
  29303. height: math.unit(14, "feet"),
  29304. weight: math.unit(959, "lb"),
  29305. name: "Front",
  29306. image: {
  29307. source: "./media/characters/arsenal/front.svg",
  29308. extra: 2357 / 2157,
  29309. bottom: 93 / 2458
  29310. }
  29311. },
  29312. },
  29313. [
  29314. {
  29315. name: "Normal",
  29316. height: math.unit(14, "feet"),
  29317. default: true
  29318. },
  29319. ]
  29320. ))
  29321. characterMakers.push(() => makeCharacter(
  29322. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29323. {
  29324. front: {
  29325. height: math.unit(6, "feet"),
  29326. weight: math.unit(150, "lb"),
  29327. name: "Front",
  29328. image: {
  29329. source: "./media/characters/adira/front.svg",
  29330. extra: 1078 / 1029,
  29331. bottom: 87 / 1166
  29332. }
  29333. },
  29334. },
  29335. [
  29336. {
  29337. name: "Micro",
  29338. height: math.unit(4, "inches"),
  29339. default: true
  29340. },
  29341. {
  29342. name: "Macro",
  29343. height: math.unit(50, "feet")
  29344. },
  29345. ]
  29346. ))
  29347. characterMakers.push(() => makeCharacter(
  29348. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29349. {
  29350. front: {
  29351. height: math.unit(16, "feet"),
  29352. weight: math.unit(1000, "lb"),
  29353. name: "Front",
  29354. image: {
  29355. source: "./media/characters/grim/front.svg",
  29356. extra: 622 / 614,
  29357. bottom: 18.1 / 642
  29358. }
  29359. },
  29360. back: {
  29361. height: math.unit(16, "feet"),
  29362. weight: math.unit(1000, "lb"),
  29363. name: "Back",
  29364. image: {
  29365. source: "./media/characters/grim/back.svg",
  29366. extra: 610.6 / 602,
  29367. bottom: 40.8 / 652
  29368. }
  29369. },
  29370. hunched: {
  29371. height: math.unit(9.75, "feet"),
  29372. weight: math.unit(1000, "lb"),
  29373. name: "Hunched",
  29374. image: {
  29375. source: "./media/characters/grim/hunched.svg",
  29376. extra: 304 / 297,
  29377. bottom: 35.4 / 394
  29378. }
  29379. },
  29380. },
  29381. [
  29382. {
  29383. name: "Normal",
  29384. height: math.unit(16, "feet"),
  29385. default: true
  29386. },
  29387. ]
  29388. ))
  29389. characterMakers.push(() => makeCharacter(
  29390. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29391. {
  29392. front: {
  29393. height: math.unit(2.3, "meters"),
  29394. weight: math.unit(300, "lb"),
  29395. name: "Front",
  29396. image: {
  29397. source: "./media/characters/sinja/front-sfw.svg",
  29398. extra: 1393 / 1294,
  29399. bottom: 70 / 1463
  29400. }
  29401. },
  29402. frontNsfw: {
  29403. height: math.unit(2.3, "meters"),
  29404. weight: math.unit(300, "lb"),
  29405. name: "Front (NSFW)",
  29406. image: {
  29407. source: "./media/characters/sinja/front-nsfw.svg",
  29408. extra: 1393 / 1294,
  29409. bottom: 70 / 1463
  29410. }
  29411. },
  29412. back: {
  29413. height: math.unit(2.3, "meters"),
  29414. weight: math.unit(300, "lb"),
  29415. name: "Back",
  29416. image: {
  29417. source: "./media/characters/sinja/back.svg",
  29418. extra: 1393 / 1294,
  29419. bottom: 70 / 1463
  29420. }
  29421. },
  29422. head: {
  29423. height: math.unit(1.771, "feet"),
  29424. name: "Head",
  29425. image: {
  29426. source: "./media/characters/sinja/head.svg"
  29427. }
  29428. },
  29429. slit: {
  29430. height: math.unit(0.8, "feet"),
  29431. name: "Slit",
  29432. image: {
  29433. source: "./media/characters/sinja/slit.svg"
  29434. }
  29435. },
  29436. },
  29437. [
  29438. {
  29439. name: "Normal",
  29440. height: math.unit(2.3, "meters")
  29441. },
  29442. {
  29443. name: "Macro",
  29444. height: math.unit(91, "meters"),
  29445. default: true
  29446. },
  29447. {
  29448. name: "Megamacro",
  29449. height: math.unit(91440, "meters")
  29450. },
  29451. {
  29452. name: "Gigamacro",
  29453. height: math.unit(60960000, "meters")
  29454. },
  29455. {
  29456. name: "Teramacro",
  29457. height: math.unit(9144000000, "meters")
  29458. },
  29459. ]
  29460. ))
  29461. characterMakers.push(() => makeCharacter(
  29462. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29463. {
  29464. front: {
  29465. height: math.unit(1.7, "meters"),
  29466. weight: math.unit(130, "lb"),
  29467. name: "Front",
  29468. image: {
  29469. source: "./media/characters/kyu/front.svg",
  29470. extra: 415 / 395,
  29471. bottom: 5 / 420
  29472. }
  29473. },
  29474. head: {
  29475. height: math.unit(1.75, "feet"),
  29476. name: "Head",
  29477. image: {
  29478. source: "./media/characters/kyu/head.svg"
  29479. }
  29480. },
  29481. foot: {
  29482. height: math.unit(0.81, "feet"),
  29483. name: "Foot",
  29484. image: {
  29485. source: "./media/characters/kyu/foot.svg"
  29486. }
  29487. },
  29488. },
  29489. [
  29490. {
  29491. name: "Normal",
  29492. height: math.unit(1.7, "meters")
  29493. },
  29494. {
  29495. name: "Macro",
  29496. height: math.unit(131, "feet"),
  29497. default: true
  29498. },
  29499. {
  29500. name: "Megamacro",
  29501. height: math.unit(91440, "meters")
  29502. },
  29503. {
  29504. name: "Gigamacro",
  29505. height: math.unit(60960000, "meters")
  29506. },
  29507. {
  29508. name: "Teramacro",
  29509. height: math.unit(9144000000, "meters")
  29510. },
  29511. ]
  29512. ))
  29513. characterMakers.push(() => makeCharacter(
  29514. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29515. {
  29516. front: {
  29517. height: math.unit(7 + 1 / 12, "feet"),
  29518. weight: math.unit(250, "lb"),
  29519. name: "Front",
  29520. image: {
  29521. source: "./media/characters/joey/front.svg",
  29522. extra: 1791 / 1537,
  29523. bottom: 28 / 1816
  29524. }
  29525. },
  29526. },
  29527. [
  29528. {
  29529. name: "Micro",
  29530. height: math.unit(3, "inches")
  29531. },
  29532. {
  29533. name: "Normal",
  29534. height: math.unit(7 + 1 / 12, "feet"),
  29535. default: true
  29536. },
  29537. ]
  29538. ))
  29539. characterMakers.push(() => makeCharacter(
  29540. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29541. {
  29542. front: {
  29543. height: math.unit(165, "cm"),
  29544. weight: math.unit(140, "lb"),
  29545. name: "Front",
  29546. image: {
  29547. source: "./media/characters/sam-evans/front.svg",
  29548. extra: 3417 / 3230,
  29549. bottom: 41.3 / 3417
  29550. }
  29551. },
  29552. frontSixTails: {
  29553. height: math.unit(165, "cm"),
  29554. weight: math.unit(140, "lb"),
  29555. name: "Front-six-tails",
  29556. image: {
  29557. source: "./media/characters/sam-evans/front-six-tails.svg",
  29558. extra: 3417 / 3230,
  29559. bottom: 41.3 / 3417
  29560. }
  29561. },
  29562. back: {
  29563. height: math.unit(165, "cm"),
  29564. weight: math.unit(140, "lb"),
  29565. name: "Back",
  29566. image: {
  29567. source: "./media/characters/sam-evans/back.svg",
  29568. extra: 3227 / 3032,
  29569. bottom: 6.8 / 3234
  29570. }
  29571. },
  29572. face: {
  29573. height: math.unit(0.68, "feet"),
  29574. name: "Face",
  29575. image: {
  29576. source: "./media/characters/sam-evans/face.svg"
  29577. }
  29578. },
  29579. },
  29580. [
  29581. {
  29582. name: "Normal",
  29583. height: math.unit(165, "cm"),
  29584. default: true
  29585. },
  29586. {
  29587. name: "Macro",
  29588. height: math.unit(100, "meters")
  29589. },
  29590. {
  29591. name: "Macro+",
  29592. height: math.unit(800, "meters")
  29593. },
  29594. {
  29595. name: "Macro++",
  29596. height: math.unit(3, "km")
  29597. },
  29598. {
  29599. name: "Macro+++",
  29600. height: math.unit(30, "km")
  29601. },
  29602. ]
  29603. ))
  29604. characterMakers.push(() => makeCharacter(
  29605. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29606. {
  29607. front: {
  29608. height: math.unit(10, "feet"),
  29609. weight: math.unit(750, "lb"),
  29610. name: "Front",
  29611. image: {
  29612. source: "./media/characters/juliet-a/front.svg",
  29613. extra: 1766 / 1720,
  29614. bottom: 43 / 1809
  29615. }
  29616. },
  29617. back: {
  29618. height: math.unit(10, "feet"),
  29619. weight: math.unit(750, "lb"),
  29620. name: "Back",
  29621. image: {
  29622. source: "./media/characters/juliet-a/back.svg",
  29623. extra: 1781 / 1734,
  29624. bottom: 35 / 1810,
  29625. }
  29626. },
  29627. },
  29628. [
  29629. {
  29630. name: "Normal",
  29631. height: math.unit(10, "feet"),
  29632. default: true
  29633. },
  29634. {
  29635. name: "Dragon Form",
  29636. height: math.unit(250, "feet")
  29637. },
  29638. {
  29639. name: "Macro",
  29640. height: math.unit(1000, "feet")
  29641. },
  29642. {
  29643. name: "Megamacro",
  29644. height: math.unit(10000, "feet")
  29645. }
  29646. ]
  29647. ))
  29648. characterMakers.push(() => makeCharacter(
  29649. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29650. {
  29651. regular: {
  29652. height: math.unit(7 + 3 / 12, "feet"),
  29653. weight: math.unit(260, "lb"),
  29654. name: "Regular",
  29655. image: {
  29656. source: "./media/characters/wild/regular.svg",
  29657. extra: 97.45 / 92,
  29658. bottom: 6.8 / 104.3
  29659. }
  29660. },
  29661. biggums: {
  29662. height: math.unit(8 + 6 / 12, "feet"),
  29663. weight: math.unit(425, "lb"),
  29664. name: "Biggums",
  29665. image: {
  29666. source: "./media/characters/wild/biggums.svg",
  29667. extra: 97.45 / 92,
  29668. bottom: 7.5 / 132.34
  29669. }
  29670. },
  29671. mawRegular: {
  29672. height: math.unit(1.24, "feet"),
  29673. name: "Maw (Regular)",
  29674. image: {
  29675. source: "./media/characters/wild/maw.svg"
  29676. }
  29677. },
  29678. mawBiggums: {
  29679. height: math.unit(1.47, "feet"),
  29680. name: "Maw (Biggums)",
  29681. image: {
  29682. source: "./media/characters/wild/maw.svg"
  29683. }
  29684. },
  29685. },
  29686. [
  29687. {
  29688. name: "Normal",
  29689. height: math.unit(7 + 3 / 12, "feet"),
  29690. default: true
  29691. },
  29692. ]
  29693. ))
  29694. characterMakers.push(() => makeCharacter(
  29695. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29696. {
  29697. front: {
  29698. height: math.unit(2.5, "meters"),
  29699. weight: math.unit(200, "kg"),
  29700. name: "Front",
  29701. image: {
  29702. source: "./media/characters/vidar/front.svg",
  29703. extra: 2994 / 2795,
  29704. bottom: 56 / 3061
  29705. }
  29706. },
  29707. back: {
  29708. height: math.unit(2.5, "meters"),
  29709. weight: math.unit(200, "kg"),
  29710. name: "Back",
  29711. image: {
  29712. source: "./media/characters/vidar/back.svg",
  29713. extra: 3131 / 2928,
  29714. bottom: 13.5 / 3141.5
  29715. }
  29716. },
  29717. feral: {
  29718. height: math.unit(2.5, "meters"),
  29719. weight: math.unit(2000, "kg"),
  29720. name: "Feral",
  29721. image: {
  29722. source: "./media/characters/vidar/feral.svg",
  29723. extra: 2790 / 1765,
  29724. bottom: 6 / 2796
  29725. }
  29726. },
  29727. },
  29728. [
  29729. {
  29730. name: "Normal",
  29731. height: math.unit(2.5, "meters"),
  29732. default: true
  29733. },
  29734. {
  29735. name: "Macro",
  29736. height: math.unit(100, "meters")
  29737. },
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29742. {
  29743. front: {
  29744. height: math.unit(5 + 9 / 12, "feet"),
  29745. weight: math.unit(120, "lb"),
  29746. name: "Front",
  29747. image: {
  29748. source: "./media/characters/ash/front.svg",
  29749. extra: 2189 / 1961,
  29750. bottom: 5.2 / 2194
  29751. }
  29752. },
  29753. },
  29754. [
  29755. {
  29756. name: "Normal",
  29757. height: math.unit(5 + 9 / 12, "feet"),
  29758. default: true
  29759. },
  29760. ]
  29761. ))
  29762. characterMakers.push(() => makeCharacter(
  29763. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29764. {
  29765. front: {
  29766. height: math.unit(9, "feet"),
  29767. weight: math.unit(10000, "lb"),
  29768. name: "Front",
  29769. image: {
  29770. source: "./media/characters/gygabite/front.svg",
  29771. bottom: 31.7 / 537.8,
  29772. extra: 505 / 370
  29773. }
  29774. },
  29775. },
  29776. [
  29777. {
  29778. name: "Normal",
  29779. height: math.unit(9, "feet"),
  29780. default: true
  29781. },
  29782. ]
  29783. ))
  29784. characterMakers.push(() => makeCharacter(
  29785. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29786. {
  29787. front: {
  29788. height: math.unit(12, "feet"),
  29789. weight: math.unit(4000, "lb"),
  29790. name: "Front",
  29791. image: {
  29792. source: "./media/characters/p0tat0/front.svg",
  29793. extra: 1065 / 921,
  29794. bottom: 55.7 / 1121.25
  29795. }
  29796. },
  29797. },
  29798. [
  29799. {
  29800. name: "Normal",
  29801. height: math.unit(12, "feet"),
  29802. default: true
  29803. },
  29804. ]
  29805. ))
  29806. characterMakers.push(() => makeCharacter(
  29807. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29808. {
  29809. side: {
  29810. height: math.unit(6.5, "feet"),
  29811. weight: math.unit(800, "lb"),
  29812. name: "Side",
  29813. image: {
  29814. source: "./media/characters/dusk/side.svg",
  29815. extra: 615 / 373,
  29816. bottom: 53 / 664
  29817. }
  29818. },
  29819. sitting: {
  29820. height: math.unit(7, "feet"),
  29821. weight: math.unit(800, "lb"),
  29822. name: "Sitting",
  29823. image: {
  29824. source: "./media/characters/dusk/sitting.svg",
  29825. extra: 753 / 425,
  29826. bottom: 33 / 774
  29827. }
  29828. },
  29829. head: {
  29830. height: math.unit(6.1, "feet"),
  29831. name: "Head",
  29832. image: {
  29833. source: "./media/characters/dusk/head.svg"
  29834. }
  29835. },
  29836. },
  29837. [
  29838. {
  29839. name: "Normal",
  29840. height: math.unit(7, "feet"),
  29841. default: true
  29842. },
  29843. ]
  29844. ))
  29845. characterMakers.push(() => makeCharacter(
  29846. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29847. {
  29848. front: {
  29849. height: math.unit(15, "feet"),
  29850. weight: math.unit(7000, "lb"),
  29851. name: "Front",
  29852. image: {
  29853. source: "./media/characters/jay-direwolf/front.svg",
  29854. extra: 1810 / 1732,
  29855. bottom: 66 / 1892
  29856. }
  29857. },
  29858. },
  29859. [
  29860. {
  29861. name: "Normal",
  29862. height: math.unit(15, "feet"),
  29863. default: true
  29864. },
  29865. ]
  29866. ))
  29867. characterMakers.push(() => makeCharacter(
  29868. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29869. {
  29870. front: {
  29871. height: math.unit(4 + 9 / 12, "feet"),
  29872. weight: math.unit(130, "lb"),
  29873. name: "Front",
  29874. image: {
  29875. source: "./media/characters/anchovie/front.svg",
  29876. extra: 382 / 350,
  29877. bottom: 25 / 409
  29878. }
  29879. },
  29880. back: {
  29881. height: math.unit(4 + 9 / 12, "feet"),
  29882. weight: math.unit(130, "lb"),
  29883. name: "Back",
  29884. image: {
  29885. source: "./media/characters/anchovie/back.svg",
  29886. extra: 385 / 352,
  29887. bottom: 16.6 / 402
  29888. }
  29889. },
  29890. frontDressed: {
  29891. height: math.unit(4 + 9 / 12, "feet"),
  29892. weight: math.unit(130, "lb"),
  29893. name: "Front (Dressed)",
  29894. image: {
  29895. source: "./media/characters/anchovie/front-dressed.svg",
  29896. extra: 382 / 350,
  29897. bottom: 25 / 409
  29898. }
  29899. },
  29900. backDressed: {
  29901. height: math.unit(4 + 9 / 12, "feet"),
  29902. weight: math.unit(130, "lb"),
  29903. name: "Back (Dressed)",
  29904. image: {
  29905. source: "./media/characters/anchovie/back-dressed.svg",
  29906. extra: 385 / 352,
  29907. bottom: 16.6 / 402
  29908. }
  29909. },
  29910. },
  29911. [
  29912. {
  29913. name: "Micro",
  29914. height: math.unit(6.4, "inches")
  29915. },
  29916. {
  29917. name: "Normal",
  29918. height: math.unit(4 + 9 / 12, "feet"),
  29919. default: true
  29920. },
  29921. ]
  29922. ))
  29923. characterMakers.push(() => makeCharacter(
  29924. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29925. {
  29926. front: {
  29927. height: math.unit(2, "meters"),
  29928. weight: math.unit(180, "lb"),
  29929. name: "Front",
  29930. image: {
  29931. source: "./media/characters/acidrenamon/front.svg",
  29932. extra: 987 / 890,
  29933. bottom: 22.8 / 1009
  29934. }
  29935. },
  29936. back: {
  29937. height: math.unit(2, "meters"),
  29938. weight: math.unit(180, "lb"),
  29939. name: "Back",
  29940. image: {
  29941. source: "./media/characters/acidrenamon/back.svg",
  29942. extra: 983 / 891,
  29943. bottom: 8.4 / 992
  29944. }
  29945. },
  29946. head: {
  29947. height: math.unit(1.92, "feet"),
  29948. name: "Head",
  29949. image: {
  29950. source: "./media/characters/acidrenamon/head.svg"
  29951. }
  29952. },
  29953. rump: {
  29954. height: math.unit(1.72, "feet"),
  29955. name: "Rump",
  29956. image: {
  29957. source: "./media/characters/acidrenamon/rump.svg"
  29958. }
  29959. },
  29960. tail: {
  29961. height: math.unit(4.2, "feet"),
  29962. name: "Tail",
  29963. image: {
  29964. source: "./media/characters/acidrenamon/tail.svg"
  29965. }
  29966. },
  29967. },
  29968. [
  29969. {
  29970. name: "Normal",
  29971. height: math.unit(2, "meters"),
  29972. default: true
  29973. },
  29974. {
  29975. name: "Minimacro",
  29976. height: math.unit(7, "meters")
  29977. },
  29978. {
  29979. name: "Macro",
  29980. height: math.unit(200, "meters")
  29981. },
  29982. {
  29983. name: "Gigamacro",
  29984. height: math.unit(0.2, "earths")
  29985. },
  29986. ]
  29987. ))
  29988. characterMakers.push(() => makeCharacter(
  29989. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29990. {
  29991. front: {
  29992. height: math.unit(152, "feet"),
  29993. name: "Front",
  29994. image: {
  29995. source: "./media/characters/kenzie-lee/front.svg",
  29996. extra: 1869/1774,
  29997. bottom: 128/1997
  29998. }
  29999. },
  30000. side: {
  30001. height: math.unit(86, "feet"),
  30002. name: "Side",
  30003. image: {
  30004. source: "./media/characters/kenzie-lee/side.svg",
  30005. extra: 930/815,
  30006. bottom: 177/1107
  30007. }
  30008. },
  30009. paw: {
  30010. height: math.unit(15, "feet"),
  30011. name: "Paw",
  30012. image: {
  30013. source: "./media/characters/kenzie-lee/paw.svg"
  30014. }
  30015. },
  30016. },
  30017. [
  30018. {
  30019. name: "Kenzie Flea",
  30020. height: math.unit(2, "mm"),
  30021. default: true
  30022. },
  30023. {
  30024. name: "Micro",
  30025. height: math.unit(2, "inches")
  30026. },
  30027. {
  30028. name: "Normal",
  30029. height: math.unit(152, "feet")
  30030. },
  30031. {
  30032. name: "Megamacro",
  30033. height: math.unit(7, "miles")
  30034. },
  30035. {
  30036. name: "Gigamacro",
  30037. height: math.unit(8000, "miles")
  30038. },
  30039. ]
  30040. ))
  30041. characterMakers.push(() => makeCharacter(
  30042. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30043. {
  30044. front: {
  30045. height: math.unit(6, "feet"),
  30046. name: "Front",
  30047. image: {
  30048. source: "./media/characters/withers/front.svg",
  30049. extra: 1935/1760,
  30050. bottom: 72/2007
  30051. }
  30052. },
  30053. back: {
  30054. height: math.unit(6, "feet"),
  30055. name: "Back",
  30056. image: {
  30057. source: "./media/characters/withers/back.svg",
  30058. extra: 1944/1792,
  30059. bottom: 12/1956
  30060. }
  30061. },
  30062. dressed: {
  30063. height: math.unit(6, "feet"),
  30064. name: "Dressed",
  30065. image: {
  30066. source: "./media/characters/withers/dressed.svg",
  30067. extra: 1937/1765,
  30068. bottom: 73/2010
  30069. }
  30070. },
  30071. phase1: {
  30072. height: math.unit(1.1, "feet"),
  30073. name: "Phase 1",
  30074. image: {
  30075. source: "./media/characters/withers/phase-1.svg",
  30076. extra: 1885/1232,
  30077. bottom: 0/1885
  30078. }
  30079. },
  30080. phase2: {
  30081. height: math.unit(1.05, "feet"),
  30082. name: "Phase 2",
  30083. image: {
  30084. source: "./media/characters/withers/phase-2.svg",
  30085. extra: 1792/1090,
  30086. bottom: 0/1792
  30087. }
  30088. },
  30089. partyWipe: {
  30090. height: math.unit(1.1, "feet"),
  30091. name: "Party Wipe",
  30092. image: {
  30093. source: "./media/characters/withers/party-wipe.svg",
  30094. extra: 1864/1207,
  30095. bottom: 0/1864
  30096. }
  30097. },
  30098. },
  30099. [
  30100. {
  30101. name: "Macro",
  30102. height: math.unit(167, "feet"),
  30103. default: true
  30104. },
  30105. {
  30106. name: "Megamacro",
  30107. height: math.unit(15, "miles")
  30108. }
  30109. ]
  30110. ))
  30111. characterMakers.push(() => makeCharacter(
  30112. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30113. {
  30114. front: {
  30115. height: math.unit(6 + 7 / 12, "feet"),
  30116. weight: math.unit(250, "lb"),
  30117. name: "Front",
  30118. image: {
  30119. source: "./media/characters/nemoskii/front.svg",
  30120. extra: 2270 / 1734,
  30121. bottom: 86 / 2354
  30122. }
  30123. },
  30124. back: {
  30125. height: math.unit(6 + 7 / 12, "feet"),
  30126. weight: math.unit(250, "lb"),
  30127. name: "Back",
  30128. image: {
  30129. source: "./media/characters/nemoskii/back.svg",
  30130. extra: 1845 / 1788,
  30131. bottom: 10.5 / 1852
  30132. }
  30133. },
  30134. head: {
  30135. height: math.unit(1.31, "feet"),
  30136. name: "Head",
  30137. image: {
  30138. source: "./media/characters/nemoskii/head.svg"
  30139. }
  30140. },
  30141. },
  30142. [
  30143. {
  30144. name: "Micro",
  30145. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30146. },
  30147. {
  30148. name: "Normal",
  30149. height: math.unit(6 + 7 / 12, "feet"),
  30150. default: true
  30151. },
  30152. {
  30153. name: "Macro",
  30154. height: math.unit((6 + 7 / 12) * 150, "feet")
  30155. },
  30156. {
  30157. name: "Macro+",
  30158. height: math.unit((6 + 7 / 12) * 500, "feet")
  30159. },
  30160. {
  30161. name: "Megamacro",
  30162. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30163. },
  30164. ]
  30165. ))
  30166. characterMakers.push(() => makeCharacter(
  30167. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30168. {
  30169. front: {
  30170. height: math.unit(1, "mile"),
  30171. weight: math.unit(265261.9, "lb"),
  30172. name: "Front",
  30173. image: {
  30174. source: "./media/characters/shui/front.svg",
  30175. extra: 1633 / 1564,
  30176. bottom: 91.5 / 1726
  30177. }
  30178. },
  30179. },
  30180. [
  30181. {
  30182. name: "Macro",
  30183. height: math.unit(1, "mile"),
  30184. default: true
  30185. },
  30186. ]
  30187. ))
  30188. characterMakers.push(() => makeCharacter(
  30189. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30190. {
  30191. front: {
  30192. height: math.unit(12 + 6 / 12, "feet"),
  30193. weight: math.unit(1342, "lb"),
  30194. name: "Front",
  30195. image: {
  30196. source: "./media/characters/arokh-takakura/front.svg",
  30197. extra: 1089 / 1043,
  30198. bottom: 77.4 / 1176.7
  30199. }
  30200. },
  30201. back: {
  30202. height: math.unit(12 + 6 / 12, "feet"),
  30203. weight: math.unit(1342, "lb"),
  30204. name: "Back",
  30205. image: {
  30206. source: "./media/characters/arokh-takakura/back.svg",
  30207. extra: 1046 / 1019,
  30208. bottom: 102 / 1150
  30209. }
  30210. },
  30211. },
  30212. [
  30213. {
  30214. name: "Big",
  30215. height: math.unit(12 + 6 / 12, "feet"),
  30216. default: true
  30217. },
  30218. ]
  30219. ))
  30220. characterMakers.push(() => makeCharacter(
  30221. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30222. {
  30223. front: {
  30224. height: math.unit(5 + 6 / 12, "feet"),
  30225. weight: math.unit(150, "lb"),
  30226. name: "Front",
  30227. image: {
  30228. source: "./media/characters/theo/front.svg",
  30229. extra: 1184 / 1131,
  30230. bottom: 7.4 / 1191
  30231. }
  30232. },
  30233. },
  30234. [
  30235. {
  30236. name: "Micro",
  30237. height: math.unit(5, "inches")
  30238. },
  30239. {
  30240. name: "Normal",
  30241. height: math.unit(5 + 6 / 12, "feet"),
  30242. default: true
  30243. },
  30244. ]
  30245. ))
  30246. characterMakers.push(() => makeCharacter(
  30247. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30248. {
  30249. front: {
  30250. height: math.unit(5 + 9 / 12, "feet"),
  30251. weight: math.unit(130, "lb"),
  30252. name: "Front",
  30253. image: {
  30254. source: "./media/characters/cecelia-swift/front.svg",
  30255. extra: 502 / 484,
  30256. bottom: 23 / 523
  30257. }
  30258. },
  30259. back: {
  30260. height: math.unit(5 + 9 / 12, "feet"),
  30261. weight: math.unit(130, "lb"),
  30262. name: "Back",
  30263. image: {
  30264. source: "./media/characters/cecelia-swift/back.svg",
  30265. extra: 499 / 485,
  30266. bottom: 12 / 511
  30267. }
  30268. },
  30269. head: {
  30270. height: math.unit(0.90, "feet"),
  30271. name: "Head",
  30272. image: {
  30273. source: "./media/characters/cecelia-swift/head.svg"
  30274. }
  30275. },
  30276. rump: {
  30277. height: math.unit(1.75, "feet"),
  30278. name: "Rump",
  30279. image: {
  30280. source: "./media/characters/cecelia-swift/rump.svg"
  30281. }
  30282. },
  30283. },
  30284. [
  30285. {
  30286. name: "Normal",
  30287. height: math.unit(5 + 9 / 12, "feet"),
  30288. default: true
  30289. },
  30290. {
  30291. name: "Big",
  30292. height: math.unit(50, "feet")
  30293. },
  30294. {
  30295. name: "Macro",
  30296. height: math.unit(100, "feet")
  30297. },
  30298. {
  30299. name: "Macro+",
  30300. height: math.unit(500, "feet")
  30301. },
  30302. {
  30303. name: "Macro++",
  30304. height: math.unit(1000, "feet")
  30305. },
  30306. ]
  30307. ))
  30308. characterMakers.push(() => makeCharacter(
  30309. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30310. {
  30311. front: {
  30312. height: math.unit(6, "feet"),
  30313. weight: math.unit(150, "lb"),
  30314. name: "Front",
  30315. image: {
  30316. source: "./media/characters/kaunan/front.svg",
  30317. extra: 2890 / 2523,
  30318. bottom: 49 / 2939
  30319. }
  30320. },
  30321. },
  30322. [
  30323. {
  30324. name: "Macro",
  30325. height: math.unit(150, "feet"),
  30326. default: true
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30332. {
  30333. dressed: {
  30334. height: math.unit(175, "cm"),
  30335. weight: math.unit(60, "kg"),
  30336. name: "Dressed",
  30337. image: {
  30338. source: "./media/characters/fei/dressed.svg",
  30339. extra: 1402/1278,
  30340. bottom: 27/1429
  30341. }
  30342. },
  30343. nude: {
  30344. height: math.unit(175, "cm"),
  30345. weight: math.unit(60, "kg"),
  30346. name: "Nude",
  30347. image: {
  30348. source: "./media/characters/fei/nude.svg",
  30349. extra: 1402/1278,
  30350. bottom: 27/1429
  30351. }
  30352. },
  30353. heels: {
  30354. height: math.unit(0.466, "feet"),
  30355. name: "Heels",
  30356. image: {
  30357. source: "./media/characters/fei/heels.svg",
  30358. extra: 156/152,
  30359. bottom: 28/184
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Mortal",
  30366. height: math.unit(175, "cm")
  30367. },
  30368. {
  30369. name: "Normal",
  30370. height: math.unit(3500, "m")
  30371. },
  30372. {
  30373. name: "Stroll",
  30374. height: math.unit(18.4, "km"),
  30375. default: true
  30376. },
  30377. {
  30378. name: "Showoff",
  30379. height: math.unit(175, "km")
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30385. {
  30386. front: {
  30387. height: math.unit(7, "feet"),
  30388. weight: math.unit(1000, "kg"),
  30389. name: "Front",
  30390. image: {
  30391. source: "./media/characters/edrax/front.svg",
  30392. extra: 2838 / 2550,
  30393. bottom: 130 / 2968
  30394. }
  30395. },
  30396. },
  30397. [
  30398. {
  30399. name: "Small",
  30400. height: math.unit(7, "feet")
  30401. },
  30402. {
  30403. name: "Normal",
  30404. height: math.unit(1500, "meters")
  30405. },
  30406. {
  30407. name: "Mega",
  30408. height: math.unit(12000000, "km"),
  30409. default: true
  30410. },
  30411. {
  30412. name: "Megamacro",
  30413. height: math.unit(10600000, "lightyears")
  30414. },
  30415. {
  30416. name: "Hypermacro",
  30417. height: math.unit(256, "yottameters")
  30418. },
  30419. ]
  30420. ))
  30421. characterMakers.push(() => makeCharacter(
  30422. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30423. {
  30424. front: {
  30425. height: math.unit(10, "feet"),
  30426. weight: math.unit(750, "lb"),
  30427. name: "Front",
  30428. image: {
  30429. source: "./media/characters/clove/front.svg",
  30430. extra: 1918/1751,
  30431. bottom: 52/1970
  30432. }
  30433. },
  30434. back: {
  30435. height: math.unit(10, "feet"),
  30436. weight: math.unit(750, "lb"),
  30437. name: "Back",
  30438. image: {
  30439. source: "./media/characters/clove/back.svg",
  30440. extra: 1912/1747,
  30441. bottom: 50/1962
  30442. }
  30443. },
  30444. },
  30445. [
  30446. {
  30447. name: "Normal",
  30448. height: math.unit(10, "feet"),
  30449. default: true
  30450. },
  30451. ]
  30452. ))
  30453. characterMakers.push(() => makeCharacter(
  30454. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30455. {
  30456. front: {
  30457. height: math.unit(4, "feet"),
  30458. weight: math.unit(50, "lb"),
  30459. name: "Front",
  30460. image: {
  30461. source: "./media/characters/alex-rabbit/front.svg",
  30462. extra: 507 / 458,
  30463. bottom: 18.5 / 527
  30464. }
  30465. },
  30466. back: {
  30467. height: math.unit(4, "feet"),
  30468. weight: math.unit(50, "lb"),
  30469. name: "Back",
  30470. image: {
  30471. source: "./media/characters/alex-rabbit/back.svg",
  30472. extra: 502 / 460,
  30473. bottom: 18.9 / 521
  30474. }
  30475. },
  30476. },
  30477. [
  30478. {
  30479. name: "Normal",
  30480. height: math.unit(4, "feet"),
  30481. default: true
  30482. },
  30483. ]
  30484. ))
  30485. characterMakers.push(() => makeCharacter(
  30486. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30487. {
  30488. front: {
  30489. height: math.unit(1 + 3 / 12, "feet"),
  30490. weight: math.unit(80, "lb"),
  30491. name: "Front",
  30492. image: {
  30493. source: "./media/characters/zander-rose/front.svg",
  30494. extra: 916 / 797,
  30495. bottom: 17 / 933
  30496. }
  30497. },
  30498. back: {
  30499. height: math.unit(1 + 3 / 12, "feet"),
  30500. weight: math.unit(80, "lb"),
  30501. name: "Back",
  30502. image: {
  30503. source: "./media/characters/zander-rose/back.svg",
  30504. extra: 903 / 779,
  30505. bottom: 31 / 934
  30506. }
  30507. },
  30508. },
  30509. [
  30510. {
  30511. name: "Normal",
  30512. height: math.unit(1 + 3 / 12, "feet"),
  30513. default: true
  30514. },
  30515. ]
  30516. ))
  30517. characterMakers.push(() => makeCharacter(
  30518. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30519. {
  30520. anthro: {
  30521. height: math.unit(6, "feet"),
  30522. weight: math.unit(150, "lb"),
  30523. name: "Anthro",
  30524. image: {
  30525. source: "./media/characters/razz/anthro.svg",
  30526. extra: 1437 / 1343,
  30527. bottom: 48 / 1485
  30528. }
  30529. },
  30530. feral: {
  30531. height: math.unit(6, "feet"),
  30532. weight: math.unit(150, "lb"),
  30533. name: "Feral",
  30534. image: {
  30535. source: "./media/characters/razz/feral.svg",
  30536. extra: 2569 / 1385,
  30537. bottom: 95 / 2664
  30538. }
  30539. },
  30540. },
  30541. [
  30542. {
  30543. name: "Normal",
  30544. height: math.unit(6, "feet"),
  30545. default: true
  30546. },
  30547. ]
  30548. ))
  30549. characterMakers.push(() => makeCharacter(
  30550. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30551. {
  30552. front: {
  30553. height: math.unit(9 + 4 / 12, "feet"),
  30554. weight: math.unit(500, "lb"),
  30555. name: "Front",
  30556. image: {
  30557. source: "./media/characters/morrigan/front.svg",
  30558. extra: 2707 / 2579,
  30559. bottom: 156 / 2863
  30560. }
  30561. },
  30562. },
  30563. [
  30564. {
  30565. name: "Normal",
  30566. height: math.unit(9 + 4 / 12, "feet"),
  30567. default: true
  30568. },
  30569. ]
  30570. ))
  30571. characterMakers.push(() => makeCharacter(
  30572. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30573. {
  30574. front: {
  30575. height: math.unit(5, "stories"),
  30576. weight: math.unit(4000, "lb"),
  30577. name: "Front",
  30578. image: {
  30579. source: "./media/characters/jenene/front.svg",
  30580. extra: 1780 / 1710,
  30581. bottom: 57 / 1837
  30582. }
  30583. },
  30584. },
  30585. [
  30586. {
  30587. name: "Normal",
  30588. height: math.unit(5, "stories"),
  30589. default: true
  30590. },
  30591. ]
  30592. ))
  30593. characterMakers.push(() => makeCharacter(
  30594. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30595. {
  30596. taurSfw: {
  30597. height: math.unit(10, "meters"),
  30598. weight: math.unit(17500, "kg"),
  30599. name: "Taur",
  30600. image: {
  30601. source: "./media/characters/faey/taur-sfw.svg",
  30602. extra: 1200 / 968,
  30603. bottom: 41 / 1241
  30604. }
  30605. },
  30606. chestmaw: {
  30607. height: math.unit(2.01, "meters"),
  30608. name: "Chestmaw",
  30609. image: {
  30610. source: "./media/characters/faey/chestmaw.svg"
  30611. }
  30612. },
  30613. foot: {
  30614. height: math.unit(2.43, "meters"),
  30615. name: "Foot",
  30616. image: {
  30617. source: "./media/characters/faey/foot.svg"
  30618. }
  30619. },
  30620. jaws: {
  30621. height: math.unit(1.66, "meters"),
  30622. name: "Jaws",
  30623. image: {
  30624. source: "./media/characters/faey/jaws.svg"
  30625. }
  30626. },
  30627. tongues: {
  30628. height: math.unit(2.01, "meters"),
  30629. name: "Tongues",
  30630. image: {
  30631. source: "./media/characters/faey/tongues.svg"
  30632. }
  30633. },
  30634. },
  30635. [
  30636. {
  30637. name: "Small",
  30638. height: math.unit(10, "meters"),
  30639. default: true
  30640. },
  30641. {
  30642. name: "Big",
  30643. height: math.unit(500000, "km")
  30644. },
  30645. ]
  30646. ))
  30647. characterMakers.push(() => makeCharacter(
  30648. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30649. {
  30650. front: {
  30651. height: math.unit(7, "feet"),
  30652. weight: math.unit(275, "lb"),
  30653. name: "Front",
  30654. image: {
  30655. source: "./media/characters/roku/front.svg",
  30656. extra: 903 / 878,
  30657. bottom: 37 / 940
  30658. }
  30659. },
  30660. },
  30661. [
  30662. {
  30663. name: "Normal",
  30664. height: math.unit(7, "feet"),
  30665. default: true
  30666. },
  30667. {
  30668. name: "Macro",
  30669. height: math.unit(500, "feet")
  30670. },
  30671. {
  30672. name: "Megamacro",
  30673. height: math.unit(200, "miles")
  30674. },
  30675. ]
  30676. ))
  30677. characterMakers.push(() => makeCharacter(
  30678. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30679. {
  30680. front: {
  30681. height: math.unit(6 + 2 / 12, "feet"),
  30682. weight: math.unit(150, "lb"),
  30683. name: "Front",
  30684. image: {
  30685. source: "./media/characters/lira/front.svg",
  30686. extra: 1727 / 1605,
  30687. bottom: 26 / 1753
  30688. }
  30689. },
  30690. back: {
  30691. height: math.unit(6 + 2 / 12, "feet"),
  30692. weight: math.unit(150, "lb"),
  30693. name: "Back",
  30694. image: {
  30695. source: "./media/characters/lira/back.svg",
  30696. extra: 1713/1621,
  30697. bottom: 20/1733
  30698. }
  30699. },
  30700. hand: {
  30701. height: math.unit(0.75, "feet"),
  30702. name: "Hand",
  30703. image: {
  30704. source: "./media/characters/lira/hand.svg"
  30705. }
  30706. },
  30707. maw: {
  30708. height: math.unit(0.65, "feet"),
  30709. name: "Maw",
  30710. image: {
  30711. source: "./media/characters/lira/maw.svg"
  30712. }
  30713. },
  30714. pawDigi: {
  30715. height: math.unit(1.6, "feet"),
  30716. name: "Paw Digi",
  30717. image: {
  30718. source: "./media/characters/lira/paw-digi.svg"
  30719. }
  30720. },
  30721. pawPlanti: {
  30722. height: math.unit(1.4, "feet"),
  30723. name: "Paw Planti",
  30724. image: {
  30725. source: "./media/characters/lira/paw-planti.svg"
  30726. }
  30727. },
  30728. },
  30729. [
  30730. {
  30731. name: "Normal",
  30732. height: math.unit(6 + 2 / 12, "feet"),
  30733. default: true
  30734. },
  30735. {
  30736. name: "Macro",
  30737. height: math.unit(100, "feet")
  30738. },
  30739. {
  30740. name: "Macro²",
  30741. height: math.unit(1600, "feet")
  30742. },
  30743. {
  30744. name: "Planetary",
  30745. height: math.unit(20, "earths")
  30746. },
  30747. ]
  30748. ))
  30749. characterMakers.push(() => makeCharacter(
  30750. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30751. {
  30752. front: {
  30753. height: math.unit(6, "feet"),
  30754. weight: math.unit(150, "lb"),
  30755. name: "Front",
  30756. image: {
  30757. source: "./media/characters/hadjet/front.svg",
  30758. extra: 1480 / 1346,
  30759. bottom: 26 / 1506
  30760. }
  30761. },
  30762. frontNsfw: {
  30763. height: math.unit(6, "feet"),
  30764. weight: math.unit(150, "lb"),
  30765. name: "Front (NSFW)",
  30766. image: {
  30767. source: "./media/characters/hadjet/front-nsfw.svg",
  30768. extra: 1440 / 1358,
  30769. bottom: 52 / 1492
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Macro",
  30776. height: math.unit(10, "stories"),
  30777. default: true
  30778. },
  30779. {
  30780. name: "Megamacro",
  30781. height: math.unit(1.5, "miles")
  30782. },
  30783. {
  30784. name: "Megamacro+",
  30785. height: math.unit(5, "miles")
  30786. },
  30787. ]
  30788. ))
  30789. characterMakers.push(() => makeCharacter(
  30790. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30791. {
  30792. side: {
  30793. height: math.unit(106, "feet"),
  30794. weight: math.unit(500, "tonnes"),
  30795. name: "Side",
  30796. image: {
  30797. source: "./media/characters/kodran/side.svg",
  30798. extra: 553 / 480,
  30799. bottom: 33 / 586
  30800. }
  30801. },
  30802. front: {
  30803. height: math.unit(132, "feet"),
  30804. weight: math.unit(500, "tonnes"),
  30805. name: "Front",
  30806. image: {
  30807. source: "./media/characters/kodran/front.svg",
  30808. extra: 667 / 643,
  30809. bottom: 42 / 709
  30810. }
  30811. },
  30812. flying: {
  30813. height: math.unit(350, "feet"),
  30814. weight: math.unit(500, "tonnes"),
  30815. name: "Flying",
  30816. image: {
  30817. source: "./media/characters/kodran/flying.svg"
  30818. }
  30819. },
  30820. foot: {
  30821. height: math.unit(33, "feet"),
  30822. name: "Foot",
  30823. image: {
  30824. source: "./media/characters/kodran/foot.svg"
  30825. }
  30826. },
  30827. footFront: {
  30828. height: math.unit(19, "feet"),
  30829. name: "Foot (Front)",
  30830. image: {
  30831. source: "./media/characters/kodran/foot-front.svg",
  30832. extra: 261 / 261,
  30833. bottom: 91 / 352
  30834. }
  30835. },
  30836. headFront: {
  30837. height: math.unit(53, "feet"),
  30838. name: "Head (Front)",
  30839. image: {
  30840. source: "./media/characters/kodran/head-front.svg"
  30841. }
  30842. },
  30843. headSide: {
  30844. height: math.unit(65, "feet"),
  30845. name: "Head (Side)",
  30846. image: {
  30847. source: "./media/characters/kodran/head-side.svg"
  30848. }
  30849. },
  30850. throat: {
  30851. height: math.unit(79, "feet"),
  30852. name: "Throat",
  30853. image: {
  30854. source: "./media/characters/kodran/throat.svg"
  30855. }
  30856. },
  30857. },
  30858. [
  30859. {
  30860. name: "Large",
  30861. height: math.unit(106, "feet"),
  30862. default: true
  30863. },
  30864. ]
  30865. ))
  30866. characterMakers.push(() => makeCharacter(
  30867. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30868. {
  30869. side: {
  30870. height: math.unit(11, "feet"),
  30871. weight: math.unit(150, "lb"),
  30872. name: "Side",
  30873. image: {
  30874. source: "./media/characters/pyxaron/side.svg",
  30875. extra: 305 / 195,
  30876. bottom: 17 / 322
  30877. }
  30878. },
  30879. },
  30880. [
  30881. {
  30882. name: "Normal",
  30883. height: math.unit(11, "feet"),
  30884. default: true
  30885. },
  30886. ]
  30887. ))
  30888. characterMakers.push(() => makeCharacter(
  30889. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30890. {
  30891. front: {
  30892. height: math.unit(6, "feet"),
  30893. weight: math.unit(150, "lb"),
  30894. name: "Front",
  30895. image: {
  30896. source: "./media/characters/meep/front.svg",
  30897. extra: 88 / 80,
  30898. bottom: 6 / 94
  30899. }
  30900. },
  30901. },
  30902. [
  30903. {
  30904. name: "Fun Sized",
  30905. height: math.unit(2, "inches"),
  30906. default: true
  30907. },
  30908. {
  30909. name: "Friend Sized",
  30910. height: math.unit(8, "inches")
  30911. },
  30912. ]
  30913. ))
  30914. characterMakers.push(() => makeCharacter(
  30915. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30916. {
  30917. front: {
  30918. height: math.unit(15, "feet"),
  30919. weight: math.unit(2500, "lb"),
  30920. name: "Front",
  30921. image: {
  30922. source: "./media/characters/holly-rabbit/front.svg",
  30923. extra: 1433 / 1233,
  30924. bottom: 125 / 1558
  30925. }
  30926. },
  30927. dick: {
  30928. height: math.unit(4.6, "feet"),
  30929. name: "Dick",
  30930. image: {
  30931. source: "./media/characters/holly-rabbit/dick.svg"
  30932. }
  30933. },
  30934. },
  30935. [
  30936. {
  30937. name: "Normal",
  30938. height: math.unit(15, "feet"),
  30939. default: true
  30940. },
  30941. {
  30942. name: "Macro",
  30943. height: math.unit(250, "feet")
  30944. },
  30945. {
  30946. name: "Macro+",
  30947. height: math.unit(2500, "feet")
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30953. {
  30954. front: {
  30955. height: math.unit(3.02, "meters"),
  30956. weight: math.unit(500, "kg"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/drena/front.svg",
  30960. extra: 282 / 243,
  30961. bottom: 8 / 290
  30962. }
  30963. },
  30964. side: {
  30965. height: math.unit(3.02, "meters"),
  30966. weight: math.unit(500, "kg"),
  30967. name: "Side",
  30968. image: {
  30969. source: "./media/characters/drena/side.svg",
  30970. extra: 280 / 245,
  30971. bottom: 10 / 290
  30972. }
  30973. },
  30974. back: {
  30975. height: math.unit(3.02, "meters"),
  30976. weight: math.unit(500, "kg"),
  30977. name: "Back",
  30978. image: {
  30979. source: "./media/characters/drena/back.svg",
  30980. extra: 278 / 243,
  30981. bottom: 2 / 280
  30982. }
  30983. },
  30984. foot: {
  30985. height: math.unit(0.75, "meters"),
  30986. name: "Foot",
  30987. image: {
  30988. source: "./media/characters/drena/foot.svg"
  30989. }
  30990. },
  30991. maw: {
  30992. height: math.unit(0.82, "meters"),
  30993. name: "Maw",
  30994. image: {
  30995. source: "./media/characters/drena/maw.svg"
  30996. }
  30997. },
  30998. eating: {
  30999. height: math.unit(0.75, "meters"),
  31000. name: "Eating",
  31001. image: {
  31002. source: "./media/characters/drena/eating.svg"
  31003. }
  31004. },
  31005. rump: {
  31006. height: math.unit(0.93, "meters"),
  31007. name: "Rump",
  31008. image: {
  31009. source: "./media/characters/drena/rump.svg"
  31010. }
  31011. },
  31012. },
  31013. [
  31014. {
  31015. name: "Normal",
  31016. height: math.unit(3.02, "meters"),
  31017. default: true
  31018. },
  31019. ]
  31020. ))
  31021. characterMakers.push(() => makeCharacter(
  31022. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31023. {
  31024. front: {
  31025. height: math.unit(6 + 4 / 12, "feet"),
  31026. weight: math.unit(250, "lb"),
  31027. name: "Front",
  31028. image: {
  31029. source: "./media/characters/remmyzilla/front.svg",
  31030. extra: 4033 / 3588,
  31031. bottom: 123 / 4156
  31032. }
  31033. },
  31034. back: {
  31035. height: math.unit(6 + 4 / 12, "feet"),
  31036. weight: math.unit(250, "lb"),
  31037. name: "Back",
  31038. image: {
  31039. source: "./media/characters/remmyzilla/back.svg",
  31040. extra: 1696/1602,
  31041. bottom: 63/1759
  31042. }
  31043. },
  31044. paw: {
  31045. height: math.unit(1.73, "feet"),
  31046. name: "Paw",
  31047. image: {
  31048. source: "./media/characters/remmyzilla/paw.svg"
  31049. },
  31050. extraAttributes: {
  31051. "toeSize": {
  31052. name: "Toe Size",
  31053. power: 2,
  31054. type: "area",
  31055. base: math.unit(0.0035, "m^2")
  31056. },
  31057. "padSize": {
  31058. name: "Pad Size",
  31059. power: 2,
  31060. type: "area",
  31061. base: math.unit(0.015, "m^2")
  31062. },
  31063. "pawsize": {
  31064. name: "Paw Size",
  31065. power: 2,
  31066. type: "area",
  31067. base: math.unit(0.072, "m^2")
  31068. },
  31069. }
  31070. },
  31071. maw: {
  31072. height: math.unit(1.73, "feet"),
  31073. name: "Maw",
  31074. image: {
  31075. source: "./media/characters/remmyzilla/maw.svg"
  31076. }
  31077. },
  31078. },
  31079. [
  31080. {
  31081. name: "Normal",
  31082. height: math.unit(6 + 4 / 12, "feet")
  31083. },
  31084. {
  31085. name: "Minimacro",
  31086. height: math.unit(12 + 8 / 12, "feet")
  31087. },
  31088. {
  31089. name: "Normal",
  31090. height: math.unit(640, "feet"),
  31091. default: true
  31092. },
  31093. {
  31094. name: "Megamacro",
  31095. height: math.unit(6400, "feet")
  31096. },
  31097. {
  31098. name: "Gigamacro",
  31099. height: math.unit(64000, "miles")
  31100. },
  31101. ]
  31102. ))
  31103. characterMakers.push(() => makeCharacter(
  31104. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31105. {
  31106. front: {
  31107. height: math.unit(2.5, "meters"),
  31108. weight: math.unit(300, "lb"),
  31109. name: "Front",
  31110. image: {
  31111. source: "./media/characters/lawrence/front.svg",
  31112. extra: 357 / 335,
  31113. bottom: 30 / 387
  31114. }
  31115. },
  31116. back: {
  31117. height: math.unit(2.5, "meters"),
  31118. weight: math.unit(300, "lb"),
  31119. name: "Back",
  31120. image: {
  31121. source: "./media/characters/lawrence/back.svg",
  31122. extra: 357 / 338,
  31123. bottom: 16 / 373
  31124. }
  31125. },
  31126. head: {
  31127. height: math.unit(0.9, "meter"),
  31128. name: "Head",
  31129. image: {
  31130. source: "./media/characters/lawrence/head.svg"
  31131. }
  31132. },
  31133. maw: {
  31134. height: math.unit(0.7, "meter"),
  31135. name: "Maw",
  31136. image: {
  31137. source: "./media/characters/lawrence/maw.svg"
  31138. }
  31139. },
  31140. footBottom: {
  31141. height: math.unit(0.5, "meter"),
  31142. name: "Foot (Bottom)",
  31143. image: {
  31144. source: "./media/characters/lawrence/foot-bottom.svg"
  31145. }
  31146. },
  31147. footTop: {
  31148. height: math.unit(0.5, "meter"),
  31149. name: "Foot (Top)",
  31150. image: {
  31151. source: "./media/characters/lawrence/foot-top.svg"
  31152. }
  31153. },
  31154. },
  31155. [
  31156. {
  31157. name: "Normal",
  31158. height: math.unit(2.5, "meters"),
  31159. default: true
  31160. },
  31161. {
  31162. name: "Macro",
  31163. height: math.unit(95, "meters")
  31164. },
  31165. {
  31166. name: "Megamacro",
  31167. height: math.unit(150, "km")
  31168. },
  31169. ]
  31170. ))
  31171. characterMakers.push(() => makeCharacter(
  31172. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31173. {
  31174. front: {
  31175. height: math.unit(4.2, "meters"),
  31176. preyCapacity: math.unit(50, "m^3"),
  31177. weight: math.unit(30, "tonnes"),
  31178. name: "Front",
  31179. image: {
  31180. source: "./media/characters/sydney/front.svg",
  31181. extra: 1177/1129,
  31182. bottom: 197/1374
  31183. },
  31184. extraAttributes: {
  31185. "length": {
  31186. name: "Length",
  31187. power: 1,
  31188. type: "length",
  31189. base: math.unit(21, "meters")
  31190. },
  31191. }
  31192. },
  31193. },
  31194. [
  31195. {
  31196. name: "Normal",
  31197. height: math.unit(4.2, "meters"),
  31198. default: true
  31199. },
  31200. ]
  31201. ))
  31202. characterMakers.push(() => makeCharacter(
  31203. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31204. {
  31205. back: {
  31206. height: math.unit(201, "feet"),
  31207. name: "Back",
  31208. image: {
  31209. source: "./media/characters/jessica/back.svg",
  31210. extra: 273 / 259,
  31211. bottom: 7 / 280
  31212. }
  31213. },
  31214. },
  31215. [
  31216. {
  31217. name: "Normal",
  31218. height: math.unit(201, "feet"),
  31219. default: true
  31220. },
  31221. {
  31222. name: "Megamacro",
  31223. height: math.unit(8, "miles")
  31224. },
  31225. ]
  31226. ))
  31227. characterMakers.push(() => makeCharacter(
  31228. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31229. {
  31230. side: {
  31231. height: math.unit(5.6, "m"),
  31232. weight: math.unit(8000, "kg"),
  31233. name: "Side",
  31234. image: {
  31235. source: "./media/characters/victoria/side.svg",
  31236. extra: 1542/1229,
  31237. bottom: 124/1666
  31238. }
  31239. },
  31240. maw: {
  31241. height: math.unit(7.14, "feet"),
  31242. name: "Maw",
  31243. image: {
  31244. source: "./media/characters/victoria/maw.svg"
  31245. }
  31246. },
  31247. },
  31248. [
  31249. {
  31250. name: "Normal",
  31251. height: math.unit(5.6, "m"),
  31252. default: true
  31253. },
  31254. ]
  31255. ))
  31256. characterMakers.push(() => makeCharacter(
  31257. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31258. {
  31259. front: {
  31260. height: math.unit(5 + 6 / 12, "feet"),
  31261. name: "Front",
  31262. image: {
  31263. source: "./media/characters/cat/front.svg",
  31264. extra: 1449/1295,
  31265. bottom: 34/1483
  31266. },
  31267. form: "cat",
  31268. default: true
  31269. },
  31270. back: {
  31271. height: math.unit(5 + 6 / 12, "feet"),
  31272. name: "Back",
  31273. image: {
  31274. source: "./media/characters/cat/back.svg",
  31275. extra: 1466/1301,
  31276. bottom: 19/1485
  31277. },
  31278. form: "cat"
  31279. },
  31280. taur: {
  31281. height: math.unit(7, "feet"),
  31282. name: "Taur",
  31283. image: {
  31284. source: "./media/characters/cat/taur.svg",
  31285. extra: 1389/1233,
  31286. bottom: 83/1472
  31287. },
  31288. form: "taur",
  31289. default: true
  31290. },
  31291. lucarioFront: {
  31292. height: math.unit(4, "feet"),
  31293. name: "Lucario (Front)",
  31294. image: {
  31295. source: "./media/characters/cat/lucario-front.svg",
  31296. extra: 1149/1019,
  31297. bottom: 84/1233
  31298. },
  31299. form: "lucario",
  31300. default: true
  31301. },
  31302. lucarioBack: {
  31303. height: math.unit(4, "feet"),
  31304. name: "Lucario (Back)",
  31305. image: {
  31306. source: "./media/characters/cat/lucario-back.svg",
  31307. extra: 1190/1059,
  31308. bottom: 33/1223
  31309. },
  31310. form: "lucario"
  31311. },
  31312. megaLucario: {
  31313. height: math.unit(4, "feet"),
  31314. name: "Mega Lucario",
  31315. image: {
  31316. source: "./media/characters/cat/mega-lucario.svg",
  31317. extra: 1515 / 1319,
  31318. bottom: 63 / 1578
  31319. },
  31320. form: "lucario"
  31321. },
  31322. nickit: {
  31323. height: math.unit(2, "feet"),
  31324. name: "Nickit",
  31325. image: {
  31326. source: "./media/characters/cat/nickit.svg",
  31327. extra: 1980 / 1585,
  31328. bottom: 102 / 2082
  31329. },
  31330. form: "nickit",
  31331. default: true
  31332. },
  31333. lopunnyFront: {
  31334. height: math.unit(5, "feet"),
  31335. name: "Lopunny (Front)",
  31336. image: {
  31337. source: "./media/characters/cat/lopunny-front.svg",
  31338. extra: 1782 / 1469,
  31339. bottom: 38 / 1820
  31340. },
  31341. form: "lopunny",
  31342. default: true
  31343. },
  31344. lopunnyBack: {
  31345. height: math.unit(5, "feet"),
  31346. name: "Lopunny (Back)",
  31347. image: {
  31348. source: "./media/characters/cat/lopunny-back.svg",
  31349. extra: 1660 / 1490,
  31350. bottom: 25 / 1685
  31351. },
  31352. form: "lopunny"
  31353. },
  31354. },
  31355. [
  31356. {
  31357. name: "Really small",
  31358. height: math.unit(1, "nm")
  31359. },
  31360. {
  31361. name: "Micro",
  31362. height: math.unit(5, "inches")
  31363. },
  31364. {
  31365. name: "Normal",
  31366. height: math.unit(5 + 6 / 12, "feet"),
  31367. default: true
  31368. },
  31369. {
  31370. name: "Macro",
  31371. height: math.unit(50, "feet")
  31372. },
  31373. {
  31374. name: "Macro+",
  31375. height: math.unit(150, "feet")
  31376. },
  31377. {
  31378. name: "Megamacro",
  31379. height: math.unit(100, "miles")
  31380. },
  31381. ]
  31382. ))
  31383. characterMakers.push(() => makeCharacter(
  31384. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31385. {
  31386. front: {
  31387. height: math.unit(63.4, "meters"),
  31388. weight: math.unit(3.28349e+6, "kilograms"),
  31389. name: "Front",
  31390. image: {
  31391. source: "./media/characters/kirina-violet/front.svg",
  31392. extra: 2812 / 2725,
  31393. bottom: 0 / 2812
  31394. }
  31395. },
  31396. back: {
  31397. height: math.unit(63.4, "meters"),
  31398. weight: math.unit(3.28349e+6, "kilograms"),
  31399. name: "Back",
  31400. image: {
  31401. source: "./media/characters/kirina-violet/back.svg",
  31402. extra: 2812 / 2725,
  31403. bottom: 0 / 2812
  31404. }
  31405. },
  31406. mouth: {
  31407. height: math.unit(4.35, "meters"),
  31408. name: "Mouth",
  31409. image: {
  31410. source: "./media/characters/kirina-violet/mouth.svg"
  31411. }
  31412. },
  31413. paw: {
  31414. height: math.unit(5.6, "meters"),
  31415. name: "Paw",
  31416. image: {
  31417. source: "./media/characters/kirina-violet/paw.svg"
  31418. }
  31419. },
  31420. tail: {
  31421. height: math.unit(18, "meters"),
  31422. name: "Tail",
  31423. image: {
  31424. source: "./media/characters/kirina-violet/tail.svg"
  31425. }
  31426. },
  31427. },
  31428. [
  31429. {
  31430. name: "Macro",
  31431. height: math.unit(63.4, "meters"),
  31432. default: true
  31433. },
  31434. ]
  31435. ))
  31436. characterMakers.push(() => makeCharacter(
  31437. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31438. {
  31439. front: {
  31440. height: math.unit(75, "feet"),
  31441. name: "Front",
  31442. image: {
  31443. source: "./media/characters/cat-gigachu/front.svg",
  31444. extra: 1239/1027,
  31445. bottom: 32/1271
  31446. }
  31447. },
  31448. back: {
  31449. height: math.unit(75, "feet"),
  31450. name: "Back",
  31451. image: {
  31452. source: "./media/characters/cat-gigachu/back.svg",
  31453. extra: 1229/1030,
  31454. bottom: 9/1238
  31455. }
  31456. },
  31457. },
  31458. [
  31459. {
  31460. name: "Dynamax",
  31461. height: math.unit(75, "feet"),
  31462. default: true
  31463. },
  31464. ]
  31465. ))
  31466. characterMakers.push(() => makeCharacter(
  31467. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31468. {
  31469. front: {
  31470. height: math.unit(6, "feet"),
  31471. weight: math.unit(150, "lb"),
  31472. name: "Front",
  31473. image: {
  31474. source: "./media/characters/sfaiyan/front.svg",
  31475. extra: 999 / 978,
  31476. bottom: 5 / 1004
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Normal",
  31483. height: math.unit(1.82, "meters")
  31484. },
  31485. {
  31486. name: "Giant",
  31487. height: math.unit(2.27, "km"),
  31488. default: true
  31489. },
  31490. ]
  31491. ))
  31492. characterMakers.push(() => makeCharacter(
  31493. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31494. {
  31495. front: {
  31496. height: math.unit(179, "cm"),
  31497. weight: math.unit(100, "kg"),
  31498. name: "Front",
  31499. image: {
  31500. source: "./media/characters/raunehkeli/front.svg",
  31501. extra: 1934 / 1926,
  31502. bottom: 0 / 1934
  31503. }
  31504. },
  31505. },
  31506. [
  31507. {
  31508. name: "Normal",
  31509. height: math.unit(179, "cm")
  31510. },
  31511. {
  31512. name: "Maximum",
  31513. height: math.unit(575, "meters"),
  31514. default: true
  31515. },
  31516. ]
  31517. ))
  31518. characterMakers.push(() => makeCharacter(
  31519. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31520. {
  31521. front: {
  31522. height: math.unit(6, "feet"),
  31523. weight: math.unit(150, "lb"),
  31524. name: "Front",
  31525. image: {
  31526. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31527. extra: 2625 / 2518,
  31528. bottom: 60 / 2685
  31529. }
  31530. },
  31531. },
  31532. [
  31533. {
  31534. name: "Normal",
  31535. height: math.unit(6 + 2 / 12, "feet")
  31536. },
  31537. {
  31538. name: "Macro",
  31539. height: math.unit(1180, "feet"),
  31540. default: true
  31541. },
  31542. ]
  31543. ))
  31544. characterMakers.push(() => makeCharacter(
  31545. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31546. {
  31547. front: {
  31548. height: math.unit(5 + 6 / 12, "feet"),
  31549. weight: math.unit(108, "lb"),
  31550. name: "Front",
  31551. image: {
  31552. source: "./media/characters/lilith-zott/front.svg",
  31553. extra: 2510 / 2238,
  31554. bottom: 100 / 2610
  31555. }
  31556. },
  31557. frontDressed: {
  31558. height: math.unit(5 + 6 / 12, "feet"),
  31559. weight: math.unit(108, "lb"),
  31560. name: "Front (Dressed)",
  31561. image: {
  31562. source: "./media/characters/lilith-zott/front-dressed.svg",
  31563. extra: 2510 / 2238,
  31564. bottom: 100 / 2610
  31565. }
  31566. },
  31567. },
  31568. [
  31569. {
  31570. name: "Normal",
  31571. height: math.unit(5 + 6 / 12, "feet")
  31572. },
  31573. {
  31574. name: "Macro",
  31575. height: math.unit(1030, "feet"),
  31576. default: true
  31577. },
  31578. ]
  31579. ))
  31580. characterMakers.push(() => makeCharacter(
  31581. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31582. {
  31583. front: {
  31584. height: math.unit(6, "feet"),
  31585. weight: math.unit(150, "lb"),
  31586. name: "Front",
  31587. image: {
  31588. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31589. extra: 2567 / 2435,
  31590. bottom: 39 / 2606
  31591. }
  31592. },
  31593. frontSuper: {
  31594. height: math.unit(6, "feet"),
  31595. name: "Front (Super)",
  31596. image: {
  31597. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31598. extra: 2567 / 2435,
  31599. bottom: 39 / 2606
  31600. }
  31601. },
  31602. },
  31603. [
  31604. {
  31605. name: "Normal",
  31606. height: math.unit(5 + 10 / 12, "feet")
  31607. },
  31608. {
  31609. name: "Macro",
  31610. height: math.unit(1100, "feet"),
  31611. default: true
  31612. },
  31613. ]
  31614. ))
  31615. characterMakers.push(() => makeCharacter(
  31616. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31617. {
  31618. front: {
  31619. height: math.unit(100, "miles"),
  31620. name: "Front",
  31621. image: {
  31622. source: "./media/characters/sona/front.svg",
  31623. extra: 2433 / 2201,
  31624. bottom: 53 / 2486
  31625. }
  31626. },
  31627. foot: {
  31628. height: math.unit(16.1, "miles"),
  31629. name: "Foot",
  31630. image: {
  31631. source: "./media/characters/sona/foot.svg"
  31632. }
  31633. },
  31634. },
  31635. [
  31636. {
  31637. name: "Macro",
  31638. height: math.unit(100, "miles"),
  31639. default: true
  31640. },
  31641. ]
  31642. ))
  31643. characterMakers.push(() => makeCharacter(
  31644. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31645. {
  31646. front: {
  31647. height: math.unit(6, "feet"),
  31648. weight: math.unit(150, "lb"),
  31649. name: "Front",
  31650. image: {
  31651. source: "./media/characters/bailey/front.svg",
  31652. extra: 1778 / 1724,
  31653. bottom: 30 / 1808
  31654. }
  31655. },
  31656. },
  31657. [
  31658. {
  31659. name: "Micro",
  31660. height: math.unit(4, "inches")
  31661. },
  31662. {
  31663. name: "Normal",
  31664. height: math.unit(5 + 5 / 12, "feet"),
  31665. default: true
  31666. },
  31667. {
  31668. name: "Macro",
  31669. height: math.unit(250, "feet")
  31670. },
  31671. {
  31672. name: "Megamacro",
  31673. height: math.unit(100, "miles")
  31674. },
  31675. ]
  31676. ))
  31677. characterMakers.push(() => makeCharacter(
  31678. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31679. {
  31680. front: {
  31681. height: math.unit(5 + 2 / 12, "feet"),
  31682. weight: math.unit(120, "lb"),
  31683. name: "Front",
  31684. image: {
  31685. source: "./media/characters/snaps/front.svg",
  31686. extra: 2370 / 2177,
  31687. bottom: 48 / 2418
  31688. }
  31689. },
  31690. back: {
  31691. height: math.unit(5 + 2 / 12, "feet"),
  31692. weight: math.unit(120, "lb"),
  31693. name: "Back",
  31694. image: {
  31695. source: "./media/characters/snaps/back.svg",
  31696. extra: 2408 / 2258,
  31697. bottom: 15 / 2423
  31698. }
  31699. },
  31700. },
  31701. [
  31702. {
  31703. name: "Micro",
  31704. height: math.unit(9, "inches")
  31705. },
  31706. {
  31707. name: "Normal",
  31708. height: math.unit(5 + 2 / 12, "feet"),
  31709. default: true
  31710. },
  31711. {
  31712. name: "Mini Macro",
  31713. height: math.unit(10, "feet")
  31714. },
  31715. ]
  31716. ))
  31717. characterMakers.push(() => makeCharacter(
  31718. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31719. {
  31720. front: {
  31721. height: math.unit(1.8, "meters"),
  31722. weight: math.unit(85, "kg"),
  31723. name: "Front",
  31724. image: {
  31725. source: "./media/characters/azteck/front.svg",
  31726. extra: 2815 / 2625,
  31727. bottom: 89 / 2904
  31728. }
  31729. },
  31730. back: {
  31731. height: math.unit(1.8, "meters"),
  31732. weight: math.unit(85, "kg"),
  31733. name: "Back",
  31734. image: {
  31735. source: "./media/characters/azteck/back.svg",
  31736. extra: 2856 / 2648,
  31737. bottom: 85 / 2941
  31738. }
  31739. },
  31740. frontDressed: {
  31741. height: math.unit(1.8, "meters"),
  31742. weight: math.unit(85, "kg"),
  31743. name: "Front (Dressed)",
  31744. image: {
  31745. source: "./media/characters/azteck/front-dressed.svg",
  31746. extra: 2147 / 2003,
  31747. bottom: 68 / 2215
  31748. }
  31749. },
  31750. head: {
  31751. height: math.unit(0.47, "meters"),
  31752. weight: math.unit(85, "kg"),
  31753. name: "Head",
  31754. image: {
  31755. source: "./media/characters/azteck/head.svg"
  31756. }
  31757. },
  31758. },
  31759. [
  31760. {
  31761. name: "Bite sized",
  31762. height: math.unit(16, "cm")
  31763. },
  31764. {
  31765. name: "Normal",
  31766. height: math.unit(1.8, "meters"),
  31767. default: true
  31768. },
  31769. ]
  31770. ))
  31771. characterMakers.push(() => makeCharacter(
  31772. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31773. {
  31774. front: {
  31775. height: math.unit(6, "feet"),
  31776. weight: math.unit(150, "lb"),
  31777. name: "Front",
  31778. image: {
  31779. source: "./media/characters/pidge/front.svg",
  31780. extra: 1936/1820,
  31781. bottom: 0/1936
  31782. }
  31783. },
  31784. back: {
  31785. height: math.unit(6, "feet"),
  31786. weight: math.unit(150, "lb"),
  31787. name: "Back",
  31788. image: {
  31789. source: "./media/characters/pidge/back.svg",
  31790. extra: 1938/1843,
  31791. bottom: 0/1938
  31792. }
  31793. },
  31794. casual: {
  31795. height: math.unit(6, "feet"),
  31796. weight: math.unit(150, "lb"),
  31797. name: "Casual",
  31798. image: {
  31799. source: "./media/characters/pidge/casual.svg",
  31800. extra: 1936/1820,
  31801. bottom: 0/1936
  31802. }
  31803. },
  31804. tech: {
  31805. height: math.unit(6, "feet"),
  31806. weight: math.unit(150, "lb"),
  31807. name: "Tech",
  31808. image: {
  31809. source: "./media/characters/pidge/tech.svg",
  31810. extra: 1802/1682,
  31811. bottom: 0/1802
  31812. }
  31813. },
  31814. head: {
  31815. height: math.unit(1.61, "feet"),
  31816. name: "Head",
  31817. image: {
  31818. source: "./media/characters/pidge/head.svg"
  31819. }
  31820. },
  31821. collar: {
  31822. height: math.unit(0.82, "feet"),
  31823. name: "Collar",
  31824. image: {
  31825. source: "./media/characters/pidge/collar.svg"
  31826. }
  31827. },
  31828. },
  31829. [
  31830. {
  31831. name: "Macro",
  31832. height: math.unit(2, "mile"),
  31833. default: true
  31834. },
  31835. {
  31836. name: "PUPPY",
  31837. height: math.unit(20, "miles")
  31838. },
  31839. ]
  31840. ))
  31841. characterMakers.push(() => makeCharacter(
  31842. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31843. {
  31844. front: {
  31845. height: math.unit(6, "feet"),
  31846. weight: math.unit(150, "lb"),
  31847. name: "Front",
  31848. image: {
  31849. source: "./media/characters/en/front.svg",
  31850. extra: 1697 / 1563,
  31851. bottom: 103 / 1800
  31852. }
  31853. },
  31854. back: {
  31855. height: math.unit(6, "feet"),
  31856. weight: math.unit(150, "lb"),
  31857. name: "Back",
  31858. image: {
  31859. source: "./media/characters/en/back.svg",
  31860. extra: 1700 / 1570,
  31861. bottom: 51 / 1751
  31862. }
  31863. },
  31864. frontDressed: {
  31865. height: math.unit(6, "feet"),
  31866. weight: math.unit(150, "lb"),
  31867. name: "Front (Dressed)",
  31868. image: {
  31869. source: "./media/characters/en/front-dressed.svg",
  31870. extra: 1697 / 1563,
  31871. bottom: 103 / 1800
  31872. }
  31873. },
  31874. backDressed: {
  31875. height: math.unit(6, "feet"),
  31876. weight: math.unit(150, "lb"),
  31877. name: "Back (Dressed)",
  31878. image: {
  31879. source: "./media/characters/en/back-dressed.svg",
  31880. extra: 1700 / 1570,
  31881. bottom: 51 / 1751
  31882. }
  31883. },
  31884. },
  31885. [
  31886. {
  31887. name: "Macro",
  31888. height: math.unit(210, "feet"),
  31889. default: true
  31890. },
  31891. ]
  31892. ))
  31893. characterMakers.push(() => makeCharacter(
  31894. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31895. {
  31896. front: {
  31897. height: math.unit(6, "feet"),
  31898. weight: math.unit(150, "lb"),
  31899. name: "Front",
  31900. image: {
  31901. source: "./media/characters/haze-orris/front.svg",
  31902. extra: 3975 / 3525,
  31903. bottom: 137 / 4112
  31904. }
  31905. },
  31906. },
  31907. [
  31908. {
  31909. name: "Micro",
  31910. height: math.unit(150, "mm"),
  31911. default: true
  31912. },
  31913. ]
  31914. ))
  31915. characterMakers.push(() => makeCharacter(
  31916. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31917. {
  31918. front: {
  31919. height: math.unit(6, "feet"),
  31920. weight: math.unit(150, "lb"),
  31921. name: "Front",
  31922. image: {
  31923. source: "./media/characters/casselene-yaro/front.svg",
  31924. extra: 4721 / 4541,
  31925. bottom: 82 / 4803
  31926. }
  31927. },
  31928. back: {
  31929. height: math.unit(6, "feet"),
  31930. weight: math.unit(150, "lb"),
  31931. name: "Back",
  31932. image: {
  31933. source: "./media/characters/casselene-yaro/back.svg",
  31934. extra: 4569 / 4377,
  31935. bottom: 69 / 4638
  31936. }
  31937. },
  31938. dressed: {
  31939. height: math.unit(6, "feet"),
  31940. weight: math.unit(150, "lb"),
  31941. name: "Dressed",
  31942. image: {
  31943. source: "./media/characters/casselene-yaro/dressed.svg",
  31944. extra: 4721 / 4541,
  31945. bottom: 82 / 4803
  31946. }
  31947. },
  31948. maw: {
  31949. height: math.unit(1, "feet"),
  31950. name: "Maw",
  31951. image: {
  31952. source: "./media/characters/casselene-yaro/maw.svg"
  31953. }
  31954. },
  31955. },
  31956. [
  31957. {
  31958. name: "Macro",
  31959. height: math.unit(190, "feet"),
  31960. default: true
  31961. },
  31962. ]
  31963. ))
  31964. characterMakers.push(() => makeCharacter(
  31965. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31966. {
  31967. front: {
  31968. height: math.unit(10, "feet"),
  31969. weight: math.unit(15015, "lb"),
  31970. name: "Front",
  31971. image: {
  31972. source: "./media/characters/platine/front.svg",
  31973. extra: 1741/1650,
  31974. bottom: 84/1825
  31975. }
  31976. },
  31977. side: {
  31978. height: math.unit(10, "feet"),
  31979. weight: math.unit(15015, "lb"),
  31980. name: "Side",
  31981. image: {
  31982. source: "./media/characters/platine/side.svg",
  31983. extra: 1790/1705,
  31984. bottom: 29/1819
  31985. }
  31986. },
  31987. },
  31988. [
  31989. {
  31990. name: "Normal",
  31991. height: math.unit(10, "feet"),
  31992. default: true
  31993. },
  31994. {
  31995. name: "Macro",
  31996. height: math.unit(100, "feet")
  31997. },
  31998. {
  31999. name: "Megamacro",
  32000. height: math.unit(1000, "feet")
  32001. },
  32002. ]
  32003. ))
  32004. characterMakers.push(() => makeCharacter(
  32005. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32006. {
  32007. front: {
  32008. height: math.unit(15 + 5 / 12, "feet"),
  32009. weight: math.unit(4600, "lb"),
  32010. name: "Front",
  32011. image: {
  32012. source: "./media/characters/neapolitan-ananassa/front.svg",
  32013. extra: 2903 / 2736,
  32014. bottom: 0 / 2903
  32015. }
  32016. },
  32017. side: {
  32018. height: math.unit(15 + 5 / 12, "feet"),
  32019. weight: math.unit(4600, "lb"),
  32020. name: "Side",
  32021. image: {
  32022. source: "./media/characters/neapolitan-ananassa/side.svg",
  32023. extra: 2925 / 2719,
  32024. bottom: 0 / 2925
  32025. }
  32026. },
  32027. back: {
  32028. height: math.unit(15 + 5 / 12, "feet"),
  32029. weight: math.unit(4600, "lb"),
  32030. name: "Back",
  32031. image: {
  32032. source: "./media/characters/neapolitan-ananassa/back.svg",
  32033. extra: 2903 / 2736,
  32034. bottom: 0 / 2903
  32035. }
  32036. },
  32037. },
  32038. [
  32039. {
  32040. name: "Normal",
  32041. height: math.unit(15 + 5 / 12, "feet"),
  32042. default: true
  32043. },
  32044. {
  32045. name: "Post-Millenium",
  32046. height: math.unit(35 + 5 / 12, "feet")
  32047. },
  32048. {
  32049. name: "Post-Era",
  32050. height: math.unit(450 + 5 / 12, "feet")
  32051. },
  32052. ]
  32053. ))
  32054. characterMakers.push(() => makeCharacter(
  32055. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32056. {
  32057. front: {
  32058. height: math.unit(300, "meters"),
  32059. weight: math.unit(125000, "tonnes"),
  32060. name: "Front",
  32061. image: {
  32062. source: "./media/characters/pazuzu/front.svg",
  32063. extra: 877 / 794,
  32064. bottom: 47 / 924
  32065. }
  32066. },
  32067. },
  32068. [
  32069. {
  32070. name: "Macro",
  32071. height: math.unit(300, "meters"),
  32072. default: true
  32073. },
  32074. ]
  32075. ))
  32076. characterMakers.push(() => makeCharacter(
  32077. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32078. {
  32079. side: {
  32080. height: math.unit(10 + 7 / 12, "feet"),
  32081. weight: math.unit(2.5, "tons"),
  32082. name: "Side",
  32083. image: {
  32084. source: "./media/characters/aasha/side.svg",
  32085. extra: 1345 / 1245,
  32086. bottom: 111 / 1456
  32087. }
  32088. },
  32089. back: {
  32090. height: math.unit(10 + 7 / 12, "feet"),
  32091. weight: math.unit(2.5, "tons"),
  32092. name: "Back",
  32093. image: {
  32094. source: "./media/characters/aasha/back.svg",
  32095. extra: 1133 / 1057,
  32096. bottom: 257 / 1390
  32097. }
  32098. },
  32099. },
  32100. [
  32101. {
  32102. name: "Normal",
  32103. height: math.unit(10 + 7 / 12, "feet"),
  32104. default: true
  32105. },
  32106. ]
  32107. ))
  32108. characterMakers.push(() => makeCharacter(
  32109. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32110. {
  32111. front: {
  32112. height: math.unit(6 + 3 / 12, "feet"),
  32113. name: "Front",
  32114. image: {
  32115. source: "./media/characters/nevan/front.svg",
  32116. extra: 704 / 704,
  32117. bottom: 28 / 732
  32118. }
  32119. },
  32120. back: {
  32121. height: math.unit(6 + 3 / 12, "feet"),
  32122. name: "Back",
  32123. image: {
  32124. source: "./media/characters/nevan/back.svg",
  32125. extra: 714 / 714,
  32126. bottom: 21 / 735
  32127. }
  32128. },
  32129. frontFlaccid: {
  32130. height: math.unit(6 + 3 / 12, "feet"),
  32131. name: "Front (Flaccid)",
  32132. image: {
  32133. source: "./media/characters/nevan/front-flaccid.svg",
  32134. extra: 704 / 704,
  32135. bottom: 28 / 732
  32136. }
  32137. },
  32138. frontErect: {
  32139. height: math.unit(6 + 3 / 12, "feet"),
  32140. name: "Front (Erect)",
  32141. image: {
  32142. source: "./media/characters/nevan/front-erect.svg",
  32143. extra: 704 / 704,
  32144. bottom: 28 / 732
  32145. }
  32146. },
  32147. backFlaccid: {
  32148. height: math.unit(6 + 3 / 12, "feet"),
  32149. name: "Back (Flaccid)",
  32150. image: {
  32151. source: "./media/characters/nevan/back-flaccid.svg",
  32152. extra: 714 / 714,
  32153. bottom: 21 / 735
  32154. }
  32155. },
  32156. },
  32157. [
  32158. {
  32159. name: "Normal",
  32160. height: math.unit(6 + 3 / 12, "feet"),
  32161. default: true
  32162. },
  32163. ]
  32164. ))
  32165. characterMakers.push(() => makeCharacter(
  32166. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32167. {
  32168. front: {
  32169. height: math.unit(4, "feet"),
  32170. name: "Front",
  32171. image: {
  32172. source: "./media/characters/arhan/front.svg",
  32173. extra: 3368 / 3133,
  32174. bottom: 0 / 3368
  32175. }
  32176. },
  32177. side: {
  32178. height: math.unit(4, "feet"),
  32179. name: "Side",
  32180. image: {
  32181. source: "./media/characters/arhan/side.svg",
  32182. extra: 3347 / 3105,
  32183. bottom: 0 / 3347
  32184. }
  32185. },
  32186. tongue: {
  32187. height: math.unit(1.42, "feet"),
  32188. name: "Tongue",
  32189. image: {
  32190. source: "./media/characters/arhan/tongue.svg"
  32191. }
  32192. },
  32193. head: {
  32194. height: math.unit(0.85, "feet"),
  32195. name: "Head",
  32196. image: {
  32197. source: "./media/characters/arhan/head.svg"
  32198. }
  32199. },
  32200. },
  32201. [
  32202. {
  32203. name: "Normal",
  32204. height: math.unit(4, "feet"),
  32205. default: true
  32206. },
  32207. ]
  32208. ))
  32209. characterMakers.push(() => makeCharacter(
  32210. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32211. {
  32212. front: {
  32213. height: math.unit(5 + 7.5 / 12, "feet"),
  32214. weight: math.unit(120, "lb"),
  32215. name: "Front",
  32216. image: {
  32217. source: "./media/characters/digi-duncan/front.svg",
  32218. extra: 330 / 326,
  32219. bottom: 16 / 346
  32220. }
  32221. },
  32222. side: {
  32223. height: math.unit(5 + 7.5 / 12, "feet"),
  32224. weight: math.unit(120, "lb"),
  32225. name: "Side",
  32226. image: {
  32227. source: "./media/characters/digi-duncan/side.svg",
  32228. extra: 341 / 337,
  32229. bottom: 1 / 342
  32230. }
  32231. },
  32232. back: {
  32233. height: math.unit(5 + 7.5 / 12, "feet"),
  32234. weight: math.unit(120, "lb"),
  32235. name: "Back",
  32236. image: {
  32237. source: "./media/characters/digi-duncan/back.svg",
  32238. extra: 330 / 326,
  32239. bottom: 12 / 342
  32240. }
  32241. },
  32242. },
  32243. [
  32244. {
  32245. name: "Speck",
  32246. height: math.unit(0.25, "mm")
  32247. },
  32248. {
  32249. name: "Micro",
  32250. height: math.unit(5, "mm")
  32251. },
  32252. {
  32253. name: "Tiny",
  32254. height: math.unit(0.5, "inches"),
  32255. default: true
  32256. },
  32257. {
  32258. name: "Human",
  32259. height: math.unit(5 + 7.5 / 12, "feet")
  32260. },
  32261. {
  32262. name: "Minigiant",
  32263. height: math.unit(8 + 5.25, "feet")
  32264. },
  32265. {
  32266. name: "Giant",
  32267. height: math.unit(2000, "feet")
  32268. },
  32269. {
  32270. name: "Mega",
  32271. height: math.unit(371.1, "miles")
  32272. },
  32273. ]
  32274. ))
  32275. characterMakers.push(() => makeCharacter(
  32276. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32277. {
  32278. front: {
  32279. height: math.unit(2, "meters"),
  32280. weight: math.unit(350, "kg"),
  32281. name: "Front",
  32282. image: {
  32283. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32284. extra: 898 / 838,
  32285. bottom: 9 / 907
  32286. }
  32287. },
  32288. },
  32289. [
  32290. {
  32291. name: "Micro",
  32292. height: math.unit(8, "meters")
  32293. },
  32294. {
  32295. name: "Normal",
  32296. height: math.unit(50, "meters"),
  32297. default: true
  32298. },
  32299. {
  32300. name: "Macro",
  32301. height: math.unit(500, "meters")
  32302. },
  32303. ]
  32304. ))
  32305. characterMakers.push(() => makeCharacter(
  32306. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32307. {
  32308. front: {
  32309. height: math.unit(6 + 6 / 12, "feet"),
  32310. name: "Front",
  32311. image: {
  32312. source: "./media/characters/khardesh/front.svg",
  32313. extra: 1788/1596,
  32314. bottom: 66/1854
  32315. }
  32316. },
  32317. back: {
  32318. height: math.unit(6 + 6 / 12, "feet"),
  32319. name: "Back",
  32320. image: {
  32321. source: "./media/characters/khardesh/back.svg",
  32322. extra: 1781/1584,
  32323. bottom: 68/1849
  32324. }
  32325. },
  32326. },
  32327. [
  32328. {
  32329. name: "Normal",
  32330. height: math.unit(6 + 6 / 12, "feet"),
  32331. default: true
  32332. },
  32333. {
  32334. name: "Normal+",
  32335. height: math.unit(4, "meters")
  32336. },
  32337. {
  32338. name: "Macro",
  32339. height: math.unit(50, "meters")
  32340. },
  32341. {
  32342. name: "Macro+",
  32343. height: math.unit(100, "meters")
  32344. },
  32345. {
  32346. name: "Megamacro",
  32347. height: math.unit(20, "km")
  32348. },
  32349. ]
  32350. ))
  32351. characterMakers.push(() => makeCharacter(
  32352. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32353. {
  32354. front: {
  32355. height: math.unit(6, "feet"),
  32356. weight: math.unit(150, "lb"),
  32357. name: "Front",
  32358. image: {
  32359. source: "./media/characters/kosho/front.svg",
  32360. extra: 1847 / 1847,
  32361. bottom: 86 / 1933
  32362. }
  32363. },
  32364. },
  32365. [
  32366. {
  32367. name: "Second-stage micro",
  32368. height: math.unit(0.5, "inches")
  32369. },
  32370. {
  32371. name: "First-stage micro",
  32372. height: math.unit(6, "inches")
  32373. },
  32374. {
  32375. name: "Normal",
  32376. height: math.unit(6, "feet"),
  32377. default: true
  32378. },
  32379. {
  32380. name: "First-stage macro",
  32381. height: math.unit(72, "feet")
  32382. },
  32383. {
  32384. name: "Second-stage macro",
  32385. height: math.unit(864, "feet")
  32386. },
  32387. ]
  32388. ))
  32389. characterMakers.push(() => makeCharacter(
  32390. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32391. {
  32392. normal: {
  32393. height: math.unit(4 + 6 / 12, "feet"),
  32394. name: "Normal",
  32395. image: {
  32396. source: "./media/characters/hydra/normal.svg",
  32397. extra: 2833 / 2634,
  32398. bottom: 68 / 2901
  32399. }
  32400. },
  32401. smol: {
  32402. height: math.unit(0.705, "inches"),
  32403. name: "Smol",
  32404. image: {
  32405. source: "./media/characters/hydra/smol.svg",
  32406. extra: 2715 / 2540,
  32407. bottom: 0 / 2715
  32408. }
  32409. },
  32410. },
  32411. [
  32412. {
  32413. name: "Normal",
  32414. height: math.unit(4 + 6 / 12, "feet"),
  32415. default: true
  32416. }
  32417. ]
  32418. ))
  32419. characterMakers.push(() => makeCharacter(
  32420. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32421. {
  32422. front: {
  32423. height: math.unit(0.6, "cm"),
  32424. name: "Front",
  32425. image: {
  32426. source: "./media/characters/daz/front.svg",
  32427. extra: 1682 / 1164,
  32428. bottom: 42 / 1724
  32429. }
  32430. },
  32431. },
  32432. [
  32433. {
  32434. name: "Normal",
  32435. height: math.unit(0.6, "cm"),
  32436. default: true
  32437. },
  32438. ]
  32439. ))
  32440. characterMakers.push(() => makeCharacter(
  32441. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32442. {
  32443. front: {
  32444. height: math.unit(6, "feet"),
  32445. weight: math.unit(235, "lb"),
  32446. name: "Front",
  32447. image: {
  32448. source: "./media/characters/theo-pangolin/front.svg",
  32449. extra: 1996 / 1969,
  32450. bottom: 115 / 2111
  32451. }
  32452. },
  32453. back: {
  32454. height: math.unit(6, "feet"),
  32455. weight: math.unit(235, "lb"),
  32456. name: "Back",
  32457. image: {
  32458. source: "./media/characters/theo-pangolin/back.svg",
  32459. extra: 1979 / 1979,
  32460. bottom: 40 / 2019
  32461. }
  32462. },
  32463. feral: {
  32464. height: math.unit(2, "feet"),
  32465. weight: math.unit(30, "lb"),
  32466. name: "Feral",
  32467. image: {
  32468. source: "./media/characters/theo-pangolin/feral.svg",
  32469. extra: 803 / 791,
  32470. bottom: 181 / 984
  32471. }
  32472. },
  32473. footFive: {
  32474. height: math.unit(1.43, "feet"),
  32475. name: "Foot (Five Toes)",
  32476. image: {
  32477. source: "./media/characters/theo-pangolin/foot-five.svg"
  32478. }
  32479. },
  32480. footFour: {
  32481. height: math.unit(1.43, "feet"),
  32482. name: "Foot (Four Toes)",
  32483. image: {
  32484. source: "./media/characters/theo-pangolin/foot-four.svg"
  32485. }
  32486. },
  32487. handFour: {
  32488. height: math.unit(0.81, "feet"),
  32489. name: "Hand (Four Fingers)",
  32490. image: {
  32491. source: "./media/characters/theo-pangolin/hand-four.svg"
  32492. }
  32493. },
  32494. handThree: {
  32495. height: math.unit(0.81, "feet"),
  32496. name: "Hand (Three Fingers)",
  32497. image: {
  32498. source: "./media/characters/theo-pangolin/hand-three.svg"
  32499. }
  32500. },
  32501. headFront: {
  32502. height: math.unit(1.37, "feet"),
  32503. name: "Head (Front)",
  32504. image: {
  32505. source: "./media/characters/theo-pangolin/head-front.svg"
  32506. }
  32507. },
  32508. headSide: {
  32509. height: math.unit(1.43, "feet"),
  32510. name: "Head (Side)",
  32511. image: {
  32512. source: "./media/characters/theo-pangolin/head-side.svg"
  32513. }
  32514. },
  32515. tongue: {
  32516. height: math.unit(2.29, "feet"),
  32517. name: "Tongue",
  32518. image: {
  32519. source: "./media/characters/theo-pangolin/tongue.svg"
  32520. }
  32521. },
  32522. },
  32523. [
  32524. {
  32525. name: "Normal",
  32526. height: math.unit(6, "feet")
  32527. },
  32528. {
  32529. name: "Macro",
  32530. height: math.unit(400, "feet"),
  32531. default: true
  32532. },
  32533. ]
  32534. ))
  32535. characterMakers.push(() => makeCharacter(
  32536. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32537. {
  32538. front: {
  32539. height: math.unit(6, "inches"),
  32540. weight: math.unit(0.036, "kg"),
  32541. name: "Front",
  32542. image: {
  32543. source: "./media/characters/renée/front.svg",
  32544. extra: 900 / 886,
  32545. bottom: 8 / 908
  32546. }
  32547. },
  32548. },
  32549. [
  32550. {
  32551. name: "Nano",
  32552. height: math.unit(1, "nm")
  32553. },
  32554. {
  32555. name: "Micro",
  32556. height: math.unit(1, "mm")
  32557. },
  32558. {
  32559. name: "Normal",
  32560. height: math.unit(6, "inches")
  32561. },
  32562. {
  32563. name: "Macro",
  32564. height: math.unit(2000, "feet"),
  32565. default: true
  32566. },
  32567. {
  32568. name: "Megamacro",
  32569. height: math.unit(2, "km")
  32570. },
  32571. {
  32572. name: "Gigamacro",
  32573. height: math.unit(2000, "km")
  32574. },
  32575. {
  32576. name: "Teramacro",
  32577. height: math.unit(250000, "km")
  32578. },
  32579. ]
  32580. ))
  32581. characterMakers.push(() => makeCharacter(
  32582. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32583. {
  32584. front: {
  32585. height: math.unit(4, "meters"),
  32586. weight: math.unit(150, "kg"),
  32587. name: "Front",
  32588. image: {
  32589. source: "./media/characters/caledvwlch/front.svg",
  32590. extra: 1757/1537,
  32591. bottom: 31/1788
  32592. }
  32593. },
  32594. side: {
  32595. height: math.unit(4, "meters"),
  32596. weight: math.unit(150, "kg"),
  32597. name: "Side",
  32598. image: {
  32599. source: "./media/characters/caledvwlch/side.svg",
  32600. extra: 1605 / 1536,
  32601. bottom: 31 / 1636
  32602. }
  32603. },
  32604. back: {
  32605. height: math.unit(4, "meters"),
  32606. weight: math.unit(150, "kg"),
  32607. name: "Back",
  32608. image: {
  32609. source: "./media/characters/caledvwlch/back.svg",
  32610. extra: 1635 / 1565,
  32611. bottom: 27 / 1662
  32612. }
  32613. },
  32614. },
  32615. [
  32616. {
  32617. name: "\"Incognito\"",
  32618. height: math.unit(4, "meters")
  32619. },
  32620. {
  32621. name: "Small rampage",
  32622. height: math.unit(600, "meters")
  32623. },
  32624. {
  32625. name: "Mega",
  32626. height: math.unit(30, "km")
  32627. },
  32628. {
  32629. name: "Home-size",
  32630. height: math.unit(50, "km"),
  32631. default: true
  32632. },
  32633. {
  32634. name: "Giga",
  32635. height: math.unit(300, "km")
  32636. },
  32637. {
  32638. name: "Lounging",
  32639. height: math.unit(11000, "km")
  32640. },
  32641. {
  32642. name: "Planet snacking",
  32643. height: math.unit(2000000, "km")
  32644. },
  32645. ]
  32646. ))
  32647. characterMakers.push(() => makeCharacter(
  32648. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32649. {
  32650. front: {
  32651. height: math.unit(6, "feet"),
  32652. weight: math.unit(215, "lb"),
  32653. name: "Front",
  32654. image: {
  32655. source: "./media/characters/sapphire-svell/front.svg",
  32656. extra: 495 / 455,
  32657. bottom: 20 / 515
  32658. }
  32659. },
  32660. back: {
  32661. height: math.unit(6, "feet"),
  32662. weight: math.unit(216, "lb"),
  32663. name: "Back",
  32664. image: {
  32665. source: "./media/characters/sapphire-svell/back.svg",
  32666. extra: 497 / 477,
  32667. bottom: 7 / 504
  32668. }
  32669. },
  32670. maw: {
  32671. height: math.unit(1.57, "feet"),
  32672. name: "Maw",
  32673. image: {
  32674. source: "./media/characters/sapphire-svell/maw.svg"
  32675. }
  32676. },
  32677. foot: {
  32678. height: math.unit(1.07, "feet"),
  32679. name: "Foot",
  32680. image: {
  32681. source: "./media/characters/sapphire-svell/foot.svg"
  32682. }
  32683. },
  32684. toering: {
  32685. height: math.unit(1.7, "inch"),
  32686. name: "Toering",
  32687. image: {
  32688. source: "./media/characters/sapphire-svell/toering.svg"
  32689. }
  32690. },
  32691. },
  32692. [
  32693. {
  32694. name: "Normal",
  32695. height: math.unit(300, "feet"),
  32696. default: true
  32697. },
  32698. {
  32699. name: "Augmented",
  32700. height: math.unit(1250, "feet")
  32701. },
  32702. {
  32703. name: "Unleashed",
  32704. height: math.unit(3000, "feet")
  32705. },
  32706. ]
  32707. ))
  32708. characterMakers.push(() => makeCharacter(
  32709. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32710. {
  32711. side: {
  32712. height: math.unit(2 + 3 / 12, "feet"),
  32713. weight: math.unit(110, "lb"),
  32714. name: "Side",
  32715. image: {
  32716. source: "./media/characters/glitch-flux/side.svg",
  32717. extra: 997 / 805,
  32718. bottom: 20 / 1017
  32719. }
  32720. },
  32721. },
  32722. [
  32723. {
  32724. name: "Normal",
  32725. height: math.unit(2 + 3 / 12, "feet"),
  32726. default: true
  32727. },
  32728. ]
  32729. ))
  32730. characterMakers.push(() => makeCharacter(
  32731. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32732. {
  32733. front: {
  32734. height: math.unit(4, "meters"),
  32735. name: "Front",
  32736. image: {
  32737. source: "./media/characters/mid/front.svg",
  32738. extra: 507 / 476,
  32739. bottom: 17 / 524
  32740. }
  32741. },
  32742. back: {
  32743. height: math.unit(4, "meters"),
  32744. name: "Back",
  32745. image: {
  32746. source: "./media/characters/mid/back.svg",
  32747. extra: 519 / 487,
  32748. bottom: 7 / 526
  32749. }
  32750. },
  32751. stuck: {
  32752. height: math.unit(2.2, "meters"),
  32753. name: "Stuck",
  32754. image: {
  32755. source: "./media/characters/mid/stuck.svg",
  32756. extra: 1951 / 1869,
  32757. bottom: 88 / 2039
  32758. }
  32759. }
  32760. },
  32761. [
  32762. {
  32763. name: "Normal",
  32764. height: math.unit(4, "meters"),
  32765. default: true
  32766. },
  32767. {
  32768. name: "Big",
  32769. height: math.unit(10, "meters")
  32770. },
  32771. {
  32772. name: "Macro",
  32773. height: math.unit(800, "meters")
  32774. },
  32775. {
  32776. name: "Megamacro",
  32777. height: math.unit(100, "km")
  32778. },
  32779. {
  32780. name: "Overgrown",
  32781. height: math.unit(1, "parsec")
  32782. },
  32783. ]
  32784. ))
  32785. characterMakers.push(() => makeCharacter(
  32786. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32787. {
  32788. front: {
  32789. height: math.unit(2.5, "meters"),
  32790. weight: math.unit(225, "kg"),
  32791. name: "Front",
  32792. image: {
  32793. source: "./media/characters/iris/front.svg",
  32794. extra: 3348 / 3251,
  32795. bottom: 205 / 3553
  32796. }
  32797. },
  32798. maw: {
  32799. height: math.unit(0.56, "meter"),
  32800. name: "Maw",
  32801. image: {
  32802. source: "./media/characters/iris/maw.svg"
  32803. }
  32804. },
  32805. },
  32806. [
  32807. {
  32808. name: "Mewter cat",
  32809. height: math.unit(1.2, "meters")
  32810. },
  32811. {
  32812. name: "Normal",
  32813. height: math.unit(2.5, "meters"),
  32814. default: true
  32815. },
  32816. {
  32817. name: "Minimacro",
  32818. height: math.unit(18, "feet")
  32819. },
  32820. {
  32821. name: "Macro",
  32822. height: math.unit(140, "feet")
  32823. },
  32824. {
  32825. name: "Macro+",
  32826. height: math.unit(180, "meters")
  32827. },
  32828. {
  32829. name: "Megamacro",
  32830. height: math.unit(2746, "meters")
  32831. },
  32832. ]
  32833. ))
  32834. characterMakers.push(() => makeCharacter(
  32835. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32836. {
  32837. front: {
  32838. height: math.unit(6, "feet"),
  32839. weight: math.unit(135, "lb"),
  32840. name: "Front",
  32841. image: {
  32842. source: "./media/characters/axel/front.svg",
  32843. extra: 908 / 908,
  32844. bottom: 58 / 966
  32845. }
  32846. },
  32847. side: {
  32848. height: math.unit(6, "feet"),
  32849. weight: math.unit(135, "lb"),
  32850. name: "Side",
  32851. image: {
  32852. source: "./media/characters/axel/side.svg",
  32853. extra: 958 / 958,
  32854. bottom: 11 / 969
  32855. }
  32856. },
  32857. back: {
  32858. height: math.unit(6, "feet"),
  32859. weight: math.unit(135, "lb"),
  32860. name: "Back",
  32861. image: {
  32862. source: "./media/characters/axel/back.svg",
  32863. extra: 887 / 887,
  32864. bottom: 34 / 921
  32865. }
  32866. },
  32867. head: {
  32868. height: math.unit(1.07, "feet"),
  32869. name: "Head",
  32870. image: {
  32871. source: "./media/characters/axel/head.svg"
  32872. }
  32873. },
  32874. beak: {
  32875. height: math.unit(1.4, "feet"),
  32876. name: "Beak",
  32877. image: {
  32878. source: "./media/characters/axel/beak.svg"
  32879. }
  32880. },
  32881. beakSide: {
  32882. height: math.unit(1.4, "feet"),
  32883. name: "Beak Side",
  32884. image: {
  32885. source: "./media/characters/axel/beak-side.svg"
  32886. }
  32887. },
  32888. sheath: {
  32889. height: math.unit(0.5, "feet"),
  32890. name: "Sheath",
  32891. image: {
  32892. source: "./media/characters/axel/sheath.svg"
  32893. }
  32894. },
  32895. dick: {
  32896. height: math.unit(0.98, "feet"),
  32897. name: "Dick",
  32898. image: {
  32899. source: "./media/characters/axel/dick.svg"
  32900. }
  32901. },
  32902. },
  32903. [
  32904. {
  32905. name: "Macro",
  32906. height: math.unit(68, "meters"),
  32907. default: true
  32908. },
  32909. ]
  32910. ))
  32911. characterMakers.push(() => makeCharacter(
  32912. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32913. {
  32914. front: {
  32915. height: math.unit(3.5, "meters"),
  32916. weight: math.unit(1200, "kg"),
  32917. name: "Front",
  32918. image: {
  32919. source: "./media/characters/joanna/front.svg",
  32920. extra: 1596 / 1488,
  32921. bottom: 29 / 1625
  32922. }
  32923. },
  32924. back: {
  32925. height: math.unit(3.5, "meters"),
  32926. weight: math.unit(1200, "kg"),
  32927. name: "Back",
  32928. image: {
  32929. source: "./media/characters/joanna/back.svg",
  32930. extra: 1594 / 1495,
  32931. bottom: 26 / 1620
  32932. }
  32933. },
  32934. frontShorts: {
  32935. height: math.unit(3.5, "meters"),
  32936. weight: math.unit(1200, "kg"),
  32937. name: "Front (Shorts)",
  32938. image: {
  32939. source: "./media/characters/joanna/front-shorts.svg",
  32940. extra: 1596 / 1488,
  32941. bottom: 29 / 1625
  32942. }
  32943. },
  32944. frontBiker: {
  32945. height: math.unit(3.5, "meters"),
  32946. weight: math.unit(1200, "kg"),
  32947. name: "Front (Biker)",
  32948. image: {
  32949. source: "./media/characters/joanna/front-biker.svg",
  32950. extra: 1596 / 1488,
  32951. bottom: 29 / 1625
  32952. }
  32953. },
  32954. backBiker: {
  32955. height: math.unit(3.5, "meters"),
  32956. weight: math.unit(1200, "kg"),
  32957. name: "Back (Biker)",
  32958. image: {
  32959. source: "./media/characters/joanna/back-biker.svg",
  32960. extra: 1594 / 1495,
  32961. bottom: 88 / 1682
  32962. }
  32963. },
  32964. bikeLeft: {
  32965. height: math.unit(2.4, "meters"),
  32966. weight: math.unit(1600, "kg"),
  32967. name: "Bike (Left)",
  32968. image: {
  32969. source: "./media/characters/joanna/bike-left.svg",
  32970. extra: 720 / 720,
  32971. bottom: 8 / 728
  32972. }
  32973. },
  32974. bikeRight: {
  32975. height: math.unit(2.4, "meters"),
  32976. weight: math.unit(1600, "kg"),
  32977. name: "Bike (Right)",
  32978. image: {
  32979. source: "./media/characters/joanna/bike-right.svg",
  32980. extra: 720 / 720,
  32981. bottom: 8 / 728
  32982. }
  32983. },
  32984. },
  32985. [
  32986. {
  32987. name: "Incognito",
  32988. height: math.unit(3.5, "meters")
  32989. },
  32990. {
  32991. name: "Casual Big",
  32992. height: math.unit(200, "meters")
  32993. },
  32994. {
  32995. name: "Macro",
  32996. height: math.unit(600, "meters")
  32997. },
  32998. {
  32999. name: "Original",
  33000. height: math.unit(20, "km"),
  33001. default: true
  33002. },
  33003. {
  33004. name: "Giga",
  33005. height: math.unit(400, "km")
  33006. },
  33007. {
  33008. name: "Lounging",
  33009. height: math.unit(1500, "km")
  33010. },
  33011. {
  33012. name: "Planetary",
  33013. height: math.unit(200000, "km")
  33014. },
  33015. ]
  33016. ))
  33017. characterMakers.push(() => makeCharacter(
  33018. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33019. {
  33020. front: {
  33021. height: math.unit(6, "feet"),
  33022. weight: math.unit(150, "lb"),
  33023. name: "Front",
  33024. image: {
  33025. source: "./media/characters/hugo-sigil/front.svg",
  33026. extra: 522 / 500,
  33027. bottom: 2 / 524
  33028. }
  33029. },
  33030. back: {
  33031. height: math.unit(6, "feet"),
  33032. weight: math.unit(150, "lb"),
  33033. name: "Back",
  33034. image: {
  33035. source: "./media/characters/hugo-sigil/back.svg",
  33036. extra: 519 / 495,
  33037. bottom: 5 / 524
  33038. }
  33039. },
  33040. maw: {
  33041. height: math.unit(1.4, "feet"),
  33042. weight: math.unit(150, "lb"),
  33043. name: "Maw",
  33044. image: {
  33045. source: "./media/characters/hugo-sigil/maw.svg"
  33046. }
  33047. },
  33048. feet: {
  33049. height: math.unit(1.56, "feet"),
  33050. weight: math.unit(150, "lb"),
  33051. name: "Feet",
  33052. image: {
  33053. source: "./media/characters/hugo-sigil/feet.svg",
  33054. extra: 177 / 177,
  33055. bottom: 12 / 189
  33056. }
  33057. },
  33058. },
  33059. [
  33060. {
  33061. name: "Normal",
  33062. height: math.unit(6, "feet")
  33063. },
  33064. {
  33065. name: "Macro",
  33066. height: math.unit(200, "feet"),
  33067. default: true
  33068. },
  33069. ]
  33070. ))
  33071. characterMakers.push(() => makeCharacter(
  33072. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33073. {
  33074. front: {
  33075. height: math.unit(6, "feet"),
  33076. weight: math.unit(150, "lb"),
  33077. name: "Front",
  33078. image: {
  33079. source: "./media/characters/peri/front.svg",
  33080. extra: 2354 / 2233,
  33081. bottom: 49 / 2403
  33082. }
  33083. },
  33084. },
  33085. [
  33086. {
  33087. name: "Really Small",
  33088. height: math.unit(1, "nm")
  33089. },
  33090. {
  33091. name: "Micro",
  33092. height: math.unit(4, "inches")
  33093. },
  33094. {
  33095. name: "Normal",
  33096. height: math.unit(7, "inches"),
  33097. default: true
  33098. },
  33099. {
  33100. name: "Macro",
  33101. height: math.unit(400, "feet")
  33102. },
  33103. {
  33104. name: "Megamacro",
  33105. height: math.unit(100, "miles")
  33106. },
  33107. ]
  33108. ))
  33109. characterMakers.push(() => makeCharacter(
  33110. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33111. {
  33112. frontSlim: {
  33113. height: math.unit(7, "feet"),
  33114. name: "Front (Slim)",
  33115. image: {
  33116. source: "./media/characters/issilora/front-slim.svg",
  33117. extra: 529 / 449,
  33118. bottom: 53 / 582
  33119. }
  33120. },
  33121. sideSlim: {
  33122. height: math.unit(7, "feet"),
  33123. name: "Side (Slim)",
  33124. image: {
  33125. source: "./media/characters/issilora/side-slim.svg",
  33126. extra: 570 / 480,
  33127. bottom: 30 / 600
  33128. }
  33129. },
  33130. backSlim: {
  33131. height: math.unit(7, "feet"),
  33132. name: "Back (Slim)",
  33133. image: {
  33134. source: "./media/characters/issilora/back-slim.svg",
  33135. extra: 537 / 455,
  33136. bottom: 46 / 583
  33137. }
  33138. },
  33139. frontBuff: {
  33140. height: math.unit(7, "feet"),
  33141. name: "Front (Buff)",
  33142. image: {
  33143. source: "./media/characters/issilora/front-buff.svg",
  33144. extra: 2310 / 2035,
  33145. bottom: 335 / 2645
  33146. }
  33147. },
  33148. head: {
  33149. height: math.unit(1.94, "feet"),
  33150. name: "Head",
  33151. image: {
  33152. source: "./media/characters/issilora/head.svg"
  33153. }
  33154. },
  33155. },
  33156. [
  33157. {
  33158. name: "Minimum",
  33159. height: math.unit(7, "feet")
  33160. },
  33161. {
  33162. name: "Comfortable",
  33163. height: math.unit(17, "feet")
  33164. },
  33165. {
  33166. name: "Fun Size",
  33167. height: math.unit(47, "feet")
  33168. },
  33169. {
  33170. name: "Natural Macro",
  33171. height: math.unit(137, "feet"),
  33172. default: true
  33173. },
  33174. {
  33175. name: "Maximum Kaiju",
  33176. height: math.unit(397, "feet")
  33177. },
  33178. ]
  33179. ))
  33180. characterMakers.push(() => makeCharacter(
  33181. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33182. {
  33183. front: {
  33184. height: math.unit(50 + 9/12, "feet"),
  33185. weight: math.unit(32.8, "tons"),
  33186. name: "Front",
  33187. image: {
  33188. source: "./media/characters/irb'iiritaahn/front.svg",
  33189. extra: 1878/1826,
  33190. bottom: 326/2204
  33191. }
  33192. },
  33193. back: {
  33194. height: math.unit(50 + 9/12, "feet"),
  33195. weight: math.unit(32.8, "tons"),
  33196. name: "Back",
  33197. image: {
  33198. source: "./media/characters/irb'iiritaahn/back.svg",
  33199. extra: 2052/2018,
  33200. bottom: 152/2204
  33201. }
  33202. },
  33203. head: {
  33204. height: math.unit(12.86, "feet"),
  33205. name: "Head",
  33206. image: {
  33207. source: "./media/characters/irb'iiritaahn/head.svg"
  33208. }
  33209. },
  33210. maw: {
  33211. height: math.unit(9.66, "feet"),
  33212. name: "Maw",
  33213. image: {
  33214. source: "./media/characters/irb'iiritaahn/maw.svg"
  33215. }
  33216. },
  33217. frontDick: {
  33218. height: math.unit(8.78461, "feet"),
  33219. name: "Front Dick",
  33220. image: {
  33221. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33222. }
  33223. },
  33224. rearDick: {
  33225. height: math.unit(8.78461, "feet"),
  33226. name: "Rear Dick",
  33227. image: {
  33228. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33229. }
  33230. },
  33231. rearDickUnfolded: {
  33232. height: math.unit(8.78, "feet"),
  33233. name: "Rear Dick (Unfolded)",
  33234. image: {
  33235. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33236. }
  33237. },
  33238. wings: {
  33239. height: math.unit(43, "feet"),
  33240. name: "Wings",
  33241. image: {
  33242. source: "./media/characters/irb'iiritaahn/wings.svg"
  33243. }
  33244. },
  33245. },
  33246. [
  33247. {
  33248. name: "Macro",
  33249. height: math.unit(50 + 9/12, "feet"),
  33250. default: true
  33251. },
  33252. ]
  33253. ))
  33254. characterMakers.push(() => makeCharacter(
  33255. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33256. {
  33257. front: {
  33258. height: math.unit(205, "cm"),
  33259. weight: math.unit(102, "kg"),
  33260. name: "Front",
  33261. image: {
  33262. source: "./media/characters/irbisgreif/front.svg",
  33263. extra: 785/706,
  33264. bottom: 13/798
  33265. }
  33266. },
  33267. back: {
  33268. height: math.unit(205, "cm"),
  33269. weight: math.unit(102, "kg"),
  33270. name: "Back",
  33271. image: {
  33272. source: "./media/characters/irbisgreif/back.svg",
  33273. extra: 713/701,
  33274. bottom: 26/739
  33275. }
  33276. },
  33277. frontDressed: {
  33278. height: math.unit(216, "cm"),
  33279. weight: math.unit(102, "kg"),
  33280. name: "Front-dressed",
  33281. image: {
  33282. source: "./media/characters/irbisgreif/front-dressed.svg",
  33283. extra: 902/776,
  33284. bottom: 14/916
  33285. }
  33286. },
  33287. sideDressed: {
  33288. height: math.unit(195, "cm"),
  33289. weight: math.unit(102, "kg"),
  33290. name: "Side-dressed",
  33291. image: {
  33292. source: "./media/characters/irbisgreif/side-dressed.svg",
  33293. extra: 788/688,
  33294. bottom: 21/809
  33295. }
  33296. },
  33297. backDressed: {
  33298. height: math.unit(216, "cm"),
  33299. weight: math.unit(102, "kg"),
  33300. name: "Back-dressed",
  33301. image: {
  33302. source: "./media/characters/irbisgreif/back-dressed.svg",
  33303. extra: 901/783,
  33304. bottom: 10/911
  33305. }
  33306. },
  33307. dick: {
  33308. height: math.unit(0.49, "feet"),
  33309. name: "Dick",
  33310. image: {
  33311. source: "./media/characters/irbisgreif/dick.svg"
  33312. }
  33313. },
  33314. wingTop: {
  33315. height: math.unit(1.93 , "feet"),
  33316. name: "Wing-top",
  33317. image: {
  33318. source: "./media/characters/irbisgreif/wing-top.svg"
  33319. }
  33320. },
  33321. wingBottom: {
  33322. height: math.unit(1.93 , "feet"),
  33323. name: "Wing-bottom",
  33324. image: {
  33325. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33326. }
  33327. },
  33328. },
  33329. [
  33330. {
  33331. name: "Normal",
  33332. height: math.unit(216, "cm"),
  33333. default: true
  33334. },
  33335. ]
  33336. ))
  33337. characterMakers.push(() => makeCharacter(
  33338. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33339. {
  33340. front: {
  33341. height: math.unit(6, "feet"),
  33342. weight: math.unit(150, "lb"),
  33343. name: "Front",
  33344. image: {
  33345. source: "./media/characters/pride/front.svg",
  33346. extra: 1299/1230,
  33347. bottom: 18/1317
  33348. }
  33349. },
  33350. },
  33351. [
  33352. {
  33353. name: "Normal",
  33354. height: math.unit(7, "feet")
  33355. },
  33356. {
  33357. name: "Mini-macro",
  33358. height: math.unit(11, "feet")
  33359. },
  33360. {
  33361. name: "Macro",
  33362. height: math.unit(15, "meters"),
  33363. default: true
  33364. },
  33365. {
  33366. name: "Macro+",
  33367. height: math.unit(40, "meters")
  33368. },
  33369. ]
  33370. ))
  33371. characterMakers.push(() => makeCharacter(
  33372. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33373. {
  33374. front: {
  33375. height: math.unit(4 + 2 / 12, "feet"),
  33376. weight: math.unit(95, "lb"),
  33377. name: "Front",
  33378. image: {
  33379. source: "./media/characters/vaelophis-nyx/front.svg",
  33380. extra: 2532/2330,
  33381. bottom: 0/2532
  33382. }
  33383. },
  33384. back: {
  33385. height: math.unit(4 + 2 / 12, "feet"),
  33386. weight: math.unit(95, "lb"),
  33387. name: "Back",
  33388. image: {
  33389. source: "./media/characters/vaelophis-nyx/back.svg",
  33390. extra: 2484/2361,
  33391. bottom: 0/2484
  33392. }
  33393. },
  33394. feralSide: {
  33395. height: math.unit(2 + 1/12, "feet"),
  33396. weight: math.unit(20, "lb"),
  33397. name: "Feral (Side)",
  33398. image: {
  33399. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33400. extra: 1721/1581,
  33401. bottom: 70/1791
  33402. }
  33403. },
  33404. feralLazing: {
  33405. height: math.unit(1.08, "feet"),
  33406. weight: math.unit(20, "lb"),
  33407. name: "Feral (Lazing)",
  33408. image: {
  33409. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33410. extra: 822/822,
  33411. bottom: 248/1070
  33412. }
  33413. },
  33414. ear: {
  33415. height: math.unit(0.416, "feet"),
  33416. name: "Ear",
  33417. image: {
  33418. source: "./media/characters/vaelophis-nyx/ear.svg"
  33419. }
  33420. },
  33421. eye: {
  33422. height: math.unit(0.0748, "feet"),
  33423. name: "Eye",
  33424. image: {
  33425. source: "./media/characters/vaelophis-nyx/eye.svg"
  33426. }
  33427. },
  33428. mouth: {
  33429. height: math.unit(0.378, "feet"),
  33430. name: "Mouth",
  33431. image: {
  33432. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33433. }
  33434. },
  33435. spade: {
  33436. height: math.unit(0.55, "feet"),
  33437. name: "Spade",
  33438. image: {
  33439. source: "./media/characters/vaelophis-nyx/spade.svg"
  33440. }
  33441. },
  33442. },
  33443. [
  33444. {
  33445. name: "Normal",
  33446. height: math.unit(4 + 2/12, "feet"),
  33447. default: true
  33448. },
  33449. ]
  33450. ))
  33451. characterMakers.push(() => makeCharacter(
  33452. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33453. {
  33454. front: {
  33455. height: math.unit(7, "feet"),
  33456. weight: math.unit(231, "lb"),
  33457. name: "Front",
  33458. image: {
  33459. source: "./media/characters/flux/front.svg",
  33460. extra: 919/871,
  33461. bottom: 0/919
  33462. }
  33463. },
  33464. back: {
  33465. height: math.unit(7, "feet"),
  33466. weight: math.unit(231, "lb"),
  33467. name: "Back",
  33468. image: {
  33469. source: "./media/characters/flux/back.svg",
  33470. extra: 1040/992,
  33471. bottom: 0/1040
  33472. }
  33473. },
  33474. frontDressed: {
  33475. height: math.unit(7, "feet"),
  33476. weight: math.unit(231, "lb"),
  33477. name: "Front (Dressed)",
  33478. image: {
  33479. source: "./media/characters/flux/front-dressed.svg",
  33480. extra: 919/871,
  33481. bottom: 0/919
  33482. }
  33483. },
  33484. feralSide: {
  33485. height: math.unit(5, "feet"),
  33486. weight: math.unit(150, "lb"),
  33487. name: "Feral (Side)",
  33488. image: {
  33489. source: "./media/characters/flux/feral-side.svg",
  33490. extra: 598/528,
  33491. bottom: 28/626
  33492. }
  33493. },
  33494. head: {
  33495. height: math.unit(1.585, "feet"),
  33496. name: "Head",
  33497. image: {
  33498. source: "./media/characters/flux/head.svg"
  33499. }
  33500. },
  33501. headSide: {
  33502. height: math.unit(1.74, "feet"),
  33503. name: "Head (Side)",
  33504. image: {
  33505. source: "./media/characters/flux/head-side.svg"
  33506. }
  33507. },
  33508. headSideFire: {
  33509. height: math.unit(1.76, "feet"),
  33510. name: "Head (Side, Fire)",
  33511. image: {
  33512. source: "./media/characters/flux/head-side-fire.svg"
  33513. }
  33514. },
  33515. },
  33516. [
  33517. {
  33518. name: "Normal",
  33519. height: math.unit(7, "feet"),
  33520. default: true
  33521. },
  33522. ]
  33523. ))
  33524. characterMakers.push(() => makeCharacter(
  33525. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33526. {
  33527. front: {
  33528. height: math.unit(9, "feet"),
  33529. weight: math.unit(1012, "lb"),
  33530. name: "Front",
  33531. image: {
  33532. source: "./media/characters/ulfra-lupae/front.svg",
  33533. extra: 1083/1011,
  33534. bottom: 67/1150
  33535. }
  33536. },
  33537. },
  33538. [
  33539. {
  33540. name: "Micro",
  33541. height: math.unit(6, "inches")
  33542. },
  33543. {
  33544. name: "Socializing",
  33545. height: math.unit(6 + 5/12, "feet")
  33546. },
  33547. {
  33548. name: "Normal",
  33549. height: math.unit(9, "feet"),
  33550. default: true
  33551. },
  33552. {
  33553. name: "Macro",
  33554. height: math.unit(150, "feet")
  33555. },
  33556. ]
  33557. ))
  33558. characterMakers.push(() => makeCharacter(
  33559. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33560. {
  33561. front: {
  33562. height: math.unit(5 + 2/12, "feet"),
  33563. weight: math.unit(120, "lb"),
  33564. name: "Front",
  33565. image: {
  33566. source: "./media/characters/timber/front.svg",
  33567. extra: 2814/2705,
  33568. bottom: 181/2995
  33569. }
  33570. },
  33571. },
  33572. [
  33573. {
  33574. name: "Normal",
  33575. height: math.unit(5 + 2/12, "feet"),
  33576. default: true
  33577. },
  33578. ]
  33579. ))
  33580. characterMakers.push(() => makeCharacter(
  33581. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33582. {
  33583. front: {
  33584. height: math.unit(9, "feet"),
  33585. name: "Front",
  33586. image: {
  33587. source: "./media/characters/nicki/front.svg",
  33588. extra: 1240/990,
  33589. bottom: 45/1285
  33590. },
  33591. form: "anthro",
  33592. default: true
  33593. },
  33594. side: {
  33595. height: math.unit(9, "feet"),
  33596. name: "Side",
  33597. image: {
  33598. source: "./media/characters/nicki/side.svg",
  33599. extra: 1047/973,
  33600. bottom: 61/1108
  33601. },
  33602. form: "anthro"
  33603. },
  33604. back: {
  33605. height: math.unit(9, "feet"),
  33606. name: "Back",
  33607. image: {
  33608. source: "./media/characters/nicki/back.svg",
  33609. extra: 1006/965,
  33610. bottom: 39/1045
  33611. },
  33612. form: "anthro"
  33613. },
  33614. taur: {
  33615. height: math.unit(15, "feet"),
  33616. name: "Taur",
  33617. image: {
  33618. source: "./media/characters/nicki/taur.svg",
  33619. extra: 1592/1347,
  33620. bottom: 0/1592
  33621. },
  33622. form: "taur",
  33623. default: true
  33624. },
  33625. },
  33626. [
  33627. {
  33628. name: "Normal",
  33629. height: math.unit(9, "feet"),
  33630. form: "anthro",
  33631. default: true
  33632. },
  33633. {
  33634. name: "Normal",
  33635. height: math.unit(15, "feet"),
  33636. form: "taur",
  33637. default: true
  33638. }
  33639. ],
  33640. {
  33641. "anthro": {
  33642. name: "Anthro",
  33643. default: true
  33644. },
  33645. "taur": {
  33646. name: "Taur"
  33647. }
  33648. }
  33649. ))
  33650. characterMakers.push(() => makeCharacter(
  33651. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33652. {
  33653. front: {
  33654. height: math.unit(7 + 10/12, "feet"),
  33655. weight: math.unit(3.5, "tons"),
  33656. name: "Front",
  33657. image: {
  33658. source: "./media/characters/lee/front.svg",
  33659. extra: 1773/1615,
  33660. bottom: 86/1859
  33661. }
  33662. },
  33663. hand: {
  33664. height: math.unit(1.78, "feet"),
  33665. name: "Hand",
  33666. image: {
  33667. source: "./media/characters/lee/hand.svg"
  33668. }
  33669. },
  33670. maw: {
  33671. height: math.unit(1.18, "feet"),
  33672. name: "Maw",
  33673. image: {
  33674. source: "./media/characters/lee/maw.svg"
  33675. }
  33676. },
  33677. },
  33678. [
  33679. {
  33680. name: "Normal",
  33681. height: math.unit(7 + 10/12, "feet"),
  33682. default: true
  33683. },
  33684. ]
  33685. ))
  33686. characterMakers.push(() => makeCharacter(
  33687. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33688. {
  33689. front: {
  33690. height: math.unit(9, "feet"),
  33691. name: "Front",
  33692. image: {
  33693. source: "./media/characters/guti/front.svg",
  33694. extra: 4551/4355,
  33695. bottom: 123/4674
  33696. }
  33697. },
  33698. tongue: {
  33699. height: math.unit(1, "feet"),
  33700. name: "Tongue",
  33701. image: {
  33702. source: "./media/characters/guti/tongue.svg"
  33703. }
  33704. },
  33705. paw: {
  33706. height: math.unit(1.18, "feet"),
  33707. name: "Paw",
  33708. image: {
  33709. source: "./media/characters/guti/paw.svg"
  33710. }
  33711. },
  33712. },
  33713. [
  33714. {
  33715. name: "Normal",
  33716. height: math.unit(9, "feet"),
  33717. default: true
  33718. },
  33719. ]
  33720. ))
  33721. characterMakers.push(() => makeCharacter(
  33722. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33723. {
  33724. side: {
  33725. height: math.unit(5, "meters"),
  33726. name: "Side",
  33727. image: {
  33728. source: "./media/characters/vesper/side.svg",
  33729. extra: 1605/1518,
  33730. bottom: 0/1605
  33731. }
  33732. },
  33733. },
  33734. [
  33735. {
  33736. name: "Small",
  33737. height: math.unit(5, "meters")
  33738. },
  33739. {
  33740. name: "Sage",
  33741. height: math.unit(100, "meters"),
  33742. default: true
  33743. },
  33744. {
  33745. name: "Fun Size",
  33746. height: math.unit(600, "meters")
  33747. },
  33748. {
  33749. name: "Goddess",
  33750. height: math.unit(20000, "km")
  33751. },
  33752. {
  33753. name: "Maximum",
  33754. height: math.unit(5, "galaxies")
  33755. },
  33756. ]
  33757. ))
  33758. characterMakers.push(() => makeCharacter(
  33759. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33760. {
  33761. front: {
  33762. height: math.unit(6 + 3/12, "feet"),
  33763. weight: math.unit(190, "lb"),
  33764. name: "Front",
  33765. image: {
  33766. source: "./media/characters/gawain/front.svg",
  33767. extra: 2222/2139,
  33768. bottom: 90/2312
  33769. }
  33770. },
  33771. back: {
  33772. height: math.unit(6 + 3/12, "feet"),
  33773. weight: math.unit(190, "lb"),
  33774. name: "Back",
  33775. image: {
  33776. source: "./media/characters/gawain/back.svg",
  33777. extra: 2199/2111,
  33778. bottom: 73/2272
  33779. }
  33780. },
  33781. },
  33782. [
  33783. {
  33784. name: "Normal",
  33785. height: math.unit(6 + 3/12, "feet"),
  33786. default: true
  33787. },
  33788. ]
  33789. ))
  33790. characterMakers.push(() => makeCharacter(
  33791. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33792. {
  33793. side: {
  33794. height: math.unit(3.5, "meters"),
  33795. weight: math.unit(16000, "lb"),
  33796. name: "Side",
  33797. image: {
  33798. source: "./media/characters/dascalti/side.svg",
  33799. extra: 392/273,
  33800. bottom: 47/439
  33801. }
  33802. },
  33803. breath: {
  33804. height: math.unit(7.4, "feet"),
  33805. name: "Breath",
  33806. image: {
  33807. source: "./media/characters/dascalti/breath.svg"
  33808. }
  33809. },
  33810. fed: {
  33811. height: math.unit(3.6, "meters"),
  33812. weight: math.unit(16000, "lb"),
  33813. name: "Fed",
  33814. image: {
  33815. source: "./media/characters/dascalti/fed.svg",
  33816. extra: 1419/820,
  33817. bottom: 95/1514
  33818. }
  33819. },
  33820. },
  33821. [
  33822. {
  33823. name: "Normal",
  33824. height: math.unit(3.5, "meters"),
  33825. default: true
  33826. },
  33827. ]
  33828. ))
  33829. characterMakers.push(() => makeCharacter(
  33830. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33831. {
  33832. front: {
  33833. height: math.unit(3 + 5/12, "feet"),
  33834. name: "Front",
  33835. image: {
  33836. source: "./media/characters/mauve/front.svg",
  33837. extra: 1126/1033,
  33838. bottom: 65/1191
  33839. }
  33840. },
  33841. side: {
  33842. height: math.unit(3 + 5/12, "feet"),
  33843. name: "Side",
  33844. image: {
  33845. source: "./media/characters/mauve/side.svg",
  33846. extra: 1089/1001,
  33847. bottom: 29/1118
  33848. }
  33849. },
  33850. back: {
  33851. height: math.unit(3 + 5/12, "feet"),
  33852. name: "Back",
  33853. image: {
  33854. source: "./media/characters/mauve/back.svg",
  33855. extra: 1173/1053,
  33856. bottom: 109/1282
  33857. }
  33858. },
  33859. },
  33860. [
  33861. {
  33862. name: "Normal",
  33863. height: math.unit(3 + 5/12, "feet"),
  33864. default: true
  33865. },
  33866. ]
  33867. ))
  33868. characterMakers.push(() => makeCharacter(
  33869. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33870. {
  33871. front: {
  33872. height: math.unit(6 + 3/12, "feet"),
  33873. weight: math.unit(430, "lb"),
  33874. name: "Front",
  33875. image: {
  33876. source: "./media/characters/carlos/front.svg",
  33877. extra: 1964/1913,
  33878. bottom: 70/2034
  33879. }
  33880. },
  33881. },
  33882. [
  33883. {
  33884. name: "Normal",
  33885. height: math.unit(6 + 3/12, "feet"),
  33886. default: true
  33887. },
  33888. ]
  33889. ))
  33890. characterMakers.push(() => makeCharacter(
  33891. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33892. {
  33893. back: {
  33894. height: math.unit(5 + 10/12, "feet"),
  33895. weight: math.unit(200, "lb"),
  33896. name: "Back",
  33897. image: {
  33898. source: "./media/characters/jax/back.svg",
  33899. extra: 764/739,
  33900. bottom: 25/789
  33901. }
  33902. },
  33903. },
  33904. [
  33905. {
  33906. name: "Normal",
  33907. height: math.unit(5 + 10/12, "feet"),
  33908. default: true
  33909. },
  33910. ]
  33911. ))
  33912. characterMakers.push(() => makeCharacter(
  33913. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33914. {
  33915. front: {
  33916. height: math.unit(8, "feet"),
  33917. weight: math.unit(250, "lb"),
  33918. name: "Front",
  33919. image: {
  33920. source: "./media/characters/eikthynir/front.svg",
  33921. extra: 1332/1166,
  33922. bottom: 82/1414
  33923. }
  33924. },
  33925. back: {
  33926. height: math.unit(8, "feet"),
  33927. weight: math.unit(250, "lb"),
  33928. name: "Back",
  33929. image: {
  33930. source: "./media/characters/eikthynir/back.svg",
  33931. extra: 1342/1190,
  33932. bottom: 19/1361
  33933. }
  33934. },
  33935. dick: {
  33936. height: math.unit(2.35, "feet"),
  33937. name: "Dick",
  33938. image: {
  33939. source: "./media/characters/eikthynir/dick.svg"
  33940. }
  33941. },
  33942. },
  33943. [
  33944. {
  33945. name: "Normal",
  33946. height: math.unit(8, "feet"),
  33947. default: true
  33948. },
  33949. ]
  33950. ))
  33951. characterMakers.push(() => makeCharacter(
  33952. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33953. {
  33954. front: {
  33955. height: math.unit(99, "meters"),
  33956. weight: math.unit(13000, "tons"),
  33957. name: "Front",
  33958. image: {
  33959. source: "./media/characters/zlmos/front.svg",
  33960. extra: 2202/1992,
  33961. bottom: 315/2517
  33962. }
  33963. },
  33964. },
  33965. [
  33966. {
  33967. name: "Macro",
  33968. height: math.unit(99, "meters"),
  33969. default: true
  33970. },
  33971. ]
  33972. ))
  33973. characterMakers.push(() => makeCharacter(
  33974. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33975. {
  33976. front: {
  33977. height: math.unit(6 + 5/12, "feet"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/purri/front.svg",
  33981. extra: 1698/1610,
  33982. bottom: 32/1730
  33983. }
  33984. },
  33985. frontAlt: {
  33986. height: math.unit(6 + 5/12, "feet"),
  33987. name: "Front (Alt)",
  33988. image: {
  33989. source: "./media/characters/purri/front-alt.svg",
  33990. extra: 450/420,
  33991. bottom: 26/476
  33992. }
  33993. },
  33994. boots: {
  33995. height: math.unit(5.5, "feet"),
  33996. name: "Boots",
  33997. image: {
  33998. source: "./media/characters/purri/boots.svg",
  33999. extra: 905/853,
  34000. bottom: 18/923
  34001. },
  34002. extraAttributes: {
  34003. "shoeSize": {
  34004. name: "Shoe Size",
  34005. power: 1,
  34006. type: "length",
  34007. base: math.unit(12, "ShoeSizeMensUS")
  34008. },
  34009. "platformHeight": {
  34010. name: "Platform Height",
  34011. power: 1,
  34012. type: "length",
  34013. base: math.unit(2, "inches")
  34014. },
  34015. }
  34016. },
  34017. lying: {
  34018. height: math.unit(2, "feet"),
  34019. name: "Lying",
  34020. image: {
  34021. source: "./media/characters/purri/lying.svg",
  34022. extra: 940/843,
  34023. bottom: 146/1086
  34024. }
  34025. },
  34026. devious: {
  34027. height: math.unit(1.77, "feet"),
  34028. name: "Devious",
  34029. image: {
  34030. source: "./media/characters/purri/devious.svg",
  34031. extra: 1440/1155,
  34032. bottom: 147/1587
  34033. }
  34034. },
  34035. bean: {
  34036. height: math.unit(1.94, "feet"),
  34037. name: "Bean",
  34038. image: {
  34039. source: "./media/characters/purri/bean.svg"
  34040. }
  34041. },
  34042. },
  34043. [
  34044. {
  34045. name: "Micro",
  34046. height: math.unit(1, "mm")
  34047. },
  34048. {
  34049. name: "Normal",
  34050. height: math.unit(6 + 5/12, "feet"),
  34051. default: true
  34052. },
  34053. {
  34054. name: "Macro :3c",
  34055. height: math.unit(2, "miles")
  34056. },
  34057. ]
  34058. ))
  34059. characterMakers.push(() => makeCharacter(
  34060. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34061. {
  34062. front: {
  34063. height: math.unit(6 + 2/12, "feet"),
  34064. weight: math.unit(250, "lb"),
  34065. name: "Front",
  34066. image: {
  34067. source: "./media/characters/moonlight/front.svg",
  34068. extra: 1044/908,
  34069. bottom: 56/1100
  34070. }
  34071. },
  34072. feral: {
  34073. height: math.unit(3 + 1/12, "feet"),
  34074. weight: math.unit(50, "kg"),
  34075. name: "Feral",
  34076. image: {
  34077. source: "./media/characters/moonlight/feral.svg",
  34078. extra: 3705/2791,
  34079. bottom: 145/3850
  34080. }
  34081. },
  34082. paw: {
  34083. height: math.unit(1, "feet"),
  34084. name: "Paw",
  34085. image: {
  34086. source: "./media/characters/moonlight/paw.svg"
  34087. }
  34088. },
  34089. paws: {
  34090. height: math.unit(0.98, "feet"),
  34091. name: "Paws",
  34092. image: {
  34093. source: "./media/characters/moonlight/paws.svg",
  34094. extra: 939/939,
  34095. bottom: 50/989
  34096. }
  34097. },
  34098. mouth: {
  34099. height: math.unit(0.48, "feet"),
  34100. name: "Mouth",
  34101. image: {
  34102. source: "./media/characters/moonlight/mouth.svg"
  34103. }
  34104. },
  34105. dick: {
  34106. height: math.unit(1.46, "feet"),
  34107. name: "Dick",
  34108. image: {
  34109. source: "./media/characters/moonlight/dick.svg"
  34110. }
  34111. },
  34112. },
  34113. [
  34114. {
  34115. name: "Normal",
  34116. height: math.unit(6 + 2/12, "feet"),
  34117. default: true
  34118. },
  34119. {
  34120. name: "Macro",
  34121. height: math.unit(300, "feet")
  34122. },
  34123. {
  34124. name: "Macro+",
  34125. height: math.unit(1, "mile")
  34126. },
  34127. {
  34128. name: "Mt. Moon",
  34129. height: math.unit(5, "miles")
  34130. },
  34131. {
  34132. name: "Megamacro",
  34133. height: math.unit(15, "miles")
  34134. },
  34135. ]
  34136. ))
  34137. characterMakers.push(() => makeCharacter(
  34138. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34139. {
  34140. back: {
  34141. height: math.unit(6, "feet"),
  34142. weight: math.unit(150, "lb"),
  34143. name: "Back",
  34144. image: {
  34145. source: "./media/characters/sylen/back.svg",
  34146. extra: 1335/1273,
  34147. bottom: 107/1442
  34148. }
  34149. },
  34150. },
  34151. [
  34152. {
  34153. name: "Normal",
  34154. height: math.unit(5 + 5/12, "feet")
  34155. },
  34156. {
  34157. name: "Megamacro",
  34158. height: math.unit(3, "miles"),
  34159. default: true
  34160. },
  34161. ]
  34162. ))
  34163. characterMakers.push(() => makeCharacter(
  34164. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34165. {
  34166. front: {
  34167. height: math.unit(6, "feet"),
  34168. weight: math.unit(190, "lb"),
  34169. name: "Front",
  34170. image: {
  34171. source: "./media/characters/huttser/front.svg",
  34172. extra: 1152/1058,
  34173. bottom: 23/1175
  34174. }
  34175. },
  34176. side: {
  34177. height: math.unit(6, "feet"),
  34178. weight: math.unit(190, "lb"),
  34179. name: "Side",
  34180. image: {
  34181. source: "./media/characters/huttser/side.svg",
  34182. extra: 1174/1065,
  34183. bottom: 18/1192
  34184. }
  34185. },
  34186. back: {
  34187. height: math.unit(6, "feet"),
  34188. weight: math.unit(190, "lb"),
  34189. name: "Back",
  34190. image: {
  34191. source: "./media/characters/huttser/back.svg",
  34192. extra: 1158/1056,
  34193. bottom: 12/1170
  34194. }
  34195. },
  34196. },
  34197. [
  34198. ]
  34199. ))
  34200. characterMakers.push(() => makeCharacter(
  34201. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34202. {
  34203. side: {
  34204. height: math.unit(12 + 9/12, "feet"),
  34205. weight: math.unit(15000, "lb"),
  34206. name: "Side",
  34207. image: {
  34208. source: "./media/characters/faan/side.svg",
  34209. extra: 2747/2697,
  34210. bottom: 0/2747
  34211. }
  34212. },
  34213. front: {
  34214. height: math.unit(12 + 9/12, "feet"),
  34215. weight: math.unit(15000, "lb"),
  34216. name: "Front",
  34217. image: {
  34218. source: "./media/characters/faan/front.svg",
  34219. extra: 607/571,
  34220. bottom: 24/631
  34221. }
  34222. },
  34223. head: {
  34224. height: math.unit(2.85, "feet"),
  34225. name: "Head",
  34226. image: {
  34227. source: "./media/characters/faan/head.svg"
  34228. }
  34229. },
  34230. headAlt: {
  34231. height: math.unit(3.13, "feet"),
  34232. name: "Head-alt",
  34233. image: {
  34234. source: "./media/characters/faan/head-alt.svg"
  34235. }
  34236. },
  34237. },
  34238. [
  34239. {
  34240. name: "Normal",
  34241. height: math.unit(12 + 9/12, "feet"),
  34242. default: true
  34243. },
  34244. ]
  34245. ))
  34246. characterMakers.push(() => makeCharacter(
  34247. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34248. {
  34249. front: {
  34250. height: math.unit(6, "feet"),
  34251. weight: math.unit(300, "lb"),
  34252. name: "Front",
  34253. image: {
  34254. source: "./media/characters/tanio/front.svg",
  34255. extra: 711/673,
  34256. bottom: 25/736
  34257. }
  34258. },
  34259. },
  34260. [
  34261. {
  34262. name: "Normal",
  34263. height: math.unit(6, "feet"),
  34264. default: true
  34265. },
  34266. ]
  34267. ))
  34268. characterMakers.push(() => makeCharacter(
  34269. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34270. {
  34271. front: {
  34272. height: math.unit(3, "inches"),
  34273. name: "Front",
  34274. image: {
  34275. source: "./media/characters/noboru/front.svg",
  34276. extra: 1039/932,
  34277. bottom: 18/1057
  34278. }
  34279. },
  34280. },
  34281. [
  34282. {
  34283. name: "Micro",
  34284. height: math.unit(3, "inches"),
  34285. default: true
  34286. },
  34287. ]
  34288. ))
  34289. characterMakers.push(() => makeCharacter(
  34290. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34291. {
  34292. front: {
  34293. height: math.unit(1.85, "meters"),
  34294. weight: math.unit(80, "kg"),
  34295. name: "Front",
  34296. image: {
  34297. source: "./media/characters/daniel-barrett/front.svg",
  34298. extra: 355/337,
  34299. bottom: 9/364
  34300. }
  34301. },
  34302. },
  34303. [
  34304. {
  34305. name: "Pico",
  34306. height: math.unit(0.0433, "mm")
  34307. },
  34308. {
  34309. name: "Nano",
  34310. height: math.unit(1.5, "mm")
  34311. },
  34312. {
  34313. name: "Micro",
  34314. height: math.unit(5.3, "cm"),
  34315. default: true
  34316. },
  34317. {
  34318. name: "Normal",
  34319. height: math.unit(1.85, "meters")
  34320. },
  34321. {
  34322. name: "Macro",
  34323. height: math.unit(64.7, "meters")
  34324. },
  34325. {
  34326. name: "Megamacro",
  34327. height: math.unit(2.26, "km")
  34328. },
  34329. {
  34330. name: "Gigamacro",
  34331. height: math.unit(79, "km")
  34332. },
  34333. {
  34334. name: "Teramacro",
  34335. height: math.unit(2765, "km")
  34336. },
  34337. {
  34338. name: "Petamacro",
  34339. height: math.unit(96678, "km")
  34340. },
  34341. ]
  34342. ))
  34343. characterMakers.push(() => makeCharacter(
  34344. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34345. {
  34346. front: {
  34347. height: math.unit(30, "meters"),
  34348. weight: math.unit(400, "tons"),
  34349. name: "Front",
  34350. image: {
  34351. source: "./media/characters/zeel/front.svg",
  34352. extra: 2599/2599,
  34353. bottom: 226/2825
  34354. }
  34355. },
  34356. },
  34357. [
  34358. {
  34359. name: "Macro",
  34360. height: math.unit(30, "meters"),
  34361. default: true
  34362. },
  34363. ]
  34364. ))
  34365. characterMakers.push(() => makeCharacter(
  34366. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34367. {
  34368. front: {
  34369. height: math.unit(6 + 7/12, "feet"),
  34370. weight: math.unit(210, "lb"),
  34371. name: "Front",
  34372. image: {
  34373. source: "./media/characters/tarn/front.svg",
  34374. extra: 3517/3220,
  34375. bottom: 91/3608
  34376. }
  34377. },
  34378. back: {
  34379. height: math.unit(6 + 7/12, "feet"),
  34380. weight: math.unit(210, "lb"),
  34381. name: "Back",
  34382. image: {
  34383. source: "./media/characters/tarn/back.svg",
  34384. extra: 3566/3241,
  34385. bottom: 34/3600
  34386. }
  34387. },
  34388. dick: {
  34389. height: math.unit(1.65, "feet"),
  34390. name: "Dick",
  34391. image: {
  34392. source: "./media/characters/tarn/dick.svg"
  34393. }
  34394. },
  34395. paw: {
  34396. height: math.unit(1.80, "feet"),
  34397. name: "Paw",
  34398. image: {
  34399. source: "./media/characters/tarn/paw.svg"
  34400. }
  34401. },
  34402. tongue: {
  34403. height: math.unit(0.97, "feet"),
  34404. name: "Tongue",
  34405. image: {
  34406. source: "./media/characters/tarn/tongue.svg"
  34407. }
  34408. },
  34409. },
  34410. [
  34411. {
  34412. name: "Micro",
  34413. height: math.unit(4, "inches")
  34414. },
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(6 + 7/12, "feet"),
  34418. default: true
  34419. },
  34420. {
  34421. name: "Macro",
  34422. height: math.unit(300, "feet")
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34428. {
  34429. front: {
  34430. height: math.unit(5 + 7/12, "feet"),
  34431. weight: math.unit(80, "kg"),
  34432. name: "Front",
  34433. image: {
  34434. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34435. extra: 3023/2865,
  34436. bottom: 33/3056
  34437. }
  34438. },
  34439. back: {
  34440. height: math.unit(5 + 7/12, "feet"),
  34441. weight: math.unit(80, "kg"),
  34442. name: "Back",
  34443. image: {
  34444. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34445. extra: 3020/2886,
  34446. bottom: 30/3050
  34447. }
  34448. },
  34449. dick: {
  34450. height: math.unit(0.98, "feet"),
  34451. name: "Dick",
  34452. image: {
  34453. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34454. }
  34455. },
  34456. anatomy: {
  34457. height: math.unit(2.86, "feet"),
  34458. name: "Anatomy",
  34459. image: {
  34460. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34461. }
  34462. },
  34463. },
  34464. [
  34465. {
  34466. name: "Really Small",
  34467. height: math.unit(2, "inches")
  34468. },
  34469. {
  34470. name: "Micro",
  34471. height: math.unit(5.583, "inches")
  34472. },
  34473. {
  34474. name: "Normal",
  34475. height: math.unit(5 + 7/12, "feet"),
  34476. default: true
  34477. },
  34478. {
  34479. name: "Macro",
  34480. height: math.unit(67, "feet")
  34481. },
  34482. {
  34483. name: "Megamacro",
  34484. height: math.unit(134, "feet")
  34485. },
  34486. ]
  34487. ))
  34488. characterMakers.push(() => makeCharacter(
  34489. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34490. {
  34491. front: {
  34492. height: math.unit(9, "feet"),
  34493. weight: math.unit(120, "lb"),
  34494. name: "Front",
  34495. image: {
  34496. source: "./media/characters/sally/front.svg",
  34497. extra: 1506/1349,
  34498. bottom: 66/1572
  34499. }
  34500. },
  34501. },
  34502. [
  34503. {
  34504. name: "Normal",
  34505. height: math.unit(9, "feet"),
  34506. default: true
  34507. },
  34508. ]
  34509. ))
  34510. characterMakers.push(() => makeCharacter(
  34511. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34512. {
  34513. front: {
  34514. height: math.unit(8, "feet"),
  34515. weight: math.unit(900, "lb"),
  34516. name: "Front",
  34517. image: {
  34518. source: "./media/characters/owen/front.svg",
  34519. extra: 1761/1657,
  34520. bottom: 74/1835
  34521. }
  34522. },
  34523. side: {
  34524. height: math.unit(8, "feet"),
  34525. weight: math.unit(900, "lb"),
  34526. name: "Side",
  34527. image: {
  34528. source: "./media/characters/owen/side.svg",
  34529. extra: 1797/1734,
  34530. bottom: 30/1827
  34531. }
  34532. },
  34533. back: {
  34534. height: math.unit(8, "feet"),
  34535. weight: math.unit(900, "lb"),
  34536. name: "Back",
  34537. image: {
  34538. source: "./media/characters/owen/back.svg",
  34539. extra: 1796/1706,
  34540. bottom: 59/1855
  34541. }
  34542. },
  34543. maw: {
  34544. height: math.unit(1.76, "feet"),
  34545. name: "Maw",
  34546. image: {
  34547. source: "./media/characters/owen/maw.svg"
  34548. }
  34549. },
  34550. },
  34551. [
  34552. {
  34553. name: "Normal",
  34554. height: math.unit(8, "feet"),
  34555. default: true
  34556. },
  34557. ]
  34558. ))
  34559. characterMakers.push(() => makeCharacter(
  34560. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34561. {
  34562. front: {
  34563. height: math.unit(4, "feet"),
  34564. weight: math.unit(400, "lb"),
  34565. name: "Front",
  34566. image: {
  34567. source: "./media/characters/ryth/front.svg",
  34568. extra: 1920/1748,
  34569. bottom: 42/1962
  34570. }
  34571. },
  34572. back: {
  34573. height: math.unit(4, "feet"),
  34574. weight: math.unit(400, "lb"),
  34575. name: "Back",
  34576. image: {
  34577. source: "./media/characters/ryth/back.svg",
  34578. extra: 1897/1690,
  34579. bottom: 89/1986
  34580. }
  34581. },
  34582. mouth: {
  34583. height: math.unit(1.39, "feet"),
  34584. name: "Mouth",
  34585. image: {
  34586. source: "./media/characters/ryth/mouth.svg"
  34587. }
  34588. },
  34589. tailmaw: {
  34590. height: math.unit(1.23, "feet"),
  34591. name: "Tailmaw",
  34592. image: {
  34593. source: "./media/characters/ryth/tailmaw.svg"
  34594. }
  34595. },
  34596. goia: {
  34597. height: math.unit(4, "meters"),
  34598. weight: math.unit(10800, "lb"),
  34599. name: "Goia",
  34600. image: {
  34601. source: "./media/characters/ryth/goia.svg",
  34602. extra: 745/640,
  34603. bottom: 107/852
  34604. }
  34605. },
  34606. goiaFront: {
  34607. height: math.unit(4, "meters"),
  34608. weight: math.unit(10800, "lb"),
  34609. name: "Goia (Front)",
  34610. image: {
  34611. source: "./media/characters/ryth/goia-front.svg",
  34612. extra: 750/586,
  34613. bottom: 114/864
  34614. }
  34615. },
  34616. goiaMaw: {
  34617. height: math.unit(5.55, "feet"),
  34618. name: "Goia Maw",
  34619. image: {
  34620. source: "./media/characters/ryth/goia-maw.svg"
  34621. }
  34622. },
  34623. goiaForepaw: {
  34624. height: math.unit(3.5, "feet"),
  34625. name: "Goia Forepaw",
  34626. image: {
  34627. source: "./media/characters/ryth/goia-forepaw.svg"
  34628. }
  34629. },
  34630. goiaHindpaw: {
  34631. height: math.unit(5.55, "feet"),
  34632. name: "Goia Hindpaw",
  34633. image: {
  34634. source: "./media/characters/ryth/goia-hindpaw.svg"
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Normal",
  34641. height: math.unit(4, "feet"),
  34642. default: true
  34643. },
  34644. ]
  34645. ))
  34646. characterMakers.push(() => makeCharacter(
  34647. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34648. {
  34649. front: {
  34650. height: math.unit(7, "feet"),
  34651. weight: math.unit(180, "lb"),
  34652. name: "Front",
  34653. image: {
  34654. source: "./media/characters/necrolance/front.svg",
  34655. extra: 1062/947,
  34656. bottom: 41/1103
  34657. }
  34658. },
  34659. back: {
  34660. height: math.unit(7, "feet"),
  34661. weight: math.unit(180, "lb"),
  34662. name: "Back",
  34663. image: {
  34664. source: "./media/characters/necrolance/back.svg",
  34665. extra: 1045/984,
  34666. bottom: 14/1059
  34667. }
  34668. },
  34669. wing: {
  34670. height: math.unit(2.67, "feet"),
  34671. name: "Wing",
  34672. image: {
  34673. source: "./media/characters/necrolance/wing.svg"
  34674. }
  34675. },
  34676. },
  34677. [
  34678. {
  34679. name: "Normal",
  34680. height: math.unit(7, "feet"),
  34681. default: true
  34682. },
  34683. ]
  34684. ))
  34685. characterMakers.push(() => makeCharacter(
  34686. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34687. {
  34688. front: {
  34689. height: math.unit(76, "meters"),
  34690. weight: math.unit(30000, "tons"),
  34691. name: "Front",
  34692. image: {
  34693. source: "./media/characters/tyler/front.svg",
  34694. extra: 1640/1640,
  34695. bottom: 114/1754
  34696. }
  34697. },
  34698. },
  34699. [
  34700. {
  34701. name: "Macro",
  34702. height: math.unit(76, "meters"),
  34703. default: true
  34704. },
  34705. ]
  34706. ))
  34707. characterMakers.push(() => makeCharacter(
  34708. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34709. {
  34710. front: {
  34711. height: math.unit(4 + 11/12, "feet"),
  34712. weight: math.unit(132, "lb"),
  34713. name: "Front",
  34714. image: {
  34715. source: "./media/characters/icey/front.svg",
  34716. extra: 2750/2550,
  34717. bottom: 33/2783
  34718. }
  34719. },
  34720. back: {
  34721. height: math.unit(4 + 11/12, "feet"),
  34722. weight: math.unit(132, "lb"),
  34723. name: "Back",
  34724. image: {
  34725. source: "./media/characters/icey/back.svg",
  34726. extra: 2624/2481,
  34727. bottom: 35/2659
  34728. }
  34729. },
  34730. },
  34731. [
  34732. {
  34733. name: "Normal",
  34734. height: math.unit(4 + 11/12, "feet"),
  34735. default: true
  34736. },
  34737. ]
  34738. ))
  34739. characterMakers.push(() => makeCharacter(
  34740. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34741. {
  34742. front: {
  34743. height: math.unit(100, "feet"),
  34744. weight: math.unit(0, "lb"),
  34745. name: "Front",
  34746. image: {
  34747. source: "./media/characters/smile/front.svg",
  34748. extra: 2983/2912,
  34749. bottom: 162/3145
  34750. }
  34751. },
  34752. back: {
  34753. height: math.unit(100, "feet"),
  34754. weight: math.unit(0, "lb"),
  34755. name: "Back",
  34756. image: {
  34757. source: "./media/characters/smile/back.svg",
  34758. extra: 3143/3031,
  34759. bottom: 91/3234
  34760. }
  34761. },
  34762. head: {
  34763. height: math.unit(26.3, "feet"),
  34764. weight: math.unit(0, "lb"),
  34765. name: "Head",
  34766. image: {
  34767. source: "./media/characters/smile/head.svg"
  34768. }
  34769. },
  34770. collar: {
  34771. height: math.unit(5.3, "feet"),
  34772. weight: math.unit(0, "lb"),
  34773. name: "Collar",
  34774. image: {
  34775. source: "./media/characters/smile/collar.svg"
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Macro",
  34782. height: math.unit(100, "feet"),
  34783. default: true
  34784. },
  34785. ]
  34786. ))
  34787. characterMakers.push(() => makeCharacter(
  34788. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34789. {
  34790. dragon: {
  34791. height: math.unit(26, "feet"),
  34792. weight: math.unit(36, "tons"),
  34793. name: "Dragon",
  34794. image: {
  34795. source: "./media/characters/arimphae/dragon.svg",
  34796. extra: 1574/983,
  34797. bottom: 357/1931
  34798. }
  34799. },
  34800. drake: {
  34801. height: math.unit(9, "feet"),
  34802. weight: math.unit(1.5, "tons"),
  34803. name: "Drake",
  34804. image: {
  34805. source: "./media/characters/arimphae/drake.svg",
  34806. extra: 1120/925,
  34807. bottom: 435/1555
  34808. }
  34809. },
  34810. },
  34811. [
  34812. {
  34813. name: "Small",
  34814. height: math.unit(26*5/9, "feet")
  34815. },
  34816. {
  34817. name: "Normal",
  34818. height: math.unit(26, "feet"),
  34819. default: true
  34820. },
  34821. ]
  34822. ))
  34823. characterMakers.push(() => makeCharacter(
  34824. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34825. {
  34826. front: {
  34827. height: math.unit(8 + 9/12, "feet"),
  34828. name: "Front",
  34829. image: {
  34830. source: "./media/characters/xander/front.svg",
  34831. extra: 1237/974,
  34832. bottom: 94/1331
  34833. }
  34834. },
  34835. },
  34836. [
  34837. {
  34838. name: "Normal",
  34839. height: math.unit(8 + 9/12, "feet"),
  34840. default: true
  34841. },
  34842. {
  34843. name: "Gaze Grabber",
  34844. height: math.unit(13 + 8/12, "feet")
  34845. },
  34846. {
  34847. name: "Jaw Dropper",
  34848. height: math.unit(27, "feet")
  34849. },
  34850. {
  34851. name: "Show Stopper",
  34852. height: math.unit(136, "feet")
  34853. },
  34854. {
  34855. name: "Superstar",
  34856. height: math.unit(1.9e6, "miles")
  34857. },
  34858. ]
  34859. ))
  34860. characterMakers.push(() => makeCharacter(
  34861. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34862. {
  34863. side: {
  34864. height: math.unit(2100, "feet"),
  34865. name: "Side",
  34866. image: {
  34867. source: "./media/characters/osiris/side.svg",
  34868. extra: 1105/939,
  34869. bottom: 167/1272
  34870. }
  34871. },
  34872. },
  34873. [
  34874. {
  34875. name: "Macro",
  34876. height: math.unit(2100, "feet"),
  34877. default: true
  34878. },
  34879. ]
  34880. ))
  34881. characterMakers.push(() => makeCharacter(
  34882. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34883. {
  34884. front: {
  34885. height: math.unit(6 + 8/12, "feet"),
  34886. weight: math.unit(225, "lb"),
  34887. name: "Front",
  34888. image: {
  34889. source: "./media/characters/rhys-londe/front.svg",
  34890. extra: 2258/2141,
  34891. bottom: 188/2446
  34892. }
  34893. },
  34894. back: {
  34895. height: math.unit(6 + 8/12, "feet"),
  34896. weight: math.unit(225, "lb"),
  34897. name: "Back",
  34898. image: {
  34899. source: "./media/characters/rhys-londe/back.svg",
  34900. extra: 2237/2137,
  34901. bottom: 63/2300
  34902. }
  34903. },
  34904. frontNsfw: {
  34905. height: math.unit(6 + 8/12, "feet"),
  34906. weight: math.unit(225, "lb"),
  34907. name: "Front (NSFW)",
  34908. image: {
  34909. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34910. extra: 2258/2141,
  34911. bottom: 188/2446
  34912. }
  34913. },
  34914. backNsfw: {
  34915. height: math.unit(6 + 8/12, "feet"),
  34916. weight: math.unit(225, "lb"),
  34917. name: "Back (NSFW)",
  34918. image: {
  34919. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34920. extra: 2237/2137,
  34921. bottom: 63/2300
  34922. }
  34923. },
  34924. dick: {
  34925. height: math.unit(30, "inches"),
  34926. name: "Dick",
  34927. image: {
  34928. source: "./media/characters/rhys-londe/dick.svg"
  34929. }
  34930. },
  34931. maw: {
  34932. height: math.unit(1.6, "feet"),
  34933. name: "Maw",
  34934. image: {
  34935. source: "./media/characters/rhys-londe/maw.svg"
  34936. }
  34937. },
  34938. },
  34939. [
  34940. {
  34941. name: "Normal",
  34942. height: math.unit(6 + 8/12, "feet"),
  34943. default: true
  34944. },
  34945. ]
  34946. ))
  34947. characterMakers.push(() => makeCharacter(
  34948. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34949. {
  34950. front: {
  34951. height: math.unit(3 + 10/12, "feet"),
  34952. weight: math.unit(90, "lb"),
  34953. name: "Front",
  34954. image: {
  34955. source: "./media/characters/taivas-ensim/front.svg",
  34956. extra: 1327/1216,
  34957. bottom: 96/1423
  34958. }
  34959. },
  34960. back: {
  34961. height: math.unit(3 + 10/12, "feet"),
  34962. weight: math.unit(90, "lb"),
  34963. name: "Back",
  34964. image: {
  34965. source: "./media/characters/taivas-ensim/back.svg",
  34966. extra: 1355/1247,
  34967. bottom: 11/1366
  34968. }
  34969. },
  34970. frontNsfw: {
  34971. height: math.unit(3 + 10/12, "feet"),
  34972. weight: math.unit(90, "lb"),
  34973. name: "Front (NSFW)",
  34974. image: {
  34975. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34976. extra: 1327/1216,
  34977. bottom: 96/1423
  34978. }
  34979. },
  34980. backNsfw: {
  34981. height: math.unit(3 + 10/12, "feet"),
  34982. weight: math.unit(90, "lb"),
  34983. name: "Back (NSFW)",
  34984. image: {
  34985. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34986. extra: 1355/1247,
  34987. bottom: 11/1366
  34988. }
  34989. },
  34990. },
  34991. [
  34992. {
  34993. name: "Normal",
  34994. height: math.unit(3 + 10/12, "feet"),
  34995. default: true
  34996. },
  34997. ]
  34998. ))
  34999. characterMakers.push(() => makeCharacter(
  35000. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35001. {
  35002. front: {
  35003. height: math.unit(9 + 6/12, "feet"),
  35004. weight: math.unit(940, "lb"),
  35005. name: "Front",
  35006. image: {
  35007. source: "./media/characters/byliss/front.svg",
  35008. extra: 1327/1290,
  35009. bottom: 82/1409
  35010. }
  35011. },
  35012. back: {
  35013. height: math.unit(9 + 6/12, "feet"),
  35014. weight: math.unit(940, "lb"),
  35015. name: "Back",
  35016. image: {
  35017. source: "./media/characters/byliss/back.svg",
  35018. extra: 1376/1349,
  35019. bottom: 9/1385
  35020. }
  35021. },
  35022. frontNsfw: {
  35023. height: math.unit(9 + 6/12, "feet"),
  35024. weight: math.unit(940, "lb"),
  35025. name: "Front (NSFW)",
  35026. image: {
  35027. source: "./media/characters/byliss/front-nsfw.svg",
  35028. extra: 1327/1290,
  35029. bottom: 82/1409
  35030. }
  35031. },
  35032. backNsfw: {
  35033. height: math.unit(9 + 6/12, "feet"),
  35034. weight: math.unit(940, "lb"),
  35035. name: "Back (NSFW)",
  35036. image: {
  35037. source: "./media/characters/byliss/back-nsfw.svg",
  35038. extra: 1376/1349,
  35039. bottom: 9/1385
  35040. }
  35041. },
  35042. },
  35043. [
  35044. {
  35045. name: "Normal",
  35046. height: math.unit(9 + 6/12, "feet"),
  35047. default: true
  35048. },
  35049. ]
  35050. ))
  35051. characterMakers.push(() => makeCharacter(
  35052. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35053. {
  35054. front: {
  35055. height: math.unit(5 + 2/12, "feet"),
  35056. weight: math.unit(200, "lb"),
  35057. name: "Front",
  35058. image: {
  35059. source: "./media/characters/noraly/front.svg",
  35060. extra: 4985/4773,
  35061. bottom: 150/5135
  35062. }
  35063. },
  35064. full: {
  35065. height: math.unit(5 + 2/12, "feet"),
  35066. weight: math.unit(164, "lb"),
  35067. name: "Full",
  35068. image: {
  35069. source: "./media/characters/noraly/full.svg",
  35070. extra: 1114/1059,
  35071. bottom: 35/1149
  35072. }
  35073. },
  35074. fuller: {
  35075. height: math.unit(5 + 2/12, "feet"),
  35076. weight: math.unit(230, "lb"),
  35077. name: "Fuller",
  35078. image: {
  35079. source: "./media/characters/noraly/fuller.svg",
  35080. extra: 1114/1059,
  35081. bottom: 35/1149
  35082. }
  35083. },
  35084. fullest: {
  35085. height: math.unit(5 + 2/12, "feet"),
  35086. weight: math.unit(300, "lb"),
  35087. name: "Fullest",
  35088. image: {
  35089. source: "./media/characters/noraly/fullest.svg",
  35090. extra: 1114/1059,
  35091. bottom: 35/1149
  35092. }
  35093. },
  35094. },
  35095. [
  35096. {
  35097. name: "Normal",
  35098. height: math.unit(5 + 2/12, "feet"),
  35099. default: true
  35100. },
  35101. ]
  35102. ))
  35103. characterMakers.push(() => makeCharacter(
  35104. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35105. {
  35106. front: {
  35107. height: math.unit(5 + 2/12, "feet"),
  35108. weight: math.unit(210, "lb"),
  35109. name: "Front",
  35110. image: {
  35111. source: "./media/characters/pera/front.svg",
  35112. extra: 1560/1531,
  35113. bottom: 165/1725
  35114. }
  35115. },
  35116. back: {
  35117. height: math.unit(5 + 2/12, "feet"),
  35118. weight: math.unit(210, "lb"),
  35119. name: "Back",
  35120. image: {
  35121. source: "./media/characters/pera/back.svg",
  35122. extra: 1523/1493,
  35123. bottom: 152/1675
  35124. }
  35125. },
  35126. dick: {
  35127. height: math.unit(2.4, "feet"),
  35128. name: "Dick",
  35129. image: {
  35130. source: "./media/characters/pera/dick.svg"
  35131. }
  35132. },
  35133. },
  35134. [
  35135. {
  35136. name: "Normal",
  35137. height: math.unit(5 + 2/12, "feet"),
  35138. default: true
  35139. },
  35140. ]
  35141. ))
  35142. characterMakers.push(() => makeCharacter(
  35143. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35144. {
  35145. front: {
  35146. height: math.unit(12, "feet"),
  35147. weight: math.unit(3200, "lb"),
  35148. name: "Front",
  35149. image: {
  35150. source: "./media/characters/julian/front.svg",
  35151. extra: 2962/2701,
  35152. bottom: 184/3146
  35153. }
  35154. },
  35155. maw: {
  35156. height: math.unit(5.35, "feet"),
  35157. name: "Maw",
  35158. image: {
  35159. source: "./media/characters/julian/maw.svg"
  35160. }
  35161. },
  35162. paw: {
  35163. height: math.unit(3.07, "feet"),
  35164. name: "Paw",
  35165. image: {
  35166. source: "./media/characters/julian/paw.svg"
  35167. }
  35168. },
  35169. },
  35170. [
  35171. {
  35172. name: "Default",
  35173. height: math.unit(12, "feet"),
  35174. default: true
  35175. },
  35176. {
  35177. name: "Big",
  35178. height: math.unit(50, "feet")
  35179. },
  35180. {
  35181. name: "Really Big",
  35182. height: math.unit(1, "mile")
  35183. },
  35184. {
  35185. name: "Extremely Big",
  35186. height: math.unit(100, "miles")
  35187. },
  35188. {
  35189. name: "Planet Hugger",
  35190. height: math.unit(200, "megameters")
  35191. },
  35192. {
  35193. name: "Unreasonably Big",
  35194. height: math.unit(1e300, "meters")
  35195. },
  35196. ]
  35197. ))
  35198. characterMakers.push(() => makeCharacter(
  35199. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35200. {
  35201. solgooleo: {
  35202. height: math.unit(4, "meters"),
  35203. weight: math.unit(6000*1.5, "kg"),
  35204. volume: math.unit(6000, "liters"),
  35205. name: "Solgooleo",
  35206. image: {
  35207. source: "./media/characters/pi/solgooleo.svg",
  35208. extra: 388/331,
  35209. bottom: 29/417
  35210. }
  35211. },
  35212. },
  35213. [
  35214. {
  35215. name: "Normal",
  35216. height: math.unit(4, "meters"),
  35217. default: true
  35218. },
  35219. ]
  35220. ))
  35221. characterMakers.push(() => makeCharacter(
  35222. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35223. {
  35224. front: {
  35225. height: math.unit(8, "feet"),
  35226. weight: math.unit(4, "tons"),
  35227. name: "Front",
  35228. image: {
  35229. source: "./media/characters/shaun/front.svg",
  35230. extra: 503/495,
  35231. bottom: 20/523
  35232. }
  35233. },
  35234. back: {
  35235. height: math.unit(8, "feet"),
  35236. weight: math.unit(4, "tons"),
  35237. name: "Back",
  35238. image: {
  35239. source: "./media/characters/shaun/back.svg",
  35240. extra: 487/480,
  35241. bottom: 20/507
  35242. }
  35243. },
  35244. },
  35245. [
  35246. {
  35247. name: "Lorg",
  35248. height: math.unit(8, "feet"),
  35249. default: true
  35250. },
  35251. ]
  35252. ))
  35253. characterMakers.push(() => makeCharacter(
  35254. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35255. {
  35256. frontAnthro: {
  35257. height: math.unit(7, "feet"),
  35258. name: "Front",
  35259. image: {
  35260. source: "./media/characters/sini/front-anthro.svg",
  35261. extra: 726/678,
  35262. bottom: 35/761
  35263. },
  35264. form: "anthro",
  35265. default: true
  35266. },
  35267. backAnthro: {
  35268. height: math.unit(7, "feet"),
  35269. name: "Back",
  35270. image: {
  35271. source: "./media/characters/sini/back-anthro.svg",
  35272. extra: 743/701,
  35273. bottom: 12/755
  35274. },
  35275. form: "anthro",
  35276. },
  35277. frontAnthroNsfw: {
  35278. height: math.unit(7, "feet"),
  35279. name: "Front (NSFW)",
  35280. image: {
  35281. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35282. extra: 726/678,
  35283. bottom: 35/761
  35284. },
  35285. form: "anthro"
  35286. },
  35287. backAnthroNsfw: {
  35288. height: math.unit(7, "feet"),
  35289. name: "Back (NSFW)",
  35290. image: {
  35291. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35292. extra: 743/701,
  35293. bottom: 12/755
  35294. },
  35295. form: "anthro",
  35296. },
  35297. mawAnthro: {
  35298. height: math.unit(2.14, "feet"),
  35299. name: "Maw",
  35300. image: {
  35301. source: "./media/characters/sini/maw-anthro.svg"
  35302. },
  35303. form: "anthro"
  35304. },
  35305. dick: {
  35306. height: math.unit(1.45, "feet"),
  35307. name: "Dick",
  35308. image: {
  35309. source: "./media/characters/sini/dick-anthro.svg"
  35310. },
  35311. form: "anthro"
  35312. },
  35313. feral: {
  35314. height: math.unit(16, "feet"),
  35315. name: "Feral",
  35316. image: {
  35317. source: "./media/characters/sini/feral.svg",
  35318. extra: 814/605,
  35319. bottom: 11/825
  35320. },
  35321. form: "feral",
  35322. default: true
  35323. },
  35324. feralNsfw: {
  35325. height: math.unit(16, "feet"),
  35326. name: "Feral (NSFW)",
  35327. image: {
  35328. source: "./media/characters/sini/feral-nsfw.svg",
  35329. extra: 814/605,
  35330. bottom: 11/825
  35331. },
  35332. form: "feral"
  35333. },
  35334. mawFeral: {
  35335. height: math.unit(5.66, "feet"),
  35336. name: "Maw",
  35337. image: {
  35338. source: "./media/characters/sini/maw-feral.svg"
  35339. },
  35340. form: "feral",
  35341. },
  35342. pawFeral: {
  35343. height: math.unit(5.17, "feet"),
  35344. name: "Paw",
  35345. image: {
  35346. source: "./media/characters/sini/paw-feral.svg"
  35347. },
  35348. form: "feral",
  35349. },
  35350. rumpFeral: {
  35351. height: math.unit(13.11, "feet"),
  35352. name: "Rump",
  35353. image: {
  35354. source: "./media/characters/sini/rump-feral.svg"
  35355. },
  35356. form: "feral",
  35357. },
  35358. dickFeral: {
  35359. height: math.unit(1, "feet"),
  35360. name: "Dick",
  35361. image: {
  35362. source: "./media/characters/sini/dick-feral.svg"
  35363. },
  35364. form: "feral",
  35365. },
  35366. eyeFeral: {
  35367. height: math.unit(1.23, "feet"),
  35368. name: "Eye",
  35369. image: {
  35370. source: "./media/characters/sini/eye-feral.svg"
  35371. },
  35372. form: "feral",
  35373. },
  35374. },
  35375. [
  35376. {
  35377. name: "Normal",
  35378. height: math.unit(7, "feet"),
  35379. default: true,
  35380. form: "anthro"
  35381. },
  35382. {
  35383. name: "Normal",
  35384. height: math.unit(16, "feet"),
  35385. default: true,
  35386. form: "feral"
  35387. },
  35388. ],
  35389. {
  35390. "anthro": {
  35391. name: "Anthro",
  35392. default: true
  35393. },
  35394. "feral": {
  35395. name: "Feral",
  35396. }
  35397. }
  35398. ))
  35399. characterMakers.push(() => makeCharacter(
  35400. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35401. {
  35402. side: {
  35403. height: math.unit(47.2, "meters"),
  35404. weight: math.unit(10000, "tons"),
  35405. name: "Side",
  35406. image: {
  35407. source: "./media/characters/raylldo/side.svg",
  35408. extra: 2363/642,
  35409. bottom: 221/2584
  35410. }
  35411. },
  35412. top: {
  35413. height: math.unit(240, "meters"),
  35414. weight: math.unit(10000, "tons"),
  35415. name: "Top",
  35416. image: {
  35417. source: "./media/characters/raylldo/top.svg"
  35418. }
  35419. },
  35420. bottom: {
  35421. height: math.unit(240, "meters"),
  35422. weight: math.unit(10000, "tons"),
  35423. name: "Bottom",
  35424. image: {
  35425. source: "./media/characters/raylldo/bottom.svg"
  35426. }
  35427. },
  35428. head: {
  35429. height: math.unit(38.6, "meters"),
  35430. name: "Head",
  35431. image: {
  35432. source: "./media/characters/raylldo/head.svg",
  35433. extra: 1335/1112,
  35434. bottom: 0/1335
  35435. }
  35436. },
  35437. maw: {
  35438. height: math.unit(16.37, "meters"),
  35439. name: "Maw",
  35440. image: {
  35441. source: "./media/characters/raylldo/maw.svg",
  35442. extra: 883/660,
  35443. bottom: 0/883
  35444. },
  35445. extraAttributes: {
  35446. preyCapacity: {
  35447. name: "Capacity",
  35448. power: 3,
  35449. type: "volume",
  35450. base: math.unit(1000, "people")
  35451. },
  35452. tongueSize: {
  35453. name: "Tongue Size",
  35454. power: 2,
  35455. type: "area",
  35456. base: math.unit(21, "m^2")
  35457. }
  35458. }
  35459. },
  35460. forepaw: {
  35461. height: math.unit(18, "meters"),
  35462. name: "Forepaw",
  35463. image: {
  35464. source: "./media/characters/raylldo/forepaw.svg"
  35465. }
  35466. },
  35467. hindpaw: {
  35468. height: math.unit(23, "meters"),
  35469. name: "Hindpaw",
  35470. image: {
  35471. source: "./media/characters/raylldo/hindpaw.svg"
  35472. }
  35473. },
  35474. genitals: {
  35475. height: math.unit(42, "meters"),
  35476. name: "Genitals",
  35477. image: {
  35478. source: "./media/characters/raylldo/genitals.svg"
  35479. }
  35480. },
  35481. },
  35482. [
  35483. {
  35484. name: "Normal",
  35485. height: math.unit(47.2, "meters"),
  35486. default: true
  35487. },
  35488. ]
  35489. ))
  35490. characterMakers.push(() => makeCharacter(
  35491. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35492. {
  35493. anthroFront: {
  35494. height: math.unit(9, "feet"),
  35495. weight: math.unit(600, "lb"),
  35496. name: "Anthro (Front)",
  35497. image: {
  35498. source: "./media/characters/glint/anthro-front.svg",
  35499. extra: 1097/1018,
  35500. bottom: 28/1125
  35501. }
  35502. },
  35503. anthroBack: {
  35504. height: math.unit(9, "feet"),
  35505. weight: math.unit(600, "lb"),
  35506. name: "Anthro (Back)",
  35507. image: {
  35508. source: "./media/characters/glint/anthro-back.svg",
  35509. extra: 1154/997,
  35510. bottom: 36/1190
  35511. }
  35512. },
  35513. feral: {
  35514. height: math.unit(11, "feet"),
  35515. weight: math.unit(50000, "lb"),
  35516. name: "Feral",
  35517. image: {
  35518. source: "./media/characters/glint/feral.svg",
  35519. extra: 3035/1585,
  35520. bottom: 1169/4204
  35521. }
  35522. },
  35523. dickAnthro: {
  35524. height: math.unit(0.7, "meters"),
  35525. name: "Dick (Anthro)",
  35526. image: {
  35527. source: "./media/characters/glint/dick-anthro.svg"
  35528. }
  35529. },
  35530. dickFeral: {
  35531. height: math.unit(2.65, "meters"),
  35532. name: "Dick (Feral)",
  35533. image: {
  35534. source: "./media/characters/glint/dick-feral.svg"
  35535. }
  35536. },
  35537. slitHidden: {
  35538. height: math.unit(5.85, "meters"),
  35539. name: "Slit (Hidden)",
  35540. image: {
  35541. source: "./media/characters/glint/slit-hidden.svg"
  35542. }
  35543. },
  35544. slitErect: {
  35545. height: math.unit(5.85, "meters"),
  35546. name: "Slit (Erect)",
  35547. image: {
  35548. source: "./media/characters/glint/slit-erect.svg"
  35549. }
  35550. },
  35551. mawAnthro: {
  35552. height: math.unit(0.63, "meters"),
  35553. name: "Maw (Anthro)",
  35554. image: {
  35555. source: "./media/characters/glint/maw.svg"
  35556. }
  35557. },
  35558. mawFeral: {
  35559. height: math.unit(2.89, "meters"),
  35560. name: "Maw (Feral)",
  35561. image: {
  35562. source: "./media/characters/glint/maw.svg"
  35563. }
  35564. },
  35565. },
  35566. [
  35567. {
  35568. name: "Normal",
  35569. height: math.unit(9, "feet"),
  35570. default: true
  35571. },
  35572. ]
  35573. ))
  35574. characterMakers.push(() => makeCharacter(
  35575. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35576. {
  35577. side: {
  35578. height: math.unit(15, "feet"),
  35579. weight: math.unit(5000, "kg"),
  35580. name: "Side",
  35581. image: {
  35582. source: "./media/characters/kairne/side.svg",
  35583. extra: 979/811,
  35584. bottom: 13/992
  35585. }
  35586. },
  35587. front: {
  35588. height: math.unit(15, "feet"),
  35589. weight: math.unit(5000, "kg"),
  35590. name: "Front",
  35591. image: {
  35592. source: "./media/characters/kairne/front.svg",
  35593. extra: 908/814,
  35594. bottom: 26/934
  35595. }
  35596. },
  35597. sideNsfw: {
  35598. height: math.unit(15, "feet"),
  35599. weight: math.unit(5000, "kg"),
  35600. name: "Side (NSFW)",
  35601. image: {
  35602. source: "./media/characters/kairne/side-nsfw.svg",
  35603. extra: 979/811,
  35604. bottom: 13/992
  35605. }
  35606. },
  35607. frontNsfw: {
  35608. height: math.unit(15, "feet"),
  35609. weight: math.unit(5000, "kg"),
  35610. name: "Front (NSFW)",
  35611. image: {
  35612. source: "./media/characters/kairne/front-nsfw.svg",
  35613. extra: 908/814,
  35614. bottom: 26/934
  35615. }
  35616. },
  35617. dickCaged: {
  35618. height: math.unit(0.65, "meters"),
  35619. name: "Dick-caged",
  35620. image: {
  35621. source: "./media/characters/kairne/dick-caged.svg"
  35622. }
  35623. },
  35624. dick: {
  35625. height: math.unit(0.79, "meters"),
  35626. name: "Dick",
  35627. image: {
  35628. source: "./media/characters/kairne/dick.svg"
  35629. }
  35630. },
  35631. genitals: {
  35632. height: math.unit(1.29, "meters"),
  35633. name: "Genitals",
  35634. image: {
  35635. source: "./media/characters/kairne/genitals.svg"
  35636. }
  35637. },
  35638. maw: {
  35639. height: math.unit(1.73, "meters"),
  35640. name: "Maw",
  35641. image: {
  35642. source: "./media/characters/kairne/maw.svg"
  35643. }
  35644. },
  35645. },
  35646. [
  35647. {
  35648. name: "Normal",
  35649. height: math.unit(15, "feet"),
  35650. default: true
  35651. },
  35652. ]
  35653. ))
  35654. characterMakers.push(() => makeCharacter(
  35655. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35656. {
  35657. front: {
  35658. height: math.unit(5 + 8/12, "feet"),
  35659. weight: math.unit(139, "lb"),
  35660. name: "Front",
  35661. image: {
  35662. source: "./media/characters/biscuit-jackal/front.svg",
  35663. extra: 2106/1961,
  35664. bottom: 58/2164
  35665. }
  35666. },
  35667. back: {
  35668. height: math.unit(5 + 8/12, "feet"),
  35669. weight: math.unit(139, "lb"),
  35670. name: "Back",
  35671. image: {
  35672. source: "./media/characters/biscuit-jackal/back.svg",
  35673. extra: 2132/1976,
  35674. bottom: 57/2189
  35675. }
  35676. },
  35677. werejackal: {
  35678. height: math.unit(6 + 3/12, "feet"),
  35679. weight: math.unit(188, "lb"),
  35680. name: "Werejackal",
  35681. image: {
  35682. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35683. extra: 2373/2178,
  35684. bottom: 53/2426
  35685. }
  35686. },
  35687. },
  35688. [
  35689. {
  35690. name: "Normal",
  35691. height: math.unit(5 + 8/12, "feet"),
  35692. default: true
  35693. },
  35694. ]
  35695. ))
  35696. characterMakers.push(() => makeCharacter(
  35697. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35698. {
  35699. front: {
  35700. height: math.unit(140, "cm"),
  35701. weight: math.unit(45, "kg"),
  35702. name: "Front",
  35703. image: {
  35704. source: "./media/characters/tayra-white/front.svg",
  35705. extra: 2229/2192,
  35706. bottom: 75/2304
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(140, "cm"),
  35714. default: true
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35720. {
  35721. front: {
  35722. height: math.unit(4 + 5/12, "feet"),
  35723. name: "Front",
  35724. image: {
  35725. source: "./media/characters/scoop/front.svg",
  35726. extra: 1257/1136,
  35727. bottom: 69/1326
  35728. }
  35729. },
  35730. back: {
  35731. height: math.unit(4 + 5/12, "feet"),
  35732. name: "Back",
  35733. image: {
  35734. source: "./media/characters/scoop/back.svg",
  35735. extra: 1321/1152,
  35736. bottom: 32/1353
  35737. }
  35738. },
  35739. maw: {
  35740. height: math.unit(0.68, "feet"),
  35741. name: "Maw",
  35742. image: {
  35743. source: "./media/characters/scoop/maw.svg"
  35744. }
  35745. },
  35746. },
  35747. [
  35748. {
  35749. name: "Really Small",
  35750. height: math.unit(1, "mm")
  35751. },
  35752. {
  35753. name: "Micro",
  35754. height: math.unit(1, "inch")
  35755. },
  35756. {
  35757. name: "Normal",
  35758. height: math.unit(4 + 5/12, "feet"),
  35759. default: true
  35760. },
  35761. {
  35762. name: "Macro",
  35763. height: math.unit(200, "feet")
  35764. },
  35765. {
  35766. name: "Megamacro",
  35767. height: math.unit(3240, "feet")
  35768. },
  35769. {
  35770. name: "Teramacro",
  35771. height: math.unit(2500, "miles")
  35772. },
  35773. ]
  35774. ))
  35775. characterMakers.push(() => makeCharacter(
  35776. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35777. {
  35778. front: {
  35779. height: math.unit(15 + 7/12, "feet"),
  35780. weight: math.unit(1150, "tons"),
  35781. name: "Front",
  35782. image: {
  35783. source: "./media/characters/saphinara/front.svg",
  35784. extra: 1837/1643,
  35785. bottom: 84/1921
  35786. },
  35787. form: "normal",
  35788. default: true
  35789. },
  35790. side: {
  35791. height: math.unit(15 + 7/12, "feet"),
  35792. weight: math.unit(1150, "tons"),
  35793. name: "Side",
  35794. image: {
  35795. source: "./media/characters/saphinara/side.svg",
  35796. extra: 605/547,
  35797. bottom: 6/611
  35798. },
  35799. form: "normal"
  35800. },
  35801. back: {
  35802. height: math.unit(15 + 7/12, "feet"),
  35803. weight: math.unit(1150, "tons"),
  35804. name: "Back",
  35805. image: {
  35806. source: "./media/characters/saphinara/back.svg",
  35807. extra: 591/531,
  35808. bottom: 13/604
  35809. },
  35810. form: "normal"
  35811. },
  35812. frontTail: {
  35813. height: math.unit(15 + 7/12, "feet"),
  35814. weight: math.unit(1150, "tons"),
  35815. name: "Front (Full Tail)",
  35816. image: {
  35817. source: "./media/characters/saphinara/front-tail.svg",
  35818. extra: 2256/1630,
  35819. bottom: 261/2517
  35820. },
  35821. form: "normal"
  35822. },
  35823. insides: {
  35824. height: math.unit(11.92, "feet"),
  35825. name: "Insides",
  35826. image: {
  35827. source: "./media/characters/saphinara/insides.svg"
  35828. },
  35829. form: "normal"
  35830. },
  35831. head: {
  35832. height: math.unit(4.17, "feet"),
  35833. name: "Head",
  35834. image: {
  35835. source: "./media/characters/saphinara/head.svg"
  35836. },
  35837. form: "normal"
  35838. },
  35839. tongue: {
  35840. height: math.unit(4.60, "feet"),
  35841. name: "Tongue",
  35842. image: {
  35843. source: "./media/characters/saphinara/tongue.svg"
  35844. },
  35845. form: "normal"
  35846. },
  35847. headEnraged: {
  35848. height: math.unit(5.55, "feet"),
  35849. name: "Head (Enraged)",
  35850. image: {
  35851. source: "./media/characters/saphinara/head-enraged.svg"
  35852. },
  35853. form: "normal"
  35854. },
  35855. wings: {
  35856. height: math.unit(11.95, "feet"),
  35857. name: "Wings",
  35858. image: {
  35859. source: "./media/characters/saphinara/wings.svg"
  35860. },
  35861. form: "normal"
  35862. },
  35863. feathers: {
  35864. height: math.unit(8.92, "feet"),
  35865. name: "Feathers",
  35866. image: {
  35867. source: "./media/characters/saphinara/feathers.svg"
  35868. },
  35869. form: "normal"
  35870. },
  35871. shackles: {
  35872. height: math.unit(2, "feet"),
  35873. name: "Shackles",
  35874. image: {
  35875. source: "./media/characters/saphinara/shackles.svg"
  35876. },
  35877. form: "normal"
  35878. },
  35879. eyes: {
  35880. height: math.unit(1.331, "feet"),
  35881. name: "Eyes",
  35882. image: {
  35883. source: "./media/characters/saphinara/eyes.svg"
  35884. },
  35885. form: "normal"
  35886. },
  35887. eyesEnraged: {
  35888. height: math.unit(1.331, "feet"),
  35889. name: "Eyes (Enraged)",
  35890. image: {
  35891. source: "./media/characters/saphinara/eyes-enraged.svg"
  35892. },
  35893. form: "normal"
  35894. },
  35895. trueFormSide: {
  35896. height: math.unit(200, "feet"),
  35897. weight: math.unit(1e7, "tons"),
  35898. name: "Side",
  35899. image: {
  35900. source: "./media/characters/saphinara/true-form-side.svg",
  35901. extra: 1399/770,
  35902. bottom: 97/1496
  35903. },
  35904. form: "true-form",
  35905. default: true
  35906. },
  35907. trueFormMaw: {
  35908. height: math.unit(71.5, "feet"),
  35909. name: "Maw",
  35910. image: {
  35911. source: "./media/characters/saphinara/true-form-maw.svg",
  35912. extra: 2302/1453,
  35913. bottom: 0/2302
  35914. },
  35915. form: "true-form"
  35916. },
  35917. meowberusSide: {
  35918. height: math.unit(75, "feet"),
  35919. weight: math.unit(180000, "kg"),
  35920. preyCapacity: math.unit(50000, "people"),
  35921. name: "Side",
  35922. image: {
  35923. source: "./media/characters/saphinara/meowberus-side.svg",
  35924. extra: 1400/711,
  35925. bottom: 126/1526
  35926. },
  35927. form: "meowberus",
  35928. extraAttributes: {
  35929. "pawArea": {
  35930. name: "Paw Size",
  35931. power: 2,
  35932. type: "area",
  35933. base: math.unit(35, "m^2")
  35934. }
  35935. }
  35936. },
  35937. },
  35938. [
  35939. {
  35940. name: "Normal",
  35941. height: math.unit(15 + 7/12, "feet"),
  35942. default: true,
  35943. form: "normal"
  35944. },
  35945. {
  35946. name: "Angry",
  35947. height: math.unit(30 + 6/12, "feet"),
  35948. form: "normal"
  35949. },
  35950. {
  35951. name: "Enraged",
  35952. height: math.unit(102 + 1/12, "feet"),
  35953. form: "normal"
  35954. },
  35955. {
  35956. name: "True",
  35957. height: math.unit(200, "feet"),
  35958. default: true,
  35959. form: "true-form"
  35960. },
  35961. {
  35962. name: "Normal",
  35963. height: math.unit(75, "feet"),
  35964. default: true,
  35965. form: "meowberus"
  35966. },
  35967. ],
  35968. {
  35969. "normal": {
  35970. name: "Normal",
  35971. default: true
  35972. },
  35973. "true-form": {
  35974. name: "True Form"
  35975. },
  35976. "meowberus": {
  35977. name: "Meowberus",
  35978. },
  35979. }
  35980. ))
  35981. characterMakers.push(() => makeCharacter(
  35982. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35983. {
  35984. front: {
  35985. height: math.unit(6 + 8/12, "feet"),
  35986. weight: math.unit(300, "lb"),
  35987. name: "Front",
  35988. image: {
  35989. source: "./media/characters/jrain/front.svg",
  35990. extra: 3039/2865,
  35991. bottom: 399/3438
  35992. }
  35993. },
  35994. back: {
  35995. height: math.unit(6 + 8/12, "feet"),
  35996. weight: math.unit(300, "lb"),
  35997. name: "Back",
  35998. image: {
  35999. source: "./media/characters/jrain/back.svg",
  36000. extra: 3089/2938,
  36001. bottom: 172/3261
  36002. }
  36003. },
  36004. head: {
  36005. height: math.unit(2.14, "feet"),
  36006. name: "Head",
  36007. image: {
  36008. source: "./media/characters/jrain/head.svg"
  36009. }
  36010. },
  36011. maw: {
  36012. height: math.unit(1.77, "feet"),
  36013. name: "Maw",
  36014. image: {
  36015. source: "./media/characters/jrain/maw.svg"
  36016. }
  36017. },
  36018. leftHand: {
  36019. height: math.unit(1.1, "feet"),
  36020. name: "Left Hand",
  36021. image: {
  36022. source: "./media/characters/jrain/left-hand.svg"
  36023. }
  36024. },
  36025. rightHand: {
  36026. height: math.unit(1.1, "feet"),
  36027. name: "Right Hand",
  36028. image: {
  36029. source: "./media/characters/jrain/right-hand.svg"
  36030. }
  36031. },
  36032. eye: {
  36033. height: math.unit(0.35, "feet"),
  36034. name: "Eye",
  36035. image: {
  36036. source: "./media/characters/jrain/eye.svg"
  36037. }
  36038. },
  36039. },
  36040. [
  36041. {
  36042. name: "Normal",
  36043. height: math.unit(6 + 8/12, "feet"),
  36044. default: true
  36045. },
  36046. {
  36047. name: "Casually Large",
  36048. height: math.unit(25, "feet")
  36049. },
  36050. {
  36051. name: "Giant",
  36052. height: math.unit(100, "feet")
  36053. },
  36054. {
  36055. name: "Kaiju",
  36056. height: math.unit(300, "feet")
  36057. },
  36058. ]
  36059. ))
  36060. characterMakers.push(() => makeCharacter(
  36061. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36062. {
  36063. dragon: {
  36064. height: math.unit(5, "meters"),
  36065. name: "Dragon",
  36066. image: {
  36067. source: "./media/characters/sabrina/dragon.svg",
  36068. extra: 3670 / 2365,
  36069. bottom: 333 / 4003
  36070. }
  36071. },
  36072. gryphon: {
  36073. height: math.unit(3, "meters"),
  36074. name: "Gryphon",
  36075. image: {
  36076. source: "./media/characters/sabrina/gryphon.svg",
  36077. extra: 1576 / 945,
  36078. bottom: 71 / 1647
  36079. }
  36080. },
  36081. snake: {
  36082. height: math.unit(12, "meters"),
  36083. name: "Snake",
  36084. image: {
  36085. source: "./media/characters/sabrina/snake.svg",
  36086. extra: 1758 / 1320,
  36087. bottom: 186 / 1944
  36088. }
  36089. },
  36090. collar: {
  36091. height: math.unit(1.86, "meters"),
  36092. name: "Collar",
  36093. image: {
  36094. source: "./media/characters/sabrina/collar.svg"
  36095. }
  36096. },
  36097. eye: {
  36098. height: math.unit(0.53, "meters"),
  36099. name: "Eye",
  36100. image: {
  36101. source: "./media/characters/sabrina/eye.svg"
  36102. }
  36103. },
  36104. foot: {
  36105. height: math.unit(1.86, "meters"),
  36106. name: "Foot",
  36107. image: {
  36108. source: "./media/characters/sabrina/foot.svg"
  36109. }
  36110. },
  36111. hand: {
  36112. height: math.unit(1.32, "meters"),
  36113. name: "Hand",
  36114. image: {
  36115. source: "./media/characters/sabrina/hand.svg"
  36116. }
  36117. },
  36118. head: {
  36119. height: math.unit(2.44, "meters"),
  36120. name: "Head",
  36121. image: {
  36122. source: "./media/characters/sabrina/head.svg"
  36123. }
  36124. },
  36125. headAngry: {
  36126. height: math.unit(2.44, "meters"),
  36127. name: "Head (Angry))",
  36128. image: {
  36129. source: "./media/characters/sabrina/head-angry.svg"
  36130. }
  36131. },
  36132. maw: {
  36133. height: math.unit(1.65, "meters"),
  36134. name: "Maw",
  36135. image: {
  36136. source: "./media/characters/sabrina/maw.svg"
  36137. }
  36138. },
  36139. spikes: {
  36140. height: math.unit(1.69, "meters"),
  36141. name: "Spikes",
  36142. image: {
  36143. source: "./media/characters/sabrina/spikes.svg"
  36144. }
  36145. },
  36146. stomach: {
  36147. height: math.unit(1.15, "meters"),
  36148. name: "Stomach",
  36149. image: {
  36150. source: "./media/characters/sabrina/stomach.svg"
  36151. }
  36152. },
  36153. tongue: {
  36154. height: math.unit(1.27, "meters"),
  36155. name: "Tongue",
  36156. image: {
  36157. source: "./media/characters/sabrina/tongue.svg"
  36158. }
  36159. },
  36160. wingDorsal: {
  36161. height: math.unit(4.85, "meters"),
  36162. name: "Wing (Dorsal)",
  36163. image: {
  36164. source: "./media/characters/sabrina/wing-dorsal.svg"
  36165. }
  36166. },
  36167. wingVentral: {
  36168. height: math.unit(4.85, "meters"),
  36169. name: "Wing (Ventral)",
  36170. image: {
  36171. source: "./media/characters/sabrina/wing-ventral.svg"
  36172. }
  36173. },
  36174. },
  36175. [
  36176. {
  36177. name: "Normal",
  36178. height: math.unit(5, "meters"),
  36179. default: true
  36180. },
  36181. ]
  36182. ))
  36183. characterMakers.push(() => makeCharacter(
  36184. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36185. {
  36186. frontMaid: {
  36187. height: math.unit(5 + 5/12, "feet"),
  36188. weight: math.unit(130, "lb"),
  36189. name: "Front (Maid)",
  36190. image: {
  36191. source: "./media/characters/midnight-tales/front-maid.svg",
  36192. extra: 489/454,
  36193. bottom: 61/550
  36194. }
  36195. },
  36196. frontFormal: {
  36197. height: math.unit(5 + 5/12, "feet"),
  36198. weight: math.unit(130, "lb"),
  36199. name: "Front (Formal)",
  36200. image: {
  36201. source: "./media/characters/midnight-tales/front-formal.svg",
  36202. extra: 489/454,
  36203. bottom: 61/550
  36204. }
  36205. },
  36206. back: {
  36207. height: math.unit(5 + 5/12, "feet"),
  36208. weight: math.unit(130, "lb"),
  36209. name: "Back",
  36210. image: {
  36211. source: "./media/characters/midnight-tales/back.svg",
  36212. extra: 498/456,
  36213. bottom: 33/531
  36214. }
  36215. },
  36216. frontBeast: {
  36217. height: math.unit(40, "feet"),
  36218. weight: math.unit(64000, "lb"),
  36219. name: "Front (Beast)",
  36220. image: {
  36221. source: "./media/characters/midnight-tales/front-beast.svg",
  36222. extra: 927/860,
  36223. bottom: 53/980
  36224. }
  36225. },
  36226. backBeast: {
  36227. height: math.unit(40, "feet"),
  36228. weight: math.unit(64000, "lb"),
  36229. name: "Back (Beast)",
  36230. image: {
  36231. source: "./media/characters/midnight-tales/back-beast.svg",
  36232. extra: 929/855,
  36233. bottom: 16/945
  36234. }
  36235. },
  36236. footBeast: {
  36237. height: math.unit(6.7, "feet"),
  36238. name: "Foot (Beast)",
  36239. image: {
  36240. source: "./media/characters/midnight-tales/foot-beast.svg"
  36241. }
  36242. },
  36243. headBeast: {
  36244. height: math.unit(8, "feet"),
  36245. name: "Head (Beast)",
  36246. image: {
  36247. source: "./media/characters/midnight-tales/head-beast.svg"
  36248. }
  36249. },
  36250. },
  36251. [
  36252. {
  36253. name: "Normal",
  36254. height: math.unit(5 + 5 / 12, "feet"),
  36255. default: true
  36256. },
  36257. {
  36258. name: "Macro",
  36259. height: math.unit(25, "feet")
  36260. },
  36261. ]
  36262. ))
  36263. characterMakers.push(() => makeCharacter(
  36264. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36265. {
  36266. front: {
  36267. height: math.unit(5 + 10/12, "feet"),
  36268. name: "Front",
  36269. image: {
  36270. source: "./media/characters/argon/front.svg",
  36271. extra: 2009/1935,
  36272. bottom: 118/2127
  36273. }
  36274. },
  36275. back: {
  36276. height: math.unit(5 + 10/12, "feet"),
  36277. name: "Back",
  36278. image: {
  36279. source: "./media/characters/argon/back.svg",
  36280. extra: 2047/1992,
  36281. bottom: 20/2067
  36282. }
  36283. },
  36284. frontDressed: {
  36285. height: math.unit(5 + 10/12, "feet"),
  36286. name: "Front (Dressed)",
  36287. image: {
  36288. source: "./media/characters/argon/front-dressed.svg",
  36289. extra: 2009/1935,
  36290. bottom: 118/2127
  36291. }
  36292. },
  36293. },
  36294. [
  36295. {
  36296. name: "Normal",
  36297. height: math.unit(5 + 10/12, "feet"),
  36298. default: true
  36299. },
  36300. ]
  36301. ))
  36302. characterMakers.push(() => makeCharacter(
  36303. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36304. {
  36305. front: {
  36306. height: math.unit(8 + 6/12, "feet"),
  36307. weight: math.unit(1150, "lb"),
  36308. name: "Front",
  36309. image: {
  36310. source: "./media/characters/kichi/front.svg",
  36311. extra: 1267/1164,
  36312. bottom: 61/1328
  36313. }
  36314. },
  36315. back: {
  36316. height: math.unit(8 + 6/12, "feet"),
  36317. weight: math.unit(1150, "lb"),
  36318. name: "Back",
  36319. image: {
  36320. source: "./media/characters/kichi/back.svg",
  36321. extra: 1273/1166,
  36322. bottom: 33/1306
  36323. }
  36324. },
  36325. },
  36326. [
  36327. {
  36328. name: "Normal",
  36329. height: math.unit(8 + 6/12, "feet"),
  36330. default: true
  36331. },
  36332. ]
  36333. ))
  36334. characterMakers.push(() => makeCharacter(
  36335. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36336. {
  36337. front: {
  36338. height: math.unit(6, "feet"),
  36339. weight: math.unit(210, "lb"),
  36340. name: "Front",
  36341. image: {
  36342. source: "./media/characters/manetel-greyscale/front.svg",
  36343. extra: 350/312,
  36344. bottom: 8/358
  36345. }
  36346. },
  36347. },
  36348. [
  36349. {
  36350. name: "Micro",
  36351. height: math.unit(2, "inches")
  36352. },
  36353. {
  36354. name: "Normal",
  36355. height: math.unit(6, "feet"),
  36356. default: true
  36357. },
  36358. {
  36359. name: "Minimacro",
  36360. height: math.unit(17, "feet")
  36361. },
  36362. {
  36363. name: "Macro",
  36364. height: math.unit(117, "feet")
  36365. },
  36366. ]
  36367. ))
  36368. characterMakers.push(() => makeCharacter(
  36369. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36370. {
  36371. side: {
  36372. height: math.unit(5 + 1/12, "feet"),
  36373. weight: math.unit(418, "lb"),
  36374. name: "Side",
  36375. image: {
  36376. source: "./media/characters/softpurr/side.svg",
  36377. extra: 1993/1945,
  36378. bottom: 134/2127
  36379. }
  36380. },
  36381. front: {
  36382. height: math.unit(5 + 1/12, "feet"),
  36383. weight: math.unit(418, "lb"),
  36384. name: "Front",
  36385. image: {
  36386. source: "./media/characters/softpurr/front.svg",
  36387. extra: 1950/1856,
  36388. bottom: 174/2124
  36389. }
  36390. },
  36391. paw: {
  36392. height: math.unit(1, "feet"),
  36393. name: "Paw",
  36394. image: {
  36395. source: "./media/characters/softpurr/paw.svg"
  36396. }
  36397. },
  36398. },
  36399. [
  36400. {
  36401. name: "Normal",
  36402. height: math.unit(5 + 1/12, "feet"),
  36403. default: true
  36404. },
  36405. ]
  36406. ))
  36407. characterMakers.push(() => makeCharacter(
  36408. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36409. {
  36410. front: {
  36411. height: math.unit(260, "meters"),
  36412. name: "Front",
  36413. image: {
  36414. source: "./media/characters/anahita/front.svg",
  36415. extra: 665/635,
  36416. bottom: 89/754
  36417. }
  36418. },
  36419. },
  36420. [
  36421. {
  36422. name: "Macro",
  36423. height: math.unit(260, "meters"),
  36424. default: true
  36425. },
  36426. ]
  36427. ))
  36428. characterMakers.push(() => makeCharacter(
  36429. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36430. {
  36431. front: {
  36432. height: math.unit(4 + 10/12, "feet"),
  36433. weight: math.unit(160, "lb"),
  36434. name: "Front",
  36435. image: {
  36436. source: "./media/characters/chip-mouse/front.svg",
  36437. extra: 3528/3408,
  36438. bottom: 0/3528
  36439. }
  36440. },
  36441. frontNsfw: {
  36442. height: math.unit(4 + 10/12, "feet"),
  36443. weight: math.unit(160, "lb"),
  36444. name: "Front (NSFW)",
  36445. image: {
  36446. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36447. extra: 3528/3408,
  36448. bottom: 0/3528
  36449. }
  36450. },
  36451. },
  36452. [
  36453. {
  36454. name: "Normal",
  36455. height: math.unit(4 + 10/12, "feet"),
  36456. default: true
  36457. },
  36458. ]
  36459. ))
  36460. characterMakers.push(() => makeCharacter(
  36461. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36462. {
  36463. side: {
  36464. height: math.unit(10, "feet"),
  36465. weight: math.unit(14000, "lb"),
  36466. name: "Side",
  36467. image: {
  36468. source: "./media/characters/kremm/side.svg",
  36469. extra: 1390/1053,
  36470. bottom: 90/1480
  36471. }
  36472. },
  36473. gut: {
  36474. height: math.unit(5.8, "feet"),
  36475. name: "Gut",
  36476. image: {
  36477. source: "./media/characters/kremm/gut.svg"
  36478. }
  36479. },
  36480. ass: {
  36481. height: math.unit(6.1, "feet"),
  36482. name: "Ass",
  36483. image: {
  36484. source: "./media/characters/kremm/ass.svg"
  36485. }
  36486. },
  36487. jaws: {
  36488. height: math.unit(2.2, "feet"),
  36489. name: "Jaws",
  36490. image: {
  36491. source: "./media/characters/kremm/jaws.svg"
  36492. }
  36493. },
  36494. dick: {
  36495. height: math.unit(4.26, "feet"),
  36496. name: "Dick",
  36497. image: {
  36498. source: "./media/characters/kremm/dick.svg"
  36499. }
  36500. },
  36501. },
  36502. [
  36503. {
  36504. name: "Normal",
  36505. height: math.unit(10, "feet"),
  36506. default: true
  36507. },
  36508. ]
  36509. ))
  36510. characterMakers.push(() => makeCharacter(
  36511. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36512. {
  36513. front: {
  36514. height: math.unit(30, "stories"),
  36515. name: "Front",
  36516. image: {
  36517. source: "./media/characters/kai/front.svg",
  36518. extra: 1892/1718,
  36519. bottom: 162/2054
  36520. }
  36521. },
  36522. },
  36523. [
  36524. {
  36525. name: "Macro",
  36526. height: math.unit(30, "stories"),
  36527. default: true
  36528. },
  36529. ]
  36530. ))
  36531. characterMakers.push(() => makeCharacter(
  36532. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36533. {
  36534. front: {
  36535. height: math.unit(6 + 4/12, "feet"),
  36536. weight: math.unit(145, "lb"),
  36537. name: "Front",
  36538. image: {
  36539. source: "./media/characters/sykes/front.svg",
  36540. extra: 1321 / 1187,
  36541. bottom: 66 / 1387
  36542. }
  36543. },
  36544. back: {
  36545. height: math.unit(6 + 4/12, "feet"),
  36546. weight: math.unit(145, "lb"),
  36547. name: "Back",
  36548. image: {
  36549. source: "./media/characters/sykes/back.svg",
  36550. extra: 1326/1181,
  36551. bottom: 31/1357
  36552. }
  36553. },
  36554. traditionalOutfit: {
  36555. height: math.unit(6 + 4/12, "feet"),
  36556. weight: math.unit(145, "lb"),
  36557. name: "Traditional Outfit",
  36558. image: {
  36559. source: "./media/characters/sykes/traditional-outfit.svg",
  36560. extra: 1321 / 1187,
  36561. bottom: 66 / 1387
  36562. }
  36563. },
  36564. adventureOutfit: {
  36565. height: math.unit(6 + 4/12, "feet"),
  36566. weight: math.unit(145, "lb"),
  36567. name: "Adventure Outfit",
  36568. image: {
  36569. source: "./media/characters/sykes/adventure-outfit.svg",
  36570. extra: 1321 / 1187,
  36571. bottom: 66 / 1387
  36572. }
  36573. },
  36574. handLeft: {
  36575. height: math.unit(0.9, "feet"),
  36576. name: "Hand (Left)",
  36577. image: {
  36578. source: "./media/characters/sykes/hand-left.svg"
  36579. }
  36580. },
  36581. handRight: {
  36582. height: math.unit(0.839, "feet"),
  36583. name: "Hand (Right)",
  36584. image: {
  36585. source: "./media/characters/sykes/hand-right.svg"
  36586. }
  36587. },
  36588. leftFoot: {
  36589. height: math.unit(1.2, "feet"),
  36590. name: "Foot (Left)",
  36591. image: {
  36592. source: "./media/characters/sykes/foot-left.svg"
  36593. }
  36594. },
  36595. rightFoot: {
  36596. height: math.unit(1.2, "feet"),
  36597. name: "Foot (Right)",
  36598. image: {
  36599. source: "./media/characters/sykes/foot-right.svg"
  36600. }
  36601. },
  36602. maw: {
  36603. height: math.unit(1.93, "feet"),
  36604. name: "Maw",
  36605. image: {
  36606. source: "./media/characters/sykes/maw.svg"
  36607. }
  36608. },
  36609. teeth: {
  36610. height: math.unit(0.51, "feet"),
  36611. name: "Teeth",
  36612. image: {
  36613. source: "./media/characters/sykes/teeth.svg"
  36614. }
  36615. },
  36616. tongue: {
  36617. height: math.unit(2.13, "feet"),
  36618. name: "Tongue",
  36619. image: {
  36620. source: "./media/characters/sykes/tongue.svg"
  36621. }
  36622. },
  36623. uvula: {
  36624. height: math.unit(0.16, "feet"),
  36625. name: "Uvula",
  36626. image: {
  36627. source: "./media/characters/sykes/uvula.svg"
  36628. }
  36629. },
  36630. collar: {
  36631. height: math.unit(0.287, "feet"),
  36632. name: "Collar",
  36633. image: {
  36634. source: "./media/characters/sykes/collar.svg"
  36635. }
  36636. },
  36637. tail: {
  36638. height: math.unit(3.8, "feet"),
  36639. name: "Tail",
  36640. image: {
  36641. source: "./media/characters/sykes/tail.svg"
  36642. }
  36643. },
  36644. },
  36645. [
  36646. {
  36647. name: "Shrunken",
  36648. height: math.unit(5, "inches")
  36649. },
  36650. {
  36651. name: "Normal",
  36652. height: math.unit(6 + 4 / 12, "feet"),
  36653. default: true
  36654. },
  36655. {
  36656. name: "Big",
  36657. height: math.unit(15, "feet")
  36658. },
  36659. ]
  36660. ))
  36661. characterMakers.push(() => makeCharacter(
  36662. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36663. {
  36664. front: {
  36665. height: math.unit(5 + 8/12, "feet"),
  36666. weight: math.unit(190, "lb"),
  36667. name: "Front",
  36668. image: {
  36669. source: "./media/characters/oven-otter/front.svg",
  36670. extra: 1809/1740,
  36671. bottom: 181/1990
  36672. }
  36673. },
  36674. back: {
  36675. height: math.unit(5 + 8/12, "feet"),
  36676. weight: math.unit(190, "lb"),
  36677. name: "Back",
  36678. image: {
  36679. source: "./media/characters/oven-otter/back.svg",
  36680. extra: 1709/1635,
  36681. bottom: 118/1827
  36682. }
  36683. },
  36684. hand: {
  36685. height: math.unit(1.07, "feet"),
  36686. name: "Hand",
  36687. image: {
  36688. source: "./media/characters/oven-otter/hand.svg"
  36689. }
  36690. },
  36691. beans: {
  36692. height: math.unit(1.74, "feet"),
  36693. name: "Beans",
  36694. image: {
  36695. source: "./media/characters/oven-otter/beans.svg"
  36696. }
  36697. },
  36698. },
  36699. [
  36700. {
  36701. name: "Micro",
  36702. height: math.unit(0.5, "inches")
  36703. },
  36704. {
  36705. name: "Normal",
  36706. height: math.unit(5 + 8/12, "feet"),
  36707. default: true
  36708. },
  36709. {
  36710. name: "Macro",
  36711. height: math.unit(250, "feet")
  36712. },
  36713. {
  36714. name: "Really High",
  36715. height: math.unit(420, "feet")
  36716. },
  36717. ]
  36718. ))
  36719. characterMakers.push(() => makeCharacter(
  36720. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36721. {
  36722. front: {
  36723. height: math.unit(5, "meters"),
  36724. weight: math.unit(292000000000000, "kg"),
  36725. name: "Front",
  36726. image: {
  36727. source: "./media/characters/devourer/front.svg",
  36728. extra: 1800/1733,
  36729. bottom: 211/2011
  36730. }
  36731. },
  36732. maw: {
  36733. height: math.unit(1.1, "meter"),
  36734. name: "Maw",
  36735. image: {
  36736. source: "./media/characters/devourer/maw.svg"
  36737. }
  36738. },
  36739. },
  36740. [
  36741. {
  36742. name: "Small",
  36743. height: math.unit(3, "meters")
  36744. },
  36745. {
  36746. name: "Large",
  36747. height: math.unit(5, "meters"),
  36748. default: true
  36749. },
  36750. ]
  36751. ))
  36752. characterMakers.push(() => makeCharacter(
  36753. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36754. {
  36755. front: {
  36756. height: math.unit(6, "feet"),
  36757. weight: math.unit(400, "lb"),
  36758. name: "Front",
  36759. image: {
  36760. source: "./media/characters/ellarby/front.svg",
  36761. extra: 1909/1763,
  36762. bottom: 80/1989
  36763. }
  36764. },
  36765. back: {
  36766. height: math.unit(6, "feet"),
  36767. weight: math.unit(400, "lb"),
  36768. name: "Back",
  36769. image: {
  36770. source: "./media/characters/ellarby/back.svg",
  36771. extra: 1914/1784,
  36772. bottom: 172/2086
  36773. }
  36774. },
  36775. },
  36776. [
  36777. {
  36778. name: "Mischief",
  36779. height: math.unit(18, "inches")
  36780. },
  36781. {
  36782. name: "Trouble",
  36783. height: math.unit(12, "feet")
  36784. },
  36785. {
  36786. name: "Havoc",
  36787. height: math.unit(200, "feet"),
  36788. default: true
  36789. },
  36790. {
  36791. name: "Pandemonium",
  36792. height: math.unit(1, "mile")
  36793. },
  36794. {
  36795. name: "Catastrophe",
  36796. height: math.unit(100, "miles")
  36797. },
  36798. ]
  36799. ))
  36800. characterMakers.push(() => makeCharacter(
  36801. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36802. {
  36803. front: {
  36804. height: math.unit(4.7, "meters"),
  36805. weight: math.unit(6500, "kg"),
  36806. name: "Front",
  36807. image: {
  36808. source: "./media/characters/vex/front.svg",
  36809. extra: 1288/1140,
  36810. bottom: 100/1388
  36811. }
  36812. },
  36813. },
  36814. [
  36815. {
  36816. name: "Normal",
  36817. height: math.unit(4.7, "meters"),
  36818. default: true
  36819. },
  36820. ]
  36821. ))
  36822. characterMakers.push(() => makeCharacter(
  36823. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36824. {
  36825. normal: {
  36826. height: math.unit(6, "feet"),
  36827. weight: math.unit(350, "lb"),
  36828. name: "Normal",
  36829. image: {
  36830. source: "./media/characters/teshy/normal.svg",
  36831. extra: 1795/1735,
  36832. bottom: 16/1811
  36833. }
  36834. },
  36835. monsterFront: {
  36836. height: math.unit(12, "feet"),
  36837. weight: math.unit(4700, "lb"),
  36838. name: "Monster (Front)",
  36839. image: {
  36840. source: "./media/characters/teshy/monster-front.svg",
  36841. extra: 2042/2034,
  36842. bottom: 128/2170
  36843. }
  36844. },
  36845. monsterSide: {
  36846. height: math.unit(12, "feet"),
  36847. weight: math.unit(4700, "lb"),
  36848. name: "Monster (Side)",
  36849. image: {
  36850. source: "./media/characters/teshy/monster-side.svg",
  36851. extra: 2067/2056,
  36852. bottom: 70/2137
  36853. }
  36854. },
  36855. monsterBack: {
  36856. height: math.unit(12, "feet"),
  36857. weight: math.unit(4700, "lb"),
  36858. name: "Monster (Back)",
  36859. image: {
  36860. source: "./media/characters/teshy/monster-back.svg",
  36861. extra: 1921/1914,
  36862. bottom: 171/2092
  36863. }
  36864. },
  36865. },
  36866. [
  36867. {
  36868. name: "Normal",
  36869. height: math.unit(6, "feet"),
  36870. default: true
  36871. },
  36872. ]
  36873. ))
  36874. characterMakers.push(() => makeCharacter(
  36875. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36876. {
  36877. front: {
  36878. height: math.unit(6, "feet"),
  36879. name: "Front",
  36880. image: {
  36881. source: "./media/characters/ramey/front.svg",
  36882. extra: 790/787,
  36883. bottom: 27/817
  36884. }
  36885. },
  36886. },
  36887. [
  36888. {
  36889. name: "Normal",
  36890. height: math.unit(6, "feet"),
  36891. default: true
  36892. },
  36893. ]
  36894. ))
  36895. characterMakers.push(() => makeCharacter(
  36896. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36897. {
  36898. front: {
  36899. height: math.unit(5 + 5/12, "feet"),
  36900. weight: math.unit(120, "lb"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/phirae/front.svg",
  36904. extra: 2491/2436,
  36905. bottom: 38/2529
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(5 + 5/12, "feet"),
  36913. default: true
  36914. },
  36915. ]
  36916. ))
  36917. characterMakers.push(() => makeCharacter(
  36918. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36919. {
  36920. front: {
  36921. height: math.unit(5 + 3/12, "feet"),
  36922. name: "Front",
  36923. image: {
  36924. source: "./media/characters/stagglas/front.svg",
  36925. extra: 962/882,
  36926. bottom: 53/1015
  36927. }
  36928. },
  36929. feral: {
  36930. height: math.unit(335, "cm"),
  36931. name: "Feral",
  36932. image: {
  36933. source: "./media/characters/stagglas/feral.svg",
  36934. extra: 1732/1090,
  36935. bottom: 48/1780
  36936. }
  36937. },
  36938. },
  36939. [
  36940. {
  36941. name: "Normal",
  36942. height: math.unit(5 + 3/12, "feet"),
  36943. default: true
  36944. },
  36945. ]
  36946. ))
  36947. characterMakers.push(() => makeCharacter(
  36948. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36949. {
  36950. front: {
  36951. height: math.unit(5 + 4/12, "feet"),
  36952. weight: math.unit(145, "lb"),
  36953. name: "Front",
  36954. image: {
  36955. source: "./media/characters/starra/front.svg",
  36956. extra: 1790/1691,
  36957. bottom: 91/1881
  36958. }
  36959. },
  36960. },
  36961. [
  36962. {
  36963. name: "Normal",
  36964. height: math.unit(5 + 4/12, "feet"),
  36965. default: true
  36966. },
  36967. ]
  36968. ))
  36969. characterMakers.push(() => makeCharacter(
  36970. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36971. {
  36972. front: {
  36973. height: math.unit(3.5, "meters"),
  36974. name: "Front",
  36975. image: {
  36976. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36977. extra: 1248/972,
  36978. bottom: 38/1286
  36979. }
  36980. },
  36981. },
  36982. [
  36983. {
  36984. name: "Normal",
  36985. height: math.unit(3.5, "meters"),
  36986. default: true
  36987. },
  36988. ]
  36989. ))
  36990. characterMakers.push(() => makeCharacter(
  36991. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36992. {
  36993. side: {
  36994. height: math.unit(8 + 2/12, "feet"),
  36995. weight: math.unit(1240, "lb"),
  36996. name: "Side",
  36997. image: {
  36998. source: "./media/characters/mika-valentine/side.svg",
  36999. extra: 2670/2501,
  37000. bottom: 250/2920
  37001. }
  37002. },
  37003. },
  37004. [
  37005. {
  37006. name: "Normal",
  37007. height: math.unit(8 + 2/12, "feet"),
  37008. default: true
  37009. },
  37010. ]
  37011. ))
  37012. characterMakers.push(() => makeCharacter(
  37013. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37014. {
  37015. front: {
  37016. height: math.unit(7 + 2/12, "feet"),
  37017. name: "Front",
  37018. image: {
  37019. source: "./media/characters/xoltol/front.svg",
  37020. extra: 2212/2124,
  37021. bottom: 84/2296
  37022. }
  37023. },
  37024. side: {
  37025. height: math.unit(7 + 2/12, "feet"),
  37026. name: "Side",
  37027. image: {
  37028. source: "./media/characters/xoltol/side.svg",
  37029. extra: 2273/2197,
  37030. bottom: 26/2299
  37031. }
  37032. },
  37033. hand: {
  37034. height: math.unit(2.5, "feet"),
  37035. name: "Hand",
  37036. image: {
  37037. source: "./media/characters/xoltol/hand.svg"
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Small-ish",
  37044. height: math.unit(5 + 11/12, "feet")
  37045. },
  37046. {
  37047. name: "Normal",
  37048. height: math.unit(7 + 2/12, "feet")
  37049. },
  37050. {
  37051. name: "\"Macro\"",
  37052. height: math.unit(14 + 9/12, "feet"),
  37053. default: true
  37054. },
  37055. {
  37056. name: "Alternate Height",
  37057. height: math.unit(20, "feet")
  37058. },
  37059. {
  37060. name: "Actually Macro",
  37061. height: math.unit(100, "feet")
  37062. },
  37063. ]
  37064. ))
  37065. characterMakers.push(() => makeCharacter(
  37066. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37067. {
  37068. front: {
  37069. height: math.unit(5 + 2/12, "feet"),
  37070. weight: math.unit(75, "kg"),
  37071. name: "Front",
  37072. image: {
  37073. source: "./media/characters/kotetsu-redwood/front.svg",
  37074. extra: 1053/942,
  37075. bottom: 60/1113
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "Normal",
  37082. height: math.unit(5 + 2/12, "feet"),
  37083. default: true
  37084. },
  37085. ]
  37086. ))
  37087. characterMakers.push(() => makeCharacter(
  37088. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37089. {
  37090. front: {
  37091. height: math.unit(2.4, "meters"),
  37092. weight: math.unit(125, "kg"),
  37093. name: "Front",
  37094. image: {
  37095. source: "./media/characters/lilith/front.svg",
  37096. extra: 1590/1513,
  37097. bottom: 203/1793
  37098. }
  37099. },
  37100. },
  37101. [
  37102. {
  37103. name: "Humanoid",
  37104. height: math.unit(2.4, "meters")
  37105. },
  37106. {
  37107. name: "Normal",
  37108. height: math.unit(6, "meters"),
  37109. default: true
  37110. },
  37111. {
  37112. name: "Largest",
  37113. height: math.unit(55, "meters")
  37114. },
  37115. ]
  37116. ))
  37117. characterMakers.push(() => makeCharacter(
  37118. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37119. {
  37120. front: {
  37121. height: math.unit(8 + 4/12, "feet"),
  37122. weight: math.unit(535, "lb"),
  37123. name: "Front",
  37124. image: {
  37125. source: "./media/characters/beh'kah-bolger/front.svg",
  37126. extra: 1660/1603,
  37127. bottom: 37/1697
  37128. }
  37129. },
  37130. },
  37131. [
  37132. {
  37133. name: "Normal",
  37134. height: math.unit(8 + 4/12, "feet"),
  37135. default: true
  37136. },
  37137. {
  37138. name: "Kaiju",
  37139. height: math.unit(250, "feet")
  37140. },
  37141. {
  37142. name: "Still Growing",
  37143. height: math.unit(10, "miles")
  37144. },
  37145. {
  37146. name: "Continental",
  37147. height: math.unit(5000, "miles")
  37148. },
  37149. {
  37150. name: "Final Form",
  37151. height: math.unit(2500000, "miles")
  37152. },
  37153. ]
  37154. ))
  37155. characterMakers.push(() => makeCharacter(
  37156. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37157. {
  37158. front: {
  37159. height: math.unit(7 + 2/12, "feet"),
  37160. weight: math.unit(230, "kg"),
  37161. name: "Front",
  37162. image: {
  37163. source: "./media/characters/tatyana-milewska/front.svg",
  37164. extra: 1199/1150,
  37165. bottom: 86/1285
  37166. }
  37167. },
  37168. },
  37169. [
  37170. {
  37171. name: "Normal",
  37172. height: math.unit(7 + 2/12, "feet"),
  37173. default: true
  37174. },
  37175. {
  37176. name: "Big",
  37177. height: math.unit(12, "feet")
  37178. },
  37179. {
  37180. name: "Minimacro",
  37181. height: math.unit(20, "feet")
  37182. },
  37183. {
  37184. name: "Macro",
  37185. height: math.unit(120, "feet")
  37186. },
  37187. ]
  37188. ))
  37189. characterMakers.push(() => makeCharacter(
  37190. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37191. {
  37192. front: {
  37193. height: math.unit(7 + 8/12, "feet"),
  37194. weight: math.unit(152, "kg"),
  37195. name: "Front",
  37196. image: {
  37197. source: "./media/characters/helen-arri/front.svg",
  37198. extra: 440/423,
  37199. bottom: 14/454
  37200. }
  37201. },
  37202. back: {
  37203. height: math.unit(7 + 8/12, "feet"),
  37204. weight: math.unit(152, "kg"),
  37205. name: "Back",
  37206. image: {
  37207. source: "./media/characters/helen-arri/back.svg",
  37208. extra: 443/426,
  37209. bottom: 8/451
  37210. }
  37211. },
  37212. },
  37213. [
  37214. {
  37215. name: "Normal",
  37216. height: math.unit(7 + 8/12, "feet"),
  37217. default: true
  37218. },
  37219. {
  37220. name: "Big",
  37221. height: math.unit(14, "feet")
  37222. },
  37223. {
  37224. name: "Minimacro",
  37225. height: math.unit(24, "feet")
  37226. },
  37227. {
  37228. name: "Macro",
  37229. height: math.unit(140, "feet")
  37230. },
  37231. ]
  37232. ))
  37233. characterMakers.push(() => makeCharacter(
  37234. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37235. {
  37236. front: {
  37237. height: math.unit(6, "meters"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/ehanu-rehu/front.svg",
  37241. extra: 1800/1800,
  37242. bottom: 59/1859
  37243. }
  37244. },
  37245. },
  37246. [
  37247. {
  37248. name: "Normal",
  37249. height: math.unit(6, "meters"),
  37250. default: true
  37251. },
  37252. ]
  37253. ))
  37254. characterMakers.push(() => makeCharacter(
  37255. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37256. {
  37257. front: {
  37258. height: math.unit(7 + 3/12, "feet"),
  37259. name: "Front",
  37260. image: {
  37261. source: "./media/characters/renholder/front.svg",
  37262. extra: 3096/2960,
  37263. bottom: 250/3346
  37264. }
  37265. },
  37266. },
  37267. [
  37268. {
  37269. name: "Normal Bat",
  37270. height: math.unit(7 + 3/12, "feet"),
  37271. default: true
  37272. },
  37273. {
  37274. name: "Slightly Tall Bat",
  37275. height: math.unit(100, "feet")
  37276. },
  37277. {
  37278. name: "Big Bat",
  37279. height: math.unit(1000, "feet")
  37280. },
  37281. {
  37282. name: "City-Sized Bat",
  37283. height: math.unit(200000, "feet")
  37284. },
  37285. {
  37286. name: "Bigger Bat",
  37287. height: math.unit(10000, "miles")
  37288. },
  37289. {
  37290. name: "Solar Sized Bat",
  37291. height: math.unit(100, "AU")
  37292. },
  37293. {
  37294. name: "Galactic Bat",
  37295. height: math.unit(200000, "lightyears")
  37296. },
  37297. {
  37298. name: "Universally Known Bat",
  37299. height: math.unit(1, "universe")
  37300. },
  37301. ]
  37302. ))
  37303. characterMakers.push(() => makeCharacter(
  37304. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37305. {
  37306. front: {
  37307. height: math.unit(6 + 11/12, "feet"),
  37308. weight: math.unit(250, "lb"),
  37309. name: "Front",
  37310. image: {
  37311. source: "./media/characters/cookiecat/front.svg",
  37312. extra: 893/827,
  37313. bottom: 14/907
  37314. }
  37315. },
  37316. },
  37317. [
  37318. {
  37319. name: "Micro",
  37320. height: math.unit(3, "inches")
  37321. },
  37322. {
  37323. name: "Normal",
  37324. height: math.unit(6 + 11/12, "feet"),
  37325. default: true
  37326. },
  37327. {
  37328. name: "Macro",
  37329. height: math.unit(100, "feet")
  37330. },
  37331. {
  37332. name: "Macro+",
  37333. height: math.unit(404, "feet")
  37334. },
  37335. {
  37336. name: "Megamacro",
  37337. height: math.unit(165, "miles")
  37338. },
  37339. {
  37340. name: "Planetary",
  37341. height: math.unit(4600, "miles")
  37342. },
  37343. ]
  37344. ))
  37345. characterMakers.push(() => makeCharacter(
  37346. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37347. {
  37348. front: {
  37349. height: math.unit(10 + 3/12, "feet"),
  37350. weight: math.unit(1500, "lb"),
  37351. name: "Front",
  37352. image: {
  37353. source: "./media/characters/tux-kusanagi/front.svg",
  37354. extra: 944/840,
  37355. bottom: 39/983
  37356. }
  37357. },
  37358. back: {
  37359. height: math.unit(10 + 3/12, "feet"),
  37360. weight: math.unit(1500, "lb"),
  37361. name: "Back",
  37362. image: {
  37363. source: "./media/characters/tux-kusanagi/back.svg",
  37364. extra: 941/842,
  37365. bottom: 28/969
  37366. }
  37367. },
  37368. rump: {
  37369. height: math.unit(5.25, "feet"),
  37370. name: "Rump",
  37371. image: {
  37372. source: "./media/characters/tux-kusanagi/rump.svg"
  37373. }
  37374. },
  37375. beak: {
  37376. height: math.unit(1.54, "feet"),
  37377. name: "Beak",
  37378. image: {
  37379. source: "./media/characters/tux-kusanagi/beak.svg"
  37380. }
  37381. },
  37382. },
  37383. [
  37384. {
  37385. name: "Normal",
  37386. height: math.unit(10 + 3/12, "feet"),
  37387. default: true
  37388. },
  37389. ]
  37390. ))
  37391. characterMakers.push(() => makeCharacter(
  37392. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37393. {
  37394. front: {
  37395. height: math.unit(58, "feet"),
  37396. weight: math.unit(200, "tons"),
  37397. name: "Front",
  37398. image: {
  37399. source: "./media/characters/uzarmazari/front.svg",
  37400. extra: 1575/1455,
  37401. bottom: 152/1727
  37402. }
  37403. },
  37404. back: {
  37405. height: math.unit(58, "feet"),
  37406. weight: math.unit(200, "tons"),
  37407. name: "Back",
  37408. image: {
  37409. source: "./media/characters/uzarmazari/back.svg",
  37410. extra: 1585/1510,
  37411. bottom: 157/1742
  37412. }
  37413. },
  37414. head: {
  37415. height: math.unit(26, "feet"),
  37416. name: "Head",
  37417. image: {
  37418. source: "./media/characters/uzarmazari/head.svg"
  37419. }
  37420. },
  37421. },
  37422. [
  37423. {
  37424. name: "Normal",
  37425. height: math.unit(58, "feet"),
  37426. default: true
  37427. },
  37428. ]
  37429. ))
  37430. characterMakers.push(() => makeCharacter(
  37431. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37432. {
  37433. side: {
  37434. height: math.unit(15, "feet"),
  37435. name: "Side",
  37436. image: {
  37437. source: "./media/characters/akitu/side.svg",
  37438. extra: 1421/1321,
  37439. bottom: 157/1578
  37440. }
  37441. },
  37442. front: {
  37443. height: math.unit(15, "feet"),
  37444. name: "Front",
  37445. image: {
  37446. source: "./media/characters/akitu/front.svg",
  37447. extra: 1435/1326,
  37448. bottom: 232/1667
  37449. }
  37450. },
  37451. },
  37452. [
  37453. {
  37454. name: "Normal",
  37455. height: math.unit(15, "feet"),
  37456. default: true
  37457. },
  37458. ]
  37459. ))
  37460. characterMakers.push(() => makeCharacter(
  37461. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37462. {
  37463. front: {
  37464. height: math.unit(10 + 8/12, "feet"),
  37465. name: "Front",
  37466. image: {
  37467. source: "./media/characters/azalie-croixland/front.svg",
  37468. extra: 1972/1856,
  37469. bottom: 31/2003
  37470. }
  37471. },
  37472. },
  37473. [
  37474. {
  37475. name: "Original Height",
  37476. height: math.unit(5 + 4/12, "feet")
  37477. },
  37478. {
  37479. name: "Normal Height",
  37480. height: math.unit(10 + 8/12, "feet"),
  37481. default: true
  37482. },
  37483. ]
  37484. ))
  37485. characterMakers.push(() => makeCharacter(
  37486. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37487. {
  37488. side: {
  37489. height: math.unit(7 + 1/12, "feet"),
  37490. weight: math.unit(245, "lb"),
  37491. name: "Side",
  37492. image: {
  37493. source: "./media/characters/kavus-kazian/side.svg",
  37494. extra: 349/342,
  37495. bottom: 15/364
  37496. }
  37497. },
  37498. },
  37499. [
  37500. {
  37501. name: "Normal",
  37502. height: math.unit(7 + 1/12, "feet"),
  37503. default: true
  37504. },
  37505. ]
  37506. ))
  37507. characterMakers.push(() => makeCharacter(
  37508. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37509. {
  37510. normalFront: {
  37511. height: math.unit(5 + 11/12, "feet"),
  37512. name: "Front",
  37513. image: {
  37514. source: "./media/characters/moonlight-rose/normal-front.svg",
  37515. extra: 1980/1825,
  37516. bottom: 18/1998
  37517. },
  37518. form: "normal",
  37519. default: true
  37520. },
  37521. normalBack: {
  37522. height: math.unit(5 + 11/12, "feet"),
  37523. name: "Back",
  37524. image: {
  37525. source: "./media/characters/moonlight-rose/normal-back.svg",
  37526. extra: 2010/1839,
  37527. bottom: 10/2020
  37528. },
  37529. form: "normal"
  37530. },
  37531. demonFront: {
  37532. height: math.unit(1.5, "earths"),
  37533. name: "Front",
  37534. image: {
  37535. source: "./media/characters/moonlight-rose/demon.svg",
  37536. extra: 1400/1294,
  37537. bottom: 45/1445
  37538. },
  37539. form: "demon",
  37540. default: true
  37541. },
  37542. terraFront: {
  37543. height: math.unit(1.5, "earths"),
  37544. name: "Front",
  37545. image: {
  37546. source: "./media/characters/moonlight-rose/terra.svg"
  37547. },
  37548. form: "terra",
  37549. default: true
  37550. },
  37551. jupiterFront: {
  37552. height: math.unit(69911*2, "km"),
  37553. name: "Front",
  37554. image: {
  37555. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37556. extra: 1367/1286,
  37557. bottom: 55/1422
  37558. },
  37559. form: "jupiter",
  37560. default: true
  37561. },
  37562. neptuneFront: {
  37563. height: math.unit(24622*2, "feet"),
  37564. name: "Front",
  37565. image: {
  37566. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37567. extra: 1851/1712,
  37568. bottom: 0/1851
  37569. },
  37570. form: "neptune",
  37571. default: true
  37572. },
  37573. },
  37574. [
  37575. {
  37576. name: "\"Natural\" Height",
  37577. height: math.unit(5 + 11/12, "feet"),
  37578. form: "normal"
  37579. },
  37580. {
  37581. name: "Smallest comfortable size",
  37582. height: math.unit(40, "meters"),
  37583. form: "normal"
  37584. },
  37585. {
  37586. name: "Common size",
  37587. height: math.unit(50, "km"),
  37588. form: "normal",
  37589. default: true
  37590. },
  37591. {
  37592. name: "Normal",
  37593. height: math.unit(1.5, "earths"),
  37594. form: "demon",
  37595. default: true
  37596. },
  37597. {
  37598. name: "Universal",
  37599. height: math.unit(15, "universes"),
  37600. form: "demon"
  37601. },
  37602. {
  37603. name: "Earth",
  37604. height: math.unit(1.5, "earths"),
  37605. form: "terra",
  37606. default: true
  37607. },
  37608. {
  37609. name: "Super Earth",
  37610. height: math.unit(67.5, "earths"),
  37611. form: "terra"
  37612. },
  37613. {
  37614. name: "Doesn't fit in a solar system...",
  37615. height: math.unit(1, "galaxy"),
  37616. form: "terra"
  37617. },
  37618. {
  37619. name: "Saturn",
  37620. height: math.unit(58232*2, "km"),
  37621. form: "jupiter"
  37622. },
  37623. {
  37624. name: "Jupiter",
  37625. height: math.unit(69911*2, "km"),
  37626. form: "jupiter",
  37627. default: true
  37628. },
  37629. {
  37630. name: "HD 100546 b",
  37631. height: math.unit(482938, "km"),
  37632. form: "jupiter"
  37633. },
  37634. {
  37635. name: "Enceladus",
  37636. height: math.unit(513*2, "km"),
  37637. form: "neptune"
  37638. },
  37639. {
  37640. name: "Europe",
  37641. height: math.unit(1560*2, "km"),
  37642. form: "neptune"
  37643. },
  37644. {
  37645. name: "Neptune",
  37646. height: math.unit(24622*2, "km"),
  37647. form: "neptune",
  37648. default: true
  37649. },
  37650. {
  37651. name: "CoRoT-9b",
  37652. height: math.unit(75067*2, "km"),
  37653. form: "neptune"
  37654. },
  37655. ],
  37656. {
  37657. "normal": {
  37658. name: "Normal",
  37659. default: true
  37660. },
  37661. "demon": {
  37662. name: "Demon"
  37663. },
  37664. "terra": {
  37665. name: "Terra"
  37666. },
  37667. "jupiter": {
  37668. name: "Jupiter"
  37669. },
  37670. "neptune": {
  37671. name: "Neptune"
  37672. }
  37673. }
  37674. ))
  37675. characterMakers.push(() => makeCharacter(
  37676. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37677. {
  37678. front: {
  37679. height: math.unit(16, "feet"),
  37680. weight: math.unit(610, "kg"),
  37681. name: "Front",
  37682. image: {
  37683. source: "./media/characters/huckle/front.svg",
  37684. extra: 1731/1625,
  37685. bottom: 33/1764
  37686. }
  37687. },
  37688. back: {
  37689. height: math.unit(16, "feet"),
  37690. weight: math.unit(610, "kg"),
  37691. name: "Back",
  37692. image: {
  37693. source: "./media/characters/huckle/back.svg",
  37694. extra: 1738/1651,
  37695. bottom: 37/1775
  37696. }
  37697. },
  37698. laughing: {
  37699. height: math.unit(3.75, "feet"),
  37700. name: "Laughing",
  37701. image: {
  37702. source: "./media/characters/huckle/laughing.svg"
  37703. }
  37704. },
  37705. angry: {
  37706. height: math.unit(4.15, "feet"),
  37707. name: "Angry",
  37708. image: {
  37709. source: "./media/characters/huckle/angry.svg"
  37710. }
  37711. },
  37712. },
  37713. [
  37714. {
  37715. name: "Normal",
  37716. height: math.unit(16, "feet"),
  37717. default: true
  37718. },
  37719. {
  37720. name: "Mini Macro",
  37721. height: math.unit(463, "feet")
  37722. },
  37723. {
  37724. name: "Macro",
  37725. height: math.unit(1680, "meters")
  37726. },
  37727. {
  37728. name: "Mega Macro",
  37729. height: math.unit(175, "km")
  37730. },
  37731. {
  37732. name: "Terra Macro",
  37733. height: math.unit(32, "gigameters")
  37734. },
  37735. {
  37736. name: "Multiverse+",
  37737. height: math.unit(2.56e23, "yottameters")
  37738. },
  37739. ]
  37740. ))
  37741. characterMakers.push(() => makeCharacter(
  37742. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37743. {
  37744. front: {
  37745. height: math.unit(6 + 9/12, "feet"),
  37746. weight: math.unit(280, "lb"),
  37747. name: "Front",
  37748. image: {
  37749. source: "./media/characters/candy/front.svg",
  37750. extra: 234/217,
  37751. bottom: 11/245
  37752. }
  37753. },
  37754. },
  37755. [
  37756. {
  37757. name: "Really Small",
  37758. height: math.unit(0.1, "nm")
  37759. },
  37760. {
  37761. name: "Micro",
  37762. height: math.unit(2, "inches")
  37763. },
  37764. {
  37765. name: "Normal",
  37766. height: math.unit(6 + 9/12, "feet"),
  37767. default: true
  37768. },
  37769. {
  37770. name: "Small Macro",
  37771. height: math.unit(69, "feet")
  37772. },
  37773. {
  37774. name: "Macro",
  37775. height: math.unit(160, "feet")
  37776. },
  37777. {
  37778. name: "Megamacro",
  37779. height: math.unit(22000, "miles")
  37780. },
  37781. {
  37782. name: "Gigamacro",
  37783. height: math.unit(50000, "miles")
  37784. },
  37785. ]
  37786. ))
  37787. characterMakers.push(() => makeCharacter(
  37788. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37789. {
  37790. front: {
  37791. height: math.unit(4, "feet"),
  37792. weight: math.unit(90, "lb"),
  37793. name: "Front",
  37794. image: {
  37795. source: "./media/characters/joey-mcdonald/front.svg",
  37796. extra: 1059/852,
  37797. bottom: 33/1092
  37798. }
  37799. },
  37800. back: {
  37801. height: math.unit(4, "feet"),
  37802. weight: math.unit(90, "lb"),
  37803. name: "Back",
  37804. image: {
  37805. source: "./media/characters/joey-mcdonald/back.svg",
  37806. extra: 1077/879,
  37807. bottom: 5/1082
  37808. }
  37809. },
  37810. frontKobold: {
  37811. height: math.unit(4, "feet"),
  37812. weight: math.unit(100, "lb"),
  37813. name: "Front-kobold",
  37814. image: {
  37815. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37816. extra: 1480/1367,
  37817. bottom: 0/1480
  37818. }
  37819. },
  37820. backKobold: {
  37821. height: math.unit(4, "feet"),
  37822. weight: math.unit(100, "lb"),
  37823. name: "Back-kobold",
  37824. image: {
  37825. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37826. extra: 1449/1361,
  37827. bottom: 0/1449
  37828. }
  37829. },
  37830. },
  37831. [
  37832. {
  37833. name: "Normal",
  37834. height: math.unit(4, "feet"),
  37835. default: true
  37836. },
  37837. ]
  37838. ))
  37839. characterMakers.push(() => makeCharacter(
  37840. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37841. {
  37842. front: {
  37843. height: math.unit(12 + 6/12, "feet"),
  37844. name: "Front",
  37845. image: {
  37846. source: "./media/characters/kass-lockheed/front.svg",
  37847. extra: 354/343,
  37848. bottom: 9/363
  37849. }
  37850. },
  37851. back: {
  37852. height: math.unit(12 + 6/12, "feet"),
  37853. name: "Back",
  37854. image: {
  37855. source: "./media/characters/kass-lockheed/back.svg",
  37856. extra: 364/352,
  37857. bottom: 3/367
  37858. }
  37859. },
  37860. dick: {
  37861. height: math.unit(3.12, "feet"),
  37862. name: "Dick",
  37863. image: {
  37864. source: "./media/characters/kass-lockheed/dick.svg"
  37865. }
  37866. },
  37867. head: {
  37868. height: math.unit(2.6, "feet"),
  37869. name: "Head",
  37870. image: {
  37871. source: "./media/characters/kass-lockheed/head.svg"
  37872. }
  37873. },
  37874. bleh: {
  37875. height: math.unit(2.85, "feet"),
  37876. name: "Bleh",
  37877. image: {
  37878. source: "./media/characters/kass-lockheed/bleh.svg"
  37879. }
  37880. },
  37881. smug: {
  37882. height: math.unit(2.85, "feet"),
  37883. name: "Smug",
  37884. image: {
  37885. source: "./media/characters/kass-lockheed/smug.svg"
  37886. }
  37887. },
  37888. },
  37889. [
  37890. {
  37891. name: "Normal",
  37892. height: math.unit(12 + 6/12, "feet"),
  37893. default: true
  37894. },
  37895. ]
  37896. ))
  37897. characterMakers.push(() => makeCharacter(
  37898. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37899. {
  37900. front: {
  37901. height: math.unit(6 + 2/12, "feet"),
  37902. name: "Front",
  37903. image: {
  37904. source: "./media/characters/taylor/front.svg",
  37905. extra: 639/495,
  37906. bottom: 12/651
  37907. }
  37908. },
  37909. },
  37910. [
  37911. {
  37912. name: "Normal",
  37913. height: math.unit(6 + 2/12, "feet"),
  37914. default: true
  37915. },
  37916. {
  37917. name: "Big",
  37918. height: math.unit(15, "feet")
  37919. },
  37920. {
  37921. name: "Lorg",
  37922. height: math.unit(80, "feet")
  37923. },
  37924. {
  37925. name: "Too Lorg",
  37926. height: math.unit(120, "feet")
  37927. },
  37928. ]
  37929. ))
  37930. characterMakers.push(() => makeCharacter(
  37931. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37932. {
  37933. front: {
  37934. height: math.unit(15, "feet"),
  37935. name: "Front",
  37936. image: {
  37937. source: "./media/characters/kaizer/front.svg",
  37938. extra: 1612/1436,
  37939. bottom: 43/1655
  37940. }
  37941. },
  37942. },
  37943. [
  37944. {
  37945. name: "Normal",
  37946. height: math.unit(15, "feet"),
  37947. default: true
  37948. },
  37949. ]
  37950. ))
  37951. characterMakers.push(() => makeCharacter(
  37952. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37953. {
  37954. front: {
  37955. height: math.unit(2, "feet"),
  37956. weight: math.unit(30, "lb"),
  37957. name: "Front",
  37958. image: {
  37959. source: "./media/characters/sandy/front.svg",
  37960. extra: 1439/1307,
  37961. bottom: 194/1633
  37962. }
  37963. },
  37964. },
  37965. [
  37966. {
  37967. name: "Normal",
  37968. height: math.unit(2, "feet"),
  37969. default: true
  37970. },
  37971. ]
  37972. ))
  37973. characterMakers.push(() => makeCharacter(
  37974. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37975. {
  37976. front: {
  37977. height: math.unit(3, "feet"),
  37978. name: "Front",
  37979. image: {
  37980. source: "./media/characters/mellvi/front.svg",
  37981. extra: 1831/1630,
  37982. bottom: 58/1889
  37983. }
  37984. },
  37985. },
  37986. [
  37987. {
  37988. name: "Normal",
  37989. height: math.unit(3, "feet"),
  37990. default: true
  37991. },
  37992. ]
  37993. ))
  37994. characterMakers.push(() => makeCharacter(
  37995. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37996. {
  37997. front: {
  37998. height: math.unit(5 + 11/12, "feet"),
  37999. weight: math.unit(200, "lb"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/shirou/front.svg",
  38003. extra: 2491/2383,
  38004. bottom: 189/2680
  38005. }
  38006. },
  38007. back: {
  38008. height: math.unit(5 + 11/12, "feet"),
  38009. weight: math.unit(200, "lb"),
  38010. name: "Back",
  38011. image: {
  38012. source: "./media/characters/shirou/back.svg",
  38013. extra: 2554/2450,
  38014. bottom: 76/2630
  38015. }
  38016. },
  38017. },
  38018. [
  38019. {
  38020. name: "Normal",
  38021. height: math.unit(5 + 11/12, "feet"),
  38022. default: true
  38023. },
  38024. ]
  38025. ))
  38026. characterMakers.push(() => makeCharacter(
  38027. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38028. {
  38029. front: {
  38030. height: math.unit(6 + 3/12, "feet"),
  38031. weight: math.unit(177, "lb"),
  38032. name: "Front",
  38033. image: {
  38034. source: "./media/characters/noryu/front.svg",
  38035. extra: 973/885,
  38036. bottom: 10/983
  38037. }
  38038. },
  38039. },
  38040. [
  38041. {
  38042. name: "Normal",
  38043. height: math.unit(6 + 3/12, "feet"),
  38044. default: true
  38045. },
  38046. ]
  38047. ))
  38048. characterMakers.push(() => makeCharacter(
  38049. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38050. {
  38051. front: {
  38052. height: math.unit(5 + 6/12, "feet"),
  38053. weight: math.unit(170, "lb"),
  38054. name: "Front",
  38055. image: {
  38056. source: "./media/characters/mevolas-rubenido/front.svg",
  38057. extra: 2109/1901,
  38058. bottom: 96/2205
  38059. }
  38060. },
  38061. },
  38062. [
  38063. {
  38064. name: "Normal",
  38065. height: math.unit(5 + 6/12, "feet"),
  38066. default: true
  38067. },
  38068. ]
  38069. ))
  38070. characterMakers.push(() => makeCharacter(
  38071. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38072. {
  38073. front: {
  38074. height: math.unit(100, "feet"),
  38075. name: "Front",
  38076. image: {
  38077. source: "./media/characters/dee/front.svg",
  38078. extra: 2153/2036,
  38079. bottom: 59/2212
  38080. }
  38081. },
  38082. back: {
  38083. height: math.unit(100, "feet"),
  38084. name: "Back",
  38085. image: {
  38086. source: "./media/characters/dee/back.svg",
  38087. extra: 2183/2058,
  38088. bottom: 75/2258
  38089. }
  38090. },
  38091. foot: {
  38092. height: math.unit(19.43, "feet"),
  38093. name: "Foot",
  38094. image: {
  38095. source: "./media/characters/dee/foot.svg"
  38096. }
  38097. },
  38098. hoof: {
  38099. height: math.unit(20.6, "feet"),
  38100. name: "Hoof",
  38101. image: {
  38102. source: "./media/characters/dee/hoof.svg"
  38103. }
  38104. },
  38105. },
  38106. [
  38107. {
  38108. name: "Macro",
  38109. height: math.unit(100, "feet"),
  38110. default: true
  38111. },
  38112. ]
  38113. ))
  38114. characterMakers.push(() => makeCharacter(
  38115. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38116. {
  38117. front: {
  38118. height: math.unit(5 + 6/12, "feet"),
  38119. name: "Front",
  38120. image: {
  38121. source: "./media/characters/teh/front.svg",
  38122. extra: 1002/847,
  38123. bottom: 62/1064
  38124. }
  38125. },
  38126. },
  38127. [
  38128. {
  38129. name: "Normal",
  38130. height: math.unit(5 + 6/12, "feet"),
  38131. default: true
  38132. },
  38133. ]
  38134. ))
  38135. characterMakers.push(() => makeCharacter(
  38136. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38137. {
  38138. side: {
  38139. height: math.unit(6 + 1/12, "feet"),
  38140. weight: math.unit(204, "lb"),
  38141. name: "Side",
  38142. image: {
  38143. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38144. extra: 974/775,
  38145. bottom: 169/1143
  38146. }
  38147. },
  38148. sitting: {
  38149. height: math.unit(6 + 2/12, "feet"),
  38150. weight: math.unit(204, "lb"),
  38151. name: "Sitting",
  38152. image: {
  38153. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38154. extra: 1175/964,
  38155. bottom: 378/1553
  38156. }
  38157. },
  38158. },
  38159. [
  38160. {
  38161. name: "Normal",
  38162. height: math.unit(6 + 1/12, "feet"),
  38163. default: true
  38164. },
  38165. ]
  38166. ))
  38167. characterMakers.push(() => makeCharacter(
  38168. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38169. {
  38170. front: {
  38171. height: math.unit(6, "inches"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/tululi/front.svg",
  38175. extra: 1997/1876,
  38176. bottom: 20/2017
  38177. }
  38178. },
  38179. },
  38180. [
  38181. {
  38182. name: "Normal",
  38183. height: math.unit(6, "inches"),
  38184. default: true
  38185. },
  38186. ]
  38187. ))
  38188. characterMakers.push(() => makeCharacter(
  38189. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38190. {
  38191. front: {
  38192. height: math.unit(4 + 1/12, "feet"),
  38193. name: "Front",
  38194. image: {
  38195. source: "./media/characters/star/front.svg",
  38196. extra: 1493/1189,
  38197. bottom: 48/1541
  38198. }
  38199. },
  38200. },
  38201. [
  38202. {
  38203. name: "Normal",
  38204. height: math.unit(4 + 1/12, "feet"),
  38205. default: true
  38206. },
  38207. ]
  38208. ))
  38209. characterMakers.push(() => makeCharacter(
  38210. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38211. {
  38212. front: {
  38213. height: math.unit(6 + 3/12, "feet"),
  38214. name: "Front",
  38215. image: {
  38216. source: "./media/characters/comet/front.svg",
  38217. extra: 1681/1462,
  38218. bottom: 26/1707
  38219. }
  38220. },
  38221. },
  38222. [
  38223. {
  38224. name: "Normal",
  38225. height: math.unit(6 + 3/12, "feet"),
  38226. default: true
  38227. },
  38228. ]
  38229. ))
  38230. characterMakers.push(() => makeCharacter(
  38231. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38232. {
  38233. front: {
  38234. height: math.unit(950, "feet"),
  38235. name: "Front",
  38236. image: {
  38237. source: "./media/characters/vortex/front.svg",
  38238. extra: 1497/1434,
  38239. bottom: 56/1553
  38240. }
  38241. },
  38242. maw: {
  38243. height: math.unit(285, "feet"),
  38244. name: "Maw",
  38245. image: {
  38246. source: "./media/characters/vortex/maw.svg"
  38247. }
  38248. },
  38249. },
  38250. [
  38251. {
  38252. name: "Macro",
  38253. height: math.unit(950, "feet"),
  38254. default: true
  38255. },
  38256. ]
  38257. ))
  38258. characterMakers.push(() => makeCharacter(
  38259. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38260. {
  38261. front: {
  38262. height: math.unit(600, "feet"),
  38263. weight: math.unit(0.02, "grams"),
  38264. name: "Front",
  38265. image: {
  38266. source: "./media/characters/doodle/front.svg",
  38267. extra: 1578/1413,
  38268. bottom: 37/1615
  38269. }
  38270. },
  38271. },
  38272. [
  38273. {
  38274. name: "Macro",
  38275. height: math.unit(600, "feet"),
  38276. default: true
  38277. },
  38278. ]
  38279. ))
  38280. characterMakers.push(() => makeCharacter(
  38281. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38282. {
  38283. front: {
  38284. height: math.unit(6 + 6/12, "feet"),
  38285. name: "Front",
  38286. image: {
  38287. source: "./media/characters/jai/front.svg",
  38288. extra: 1645/1534,
  38289. bottom: 115/1760
  38290. }
  38291. },
  38292. },
  38293. [
  38294. {
  38295. name: "Normal",
  38296. height: math.unit(6 + 6/12, "feet"),
  38297. default: true
  38298. },
  38299. ]
  38300. ))
  38301. characterMakers.push(() => makeCharacter(
  38302. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38303. {
  38304. front: {
  38305. height: math.unit(6 + 8/12, "feet"),
  38306. name: "Front",
  38307. image: {
  38308. source: "./media/characters/pixel/front.svg",
  38309. extra: 1900/1735,
  38310. bottom: 63/1963
  38311. }
  38312. },
  38313. },
  38314. [
  38315. {
  38316. name: "Normal",
  38317. height: math.unit(6 + 8/12, "feet"),
  38318. default: true
  38319. },
  38320. ]
  38321. ))
  38322. characterMakers.push(() => makeCharacter(
  38323. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38324. {
  38325. back: {
  38326. height: math.unit(4 + 1/12, "feet"),
  38327. weight: math.unit(75, "lb"),
  38328. name: "Back",
  38329. image: {
  38330. source: "./media/characters/rhett/back.svg",
  38331. extra: 930/878,
  38332. bottom: 25/955
  38333. }
  38334. },
  38335. front: {
  38336. height: math.unit(4 + 1/12, "feet"),
  38337. weight: math.unit(75, "lb"),
  38338. name: "Front",
  38339. image: {
  38340. source: "./media/characters/rhett/front.svg",
  38341. extra: 1682/1586,
  38342. bottom: 92/1774
  38343. }
  38344. },
  38345. },
  38346. [
  38347. {
  38348. name: "Micro",
  38349. height: math.unit(8, "inches")
  38350. },
  38351. {
  38352. name: "Tiny",
  38353. height: math.unit(2, "feet")
  38354. },
  38355. {
  38356. name: "Normal",
  38357. height: math.unit(4 + 1/12, "feet"),
  38358. default: true
  38359. },
  38360. ]
  38361. ))
  38362. characterMakers.push(() => makeCharacter(
  38363. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38364. {
  38365. front: {
  38366. height: math.unit(3 + 3/12, "feet"),
  38367. name: "Front",
  38368. image: {
  38369. source: "./media/characters/penny/front.svg",
  38370. extra: 1406/1311,
  38371. bottom: 26/1432
  38372. }
  38373. },
  38374. },
  38375. [
  38376. {
  38377. name: "Normal",
  38378. height: math.unit(3 + 3/12, "feet"),
  38379. default: true
  38380. },
  38381. ]
  38382. ))
  38383. characterMakers.push(() => makeCharacter(
  38384. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38385. {
  38386. front: {
  38387. height: math.unit(4 + 11/12, "feet"),
  38388. name: "Front",
  38389. image: {
  38390. source: "./media/characters/monty/front.svg",
  38391. extra: 1479/1209,
  38392. bottom: 0/1479
  38393. }
  38394. },
  38395. },
  38396. [
  38397. {
  38398. name: "Normal",
  38399. height: math.unit(4 + 11/12, "feet"),
  38400. default: true
  38401. },
  38402. ]
  38403. ))
  38404. characterMakers.push(() => makeCharacter(
  38405. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38406. {
  38407. front: {
  38408. height: math.unit(8 + 4/12, "feet"),
  38409. name: "Front",
  38410. image: {
  38411. source: "./media/characters/sterling/front.svg",
  38412. extra: 1420/1236,
  38413. bottom: 27/1447
  38414. }
  38415. },
  38416. },
  38417. [
  38418. {
  38419. name: "Normal",
  38420. height: math.unit(8 + 4/12, "feet"),
  38421. default: true
  38422. },
  38423. ]
  38424. ))
  38425. characterMakers.push(() => makeCharacter(
  38426. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38427. {
  38428. front: {
  38429. height: math.unit(15, "feet"),
  38430. name: "Front",
  38431. image: {
  38432. source: "./media/characters/marble/front.svg",
  38433. extra: 973/937,
  38434. bottom: 32/1005
  38435. }
  38436. },
  38437. },
  38438. [
  38439. {
  38440. name: "Normal",
  38441. height: math.unit(15, "feet"),
  38442. default: true
  38443. },
  38444. ]
  38445. ))
  38446. characterMakers.push(() => makeCharacter(
  38447. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38448. {
  38449. front: {
  38450. height: math.unit(3, "inches"),
  38451. name: "Front",
  38452. image: {
  38453. source: "./media/characters/powder/front.svg",
  38454. extra: 1504/1334,
  38455. bottom: 518/2022
  38456. }
  38457. },
  38458. },
  38459. [
  38460. {
  38461. name: "Normal",
  38462. height: math.unit(3, "inches"),
  38463. default: true
  38464. },
  38465. ]
  38466. ))
  38467. characterMakers.push(() => makeCharacter(
  38468. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38469. {
  38470. front: {
  38471. height: math.unit(4 + 5/12, "feet"),
  38472. name: "Front",
  38473. image: {
  38474. source: "./media/characters/joey-raccoon/front.svg",
  38475. extra: 1273/1197,
  38476. bottom: 0/1273
  38477. }
  38478. },
  38479. },
  38480. [
  38481. {
  38482. name: "Normal",
  38483. height: math.unit(4 + 5/12, "feet"),
  38484. default: true
  38485. },
  38486. ]
  38487. ))
  38488. characterMakers.push(() => makeCharacter(
  38489. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38490. {
  38491. front: {
  38492. height: math.unit(8 + 4/12, "feet"),
  38493. name: "Front",
  38494. image: {
  38495. source: "./media/characters/vick/front.svg",
  38496. extra: 2187/2118,
  38497. bottom: 47/2234
  38498. }
  38499. },
  38500. },
  38501. [
  38502. {
  38503. name: "Normal",
  38504. height: math.unit(8 + 4/12, "feet"),
  38505. default: true
  38506. },
  38507. ]
  38508. ))
  38509. characterMakers.push(() => makeCharacter(
  38510. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38511. {
  38512. front: {
  38513. height: math.unit(5 + 5/12, "feet"),
  38514. name: "Front",
  38515. image: {
  38516. source: "./media/characters/mitsy/front.svg",
  38517. extra: 1842/1695,
  38518. bottom: 0/1842
  38519. }
  38520. },
  38521. },
  38522. [
  38523. {
  38524. name: "Normal",
  38525. height: math.unit(5 + 5/12, "feet"),
  38526. default: true
  38527. },
  38528. ]
  38529. ))
  38530. characterMakers.push(() => makeCharacter(
  38531. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38532. {
  38533. front: {
  38534. height: math.unit(6 + 3/12, "feet"),
  38535. name: "Front",
  38536. image: {
  38537. source: "./media/characters/silvy/front.svg",
  38538. extra: 1995/1836,
  38539. bottom: 225/2220
  38540. }
  38541. },
  38542. },
  38543. [
  38544. {
  38545. name: "Normal",
  38546. height: math.unit(6 + 3/12, "feet"),
  38547. default: true
  38548. },
  38549. ]
  38550. ))
  38551. characterMakers.push(() => makeCharacter(
  38552. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38553. {
  38554. front: {
  38555. height: math.unit(3 + 8/12, "feet"),
  38556. name: "Front",
  38557. image: {
  38558. source: "./media/characters/rodney/front.svg",
  38559. extra: 1956/1747,
  38560. bottom: 31/1987
  38561. }
  38562. },
  38563. frontDressed: {
  38564. height: math.unit(2.9, "feet"),
  38565. name: "Front (Dressed)",
  38566. image: {
  38567. source: "./media/characters/rodney/front-dressed.svg",
  38568. extra: 1382/1241,
  38569. bottom: 385/1767
  38570. }
  38571. },
  38572. },
  38573. [
  38574. {
  38575. name: "Normal",
  38576. height: math.unit(3 + 8/12, "feet"),
  38577. default: true
  38578. },
  38579. ]
  38580. ))
  38581. characterMakers.push(() => makeCharacter(
  38582. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38583. {
  38584. front: {
  38585. height: math.unit(5 + 9/12, "feet"),
  38586. weight: math.unit(194, "lbs"),
  38587. name: "Front",
  38588. image: {
  38589. source: "./media/characters/zakail-sudekai/front.svg",
  38590. extra: 2696/2533,
  38591. bottom: 248/2944
  38592. }
  38593. },
  38594. maw: {
  38595. height: math.unit(1.35, "feet"),
  38596. name: "Maw",
  38597. image: {
  38598. source: "./media/characters/zakail-sudekai/maw.svg"
  38599. }
  38600. },
  38601. },
  38602. [
  38603. {
  38604. name: "Normal",
  38605. height: math.unit(5 + 9/12, "feet"),
  38606. default: true
  38607. },
  38608. ]
  38609. ))
  38610. characterMakers.push(() => makeCharacter(
  38611. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38612. {
  38613. front: {
  38614. height: math.unit(8 + 4/12, "feet"),
  38615. weight: math.unit(1200, "lb"),
  38616. name: "Front",
  38617. image: {
  38618. source: "./media/characters/eleanor/front.svg",
  38619. extra: 1226/1192,
  38620. bottom: 52/1278
  38621. }
  38622. },
  38623. back: {
  38624. height: math.unit(8 + 4/12, "feet"),
  38625. weight: math.unit(1200, "lb"),
  38626. name: "Back",
  38627. image: {
  38628. source: "./media/characters/eleanor/back.svg",
  38629. extra: 1242/1184,
  38630. bottom: 60/1302
  38631. }
  38632. },
  38633. head: {
  38634. height: math.unit(2.62, "feet"),
  38635. name: "Head",
  38636. image: {
  38637. source: "./media/characters/eleanor/head.svg"
  38638. }
  38639. },
  38640. },
  38641. [
  38642. {
  38643. name: "Normal",
  38644. height: math.unit(8 + 4/12, "feet"),
  38645. default: true
  38646. },
  38647. ]
  38648. ))
  38649. characterMakers.push(() => makeCharacter(
  38650. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38651. {
  38652. front: {
  38653. height: math.unit(8 + 4/12, "feet"),
  38654. weight: math.unit(750, "lb"),
  38655. name: "Front",
  38656. image: {
  38657. source: "./media/characters/tanya/front.svg",
  38658. extra: 1749/1615,
  38659. bottom: 33/1782
  38660. }
  38661. },
  38662. },
  38663. [
  38664. {
  38665. name: "Normal",
  38666. height: math.unit(8 + 4/12, "feet"),
  38667. default: true
  38668. },
  38669. ]
  38670. ))
  38671. characterMakers.push(() => makeCharacter(
  38672. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38673. {
  38674. front: {
  38675. height: math.unit(5, "feet"),
  38676. weight: math.unit(225, "lb"),
  38677. name: "Front",
  38678. image: {
  38679. source: "./media/characters/cindy/front.svg",
  38680. extra: 1320/1250,
  38681. bottom: 42/1362
  38682. }
  38683. },
  38684. frontDressed: {
  38685. height: math.unit(5, "feet"),
  38686. weight: math.unit(225, "lb"),
  38687. name: "Front (Dressed)",
  38688. image: {
  38689. source: "./media/characters/cindy/front-dressed.svg",
  38690. extra: 1320/1250,
  38691. bottom: 42/1362
  38692. }
  38693. },
  38694. back: {
  38695. height: math.unit(5, "feet"),
  38696. weight: math.unit(225, "lb"),
  38697. name: "Back",
  38698. image: {
  38699. source: "./media/characters/cindy/back.svg",
  38700. extra: 1384/1346,
  38701. bottom: 14/1398
  38702. }
  38703. },
  38704. },
  38705. [
  38706. {
  38707. name: "Normal",
  38708. height: math.unit(5, "feet"),
  38709. default: true
  38710. },
  38711. ]
  38712. ))
  38713. characterMakers.push(() => makeCharacter(
  38714. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38715. {
  38716. front: {
  38717. height: math.unit(6 + 9/12, "feet"),
  38718. weight: math.unit(440, "lb"),
  38719. name: "Front",
  38720. image: {
  38721. source: "./media/characters/wilbur-owen/front.svg",
  38722. extra: 1575/1448,
  38723. bottom: 72/1647
  38724. }
  38725. },
  38726. back: {
  38727. height: math.unit(6 + 9/12, "feet"),
  38728. weight: math.unit(440, "lb"),
  38729. name: "Back",
  38730. image: {
  38731. source: "./media/characters/wilbur-owen/back.svg",
  38732. extra: 1578/1445,
  38733. bottom: 36/1614
  38734. }
  38735. },
  38736. },
  38737. [
  38738. {
  38739. name: "Normal",
  38740. height: math.unit(6 + 9/12, "feet"),
  38741. default: true
  38742. },
  38743. ]
  38744. ))
  38745. characterMakers.push(() => makeCharacter(
  38746. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38747. {
  38748. front: {
  38749. height: math.unit(6 + 5/12, "feet"),
  38750. weight: math.unit(650, "lb"),
  38751. name: "Front",
  38752. image: {
  38753. source: "./media/characters/keegan/front.svg",
  38754. extra: 2387/2198,
  38755. bottom: 33/2420
  38756. }
  38757. },
  38758. side: {
  38759. height: math.unit(6 + 5/12, "feet"),
  38760. weight: math.unit(650, "lb"),
  38761. name: "Side",
  38762. image: {
  38763. source: "./media/characters/keegan/side.svg",
  38764. extra: 2390/2202,
  38765. bottom: 47/2437
  38766. }
  38767. },
  38768. back: {
  38769. height: math.unit(6 + 5/12, "feet"),
  38770. weight: math.unit(650, "lb"),
  38771. name: "Back",
  38772. image: {
  38773. source: "./media/characters/keegan/back.svg",
  38774. extra: 2418/2268,
  38775. bottom: 15/2433
  38776. }
  38777. },
  38778. frontSfw: {
  38779. height: math.unit(6 + 5/12, "feet"),
  38780. weight: math.unit(650, "lb"),
  38781. name: "Front (SFW)",
  38782. image: {
  38783. source: "./media/characters/keegan/front-sfw.svg",
  38784. extra: 2387/2198,
  38785. bottom: 33/2420
  38786. }
  38787. },
  38788. beans: {
  38789. height: math.unit(1.85, "feet"),
  38790. name: "Beans",
  38791. image: {
  38792. source: "./media/characters/keegan/beans.svg"
  38793. }
  38794. },
  38795. },
  38796. [
  38797. {
  38798. name: "Normal",
  38799. height: math.unit(6 + 5/12, "feet"),
  38800. default: true
  38801. },
  38802. ]
  38803. ))
  38804. characterMakers.push(() => makeCharacter(
  38805. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38806. {
  38807. front: {
  38808. height: math.unit(9, "feet"),
  38809. name: "Front",
  38810. image: {
  38811. source: "./media/characters/colton/front.svg",
  38812. extra: 1589/1326,
  38813. bottom: 139/1728
  38814. }
  38815. },
  38816. },
  38817. [
  38818. {
  38819. name: "Normal",
  38820. height: math.unit(9, "feet"),
  38821. default: true
  38822. },
  38823. ]
  38824. ))
  38825. characterMakers.push(() => makeCharacter(
  38826. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38827. {
  38828. front: {
  38829. height: math.unit(2 + 9/12, "feet"),
  38830. name: "Front",
  38831. image: {
  38832. source: "./media/characters/bora/front.svg",
  38833. extra: 1265/1250,
  38834. bottom: 24/1289
  38835. }
  38836. },
  38837. },
  38838. [
  38839. {
  38840. name: "Normal",
  38841. height: math.unit(2 + 9/12, "feet"),
  38842. default: true
  38843. },
  38844. ]
  38845. ))
  38846. characterMakers.push(() => makeCharacter(
  38847. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38848. {
  38849. front: {
  38850. height: math.unit(8, "feet"),
  38851. name: "Front",
  38852. image: {
  38853. source: "./media/characters/myu-myu/front.svg",
  38854. extra: 1949/1857,
  38855. bottom: 90/2039
  38856. }
  38857. },
  38858. },
  38859. [
  38860. {
  38861. name: "Normal",
  38862. height: math.unit(8, "feet"),
  38863. default: true
  38864. },
  38865. {
  38866. name: "Big",
  38867. height: math.unit(15, "feet")
  38868. },
  38869. {
  38870. name: "BIG",
  38871. height: math.unit(25, "feet")
  38872. },
  38873. ]
  38874. ))
  38875. characterMakers.push(() => makeCharacter(
  38876. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38877. {
  38878. side: {
  38879. height: math.unit(7 + 5/12, "feet"),
  38880. weight: math.unit(2800, "lb"),
  38881. name: "Side",
  38882. image: {
  38883. source: "./media/characters/haloren/side.svg",
  38884. extra: 1793/409,
  38885. bottom: 59/1852
  38886. }
  38887. },
  38888. frontPaw: {
  38889. height: math.unit(2.36, "feet"),
  38890. name: "Front paw",
  38891. image: {
  38892. source: "./media/characters/haloren/front-paw.svg"
  38893. }
  38894. },
  38895. hindPaw: {
  38896. height: math.unit(3.18, "feet"),
  38897. name: "Hind paw",
  38898. image: {
  38899. source: "./media/characters/haloren/hind-paw.svg"
  38900. }
  38901. },
  38902. maw: {
  38903. height: math.unit(5.05, "feet"),
  38904. name: "Maw",
  38905. image: {
  38906. source: "./media/characters/haloren/maw.svg"
  38907. }
  38908. },
  38909. dick: {
  38910. height: math.unit(2.90, "feet"),
  38911. name: "Dick",
  38912. image: {
  38913. source: "./media/characters/haloren/dick.svg"
  38914. }
  38915. },
  38916. },
  38917. [
  38918. {
  38919. name: "Normal",
  38920. height: math.unit(7 + 5/12, "feet"),
  38921. default: true
  38922. },
  38923. {
  38924. name: "Enhanced",
  38925. height: math.unit(14 + 3/12, "feet")
  38926. },
  38927. ]
  38928. ))
  38929. characterMakers.push(() => makeCharacter(
  38930. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38931. {
  38932. front: {
  38933. height: math.unit(171, "cm"),
  38934. name: "Front",
  38935. image: {
  38936. source: "./media/characters/kimmy/front.svg",
  38937. extra: 1491/1435,
  38938. bottom: 53/1544
  38939. }
  38940. },
  38941. },
  38942. [
  38943. {
  38944. name: "Small",
  38945. height: math.unit(9, "cm")
  38946. },
  38947. {
  38948. name: "Normal",
  38949. height: math.unit(171, "cm"),
  38950. default: true
  38951. },
  38952. ]
  38953. ))
  38954. characterMakers.push(() => makeCharacter(
  38955. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38956. {
  38957. front: {
  38958. height: math.unit(8, "feet"),
  38959. weight: math.unit(300, "lb"),
  38960. name: "Front",
  38961. image: {
  38962. source: "./media/characters/galeboomer/front.svg",
  38963. extra: 4651/4415,
  38964. bottom: 162/4813
  38965. }
  38966. },
  38967. back: {
  38968. height: math.unit(8, "feet"),
  38969. weight: math.unit(300, "lb"),
  38970. name: "Back",
  38971. image: {
  38972. source: "./media/characters/galeboomer/back.svg",
  38973. extra: 4544/4314,
  38974. bottom: 16/4560
  38975. }
  38976. },
  38977. frontAlt: {
  38978. height: math.unit(8, "feet"),
  38979. weight: math.unit(300, "lb"),
  38980. name: "Front (Alt)",
  38981. image: {
  38982. source: "./media/characters/galeboomer/front-alt.svg",
  38983. extra: 4458/4228,
  38984. bottom: 68/4526
  38985. }
  38986. },
  38987. maw: {
  38988. height: math.unit(1.2, "feet"),
  38989. name: "Maw",
  38990. image: {
  38991. source: "./media/characters/galeboomer/maw.svg"
  38992. }
  38993. },
  38994. },
  38995. [
  38996. {
  38997. name: "Normal",
  38998. height: math.unit(8, "feet"),
  38999. default: true
  39000. },
  39001. ]
  39002. ))
  39003. characterMakers.push(() => makeCharacter(
  39004. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39005. {
  39006. front: {
  39007. height: math.unit(5 + 9/12, "feet"),
  39008. weight: math.unit(120, "lb"),
  39009. name: "Front",
  39010. image: {
  39011. source: "./media/characters/chyr/front.svg",
  39012. extra: 1323/1254,
  39013. bottom: 63/1386
  39014. }
  39015. },
  39016. back: {
  39017. height: math.unit(5 + 9/12, "feet"),
  39018. weight: math.unit(120, "lb"),
  39019. name: "Back",
  39020. image: {
  39021. source: "./media/characters/chyr/back.svg",
  39022. extra: 1323/1252,
  39023. bottom: 48/1371
  39024. }
  39025. },
  39026. },
  39027. [
  39028. {
  39029. name: "Normal",
  39030. height: math.unit(5 + 9/12, "feet"),
  39031. default: true
  39032. },
  39033. ]
  39034. ))
  39035. characterMakers.push(() => makeCharacter(
  39036. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39037. {
  39038. front: {
  39039. height: math.unit(7, "feet"),
  39040. weight: math.unit(310, "lb"),
  39041. name: "Front",
  39042. image: {
  39043. source: "./media/characters/solarus/front.svg",
  39044. extra: 2415/2021,
  39045. bottom: 103/2518
  39046. }
  39047. },
  39048. back: {
  39049. height: math.unit(7, "feet"),
  39050. weight: math.unit(310, "lb"),
  39051. name: "Back",
  39052. image: {
  39053. source: "./media/characters/solarus/back.svg",
  39054. extra: 2463/2089,
  39055. bottom: 79/2542
  39056. }
  39057. },
  39058. },
  39059. [
  39060. {
  39061. name: "Normal",
  39062. height: math.unit(7, "feet"),
  39063. default: true
  39064. },
  39065. ]
  39066. ))
  39067. characterMakers.push(() => makeCharacter(
  39068. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39069. {
  39070. front: {
  39071. height: math.unit(16, "feet"),
  39072. name: "Front",
  39073. image: {
  39074. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39075. extra: 1844/1780,
  39076. bottom: 58/1902
  39077. }
  39078. },
  39079. winterCoat: {
  39080. height: math.unit(16, "feet"),
  39081. name: "Winter Coat",
  39082. image: {
  39083. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39084. extra: 1807/1775,
  39085. bottom: 69/1876
  39086. }
  39087. },
  39088. },
  39089. [
  39090. {
  39091. name: "Normal",
  39092. height: math.unit(16, "feet"),
  39093. default: true
  39094. },
  39095. {
  39096. name: "Chicago Size",
  39097. height: math.unit(560, "feet")
  39098. },
  39099. ]
  39100. ))
  39101. characterMakers.push(() => makeCharacter(
  39102. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39103. {
  39104. front: {
  39105. height: math.unit(11 + 6/12, "feet"),
  39106. weight: math.unit(1366, "lb"),
  39107. name: "Front",
  39108. image: {
  39109. source: "./media/characters/lexor/front.svg",
  39110. extra: 1560/1481,
  39111. bottom: 211/1771
  39112. }
  39113. },
  39114. back: {
  39115. height: math.unit(11 + 6/12, "feet"),
  39116. weight: math.unit(1366, "lb"),
  39117. name: "Back",
  39118. image: {
  39119. source: "./media/characters/lexor/back.svg",
  39120. extra: 1614/1533,
  39121. bottom: 76/1690
  39122. }
  39123. },
  39124. maw: {
  39125. height: math.unit(3, "feet"),
  39126. name: "Maw",
  39127. image: {
  39128. source: "./media/characters/lexor/maw.svg"
  39129. }
  39130. },
  39131. dick: {
  39132. height: math.unit(2.59, "feet"),
  39133. name: "Dick",
  39134. image: {
  39135. source: "./media/characters/lexor/dick.svg"
  39136. }
  39137. },
  39138. },
  39139. [
  39140. {
  39141. name: "Normal",
  39142. height: math.unit(11 + 6/12, "feet"),
  39143. default: true
  39144. },
  39145. ]
  39146. ))
  39147. characterMakers.push(() => makeCharacter(
  39148. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39149. {
  39150. front: {
  39151. height: math.unit(5 + 8/12, "feet"),
  39152. name: "Front",
  39153. image: {
  39154. source: "./media/characters/magnum/front.svg",
  39155. extra: 942/855,
  39156. bottom: 26/968
  39157. }
  39158. },
  39159. },
  39160. [
  39161. {
  39162. name: "Normal",
  39163. height: math.unit(5 + 8/12, "feet"),
  39164. default: true
  39165. },
  39166. ]
  39167. ))
  39168. characterMakers.push(() => makeCharacter(
  39169. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39170. {
  39171. front: {
  39172. height: math.unit(18 + 4/12, "feet"),
  39173. weight: math.unit(1500, "kg"),
  39174. name: "Front",
  39175. image: {
  39176. source: "./media/characters/solas-sharpsman/front.svg",
  39177. extra: 1698/1589,
  39178. bottom: 0/1698
  39179. }
  39180. },
  39181. },
  39182. [
  39183. {
  39184. name: "Normal",
  39185. height: math.unit(18 + 4/12, "feet"),
  39186. default: true
  39187. },
  39188. ]
  39189. ))
  39190. characterMakers.push(() => makeCharacter(
  39191. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39192. {
  39193. front: {
  39194. height: math.unit(5 + 5/12, "feet"),
  39195. weight: math.unit(180, "lb"),
  39196. name: "Front",
  39197. image: {
  39198. source: "./media/characters/october/front.svg",
  39199. extra: 1800/1650,
  39200. bottom: 0/1800
  39201. }
  39202. },
  39203. frontNsfw: {
  39204. height: math.unit(5 + 5/12, "feet"),
  39205. weight: math.unit(180, "lb"),
  39206. name: "Front (NSFW)",
  39207. image: {
  39208. source: "./media/characters/october/front-nsfw.svg",
  39209. extra: 1392/1307,
  39210. bottom: 42/1434
  39211. }
  39212. },
  39213. },
  39214. [
  39215. {
  39216. name: "Normal",
  39217. height: math.unit(5 + 5/12, "feet"),
  39218. default: true
  39219. },
  39220. ]
  39221. ))
  39222. characterMakers.push(() => makeCharacter(
  39223. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39224. {
  39225. front: {
  39226. height: math.unit(8 + 6/12, "feet"),
  39227. name: "Front",
  39228. image: {
  39229. source: "./media/characters/essynkardi/front.svg",
  39230. extra: 1541/1457,
  39231. bottom: 47/1588
  39232. }
  39233. },
  39234. },
  39235. [
  39236. {
  39237. name: "Normal",
  39238. height: math.unit(8 + 6/12, "feet"),
  39239. default: true
  39240. },
  39241. ]
  39242. ))
  39243. characterMakers.push(() => makeCharacter(
  39244. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39245. {
  39246. front: {
  39247. height: math.unit(6 + 6/12, "feet"),
  39248. weight: math.unit(7, "lb"),
  39249. name: "Front",
  39250. image: {
  39251. source: "./media/characters/icky/front.svg",
  39252. extra: 813/782,
  39253. bottom: 66/879
  39254. }
  39255. },
  39256. back: {
  39257. height: math.unit(6 + 6/12, "feet"),
  39258. weight: math.unit(7, "lb"),
  39259. name: "Back",
  39260. image: {
  39261. source: "./media/characters/icky/back.svg",
  39262. extra: 754/735,
  39263. bottom: 56/810
  39264. }
  39265. },
  39266. },
  39267. [
  39268. {
  39269. name: "Normal",
  39270. height: math.unit(6 + 6/12, "feet"),
  39271. default: true
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39277. {
  39278. front: {
  39279. height: math.unit(15, "feet"),
  39280. name: "Front",
  39281. image: {
  39282. source: "./media/characters/rojas/front.svg",
  39283. extra: 1462/1408,
  39284. bottom: 95/1557
  39285. }
  39286. },
  39287. back: {
  39288. height: math.unit(15, "feet"),
  39289. name: "Back",
  39290. image: {
  39291. source: "./media/characters/rojas/back.svg",
  39292. extra: 1023/954,
  39293. bottom: 28/1051
  39294. }
  39295. },
  39296. },
  39297. [
  39298. {
  39299. name: "Normal",
  39300. height: math.unit(15, "feet"),
  39301. default: true
  39302. },
  39303. ]
  39304. ))
  39305. characterMakers.push(() => makeCharacter(
  39306. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39307. {
  39308. frontHuman: {
  39309. height: math.unit(5 + 7/12, "feet"),
  39310. name: "Front (Human)",
  39311. image: {
  39312. source: "./media/characters/alek-dryagan/front-human.svg",
  39313. extra: 1687/1667,
  39314. bottom: 69/1756
  39315. }
  39316. },
  39317. backHuman: {
  39318. height: math.unit(5 + 7/12, "feet"),
  39319. name: "Back (Human)",
  39320. image: {
  39321. source: "./media/characters/alek-dryagan/back-human.svg",
  39322. extra: 1670/1649,
  39323. bottom: 65/1735
  39324. }
  39325. },
  39326. frontDemi: {
  39327. height: math.unit(65, "feet"),
  39328. name: "Front (Demi)",
  39329. image: {
  39330. source: "./media/characters/alek-dryagan/front-demi.svg",
  39331. extra: 1669/1642,
  39332. bottom: 49/1718
  39333. }
  39334. },
  39335. backDemi: {
  39336. height: math.unit(65, "feet"),
  39337. name: "Back (Demi)",
  39338. image: {
  39339. source: "./media/characters/alek-dryagan/back-demi.svg",
  39340. extra: 1658/1637,
  39341. bottom: 40/1698
  39342. }
  39343. },
  39344. mawHuman: {
  39345. height: math.unit(0.3, "feet"),
  39346. name: "Maw (Human)",
  39347. image: {
  39348. source: "./media/characters/alek-dryagan/maw-human.svg"
  39349. }
  39350. },
  39351. mawDemi: {
  39352. height: math.unit(3.8, "feet"),
  39353. name: "Maw (Demi)",
  39354. image: {
  39355. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39356. }
  39357. },
  39358. },
  39359. [
  39360. {
  39361. name: "Normal",
  39362. height: math.unit(5 + 7/12, "feet"),
  39363. default: true
  39364. },
  39365. ]
  39366. ))
  39367. characterMakers.push(() => makeCharacter(
  39368. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39369. {
  39370. frontHuman: {
  39371. height: math.unit(5 + 2/12, "feet"),
  39372. name: "Front (Human)",
  39373. image: {
  39374. source: "./media/characters/gen/front-human.svg",
  39375. extra: 1627/1538,
  39376. bottom: 71/1698
  39377. }
  39378. },
  39379. backHuman: {
  39380. height: math.unit(5 + 2/12, "feet"),
  39381. name: "Back (Human)",
  39382. image: {
  39383. source: "./media/characters/gen/back-human.svg",
  39384. extra: 1638/1548,
  39385. bottom: 69/1707
  39386. }
  39387. },
  39388. frontDemi: {
  39389. height: math.unit(5 + 2/12, "feet"),
  39390. name: "Front (Demi)",
  39391. image: {
  39392. source: "./media/characters/gen/front-demi.svg",
  39393. extra: 1627/1538,
  39394. bottom: 71/1698
  39395. }
  39396. },
  39397. backDemi: {
  39398. height: math.unit(5 + 2/12, "feet"),
  39399. name: "Back (Demi)",
  39400. image: {
  39401. source: "./media/characters/gen/back-demi.svg",
  39402. extra: 1638/1548,
  39403. bottom: 69/1707
  39404. }
  39405. },
  39406. },
  39407. [
  39408. {
  39409. name: "Normal",
  39410. height: math.unit(5 + 2/12, "feet"),
  39411. default: true
  39412. },
  39413. ]
  39414. ))
  39415. characterMakers.push(() => makeCharacter(
  39416. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39417. {
  39418. frontImp: {
  39419. height: math.unit(1 + 11/12, "feet"),
  39420. name: "Front (Imp)",
  39421. image: {
  39422. source: "./media/characters/max-kobold/front-imp.svg",
  39423. extra: 1238/1134,
  39424. bottom: 81/1319
  39425. }
  39426. },
  39427. backImp: {
  39428. height: math.unit(1 + 11/12, "feet"),
  39429. name: "Back (Imp)",
  39430. image: {
  39431. source: "./media/characters/max-kobold/back-imp.svg",
  39432. extra: 1334/1175,
  39433. bottom: 34/1368
  39434. }
  39435. },
  39436. frontDemi: {
  39437. height: math.unit(5 + 9/12, "feet"),
  39438. name: "Front (Demi)",
  39439. image: {
  39440. source: "./media/characters/max-kobold/front-demi.svg",
  39441. extra: 1715/1685,
  39442. bottom: 54/1769
  39443. }
  39444. },
  39445. backDemi: {
  39446. height: math.unit(5 + 9/12, "feet"),
  39447. name: "Back (Demi)",
  39448. image: {
  39449. source: "./media/characters/max-kobold/back-demi.svg",
  39450. extra: 1752/1729,
  39451. bottom: 41/1793
  39452. }
  39453. },
  39454. handImp: {
  39455. height: math.unit(0.45, "feet"),
  39456. name: "Hand (Imp)",
  39457. image: {
  39458. source: "./media/characters/max-kobold/hand.svg"
  39459. }
  39460. },
  39461. pawImp: {
  39462. height: math.unit(0.46, "feet"),
  39463. name: "Paw (Imp)",
  39464. image: {
  39465. source: "./media/characters/max-kobold/paw.svg"
  39466. }
  39467. },
  39468. handDemi: {
  39469. height: math.unit(0.80, "feet"),
  39470. name: "Hand (Demi)",
  39471. image: {
  39472. source: "./media/characters/max-kobold/hand.svg"
  39473. }
  39474. },
  39475. pawDemi: {
  39476. height: math.unit(1.1, "feet"),
  39477. name: "Paw (Demi)",
  39478. image: {
  39479. source: "./media/characters/max-kobold/paw.svg"
  39480. }
  39481. },
  39482. headImp: {
  39483. height: math.unit(1.33, "feet"),
  39484. name: "Head (Imp)",
  39485. image: {
  39486. source: "./media/characters/max-kobold/head-imp.svg"
  39487. }
  39488. },
  39489. mawImp: {
  39490. height: math.unit(0.75, "feet"),
  39491. name: "Maw (Imp)",
  39492. image: {
  39493. source: "./media/characters/max-kobold/maw-imp.svg"
  39494. }
  39495. },
  39496. mawDemi: {
  39497. height: math.unit(0.42, "feet"),
  39498. name: "Maw (Demi)",
  39499. image: {
  39500. source: "./media/characters/max-kobold/maw-demi.svg"
  39501. }
  39502. },
  39503. },
  39504. [
  39505. {
  39506. name: "Normal",
  39507. height: math.unit(1 + 11/12, "feet"),
  39508. default: true
  39509. },
  39510. ]
  39511. ))
  39512. characterMakers.push(() => makeCharacter(
  39513. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39514. {
  39515. front: {
  39516. height: math.unit(7 + 5/12, "feet"),
  39517. name: "Front",
  39518. image: {
  39519. source: "./media/characters/carbon/front.svg",
  39520. extra: 1754/1689,
  39521. bottom: 65/1819
  39522. }
  39523. },
  39524. back: {
  39525. height: math.unit(7 + 5/12, "feet"),
  39526. name: "Back",
  39527. image: {
  39528. source: "./media/characters/carbon/back.svg",
  39529. extra: 1762/1695,
  39530. bottom: 24/1786
  39531. }
  39532. },
  39533. frontGigantamax: {
  39534. height: math.unit(150, "feet"),
  39535. name: "Front (Gigantamax)",
  39536. image: {
  39537. source: "./media/characters/carbon/front-gigantamax.svg",
  39538. extra: 1826/1669,
  39539. bottom: 59/1885
  39540. }
  39541. },
  39542. backGigantamax: {
  39543. height: math.unit(150, "feet"),
  39544. name: "Back (Gigantamax)",
  39545. image: {
  39546. source: "./media/characters/carbon/back-gigantamax.svg",
  39547. extra: 1796/1653,
  39548. bottom: 53/1849
  39549. }
  39550. },
  39551. maw: {
  39552. height: math.unit(0.48, "feet"),
  39553. name: "Maw",
  39554. image: {
  39555. source: "./media/characters/carbon/maw.svg"
  39556. }
  39557. },
  39558. mawGigantamax: {
  39559. height: math.unit(7.5, "feet"),
  39560. name: "Maw (Gigantamax)",
  39561. image: {
  39562. source: "./media/characters/carbon/maw-gigantamax.svg"
  39563. }
  39564. },
  39565. },
  39566. [
  39567. {
  39568. name: "Normal",
  39569. height: math.unit(7 + 5/12, "feet"),
  39570. default: true
  39571. },
  39572. ]
  39573. ))
  39574. characterMakers.push(() => makeCharacter(
  39575. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39576. {
  39577. front: {
  39578. height: math.unit(6, "feet"),
  39579. name: "Front",
  39580. image: {
  39581. source: "./media/characters/maverick/front.svg",
  39582. extra: 1672/1661,
  39583. bottom: 85/1757
  39584. }
  39585. },
  39586. back: {
  39587. height: math.unit(6, "feet"),
  39588. name: "Back",
  39589. image: {
  39590. source: "./media/characters/maverick/back.svg",
  39591. extra: 1642/1631,
  39592. bottom: 38/1680
  39593. }
  39594. },
  39595. },
  39596. [
  39597. {
  39598. name: "Normal",
  39599. height: math.unit(6, "feet"),
  39600. default: true
  39601. },
  39602. ]
  39603. ))
  39604. characterMakers.push(() => makeCharacter(
  39605. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39606. {
  39607. front: {
  39608. height: math.unit(15, "feet"),
  39609. weight: math.unit(615, "lb"),
  39610. name: "Front",
  39611. image: {
  39612. source: "./media/characters/grockle/front.svg",
  39613. extra: 1535/1427,
  39614. bottom: 56/1591
  39615. }
  39616. },
  39617. },
  39618. [
  39619. {
  39620. name: "Normal",
  39621. height: math.unit(15, "feet"),
  39622. default: true
  39623. },
  39624. {
  39625. name: "Large",
  39626. height: math.unit(150, "feet")
  39627. },
  39628. {
  39629. name: "Macro",
  39630. height: math.unit(1876, "feet")
  39631. },
  39632. {
  39633. name: "Mega Macro",
  39634. height: math.unit(121940, "feet")
  39635. },
  39636. {
  39637. name: "Giga Macro",
  39638. height: math.unit(750, "km")
  39639. },
  39640. {
  39641. name: "Tera Macro",
  39642. height: math.unit(750000, "km")
  39643. },
  39644. {
  39645. name: "Galactic",
  39646. height: math.unit(1.4e5, "km")
  39647. },
  39648. {
  39649. name: "Godlike",
  39650. height: math.unit(9.8e280, "galaxies")
  39651. },
  39652. ]
  39653. ))
  39654. characterMakers.push(() => makeCharacter(
  39655. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39656. {
  39657. front: {
  39658. height: math.unit(11, "meters"),
  39659. weight: math.unit(20, "tonnes"),
  39660. name: "Front",
  39661. image: {
  39662. source: "./media/characters/alistair/front.svg",
  39663. extra: 1265/1009,
  39664. bottom: 93/1358
  39665. }
  39666. },
  39667. },
  39668. [
  39669. {
  39670. name: "Normal",
  39671. height: math.unit(11, "meters"),
  39672. default: true
  39673. },
  39674. ]
  39675. ))
  39676. characterMakers.push(() => makeCharacter(
  39677. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39678. {
  39679. front: {
  39680. height: math.unit(5 + 8/12, "feet"),
  39681. name: "Front",
  39682. image: {
  39683. source: "./media/characters/haruka/front.svg",
  39684. extra: 2012/1952,
  39685. bottom: 0/2012
  39686. }
  39687. },
  39688. },
  39689. [
  39690. {
  39691. name: "Normal",
  39692. height: math.unit(5 + 8/12, "feet"),
  39693. default: true
  39694. },
  39695. ]
  39696. ))
  39697. characterMakers.push(() => makeCharacter(
  39698. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39699. {
  39700. back: {
  39701. height: math.unit(9, "feet"),
  39702. name: "Back",
  39703. image: {
  39704. source: "./media/characters/vivian-sylveon/back.svg",
  39705. extra: 1853/1714,
  39706. bottom: 0/1853
  39707. }
  39708. },
  39709. hyper: {
  39710. height: math.unit(5.58, "feet"),
  39711. name: "Hyper",
  39712. preyCapacity: math.unit(2.80616218797, "m^3"),
  39713. image: {
  39714. source: "./media/characters/vivian-sylveon/hyper.svg",
  39715. extra: 999/676,
  39716. bottom: 697/1696
  39717. },
  39718. },
  39719. paw: {
  39720. height: math.unit(1.8, "feet"),
  39721. name: "Paw",
  39722. image: {
  39723. source: "./media/characters/vivian-sylveon/paw.svg"
  39724. }
  39725. },
  39726. danger: {
  39727. height: math.unit(7.5, "feet"),
  39728. name: "DANGER",
  39729. image: {
  39730. source: "./media/characters/vivian-sylveon/danger.svg"
  39731. }
  39732. },
  39733. },
  39734. [
  39735. {
  39736. name: "Normal",
  39737. height: math.unit(9, "feet"),
  39738. default: true
  39739. },
  39740. {
  39741. name: "Macro",
  39742. height: math.unit(500, "feet")
  39743. },
  39744. {
  39745. name: "Megamacro",
  39746. height: math.unit(600, "miles")
  39747. },
  39748. {
  39749. name: "Gigamacro",
  39750. height: math.unit(30000, "miles")
  39751. },
  39752. ]
  39753. ))
  39754. characterMakers.push(() => makeCharacter(
  39755. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39756. {
  39757. anthro: {
  39758. height: math.unit(5 + 10/12, "feet"),
  39759. weight: math.unit(100, "lb"),
  39760. name: "Anthro",
  39761. image: {
  39762. source: "./media/characters/daiki/anthro.svg",
  39763. extra: 1115/1027,
  39764. bottom: 69/1184
  39765. }
  39766. },
  39767. feral: {
  39768. height: math.unit(200, "feet"),
  39769. name: "Feral",
  39770. image: {
  39771. source: "./media/characters/daiki/feral.svg",
  39772. extra: 1256/313,
  39773. bottom: 39/1295
  39774. }
  39775. },
  39776. feralHead: {
  39777. height: math.unit(171, "feet"),
  39778. name: "Feral Head",
  39779. image: {
  39780. source: "./media/characters/daiki/feral-head.svg"
  39781. }
  39782. },
  39783. manaDragon: {
  39784. height: math.unit(170, "meters"),
  39785. name: "Mana-dragon",
  39786. image: {
  39787. source: "./media/characters/daiki/mana-dragon.svg",
  39788. extra: 763/420,
  39789. bottom: 97/860
  39790. }
  39791. },
  39792. },
  39793. [
  39794. {
  39795. name: "Normal",
  39796. height: math.unit(5 + 10/12, "feet"),
  39797. default: true
  39798. },
  39799. ]
  39800. ))
  39801. characterMakers.push(() => makeCharacter(
  39802. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39803. {
  39804. fullyEquippedFront: {
  39805. height: math.unit(3 + 1/12, "feet"),
  39806. weight: math.unit(24, "lb"),
  39807. name: "Fully Equipped (Front)",
  39808. image: {
  39809. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39810. extra: 687/605,
  39811. bottom: 18/705
  39812. }
  39813. },
  39814. fullyEquippedBack: {
  39815. height: math.unit(3 + 1/12, "feet"),
  39816. weight: math.unit(24, "lb"),
  39817. name: "Fully Equipped (Back)",
  39818. image: {
  39819. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39820. extra: 689/590,
  39821. bottom: 18/707
  39822. }
  39823. },
  39824. dailyWear: {
  39825. height: math.unit(3 + 1/12, "feet"),
  39826. weight: math.unit(24, "lb"),
  39827. name: "Daily Wear",
  39828. image: {
  39829. source: "./media/characters/tea-spot/daily-wear.svg",
  39830. extra: 701/620,
  39831. bottom: 21/722
  39832. }
  39833. },
  39834. maidWork: {
  39835. height: math.unit(3 + 1/12, "feet"),
  39836. weight: math.unit(24, "lb"),
  39837. name: "Maid Work",
  39838. image: {
  39839. source: "./media/characters/tea-spot/maid-work.svg",
  39840. extra: 693/609,
  39841. bottom: 15/708
  39842. }
  39843. },
  39844. },
  39845. [
  39846. {
  39847. name: "Normal",
  39848. height: math.unit(3 + 1/12, "feet"),
  39849. default: true
  39850. },
  39851. ]
  39852. ))
  39853. characterMakers.push(() => makeCharacter(
  39854. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39855. {
  39856. front: {
  39857. height: math.unit(175, "cm"),
  39858. weight: math.unit(75, "kg"),
  39859. name: "Front",
  39860. image: {
  39861. source: "./media/characters/chee/front.svg",
  39862. extra: 1796/1740,
  39863. bottom: 40/1836
  39864. }
  39865. },
  39866. },
  39867. [
  39868. {
  39869. name: "Micro-Micro",
  39870. height: math.unit(1, "nm")
  39871. },
  39872. {
  39873. name: "Micro-erst",
  39874. height: math.unit(1, "micrometer")
  39875. },
  39876. {
  39877. name: "Micro-er",
  39878. height: math.unit(1, "cm")
  39879. },
  39880. {
  39881. name: "Normal",
  39882. height: math.unit(175, "cm"),
  39883. default: true
  39884. },
  39885. {
  39886. name: "Macro",
  39887. height: math.unit(100, "m")
  39888. },
  39889. {
  39890. name: "Macro-er",
  39891. height: math.unit(1, "km")
  39892. },
  39893. {
  39894. name: "Macro-erst",
  39895. height: math.unit(10, "km")
  39896. },
  39897. {
  39898. name: "Macro-Macro",
  39899. height: math.unit(100, "km")
  39900. },
  39901. ]
  39902. ))
  39903. characterMakers.push(() => makeCharacter(
  39904. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39905. {
  39906. front: {
  39907. height: math.unit(11 + 9/12, "feet"),
  39908. weight: math.unit(935, "lb"),
  39909. name: "Front",
  39910. image: {
  39911. source: "./media/characters/kingsley/front.svg",
  39912. extra: 1803/1674,
  39913. bottom: 127/1930
  39914. }
  39915. },
  39916. frontNude: {
  39917. height: math.unit(11 + 9/12, "feet"),
  39918. weight: math.unit(935, "lb"),
  39919. name: "Front (Nude)",
  39920. image: {
  39921. source: "./media/characters/kingsley/front-nude.svg",
  39922. extra: 1803/1674,
  39923. bottom: 127/1930
  39924. }
  39925. },
  39926. },
  39927. [
  39928. {
  39929. name: "Normal",
  39930. height: math.unit(11 + 9/12, "feet"),
  39931. default: true
  39932. },
  39933. ]
  39934. ))
  39935. characterMakers.push(() => makeCharacter(
  39936. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39937. {
  39938. side: {
  39939. height: math.unit(9, "feet"),
  39940. name: "Side",
  39941. image: {
  39942. source: "./media/characters/rymel/side.svg",
  39943. extra: 792/469,
  39944. bottom: 121/913
  39945. }
  39946. },
  39947. maw: {
  39948. height: math.unit(2.4, "meters"),
  39949. name: "Maw",
  39950. image: {
  39951. source: "./media/characters/rymel/maw.svg"
  39952. }
  39953. },
  39954. },
  39955. [
  39956. {
  39957. name: "House Drake",
  39958. height: math.unit(2, "feet")
  39959. },
  39960. {
  39961. name: "Reduced",
  39962. height: math.unit(4.5, "feet")
  39963. },
  39964. {
  39965. name: "Normal",
  39966. height: math.unit(9, "feet"),
  39967. default: true
  39968. },
  39969. ]
  39970. ))
  39971. characterMakers.push(() => makeCharacter(
  39972. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39973. {
  39974. front: {
  39975. height: math.unit(1.74, "meters"),
  39976. weight: math.unit(55, "kg"),
  39977. name: "Front",
  39978. image: {
  39979. source: "./media/characters/rubus/front.svg",
  39980. extra: 1894/1742,
  39981. bottom: 44/1938
  39982. }
  39983. },
  39984. },
  39985. [
  39986. {
  39987. name: "Normal",
  39988. height: math.unit(1.74, "meters"),
  39989. default: true
  39990. },
  39991. ]
  39992. ))
  39993. characterMakers.push(() => makeCharacter(
  39994. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39995. {
  39996. front: {
  39997. height: math.unit(5 + 2/12, "feet"),
  39998. weight: math.unit(112, "lb"),
  39999. name: "Front",
  40000. image: {
  40001. source: "./media/characters/cassie-kingston/front.svg",
  40002. extra: 1438/1390,
  40003. bottom: 47/1485
  40004. }
  40005. },
  40006. },
  40007. [
  40008. {
  40009. name: "Normal",
  40010. height: math.unit(5 + 2/12, "feet"),
  40011. default: true
  40012. },
  40013. {
  40014. name: "Macro",
  40015. height: math.unit(128, "feet")
  40016. },
  40017. {
  40018. name: "Megamacro",
  40019. height: math.unit(2.56, "miles")
  40020. },
  40021. ]
  40022. ))
  40023. characterMakers.push(() => makeCharacter(
  40024. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40025. {
  40026. front: {
  40027. height: math.unit(7, "feet"),
  40028. name: "Front",
  40029. image: {
  40030. source: "./media/characters/fox/front.svg",
  40031. extra: 1798/1703,
  40032. bottom: 55/1853
  40033. }
  40034. },
  40035. back: {
  40036. height: math.unit(7, "feet"),
  40037. name: "Back",
  40038. image: {
  40039. source: "./media/characters/fox/back.svg",
  40040. extra: 1748/1649,
  40041. bottom: 32/1780
  40042. }
  40043. },
  40044. head: {
  40045. height: math.unit(1.95, "feet"),
  40046. name: "Head",
  40047. image: {
  40048. source: "./media/characters/fox/head.svg"
  40049. }
  40050. },
  40051. dick: {
  40052. height: math.unit(1.33, "feet"),
  40053. name: "Dick",
  40054. image: {
  40055. source: "./media/characters/fox/dick.svg"
  40056. }
  40057. },
  40058. foot: {
  40059. height: math.unit(1, "feet"),
  40060. name: "Foot",
  40061. image: {
  40062. source: "./media/characters/fox/foot.svg"
  40063. }
  40064. },
  40065. paw: {
  40066. height: math.unit(0.92, "feet"),
  40067. name: "Paw",
  40068. image: {
  40069. source: "./media/characters/fox/paw.svg"
  40070. }
  40071. },
  40072. },
  40073. [
  40074. {
  40075. name: "Small",
  40076. height: math.unit(3, "inches")
  40077. },
  40078. {
  40079. name: "\"Realistic\"",
  40080. height: math.unit(7, "feet")
  40081. },
  40082. {
  40083. name: "Normal",
  40084. height: math.unit(150, "feet"),
  40085. default: true
  40086. },
  40087. {
  40088. name: "BIG",
  40089. height: math.unit(1200, "feet")
  40090. },
  40091. {
  40092. name: "👀",
  40093. height: math.unit(5, "miles")
  40094. },
  40095. {
  40096. name: "👀👀👀",
  40097. height: math.unit(64, "miles")
  40098. },
  40099. ]
  40100. ))
  40101. characterMakers.push(() => makeCharacter(
  40102. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40103. {
  40104. front: {
  40105. height: math.unit(625, "feet"),
  40106. name: "Front",
  40107. image: {
  40108. source: "./media/characters/asonja-rossa/front.svg",
  40109. extra: 1833/1686,
  40110. bottom: 24/1857
  40111. }
  40112. },
  40113. back: {
  40114. height: math.unit(625, "feet"),
  40115. name: "Back",
  40116. image: {
  40117. source: "./media/characters/asonja-rossa/back.svg",
  40118. extra: 1852/1753,
  40119. bottom: 26/1878
  40120. }
  40121. },
  40122. },
  40123. [
  40124. {
  40125. name: "Macro",
  40126. height: math.unit(625, "feet"),
  40127. default: true
  40128. },
  40129. ]
  40130. ))
  40131. characterMakers.push(() => makeCharacter(
  40132. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40133. {
  40134. side: {
  40135. height: math.unit(8, "feet"),
  40136. name: "Side",
  40137. image: {
  40138. source: "./media/characters/rezukii/side.svg",
  40139. extra: 979/542,
  40140. bottom: 87/1066
  40141. }
  40142. },
  40143. sitting: {
  40144. height: math.unit(14.6, "feet"),
  40145. name: "Sitting",
  40146. image: {
  40147. source: "./media/characters/rezukii/sitting.svg",
  40148. extra: 1023/813,
  40149. bottom: 45/1068
  40150. }
  40151. },
  40152. },
  40153. [
  40154. {
  40155. name: "Tiny",
  40156. height: math.unit(2, "feet")
  40157. },
  40158. {
  40159. name: "Smol",
  40160. height: math.unit(4, "feet")
  40161. },
  40162. {
  40163. name: "Normal",
  40164. height: math.unit(8, "feet"),
  40165. default: true
  40166. },
  40167. {
  40168. name: "Big",
  40169. height: math.unit(12, "feet")
  40170. },
  40171. {
  40172. name: "Macro",
  40173. height: math.unit(30, "feet")
  40174. },
  40175. ]
  40176. ))
  40177. characterMakers.push(() => makeCharacter(
  40178. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40179. {
  40180. front: {
  40181. height: math.unit(14, "feet"),
  40182. weight: math.unit(9.5, "tonnes"),
  40183. name: "Front",
  40184. image: {
  40185. source: "./media/characters/dawnheart/front.svg",
  40186. extra: 2792/2675,
  40187. bottom: 64/2856
  40188. }
  40189. },
  40190. },
  40191. [
  40192. {
  40193. name: "Normal",
  40194. height: math.unit(14, "feet"),
  40195. default: true
  40196. },
  40197. ]
  40198. ))
  40199. characterMakers.push(() => makeCharacter(
  40200. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40201. {
  40202. front: {
  40203. height: math.unit(1.7, "m"),
  40204. name: "Front",
  40205. image: {
  40206. source: "./media/characters/gladi/front.svg",
  40207. extra: 1460/1362,
  40208. bottom: 19/1479
  40209. }
  40210. },
  40211. back: {
  40212. height: math.unit(1.7, "m"),
  40213. name: "Back",
  40214. image: {
  40215. source: "./media/characters/gladi/back.svg",
  40216. extra: 1459/1357,
  40217. bottom: 12/1471
  40218. }
  40219. },
  40220. feral: {
  40221. height: math.unit(2.05, "m"),
  40222. name: "Feral",
  40223. image: {
  40224. source: "./media/characters/gladi/feral.svg",
  40225. extra: 821/557,
  40226. bottom: 91/912
  40227. }
  40228. },
  40229. },
  40230. [
  40231. {
  40232. name: "Shortest",
  40233. height: math.unit(70, "cm")
  40234. },
  40235. {
  40236. name: "Normal",
  40237. height: math.unit(1.7, "m")
  40238. },
  40239. {
  40240. name: "Macro",
  40241. height: math.unit(10, "m"),
  40242. default: true
  40243. },
  40244. {
  40245. name: "Tallest",
  40246. height: math.unit(200, "m")
  40247. },
  40248. ]
  40249. ))
  40250. characterMakers.push(() => makeCharacter(
  40251. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40252. {
  40253. front: {
  40254. height: math.unit(5 + 7/12, "feet"),
  40255. weight: math.unit(2, "tons"),
  40256. name: "Front",
  40257. image: {
  40258. source: "./media/characters/erdno/front.svg",
  40259. extra: 1234/1129,
  40260. bottom: 35/1269
  40261. }
  40262. },
  40263. angled: {
  40264. height: math.unit(5 + 7/12, "feet"),
  40265. weight: math.unit(2, "tons"),
  40266. name: "Angled",
  40267. image: {
  40268. source: "./media/characters/erdno/angled.svg",
  40269. extra: 1185/1139,
  40270. bottom: 36/1221
  40271. }
  40272. },
  40273. side: {
  40274. height: math.unit(5 + 7/12, "feet"),
  40275. weight: math.unit(2, "tons"),
  40276. name: "Side",
  40277. image: {
  40278. source: "./media/characters/erdno/side.svg",
  40279. extra: 1191/1144,
  40280. bottom: 40/1231
  40281. }
  40282. },
  40283. back: {
  40284. height: math.unit(5 + 7/12, "feet"),
  40285. weight: math.unit(2, "tons"),
  40286. name: "Back",
  40287. image: {
  40288. source: "./media/characters/erdno/back.svg",
  40289. extra: 1202/1146,
  40290. bottom: 17/1219
  40291. }
  40292. },
  40293. frontNsfw: {
  40294. height: math.unit(5 + 7/12, "feet"),
  40295. weight: math.unit(2, "tons"),
  40296. name: "Front (NSFW)",
  40297. image: {
  40298. source: "./media/characters/erdno/front-nsfw.svg",
  40299. extra: 1234/1129,
  40300. bottom: 35/1269
  40301. }
  40302. },
  40303. angledNsfw: {
  40304. height: math.unit(5 + 7/12, "feet"),
  40305. weight: math.unit(2, "tons"),
  40306. name: "Angled (NSFW)",
  40307. image: {
  40308. source: "./media/characters/erdno/angled-nsfw.svg",
  40309. extra: 1185/1139,
  40310. bottom: 36/1221
  40311. }
  40312. },
  40313. sideNsfw: {
  40314. height: math.unit(5 + 7/12, "feet"),
  40315. weight: math.unit(2, "tons"),
  40316. name: "Side (NSFW)",
  40317. image: {
  40318. source: "./media/characters/erdno/side-nsfw.svg",
  40319. extra: 1191/1144,
  40320. bottom: 40/1231
  40321. }
  40322. },
  40323. backNsfw: {
  40324. height: math.unit(5 + 7/12, "feet"),
  40325. weight: math.unit(2, "tons"),
  40326. name: "Back (NSFW)",
  40327. image: {
  40328. source: "./media/characters/erdno/back-nsfw.svg",
  40329. extra: 1202/1146,
  40330. bottom: 17/1219
  40331. }
  40332. },
  40333. frontHyper: {
  40334. height: math.unit(5 + 7/12, "feet"),
  40335. weight: math.unit(2, "tons"),
  40336. name: "Front (Hyper)",
  40337. image: {
  40338. source: "./media/characters/erdno/front-hyper.svg",
  40339. extra: 1298/1136,
  40340. bottom: 35/1333
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Normal",
  40347. height: math.unit(5 + 7/12, "feet"),
  40348. default: true
  40349. },
  40350. {
  40351. name: "Big",
  40352. height: math.unit(5.7, "meters")
  40353. },
  40354. {
  40355. name: "Macro",
  40356. height: math.unit(5.7, "kilometers")
  40357. },
  40358. {
  40359. name: "Megamacro",
  40360. height: math.unit(5.7, "earths")
  40361. },
  40362. ]
  40363. ))
  40364. characterMakers.push(() => makeCharacter(
  40365. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40366. {
  40367. front: {
  40368. height: math.unit(5 + 10/12, "feet"),
  40369. weight: math.unit(150, "lb"),
  40370. name: "Front",
  40371. image: {
  40372. source: "./media/characters/jamie/front.svg",
  40373. extra: 1908/1768,
  40374. bottom: 19/1927
  40375. }
  40376. },
  40377. },
  40378. [
  40379. {
  40380. name: "Minimum",
  40381. height: math.unit(2, "cm")
  40382. },
  40383. {
  40384. name: "Micro",
  40385. height: math.unit(3, "inches")
  40386. },
  40387. {
  40388. name: "Normal",
  40389. height: math.unit(5 + 10/12, "feet"),
  40390. default: true
  40391. },
  40392. {
  40393. name: "Macro",
  40394. height: math.unit(150, "feet")
  40395. },
  40396. {
  40397. name: "Megamacro",
  40398. height: math.unit(10000, "m")
  40399. },
  40400. ]
  40401. ))
  40402. characterMakers.push(() => makeCharacter(
  40403. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40404. {
  40405. front: {
  40406. height: math.unit(2, "meters"),
  40407. weight: math.unit(100, "kg"),
  40408. name: "Front",
  40409. image: {
  40410. source: "./media/characters/shiron/front.svg",
  40411. extra: 2103/1985,
  40412. bottom: 98/2201
  40413. }
  40414. },
  40415. back: {
  40416. height: math.unit(2, "meters"),
  40417. weight: math.unit(100, "kg"),
  40418. name: "Back",
  40419. image: {
  40420. source: "./media/characters/shiron/back.svg",
  40421. extra: 2110/2015,
  40422. bottom: 89/2199
  40423. }
  40424. },
  40425. hand: {
  40426. height: math.unit(0.96, "feet"),
  40427. name: "Hand",
  40428. image: {
  40429. source: "./media/characters/shiron/hand.svg"
  40430. }
  40431. },
  40432. foot: {
  40433. height: math.unit(1.464, "feet"),
  40434. name: "Foot",
  40435. image: {
  40436. source: "./media/characters/shiron/foot.svg"
  40437. }
  40438. },
  40439. },
  40440. [
  40441. {
  40442. name: "Normal",
  40443. height: math.unit(2, "meters")
  40444. },
  40445. {
  40446. name: "Macro",
  40447. height: math.unit(500, "meters"),
  40448. default: true
  40449. },
  40450. {
  40451. name: "Megamacro",
  40452. height: math.unit(20, "km")
  40453. },
  40454. ]
  40455. ))
  40456. characterMakers.push(() => makeCharacter(
  40457. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40458. {
  40459. front: {
  40460. height: math.unit(6, "feet"),
  40461. name: "Front",
  40462. image: {
  40463. source: "./media/characters/sam/front.svg",
  40464. extra: 849/826,
  40465. bottom: 19/868
  40466. }
  40467. },
  40468. },
  40469. [
  40470. {
  40471. name: "Normal",
  40472. height: math.unit(6, "feet"),
  40473. default: true
  40474. },
  40475. ]
  40476. ))
  40477. characterMakers.push(() => makeCharacter(
  40478. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40479. {
  40480. front: {
  40481. height: math.unit(8 + 4/12, "feet"),
  40482. weight: math.unit(122, "kg"),
  40483. name: "Front",
  40484. image: {
  40485. source: "./media/characters/namori-kurogawa/front.svg",
  40486. extra: 1894/1576,
  40487. bottom: 34/1928
  40488. }
  40489. },
  40490. },
  40491. [
  40492. {
  40493. name: "Normal",
  40494. height: math.unit(8 + 4/12, "feet"),
  40495. default: true
  40496. },
  40497. ]
  40498. ))
  40499. characterMakers.push(() => makeCharacter(
  40500. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40501. {
  40502. front: {
  40503. height: math.unit(9, "feet"),
  40504. weight: math.unit(621, "lb"),
  40505. name: "Front",
  40506. image: {
  40507. source: "./media/characters/unmru/front.svg",
  40508. extra: 1853/1747,
  40509. bottom: 73/1926
  40510. }
  40511. },
  40512. side: {
  40513. height: math.unit(9, "feet"),
  40514. weight: math.unit(621, "lb"),
  40515. name: "Side",
  40516. image: {
  40517. source: "./media/characters/unmru/side.svg",
  40518. extra: 1781/1671,
  40519. bottom: 127/1908
  40520. }
  40521. },
  40522. back: {
  40523. height: math.unit(9, "feet"),
  40524. weight: math.unit(621, "lb"),
  40525. name: "Back",
  40526. image: {
  40527. source: "./media/characters/unmru/back.svg",
  40528. extra: 1894/1765,
  40529. bottom: 75/1969
  40530. }
  40531. },
  40532. dick: {
  40533. height: math.unit(3, "feet"),
  40534. weight: math.unit(35, "lb"),
  40535. name: "Dick",
  40536. image: {
  40537. source: "./media/characters/unmru/dick.svg"
  40538. }
  40539. },
  40540. },
  40541. [
  40542. {
  40543. name: "Normal",
  40544. height: math.unit(9, "feet")
  40545. },
  40546. {
  40547. name: "Natural",
  40548. height: math.unit(27, "feet"),
  40549. default: true
  40550. },
  40551. {
  40552. name: "Giant",
  40553. height: math.unit(90, "feet")
  40554. },
  40555. {
  40556. name: "Kaiju",
  40557. height: math.unit(270, "feet")
  40558. },
  40559. {
  40560. name: "Macro",
  40561. height: math.unit(900, "feet")
  40562. },
  40563. {
  40564. name: "Macro+",
  40565. height: math.unit(2700, "feet")
  40566. },
  40567. {
  40568. name: "Megamacro",
  40569. height: math.unit(9000, "feet")
  40570. },
  40571. {
  40572. name: "City-Crushing",
  40573. height: math.unit(27000, "feet")
  40574. },
  40575. {
  40576. name: "Mountain-Mashing",
  40577. height: math.unit(90000, "feet")
  40578. },
  40579. {
  40580. name: "Earth-Eclipsing",
  40581. height: math.unit(2.7e8, "feet")
  40582. },
  40583. {
  40584. name: "Sol-Swallowing",
  40585. height: math.unit(9e10, "feet")
  40586. },
  40587. {
  40588. name: "Majoris-Munching",
  40589. height: math.unit(2.7e13, "feet")
  40590. },
  40591. ]
  40592. ))
  40593. characterMakers.push(() => makeCharacter(
  40594. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40595. {
  40596. front: {
  40597. height: math.unit(1, "inch"),
  40598. name: "Front",
  40599. image: {
  40600. source: "./media/characters/squeaks-mouse/front.svg",
  40601. extra: 352/308,
  40602. bottom: 25/377
  40603. }
  40604. },
  40605. },
  40606. [
  40607. {
  40608. name: "Micro",
  40609. height: math.unit(1, "inch"),
  40610. default: true
  40611. },
  40612. ]
  40613. ))
  40614. characterMakers.push(() => makeCharacter(
  40615. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40616. {
  40617. side: {
  40618. height: math.unit(35, "feet"),
  40619. name: "Side",
  40620. image: {
  40621. source: "./media/characters/sayko/side.svg",
  40622. extra: 1697/1021,
  40623. bottom: 82/1779
  40624. }
  40625. },
  40626. head: {
  40627. height: math.unit(16, "feet"),
  40628. name: "Head",
  40629. image: {
  40630. source: "./media/characters/sayko/head.svg"
  40631. }
  40632. },
  40633. forepaw: {
  40634. height: math.unit(7.85, "feet"),
  40635. name: "Forepaw",
  40636. image: {
  40637. source: "./media/characters/sayko/forepaw.svg"
  40638. }
  40639. },
  40640. hindpaw: {
  40641. height: math.unit(8.8, "feet"),
  40642. name: "Hindpaw",
  40643. image: {
  40644. source: "./media/characters/sayko/hindpaw.svg"
  40645. }
  40646. },
  40647. },
  40648. [
  40649. {
  40650. name: "Normal",
  40651. height: math.unit(35, "feet"),
  40652. default: true
  40653. },
  40654. {
  40655. name: "Colossus",
  40656. height: math.unit(100, "meters")
  40657. },
  40658. {
  40659. name: "\"Small\" Deity",
  40660. height: math.unit(1, "km")
  40661. },
  40662. {
  40663. name: "\"Large\" Deity",
  40664. height: math.unit(15, "km")
  40665. },
  40666. ]
  40667. ))
  40668. characterMakers.push(() => makeCharacter(
  40669. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40670. {
  40671. front: {
  40672. height: math.unit(6, "feet"),
  40673. weight: math.unit(250, "lb"),
  40674. name: "Front",
  40675. image: {
  40676. source: "./media/characters/mukiro/front.svg",
  40677. extra: 1368/1310,
  40678. bottom: 34/1402
  40679. }
  40680. },
  40681. },
  40682. [
  40683. {
  40684. name: "Normal",
  40685. height: math.unit(6, "feet"),
  40686. default: true
  40687. },
  40688. ]
  40689. ))
  40690. characterMakers.push(() => makeCharacter(
  40691. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40692. {
  40693. front: {
  40694. height: math.unit(12 + 4/12, "feet"),
  40695. name: "Front",
  40696. image: {
  40697. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40698. extra: 1346/1311,
  40699. bottom: 65/1411
  40700. }
  40701. },
  40702. },
  40703. [
  40704. {
  40705. name: "Base",
  40706. height: math.unit(12 + 4/12, "feet"),
  40707. default: true
  40708. },
  40709. {
  40710. name: "Macro",
  40711. height: math.unit(150, "feet")
  40712. },
  40713. {
  40714. name: "Mega",
  40715. height: math.unit(2, "miles")
  40716. },
  40717. {
  40718. name: "Demi God",
  40719. height: math.unit(4, "AU")
  40720. },
  40721. {
  40722. name: "God Size",
  40723. height: math.unit(1, "universe")
  40724. },
  40725. ]
  40726. ))
  40727. characterMakers.push(() => makeCharacter(
  40728. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40729. {
  40730. front: {
  40731. height: math.unit(3 + 3/12, "feet"),
  40732. weight: math.unit(88, "lb"),
  40733. name: "Front",
  40734. image: {
  40735. source: "./media/characters/trey/front.svg",
  40736. extra: 1815/1509,
  40737. bottom: 60/1875
  40738. }
  40739. },
  40740. },
  40741. [
  40742. {
  40743. name: "Normal",
  40744. height: math.unit(3 + 3/12, "feet"),
  40745. default: true
  40746. },
  40747. ]
  40748. ))
  40749. characterMakers.push(() => makeCharacter(
  40750. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40751. {
  40752. front: {
  40753. height: math.unit(4, "meters"),
  40754. name: "Front",
  40755. image: {
  40756. source: "./media/characters/adelonda/front.svg",
  40757. extra: 1077/982,
  40758. bottom: 39/1116
  40759. }
  40760. },
  40761. back: {
  40762. height: math.unit(4, "meters"),
  40763. name: "Back",
  40764. image: {
  40765. source: "./media/characters/adelonda/back.svg",
  40766. extra: 1105/1003,
  40767. bottom: 25/1130
  40768. }
  40769. },
  40770. feral: {
  40771. height: math.unit(40/1.5, "meters"),
  40772. name: "Feral",
  40773. image: {
  40774. source: "./media/characters/adelonda/feral.svg",
  40775. extra: 597/271,
  40776. bottom: 387/984
  40777. }
  40778. },
  40779. },
  40780. [
  40781. {
  40782. name: "Normal",
  40783. height: math.unit(4, "meters"),
  40784. default: true
  40785. },
  40786. ]
  40787. ))
  40788. characterMakers.push(() => makeCharacter(
  40789. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40790. {
  40791. front: {
  40792. height: math.unit(8 + 4/12, "feet"),
  40793. weight: math.unit(670, "lb"),
  40794. name: "Front",
  40795. image: {
  40796. source: "./media/characters/acadiel/front.svg",
  40797. extra: 1901/1595,
  40798. bottom: 142/2043
  40799. }
  40800. },
  40801. },
  40802. [
  40803. {
  40804. name: "Normal",
  40805. height: math.unit(8 + 4/12, "feet"),
  40806. default: true
  40807. },
  40808. {
  40809. name: "Macro",
  40810. height: math.unit(200, "feet")
  40811. },
  40812. ]
  40813. ))
  40814. characterMakers.push(() => makeCharacter(
  40815. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40816. {
  40817. front: {
  40818. height: math.unit(6 + 2/12, "feet"),
  40819. weight: math.unit(185, "lb"),
  40820. name: "Front",
  40821. image: {
  40822. source: "./media/characters/kayne-ein/front.svg",
  40823. extra: 1780/1560,
  40824. bottom: 81/1861
  40825. }
  40826. },
  40827. },
  40828. [
  40829. {
  40830. name: "Normal",
  40831. height: math.unit(6 + 2/12, "feet"),
  40832. default: true
  40833. },
  40834. {
  40835. name: "Transformation Stage",
  40836. height: math.unit(15, "feet")
  40837. },
  40838. {
  40839. name: "Macro",
  40840. height: math.unit(150, "feet")
  40841. },
  40842. {
  40843. name: "Earth's Shadow",
  40844. height: math.unit(6200, "miles")
  40845. },
  40846. {
  40847. name: "Universal Demon",
  40848. height: math.unit(28e9, "parsecs")
  40849. },
  40850. {
  40851. name: "Multiverse God",
  40852. height: math.unit(3, "multiverses")
  40853. },
  40854. ]
  40855. ))
  40856. characterMakers.push(() => makeCharacter(
  40857. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40858. {
  40859. front: {
  40860. height: math.unit(5 + 5/12, "feet"),
  40861. name: "Front",
  40862. image: {
  40863. source: "./media/characters/fawn/front.svg",
  40864. extra: 1873/1731,
  40865. bottom: 95/1968
  40866. }
  40867. },
  40868. back: {
  40869. height: math.unit(5 + 5/12, "feet"),
  40870. name: "Back",
  40871. image: {
  40872. source: "./media/characters/fawn/back.svg",
  40873. extra: 1813/1700,
  40874. bottom: 14/1827
  40875. }
  40876. },
  40877. hoof: {
  40878. height: math.unit(1.45, "feet"),
  40879. name: "Hoof",
  40880. image: {
  40881. source: "./media/characters/fawn/hoof.svg"
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Normal",
  40888. height: math.unit(5 + 5/12, "feet"),
  40889. default: true
  40890. },
  40891. ]
  40892. ))
  40893. characterMakers.push(() => makeCharacter(
  40894. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40895. {
  40896. front: {
  40897. height: math.unit(2 + 5/12, "feet"),
  40898. name: "Front",
  40899. image: {
  40900. source: "./media/characters/orion/front.svg",
  40901. extra: 1366/1304,
  40902. bottom: 43/1409
  40903. }
  40904. },
  40905. paw: {
  40906. height: math.unit(0.52, "feet"),
  40907. name: "Paw",
  40908. image: {
  40909. source: "./media/characters/orion/paw.svg"
  40910. }
  40911. },
  40912. },
  40913. [
  40914. {
  40915. name: "Normal",
  40916. height: math.unit(2 + 5/12, "feet"),
  40917. default: true
  40918. },
  40919. ]
  40920. ))
  40921. characterMakers.push(() => makeCharacter(
  40922. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40923. {
  40924. front: {
  40925. height: math.unit(5 + 10/12, "feet"),
  40926. name: "Front",
  40927. image: {
  40928. source: "./media/characters/vera/front.svg",
  40929. extra: 1680/1575,
  40930. bottom: 49/1729
  40931. }
  40932. },
  40933. back: {
  40934. height: math.unit(5 + 10/12, "feet"),
  40935. name: "Back",
  40936. image: {
  40937. source: "./media/characters/vera/back.svg",
  40938. extra: 1700/1588,
  40939. bottom: 18/1718
  40940. }
  40941. },
  40942. arcanine: {
  40943. height: math.unit(6 + 8/12, "feet"),
  40944. name: "Arcanine",
  40945. image: {
  40946. source: "./media/characters/vera/arcanine.svg",
  40947. extra: 1590/1511,
  40948. bottom: 71/1661
  40949. }
  40950. },
  40951. maw: {
  40952. height: math.unit(0.82, "feet"),
  40953. name: "Maw",
  40954. image: {
  40955. source: "./media/characters/vera/maw.svg"
  40956. }
  40957. },
  40958. mawArcanine: {
  40959. height: math.unit(0.97, "feet"),
  40960. name: "Maw (Arcanine)",
  40961. image: {
  40962. source: "./media/characters/vera/maw-arcanine.svg"
  40963. }
  40964. },
  40965. paw: {
  40966. height: math.unit(0.75, "feet"),
  40967. name: "Paw",
  40968. image: {
  40969. source: "./media/characters/vera/paw.svg"
  40970. }
  40971. },
  40972. pawprint: {
  40973. height: math.unit(0.52, "feet"),
  40974. name: "Pawprint",
  40975. image: {
  40976. source: "./media/characters/vera/pawprint.svg"
  40977. }
  40978. },
  40979. },
  40980. [
  40981. {
  40982. name: "Normal",
  40983. height: math.unit(5 + 10/12, "feet"),
  40984. default: true
  40985. },
  40986. {
  40987. name: "Macro",
  40988. height: math.unit(75, "feet")
  40989. },
  40990. ]
  40991. ))
  40992. characterMakers.push(() => makeCharacter(
  40993. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40994. {
  40995. front: {
  40996. height: math.unit(4, "feet"),
  40997. weight: math.unit(40, "lb"),
  40998. name: "Front",
  40999. image: {
  41000. source: "./media/characters/orvan-rabbit/front.svg",
  41001. extra: 1896/1642,
  41002. bottom: 29/1925
  41003. }
  41004. },
  41005. },
  41006. [
  41007. {
  41008. name: "Normal",
  41009. height: math.unit(4, "feet"),
  41010. default: true
  41011. },
  41012. ]
  41013. ))
  41014. characterMakers.push(() => makeCharacter(
  41015. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41016. {
  41017. front: {
  41018. height: math.unit(6, "feet"),
  41019. weight: math.unit(168, "lb"),
  41020. name: "Front",
  41021. image: {
  41022. source: "./media/characters/lisa/front.svg",
  41023. extra: 2065/1867,
  41024. bottom: 46/2111
  41025. }
  41026. },
  41027. back: {
  41028. height: math.unit(6, "feet"),
  41029. weight: math.unit(168, "lb"),
  41030. name: "Back",
  41031. image: {
  41032. source: "./media/characters/lisa/back.svg",
  41033. extra: 1982/1838,
  41034. bottom: 29/2011
  41035. }
  41036. },
  41037. maw: {
  41038. height: math.unit(0.81, "feet"),
  41039. name: "Maw",
  41040. image: {
  41041. source: "./media/characters/lisa/maw.svg"
  41042. }
  41043. },
  41044. paw: {
  41045. height: math.unit(0.9, "feet"),
  41046. name: "Paw",
  41047. image: {
  41048. source: "./media/characters/lisa/paw.svg"
  41049. }
  41050. },
  41051. caribousune: {
  41052. height: math.unit(7 + 2/12, "feet"),
  41053. weight: math.unit(268, "lb"),
  41054. name: "Caribousune",
  41055. image: {
  41056. source: "./media/characters/lisa/caribousune.svg",
  41057. extra: 1843/1633,
  41058. bottom: 29/1872
  41059. }
  41060. },
  41061. frontCaribousune: {
  41062. height: math.unit(7 + 2/12, "feet"),
  41063. weight: math.unit(268, "lb"),
  41064. name: "Front (Caribousune)",
  41065. image: {
  41066. source: "./media/characters/lisa/front-caribousune.svg",
  41067. extra: 1818/1638,
  41068. bottom: 52/1870
  41069. }
  41070. },
  41071. sideCaribousune: {
  41072. height: math.unit(7 + 2/12, "feet"),
  41073. weight: math.unit(268, "lb"),
  41074. name: "Side (Caribousune)",
  41075. image: {
  41076. source: "./media/characters/lisa/side-caribousune.svg",
  41077. extra: 1851/1635,
  41078. bottom: 16/1867
  41079. }
  41080. },
  41081. backCaribousune: {
  41082. height: math.unit(7 + 2/12, "feet"),
  41083. weight: math.unit(268, "lb"),
  41084. name: "Back (Caribousune)",
  41085. image: {
  41086. source: "./media/characters/lisa/back-caribousune.svg",
  41087. extra: 1801/1604,
  41088. bottom: 44/1845
  41089. }
  41090. },
  41091. caribou: {
  41092. height: math.unit(7 + 2/12, "feet"),
  41093. weight: math.unit(268, "lb"),
  41094. name: "Caribou",
  41095. image: {
  41096. source: "./media/characters/lisa/caribou.svg",
  41097. extra: 1843/1633,
  41098. bottom: 29/1872
  41099. }
  41100. },
  41101. frontCaribou: {
  41102. height: math.unit(7 + 2/12, "feet"),
  41103. weight: math.unit(268, "lb"),
  41104. name: "Front (Caribou)",
  41105. image: {
  41106. source: "./media/characters/lisa/front-caribou.svg",
  41107. extra: 1818/1638,
  41108. bottom: 52/1870
  41109. }
  41110. },
  41111. sideCaribou: {
  41112. height: math.unit(7 + 2/12, "feet"),
  41113. weight: math.unit(268, "lb"),
  41114. name: "Side (Caribou)",
  41115. image: {
  41116. source: "./media/characters/lisa/side-caribou.svg",
  41117. extra: 1851/1635,
  41118. bottom: 16/1867
  41119. }
  41120. },
  41121. backCaribou: {
  41122. height: math.unit(7 + 2/12, "feet"),
  41123. weight: math.unit(268, "lb"),
  41124. name: "Back (Caribou)",
  41125. image: {
  41126. source: "./media/characters/lisa/back-caribou.svg",
  41127. extra: 1801/1604,
  41128. bottom: 44/1845
  41129. }
  41130. },
  41131. mawCaribou: {
  41132. height: math.unit(1.45, "feet"),
  41133. name: "Maw (Caribou)",
  41134. image: {
  41135. source: "./media/characters/lisa/maw-caribou.svg"
  41136. }
  41137. },
  41138. mawCaribousune: {
  41139. height: math.unit(1.45, "feet"),
  41140. name: "Maw (Caribousune)",
  41141. image: {
  41142. source: "./media/characters/lisa/maw-caribousune.svg"
  41143. }
  41144. },
  41145. pawCaribousune: {
  41146. height: math.unit(1.61, "feet"),
  41147. name: "Paw (Caribou)",
  41148. image: {
  41149. source: "./media/characters/lisa/paw-caribousune.svg"
  41150. }
  41151. },
  41152. },
  41153. [
  41154. {
  41155. name: "Normal",
  41156. height: math.unit(6, "feet")
  41157. },
  41158. {
  41159. name: "God Size",
  41160. height: math.unit(72, "feet"),
  41161. default: true
  41162. },
  41163. {
  41164. name: "Towering",
  41165. height: math.unit(288, "feet")
  41166. },
  41167. {
  41168. name: "City Size",
  41169. height: math.unit(48384, "feet")
  41170. },
  41171. {
  41172. name: "Continental",
  41173. height: math.unit(4200, "miles")
  41174. },
  41175. {
  41176. name: "Planet Eater",
  41177. height: math.unit(42, "earths")
  41178. },
  41179. {
  41180. name: "Star Swallower",
  41181. height: math.unit(42, "solarradii")
  41182. },
  41183. {
  41184. name: "System Swallower",
  41185. height: math.unit(84000, "AU")
  41186. },
  41187. {
  41188. name: "Galaxy Gobbler",
  41189. height: math.unit(42, "galaxies")
  41190. },
  41191. {
  41192. name: "Universe Devourer",
  41193. height: math.unit(42, "universes")
  41194. },
  41195. {
  41196. name: "Multiverse Muncher",
  41197. height: math.unit(42, "multiverses")
  41198. },
  41199. ]
  41200. ))
  41201. characterMakers.push(() => makeCharacter(
  41202. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41203. {
  41204. front: {
  41205. height: math.unit(36, "feet"),
  41206. name: "Front",
  41207. image: {
  41208. source: "./media/characters/shadow-rat/front.svg",
  41209. extra: 1845/1758,
  41210. bottom: 83/1928
  41211. }
  41212. },
  41213. },
  41214. [
  41215. {
  41216. name: "Macro",
  41217. height: math.unit(36, "feet"),
  41218. default: true
  41219. },
  41220. ]
  41221. ))
  41222. characterMakers.push(() => makeCharacter(
  41223. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41224. {
  41225. side: {
  41226. height: math.unit(8, "feet"),
  41227. weight: math.unit(2630, "lb"),
  41228. name: "Side",
  41229. image: {
  41230. source: "./media/characters/torallia/side.svg",
  41231. extra: 2164/2021,
  41232. bottom: 371/2535
  41233. }
  41234. },
  41235. },
  41236. [
  41237. {
  41238. name: "Mortal Interaction",
  41239. height: math.unit(8, "feet")
  41240. },
  41241. {
  41242. name: "Natural",
  41243. height: math.unit(24, "feet"),
  41244. default: true
  41245. },
  41246. {
  41247. name: "Giant",
  41248. height: math.unit(80, "feet")
  41249. },
  41250. {
  41251. name: "Kaiju",
  41252. height: math.unit(240, "feet")
  41253. },
  41254. {
  41255. name: "Macro",
  41256. height: math.unit(800, "feet")
  41257. },
  41258. {
  41259. name: "Macro+",
  41260. height: math.unit(2400, "feet")
  41261. },
  41262. {
  41263. name: "Macro++",
  41264. height: math.unit(8000, "feet")
  41265. },
  41266. {
  41267. name: "City-Crushing",
  41268. height: math.unit(24000, "feet")
  41269. },
  41270. {
  41271. name: "Mountain-Mashing",
  41272. height: math.unit(80000, "feet")
  41273. },
  41274. {
  41275. name: "District Demolisher",
  41276. height: math.unit(240000, "feet")
  41277. },
  41278. {
  41279. name: "Tri-County Terror",
  41280. height: math.unit(800000, "feet")
  41281. },
  41282. {
  41283. name: "State Smasher",
  41284. height: math.unit(2.4e6, "feet")
  41285. },
  41286. {
  41287. name: "Nation Nemesis",
  41288. height: math.unit(8e6, "feet")
  41289. },
  41290. {
  41291. name: "Continent Cracker",
  41292. height: math.unit(2.4e7, "feet")
  41293. },
  41294. {
  41295. name: "Planet-Pillaging",
  41296. height: math.unit(8e7, "feet")
  41297. },
  41298. {
  41299. name: "Earth-Eclipsing",
  41300. height: math.unit(2.4e8, "feet")
  41301. },
  41302. {
  41303. name: "Jovian-Jostling",
  41304. height: math.unit(8e8, "feet")
  41305. },
  41306. {
  41307. name: "Gas Giant Gulper",
  41308. height: math.unit(2.4e9, "feet")
  41309. },
  41310. {
  41311. name: "Astral Annihilator",
  41312. height: math.unit(8e9, "feet")
  41313. },
  41314. {
  41315. name: "Celestial Conqueror",
  41316. height: math.unit(2.4e10, "feet")
  41317. },
  41318. {
  41319. name: "Sol-Swallowing",
  41320. height: math.unit(8e10, "feet")
  41321. },
  41322. {
  41323. name: "Hunter of the Heavens",
  41324. height: math.unit(2.4e13, "feet")
  41325. },
  41326. ]
  41327. ))
  41328. characterMakers.push(() => makeCharacter(
  41329. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41330. {
  41331. front: {
  41332. height: math.unit(6 + 8/12, "feet"),
  41333. weight: math.unit(250, "kilograms"),
  41334. volume: math.unit(28, "liters"),
  41335. name: "Front",
  41336. image: {
  41337. source: "./media/characters/rebecca-pawlson/front.svg",
  41338. extra: 1737/1596,
  41339. bottom: 107/1844
  41340. }
  41341. },
  41342. back: {
  41343. height: math.unit(6 + 8/12, "feet"),
  41344. weight: math.unit(250, "kilograms"),
  41345. volume: math.unit(28, "liters"),
  41346. name: "Back",
  41347. image: {
  41348. source: "./media/characters/rebecca-pawlson/back.svg",
  41349. extra: 1702/1523,
  41350. bottom: 86/1788
  41351. }
  41352. },
  41353. },
  41354. [
  41355. {
  41356. name: "Normal",
  41357. height: math.unit(6 + 8/12, "feet")
  41358. },
  41359. {
  41360. name: "Mini Macro",
  41361. height: math.unit(10, "feet"),
  41362. default: true
  41363. },
  41364. {
  41365. name: "Macro",
  41366. height: math.unit(100, "feet")
  41367. },
  41368. {
  41369. name: "Mega Macro",
  41370. height: math.unit(2500, "feet")
  41371. },
  41372. {
  41373. name: "Giga Macro",
  41374. height: math.unit(50, "miles")
  41375. },
  41376. ]
  41377. ))
  41378. characterMakers.push(() => makeCharacter(
  41379. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41380. {
  41381. front: {
  41382. height: math.unit(7 + 6/12, "feet"),
  41383. weight: math.unit(600, "lb"),
  41384. name: "Front",
  41385. image: {
  41386. source: "./media/characters/moxie-nova/front.svg",
  41387. extra: 1734/1652,
  41388. bottom: 41/1775
  41389. }
  41390. },
  41391. },
  41392. [
  41393. {
  41394. name: "Normal",
  41395. height: math.unit(7 + 6/12, "feet"),
  41396. default: true
  41397. },
  41398. ]
  41399. ))
  41400. characterMakers.push(() => makeCharacter(
  41401. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41402. {
  41403. goat: {
  41404. height: math.unit(4, "feet"),
  41405. weight: math.unit(180, "lb"),
  41406. name: "Goat",
  41407. image: {
  41408. source: "./media/characters/tiffany/goat.svg",
  41409. extra: 1845/1595,
  41410. bottom: 106/1951
  41411. }
  41412. },
  41413. front: {
  41414. height: math.unit(5, "feet"),
  41415. weight: math.unit(150, "lb"),
  41416. name: "Foxcoon",
  41417. image: {
  41418. source: "./media/characters/tiffany/foxcoon.svg",
  41419. extra: 1941/1845,
  41420. bottom: 58/1999
  41421. }
  41422. },
  41423. },
  41424. [
  41425. {
  41426. name: "Normal",
  41427. height: math.unit(5, "feet"),
  41428. default: true
  41429. },
  41430. ]
  41431. ))
  41432. characterMakers.push(() => makeCharacter(
  41433. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41434. {
  41435. front: {
  41436. height: math.unit(8, "feet"),
  41437. weight: math.unit(300, "lb"),
  41438. name: "Front",
  41439. image: {
  41440. source: "./media/characters/raxinath/front.svg",
  41441. extra: 1407/1309,
  41442. bottom: 39/1446
  41443. }
  41444. },
  41445. back: {
  41446. height: math.unit(8, "feet"),
  41447. weight: math.unit(300, "lb"),
  41448. name: "Back",
  41449. image: {
  41450. source: "./media/characters/raxinath/back.svg",
  41451. extra: 1405/1315,
  41452. bottom: 9/1414
  41453. }
  41454. },
  41455. },
  41456. [
  41457. {
  41458. name: "Speck",
  41459. height: math.unit(0.5, "nm")
  41460. },
  41461. {
  41462. name: "Micro",
  41463. height: math.unit(3, "inches")
  41464. },
  41465. {
  41466. name: "Kobold",
  41467. height: math.unit(3, "feet")
  41468. },
  41469. {
  41470. name: "Normal",
  41471. height: math.unit(8, "feet"),
  41472. default: true
  41473. },
  41474. {
  41475. name: "Giant",
  41476. height: math.unit(50, "feet")
  41477. },
  41478. {
  41479. name: "Macro",
  41480. height: math.unit(1000, "feet")
  41481. },
  41482. {
  41483. name: "Megamacro",
  41484. height: math.unit(1, "mile")
  41485. },
  41486. ]
  41487. ))
  41488. characterMakers.push(() => makeCharacter(
  41489. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41490. {
  41491. front: {
  41492. height: math.unit(10, "feet"),
  41493. weight: math.unit(1442, "lb"),
  41494. name: "Front",
  41495. image: {
  41496. source: "./media/characters/mal-dragon/front.svg",
  41497. extra: 1515/1444,
  41498. bottom: 113/1628
  41499. }
  41500. },
  41501. back: {
  41502. height: math.unit(10, "feet"),
  41503. weight: math.unit(1442, "lb"),
  41504. name: "Back",
  41505. image: {
  41506. source: "./media/characters/mal-dragon/back.svg",
  41507. extra: 1527/1434,
  41508. bottom: 25/1552
  41509. }
  41510. },
  41511. },
  41512. [
  41513. {
  41514. name: "Mortal Interaction",
  41515. height: math.unit(10, "feet"),
  41516. default: true
  41517. },
  41518. {
  41519. name: "Large",
  41520. height: math.unit(30, "feet")
  41521. },
  41522. {
  41523. name: "Kaiju",
  41524. height: math.unit(300, "feet")
  41525. },
  41526. {
  41527. name: "Megamacro",
  41528. height: math.unit(10000, "feet")
  41529. },
  41530. {
  41531. name: "Continent Cracker",
  41532. height: math.unit(30000000, "feet")
  41533. },
  41534. {
  41535. name: "Sol-Swallowing",
  41536. height: math.unit(1e11, "feet")
  41537. },
  41538. {
  41539. name: "Light Universal",
  41540. height: math.unit(5, "universes")
  41541. },
  41542. {
  41543. name: "Universe Atoms",
  41544. height: math.unit(1.829e9, "universes")
  41545. },
  41546. {
  41547. name: "Light Multiversal",
  41548. height: math.unit(5, "multiverses")
  41549. },
  41550. {
  41551. name: "Multiverse Atoms",
  41552. height: math.unit(1.829e9, "multiverses")
  41553. },
  41554. {
  41555. name: "Fabric of Time",
  41556. height: math.unit(1e262, "multiverses")
  41557. },
  41558. ]
  41559. ))
  41560. characterMakers.push(() => makeCharacter(
  41561. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41562. {
  41563. front: {
  41564. height: math.unit(9, "feet"),
  41565. weight: math.unit(1050, "lb"),
  41566. name: "Front",
  41567. image: {
  41568. source: "./media/characters/tabitha/front.svg",
  41569. extra: 2083/1994,
  41570. bottom: 68/2151
  41571. }
  41572. },
  41573. },
  41574. [
  41575. {
  41576. name: "Baseline",
  41577. height: math.unit(9, "feet"),
  41578. default: true
  41579. },
  41580. {
  41581. name: "Giant",
  41582. height: math.unit(90, "feet")
  41583. },
  41584. {
  41585. name: "Macro",
  41586. height: math.unit(900, "feet")
  41587. },
  41588. {
  41589. name: "Megamacro",
  41590. height: math.unit(9000, "feet")
  41591. },
  41592. {
  41593. name: "City-Crushing",
  41594. height: math.unit(27000, "feet")
  41595. },
  41596. {
  41597. name: "Mountain-Mashing",
  41598. height: math.unit(90000, "feet")
  41599. },
  41600. {
  41601. name: "Nation Nemesis",
  41602. height: math.unit(9e6, "feet")
  41603. },
  41604. {
  41605. name: "Continent Cracker",
  41606. height: math.unit(27e6, "feet")
  41607. },
  41608. {
  41609. name: "Earth-Eclipsing",
  41610. height: math.unit(2.7e8, "feet")
  41611. },
  41612. {
  41613. name: "Gas Giant Gulper",
  41614. height: math.unit(2.7e9, "feet")
  41615. },
  41616. {
  41617. name: "Sol-Swallowing",
  41618. height: math.unit(9e10, "feet")
  41619. },
  41620. {
  41621. name: "Galaxy Gulper",
  41622. height: math.unit(9, "galaxies")
  41623. },
  41624. {
  41625. name: "Cosmos Churner",
  41626. height: math.unit(9, "universes")
  41627. },
  41628. ]
  41629. ))
  41630. characterMakers.push(() => makeCharacter(
  41631. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41632. {
  41633. front: {
  41634. height: math.unit(160, "cm"),
  41635. weight: math.unit(55, "kg"),
  41636. name: "Front",
  41637. image: {
  41638. source: "./media/characters/tow/front.svg",
  41639. extra: 1751/1722,
  41640. bottom: 74/1825
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Norm",
  41647. height: math.unit(160, "cm")
  41648. },
  41649. {
  41650. name: "Casual",
  41651. height: math.unit(3200, "m"),
  41652. default: true
  41653. },
  41654. {
  41655. name: "Show-Off",
  41656. height: math.unit(160, "km")
  41657. },
  41658. ]
  41659. ))
  41660. characterMakers.push(() => makeCharacter(
  41661. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41662. {
  41663. front: {
  41664. height: math.unit(7 + 11/12, "feet"),
  41665. weight: math.unit(342.8, "lb"),
  41666. name: "Front",
  41667. image: {
  41668. source: "./media/characters/vivian-orca-dragon/front.svg",
  41669. extra: 1890/1865,
  41670. bottom: 28/1918
  41671. }
  41672. },
  41673. },
  41674. [
  41675. {
  41676. name: "Micro",
  41677. height: math.unit(5, "inches")
  41678. },
  41679. {
  41680. name: "Normal",
  41681. height: math.unit(7 + 11/12, "feet"),
  41682. default: true
  41683. },
  41684. {
  41685. name: "Macro",
  41686. height: math.unit(395 + 7/12, "feet")
  41687. },
  41688. ]
  41689. ))
  41690. characterMakers.push(() => makeCharacter(
  41691. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41692. {
  41693. side: {
  41694. height: math.unit(10, "feet"),
  41695. weight: math.unit(1442, "lb"),
  41696. name: "Side",
  41697. image: {
  41698. source: "./media/characters/lotherakon/side.svg",
  41699. extra: 1604/1497,
  41700. bottom: 89/1693
  41701. }
  41702. },
  41703. },
  41704. [
  41705. {
  41706. name: "Mortal Interaction",
  41707. height: math.unit(10, "feet")
  41708. },
  41709. {
  41710. name: "Large",
  41711. height: math.unit(30, "feet"),
  41712. default: true
  41713. },
  41714. {
  41715. name: "Giant",
  41716. height: math.unit(100, "feet")
  41717. },
  41718. {
  41719. name: "Kaiju",
  41720. height: math.unit(300, "feet")
  41721. },
  41722. {
  41723. name: "Macro",
  41724. height: math.unit(1000, "feet")
  41725. },
  41726. {
  41727. name: "Macro+",
  41728. height: math.unit(3000, "feet")
  41729. },
  41730. {
  41731. name: "Megamacro",
  41732. height: math.unit(10000, "feet")
  41733. },
  41734. {
  41735. name: "City-Crushing",
  41736. height: math.unit(30000, "feet")
  41737. },
  41738. {
  41739. name: "Continent Cracker",
  41740. height: math.unit(30e6, "feet")
  41741. },
  41742. {
  41743. name: "Earth Eclipsing",
  41744. height: math.unit(3e8, "feet")
  41745. },
  41746. {
  41747. name: "Gas Giant Gulper",
  41748. height: math.unit(3e9, "feet")
  41749. },
  41750. {
  41751. name: "Sol-Swallowing",
  41752. height: math.unit(1e11, "feet")
  41753. },
  41754. {
  41755. name: "System Swallower",
  41756. height: math.unit(3e14, "feet")
  41757. },
  41758. {
  41759. name: "Galaxy Gulper",
  41760. height: math.unit(10, "galaxies")
  41761. },
  41762. {
  41763. name: "Light Universal",
  41764. height: math.unit(5, "universes")
  41765. },
  41766. {
  41767. name: "Universe Palm",
  41768. height: math.unit(20, "universes")
  41769. },
  41770. {
  41771. name: "Light Multiversal",
  41772. height: math.unit(5, "multiverses")
  41773. },
  41774. {
  41775. name: "Multiverse Palm",
  41776. height: math.unit(20, "multiverses")
  41777. },
  41778. {
  41779. name: "Inferno Incarnate",
  41780. height: math.unit(1e7, "multiverses")
  41781. },
  41782. ]
  41783. ))
  41784. characterMakers.push(() => makeCharacter(
  41785. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41786. {
  41787. front: {
  41788. height: math.unit(8, "feet"),
  41789. weight: math.unit(1200, "lb"),
  41790. name: "Front",
  41791. image: {
  41792. source: "./media/characters/malithee/front.svg",
  41793. extra: 1675/1640,
  41794. bottom: 162/1837
  41795. }
  41796. },
  41797. },
  41798. [
  41799. {
  41800. name: "Mortal Interaction",
  41801. height: math.unit(8, "feet"),
  41802. default: true
  41803. },
  41804. {
  41805. name: "Large",
  41806. height: math.unit(24, "feet")
  41807. },
  41808. {
  41809. name: "Kaiju",
  41810. height: math.unit(240, "feet")
  41811. },
  41812. {
  41813. name: "Megamacro",
  41814. height: math.unit(8000, "feet")
  41815. },
  41816. {
  41817. name: "Continent Cracker",
  41818. height: math.unit(24e6, "feet")
  41819. },
  41820. {
  41821. name: "Earth-Eclipsing",
  41822. height: math.unit(2.4e8, "feet")
  41823. },
  41824. {
  41825. name: "Sol-Swallowing",
  41826. height: math.unit(8e10, "feet")
  41827. },
  41828. {
  41829. name: "Galaxy Gulper",
  41830. height: math.unit(8, "galaxies")
  41831. },
  41832. {
  41833. name: "Light Universal",
  41834. height: math.unit(4, "universes")
  41835. },
  41836. {
  41837. name: "Universe Atoms",
  41838. height: math.unit(1.829e9, "universes")
  41839. },
  41840. {
  41841. name: "Light Multiversal",
  41842. height: math.unit(4, "multiverses")
  41843. },
  41844. {
  41845. name: "Multiverse Atoms",
  41846. height: math.unit(1.829e9, "multiverses")
  41847. },
  41848. {
  41849. name: "Nigh-Omnipresence",
  41850. height: math.unit(8e261, "multiverses")
  41851. },
  41852. ]
  41853. ))
  41854. characterMakers.push(() => makeCharacter(
  41855. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41856. {
  41857. front: {
  41858. height: math.unit(10, "feet"),
  41859. weight: math.unit(1500, "lb"),
  41860. name: "Front",
  41861. image: {
  41862. source: "./media/characters/miles-thestia/front.svg",
  41863. extra: 1812/1727,
  41864. bottom: 86/1898
  41865. }
  41866. },
  41867. back: {
  41868. height: math.unit(10, "feet"),
  41869. weight: math.unit(1500, "lb"),
  41870. name: "Back",
  41871. image: {
  41872. source: "./media/characters/miles-thestia/back.svg",
  41873. extra: 1799/1690,
  41874. bottom: 47/1846
  41875. }
  41876. },
  41877. frontNsfw: {
  41878. height: math.unit(10, "feet"),
  41879. weight: math.unit(1500, "lb"),
  41880. name: "Front (NSFW)",
  41881. image: {
  41882. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41883. extra: 1812/1727,
  41884. bottom: 86/1898
  41885. }
  41886. },
  41887. },
  41888. [
  41889. {
  41890. name: "Mini-Macro",
  41891. height: math.unit(10, "feet"),
  41892. default: true
  41893. },
  41894. ]
  41895. ))
  41896. characterMakers.push(() => makeCharacter(
  41897. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41898. {
  41899. front: {
  41900. height: math.unit(25, "feet"),
  41901. name: "Front",
  41902. image: {
  41903. source: "./media/characters/titan-s-wulf/front.svg",
  41904. extra: 1560/1484,
  41905. bottom: 76/1636
  41906. }
  41907. },
  41908. },
  41909. [
  41910. {
  41911. name: "Smallest",
  41912. height: math.unit(25, "feet"),
  41913. default: true
  41914. },
  41915. {
  41916. name: "Normal",
  41917. height: math.unit(200, "feet")
  41918. },
  41919. {
  41920. name: "Macro",
  41921. height: math.unit(200000, "feet")
  41922. },
  41923. {
  41924. name: "Multiversal Original",
  41925. height: math.unit(10000, "multiverses")
  41926. },
  41927. ]
  41928. ))
  41929. characterMakers.push(() => makeCharacter(
  41930. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41931. {
  41932. front: {
  41933. height: math.unit(8, "feet"),
  41934. weight: math.unit(553, "lb"),
  41935. name: "Front",
  41936. image: {
  41937. source: "./media/characters/tawendeh/front.svg",
  41938. extra: 2365/2268,
  41939. bottom: 83/2448
  41940. }
  41941. },
  41942. frontClothed: {
  41943. height: math.unit(8, "feet"),
  41944. weight: math.unit(553, "lb"),
  41945. name: "Front (Clothed)",
  41946. image: {
  41947. source: "./media/characters/tawendeh/front-clothed.svg",
  41948. extra: 2365/2268,
  41949. bottom: 83/2448
  41950. }
  41951. },
  41952. back: {
  41953. height: math.unit(8, "feet"),
  41954. weight: math.unit(553, "lb"),
  41955. name: "Back",
  41956. image: {
  41957. source: "./media/characters/tawendeh/back.svg",
  41958. extra: 2397/2294,
  41959. bottom: 42/2439
  41960. }
  41961. },
  41962. },
  41963. [
  41964. {
  41965. name: "Mortal Interaction",
  41966. height: math.unit(8, "feet"),
  41967. default: true
  41968. },
  41969. {
  41970. name: "Giant",
  41971. height: math.unit(80, "feet")
  41972. },
  41973. {
  41974. name: "Macro",
  41975. height: math.unit(800, "feet")
  41976. },
  41977. {
  41978. name: "Megamacro",
  41979. height: math.unit(8000, "feet")
  41980. },
  41981. {
  41982. name: "City-Crushing",
  41983. height: math.unit(24000, "feet")
  41984. },
  41985. {
  41986. name: "Mountain-Mashing",
  41987. height: math.unit(80000, "feet")
  41988. },
  41989. {
  41990. name: "Nation Nemesis",
  41991. height: math.unit(8e6, "feet")
  41992. },
  41993. {
  41994. name: "Continent Cracker",
  41995. height: math.unit(24e6, "feet")
  41996. },
  41997. {
  41998. name: "Earth-Eclipsing",
  41999. height: math.unit(2.4e8, "feet")
  42000. },
  42001. {
  42002. name: "Gas Giant Gulper",
  42003. height: math.unit(2.4e9, "feet")
  42004. },
  42005. {
  42006. name: "Sol-Swallowing",
  42007. height: math.unit(8e10, "feet")
  42008. },
  42009. {
  42010. name: "Galaxy Gulper",
  42011. height: math.unit(8, "galaxies")
  42012. },
  42013. {
  42014. name: "Cosmos Churner",
  42015. height: math.unit(8, "universes")
  42016. },
  42017. {
  42018. name: "Omnipotent Otter",
  42019. height: math.unit(80, "universes")
  42020. },
  42021. ]
  42022. ))
  42023. characterMakers.push(() => makeCharacter(
  42024. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42025. {
  42026. front: {
  42027. height: math.unit(2.6, "meters"),
  42028. weight: math.unit(900, "kg"),
  42029. name: "Front",
  42030. image: {
  42031. source: "./media/characters/neesha/front.svg",
  42032. extra: 1803/1653,
  42033. bottom: 128/1931
  42034. }
  42035. },
  42036. },
  42037. [
  42038. {
  42039. name: "Normal",
  42040. height: math.unit(2.6, "meters"),
  42041. default: true
  42042. },
  42043. {
  42044. name: "Macro",
  42045. height: math.unit(50, "meters")
  42046. },
  42047. ]
  42048. ))
  42049. characterMakers.push(() => makeCharacter(
  42050. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42051. {
  42052. front: {
  42053. height: math.unit(5, "feet"),
  42054. weight: math.unit(185, "lb"),
  42055. name: "Front",
  42056. image: {
  42057. source: "./media/characters/kyera/front.svg",
  42058. extra: 1875/1790,
  42059. bottom: 96/1971
  42060. }
  42061. },
  42062. },
  42063. [
  42064. {
  42065. name: "Normal",
  42066. height: math.unit(5, "feet"),
  42067. default: true
  42068. },
  42069. ]
  42070. ))
  42071. characterMakers.push(() => makeCharacter(
  42072. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42073. {
  42074. front: {
  42075. height: math.unit(7 + 6/12, "feet"),
  42076. weight: math.unit(540, "lb"),
  42077. name: "Front",
  42078. image: {
  42079. source: "./media/characters/yuko/front.svg",
  42080. extra: 1282/1222,
  42081. bottom: 101/1383
  42082. }
  42083. },
  42084. frontClothed: {
  42085. height: math.unit(7 + 6/12, "feet"),
  42086. weight: math.unit(540, "lb"),
  42087. name: "Front (Clothed)",
  42088. image: {
  42089. source: "./media/characters/yuko/front-clothed.svg",
  42090. extra: 1282/1222,
  42091. bottom: 101/1383
  42092. }
  42093. },
  42094. },
  42095. [
  42096. {
  42097. name: "Normal",
  42098. height: math.unit(7 + 6/12, "feet"),
  42099. default: true
  42100. },
  42101. {
  42102. name: "Macro",
  42103. height: math.unit(26 + 9/12, "feet")
  42104. },
  42105. {
  42106. name: "Megamacro",
  42107. height: math.unit(300, "feet")
  42108. },
  42109. {
  42110. name: "Gigamacro",
  42111. height: math.unit(5000, "feet")
  42112. },
  42113. {
  42114. name: "Planetary",
  42115. height: math.unit(10000, "miles")
  42116. },
  42117. ]
  42118. ))
  42119. characterMakers.push(() => makeCharacter(
  42120. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42121. {
  42122. front: {
  42123. height: math.unit(8 + 2/12, "feet"),
  42124. weight: math.unit(600, "lb"),
  42125. name: "Front",
  42126. image: {
  42127. source: "./media/characters/deam-nitrel/front.svg",
  42128. extra: 1308/1234,
  42129. bottom: 125/1433
  42130. }
  42131. },
  42132. },
  42133. [
  42134. {
  42135. name: "Normal",
  42136. height: math.unit(8 + 2/12, "feet"),
  42137. default: true
  42138. },
  42139. ]
  42140. ))
  42141. characterMakers.push(() => makeCharacter(
  42142. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42143. {
  42144. front: {
  42145. height: math.unit(6.1, "feet"),
  42146. weight: math.unit(180, "lb"),
  42147. name: "Front",
  42148. image: {
  42149. source: "./media/characters/skyress/front.svg",
  42150. extra: 1045/915,
  42151. bottom: 28/1073
  42152. }
  42153. },
  42154. maw: {
  42155. height: math.unit(1, "feet"),
  42156. name: "Maw",
  42157. image: {
  42158. source: "./media/characters/skyress/maw.svg"
  42159. }
  42160. },
  42161. },
  42162. [
  42163. {
  42164. name: "Normal",
  42165. height: math.unit(6.1, "feet"),
  42166. default: true
  42167. },
  42168. {
  42169. name: "Macro",
  42170. height: math.unit(200, "feet")
  42171. },
  42172. ]
  42173. ))
  42174. characterMakers.push(() => makeCharacter(
  42175. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42176. {
  42177. front: {
  42178. height: math.unit(4 + 2/12, "feet"),
  42179. weight: math.unit(40, "kg"),
  42180. name: "Front",
  42181. image: {
  42182. source: "./media/characters/amethyst-jones/front.svg",
  42183. extra: 1220/1150,
  42184. bottom: 101/1321
  42185. }
  42186. },
  42187. },
  42188. [
  42189. {
  42190. name: "Normal",
  42191. height: math.unit(4 + 2/12, "feet"),
  42192. default: true
  42193. },
  42194. ]
  42195. ))
  42196. characterMakers.push(() => makeCharacter(
  42197. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42198. {
  42199. front: {
  42200. height: math.unit(1.7, "m"),
  42201. weight: math.unit(135, "lb"),
  42202. name: "Front",
  42203. image: {
  42204. source: "./media/characters/jade/front.svg",
  42205. extra: 1818/1767,
  42206. bottom: 32/1850
  42207. }
  42208. },
  42209. back: {
  42210. height: math.unit(1.7, "m"),
  42211. weight: math.unit(135, "lb"),
  42212. name: "Back",
  42213. image: {
  42214. source: "./media/characters/jade/back.svg",
  42215. extra: 1869/1809,
  42216. bottom: 35/1904
  42217. }
  42218. },
  42219. hand: {
  42220. height: math.unit(0.24, "m"),
  42221. name: "Hand",
  42222. image: {
  42223. source: "./media/characters/jade/hand.svg"
  42224. }
  42225. },
  42226. foot: {
  42227. height: math.unit(0.263, "m"),
  42228. name: "Foot",
  42229. image: {
  42230. source: "./media/characters/jade/foot.svg"
  42231. }
  42232. },
  42233. dick: {
  42234. height: math.unit(0.47, "m"),
  42235. name: "Dick",
  42236. image: {
  42237. source: "./media/characters/jade/dick.svg"
  42238. }
  42239. },
  42240. },
  42241. [
  42242. {
  42243. name: "Micro",
  42244. height: math.unit(22, "cm")
  42245. },
  42246. {
  42247. name: "Normal",
  42248. height: math.unit(1.7, "m"),
  42249. default: true
  42250. },
  42251. {
  42252. name: "Macro",
  42253. height: math.unit(152, "m")
  42254. },
  42255. ]
  42256. ))
  42257. characterMakers.push(() => makeCharacter(
  42258. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42259. {
  42260. front: {
  42261. height: math.unit(100, "miles"),
  42262. weight: math.unit(20000, "tons"),
  42263. name: "Front",
  42264. image: {
  42265. source: "./media/characters/cookie/front.svg",
  42266. extra: 1125/1070,
  42267. bottom: 30/1155
  42268. }
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Big",
  42274. height: math.unit(50, "feet")
  42275. },
  42276. {
  42277. name: "Macro",
  42278. height: math.unit(100, "miles"),
  42279. default: true
  42280. },
  42281. {
  42282. name: "Megamacro",
  42283. height: math.unit(90000, "miles")
  42284. },
  42285. ]
  42286. ))
  42287. characterMakers.push(() => makeCharacter(
  42288. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42289. {
  42290. front: {
  42291. height: math.unit(6, "feet"),
  42292. weight: math.unit(145, "lb"),
  42293. name: "Front",
  42294. image: {
  42295. source: "./media/characters/farzian/front.svg",
  42296. extra: 1902/1693,
  42297. bottom: 108/2010
  42298. }
  42299. },
  42300. },
  42301. [
  42302. {
  42303. name: "Macro",
  42304. height: math.unit(500, "feet"),
  42305. default: true
  42306. },
  42307. ]
  42308. ))
  42309. characterMakers.push(() => makeCharacter(
  42310. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42311. {
  42312. front: {
  42313. height: math.unit(3 + 6/12, "feet"),
  42314. weight: math.unit(50, "lb"),
  42315. name: "Front",
  42316. image: {
  42317. source: "./media/characters/kimberly-tilson/front.svg",
  42318. extra: 1400/1322,
  42319. bottom: 36/1436
  42320. }
  42321. },
  42322. back: {
  42323. height: math.unit(3 + 6/12, "feet"),
  42324. weight: math.unit(50, "lb"),
  42325. name: "Back",
  42326. image: {
  42327. source: "./media/characters/kimberly-tilson/back.svg",
  42328. extra: 1370/1307,
  42329. bottom: 20/1390
  42330. }
  42331. },
  42332. },
  42333. [
  42334. {
  42335. name: "Normal",
  42336. height: math.unit(3 + 6/12, "feet"),
  42337. default: true
  42338. },
  42339. ]
  42340. ))
  42341. characterMakers.push(() => makeCharacter(
  42342. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42343. {
  42344. front: {
  42345. height: math.unit(1148, "feet"),
  42346. weight: math.unit(34057, "lb"),
  42347. name: "Front",
  42348. image: {
  42349. source: "./media/characters/harthos/front.svg",
  42350. extra: 1391/1339,
  42351. bottom: 13/1404
  42352. }
  42353. },
  42354. },
  42355. [
  42356. {
  42357. name: "Macro",
  42358. height: math.unit(1148, "feet"),
  42359. default: true
  42360. },
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42365. {
  42366. front: {
  42367. height: math.unit(15, "feet"),
  42368. name: "Front",
  42369. image: {
  42370. source: "./media/characters/hypatia/front.svg",
  42371. extra: 1653/1591,
  42372. bottom: 79/1732
  42373. }
  42374. },
  42375. },
  42376. [
  42377. {
  42378. name: "Normal",
  42379. height: math.unit(15, "feet")
  42380. },
  42381. {
  42382. name: "Small",
  42383. height: math.unit(300, "feet")
  42384. },
  42385. {
  42386. name: "Macro",
  42387. height: math.unit(2500, "feet"),
  42388. default: true
  42389. },
  42390. {
  42391. name: "Mega Macro",
  42392. height: math.unit(1500, "miles")
  42393. },
  42394. {
  42395. name: "Giga Macro",
  42396. height: math.unit(1.5e6, "miles")
  42397. },
  42398. ]
  42399. ))
  42400. characterMakers.push(() => makeCharacter(
  42401. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42402. {
  42403. front: {
  42404. height: math.unit(6, "feet"),
  42405. weight: math.unit(200, "lb"),
  42406. name: "Front",
  42407. image: {
  42408. source: "./media/characters/wulver/front.svg",
  42409. extra: 1724/1632,
  42410. bottom: 130/1854
  42411. }
  42412. },
  42413. frontNsfw: {
  42414. height: math.unit(6, "feet"),
  42415. weight: math.unit(200, "lb"),
  42416. name: "Front (NSFW)",
  42417. image: {
  42418. source: "./media/characters/wulver/front-nsfw.svg",
  42419. extra: 1724/1632,
  42420. bottom: 130/1854
  42421. }
  42422. },
  42423. },
  42424. [
  42425. {
  42426. name: "Human-Sized",
  42427. height: math.unit(6, "feet")
  42428. },
  42429. {
  42430. name: "Normal",
  42431. height: math.unit(4, "meters"),
  42432. default: true
  42433. },
  42434. {
  42435. name: "Large",
  42436. height: math.unit(6, "m")
  42437. },
  42438. ]
  42439. ))
  42440. characterMakers.push(() => makeCharacter(
  42441. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42442. {
  42443. front: {
  42444. height: math.unit(7, "feet"),
  42445. name: "Front",
  42446. image: {
  42447. source: "./media/characters/maru/front.svg",
  42448. extra: 1595/1570,
  42449. bottom: 0/1595
  42450. }
  42451. },
  42452. },
  42453. [
  42454. {
  42455. name: "Normal",
  42456. height: math.unit(7, "feet"),
  42457. default: true
  42458. },
  42459. {
  42460. name: "Macro",
  42461. height: math.unit(700, "feet")
  42462. },
  42463. {
  42464. name: "Mega Macro",
  42465. height: math.unit(25, "miles")
  42466. },
  42467. ]
  42468. ))
  42469. characterMakers.push(() => makeCharacter(
  42470. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42471. {
  42472. front: {
  42473. height: math.unit(6, "feet"),
  42474. weight: math.unit(170, "lb"),
  42475. name: "Front",
  42476. image: {
  42477. source: "./media/characters/xenon/front.svg",
  42478. extra: 1376/1305,
  42479. bottom: 56/1432
  42480. }
  42481. },
  42482. back: {
  42483. height: math.unit(6, "feet"),
  42484. weight: math.unit(170, "lb"),
  42485. name: "Back",
  42486. image: {
  42487. source: "./media/characters/xenon/back.svg",
  42488. extra: 1328/1259,
  42489. bottom: 95/1423
  42490. }
  42491. },
  42492. maw: {
  42493. height: math.unit(0.52, "feet"),
  42494. name: "Maw",
  42495. image: {
  42496. source: "./media/characters/xenon/maw.svg"
  42497. }
  42498. },
  42499. handLeft: {
  42500. height: math.unit(0.82 * 169 / 153, "feet"),
  42501. name: "Hand (Left)",
  42502. image: {
  42503. source: "./media/characters/xenon/hand-left.svg"
  42504. }
  42505. },
  42506. handRight: {
  42507. height: math.unit(0.82, "feet"),
  42508. name: "Hand (Right)",
  42509. image: {
  42510. source: "./media/characters/xenon/hand-right.svg"
  42511. }
  42512. },
  42513. footLeft: {
  42514. height: math.unit(1.13, "feet"),
  42515. name: "Foot (Left)",
  42516. image: {
  42517. source: "./media/characters/xenon/foot-left.svg"
  42518. }
  42519. },
  42520. footRight: {
  42521. height: math.unit(1.13 * 194 / 196, "feet"),
  42522. name: "Foot (Right)",
  42523. image: {
  42524. source: "./media/characters/xenon/foot-right.svg"
  42525. }
  42526. },
  42527. },
  42528. [
  42529. {
  42530. name: "Micro",
  42531. height: math.unit(0.8, "inches")
  42532. },
  42533. {
  42534. name: "Normal",
  42535. height: math.unit(6, "feet")
  42536. },
  42537. {
  42538. name: "Macro",
  42539. height: math.unit(50, "feet"),
  42540. default: true
  42541. },
  42542. {
  42543. name: "Macro+",
  42544. height: math.unit(250, "feet")
  42545. },
  42546. {
  42547. name: "Megamacro",
  42548. height: math.unit(1500, "feet")
  42549. },
  42550. ]
  42551. ))
  42552. characterMakers.push(() => makeCharacter(
  42553. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42554. {
  42555. front: {
  42556. height: math.unit(7 + 5/12, "feet"),
  42557. name: "Front",
  42558. image: {
  42559. source: "./media/characters/zane/front.svg",
  42560. extra: 1260/1203,
  42561. bottom: 94/1354
  42562. }
  42563. },
  42564. back: {
  42565. height: math.unit(5.05, "feet"),
  42566. name: "Back",
  42567. image: {
  42568. source: "./media/characters/zane/back.svg",
  42569. extra: 893/829,
  42570. bottom: 30/923
  42571. }
  42572. },
  42573. werewolf: {
  42574. height: math.unit(11, "feet"),
  42575. name: "Werewolf",
  42576. image: {
  42577. source: "./media/characters/zane/werewolf.svg",
  42578. extra: 1383/1323,
  42579. bottom: 89/1472
  42580. }
  42581. },
  42582. foot: {
  42583. height: math.unit(1.46, "feet"),
  42584. name: "Foot",
  42585. image: {
  42586. source: "./media/characters/zane/foot.svg"
  42587. }
  42588. },
  42589. footFront: {
  42590. height: math.unit(0.784, "feet"),
  42591. name: "Foot (Front)",
  42592. image: {
  42593. source: "./media/characters/zane/foot-front.svg"
  42594. }
  42595. },
  42596. dick: {
  42597. height: math.unit(1.95, "feet"),
  42598. name: "Dick",
  42599. image: {
  42600. source: "./media/characters/zane/dick.svg"
  42601. }
  42602. },
  42603. dickWerewolf: {
  42604. height: math.unit(3.77, "feet"),
  42605. name: "Dick (Werewolf)",
  42606. image: {
  42607. source: "./media/characters/zane/dick.svg"
  42608. }
  42609. },
  42610. },
  42611. [
  42612. {
  42613. name: "Normal",
  42614. height: math.unit(7 + 5/12, "feet"),
  42615. default: true
  42616. },
  42617. ]
  42618. ))
  42619. characterMakers.push(() => makeCharacter(
  42620. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42621. {
  42622. front: {
  42623. height: math.unit(6 + 2/12, "feet"),
  42624. weight: math.unit(284, "lb"),
  42625. name: "Front",
  42626. image: {
  42627. source: "./media/characters/benni-desparque/front.svg",
  42628. extra: 1353/1126,
  42629. bottom: 69/1422
  42630. }
  42631. },
  42632. },
  42633. [
  42634. {
  42635. name: "Civilian",
  42636. height: math.unit(6 + 2/12, "feet")
  42637. },
  42638. {
  42639. name: "Normal",
  42640. height: math.unit(98, "feet"),
  42641. default: true
  42642. },
  42643. {
  42644. name: "Kaiju Fighter",
  42645. height: math.unit(268, "feet")
  42646. },
  42647. ]
  42648. ))
  42649. characterMakers.push(() => makeCharacter(
  42650. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42651. {
  42652. front: {
  42653. height: math.unit(5, "feet"),
  42654. weight: math.unit(105, "lb"),
  42655. name: "Front",
  42656. image: {
  42657. source: "./media/characters/maxine/front.svg",
  42658. extra: 1386/1250,
  42659. bottom: 71/1457
  42660. }
  42661. },
  42662. },
  42663. [
  42664. {
  42665. name: "Normal",
  42666. height: math.unit(5, "feet"),
  42667. default: true
  42668. },
  42669. ]
  42670. ))
  42671. characterMakers.push(() => makeCharacter(
  42672. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42673. {
  42674. front: {
  42675. height: math.unit(11 + 7/12, "feet"),
  42676. weight: math.unit(9576, "lb"),
  42677. name: "Front",
  42678. image: {
  42679. source: "./media/characters/scaly/front.svg",
  42680. extra: 888/867,
  42681. bottom: 36/924
  42682. }
  42683. },
  42684. },
  42685. [
  42686. {
  42687. name: "Normal",
  42688. height: math.unit(11 + 7/12, "feet"),
  42689. default: true
  42690. },
  42691. ]
  42692. ))
  42693. characterMakers.push(() => makeCharacter(
  42694. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42695. {
  42696. front: {
  42697. height: math.unit(6 + 3/12, "feet"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/saelria/front.svg",
  42701. extra: 1243/1138,
  42702. bottom: 46/1289
  42703. }
  42704. },
  42705. },
  42706. [
  42707. {
  42708. name: "Micro",
  42709. height: math.unit(6, "inches"),
  42710. },
  42711. {
  42712. name: "Normal",
  42713. height: math.unit(6 + 3/12, "feet"),
  42714. default: true
  42715. },
  42716. {
  42717. name: "Macro",
  42718. height: math.unit(25, "feet")
  42719. },
  42720. ]
  42721. ))
  42722. characterMakers.push(() => makeCharacter(
  42723. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42724. {
  42725. front: {
  42726. height: math.unit(80, "meters"),
  42727. weight: math.unit(7000, "tonnes"),
  42728. name: "Front",
  42729. image: {
  42730. source: "./media/characters/tef/front.svg",
  42731. extra: 2036/1991,
  42732. bottom: 54/2090
  42733. }
  42734. },
  42735. back: {
  42736. height: math.unit(80, "meters"),
  42737. weight: math.unit(7000, "tonnes"),
  42738. name: "Back",
  42739. image: {
  42740. source: "./media/characters/tef/back.svg",
  42741. extra: 2036/1991,
  42742. bottom: 54/2090
  42743. }
  42744. },
  42745. },
  42746. [
  42747. {
  42748. name: "Macro",
  42749. height: math.unit(80, "meters"),
  42750. default: true
  42751. },
  42752. ]
  42753. ))
  42754. characterMakers.push(() => makeCharacter(
  42755. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42756. {
  42757. front: {
  42758. height: math.unit(13, "feet"),
  42759. weight: math.unit(6, "tons"),
  42760. name: "Front",
  42761. image: {
  42762. source: "./media/characters/rover/front.svg",
  42763. extra: 1233/1156,
  42764. bottom: 50/1283
  42765. }
  42766. },
  42767. back: {
  42768. height: math.unit(13, "feet"),
  42769. weight: math.unit(6, "tons"),
  42770. name: "Back",
  42771. image: {
  42772. source: "./media/characters/rover/back.svg",
  42773. extra: 1327/1258,
  42774. bottom: 39/1366
  42775. }
  42776. },
  42777. },
  42778. [
  42779. {
  42780. name: "Normal",
  42781. height: math.unit(13, "feet"),
  42782. default: true
  42783. },
  42784. {
  42785. name: "Macro",
  42786. height: math.unit(1300, "feet")
  42787. },
  42788. {
  42789. name: "Megamacro",
  42790. height: math.unit(1300, "miles")
  42791. },
  42792. {
  42793. name: "Gigamacro",
  42794. height: math.unit(1300000, "miles")
  42795. },
  42796. ]
  42797. ))
  42798. characterMakers.push(() => makeCharacter(
  42799. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42800. {
  42801. front: {
  42802. height: math.unit(6, "feet"),
  42803. weight: math.unit(150, "lb"),
  42804. name: "Front",
  42805. image: {
  42806. source: "./media/characters/ariz/front.svg",
  42807. extra: 1401/1346,
  42808. bottom: 5/1406
  42809. }
  42810. },
  42811. },
  42812. [
  42813. {
  42814. name: "Normal",
  42815. height: math.unit(10, "feet"),
  42816. default: true
  42817. },
  42818. ]
  42819. ))
  42820. characterMakers.push(() => makeCharacter(
  42821. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42822. {
  42823. front: {
  42824. height: math.unit(6, "feet"),
  42825. weight: math.unit(140, "lb"),
  42826. name: "Front",
  42827. image: {
  42828. source: "./media/characters/sigrun/front.svg",
  42829. extra: 1418/1359,
  42830. bottom: 27/1445
  42831. }
  42832. },
  42833. },
  42834. [
  42835. {
  42836. name: "Macro",
  42837. height: math.unit(35, "feet"),
  42838. default: true
  42839. },
  42840. ]
  42841. ))
  42842. characterMakers.push(() => makeCharacter(
  42843. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42844. {
  42845. front: {
  42846. height: math.unit(6, "feet"),
  42847. weight: math.unit(150, "lb"),
  42848. name: "Front",
  42849. image: {
  42850. source: "./media/characters/numin/front.svg",
  42851. extra: 1433/1388,
  42852. bottom: 12/1445
  42853. }
  42854. },
  42855. },
  42856. [
  42857. {
  42858. name: "Macro",
  42859. height: math.unit(21.5, "km"),
  42860. default: true
  42861. },
  42862. ]
  42863. ))
  42864. characterMakers.push(() => makeCharacter(
  42865. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42866. {
  42867. front: {
  42868. height: math.unit(6, "feet"),
  42869. weight: math.unit(463, "lb"),
  42870. name: "Front",
  42871. image: {
  42872. source: "./media/characters/melwa/front.svg",
  42873. extra: 1307/1248,
  42874. bottom: 93/1400
  42875. }
  42876. },
  42877. },
  42878. [
  42879. {
  42880. name: "Macro",
  42881. height: math.unit(50, "meters"),
  42882. default: true
  42883. },
  42884. ]
  42885. ))
  42886. characterMakers.push(() => makeCharacter(
  42887. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42888. {
  42889. front: {
  42890. height: math.unit(325, "feet"),
  42891. name: "Front",
  42892. image: {
  42893. source: "./media/characters/zorkaiju/front.svg",
  42894. extra: 1955/1814,
  42895. bottom: 40/1995
  42896. }
  42897. },
  42898. frontExtended: {
  42899. height: math.unit(325, "feet"),
  42900. name: "Front (Extended)",
  42901. image: {
  42902. source: "./media/characters/zorkaiju/front-extended.svg",
  42903. extra: 1955/1814,
  42904. bottom: 40/1995
  42905. }
  42906. },
  42907. side: {
  42908. height: math.unit(325, "feet"),
  42909. name: "Side",
  42910. image: {
  42911. source: "./media/characters/zorkaiju/side.svg",
  42912. extra: 1495/1396,
  42913. bottom: 17/1512
  42914. }
  42915. },
  42916. sideExtended: {
  42917. height: math.unit(325, "feet"),
  42918. name: "Side (Extended)",
  42919. image: {
  42920. source: "./media/characters/zorkaiju/side-extended.svg",
  42921. extra: 1495/1396,
  42922. bottom: 17/1512
  42923. }
  42924. },
  42925. back: {
  42926. height: math.unit(325, "feet"),
  42927. name: "Back",
  42928. image: {
  42929. source: "./media/characters/zorkaiju/back.svg",
  42930. extra: 1959/1821,
  42931. bottom: 31/1990
  42932. }
  42933. },
  42934. backExtended: {
  42935. height: math.unit(325, "feet"),
  42936. name: "Back (Extended)",
  42937. image: {
  42938. source: "./media/characters/zorkaiju/back-extended.svg",
  42939. extra: 1959/1821,
  42940. bottom: 31/1990
  42941. }
  42942. },
  42943. hand: {
  42944. height: math.unit(58.4, "feet"),
  42945. name: "Hand",
  42946. image: {
  42947. source: "./media/characters/zorkaiju/hand.svg"
  42948. }
  42949. },
  42950. handExtended: {
  42951. height: math.unit(61.4, "feet"),
  42952. name: "Hand (Extended)",
  42953. image: {
  42954. source: "./media/characters/zorkaiju/hand-extended.svg"
  42955. }
  42956. },
  42957. foot: {
  42958. height: math.unit(95, "feet"),
  42959. name: "Foot",
  42960. image: {
  42961. source: "./media/characters/zorkaiju/foot.svg"
  42962. }
  42963. },
  42964. leftArm: {
  42965. height: math.unit(59, "feet"),
  42966. name: "Left Arm",
  42967. image: {
  42968. source: "./media/characters/zorkaiju/left-arm.svg"
  42969. }
  42970. },
  42971. rightArm: {
  42972. height: math.unit(59, "feet"),
  42973. name: "Right Arm",
  42974. image: {
  42975. source: "./media/characters/zorkaiju/right-arm.svg"
  42976. }
  42977. },
  42978. leftArmExtended: {
  42979. height: math.unit(59 * 1.033546, "feet"),
  42980. name: "Left Arm (Extended)",
  42981. image: {
  42982. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42983. }
  42984. },
  42985. rightArmExtended: {
  42986. height: math.unit(59 * 1.0496, "feet"),
  42987. name: "Right Arm (Extended)",
  42988. image: {
  42989. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42990. }
  42991. },
  42992. tail: {
  42993. height: math.unit(104, "feet"),
  42994. name: "Tail",
  42995. image: {
  42996. source: "./media/characters/zorkaiju/tail.svg"
  42997. }
  42998. },
  42999. tailExtended: {
  43000. height: math.unit(104, "feet"),
  43001. name: "Tail (Extended)",
  43002. image: {
  43003. source: "./media/characters/zorkaiju/tail-extended.svg"
  43004. }
  43005. },
  43006. tailBottom: {
  43007. height: math.unit(104, "feet"),
  43008. name: "Tail Bottom",
  43009. image: {
  43010. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43011. }
  43012. },
  43013. crystal: {
  43014. height: math.unit(27.54, "feet"),
  43015. name: "Crystal",
  43016. image: {
  43017. source: "./media/characters/zorkaiju/crystal.svg"
  43018. }
  43019. },
  43020. },
  43021. [
  43022. {
  43023. name: "Kaiju",
  43024. height: math.unit(325, "feet"),
  43025. default: true
  43026. },
  43027. ]
  43028. ))
  43029. characterMakers.push(() => makeCharacter(
  43030. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43031. {
  43032. front: {
  43033. height: math.unit(6 + 1/12, "feet"),
  43034. weight: math.unit(115, "lb"),
  43035. name: "Front",
  43036. image: {
  43037. source: "./media/characters/bailey-belfry/front.svg",
  43038. extra: 1240/1121,
  43039. bottom: 101/1341
  43040. }
  43041. },
  43042. },
  43043. [
  43044. {
  43045. name: "Normal",
  43046. height: math.unit(6 + 1/12, "feet"),
  43047. default: true
  43048. },
  43049. ]
  43050. ))
  43051. characterMakers.push(() => makeCharacter(
  43052. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43053. {
  43054. side: {
  43055. height: math.unit(4, "meters"),
  43056. weight: math.unit(250, "kg"),
  43057. name: "Side",
  43058. image: {
  43059. source: "./media/characters/blacky/side.svg",
  43060. extra: 1027/919,
  43061. bottom: 43/1070
  43062. }
  43063. },
  43064. maw: {
  43065. height: math.unit(1, "meters"),
  43066. name: "Maw",
  43067. image: {
  43068. source: "./media/characters/blacky/maw.svg"
  43069. }
  43070. },
  43071. paw: {
  43072. height: math.unit(1, "meters"),
  43073. name: "Paw",
  43074. image: {
  43075. source: "./media/characters/blacky/paw.svg"
  43076. }
  43077. },
  43078. },
  43079. [
  43080. {
  43081. name: "Normal",
  43082. height: math.unit(4, "meters"),
  43083. default: true
  43084. },
  43085. ]
  43086. ))
  43087. characterMakers.push(() => makeCharacter(
  43088. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43089. {
  43090. front: {
  43091. height: math.unit(170, "cm"),
  43092. weight: math.unit(66, "kg"),
  43093. name: "Front",
  43094. image: {
  43095. source: "./media/characters/thux-ei/front.svg",
  43096. extra: 1109/1011,
  43097. bottom: 8/1117
  43098. }
  43099. },
  43100. },
  43101. [
  43102. {
  43103. name: "Normal",
  43104. height: math.unit(170, "cm"),
  43105. default: true
  43106. },
  43107. ]
  43108. ))
  43109. characterMakers.push(() => makeCharacter(
  43110. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43111. {
  43112. front: {
  43113. height: math.unit(5, "feet"),
  43114. weight: math.unit(120, "lb"),
  43115. name: "Front",
  43116. image: {
  43117. source: "./media/characters/roxanne-voltaire/front.svg",
  43118. extra: 1901/1779,
  43119. bottom: 53/1954
  43120. }
  43121. },
  43122. },
  43123. [
  43124. {
  43125. name: "Normal",
  43126. height: math.unit(5, "feet"),
  43127. default: true
  43128. },
  43129. {
  43130. name: "Giant",
  43131. height: math.unit(50, "feet")
  43132. },
  43133. {
  43134. name: "Titan",
  43135. height: math.unit(500, "feet")
  43136. },
  43137. {
  43138. name: "Macro",
  43139. height: math.unit(5000, "feet")
  43140. },
  43141. {
  43142. name: "Megamacro",
  43143. height: math.unit(50000, "feet")
  43144. },
  43145. {
  43146. name: "Gigamacro",
  43147. height: math.unit(500000, "feet")
  43148. },
  43149. {
  43150. name: "Teramacro",
  43151. height: math.unit(5e6, "feet")
  43152. },
  43153. ]
  43154. ))
  43155. characterMakers.push(() => makeCharacter(
  43156. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43157. {
  43158. front: {
  43159. height: math.unit(6 + 2/12, "feet"),
  43160. name: "Front",
  43161. image: {
  43162. source: "./media/characters/squeaks/front.svg",
  43163. extra: 1823/1768,
  43164. bottom: 138/1961
  43165. }
  43166. },
  43167. },
  43168. [
  43169. {
  43170. name: "Micro",
  43171. height: math.unit(0.5, "inches")
  43172. },
  43173. {
  43174. name: "Normal",
  43175. height: math.unit(6 + 2/12, "feet"),
  43176. default: true
  43177. },
  43178. {
  43179. name: "Macro",
  43180. height: math.unit(600, "feet")
  43181. },
  43182. ]
  43183. ))
  43184. characterMakers.push(() => makeCharacter(
  43185. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43186. {
  43187. front: {
  43188. height: math.unit(1.72, "meters"),
  43189. name: "Front",
  43190. image: {
  43191. source: "./media/characters/archinger/front.svg",
  43192. extra: 1861/1675,
  43193. bottom: 125/1986
  43194. }
  43195. },
  43196. back: {
  43197. height: math.unit(1.72, "meters"),
  43198. name: "Back",
  43199. image: {
  43200. source: "./media/characters/archinger/back.svg",
  43201. extra: 1844/1701,
  43202. bottom: 104/1948
  43203. }
  43204. },
  43205. cock: {
  43206. height: math.unit(0.59, "feet"),
  43207. name: "Cock",
  43208. image: {
  43209. source: "./media/characters/archinger/cock.svg"
  43210. }
  43211. },
  43212. },
  43213. [
  43214. {
  43215. name: "Normal",
  43216. height: math.unit(1.72, "meters"),
  43217. default: true
  43218. },
  43219. {
  43220. name: "Macro",
  43221. height: math.unit(84, "meters")
  43222. },
  43223. {
  43224. name: "Macro+",
  43225. height: math.unit(112, "meters")
  43226. },
  43227. {
  43228. name: "Macro++",
  43229. height: math.unit(960, "meters")
  43230. },
  43231. {
  43232. name: "Macro+++",
  43233. height: math.unit(4, "km")
  43234. },
  43235. {
  43236. name: "Macro++++",
  43237. height: math.unit(48, "km")
  43238. },
  43239. {
  43240. name: "Macro+++++",
  43241. height: math.unit(4500, "km")
  43242. },
  43243. ]
  43244. ))
  43245. characterMakers.push(() => makeCharacter(
  43246. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43247. {
  43248. front: {
  43249. height: math.unit(5 + 5/12, "feet"),
  43250. name: "Front",
  43251. image: {
  43252. source: "./media/characters/alsnapz/front.svg",
  43253. extra: 1157/1065,
  43254. bottom: 42/1199
  43255. }
  43256. },
  43257. },
  43258. [
  43259. {
  43260. name: "Normal",
  43261. height: math.unit(5 + 5/12, "feet"),
  43262. default: true
  43263. },
  43264. ]
  43265. ))
  43266. characterMakers.push(() => makeCharacter(
  43267. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43268. {
  43269. side: {
  43270. height: math.unit(3.2, "earths"),
  43271. name: "Side",
  43272. image: {
  43273. source: "./media/characters/mag/side.svg",
  43274. extra: 1331/1008,
  43275. bottom: 52/1383
  43276. }
  43277. },
  43278. wing: {
  43279. height: math.unit(1.94, "earths"),
  43280. name: "Wing",
  43281. image: {
  43282. source: "./media/characters/mag/wing.svg"
  43283. }
  43284. },
  43285. dick: {
  43286. height: math.unit(1.8, "earths"),
  43287. name: "Dick",
  43288. image: {
  43289. source: "./media/characters/mag/dick.svg"
  43290. }
  43291. },
  43292. ass: {
  43293. height: math.unit(1.33, "earths"),
  43294. name: "Ass",
  43295. image: {
  43296. source: "./media/characters/mag/ass.svg"
  43297. }
  43298. },
  43299. head: {
  43300. height: math.unit(1.1, "earths"),
  43301. name: "Head",
  43302. image: {
  43303. source: "./media/characters/mag/head.svg"
  43304. }
  43305. },
  43306. maw: {
  43307. height: math.unit(1.62, "earths"),
  43308. name: "Maw",
  43309. image: {
  43310. source: "./media/characters/mag/maw.svg"
  43311. }
  43312. },
  43313. },
  43314. [
  43315. {
  43316. name: "Small",
  43317. height: math.unit(162, "feet")
  43318. },
  43319. {
  43320. name: "Normal",
  43321. height: math.unit(3.2, "earths"),
  43322. default: true
  43323. },
  43324. ]
  43325. ))
  43326. characterMakers.push(() => makeCharacter(
  43327. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43328. {
  43329. front: {
  43330. height: math.unit(512, "feet"),
  43331. weight: math.unit(63509, "tonnes"),
  43332. name: "Front",
  43333. image: {
  43334. source: "./media/characters/vorrel-harroc/front.svg",
  43335. extra: 1075/1063,
  43336. bottom: 62/1137
  43337. }
  43338. },
  43339. },
  43340. [
  43341. {
  43342. name: "Normal",
  43343. height: math.unit(10, "feet")
  43344. },
  43345. {
  43346. name: "Macro",
  43347. height: math.unit(512, "feet"),
  43348. default: true
  43349. },
  43350. {
  43351. name: "Megamacro",
  43352. height: math.unit(256, "miles")
  43353. },
  43354. {
  43355. name: "Gigamacro",
  43356. height: math.unit(4096, "miles")
  43357. },
  43358. ]
  43359. ))
  43360. characterMakers.push(() => makeCharacter(
  43361. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43362. {
  43363. side: {
  43364. height: math.unit(50, "feet"),
  43365. name: "Side",
  43366. image: {
  43367. source: "./media/characters/froimar/side.svg",
  43368. extra: 855/638,
  43369. bottom: 99/954
  43370. }
  43371. },
  43372. },
  43373. [
  43374. {
  43375. name: "Macro",
  43376. height: math.unit(50, "feet"),
  43377. default: true
  43378. },
  43379. ]
  43380. ))
  43381. characterMakers.push(() => makeCharacter(
  43382. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43383. {
  43384. front: {
  43385. height: math.unit(210, "miles"),
  43386. name: "Front",
  43387. image: {
  43388. source: "./media/characters/timothy/front.svg",
  43389. extra: 1007/943,
  43390. bottom: 62/1069
  43391. }
  43392. },
  43393. frontSkirt: {
  43394. height: math.unit(210, "miles"),
  43395. name: "Front (Skirt)",
  43396. image: {
  43397. source: "./media/characters/timothy/front-skirt.svg",
  43398. extra: 1007/943,
  43399. bottom: 62/1069
  43400. }
  43401. },
  43402. frontCoat: {
  43403. height: math.unit(210, "miles"),
  43404. name: "Front (Coat)",
  43405. image: {
  43406. source: "./media/characters/timothy/front-coat.svg",
  43407. extra: 1007/943,
  43408. bottom: 62/1069
  43409. }
  43410. },
  43411. },
  43412. [
  43413. {
  43414. name: "Macro",
  43415. height: math.unit(210, "miles"),
  43416. default: true
  43417. },
  43418. {
  43419. name: "Megamacro",
  43420. height: math.unit(210000, "miles")
  43421. },
  43422. ]
  43423. ))
  43424. characterMakers.push(() => makeCharacter(
  43425. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43426. {
  43427. front: {
  43428. height: math.unit(188, "feet"),
  43429. name: "Front",
  43430. image: {
  43431. source: "./media/characters/pyotr/front.svg",
  43432. extra: 1912/1826,
  43433. bottom: 18/1930
  43434. }
  43435. },
  43436. },
  43437. [
  43438. {
  43439. name: "Macro",
  43440. height: math.unit(188, "feet"),
  43441. default: true
  43442. },
  43443. {
  43444. name: "Megamacro",
  43445. height: math.unit(8, "miles")
  43446. },
  43447. ]
  43448. ))
  43449. characterMakers.push(() => makeCharacter(
  43450. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43451. {
  43452. side: {
  43453. height: math.unit(10, "feet"),
  43454. weight: math.unit(4500, "lb"),
  43455. name: "Side",
  43456. image: {
  43457. source: "./media/characters/ackart/side.svg",
  43458. extra: 1776/1668,
  43459. bottom: 116/1892
  43460. }
  43461. },
  43462. },
  43463. [
  43464. {
  43465. name: "Normal",
  43466. height: math.unit(10, "feet"),
  43467. default: true
  43468. },
  43469. ]
  43470. ))
  43471. characterMakers.push(() => makeCharacter(
  43472. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43473. {
  43474. side: {
  43475. height: math.unit(21, "feet"),
  43476. name: "Side",
  43477. image: {
  43478. source: "./media/characters/nolow/side.svg",
  43479. extra: 1484/1434,
  43480. bottom: 85/1569
  43481. }
  43482. },
  43483. sideErect: {
  43484. height: math.unit(21, "feet"),
  43485. name: "Side-erect",
  43486. image: {
  43487. source: "./media/characters/nolow/side-erect.svg",
  43488. extra: 1484/1434,
  43489. bottom: 85/1569
  43490. }
  43491. },
  43492. },
  43493. [
  43494. {
  43495. name: "Regular",
  43496. height: math.unit(12, "feet")
  43497. },
  43498. {
  43499. name: "Big Chee",
  43500. height: math.unit(21, "feet"),
  43501. default: true
  43502. },
  43503. ]
  43504. ))
  43505. characterMakers.push(() => makeCharacter(
  43506. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43507. {
  43508. front: {
  43509. height: math.unit(7, "feet"),
  43510. weight: math.unit(250, "lb"),
  43511. name: "Front",
  43512. image: {
  43513. source: "./media/characters/nines/front.svg",
  43514. extra: 1741/1607,
  43515. bottom: 41/1782
  43516. }
  43517. },
  43518. side: {
  43519. height: math.unit(7, "feet"),
  43520. weight: math.unit(250, "lb"),
  43521. name: "Side",
  43522. image: {
  43523. source: "./media/characters/nines/side.svg",
  43524. extra: 1854/1735,
  43525. bottom: 93/1947
  43526. }
  43527. },
  43528. back: {
  43529. height: math.unit(7, "feet"),
  43530. weight: math.unit(250, "lb"),
  43531. name: "Back",
  43532. image: {
  43533. source: "./media/characters/nines/back.svg",
  43534. extra: 1748/1615,
  43535. bottom: 20/1768
  43536. }
  43537. },
  43538. },
  43539. [
  43540. {
  43541. name: "Megamacro",
  43542. height: math.unit(99, "km"),
  43543. default: true
  43544. },
  43545. ]
  43546. ))
  43547. characterMakers.push(() => makeCharacter(
  43548. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43549. {
  43550. front: {
  43551. height: math.unit(5 + 10/12, "feet"),
  43552. weight: math.unit(210, "lb"),
  43553. name: "Front",
  43554. image: {
  43555. source: "./media/characters/zenith/front.svg",
  43556. extra: 1531/1452,
  43557. bottom: 198/1729
  43558. }
  43559. },
  43560. back: {
  43561. height: math.unit(5 + 10/12, "feet"),
  43562. weight: math.unit(210, "lb"),
  43563. name: "Back",
  43564. image: {
  43565. source: "./media/characters/zenith/back.svg",
  43566. extra: 1571/1487,
  43567. bottom: 75/1646
  43568. }
  43569. },
  43570. },
  43571. [
  43572. {
  43573. name: "Normal",
  43574. height: math.unit(5 + 10/12, "feet"),
  43575. default: true
  43576. }
  43577. ]
  43578. ))
  43579. characterMakers.push(() => makeCharacter(
  43580. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43581. {
  43582. front: {
  43583. height: math.unit(4, "feet"),
  43584. weight: math.unit(60, "lb"),
  43585. name: "Front",
  43586. image: {
  43587. source: "./media/characters/jasper/front.svg",
  43588. extra: 1450/1379,
  43589. bottom: 19/1469
  43590. }
  43591. },
  43592. },
  43593. [
  43594. {
  43595. name: "Normal",
  43596. height: math.unit(4, "feet"),
  43597. default: true
  43598. },
  43599. ]
  43600. ))
  43601. characterMakers.push(() => makeCharacter(
  43602. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43603. {
  43604. front: {
  43605. height: math.unit(6 + 5/12, "feet"),
  43606. weight: math.unit(290, "lb"),
  43607. name: "Front",
  43608. image: {
  43609. source: "./media/characters/tiberius-thyben/front.svg",
  43610. extra: 757/739,
  43611. bottom: 39/796
  43612. }
  43613. },
  43614. },
  43615. [
  43616. {
  43617. name: "Micro",
  43618. height: math.unit(1.5, "inches")
  43619. },
  43620. {
  43621. name: "Normal",
  43622. height: math.unit(6 + 5/12, "feet"),
  43623. default: true
  43624. },
  43625. {
  43626. name: "Macro",
  43627. height: math.unit(300, "feet")
  43628. },
  43629. ]
  43630. ))
  43631. characterMakers.push(() => makeCharacter(
  43632. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43633. {
  43634. front: {
  43635. height: math.unit(5 + 6/12, "feet"),
  43636. weight: math.unit(60, "kg"),
  43637. name: "Front",
  43638. image: {
  43639. source: "./media/characters/sabre/front.svg",
  43640. extra: 738/671,
  43641. bottom: 27/765
  43642. }
  43643. },
  43644. },
  43645. [
  43646. {
  43647. name: "Teeny",
  43648. height: math.unit(2, "inches")
  43649. },
  43650. {
  43651. name: "Smol",
  43652. height: math.unit(8, "inches")
  43653. },
  43654. {
  43655. name: "Normal",
  43656. height: math.unit(5 + 6/12, "feet"),
  43657. default: true
  43658. },
  43659. {
  43660. name: "Mini-Macro",
  43661. height: math.unit(15, "feet")
  43662. },
  43663. {
  43664. name: "Macro",
  43665. height: math.unit(50, "feet")
  43666. },
  43667. ]
  43668. ))
  43669. characterMakers.push(() => makeCharacter(
  43670. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43671. {
  43672. front: {
  43673. height: math.unit(6 + 4/12, "feet"),
  43674. weight: math.unit(170, "lb"),
  43675. name: "Front",
  43676. image: {
  43677. source: "./media/characters/charlie/front.svg",
  43678. extra: 1348/1228,
  43679. bottom: 15/1363
  43680. }
  43681. },
  43682. },
  43683. [
  43684. {
  43685. name: "Macro",
  43686. height: math.unit(1700, "meters"),
  43687. default: true
  43688. },
  43689. {
  43690. name: "MegaMacro",
  43691. height: math.unit(20400, "meters")
  43692. },
  43693. ]
  43694. ))
  43695. characterMakers.push(() => makeCharacter(
  43696. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43697. {
  43698. front: {
  43699. height: math.unit(1.96, "meters"),
  43700. weight: math.unit(220, "lb"),
  43701. name: "Front",
  43702. image: {
  43703. source: "./media/characters/susan-grant/front.svg",
  43704. extra: 482/478,
  43705. bottom: 7/489
  43706. }
  43707. },
  43708. },
  43709. [
  43710. {
  43711. name: "Normal",
  43712. height: math.unit(1.96, "meters"),
  43713. default: true
  43714. },
  43715. {
  43716. name: "Macro",
  43717. height: math.unit(76.2, "meters")
  43718. },
  43719. {
  43720. name: "MegaMacro",
  43721. height: math.unit(305, "meters")
  43722. },
  43723. {
  43724. name: "GigaMacro",
  43725. height: math.unit(1220, "meters")
  43726. },
  43727. {
  43728. name: "SuperMacro",
  43729. height: math.unit(4878, "meters")
  43730. },
  43731. ]
  43732. ))
  43733. characterMakers.push(() => makeCharacter(
  43734. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43735. {
  43736. front: {
  43737. height: math.unit(5 + 4/12, "feet"),
  43738. weight: math.unit(110, "lb"),
  43739. name: "Front",
  43740. image: {
  43741. source: "./media/characters/axel-isanov/front.svg",
  43742. extra: 1096/1065,
  43743. bottom: 13/1109
  43744. }
  43745. },
  43746. },
  43747. [
  43748. {
  43749. name: "Normal",
  43750. height: math.unit(5 + 4/12, "feet"),
  43751. default: true
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43757. {
  43758. front: {
  43759. height: math.unit(9, "feet"),
  43760. weight: math.unit(467, "lb"),
  43761. name: "Front",
  43762. image: {
  43763. source: "./media/characters/necahual/front.svg",
  43764. extra: 920/873,
  43765. bottom: 26/946
  43766. }
  43767. },
  43768. back: {
  43769. height: math.unit(9, "feet"),
  43770. weight: math.unit(467, "lb"),
  43771. name: "Back",
  43772. image: {
  43773. source: "./media/characters/necahual/back.svg",
  43774. extra: 930/884,
  43775. bottom: 16/946
  43776. }
  43777. },
  43778. frontUnderwear: {
  43779. height: math.unit(9, "feet"),
  43780. weight: math.unit(467, "lb"),
  43781. name: "Front (Underwear)",
  43782. image: {
  43783. source: "./media/characters/necahual/front-underwear.svg",
  43784. extra: 920/873,
  43785. bottom: 26/946
  43786. }
  43787. },
  43788. frontDressed: {
  43789. height: math.unit(9, "feet"),
  43790. weight: math.unit(467, "lb"),
  43791. name: "Front (Dressed)",
  43792. image: {
  43793. source: "./media/characters/necahual/front-dressed.svg",
  43794. extra: 920/873,
  43795. bottom: 26/946
  43796. }
  43797. },
  43798. },
  43799. [
  43800. {
  43801. name: "Comprsesed",
  43802. height: math.unit(9, "feet")
  43803. },
  43804. {
  43805. name: "Natural",
  43806. height: math.unit(15, "feet"),
  43807. default: true
  43808. },
  43809. {
  43810. name: "Boosted",
  43811. height: math.unit(50, "feet")
  43812. },
  43813. {
  43814. name: "Boosted+",
  43815. height: math.unit(150, "feet")
  43816. },
  43817. {
  43818. name: "Max",
  43819. height: math.unit(500, "feet")
  43820. },
  43821. ]
  43822. ))
  43823. characterMakers.push(() => makeCharacter(
  43824. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43825. {
  43826. front: {
  43827. height: math.unit(22 + 1/12, "feet"),
  43828. weight: math.unit(3200, "lb"),
  43829. name: "Front",
  43830. image: {
  43831. source: "./media/characters/theo-acacia/front.svg",
  43832. extra: 1796/1741,
  43833. bottom: 83/1879
  43834. }
  43835. },
  43836. frontUnderwear: {
  43837. height: math.unit(22 + 1/12, "feet"),
  43838. weight: math.unit(3200, "lb"),
  43839. name: "Front (Underwear)",
  43840. image: {
  43841. source: "./media/characters/theo-acacia/front-underwear.svg",
  43842. extra: 1796/1741,
  43843. bottom: 83/1879
  43844. }
  43845. },
  43846. frontNude: {
  43847. height: math.unit(22 + 1/12, "feet"),
  43848. weight: math.unit(3200, "lb"),
  43849. name: "Front (Nude)",
  43850. image: {
  43851. source: "./media/characters/theo-acacia/front-nude.svg",
  43852. extra: 1796/1741,
  43853. bottom: 83/1879
  43854. }
  43855. },
  43856. },
  43857. [
  43858. {
  43859. name: "Normal",
  43860. height: math.unit(22 + 1/12, "feet"),
  43861. default: true
  43862. },
  43863. ]
  43864. ))
  43865. characterMakers.push(() => makeCharacter(
  43866. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43867. {
  43868. front: {
  43869. height: math.unit(20, "feet"),
  43870. name: "Front",
  43871. image: {
  43872. source: "./media/characters/astra/front.svg",
  43873. extra: 1850/1714,
  43874. bottom: 106/1956
  43875. }
  43876. },
  43877. frontUndressed: {
  43878. height: math.unit(20, "feet"),
  43879. name: "Front (Undressed)",
  43880. image: {
  43881. source: "./media/characters/astra/front-undressed.svg",
  43882. extra: 1926/1749,
  43883. bottom: 0/1926
  43884. }
  43885. },
  43886. hand: {
  43887. height: math.unit(1.53, "feet"),
  43888. name: "Hand",
  43889. image: {
  43890. source: "./media/characters/astra/hand.svg"
  43891. }
  43892. },
  43893. paw: {
  43894. height: math.unit(1.53, "feet"),
  43895. name: "Paw",
  43896. image: {
  43897. source: "./media/characters/astra/paw.svg"
  43898. }
  43899. },
  43900. },
  43901. [
  43902. {
  43903. name: "Smallest",
  43904. height: math.unit(20, "feet")
  43905. },
  43906. {
  43907. name: "Normal",
  43908. height: math.unit(1e9, "miles"),
  43909. default: true
  43910. },
  43911. {
  43912. name: "Larger",
  43913. height: math.unit(5, "multiverses")
  43914. },
  43915. {
  43916. name: "Largest",
  43917. height: math.unit(1e9, "multiverses")
  43918. },
  43919. ]
  43920. ))
  43921. characterMakers.push(() => makeCharacter(
  43922. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43923. {
  43924. front: {
  43925. height: math.unit(8, "feet"),
  43926. name: "Front",
  43927. image: {
  43928. source: "./media/characters/breanna/front.svg",
  43929. extra: 1912/1632,
  43930. bottom: 33/1945
  43931. }
  43932. },
  43933. },
  43934. [
  43935. {
  43936. name: "Smallest",
  43937. height: math.unit(8, "feet")
  43938. },
  43939. {
  43940. name: "Normal",
  43941. height: math.unit(1, "mile"),
  43942. default: true
  43943. },
  43944. {
  43945. name: "Maximum",
  43946. height: math.unit(1500000000000, "lightyears")
  43947. },
  43948. ]
  43949. ))
  43950. characterMakers.push(() => makeCharacter(
  43951. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43952. {
  43953. front: {
  43954. height: math.unit(5 + 11/12, "feet"),
  43955. weight: math.unit(155, "lb"),
  43956. name: "Front",
  43957. image: {
  43958. source: "./media/characters/cai/front.svg",
  43959. extra: 1823/1702,
  43960. bottom: 32/1855
  43961. }
  43962. },
  43963. back: {
  43964. height: math.unit(5 + 11/12, "feet"),
  43965. weight: math.unit(155, "lb"),
  43966. name: "Back",
  43967. image: {
  43968. source: "./media/characters/cai/back.svg",
  43969. extra: 1809/1708,
  43970. bottom: 31/1840
  43971. }
  43972. },
  43973. },
  43974. [
  43975. {
  43976. name: "Normal",
  43977. height: math.unit(5 + 11/12, "feet"),
  43978. default: true
  43979. },
  43980. {
  43981. name: "Big",
  43982. height: math.unit(15, "feet")
  43983. },
  43984. {
  43985. name: "Macro",
  43986. height: math.unit(200, "feet")
  43987. },
  43988. ]
  43989. ))
  43990. characterMakers.push(() => makeCharacter(
  43991. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43992. {
  43993. front: {
  43994. height: math.unit(5 + 6/12, "feet"),
  43995. weight: math.unit(160, "lb"),
  43996. name: "Front",
  43997. image: {
  43998. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43999. extra: 1227/1174,
  44000. bottom: 37/1264
  44001. }
  44002. },
  44003. },
  44004. [
  44005. {
  44006. name: "Macro",
  44007. height: math.unit(444, "meters"),
  44008. default: true
  44009. },
  44010. ]
  44011. ))
  44012. characterMakers.push(() => makeCharacter(
  44013. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44014. {
  44015. front: {
  44016. height: math.unit(18 + 7/12, "feet"),
  44017. name: "Front",
  44018. image: {
  44019. source: "./media/characters/rex/front.svg",
  44020. extra: 1941/1807,
  44021. bottom: 66/2007
  44022. }
  44023. },
  44024. back: {
  44025. height: math.unit(18 + 7/12, "feet"),
  44026. name: "Back",
  44027. image: {
  44028. source: "./media/characters/rex/back.svg",
  44029. extra: 1937/1822,
  44030. bottom: 42/1979
  44031. }
  44032. },
  44033. boot: {
  44034. height: math.unit(3.45, "feet"),
  44035. name: "Boot",
  44036. image: {
  44037. source: "./media/characters/rex/boot.svg"
  44038. }
  44039. },
  44040. paw: {
  44041. height: math.unit(4.17, "feet"),
  44042. name: "Paw",
  44043. image: {
  44044. source: "./media/characters/rex/paw.svg"
  44045. }
  44046. },
  44047. head: {
  44048. height: math.unit(6.728, "feet"),
  44049. name: "Head",
  44050. image: {
  44051. source: "./media/characters/rex/head.svg"
  44052. }
  44053. },
  44054. },
  44055. [
  44056. {
  44057. name: "Nano",
  44058. height: math.unit(18 + 7/12, "feet")
  44059. },
  44060. {
  44061. name: "Micro",
  44062. height: math.unit(1.5, "megameters")
  44063. },
  44064. {
  44065. name: "Normal",
  44066. height: math.unit(440, "megameters"),
  44067. default: true
  44068. },
  44069. {
  44070. name: "Macro",
  44071. height: math.unit(2.5, "gigameters")
  44072. },
  44073. {
  44074. name: "Gigamacro",
  44075. height: math.unit(2, "galaxies")
  44076. },
  44077. ]
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44081. {
  44082. side: {
  44083. height: math.unit(32, "feet"),
  44084. weight: math.unit(250000, "lb"),
  44085. name: "Side",
  44086. image: {
  44087. source: "./media/characters/silverwing/side.svg",
  44088. extra: 1100/1019,
  44089. bottom: 204/1304
  44090. }
  44091. },
  44092. },
  44093. [
  44094. {
  44095. name: "Normal",
  44096. height: math.unit(32, "feet"),
  44097. default: true
  44098. },
  44099. ]
  44100. ))
  44101. characterMakers.push(() => makeCharacter(
  44102. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44103. {
  44104. front: {
  44105. height: math.unit(6 + 6/12, "feet"),
  44106. weight: math.unit(350, "lb"),
  44107. name: "Front",
  44108. image: {
  44109. source: "./media/characters/tristan-hawthorne/front.svg",
  44110. extra: 1159/1124,
  44111. bottom: 37/1196
  44112. },
  44113. form: "labrador",
  44114. default: true
  44115. },
  44116. skunkFront: {
  44117. height: math.unit(4 + 6/12, "feet"),
  44118. weight: math.unit(120, "lb"),
  44119. name: "Front",
  44120. image: {
  44121. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44122. extra: 1609/1551,
  44123. bottom: 169/1778
  44124. },
  44125. form: "skunk",
  44126. default: true
  44127. },
  44128. },
  44129. [
  44130. {
  44131. name: "Normal",
  44132. height: math.unit(6 + 6/12, "feet"),
  44133. form: "labrador",
  44134. default: true
  44135. },
  44136. {
  44137. name: "Normal",
  44138. height: math.unit(4 + 6/12, "feet"),
  44139. form: "skunk",
  44140. default: true
  44141. },
  44142. ],
  44143. {
  44144. "labrador": {
  44145. name: "Labrador",
  44146. default: true
  44147. },
  44148. "skunk": {
  44149. name: "Skunk"
  44150. }
  44151. }
  44152. ))
  44153. characterMakers.push(() => makeCharacter(
  44154. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44155. {
  44156. front: {
  44157. height: math.unit(5 + 11/12, "feet"),
  44158. weight: math.unit(190, "lb"),
  44159. name: "Front",
  44160. image: {
  44161. source: "./media/characters/mizu/front.svg",
  44162. extra: 1988/1788,
  44163. bottom: 14/2002
  44164. }
  44165. },
  44166. },
  44167. [
  44168. {
  44169. name: "Normal",
  44170. height: math.unit(5 + 11/12, "feet"),
  44171. default: true
  44172. },
  44173. ]
  44174. ))
  44175. characterMakers.push(() => makeCharacter(
  44176. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44177. {
  44178. front: {
  44179. height: math.unit(1.7, "feet"),
  44180. weight: math.unit(50, "lb"),
  44181. name: "Front",
  44182. image: {
  44183. source: "./media/characters/dechroma/front.svg",
  44184. extra: 1095/859,
  44185. bottom: 64/1159
  44186. }
  44187. },
  44188. },
  44189. [
  44190. {
  44191. name: "Normal",
  44192. height: math.unit(1.7, "feet"),
  44193. default: true
  44194. },
  44195. ]
  44196. ))
  44197. characterMakers.push(() => makeCharacter(
  44198. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44199. {
  44200. side: {
  44201. height: math.unit(30, "feet"),
  44202. name: "Side",
  44203. image: {
  44204. source: "./media/characters/veluren-thanazel/side.svg",
  44205. extra: 1611/633,
  44206. bottom: 118/1729
  44207. }
  44208. },
  44209. front: {
  44210. height: math.unit(30, "feet"),
  44211. name: "Front",
  44212. image: {
  44213. source: "./media/characters/veluren-thanazel/front.svg",
  44214. extra: 1486/636,
  44215. bottom: 238/1724
  44216. }
  44217. },
  44218. head: {
  44219. height: math.unit(21.4, "feet"),
  44220. name: "Head",
  44221. image: {
  44222. source: "./media/characters/veluren-thanazel/head.svg"
  44223. }
  44224. },
  44225. genitals: {
  44226. height: math.unit(19.4, "feet"),
  44227. name: "Genitals",
  44228. image: {
  44229. source: "./media/characters/veluren-thanazel/genitals.svg"
  44230. }
  44231. },
  44232. },
  44233. [
  44234. {
  44235. name: "Social",
  44236. height: math.unit(6, "feet")
  44237. },
  44238. {
  44239. name: "Play",
  44240. height: math.unit(12, "feet")
  44241. },
  44242. {
  44243. name: "True",
  44244. height: math.unit(30, "feet"),
  44245. default: true
  44246. },
  44247. ]
  44248. ))
  44249. characterMakers.push(() => makeCharacter(
  44250. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44251. {
  44252. front: {
  44253. height: math.unit(7 + 6/12, "feet"),
  44254. weight: math.unit(500, "kg"),
  44255. name: "Front",
  44256. image: {
  44257. source: "./media/characters/arcturas/front.svg",
  44258. extra: 1700/1500,
  44259. bottom: 145/1845
  44260. }
  44261. },
  44262. },
  44263. [
  44264. {
  44265. name: "Normal",
  44266. height: math.unit(7 + 6/12, "feet"),
  44267. default: true
  44268. },
  44269. ]
  44270. ))
  44271. characterMakers.push(() => makeCharacter(
  44272. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44273. {
  44274. side: {
  44275. height: math.unit(6, "feet"),
  44276. weight: math.unit(2, "tons"),
  44277. name: "Side",
  44278. image: {
  44279. source: "./media/characters/vitaen/side.svg",
  44280. extra: 1157/617,
  44281. bottom: 122/1279
  44282. }
  44283. },
  44284. },
  44285. [
  44286. {
  44287. name: "Normal",
  44288. height: math.unit(6, "feet"),
  44289. default: true
  44290. },
  44291. ]
  44292. ))
  44293. characterMakers.push(() => makeCharacter(
  44294. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44295. {
  44296. front: {
  44297. height: math.unit(19, "feet"),
  44298. name: "Front",
  44299. image: {
  44300. source: "./media/characters/fia-dreamweaver/front.svg",
  44301. extra: 1630/1504,
  44302. bottom: 25/1655
  44303. }
  44304. },
  44305. },
  44306. [
  44307. {
  44308. name: "Normal",
  44309. height: math.unit(19, "feet"),
  44310. default: true
  44311. },
  44312. ]
  44313. ))
  44314. characterMakers.push(() => makeCharacter(
  44315. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44316. {
  44317. front: {
  44318. height: math.unit(5 + 4/12, "feet"),
  44319. name: "Front",
  44320. image: {
  44321. source: "./media/characters/artan/front.svg",
  44322. extra: 1618/1535,
  44323. bottom: 46/1664
  44324. }
  44325. },
  44326. back: {
  44327. height: math.unit(5 + 4/12, "feet"),
  44328. name: "Back",
  44329. image: {
  44330. source: "./media/characters/artan/back.svg",
  44331. extra: 1618/1543,
  44332. bottom: 31/1649
  44333. }
  44334. },
  44335. },
  44336. [
  44337. {
  44338. name: "Normal",
  44339. height: math.unit(5 + 4/12, "feet"),
  44340. default: true
  44341. },
  44342. ]
  44343. ))
  44344. characterMakers.push(() => makeCharacter(
  44345. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44346. {
  44347. side: {
  44348. height: math.unit(182, "cm"),
  44349. weight: math.unit(1000, "lb"),
  44350. name: "Side",
  44351. image: {
  44352. source: "./media/characters/silver-dragon/side.svg",
  44353. extra: 710/287,
  44354. bottom: 88/798
  44355. }
  44356. },
  44357. },
  44358. [
  44359. {
  44360. name: "Normal",
  44361. height: math.unit(182, "cm"),
  44362. default: true
  44363. },
  44364. ]
  44365. ))
  44366. characterMakers.push(() => makeCharacter(
  44367. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44368. {
  44369. side: {
  44370. height: math.unit(6 + 6/12, "feet"),
  44371. weight: math.unit(1.5, "tons"),
  44372. name: "Side",
  44373. image: {
  44374. source: "./media/characters/zephyr/side.svg",
  44375. extra: 1433/586,
  44376. bottom: 109/1542
  44377. }
  44378. },
  44379. },
  44380. [
  44381. {
  44382. name: "Normal",
  44383. height: math.unit(6 + 6/12, "feet"),
  44384. default: true
  44385. },
  44386. ]
  44387. ))
  44388. characterMakers.push(() => makeCharacter(
  44389. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44390. {
  44391. side: {
  44392. height: math.unit(1, "feet"),
  44393. name: "Side",
  44394. image: {
  44395. source: "./media/characters/vixye/side.svg",
  44396. extra: 632/541,
  44397. bottom: 0/632
  44398. }
  44399. },
  44400. },
  44401. [
  44402. {
  44403. name: "Normal",
  44404. height: math.unit(1, "feet"),
  44405. default: true
  44406. },
  44407. {
  44408. name: "True",
  44409. height: math.unit(1e15, "multiverses")
  44410. },
  44411. ]
  44412. ))
  44413. characterMakers.push(() => makeCharacter(
  44414. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44415. {
  44416. front: {
  44417. height: math.unit(8 + 2/12, "feet"),
  44418. weight: math.unit(650, "lb"),
  44419. name: "Front",
  44420. image: {
  44421. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44422. extra: 1174/1137,
  44423. bottom: 82/1256
  44424. }
  44425. },
  44426. back: {
  44427. height: math.unit(8 + 2/12, "feet"),
  44428. weight: math.unit(650, "lb"),
  44429. name: "Back",
  44430. image: {
  44431. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44432. extra: 1204/1157,
  44433. bottom: 46/1250
  44434. }
  44435. },
  44436. },
  44437. [
  44438. {
  44439. name: "Wildform",
  44440. height: math.unit(8 + 2/12, "feet"),
  44441. default: true
  44442. },
  44443. ]
  44444. ))
  44445. characterMakers.push(() => makeCharacter(
  44446. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44447. {
  44448. front: {
  44449. height: math.unit(18, "feet"),
  44450. name: "Front",
  44451. image: {
  44452. source: "./media/characters/cyphin/front.svg",
  44453. extra: 970/886,
  44454. bottom: 42/1012
  44455. }
  44456. },
  44457. back: {
  44458. height: math.unit(18, "feet"),
  44459. name: "Back",
  44460. image: {
  44461. source: "./media/characters/cyphin/back.svg",
  44462. extra: 1009/894,
  44463. bottom: 24/1033
  44464. }
  44465. },
  44466. head: {
  44467. height: math.unit(5.05, "feet"),
  44468. name: "Head",
  44469. image: {
  44470. source: "./media/characters/cyphin/head.svg"
  44471. }
  44472. },
  44473. tailbud: {
  44474. height: math.unit(5, "feet"),
  44475. name: "Tailbud",
  44476. image: {
  44477. source: "./media/characters/cyphin/tailbud.svg"
  44478. }
  44479. },
  44480. },
  44481. [
  44482. ]
  44483. ))
  44484. characterMakers.push(() => makeCharacter(
  44485. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44486. {
  44487. side: {
  44488. height: math.unit(10, "feet"),
  44489. weight: math.unit(6, "tons"),
  44490. name: "Side",
  44491. image: {
  44492. source: "./media/characters/raijin/side.svg",
  44493. extra: 1529/613,
  44494. bottom: 337/1866
  44495. }
  44496. },
  44497. },
  44498. [
  44499. {
  44500. name: "Normal",
  44501. height: math.unit(10, "feet"),
  44502. default: true
  44503. },
  44504. ]
  44505. ))
  44506. characterMakers.push(() => makeCharacter(
  44507. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44508. {
  44509. side: {
  44510. height: math.unit(9, "feet"),
  44511. name: "Side",
  44512. image: {
  44513. source: "./media/characters/nilghais/side.svg",
  44514. extra: 1047/744,
  44515. bottom: 91/1138
  44516. }
  44517. },
  44518. head: {
  44519. height: math.unit(3.14, "feet"),
  44520. name: "Head",
  44521. image: {
  44522. source: "./media/characters/nilghais/head.svg"
  44523. }
  44524. },
  44525. mouth: {
  44526. height: math.unit(4.6, "feet"),
  44527. name: "Mouth",
  44528. image: {
  44529. source: "./media/characters/nilghais/mouth.svg"
  44530. }
  44531. },
  44532. wings: {
  44533. height: math.unit(24, "feet"),
  44534. name: "Wings",
  44535. image: {
  44536. source: "./media/characters/nilghais/wings.svg"
  44537. }
  44538. },
  44539. ass: {
  44540. height: math.unit(6.12, "feet"),
  44541. name: "Ass",
  44542. image: {
  44543. source: "./media/characters/nilghais/ass.svg"
  44544. }
  44545. },
  44546. },
  44547. [
  44548. {
  44549. name: "Normal",
  44550. height: math.unit(9, "feet"),
  44551. default: true
  44552. },
  44553. ]
  44554. ))
  44555. characterMakers.push(() => makeCharacter(
  44556. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44557. {
  44558. regular: {
  44559. height: math.unit(16 + 2/12, "feet"),
  44560. weight: math.unit(2300, "lb"),
  44561. name: "Regular",
  44562. image: {
  44563. source: "./media/characters/zolgar/regular.svg",
  44564. extra: 1246/1004,
  44565. bottom: 124/1370
  44566. }
  44567. },
  44568. boxers: {
  44569. height: math.unit(16 + 2/12, "feet"),
  44570. weight: math.unit(2300, "lb"),
  44571. name: "Boxers",
  44572. image: {
  44573. source: "./media/characters/zolgar/boxers.svg",
  44574. extra: 1246/1004,
  44575. bottom: 124/1370
  44576. }
  44577. },
  44578. armored: {
  44579. height: math.unit(16 + 2/12, "feet"),
  44580. weight: math.unit(2300, "lb"),
  44581. name: "Armored",
  44582. image: {
  44583. source: "./media/characters/zolgar/armored.svg",
  44584. extra: 1246/1004,
  44585. bottom: 124/1370
  44586. }
  44587. },
  44588. goth: {
  44589. height: math.unit(16 + 2/12, "feet"),
  44590. weight: math.unit(2300, "lb"),
  44591. name: "Goth",
  44592. image: {
  44593. source: "./media/characters/zolgar/goth.svg",
  44594. extra: 1246/1004,
  44595. bottom: 124/1370
  44596. }
  44597. },
  44598. },
  44599. [
  44600. {
  44601. name: "Shrunken Down",
  44602. height: math.unit(9 + 2/12, "feet")
  44603. },
  44604. {
  44605. name: "Normal",
  44606. height: math.unit(16 + 2/12, "feet"),
  44607. default: true
  44608. },
  44609. ]
  44610. ))
  44611. characterMakers.push(() => makeCharacter(
  44612. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44613. {
  44614. front: {
  44615. height: math.unit(6, "feet"),
  44616. weight: math.unit(168, "lb"),
  44617. name: "Front",
  44618. image: {
  44619. source: "./media/characters/luca/front.svg",
  44620. extra: 841/667,
  44621. bottom: 102/943
  44622. }
  44623. },
  44624. },
  44625. [
  44626. {
  44627. name: "Normal",
  44628. height: math.unit(6, "feet"),
  44629. default: true
  44630. },
  44631. ]
  44632. ))
  44633. characterMakers.push(() => makeCharacter(
  44634. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44635. {
  44636. side: {
  44637. height: math.unit(7 + 3/12, "feet"),
  44638. weight: math.unit(312, "lb"),
  44639. name: "Side",
  44640. image: {
  44641. source: "./media/characters/zezo/side.svg",
  44642. extra: 1192/1067,
  44643. bottom: 63/1255
  44644. }
  44645. },
  44646. },
  44647. [
  44648. {
  44649. name: "Normal",
  44650. height: math.unit(7 + 3/12, "feet"),
  44651. default: true
  44652. },
  44653. ]
  44654. ))
  44655. characterMakers.push(() => makeCharacter(
  44656. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44657. {
  44658. front: {
  44659. height: math.unit(5 + 5/12, "feet"),
  44660. weight: math.unit(170, "lb"),
  44661. name: "Front",
  44662. image: {
  44663. source: "./media/characters/mayso/front.svg",
  44664. extra: 1215/1108,
  44665. bottom: 16/1231
  44666. }
  44667. },
  44668. },
  44669. [
  44670. {
  44671. name: "Normal",
  44672. height: math.unit(5 + 5/12, "feet"),
  44673. default: true
  44674. },
  44675. ]
  44676. ))
  44677. characterMakers.push(() => makeCharacter(
  44678. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44679. {
  44680. front: {
  44681. height: math.unit(4 + 3/12, "feet"),
  44682. weight: math.unit(80, "lb"),
  44683. name: "Front",
  44684. image: {
  44685. source: "./media/characters/hess/front.svg",
  44686. extra: 1200/1123,
  44687. bottom: 16/1216
  44688. }
  44689. },
  44690. },
  44691. [
  44692. {
  44693. name: "Normal",
  44694. height: math.unit(4 + 3/12, "feet"),
  44695. default: true
  44696. },
  44697. ]
  44698. ))
  44699. characterMakers.push(() => makeCharacter(
  44700. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44701. {
  44702. front: {
  44703. height: math.unit(1.9, "meters"),
  44704. name: "Front",
  44705. image: {
  44706. source: "./media/characters/ashgar/front.svg",
  44707. extra: 1177/1146,
  44708. bottom: 99/1276
  44709. }
  44710. },
  44711. back: {
  44712. height: math.unit(1.9, "meters"),
  44713. name: "Back",
  44714. image: {
  44715. source: "./media/characters/ashgar/back.svg",
  44716. extra: 1201/1183,
  44717. bottom: 53/1254
  44718. }
  44719. },
  44720. feral: {
  44721. height: math.unit(1.4, "meters"),
  44722. name: "Feral",
  44723. image: {
  44724. source: "./media/characters/ashgar/feral.svg",
  44725. extra: 370/345,
  44726. bottom: 45/415
  44727. }
  44728. },
  44729. },
  44730. [
  44731. {
  44732. name: "Normal",
  44733. height: math.unit(1.9, "meters"),
  44734. default: true
  44735. },
  44736. ]
  44737. ))
  44738. characterMakers.push(() => makeCharacter(
  44739. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44740. {
  44741. regular: {
  44742. height: math.unit(6, "feet"),
  44743. weight: math.unit(220, "lb"),
  44744. name: "Regular",
  44745. image: {
  44746. source: "./media/characters/phillip/regular.svg",
  44747. extra: 1373/1277,
  44748. bottom: 75/1448
  44749. }
  44750. },
  44751. dressed: {
  44752. height: math.unit(6, "feet"),
  44753. weight: math.unit(220, "lb"),
  44754. name: "Dressed",
  44755. image: {
  44756. source: "./media/characters/phillip/dressed.svg",
  44757. extra: 1373/1277,
  44758. bottom: 75/1448
  44759. }
  44760. },
  44761. paw: {
  44762. height: math.unit(1.44, "feet"),
  44763. name: "Paw",
  44764. image: {
  44765. source: "./media/characters/phillip/paw.svg"
  44766. }
  44767. },
  44768. },
  44769. [
  44770. {
  44771. name: "Normal",
  44772. height: math.unit(6, "feet"),
  44773. default: true
  44774. },
  44775. ]
  44776. ))
  44777. characterMakers.push(() => makeCharacter(
  44778. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44779. {
  44780. side: {
  44781. height: math.unit(42, "feet"),
  44782. name: "Side",
  44783. image: {
  44784. source: "./media/characters/uvula/side.svg",
  44785. extra: 683/586,
  44786. bottom: 60/743
  44787. }
  44788. },
  44789. front: {
  44790. height: math.unit(42, "feet"),
  44791. name: "Front",
  44792. image: {
  44793. source: "./media/characters/uvula/front.svg",
  44794. extra: 705/613,
  44795. bottom: 54/759
  44796. }
  44797. },
  44798. maw: {
  44799. height: math.unit(23.5, "feet"),
  44800. name: "Maw",
  44801. image: {
  44802. source: "./media/characters/uvula/maw.svg"
  44803. }
  44804. },
  44805. },
  44806. [
  44807. {
  44808. name: "Original Size",
  44809. height: math.unit(14, "inches")
  44810. },
  44811. {
  44812. name: "Human Size",
  44813. height: math.unit(6, "feet")
  44814. },
  44815. {
  44816. name: "Big",
  44817. height: math.unit(42, "feet"),
  44818. default: true
  44819. },
  44820. {
  44821. name: "Bigger",
  44822. height: math.unit(100, "feet")
  44823. },
  44824. ]
  44825. ))
  44826. characterMakers.push(() => makeCharacter(
  44827. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44828. {
  44829. front: {
  44830. height: math.unit(5 + 11/12, "feet"),
  44831. name: "Front",
  44832. image: {
  44833. source: "./media/characters/lannah/front.svg",
  44834. extra: 1208/1113,
  44835. bottom: 97/1305
  44836. }
  44837. },
  44838. },
  44839. [
  44840. {
  44841. name: "Normal",
  44842. height: math.unit(5 + 11/12, "feet"),
  44843. default: true
  44844. },
  44845. ]
  44846. ))
  44847. characterMakers.push(() => makeCharacter(
  44848. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44849. {
  44850. front: {
  44851. height: math.unit(6 + 3/12, "feet"),
  44852. weight: math.unit(3.5, "tons"),
  44853. name: "Front",
  44854. image: {
  44855. source: "./media/characters/emberflame/front.svg",
  44856. extra: 1198/672,
  44857. bottom: 82/1280
  44858. }
  44859. },
  44860. side: {
  44861. height: math.unit(6 + 3/12, "feet"),
  44862. weight: math.unit(3.5, "tons"),
  44863. name: "Side",
  44864. image: {
  44865. source: "./media/characters/emberflame/side.svg",
  44866. extra: 938/527,
  44867. bottom: 56/994
  44868. }
  44869. },
  44870. },
  44871. [
  44872. {
  44873. name: "Normal",
  44874. height: math.unit(6 + 3/12, "feet"),
  44875. default: true
  44876. },
  44877. ]
  44878. ))
  44879. characterMakers.push(() => makeCharacter(
  44880. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44881. {
  44882. side: {
  44883. height: math.unit(17.5, "feet"),
  44884. weight: math.unit(35, "tons"),
  44885. name: "Side",
  44886. image: {
  44887. source: "./media/characters/sophie-ambrose/side.svg",
  44888. extra: 1573/1242,
  44889. bottom: 71/1644
  44890. }
  44891. },
  44892. maw: {
  44893. height: math.unit(7.4, "feet"),
  44894. name: "Maw",
  44895. image: {
  44896. source: "./media/characters/sophie-ambrose/maw.svg"
  44897. }
  44898. },
  44899. },
  44900. [
  44901. {
  44902. name: "Normal",
  44903. height: math.unit(17.5, "feet"),
  44904. default: true
  44905. },
  44906. ]
  44907. ))
  44908. characterMakers.push(() => makeCharacter(
  44909. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44910. {
  44911. front: {
  44912. height: math.unit(280, "feet"),
  44913. weight: math.unit(550, "tons"),
  44914. name: "Front",
  44915. image: {
  44916. source: "./media/characters/king-mugi/front.svg",
  44917. extra: 1102/947,
  44918. bottom: 104/1206
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "King Mugi",
  44925. height: math.unit(280, "feet"),
  44926. default: true
  44927. },
  44928. ]
  44929. ))
  44930. characterMakers.push(() => makeCharacter(
  44931. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44932. {
  44933. front: {
  44934. height: math.unit(64, "meters"),
  44935. name: "Front",
  44936. image: {
  44937. source: "./media/characters/nova-fox/front.svg",
  44938. extra: 1310/1246,
  44939. bottom: 65/1375
  44940. }
  44941. },
  44942. },
  44943. [
  44944. {
  44945. name: "Macro",
  44946. height: math.unit(64, "meters"),
  44947. default: true
  44948. },
  44949. ]
  44950. ))
  44951. characterMakers.push(() => makeCharacter(
  44952. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44953. {
  44954. front: {
  44955. height: math.unit(6 + 3/12, "feet"),
  44956. weight: math.unit(170, "lb"),
  44957. name: "Front",
  44958. image: {
  44959. source: "./media/characters/sam-bat/front.svg",
  44960. extra: 1601/1411,
  44961. bottom: 125/1726
  44962. }
  44963. },
  44964. back: {
  44965. height: math.unit(6 + 3/12, "feet"),
  44966. weight: math.unit(170, "lb"),
  44967. name: "Back",
  44968. image: {
  44969. source: "./media/characters/sam-bat/back.svg",
  44970. extra: 1577/1405,
  44971. bottom: 58/1635
  44972. }
  44973. },
  44974. },
  44975. [
  44976. {
  44977. name: "Normal",
  44978. height: math.unit(6 + 3/12, "feet"),
  44979. default: true
  44980. },
  44981. ]
  44982. ))
  44983. characterMakers.push(() => makeCharacter(
  44984. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44985. {
  44986. front: {
  44987. height: math.unit(59, "feet"),
  44988. weight: math.unit(40000, "lb"),
  44989. name: "Front",
  44990. image: {
  44991. source: "./media/characters/inari/front.svg",
  44992. extra: 1884/1350,
  44993. bottom: 95/1979
  44994. }
  44995. },
  44996. },
  44997. [
  44998. {
  44999. name: "Gigantamax",
  45000. height: math.unit(59, "feet"),
  45001. default: true
  45002. },
  45003. ]
  45004. ))
  45005. characterMakers.push(() => makeCharacter(
  45006. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45007. {
  45008. front: {
  45009. height: math.unit(5 + 8/12, "feet"),
  45010. name: "Front",
  45011. image: {
  45012. source: "./media/characters/elizabeth/front.svg",
  45013. extra: 1395/1298,
  45014. bottom: 54/1449
  45015. }
  45016. },
  45017. mouth: {
  45018. height: math.unit(1.97, "feet"),
  45019. name: "Mouth",
  45020. image: {
  45021. source: "./media/characters/elizabeth/mouth.svg"
  45022. }
  45023. },
  45024. foot: {
  45025. height: math.unit(1.17, "feet"),
  45026. name: "Foot",
  45027. image: {
  45028. source: "./media/characters/elizabeth/foot.svg"
  45029. }
  45030. },
  45031. },
  45032. [
  45033. {
  45034. name: "Normal",
  45035. height: math.unit(5 + 8/12, "feet"),
  45036. default: true
  45037. },
  45038. {
  45039. name: "Minimacro",
  45040. height: math.unit(18, "feet")
  45041. },
  45042. {
  45043. name: "Macro",
  45044. height: math.unit(180, "feet")
  45045. },
  45046. ]
  45047. ))
  45048. characterMakers.push(() => makeCharacter(
  45049. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45050. {
  45051. front: {
  45052. height: math.unit(5 + 2/12, "feet"),
  45053. name: "Front",
  45054. image: {
  45055. source: "./media/characters/october-gossamer/front.svg",
  45056. extra: 505/454,
  45057. bottom: 7/512
  45058. }
  45059. },
  45060. back: {
  45061. height: math.unit(5 + 2/12, "feet"),
  45062. name: "Back",
  45063. image: {
  45064. source: "./media/characters/october-gossamer/back.svg",
  45065. extra: 501/454,
  45066. bottom: 11/512
  45067. }
  45068. },
  45069. },
  45070. [
  45071. {
  45072. name: "Normal",
  45073. height: math.unit(5 + 2/12, "feet"),
  45074. default: true
  45075. },
  45076. ]
  45077. ))
  45078. characterMakers.push(() => makeCharacter(
  45079. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45080. {
  45081. front: {
  45082. height: math.unit(5, "feet"),
  45083. name: "Front",
  45084. image: {
  45085. source: "./media/characters/epiglottis/front.svg",
  45086. extra: 923/849,
  45087. bottom: 17/940
  45088. }
  45089. },
  45090. },
  45091. [
  45092. {
  45093. name: "Original Size",
  45094. height: math.unit(10, "inches")
  45095. },
  45096. {
  45097. name: "Human Size",
  45098. height: math.unit(5, "feet"),
  45099. default: true
  45100. },
  45101. {
  45102. name: "Big",
  45103. height: math.unit(25, "feet")
  45104. },
  45105. {
  45106. name: "Bigger",
  45107. height: math.unit(50, "feet")
  45108. },
  45109. {
  45110. name: "oh lawd",
  45111. height: math.unit(75, "feet")
  45112. },
  45113. ]
  45114. ))
  45115. characterMakers.push(() => makeCharacter(
  45116. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45117. {
  45118. front: {
  45119. height: math.unit(2 + 4/12, "feet"),
  45120. weight: math.unit(60, "lb"),
  45121. name: "Front",
  45122. image: {
  45123. source: "./media/characters/lerm/front.svg",
  45124. extra: 796/790,
  45125. bottom: 79/875
  45126. }
  45127. },
  45128. },
  45129. [
  45130. {
  45131. name: "Normal",
  45132. height: math.unit(2 + 4/12, "feet"),
  45133. default: true
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45139. {
  45140. front: {
  45141. height: math.unit(5.5, "feet"),
  45142. weight: math.unit(130, "lb"),
  45143. name: "Front",
  45144. image: {
  45145. source: "./media/characters/xena-nebadon/front.svg",
  45146. extra: 1828/1730,
  45147. bottom: 79/1907
  45148. }
  45149. },
  45150. },
  45151. [
  45152. {
  45153. name: "Tiny Puppy",
  45154. height: math.unit(3, "inches")
  45155. },
  45156. {
  45157. name: "Normal",
  45158. height: math.unit(5.5, "feet"),
  45159. default: true
  45160. },
  45161. {
  45162. name: "Lotta Lady",
  45163. height: math.unit(12, "feet")
  45164. },
  45165. {
  45166. name: "Pretty Big",
  45167. height: math.unit(100, "feet")
  45168. },
  45169. {
  45170. name: "Big",
  45171. height: math.unit(500, "feet")
  45172. },
  45173. {
  45174. name: "Skyscraper Toys",
  45175. height: math.unit(2500, "feet")
  45176. },
  45177. {
  45178. name: "Plane Catcher",
  45179. height: math.unit(8, "miles")
  45180. },
  45181. {
  45182. name: "Planet Toys",
  45183. height: math.unit(15, "earths")
  45184. },
  45185. {
  45186. name: "Stardust",
  45187. height: math.unit(0.25, "galaxies")
  45188. },
  45189. {
  45190. name: "Snacks",
  45191. height: math.unit(70, "universes")
  45192. },
  45193. ]
  45194. ))
  45195. characterMakers.push(() => makeCharacter(
  45196. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45197. {
  45198. front: {
  45199. height: math.unit(1.6, "meters"),
  45200. weight: math.unit(60, "kg"),
  45201. name: "Front",
  45202. image: {
  45203. source: "./media/characters/bounty/front.svg",
  45204. extra: 1426/1308,
  45205. bottom: 15/1441
  45206. }
  45207. },
  45208. back: {
  45209. height: math.unit(1.6, "meters"),
  45210. weight: math.unit(60, "kg"),
  45211. name: "Back",
  45212. image: {
  45213. source: "./media/characters/bounty/back.svg",
  45214. extra: 1417/1307,
  45215. bottom: 8/1425
  45216. }
  45217. },
  45218. },
  45219. [
  45220. {
  45221. name: "Normal",
  45222. height: math.unit(1.6, "meters"),
  45223. default: true
  45224. },
  45225. {
  45226. name: "Macro",
  45227. height: math.unit(300, "meters")
  45228. },
  45229. ]
  45230. ))
  45231. characterMakers.push(() => makeCharacter(
  45232. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45233. {
  45234. front: {
  45235. height: math.unit(2 + 8/12, "feet"),
  45236. weight: math.unit(15, "lb"),
  45237. name: "Front",
  45238. image: {
  45239. source: "./media/characters/mochi/front.svg",
  45240. extra: 1022/852,
  45241. bottom: 435/1457
  45242. }
  45243. },
  45244. back: {
  45245. height: math.unit(2 + 8/12, "feet"),
  45246. weight: math.unit(15, "lb"),
  45247. name: "Back",
  45248. image: {
  45249. source: "./media/characters/mochi/back.svg",
  45250. extra: 1335/1119,
  45251. bottom: 39/1374
  45252. }
  45253. },
  45254. bird: {
  45255. height: math.unit(2 + 8/12, "feet"),
  45256. weight: math.unit(15, "lb"),
  45257. name: "Bird",
  45258. image: {
  45259. source: "./media/characters/mochi/bird.svg",
  45260. extra: 1251/1113,
  45261. bottom: 178/1429
  45262. }
  45263. },
  45264. kaiju: {
  45265. height: math.unit(154, "feet"),
  45266. weight: math.unit(1e7, "lb"),
  45267. name: "Kaiju",
  45268. image: {
  45269. source: "./media/characters/mochi/kaiju.svg",
  45270. extra: 460/324,
  45271. bottom: 40/500
  45272. }
  45273. },
  45274. head: {
  45275. height: math.unit(1.21, "feet"),
  45276. name: "Head",
  45277. image: {
  45278. source: "./media/characters/mochi/head.svg"
  45279. }
  45280. },
  45281. alternateTail: {
  45282. height: math.unit(2 + 8/12, "feet"),
  45283. weight: math.unit(45, "lb"),
  45284. name: "Alternate Tail",
  45285. image: {
  45286. source: "./media/characters/mochi/alternate-tail.svg",
  45287. extra: 139/76,
  45288. bottom: 45/184
  45289. }
  45290. },
  45291. },
  45292. [
  45293. {
  45294. name: "Micro",
  45295. height: math.unit(2, "inches")
  45296. },
  45297. {
  45298. name: "Normal",
  45299. height: math.unit(2 + 8/12, "feet"),
  45300. default: true
  45301. },
  45302. {
  45303. name: "Macro",
  45304. height: math.unit(106, "feet")
  45305. },
  45306. ]
  45307. ))
  45308. characterMakers.push(() => makeCharacter(
  45309. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45310. {
  45311. front: {
  45312. height: math.unit(5.67, "feet"),
  45313. weight: math.unit(135, "lb"),
  45314. name: "Front",
  45315. image: {
  45316. source: "./media/characters/sarel/front.svg",
  45317. extra: 865/788,
  45318. bottom: 97/962
  45319. }
  45320. },
  45321. back: {
  45322. height: math.unit(5.67, "feet"),
  45323. weight: math.unit(135, "lb"),
  45324. name: "Back",
  45325. image: {
  45326. source: "./media/characters/sarel/back.svg",
  45327. extra: 857/777,
  45328. bottom: 32/889
  45329. }
  45330. },
  45331. chozoan: {
  45332. height: math.unit(5.67, "feet"),
  45333. weight: math.unit(135, "lb"),
  45334. name: "Chozoan",
  45335. image: {
  45336. source: "./media/characters/sarel/chozoan.svg",
  45337. extra: 865/788,
  45338. bottom: 97/962
  45339. }
  45340. },
  45341. current: {
  45342. height: math.unit(5.67, "feet"),
  45343. weight: math.unit(135, "lb"),
  45344. name: "Current",
  45345. image: {
  45346. source: "./media/characters/sarel/current.svg",
  45347. extra: 865/788,
  45348. bottom: 97/962
  45349. }
  45350. },
  45351. head: {
  45352. height: math.unit(1.77, "feet"),
  45353. name: "Head",
  45354. image: {
  45355. source: "./media/characters/sarel/head.svg"
  45356. }
  45357. },
  45358. claws: {
  45359. height: math.unit(1.8, "feet"),
  45360. name: "Claws",
  45361. image: {
  45362. source: "./media/characters/sarel/claws.svg"
  45363. }
  45364. },
  45365. clawsAlt: {
  45366. height: math.unit(1.8, "feet"),
  45367. name: "Claws-alt",
  45368. image: {
  45369. source: "./media/characters/sarel/claws-alt.svg"
  45370. }
  45371. },
  45372. },
  45373. [
  45374. {
  45375. name: "Normal",
  45376. height: math.unit(5.67, "feet"),
  45377. default: true
  45378. },
  45379. ]
  45380. ))
  45381. characterMakers.push(() => makeCharacter(
  45382. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45383. {
  45384. front: {
  45385. height: math.unit(5500, "feet"),
  45386. name: "Front",
  45387. image: {
  45388. source: "./media/characters/alyonia/front.svg",
  45389. extra: 1200/1135,
  45390. bottom: 29/1229
  45391. }
  45392. },
  45393. back: {
  45394. height: math.unit(5500, "feet"),
  45395. name: "Back",
  45396. image: {
  45397. source: "./media/characters/alyonia/back.svg",
  45398. extra: 1205/1138,
  45399. bottom: 10/1215
  45400. }
  45401. },
  45402. },
  45403. [
  45404. {
  45405. name: "Small",
  45406. height: math.unit(10, "feet")
  45407. },
  45408. {
  45409. name: "Macro",
  45410. height: math.unit(500, "feet")
  45411. },
  45412. {
  45413. name: "Mega Macro",
  45414. height: math.unit(5500, "feet"),
  45415. default: true
  45416. },
  45417. {
  45418. name: "Mega Macro+",
  45419. height: math.unit(500000, "feet")
  45420. },
  45421. {
  45422. name: "Giga Macro",
  45423. height: math.unit(3000, "miles")
  45424. },
  45425. {
  45426. name: "Tera Macro",
  45427. height: math.unit(2.8e6, "miles")
  45428. },
  45429. {
  45430. name: "Galactic",
  45431. height: math.unit(120000, "lightyears")
  45432. },
  45433. ]
  45434. ))
  45435. characterMakers.push(() => makeCharacter(
  45436. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45437. {
  45438. werewolf: {
  45439. height: math.unit(8, "feet"),
  45440. weight: math.unit(425, "lb"),
  45441. name: "Werewolf",
  45442. image: {
  45443. source: "./media/characters/autumn/werewolf.svg",
  45444. extra: 2154/2031,
  45445. bottom: 160/2314
  45446. }
  45447. },
  45448. human: {
  45449. height: math.unit(5 + 8/12, "feet"),
  45450. weight: math.unit(150, "lb"),
  45451. name: "Human",
  45452. image: {
  45453. source: "./media/characters/autumn/human.svg",
  45454. extra: 1200/1149,
  45455. bottom: 30/1230
  45456. }
  45457. },
  45458. },
  45459. [
  45460. {
  45461. name: "Normal",
  45462. height: math.unit(8, "feet"),
  45463. default: true
  45464. },
  45465. ]
  45466. ))
  45467. characterMakers.push(() => makeCharacter(
  45468. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45469. {
  45470. front: {
  45471. height: math.unit(8 + 5/12, "feet"),
  45472. weight: math.unit(825, "lb"),
  45473. name: "Front",
  45474. image: {
  45475. source: "./media/characters/cobalt-charizard/front.svg",
  45476. extra: 1268/1155,
  45477. bottom: 122/1390
  45478. }
  45479. },
  45480. side: {
  45481. height: math.unit(8 + 5/12, "feet"),
  45482. weight: math.unit(825, "lb"),
  45483. name: "Side",
  45484. image: {
  45485. source: "./media/characters/cobalt-charizard/side.svg",
  45486. extra: 1348/1257,
  45487. bottom: 58/1406
  45488. }
  45489. },
  45490. gMax: {
  45491. height: math.unit(134 + 11/12, "feet"),
  45492. name: "G-Max",
  45493. image: {
  45494. source: "./media/characters/cobalt-charizard/g-max.svg",
  45495. extra: 1835/1541,
  45496. bottom: 151/1986
  45497. }
  45498. },
  45499. },
  45500. [
  45501. {
  45502. name: "Normal",
  45503. height: math.unit(8 + 5/12, "feet"),
  45504. default: true
  45505. },
  45506. ]
  45507. ))
  45508. characterMakers.push(() => makeCharacter(
  45509. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45510. {
  45511. front: {
  45512. height: math.unit(6 + 3/12, "feet"),
  45513. weight: math.unit(210, "lb"),
  45514. name: "Front",
  45515. image: {
  45516. source: "./media/characters/stella/front.svg",
  45517. extra: 3549/3335,
  45518. bottom: 51/3600
  45519. }
  45520. },
  45521. },
  45522. [
  45523. {
  45524. name: "Normal",
  45525. height: math.unit(6 + 3/12, "feet"),
  45526. default: true
  45527. },
  45528. ]
  45529. ))
  45530. characterMakers.push(() => makeCharacter(
  45531. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45532. {
  45533. front: {
  45534. height: math.unit(5, "feet"),
  45535. weight: math.unit(90, "lb"),
  45536. name: "Front",
  45537. image: {
  45538. source: "./media/characters/riley-bishop/front.svg",
  45539. extra: 1450/1428,
  45540. bottom: 152/1602
  45541. }
  45542. },
  45543. },
  45544. [
  45545. {
  45546. name: "Normal",
  45547. height: math.unit(5, "feet"),
  45548. default: true
  45549. },
  45550. ]
  45551. ))
  45552. characterMakers.push(() => makeCharacter(
  45553. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45554. {
  45555. side: {
  45556. height: math.unit(8 + 2/12, "feet"),
  45557. weight: math.unit(500, "kg"),
  45558. name: "Side",
  45559. image: {
  45560. source: "./media/characters/theo-arcanine/side.svg",
  45561. extra: 1342/1074,
  45562. bottom: 111/1453
  45563. }
  45564. },
  45565. },
  45566. [
  45567. {
  45568. name: "Normal",
  45569. height: math.unit(8 + 2/12, "feet"),
  45570. default: true
  45571. },
  45572. ]
  45573. ))
  45574. characterMakers.push(() => makeCharacter(
  45575. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45576. {
  45577. front: {
  45578. height: math.unit(4, "feet"),
  45579. name: "Front",
  45580. image: {
  45581. source: "./media/characters/kali/front.svg",
  45582. extra: 1074/867,
  45583. bottom: 34/1108
  45584. }
  45585. },
  45586. back: {
  45587. height: math.unit(4, "feet"),
  45588. name: "Back",
  45589. image: {
  45590. source: "./media/characters/kali/back.svg",
  45591. extra: 1068/863,
  45592. bottom: 26/1094
  45593. }
  45594. },
  45595. frontAlt: {
  45596. height: math.unit(4, "feet"),
  45597. name: "Front (Alt)",
  45598. image: {
  45599. source: "./media/characters/kali/front-alt.svg",
  45600. extra: 1921/1357,
  45601. bottom: 70/1991
  45602. }
  45603. },
  45604. },
  45605. [
  45606. {
  45607. name: "Normal",
  45608. height: math.unit(4, "feet"),
  45609. default: true
  45610. },
  45611. {
  45612. name: "Big'vali",
  45613. height: math.unit(11, "feet")
  45614. },
  45615. {
  45616. name: "Macro",
  45617. height: math.unit(32, "meters")
  45618. },
  45619. {
  45620. name: "Macro+",
  45621. height: math.unit(150, "meters")
  45622. },
  45623. {
  45624. name: "Megamacro",
  45625. height: math.unit(7500, "meters")
  45626. },
  45627. {
  45628. name: "Megamacro+",
  45629. height: math.unit(80, "kilometers")
  45630. },
  45631. ]
  45632. ))
  45633. characterMakers.push(() => makeCharacter(
  45634. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45635. {
  45636. side: {
  45637. height: math.unit(5 + 11/12, "feet"),
  45638. weight: math.unit(236, "lb"),
  45639. name: "Side",
  45640. image: {
  45641. source: "./media/characters/gapp/side.svg",
  45642. extra: 775/340,
  45643. bottom: 58/833
  45644. }
  45645. },
  45646. mouth: {
  45647. height: math.unit(2.98, "feet"),
  45648. name: "Mouth",
  45649. image: {
  45650. source: "./media/characters/gapp/mouth.svg"
  45651. }
  45652. },
  45653. },
  45654. [
  45655. {
  45656. name: "Normal",
  45657. height: math.unit(5 + 1/12, "feet"),
  45658. default: true
  45659. },
  45660. ]
  45661. ))
  45662. characterMakers.push(() => makeCharacter(
  45663. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45664. {
  45665. front: {
  45666. height: math.unit(6, "feet"),
  45667. name: "Front",
  45668. image: {
  45669. source: "./media/characters/persephone/front.svg",
  45670. extra: 1895/1717,
  45671. bottom: 96/1991
  45672. }
  45673. },
  45674. back: {
  45675. height: math.unit(6, "feet"),
  45676. name: "Back",
  45677. image: {
  45678. source: "./media/characters/persephone/back.svg",
  45679. extra: 1868/1679,
  45680. bottom: 26/1894
  45681. }
  45682. },
  45683. casual: {
  45684. height: math.unit(6, "feet"),
  45685. name: "Casual",
  45686. image: {
  45687. source: "./media/characters/persephone/casual.svg",
  45688. extra: 1713/1541,
  45689. bottom: 76/1789
  45690. }
  45691. },
  45692. gaming: {
  45693. height: math.unit(3.55, "feet"),
  45694. name: "Gaming",
  45695. image: {
  45696. source: "./media/characters/persephone/gaming.svg",
  45697. extra: 1242/1038,
  45698. bottom: 66/1308
  45699. }
  45700. },
  45701. head: {
  45702. height: math.unit(2.15, "feet"),
  45703. name: "😐",
  45704. image: {
  45705. source: "./media/characters/persephone/head.svg"
  45706. }
  45707. },
  45708. talking: {
  45709. height: math.unit(2.5, "feet"),
  45710. name: "💬",
  45711. image: {
  45712. source: "./media/characters/persephone/talking.svg"
  45713. }
  45714. },
  45715. hmm: {
  45716. height: math.unit(2.28, "feet"),
  45717. name: "🤨",
  45718. image: {
  45719. source: "./media/characters/persephone/hmm.svg"
  45720. }
  45721. },
  45722. },
  45723. [
  45724. {
  45725. name: "Human Size",
  45726. height: math.unit(6, "feet")
  45727. },
  45728. {
  45729. name: "Big Steppy",
  45730. height: math.unit(600, "meters"),
  45731. default: true
  45732. },
  45733. {
  45734. name: "Galaxy Brain",
  45735. height: math.unit(1, "zettameter")
  45736. },
  45737. ]
  45738. ))
  45739. characterMakers.push(() => makeCharacter(
  45740. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45741. {
  45742. front: {
  45743. height: math.unit(1.85, "meters"),
  45744. name: "Front",
  45745. image: {
  45746. source: "./media/characters/riley-foxthing/front.svg",
  45747. extra: 1495/1354,
  45748. bottom: 122/1617
  45749. }
  45750. },
  45751. frontAlt: {
  45752. height: math.unit(1.85, "meters"),
  45753. name: "Front (Alt)",
  45754. image: {
  45755. source: "./media/characters/riley-foxthing/front-alt.svg",
  45756. extra: 1572/1389,
  45757. bottom: 116/1688
  45758. }
  45759. },
  45760. },
  45761. [
  45762. {
  45763. name: "Normal Sized",
  45764. height: math.unit(1.85, "meters"),
  45765. default: true
  45766. },
  45767. {
  45768. name: "Quite Sizable",
  45769. height: math.unit(5, "meters")
  45770. },
  45771. {
  45772. name: "Rather Large",
  45773. height: math.unit(20, "meters")
  45774. },
  45775. {
  45776. name: "Macro",
  45777. height: math.unit(450, "meters")
  45778. },
  45779. {
  45780. name: "Giga",
  45781. height: math.unit(5, "km")
  45782. },
  45783. ]
  45784. ))
  45785. characterMakers.push(() => makeCharacter(
  45786. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45787. {
  45788. front: {
  45789. height: math.unit(6, "feet"),
  45790. weight: math.unit(200, "lb"),
  45791. name: "Front",
  45792. image: {
  45793. source: "./media/characters/blizzard/front.svg",
  45794. extra: 1136/990,
  45795. bottom: 136/1272
  45796. }
  45797. },
  45798. back: {
  45799. height: math.unit(6, "feet"),
  45800. weight: math.unit(200, "lb"),
  45801. name: "Back",
  45802. image: {
  45803. source: "./media/characters/blizzard/back.svg",
  45804. extra: 1175/1034,
  45805. bottom: 97/1272
  45806. }
  45807. },
  45808. sitting: {
  45809. height: math.unit(3.725, "feet"),
  45810. weight: math.unit(200, "lb"),
  45811. name: "Sitting",
  45812. image: {
  45813. source: "./media/characters/blizzard/sitting.svg",
  45814. extra: 581/485,
  45815. bottom: 90/671
  45816. }
  45817. },
  45818. frontWizard: {
  45819. height: math.unit(7.9, "feet"),
  45820. weight: math.unit(200, "lb"),
  45821. name: "Front (Wizard)",
  45822. image: {
  45823. source: "./media/characters/blizzard/front-wizard.svg"
  45824. }
  45825. },
  45826. backWizard: {
  45827. height: math.unit(7.9, "feet"),
  45828. weight: math.unit(200, "lb"),
  45829. name: "Back (Wizard)",
  45830. image: {
  45831. source: "./media/characters/blizzard/back-wizard.svg"
  45832. }
  45833. },
  45834. frontNsfw: {
  45835. height: math.unit(6, "feet"),
  45836. weight: math.unit(200, "lb"),
  45837. name: "Front (NSFW)",
  45838. image: {
  45839. source: "./media/characters/blizzard/front-nsfw.svg",
  45840. extra: 1136/990,
  45841. bottom: 136/1272
  45842. }
  45843. },
  45844. backNsfw: {
  45845. height: math.unit(6, "feet"),
  45846. weight: math.unit(200, "lb"),
  45847. name: "Back (NSFW)",
  45848. image: {
  45849. source: "./media/characters/blizzard/back-nsfw.svg",
  45850. extra: 1175/1034,
  45851. bottom: 97/1272
  45852. }
  45853. },
  45854. sittingNsfw: {
  45855. height: math.unit(3.725, "feet"),
  45856. weight: math.unit(200, "lb"),
  45857. name: "Sitting (NSFW)",
  45858. image: {
  45859. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45860. extra: 581/485,
  45861. bottom: 90/671
  45862. }
  45863. },
  45864. wizardFrontNsfw: {
  45865. height: math.unit(7.9, "feet"),
  45866. weight: math.unit(200, "lb"),
  45867. name: "Wizard (Front, NSFW)",
  45868. image: {
  45869. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45870. }
  45871. },
  45872. },
  45873. [
  45874. {
  45875. name: "Normal",
  45876. height: math.unit(6, "feet"),
  45877. default: true
  45878. },
  45879. ]
  45880. ))
  45881. characterMakers.push(() => makeCharacter(
  45882. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45883. {
  45884. front: {
  45885. height: math.unit(5 + 2/12, "feet"),
  45886. name: "Front",
  45887. image: {
  45888. source: "./media/characters/lumi/front.svg",
  45889. extra: 1328/1268,
  45890. bottom: 103/1431
  45891. }
  45892. },
  45893. back: {
  45894. height: math.unit(5 + 2/12, "feet"),
  45895. name: "Back",
  45896. image: {
  45897. source: "./media/characters/lumi/back.svg",
  45898. extra: 1381/1327,
  45899. bottom: 43/1424
  45900. }
  45901. },
  45902. },
  45903. [
  45904. {
  45905. name: "Normal",
  45906. height: math.unit(5 + 2/12, "feet"),
  45907. default: true
  45908. },
  45909. ]
  45910. ))
  45911. characterMakers.push(() => makeCharacter(
  45912. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45913. {
  45914. front: {
  45915. height: math.unit(5 + 9/12, "feet"),
  45916. name: "Front",
  45917. image: {
  45918. source: "./media/characters/aliya-cotton/front.svg",
  45919. extra: 577/564,
  45920. bottom: 29/606
  45921. }
  45922. },
  45923. },
  45924. [
  45925. {
  45926. name: "Normal",
  45927. height: math.unit(5 + 9/12, "feet"),
  45928. default: true
  45929. },
  45930. ]
  45931. ))
  45932. characterMakers.push(() => makeCharacter(
  45933. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45934. {
  45935. front: {
  45936. height: math.unit(2.7, "meters"),
  45937. weight: math.unit(25000, "lb"),
  45938. name: "Front",
  45939. image: {
  45940. source: "./media/characters/noah-luxray/front.svg",
  45941. extra: 1644/825,
  45942. bottom: 339/1983
  45943. }
  45944. },
  45945. side: {
  45946. height: math.unit(2.97, "meters"),
  45947. weight: math.unit(25000, "lb"),
  45948. name: "Side",
  45949. image: {
  45950. source: "./media/characters/noah-luxray/side.svg",
  45951. extra: 1319/650,
  45952. bottom: 163/1482
  45953. }
  45954. },
  45955. dick: {
  45956. height: math.unit(7.4, "feet"),
  45957. weight: math.unit(2500, "lb"),
  45958. name: "Dick",
  45959. image: {
  45960. source: "./media/characters/noah-luxray/dick.svg"
  45961. }
  45962. },
  45963. dickAlt: {
  45964. height: math.unit(10.83, "feet"),
  45965. weight: math.unit(2500, "lb"),
  45966. name: "Dick-alt",
  45967. image: {
  45968. source: "./media/characters/noah-luxray/dick-alt.svg"
  45969. }
  45970. },
  45971. },
  45972. [
  45973. {
  45974. name: "BIG",
  45975. height: math.unit(2.7, "meters"),
  45976. default: true
  45977. },
  45978. ]
  45979. ))
  45980. characterMakers.push(() => makeCharacter(
  45981. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45982. {
  45983. standing: {
  45984. height: math.unit(183, "cm"),
  45985. weight: math.unit(68, "kg"),
  45986. name: "Standing",
  45987. image: {
  45988. source: "./media/characters/arion/standing.svg",
  45989. extra: 1869/1807,
  45990. bottom: 93/1962
  45991. }
  45992. },
  45993. reclining: {
  45994. height: math.unit(70.5, "cm"),
  45995. weight: math.unit(68, "lb"),
  45996. name: "Reclining",
  45997. image: {
  45998. source: "./media/characters/arion/reclining.svg",
  45999. extra: 937/870,
  46000. bottom: 63/1000
  46001. }
  46002. },
  46003. },
  46004. [
  46005. {
  46006. name: "Colossus Size, Low",
  46007. height: math.unit(33, "meters"),
  46008. default: true
  46009. },
  46010. {
  46011. name: "Colossus Size, Mid",
  46012. height: math.unit(52, "meters")
  46013. },
  46014. {
  46015. name: "Colossus Size, High",
  46016. height: math.unit(60, "meters")
  46017. },
  46018. {
  46019. name: "Titan Size, Low",
  46020. height: math.unit(91, "meters"),
  46021. },
  46022. {
  46023. name: "Titan Size, Mid",
  46024. height: math.unit(122, "meters")
  46025. },
  46026. {
  46027. name: "Titan Size, High",
  46028. height: math.unit(162, "meters")
  46029. },
  46030. ]
  46031. ))
  46032. characterMakers.push(() => makeCharacter(
  46033. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46034. {
  46035. front: {
  46036. height: math.unit(53, "meters"),
  46037. name: "Front",
  46038. image: {
  46039. source: "./media/characters/stellar-marbey/front.svg",
  46040. extra: 1913/1805,
  46041. bottom: 92/2005
  46042. }
  46043. },
  46044. back: {
  46045. height: math.unit(53, "meters"),
  46046. name: "Back",
  46047. image: {
  46048. source: "./media/characters/stellar-marbey/back.svg",
  46049. extra: 1960/1851,
  46050. bottom: 28/1988
  46051. }
  46052. },
  46053. mouth: {
  46054. height: math.unit(3.5, "meters"),
  46055. name: "Mouth",
  46056. image: {
  46057. source: "./media/characters/stellar-marbey/mouth.svg"
  46058. }
  46059. },
  46060. },
  46061. [
  46062. {
  46063. name: "Macro",
  46064. height: math.unit(53, "meters"),
  46065. default: true
  46066. },
  46067. ]
  46068. ))
  46069. characterMakers.push(() => makeCharacter(
  46070. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46071. {
  46072. front: {
  46073. height: math.unit(8 + 1/12, "feet"),
  46074. weight: math.unit(233, "lb"),
  46075. name: "Front",
  46076. image: {
  46077. source: "./media/characters/matsu/front.svg",
  46078. extra: 832/772,
  46079. bottom: 40/872
  46080. }
  46081. },
  46082. back: {
  46083. height: math.unit(8 + 1/12, "feet"),
  46084. weight: math.unit(233, "lb"),
  46085. name: "Back",
  46086. image: {
  46087. source: "./media/characters/matsu/back.svg",
  46088. extra: 839/780,
  46089. bottom: 47/886
  46090. }
  46091. },
  46092. },
  46093. [
  46094. {
  46095. name: "Normal",
  46096. height: math.unit(8 + 1/12, "feet"),
  46097. default: true
  46098. },
  46099. ]
  46100. ))
  46101. characterMakers.push(() => makeCharacter(
  46102. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46103. {
  46104. front: {
  46105. height: math.unit(4, "feet"),
  46106. weight: math.unit(148, "lb"),
  46107. name: "Front",
  46108. image: {
  46109. source: "./media/characters/thiz/front.svg",
  46110. extra: 1913/1748,
  46111. bottom: 62/1975
  46112. }
  46113. },
  46114. },
  46115. [
  46116. {
  46117. name: "Normal",
  46118. height: math.unit(4, "feet"),
  46119. default: true
  46120. },
  46121. ]
  46122. ))
  46123. characterMakers.push(() => makeCharacter(
  46124. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46125. {
  46126. front: {
  46127. height: math.unit(7 + 6/12, "feet"),
  46128. weight: math.unit(267, "lb"),
  46129. name: "Front",
  46130. image: {
  46131. source: "./media/characters/marcel/front.svg",
  46132. extra: 1221/1096,
  46133. bottom: 76/1297
  46134. }
  46135. },
  46136. },
  46137. [
  46138. {
  46139. name: "Normal",
  46140. height: math.unit(7 + 6/12, "feet"),
  46141. default: true
  46142. },
  46143. ]
  46144. ))
  46145. characterMakers.push(() => makeCharacter(
  46146. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46147. {
  46148. side: {
  46149. height: math.unit(42, "meters"),
  46150. name: "Side",
  46151. image: {
  46152. source: "./media/characters/flake/side.svg",
  46153. extra: 1525/1306,
  46154. bottom: 209/1734
  46155. }
  46156. },
  46157. },
  46158. [
  46159. {
  46160. name: "Normal",
  46161. height: math.unit(42, "meters"),
  46162. default: true
  46163. },
  46164. ]
  46165. ))
  46166. characterMakers.push(() => makeCharacter(
  46167. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46168. {
  46169. dressed: {
  46170. height: math.unit(6 + 4/12, "feet"),
  46171. weight: math.unit(520, "lb"),
  46172. name: "Dressed",
  46173. image: {
  46174. source: "./media/characters/someonne/dressed.svg",
  46175. extra: 1020/1010,
  46176. bottom: 178/1198
  46177. }
  46178. },
  46179. undressed: {
  46180. height: math.unit(6 + 4/12, "feet"),
  46181. weight: math.unit(520, "lb"),
  46182. name: "Undressed",
  46183. image: {
  46184. source: "./media/characters/someonne/undressed.svg",
  46185. extra: 1019/1014,
  46186. bottom: 169/1188
  46187. }
  46188. },
  46189. },
  46190. [
  46191. {
  46192. name: "Normal",
  46193. height: math.unit(6 + 4/12, "feet"),
  46194. default: true
  46195. },
  46196. ]
  46197. ))
  46198. characterMakers.push(() => makeCharacter(
  46199. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46200. {
  46201. front: {
  46202. height: math.unit(3, "feet"),
  46203. weight: math.unit(30, "lb"),
  46204. name: "Front",
  46205. image: {
  46206. source: "./media/characters/till/front.svg",
  46207. extra: 892/823,
  46208. bottom: 55/947
  46209. }
  46210. },
  46211. },
  46212. [
  46213. {
  46214. name: "Normal",
  46215. height: math.unit(3, "feet"),
  46216. default: true
  46217. },
  46218. ]
  46219. ))
  46220. characterMakers.push(() => makeCharacter(
  46221. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46222. {
  46223. front: {
  46224. height: math.unit(9 + 8/12, "feet"),
  46225. weight: math.unit(800, "lb"),
  46226. name: "Front",
  46227. image: {
  46228. source: "./media/characters/sydney-heki/front.svg",
  46229. extra: 1360/1300,
  46230. bottom: 22/1382
  46231. }
  46232. },
  46233. back: {
  46234. height: math.unit(9 + 8/12, "feet"),
  46235. weight: math.unit(800, "lb"),
  46236. name: "Back",
  46237. image: {
  46238. source: "./media/characters/sydney-heki/back.svg",
  46239. extra: 1356/1293,
  46240. bottom: 12/1368
  46241. }
  46242. },
  46243. frontDressed: {
  46244. height: math.unit(9 + 8/12, "feet"),
  46245. weight: math.unit(800, "lb"),
  46246. name: "Front-dressed",
  46247. image: {
  46248. source: "./media/characters/sydney-heki/front-dressed.svg",
  46249. extra: 1360/1300,
  46250. bottom: 22/1382
  46251. }
  46252. },
  46253. },
  46254. [
  46255. {
  46256. name: "Normal",
  46257. height: math.unit(9 + 8/12, "feet"),
  46258. default: true
  46259. },
  46260. {
  46261. name: "Macro",
  46262. height: math.unit(500, "feet")
  46263. },
  46264. {
  46265. name: "Megamacro",
  46266. height: math.unit(3.6, "miles")
  46267. },
  46268. ]
  46269. ))
  46270. characterMakers.push(() => makeCharacter(
  46271. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46272. {
  46273. front: {
  46274. height: math.unit(200, "cm"),
  46275. weight: math.unit(250, "lb"),
  46276. name: "Front",
  46277. image: {
  46278. source: "./media/characters/fowler-karlsson/front.svg",
  46279. extra: 897/845,
  46280. bottom: 123/1020
  46281. }
  46282. },
  46283. back: {
  46284. height: math.unit(200, "cm"),
  46285. weight: math.unit(250, "lb"),
  46286. name: "Back",
  46287. image: {
  46288. source: "./media/characters/fowler-karlsson/back.svg",
  46289. extra: 999/944,
  46290. bottom: 26/1025
  46291. }
  46292. },
  46293. dick: {
  46294. height: math.unit(1.92, "feet"),
  46295. weight: math.unit(150, "lb"),
  46296. name: "Dick",
  46297. image: {
  46298. source: "./media/characters/fowler-karlsson/dick.svg"
  46299. }
  46300. },
  46301. },
  46302. [
  46303. {
  46304. name: "Normal",
  46305. height: math.unit(200, "cm"),
  46306. default: true
  46307. },
  46308. {
  46309. name: "Smaller Macro",
  46310. height: math.unit(90, "m")
  46311. },
  46312. {
  46313. name: "Macro",
  46314. height: math.unit(150, "m")
  46315. },
  46316. {
  46317. name: "Bigger Macro",
  46318. height: math.unit(300, "m")
  46319. },
  46320. ]
  46321. ))
  46322. characterMakers.push(() => makeCharacter(
  46323. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46324. {
  46325. side: {
  46326. height: math.unit(8 + 2/12, "feet"),
  46327. weight: math.unit(1, "tonne"),
  46328. name: "Side",
  46329. image: {
  46330. source: "./media/characters/rylide/side.svg",
  46331. extra: 1318/1034,
  46332. bottom: 106/1424
  46333. }
  46334. },
  46335. sitting: {
  46336. height: math.unit(303, "cm"),
  46337. weight: math.unit(1, "tonne"),
  46338. name: "Sitting",
  46339. image: {
  46340. source: "./media/characters/rylide/sitting.svg",
  46341. extra: 1303/1103,
  46342. bottom: 36/1339
  46343. }
  46344. },
  46345. },
  46346. [
  46347. {
  46348. name: "Normal",
  46349. height: math.unit(8 + 2/12, "feet"),
  46350. default: true
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46356. {
  46357. front: {
  46358. height: math.unit(5 + 10/12, "feet"),
  46359. weight: math.unit(160, "lb"),
  46360. name: "Front",
  46361. image: {
  46362. source: "./media/characters/pudask/front.svg",
  46363. extra: 1616/1590,
  46364. bottom: 161/1777
  46365. }
  46366. },
  46367. },
  46368. [
  46369. {
  46370. name: "Ferret Height",
  46371. height: math.unit(2 + 5/12, "feet")
  46372. },
  46373. {
  46374. name: "Canon Height",
  46375. height: math.unit(5 + 10/12, "feet"),
  46376. default: true
  46377. },
  46378. ]
  46379. ))
  46380. characterMakers.push(() => makeCharacter(
  46381. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46382. {
  46383. front: {
  46384. height: math.unit(3 + 6/12, "feet"),
  46385. weight: math.unit(60, "lb"),
  46386. name: "Front",
  46387. image: {
  46388. source: "./media/characters/ramita/front.svg",
  46389. extra: 1402/1232,
  46390. bottom: 62/1464
  46391. }
  46392. },
  46393. dressed: {
  46394. height: math.unit(3 + 6/12, "feet"),
  46395. weight: math.unit(60, "lb"),
  46396. name: "Dressed",
  46397. image: {
  46398. source: "./media/characters/ramita/dressed.svg",
  46399. extra: 1534/1249,
  46400. bottom: 50/1584
  46401. }
  46402. },
  46403. },
  46404. [
  46405. {
  46406. name: "Normal",
  46407. height: math.unit(3 + 6/12, "feet"),
  46408. default: true
  46409. },
  46410. ]
  46411. ))
  46412. characterMakers.push(() => makeCharacter(
  46413. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46414. {
  46415. front: {
  46416. height: math.unit(8, "feet"),
  46417. name: "Front",
  46418. image: {
  46419. source: "./media/characters/ark/front.svg",
  46420. extra: 772/693,
  46421. bottom: 45/817
  46422. }
  46423. },
  46424. },
  46425. [
  46426. {
  46427. name: "Normal",
  46428. height: math.unit(8, "feet"),
  46429. default: true
  46430. },
  46431. ]
  46432. ))
  46433. characterMakers.push(() => makeCharacter(
  46434. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46435. {
  46436. front: {
  46437. height: math.unit(6, "feet"),
  46438. weight: math.unit(250, "lb"),
  46439. volume: math.unit(5/8, "gallons"),
  46440. name: "Front",
  46441. image: {
  46442. source: "./media/characters/ludwig-horn/front.svg",
  46443. extra: 1782/1635,
  46444. bottom: 96/1878
  46445. }
  46446. },
  46447. back: {
  46448. height: math.unit(6, "feet"),
  46449. weight: math.unit(250, "lb"),
  46450. volume: math.unit(5/8, "gallons"),
  46451. name: "Back",
  46452. image: {
  46453. source: "./media/characters/ludwig-horn/back.svg",
  46454. extra: 1874/1729,
  46455. bottom: 27/1901
  46456. }
  46457. },
  46458. dick: {
  46459. height: math.unit(1.05, "feet"),
  46460. weight: math.unit(15, "lb"),
  46461. volume: math.unit(5/8, "gallons"),
  46462. name: "Dick",
  46463. image: {
  46464. source: "./media/characters/ludwig-horn/dick.svg"
  46465. }
  46466. },
  46467. },
  46468. [
  46469. {
  46470. name: "Small",
  46471. height: math.unit(6, "feet")
  46472. },
  46473. {
  46474. name: "Typical",
  46475. height: math.unit(12, "feet"),
  46476. default: true
  46477. },
  46478. {
  46479. name: "Building",
  46480. height: math.unit(80, "feet")
  46481. },
  46482. {
  46483. name: "Town",
  46484. height: math.unit(800, "feet")
  46485. },
  46486. {
  46487. name: "Kingdom",
  46488. height: math.unit(80000, "feet")
  46489. },
  46490. {
  46491. name: "Planet",
  46492. height: math.unit(8000000, "feet")
  46493. },
  46494. {
  46495. name: "Universe",
  46496. height: math.unit(8000000000, "feet")
  46497. },
  46498. {
  46499. name: "Transcended",
  46500. height: math.unit(8e27, "feet")
  46501. },
  46502. ]
  46503. ))
  46504. characterMakers.push(() => makeCharacter(
  46505. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46506. {
  46507. front: {
  46508. height: math.unit(5, "feet"),
  46509. weight: math.unit(50, "kg"),
  46510. name: "Front",
  46511. image: {
  46512. source: "./media/characters/biot-avery/front.svg",
  46513. extra: 1295/1232,
  46514. bottom: 86/1381
  46515. }
  46516. },
  46517. },
  46518. [
  46519. {
  46520. name: "Normal",
  46521. height: math.unit(5, "feet"),
  46522. default: true
  46523. },
  46524. ]
  46525. ))
  46526. characterMakers.push(() => makeCharacter(
  46527. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46528. {
  46529. front: {
  46530. height: math.unit(6, "feet"),
  46531. name: "Front",
  46532. image: {
  46533. source: "./media/characters/kitsune-kiro/front.svg",
  46534. extra: 1270/1158,
  46535. bottom: 42/1312
  46536. }
  46537. },
  46538. frontAlt: {
  46539. height: math.unit(6, "feet"),
  46540. name: "Front-alt",
  46541. image: {
  46542. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46543. extra: 1130/1081,
  46544. bottom: 36/1166
  46545. }
  46546. },
  46547. },
  46548. [
  46549. {
  46550. name: "Smol",
  46551. height: math.unit(3, "feet")
  46552. },
  46553. {
  46554. name: "Normal",
  46555. height: math.unit(6, "feet"),
  46556. default: true
  46557. },
  46558. ]
  46559. ))
  46560. characterMakers.push(() => makeCharacter(
  46561. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46562. {
  46563. front: {
  46564. height: math.unit(6, "feet"),
  46565. weight: math.unit(125, "lb"),
  46566. name: "Front",
  46567. image: {
  46568. source: "./media/characters/jack-thatcher/front.svg",
  46569. extra: 1474/1370,
  46570. bottom: 26/1500
  46571. }
  46572. },
  46573. back: {
  46574. height: math.unit(6, "feet"),
  46575. weight: math.unit(125, "lb"),
  46576. name: "Back",
  46577. image: {
  46578. source: "./media/characters/jack-thatcher/back.svg",
  46579. extra: 1489/1384,
  46580. bottom: 18/1507
  46581. }
  46582. },
  46583. },
  46584. [
  46585. {
  46586. name: "Normal",
  46587. height: math.unit(6, "feet"),
  46588. default: true
  46589. },
  46590. {
  46591. name: "Macro",
  46592. height: math.unit(75, "feet")
  46593. },
  46594. {
  46595. name: "Macro-er",
  46596. height: math.unit(250, "feet")
  46597. },
  46598. ]
  46599. ))
  46600. characterMakers.push(() => makeCharacter(
  46601. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46602. {
  46603. front: {
  46604. height: math.unit(7, "feet"),
  46605. weight: math.unit(110, "kg"),
  46606. name: "Front",
  46607. image: {
  46608. source: "./media/characters/max-hyper/front.svg",
  46609. extra: 1969/1881,
  46610. bottom: 49/2018
  46611. }
  46612. },
  46613. },
  46614. [
  46615. {
  46616. name: "Normal",
  46617. height: math.unit(7, "feet"),
  46618. default: true
  46619. },
  46620. ]
  46621. ))
  46622. characterMakers.push(() => makeCharacter(
  46623. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46624. {
  46625. front: {
  46626. height: math.unit(5 + 5/12, "feet"),
  46627. weight: math.unit(160, "lb"),
  46628. name: "Front",
  46629. image: {
  46630. source: "./media/characters/spook/front.svg",
  46631. extra: 794/791,
  46632. bottom: 54/848
  46633. }
  46634. },
  46635. back: {
  46636. height: math.unit(5 + 5/12, "feet"),
  46637. weight: math.unit(160, "lb"),
  46638. name: "Back",
  46639. image: {
  46640. source: "./media/characters/spook/back.svg",
  46641. extra: 812/798,
  46642. bottom: 32/844
  46643. }
  46644. },
  46645. },
  46646. [
  46647. {
  46648. name: "Normal",
  46649. height: math.unit(5 + 5/12, "feet"),
  46650. default: true
  46651. },
  46652. ]
  46653. ))
  46654. characterMakers.push(() => makeCharacter(
  46655. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46656. {
  46657. front: {
  46658. height: math.unit(18, "feet"),
  46659. name: "Front",
  46660. image: {
  46661. source: "./media/characters/xeaduulix/front.svg",
  46662. extra: 1380/1166,
  46663. bottom: 110/1490
  46664. }
  46665. },
  46666. back: {
  46667. height: math.unit(18, "feet"),
  46668. name: "Back",
  46669. image: {
  46670. source: "./media/characters/xeaduulix/back.svg",
  46671. extra: 1592/1170,
  46672. bottom: 128/1720
  46673. }
  46674. },
  46675. frontNsfw: {
  46676. height: math.unit(18, "feet"),
  46677. name: "Front (NSFW)",
  46678. image: {
  46679. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46680. extra: 1380/1166,
  46681. bottom: 110/1490
  46682. }
  46683. },
  46684. backNsfw: {
  46685. height: math.unit(18, "feet"),
  46686. name: "Back (NSFW)",
  46687. image: {
  46688. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46689. extra: 1592/1170,
  46690. bottom: 128/1720
  46691. }
  46692. },
  46693. },
  46694. [
  46695. {
  46696. name: "Normal",
  46697. height: math.unit(18, "feet"),
  46698. default: true
  46699. },
  46700. ]
  46701. ))
  46702. characterMakers.push(() => makeCharacter(
  46703. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46704. {
  46705. spreadWings: {
  46706. height: math.unit(20, "feet"),
  46707. name: "Spread Wings",
  46708. image: {
  46709. source: "./media/characters/fledge/spread-wings.svg",
  46710. extra: 693/635,
  46711. bottom: 26/719
  46712. }
  46713. },
  46714. front: {
  46715. height: math.unit(20, "feet"),
  46716. name: "Front",
  46717. image: {
  46718. source: "./media/characters/fledge/front.svg",
  46719. extra: 684/637,
  46720. bottom: 18/702
  46721. }
  46722. },
  46723. frontAlt: {
  46724. height: math.unit(20, "feet"),
  46725. name: "Front (Alt)",
  46726. image: {
  46727. source: "./media/characters/fledge/front-alt.svg",
  46728. extra: 708/664,
  46729. bottom: 13/721
  46730. }
  46731. },
  46732. back: {
  46733. height: math.unit(20, "feet"),
  46734. name: "Back",
  46735. image: {
  46736. source: "./media/characters/fledge/back.svg",
  46737. extra: 718/634,
  46738. bottom: 22/740
  46739. }
  46740. },
  46741. head: {
  46742. height: math.unit(5.55, "feet"),
  46743. name: "Head",
  46744. image: {
  46745. source: "./media/characters/fledge/head.svg"
  46746. }
  46747. },
  46748. headAlt: {
  46749. height: math.unit(5.1, "feet"),
  46750. name: "Head (Alt)",
  46751. image: {
  46752. source: "./media/characters/fledge/head-alt.svg"
  46753. }
  46754. },
  46755. },
  46756. [
  46757. {
  46758. name: "Small",
  46759. height: math.unit(6 + 2/12, "feet")
  46760. },
  46761. {
  46762. name: "Big",
  46763. height: math.unit(20, "feet"),
  46764. default: true
  46765. },
  46766. {
  46767. name: "Giant",
  46768. height: math.unit(100, "feet")
  46769. },
  46770. {
  46771. name: "Macro",
  46772. height: math.unit(200, "feet")
  46773. },
  46774. ]
  46775. ))
  46776. characterMakers.push(() => makeCharacter(
  46777. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46778. {
  46779. front: {
  46780. height: math.unit(1, "meter"),
  46781. name: "Front",
  46782. image: {
  46783. source: "./media/characters/atlas-morenai/front.svg",
  46784. extra: 1275/1043,
  46785. bottom: 19/1294
  46786. }
  46787. },
  46788. back: {
  46789. height: math.unit(1, "meter"),
  46790. name: "Back",
  46791. image: {
  46792. source: "./media/characters/atlas-morenai/back.svg",
  46793. extra: 1141/1001,
  46794. bottom: 25/1166
  46795. }
  46796. },
  46797. },
  46798. [
  46799. {
  46800. name: "Normal",
  46801. height: math.unit(1, "meter"),
  46802. default: true
  46803. },
  46804. {
  46805. name: "Magic-Infused",
  46806. height: math.unit(5, "meters")
  46807. },
  46808. ]
  46809. ))
  46810. characterMakers.push(() => makeCharacter(
  46811. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46812. {
  46813. front: {
  46814. height: math.unit(5, "meters"),
  46815. name: "Front",
  46816. image: {
  46817. source: "./media/characters/cintia/front.svg",
  46818. extra: 1312/1228,
  46819. bottom: 38/1350
  46820. }
  46821. },
  46822. back: {
  46823. height: math.unit(5, "meters"),
  46824. name: "Back",
  46825. image: {
  46826. source: "./media/characters/cintia/back.svg",
  46827. extra: 1260/1166,
  46828. bottom: 98/1358
  46829. }
  46830. },
  46831. frontDick: {
  46832. height: math.unit(5, "meters"),
  46833. name: "Front (Dick)",
  46834. image: {
  46835. source: "./media/characters/cintia/front-dick.svg",
  46836. extra: 1312/1228,
  46837. bottom: 38/1350
  46838. }
  46839. },
  46840. backDick: {
  46841. height: math.unit(5, "meters"),
  46842. name: "Back (Dick)",
  46843. image: {
  46844. source: "./media/characters/cintia/back-dick.svg",
  46845. extra: 1260/1166,
  46846. bottom: 98/1358
  46847. }
  46848. },
  46849. bust: {
  46850. height: math.unit(1.97, "meters"),
  46851. name: "Bust",
  46852. image: {
  46853. source: "./media/characters/cintia/bust.svg",
  46854. extra: 617/565,
  46855. bottom: 0/617
  46856. }
  46857. },
  46858. },
  46859. [
  46860. {
  46861. name: "Normal",
  46862. height: math.unit(5, "meters"),
  46863. default: true
  46864. },
  46865. ]
  46866. ))
  46867. characterMakers.push(() => makeCharacter(
  46868. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46869. {
  46870. side: {
  46871. height: math.unit(100, "feet"),
  46872. name: "Side",
  46873. image: {
  46874. source: "./media/characters/denora/side.svg",
  46875. extra: 875/803,
  46876. bottom: 9/884
  46877. }
  46878. },
  46879. },
  46880. [
  46881. {
  46882. name: "Standard",
  46883. height: math.unit(100, "feet"),
  46884. default: true
  46885. },
  46886. {
  46887. name: "Grand",
  46888. height: math.unit(1000, "feet")
  46889. },
  46890. {
  46891. name: "Conquering",
  46892. height: math.unit(10000, "feet")
  46893. },
  46894. ]
  46895. ))
  46896. characterMakers.push(() => makeCharacter(
  46897. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46898. {
  46899. dressed: {
  46900. height: math.unit(8 + 5/12, "feet"),
  46901. weight: math.unit(700, "lb"),
  46902. name: "Dressed",
  46903. image: {
  46904. source: "./media/characters/kiva/dressed.svg",
  46905. extra: 1102/1055,
  46906. bottom: 60/1162
  46907. }
  46908. },
  46909. nude: {
  46910. height: math.unit(8 + 5/12, "feet"),
  46911. weight: math.unit(700, "lb"),
  46912. name: "Nude",
  46913. image: {
  46914. source: "./media/characters/kiva/nude.svg",
  46915. extra: 1102/1055,
  46916. bottom: 60/1162
  46917. }
  46918. },
  46919. },
  46920. [
  46921. {
  46922. name: "Base Height",
  46923. height: math.unit(8 + 5/12, "feet"),
  46924. default: true
  46925. },
  46926. {
  46927. name: "Macro",
  46928. height: math.unit(100, "feet")
  46929. },
  46930. {
  46931. name: "Max",
  46932. height: math.unit(3280, "feet")
  46933. },
  46934. ]
  46935. ))
  46936. characterMakers.push(() => makeCharacter(
  46937. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46938. {
  46939. front: {
  46940. height: math.unit(6 + 8/12, "feet"),
  46941. weight: math.unit(250, "lb"),
  46942. name: "Front",
  46943. image: {
  46944. source: "./media/characters/ztragon/front.svg",
  46945. extra: 1825/1684,
  46946. bottom: 98/1923
  46947. }
  46948. },
  46949. },
  46950. [
  46951. {
  46952. name: "Normal",
  46953. height: math.unit(6 + 8/12, "feet"),
  46954. default: true
  46955. },
  46956. {
  46957. name: "Macro",
  46958. height: math.unit(80, "feet")
  46959. },
  46960. ]
  46961. ))
  46962. characterMakers.push(() => makeCharacter(
  46963. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46964. {
  46965. front: {
  46966. height: math.unit(10.4, "feet"),
  46967. weight: math.unit(2, "tons"),
  46968. name: "Front",
  46969. image: {
  46970. source: "./media/characters/yesenia/front.svg",
  46971. extra: 1479/1474,
  46972. bottom: 233/1712
  46973. }
  46974. },
  46975. },
  46976. [
  46977. {
  46978. name: "Normal",
  46979. height: math.unit(10.4, "feet"),
  46980. default: true
  46981. },
  46982. ]
  46983. ))
  46984. characterMakers.push(() => makeCharacter(
  46985. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46986. {
  46987. normal: {
  46988. height: math.unit(6 + 1/12, "feet"),
  46989. weight: math.unit(180, "lb"),
  46990. name: "Normal",
  46991. image: {
  46992. source: "./media/characters/leanne-lycheborne/normal.svg",
  46993. extra: 1748/1660,
  46994. bottom: 98/1846
  46995. }
  46996. },
  46997. were: {
  46998. height: math.unit(12, "feet"),
  46999. weight: math.unit(1600, "lb"),
  47000. name: "Were",
  47001. image: {
  47002. source: "./media/characters/leanne-lycheborne/were.svg",
  47003. extra: 1485/1432,
  47004. bottom: 66/1551
  47005. }
  47006. },
  47007. },
  47008. [
  47009. {
  47010. name: "Normal",
  47011. height: math.unit(6 + 1/12, "feet"),
  47012. default: true
  47013. },
  47014. ]
  47015. ))
  47016. characterMakers.push(() => makeCharacter(
  47017. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47018. {
  47019. side: {
  47020. height: math.unit(13, "feet"),
  47021. name: "Side",
  47022. image: {
  47023. source: "./media/characters/kira-tyler/side.svg",
  47024. extra: 693/393,
  47025. bottom: 58/751
  47026. }
  47027. },
  47028. },
  47029. [
  47030. {
  47031. name: "Normal",
  47032. height: math.unit(13, "feet"),
  47033. default: true
  47034. },
  47035. ]
  47036. ))
  47037. characterMakers.push(() => makeCharacter(
  47038. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47039. {
  47040. front: {
  47041. height: math.unit(10.3, "feet"),
  47042. weight: math.unit(150, "lb"),
  47043. name: "Front",
  47044. image: {
  47045. source: "./media/characters/blaze/front.svg",
  47046. extra: 1378/1286,
  47047. bottom: 172/1550
  47048. }
  47049. },
  47050. },
  47051. [
  47052. {
  47053. name: "Normal",
  47054. height: math.unit(10.3, "feet"),
  47055. default: true
  47056. },
  47057. ]
  47058. ))
  47059. characterMakers.push(() => makeCharacter(
  47060. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47061. {
  47062. side: {
  47063. height: math.unit(2, "meters"),
  47064. weight: math.unit(400, "kg"),
  47065. name: "Side",
  47066. image: {
  47067. source: "./media/characters/anu/side.svg",
  47068. extra: 506/394,
  47069. bottom: 18/524
  47070. }
  47071. },
  47072. },
  47073. [
  47074. {
  47075. name: "Humanoid",
  47076. height: math.unit(2, "meters")
  47077. },
  47078. {
  47079. name: "Normal",
  47080. height: math.unit(5, "meters"),
  47081. default: true
  47082. },
  47083. ]
  47084. ))
  47085. characterMakers.push(() => makeCharacter(
  47086. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47087. {
  47088. front: {
  47089. height: math.unit(5 + 5/12, "feet"),
  47090. weight: math.unit(170, "lb"),
  47091. name: "Front",
  47092. image: {
  47093. source: "./media/characters/synx-the-lynx/front.svg",
  47094. extra: 1893/1745,
  47095. bottom: 17/1910
  47096. }
  47097. },
  47098. side: {
  47099. height: math.unit(5 + 5/12, "feet"),
  47100. weight: math.unit(170, "lb"),
  47101. name: "Side",
  47102. image: {
  47103. source: "./media/characters/synx-the-lynx/side.svg",
  47104. extra: 1884/1740,
  47105. bottom: 39/1923
  47106. }
  47107. },
  47108. back: {
  47109. height: math.unit(5 + 5/12, "feet"),
  47110. weight: math.unit(170, "lb"),
  47111. name: "Back",
  47112. image: {
  47113. source: "./media/characters/synx-the-lynx/back.svg",
  47114. extra: 1903/1755,
  47115. bottom: 14/1917
  47116. }
  47117. },
  47118. },
  47119. [
  47120. {
  47121. name: "Normal",
  47122. height: math.unit(5 + 5/12, "feet"),
  47123. default: true
  47124. },
  47125. ]
  47126. ))
  47127. characterMakers.push(() => makeCharacter(
  47128. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47129. {
  47130. back: {
  47131. height: math.unit(15, "feet"),
  47132. name: "Back",
  47133. image: {
  47134. source: "./media/characters/nadezda-fex/back.svg",
  47135. extra: 1695/1481,
  47136. bottom: 25/1720
  47137. }
  47138. },
  47139. },
  47140. [
  47141. {
  47142. name: "Normal",
  47143. height: math.unit(15, "feet"),
  47144. default: true
  47145. },
  47146. {
  47147. name: "Macro",
  47148. height: math.unit(2.5, "miles")
  47149. },
  47150. {
  47151. name: "Goddess",
  47152. height: math.unit(2, "multiverses")
  47153. },
  47154. ]
  47155. ))
  47156. characterMakers.push(() => makeCharacter(
  47157. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47158. {
  47159. front: {
  47160. height: math.unit(216, "cm"),
  47161. name: "Front",
  47162. image: {
  47163. source: "./media/characters/lev/front.svg",
  47164. extra: 1728/1670,
  47165. bottom: 82/1810
  47166. }
  47167. },
  47168. back: {
  47169. height: math.unit(216, "cm"),
  47170. name: "Back",
  47171. image: {
  47172. source: "./media/characters/lev/back.svg",
  47173. extra: 1738/1675,
  47174. bottom: 24/1762
  47175. }
  47176. },
  47177. dressed: {
  47178. height: math.unit(216, "cm"),
  47179. name: "Dressed",
  47180. image: {
  47181. source: "./media/characters/lev/dressed.svg",
  47182. extra: 1397/1351,
  47183. bottom: 73/1470
  47184. }
  47185. },
  47186. head: {
  47187. height: math.unit(0.51, "meter"),
  47188. name: "Head",
  47189. image: {
  47190. source: "./media/characters/lev/head.svg"
  47191. }
  47192. },
  47193. },
  47194. [
  47195. {
  47196. name: "Normal",
  47197. height: math.unit(216, "cm"),
  47198. default: true
  47199. },
  47200. {
  47201. name: "Relatively Macro",
  47202. height: math.unit(80, "meters")
  47203. },
  47204. {
  47205. name: "Megamacro",
  47206. height: math.unit(21600, "meters")
  47207. },
  47208. {
  47209. name: "Megamacro+",
  47210. height: math.unit(64800, "meters")
  47211. },
  47212. ]
  47213. ))
  47214. characterMakers.push(() => makeCharacter(
  47215. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47216. {
  47217. front: {
  47218. height: math.unit(2, "meters"),
  47219. weight: math.unit(80, "kg"),
  47220. name: "Front",
  47221. image: {
  47222. source: "./media/characters/moka/front.svg",
  47223. extra: 1337/1255,
  47224. bottom: 58/1395
  47225. }
  47226. },
  47227. },
  47228. [
  47229. {
  47230. name: "Micro",
  47231. height: math.unit(15, "cm")
  47232. },
  47233. {
  47234. name: "Normal",
  47235. height: math.unit(2, "meters"),
  47236. default: true
  47237. },
  47238. {
  47239. name: "Macro",
  47240. height: math.unit(20, "meters"),
  47241. },
  47242. ]
  47243. ))
  47244. characterMakers.push(() => makeCharacter(
  47245. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47246. {
  47247. front: {
  47248. height: math.unit(9, "feet"),
  47249. weight: math.unit(240, "lb"),
  47250. name: "Front",
  47251. image: {
  47252. source: "./media/characters/kuzco/front.svg",
  47253. extra: 1593/1487,
  47254. bottom: 32/1625
  47255. }
  47256. },
  47257. side: {
  47258. height: math.unit(9, "feet"),
  47259. weight: math.unit(240, "lb"),
  47260. name: "Side",
  47261. image: {
  47262. source: "./media/characters/kuzco/side.svg",
  47263. extra: 1575/1485,
  47264. bottom: 30/1605
  47265. }
  47266. },
  47267. back: {
  47268. height: math.unit(9, "feet"),
  47269. weight: math.unit(240, "lb"),
  47270. name: "Back",
  47271. image: {
  47272. source: "./media/characters/kuzco/back.svg",
  47273. extra: 1603/1514,
  47274. bottom: 14/1617
  47275. }
  47276. },
  47277. },
  47278. [
  47279. {
  47280. name: "Normal",
  47281. height: math.unit(9, "feet"),
  47282. default: true
  47283. },
  47284. ]
  47285. ))
  47286. characterMakers.push(() => makeCharacter(
  47287. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47288. {
  47289. side: {
  47290. height: math.unit(2, "meters"),
  47291. weight: math.unit(300, "kg"),
  47292. name: "Side",
  47293. image: {
  47294. source: "./media/characters/ceruleus/side.svg",
  47295. extra: 1068/974,
  47296. bottom: 126/1194
  47297. }
  47298. },
  47299. maw: {
  47300. height: math.unit(0.8125, "meter"),
  47301. name: "Maw",
  47302. image: {
  47303. source: "./media/characters/ceruleus/maw.svg"
  47304. }
  47305. },
  47306. },
  47307. [
  47308. {
  47309. name: "Normal",
  47310. height: math.unit(16, "meters"),
  47311. default: true
  47312. },
  47313. ]
  47314. ))
  47315. characterMakers.push(() => makeCharacter(
  47316. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47317. {
  47318. front: {
  47319. height: math.unit(9, "feet"),
  47320. weight: math.unit(500, "kg"),
  47321. name: "Front",
  47322. image: {
  47323. source: "./media/characters/acouya/front.svg",
  47324. extra: 1660/1473,
  47325. bottom: 28/1688
  47326. }
  47327. },
  47328. },
  47329. [
  47330. {
  47331. name: "Normal",
  47332. height: math.unit(9, "feet"),
  47333. default: true
  47334. },
  47335. ]
  47336. ))
  47337. characterMakers.push(() => makeCharacter(
  47338. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47339. {
  47340. front: {
  47341. height: math.unit(5 + 6/12, "feet"),
  47342. weight: math.unit(195, "lb"),
  47343. name: "Front",
  47344. image: {
  47345. source: "./media/characters/vant/front.svg",
  47346. extra: 1396/1320,
  47347. bottom: 20/1416
  47348. }
  47349. },
  47350. back: {
  47351. height: math.unit(5 + 6/12, "feet"),
  47352. weight: math.unit(195, "lb"),
  47353. name: "Back",
  47354. image: {
  47355. source: "./media/characters/vant/back.svg",
  47356. extra: 1396/1320,
  47357. bottom: 20/1416
  47358. }
  47359. },
  47360. maw: {
  47361. height: math.unit(0.75, "feet"),
  47362. name: "Maw",
  47363. image: {
  47364. source: "./media/characters/vant/maw.svg"
  47365. }
  47366. },
  47367. paw: {
  47368. height: math.unit(1.07, "feet"),
  47369. name: "Paw",
  47370. image: {
  47371. source: "./media/characters/vant/paw.svg"
  47372. }
  47373. },
  47374. },
  47375. [
  47376. {
  47377. name: "Micro",
  47378. height: math.unit(0.25, "inches")
  47379. },
  47380. {
  47381. name: "Normal",
  47382. height: math.unit(5 + 6/12, "feet"),
  47383. default: true
  47384. },
  47385. {
  47386. name: "Macro",
  47387. height: math.unit(75, "feet")
  47388. },
  47389. ]
  47390. ))
  47391. characterMakers.push(() => makeCharacter(
  47392. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47393. {
  47394. front: {
  47395. height: math.unit(30, "meters"),
  47396. weight: math.unit(363, "tons"),
  47397. name: "Front",
  47398. image: {
  47399. source: "./media/characters/ahra/front.svg",
  47400. extra: 1914/1814,
  47401. bottom: 46/1960
  47402. }
  47403. },
  47404. },
  47405. [
  47406. {
  47407. name: "Macro",
  47408. height: math.unit(30, "meters"),
  47409. default: true
  47410. },
  47411. ]
  47412. ))
  47413. characterMakers.push(() => makeCharacter(
  47414. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47415. {
  47416. undressed: {
  47417. height: math.unit(2, "m"),
  47418. weight: math.unit(250, "kg"),
  47419. name: "Undressed",
  47420. image: {
  47421. source: "./media/characters/coriander/undressed.svg",
  47422. extra: 1757/1606,
  47423. bottom: 107/1864
  47424. }
  47425. },
  47426. dressed: {
  47427. height: math.unit(2, "m"),
  47428. weight: math.unit(250, "kg"),
  47429. name: "Dressed",
  47430. image: {
  47431. source: "./media/characters/coriander/dressed.svg",
  47432. extra: 1757/1606,
  47433. bottom: 107/1864
  47434. }
  47435. },
  47436. },
  47437. [
  47438. {
  47439. name: "Normal",
  47440. height: math.unit(4, "meters"),
  47441. default: true
  47442. },
  47443. {
  47444. name: "XL",
  47445. height: math.unit(6, "meters")
  47446. },
  47447. {
  47448. name: "XXL",
  47449. height: math.unit(8, "meters")
  47450. },
  47451. ]
  47452. ))
  47453. characterMakers.push(() => makeCharacter(
  47454. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47455. {
  47456. front: {
  47457. height: math.unit(6, "feet"),
  47458. name: "Front",
  47459. image: {
  47460. source: "./media/characters/syrinx/front.svg",
  47461. extra: 1557/1259,
  47462. bottom: 171/1728
  47463. }
  47464. },
  47465. },
  47466. [
  47467. {
  47468. name: "Normal",
  47469. height: math.unit(6 + 3/12, "feet"),
  47470. default: true
  47471. },
  47472. ]
  47473. ))
  47474. characterMakers.push(() => makeCharacter(
  47475. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47476. {
  47477. front: {
  47478. height: math.unit(11 + 6/12, "feet"),
  47479. weight: math.unit(1.5, "tons"),
  47480. name: "Front",
  47481. image: {
  47482. source: "./media/characters/bor/front.svg",
  47483. extra: 1189/1109,
  47484. bottom: 170/1359
  47485. }
  47486. },
  47487. },
  47488. [
  47489. {
  47490. name: "Normal",
  47491. height: math.unit(11 + 6/12, "feet"),
  47492. default: true
  47493. },
  47494. {
  47495. name: "Macro",
  47496. height: math.unit(32 + 9/12, "feet")
  47497. },
  47498. ]
  47499. ))
  47500. characterMakers.push(() => makeCharacter(
  47501. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47502. {
  47503. anthro: {
  47504. height: math.unit(9, "feet"),
  47505. weight: math.unit(2076, "lb"),
  47506. name: "Anthro",
  47507. image: {
  47508. source: "./media/characters/abacus/anthro.svg",
  47509. extra: 1540/1494,
  47510. bottom: 233/1773
  47511. }
  47512. },
  47513. pigeon: {
  47514. height: math.unit(1, "feet"),
  47515. name: "Pigeon",
  47516. image: {
  47517. source: "./media/characters/abacus/pigeon.svg",
  47518. extra: 528/525,
  47519. bottom: 46/574
  47520. }
  47521. },
  47522. },
  47523. [
  47524. {
  47525. name: "Normal",
  47526. height: math.unit(9, "feet"),
  47527. default: true
  47528. },
  47529. ]
  47530. ))
  47531. characterMakers.push(() => makeCharacter(
  47532. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47533. {
  47534. side: {
  47535. height: math.unit(6, "feet"),
  47536. name: "Side",
  47537. image: {
  47538. source: "./media/characters/delkhan/side.svg",
  47539. extra: 1884/1786,
  47540. bottom: 308/2192
  47541. }
  47542. },
  47543. head: {
  47544. height: math.unit(3.38, "feet"),
  47545. name: "Head",
  47546. image: {
  47547. source: "./media/characters/delkhan/head.svg"
  47548. }
  47549. },
  47550. },
  47551. [
  47552. {
  47553. name: "Normal",
  47554. height: math.unit(72, "feet"),
  47555. default: true
  47556. },
  47557. {
  47558. name: "Giant",
  47559. height: math.unit(172, "feet")
  47560. },
  47561. ]
  47562. ))
  47563. characterMakers.push(() => makeCharacter(
  47564. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47565. {
  47566. standing: {
  47567. height: math.unit(6, "feet"),
  47568. name: "Standing",
  47569. image: {
  47570. source: "./media/characters/euchidat/standing.svg",
  47571. extra: 1612/1553,
  47572. bottom: 116/1728
  47573. }
  47574. },
  47575. leaning: {
  47576. height: math.unit(6, "feet"),
  47577. name: "Leaning",
  47578. image: {
  47579. source: "./media/characters/euchidat/leaning.svg",
  47580. extra: 1719/1674,
  47581. bottom: 27/1746
  47582. }
  47583. },
  47584. },
  47585. [
  47586. {
  47587. name: "Normal",
  47588. height: math.unit(175, "feet"),
  47589. default: true
  47590. },
  47591. {
  47592. name: "Megamacro",
  47593. height: math.unit(190, "miles")
  47594. },
  47595. {
  47596. name: "Gigamacro",
  47597. height: math.unit(190000, "miles")
  47598. },
  47599. ]
  47600. ))
  47601. characterMakers.push(() => makeCharacter(
  47602. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47603. {
  47604. front: {
  47605. height: math.unit(6, "feet"),
  47606. weight: math.unit(150, "lb"),
  47607. name: "Front",
  47608. image: {
  47609. source: "./media/characters/rebecca-stack/front.svg",
  47610. extra: 1256/1201,
  47611. bottom: 18/1274
  47612. }
  47613. },
  47614. },
  47615. [
  47616. {
  47617. name: "Normal",
  47618. height: math.unit(5 + 8/12, "feet"),
  47619. default: true
  47620. },
  47621. {
  47622. name: "Demolitionist",
  47623. height: math.unit(200, "feet")
  47624. },
  47625. {
  47626. name: "Out of Control",
  47627. height: math.unit(2, "miles")
  47628. },
  47629. {
  47630. name: "Giga",
  47631. height: math.unit(7200, "miles")
  47632. },
  47633. ]
  47634. ))
  47635. characterMakers.push(() => makeCharacter(
  47636. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47637. {
  47638. front: {
  47639. height: math.unit(6, "feet"),
  47640. weight: math.unit(150, "lb"),
  47641. name: "Front",
  47642. image: {
  47643. source: "./media/characters/jenny-cartwright/front.svg",
  47644. extra: 1384/1376,
  47645. bottom: 58/1442
  47646. }
  47647. },
  47648. },
  47649. [
  47650. {
  47651. name: "Normal",
  47652. height: math.unit(6 + 7/12, "feet"),
  47653. default: true
  47654. },
  47655. {
  47656. name: "Librarian",
  47657. height: math.unit(55, "feet")
  47658. },
  47659. {
  47660. name: "Sightseer",
  47661. height: math.unit(50, "miles")
  47662. },
  47663. {
  47664. name: "Giga",
  47665. height: math.unit(30000, "miles")
  47666. },
  47667. ]
  47668. ))
  47669. characterMakers.push(() => makeCharacter(
  47670. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47671. {
  47672. nude: {
  47673. height: math.unit(8, "feet"),
  47674. weight: math.unit(225, "lb"),
  47675. name: "Nude",
  47676. image: {
  47677. source: "./media/characters/marvy/nude.svg",
  47678. extra: 1900/1683,
  47679. bottom: 89/1989
  47680. }
  47681. },
  47682. dressed: {
  47683. height: math.unit(8, "feet"),
  47684. weight: math.unit(225, "lb"),
  47685. name: "Dressed",
  47686. image: {
  47687. source: "./media/characters/marvy/dressed.svg",
  47688. extra: 1900/1683,
  47689. bottom: 89/1989
  47690. }
  47691. },
  47692. head: {
  47693. height: math.unit(2.85, "feet"),
  47694. name: "Head",
  47695. image: {
  47696. source: "./media/characters/marvy/head.svg"
  47697. }
  47698. },
  47699. },
  47700. [
  47701. {
  47702. name: "Normal",
  47703. height: math.unit(8, "feet"),
  47704. default: true
  47705. },
  47706. ]
  47707. ))
  47708. characterMakers.push(() => makeCharacter(
  47709. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47710. {
  47711. front: {
  47712. height: math.unit(8, "feet"),
  47713. weight: math.unit(250, "lb"),
  47714. name: "Front",
  47715. image: {
  47716. source: "./media/characters/leah/front.svg",
  47717. extra: 1257/1149,
  47718. bottom: 109/1366
  47719. }
  47720. },
  47721. },
  47722. [
  47723. {
  47724. name: "Normal",
  47725. height: math.unit(8, "feet"),
  47726. default: true
  47727. },
  47728. {
  47729. name: "Minimacro",
  47730. height: math.unit(40, "feet")
  47731. },
  47732. {
  47733. name: "Macro",
  47734. height: math.unit(124, "feet")
  47735. },
  47736. {
  47737. name: "Megamacro",
  47738. height: math.unit(850, "feet")
  47739. },
  47740. ]
  47741. ))
  47742. characterMakers.push(() => makeCharacter(
  47743. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47744. {
  47745. side: {
  47746. height: math.unit(13 + 6/12, "feet"),
  47747. weight: math.unit(3200, "lb"),
  47748. name: "Side",
  47749. image: {
  47750. source: "./media/characters/alvir/side.svg",
  47751. extra: 896/589,
  47752. bottom: 26/922
  47753. }
  47754. },
  47755. },
  47756. [
  47757. {
  47758. name: "Normal",
  47759. height: math.unit(13 + 6/12, "feet"),
  47760. default: true
  47761. },
  47762. ]
  47763. ))
  47764. characterMakers.push(() => makeCharacter(
  47765. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47766. {
  47767. front: {
  47768. height: math.unit(5 + 4/12, "feet"),
  47769. weight: math.unit(236, "lb"),
  47770. name: "Front",
  47771. image: {
  47772. source: "./media/characters/zaina-khalil/front.svg",
  47773. extra: 1533/1485,
  47774. bottom: 94/1627
  47775. }
  47776. },
  47777. side: {
  47778. height: math.unit(5 + 4/12, "feet"),
  47779. weight: math.unit(236, "lb"),
  47780. name: "Side",
  47781. image: {
  47782. source: "./media/characters/zaina-khalil/side.svg",
  47783. extra: 1537/1498,
  47784. bottom: 66/1603
  47785. }
  47786. },
  47787. back: {
  47788. height: math.unit(5 + 4/12, "feet"),
  47789. weight: math.unit(236, "lb"),
  47790. name: "Back",
  47791. image: {
  47792. source: "./media/characters/zaina-khalil/back.svg",
  47793. extra: 1546/1494,
  47794. bottom: 89/1635
  47795. }
  47796. },
  47797. },
  47798. [
  47799. {
  47800. name: "Normal",
  47801. height: math.unit(5 + 4/12, "feet"),
  47802. default: true
  47803. },
  47804. ]
  47805. ))
  47806. characterMakers.push(() => makeCharacter(
  47807. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47808. {
  47809. side: {
  47810. height: math.unit(12, "feet"),
  47811. weight: math.unit(4000, "lb"),
  47812. name: "Side",
  47813. image: {
  47814. source: "./media/characters/terry/side.svg",
  47815. extra: 1518/1439,
  47816. bottom: 149/1667
  47817. }
  47818. },
  47819. },
  47820. [
  47821. {
  47822. name: "Normal",
  47823. height: math.unit(12, "feet"),
  47824. default: true
  47825. },
  47826. ]
  47827. ))
  47828. characterMakers.push(() => makeCharacter(
  47829. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47830. {
  47831. front: {
  47832. height: math.unit(12, "feet"),
  47833. weight: math.unit(1500, "lb"),
  47834. name: "Front",
  47835. image: {
  47836. source: "./media/characters/kahea/front.svg",
  47837. extra: 1722/1617,
  47838. bottom: 179/1901
  47839. }
  47840. },
  47841. },
  47842. [
  47843. {
  47844. name: "Normal",
  47845. height: math.unit(12, "feet"),
  47846. default: true
  47847. },
  47848. ]
  47849. ))
  47850. characterMakers.push(() => makeCharacter(
  47851. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47852. {
  47853. demonFront: {
  47854. height: math.unit(36, "feet"),
  47855. name: "Front",
  47856. image: {
  47857. source: "./media/characters/alex-xuria/demon-front.svg",
  47858. extra: 1705/1673,
  47859. bottom: 198/1903
  47860. },
  47861. form: "demon",
  47862. default: true
  47863. },
  47864. demonBack: {
  47865. height: math.unit(36, "feet"),
  47866. name: "Back",
  47867. image: {
  47868. source: "./media/characters/alex-xuria/demon-back.svg",
  47869. extra: 1725/1693,
  47870. bottom: 70/1795
  47871. },
  47872. form: "demon"
  47873. },
  47874. demonHead: {
  47875. height: math.unit(2.14, "meters"),
  47876. name: "Head",
  47877. image: {
  47878. source: "./media/characters/alex-xuria/demon-head.svg"
  47879. },
  47880. form: "demon"
  47881. },
  47882. demonHand: {
  47883. height: math.unit(1.61, "meters"),
  47884. name: "Hand",
  47885. image: {
  47886. source: "./media/characters/alex-xuria/demon-hand.svg"
  47887. },
  47888. form: "demon"
  47889. },
  47890. demonPaw: {
  47891. height: math.unit(1.35, "meters"),
  47892. name: "Paw",
  47893. image: {
  47894. source: "./media/characters/alex-xuria/demon-paw.svg"
  47895. },
  47896. form: "demon"
  47897. },
  47898. demonFoot: {
  47899. height: math.unit(2.2, "meters"),
  47900. name: "Foot",
  47901. image: {
  47902. source: "./media/characters/alex-xuria/demon-foot.svg"
  47903. },
  47904. form: "demon"
  47905. },
  47906. demonCock: {
  47907. height: math.unit(1.74, "meters"),
  47908. name: "Cock",
  47909. image: {
  47910. source: "./media/characters/alex-xuria/demon-cock.svg"
  47911. },
  47912. form: "demon"
  47913. },
  47914. demonTailClosed: {
  47915. height: math.unit(1.47, "meters"),
  47916. name: "Tail (Closed)",
  47917. image: {
  47918. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47919. },
  47920. form: "demon"
  47921. },
  47922. demonTailOpen: {
  47923. height: math.unit(2.85, "meters"),
  47924. name: "Tail (Open)",
  47925. image: {
  47926. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47927. },
  47928. form: "demon"
  47929. },
  47930. incubusFront: {
  47931. height: math.unit(12, "feet"),
  47932. name: "Front",
  47933. image: {
  47934. source: "./media/characters/alex-xuria/incubus-front.svg",
  47935. extra: 1754/1677,
  47936. bottom: 125/1879
  47937. },
  47938. form: "incubus",
  47939. default: true
  47940. },
  47941. incubusBack: {
  47942. height: math.unit(12, "feet"),
  47943. name: "Back",
  47944. image: {
  47945. source: "./media/characters/alex-xuria/incubus-back.svg",
  47946. extra: 1702/1647,
  47947. bottom: 30/1732
  47948. },
  47949. form: "incubus"
  47950. },
  47951. incubusHead: {
  47952. height: math.unit(3.45, "feet"),
  47953. name: "Head",
  47954. image: {
  47955. source: "./media/characters/alex-xuria/incubus-head.svg"
  47956. },
  47957. form: "incubus"
  47958. },
  47959. rabbitFront: {
  47960. height: math.unit(6, "feet"),
  47961. name: "Front",
  47962. image: {
  47963. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47964. extra: 1369/1349,
  47965. bottom: 45/1414
  47966. },
  47967. form: "rabbit",
  47968. default: true
  47969. },
  47970. rabbitSide: {
  47971. height: math.unit(6, "feet"),
  47972. name: "Side",
  47973. image: {
  47974. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47975. extra: 1370/1356,
  47976. bottom: 37/1407
  47977. },
  47978. form: "rabbit"
  47979. },
  47980. rabbitBack: {
  47981. height: math.unit(6, "feet"),
  47982. name: "Back",
  47983. image: {
  47984. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47985. extra: 1375/1358,
  47986. bottom: 43/1418
  47987. },
  47988. form: "rabbit"
  47989. },
  47990. },
  47991. [
  47992. {
  47993. name: "Normal",
  47994. height: math.unit(6, "feet"),
  47995. default: true,
  47996. form: "rabbit"
  47997. },
  47998. {
  47999. name: "Incubus",
  48000. height: math.unit(12, "feet"),
  48001. default: true,
  48002. form: "incubus"
  48003. },
  48004. {
  48005. name: "Demon",
  48006. height: math.unit(36, "feet"),
  48007. default: true,
  48008. form: "demon"
  48009. }
  48010. ],
  48011. {
  48012. "demon": {
  48013. name: "Demon",
  48014. default: true
  48015. },
  48016. "incubus": {
  48017. name: "Incubus",
  48018. },
  48019. "rabbit": {
  48020. name: "Rabbit"
  48021. }
  48022. }
  48023. ))
  48024. characterMakers.push(() => makeCharacter(
  48025. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48026. {
  48027. front: {
  48028. height: math.unit(7 + 5/12, "feet"),
  48029. weight: math.unit(510, "lb"),
  48030. name: "Front",
  48031. image: {
  48032. source: "./media/characters/syrup/front.svg",
  48033. extra: 932/916,
  48034. bottom: 26/958
  48035. }
  48036. },
  48037. },
  48038. [
  48039. {
  48040. name: "Normal",
  48041. height: math.unit(7 + 5/12, "feet"),
  48042. default: true
  48043. },
  48044. {
  48045. name: "Big",
  48046. height: math.unit(50, "feet")
  48047. },
  48048. {
  48049. name: "Macro",
  48050. height: math.unit(300, "feet")
  48051. },
  48052. {
  48053. name: "Megamacro",
  48054. height: math.unit(1, "mile")
  48055. },
  48056. ]
  48057. ))
  48058. characterMakers.push(() => makeCharacter(
  48059. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48060. {
  48061. front: {
  48062. height: math.unit(6 + 9/12, "feet"),
  48063. name: "Front",
  48064. image: {
  48065. source: "./media/characters/zeimne/front.svg",
  48066. extra: 1969/1806,
  48067. bottom: 53/2022
  48068. }
  48069. },
  48070. },
  48071. [
  48072. {
  48073. name: "Normal",
  48074. height: math.unit(6 + 9/12, "feet"),
  48075. default: true
  48076. },
  48077. {
  48078. name: "Giant",
  48079. height: math.unit(550, "feet")
  48080. },
  48081. {
  48082. name: "Mega",
  48083. height: math.unit(3, "miles")
  48084. },
  48085. {
  48086. name: "Giga",
  48087. height: math.unit(250, "miles")
  48088. },
  48089. {
  48090. name: "Tera",
  48091. height: math.unit(1, "AU")
  48092. },
  48093. ]
  48094. ))
  48095. characterMakers.push(() => makeCharacter(
  48096. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48097. {
  48098. front: {
  48099. height: math.unit(5 + 2/12, "feet"),
  48100. name: "Front",
  48101. image: {
  48102. source: "./media/characters/grar/front.svg",
  48103. extra: 1331/1119,
  48104. bottom: 60/1391
  48105. }
  48106. },
  48107. back: {
  48108. height: math.unit(5 + 2/12, "feet"),
  48109. name: "Back",
  48110. image: {
  48111. source: "./media/characters/grar/back.svg",
  48112. extra: 1385/1169,
  48113. bottom: 23/1408
  48114. }
  48115. },
  48116. },
  48117. [
  48118. {
  48119. name: "Normal",
  48120. height: math.unit(5 + 2/12, "feet"),
  48121. default: true
  48122. },
  48123. ]
  48124. ))
  48125. characterMakers.push(() => makeCharacter(
  48126. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48127. {
  48128. front: {
  48129. height: math.unit(13 + 7/12, "feet"),
  48130. weight: math.unit(2200, "lb"),
  48131. name: "Front",
  48132. image: {
  48133. source: "./media/characters/endraya/front.svg",
  48134. extra: 1289/1215,
  48135. bottom: 50/1339
  48136. }
  48137. },
  48138. nude: {
  48139. height: math.unit(13 + 7/12, "feet"),
  48140. weight: math.unit(2200, "lb"),
  48141. name: "Nude",
  48142. image: {
  48143. source: "./media/characters/endraya/nude.svg",
  48144. extra: 1247/1171,
  48145. bottom: 40/1287
  48146. }
  48147. },
  48148. head: {
  48149. height: math.unit(2.6, "feet"),
  48150. name: "Head",
  48151. image: {
  48152. source: "./media/characters/endraya/head.svg"
  48153. }
  48154. },
  48155. slit: {
  48156. height: math.unit(3.4, "feet"),
  48157. name: "Slit",
  48158. image: {
  48159. source: "./media/characters/endraya/slit.svg"
  48160. }
  48161. },
  48162. },
  48163. [
  48164. {
  48165. name: "Normal",
  48166. height: math.unit(13 + 7/12, "feet"),
  48167. default: true
  48168. },
  48169. {
  48170. name: "Macro",
  48171. height: math.unit(200, "feet")
  48172. },
  48173. ]
  48174. ))
  48175. characterMakers.push(() => makeCharacter(
  48176. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48177. {
  48178. front: {
  48179. height: math.unit(1.81, "meters"),
  48180. weight: math.unit(69, "kg"),
  48181. name: "Front",
  48182. image: {
  48183. source: "./media/characters/rodryana/front.svg",
  48184. extra: 2002/1921,
  48185. bottom: 53/2055
  48186. }
  48187. },
  48188. back: {
  48189. height: math.unit(1.81, "meters"),
  48190. weight: math.unit(69, "kg"),
  48191. name: "Back",
  48192. image: {
  48193. source: "./media/characters/rodryana/back.svg",
  48194. extra: 1993/1926,
  48195. bottom: 48/2041
  48196. }
  48197. },
  48198. maw: {
  48199. height: math.unit(0.19769417475, "meters"),
  48200. name: "Maw",
  48201. image: {
  48202. source: "./media/characters/rodryana/maw.svg"
  48203. }
  48204. },
  48205. slit: {
  48206. height: math.unit(0.31631067961, "meters"),
  48207. name: "Slit",
  48208. image: {
  48209. source: "./media/characters/rodryana/slit.svg"
  48210. }
  48211. },
  48212. },
  48213. [
  48214. {
  48215. name: "Normal",
  48216. height: math.unit(1.81, "meters")
  48217. },
  48218. {
  48219. name: "Mini Macro",
  48220. height: math.unit(181, "meters")
  48221. },
  48222. {
  48223. name: "Macro",
  48224. height: math.unit(452, "meters"),
  48225. default: true
  48226. },
  48227. {
  48228. name: "Mega Macro",
  48229. height: math.unit(1.375, "km")
  48230. },
  48231. {
  48232. name: "Giga Macro",
  48233. height: math.unit(13.575, "km")
  48234. },
  48235. ]
  48236. ))
  48237. characterMakers.push(() => makeCharacter(
  48238. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48239. {
  48240. front: {
  48241. height: math.unit(6, "feet"),
  48242. weight: math.unit(1000, "lb"),
  48243. name: "Front",
  48244. image: {
  48245. source: "./media/characters/asaya/front.svg",
  48246. extra: 1460/1200,
  48247. bottom: 71/1531
  48248. }
  48249. },
  48250. },
  48251. [
  48252. {
  48253. name: "Normal",
  48254. height: math.unit(8, "km"),
  48255. default: true
  48256. },
  48257. ]
  48258. ))
  48259. characterMakers.push(() => makeCharacter(
  48260. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48261. {
  48262. front: {
  48263. height: math.unit(3.5, "meters"),
  48264. name: "Front",
  48265. image: {
  48266. source: "./media/characters/sarzu-and-israz/front.svg",
  48267. extra: 1570/1558,
  48268. bottom: 150/1720
  48269. },
  48270. },
  48271. back: {
  48272. height: math.unit(3.5, "meters"),
  48273. name: "Back",
  48274. image: {
  48275. source: "./media/characters/sarzu-and-israz/back.svg",
  48276. extra: 1523/1509,
  48277. bottom: 132/1655
  48278. },
  48279. },
  48280. frontFemale: {
  48281. height: math.unit(3.5, "meters"),
  48282. name: "Front (Female)",
  48283. image: {
  48284. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48285. extra: 1570/1558,
  48286. bottom: 150/1720
  48287. },
  48288. },
  48289. frontHerm: {
  48290. height: math.unit(3.5, "meters"),
  48291. name: "Front (Herm)",
  48292. image: {
  48293. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48294. extra: 1570/1558,
  48295. bottom: 150/1720
  48296. },
  48297. },
  48298. },
  48299. [
  48300. {
  48301. name: "Normal",
  48302. height: math.unit(3.5, "meters"),
  48303. default: true,
  48304. },
  48305. {
  48306. name: "Macro",
  48307. height: math.unit(65.5, "meters"),
  48308. },
  48309. ],
  48310. ))
  48311. characterMakers.push(() => makeCharacter(
  48312. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48313. {
  48314. front: {
  48315. height: math.unit(6, "feet"),
  48316. weight: math.unit(250, "lb"),
  48317. name: "Front",
  48318. image: {
  48319. source: "./media/characters/zenimma/front.svg",
  48320. extra: 1346/1320,
  48321. bottom: 58/1404
  48322. }
  48323. },
  48324. back: {
  48325. height: math.unit(6, "feet"),
  48326. weight: math.unit(250, "lb"),
  48327. name: "Back",
  48328. image: {
  48329. source: "./media/characters/zenimma/back.svg",
  48330. extra: 1324/1308,
  48331. bottom: 44/1368
  48332. }
  48333. },
  48334. dick: {
  48335. height: math.unit(1.44, "feet"),
  48336. name: "Dick",
  48337. image: {
  48338. source: "./media/characters/zenimma/dick.svg"
  48339. }
  48340. },
  48341. },
  48342. [
  48343. {
  48344. name: "Canon Height",
  48345. height: math.unit(66, "miles"),
  48346. default: true
  48347. },
  48348. ]
  48349. ))
  48350. characterMakers.push(() => makeCharacter(
  48351. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48352. {
  48353. nude: {
  48354. height: math.unit(6, "feet"),
  48355. weight: math.unit(150, "lb"),
  48356. name: "Nude",
  48357. image: {
  48358. source: "./media/characters/shavon/nude.svg",
  48359. extra: 1242/1096,
  48360. bottom: 98/1340
  48361. }
  48362. },
  48363. dressed: {
  48364. height: math.unit(6, "feet"),
  48365. weight: math.unit(150, "lb"),
  48366. name: "Dressed",
  48367. image: {
  48368. source: "./media/characters/shavon/dressed.svg",
  48369. extra: 1242/1096,
  48370. bottom: 98/1340
  48371. }
  48372. },
  48373. },
  48374. [
  48375. {
  48376. name: "Macro",
  48377. height: math.unit(255, "feet"),
  48378. default: true
  48379. },
  48380. ]
  48381. ))
  48382. characterMakers.push(() => makeCharacter(
  48383. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48384. {
  48385. front: {
  48386. height: math.unit(6, "feet"),
  48387. name: "Front",
  48388. image: {
  48389. source: "./media/characters/steph/front.svg",
  48390. extra: 1430/1330,
  48391. bottom: 54/1484
  48392. }
  48393. },
  48394. },
  48395. [
  48396. {
  48397. name: "Normal",
  48398. height: math.unit(6, "feet"),
  48399. default: true
  48400. },
  48401. ]
  48402. ))
  48403. characterMakers.push(() => makeCharacter(
  48404. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48405. {
  48406. front: {
  48407. height: math.unit(9, "feet"),
  48408. weight: math.unit(400, "lb"),
  48409. name: "Front",
  48410. image: {
  48411. source: "./media/characters/kil'aman/front.svg",
  48412. extra: 1210/1159,
  48413. bottom: 109/1319
  48414. }
  48415. },
  48416. head: {
  48417. height: math.unit(2.14, "feet"),
  48418. name: "Head",
  48419. image: {
  48420. source: "./media/characters/kil'aman/head.svg"
  48421. }
  48422. },
  48423. maw: {
  48424. height: math.unit(1.21, "feet"),
  48425. name: "Maw",
  48426. image: {
  48427. source: "./media/characters/kil'aman/maw.svg"
  48428. }
  48429. },
  48430. foot: {
  48431. height: math.unit(1.7, "feet"),
  48432. name: "Foot",
  48433. image: {
  48434. source: "./media/characters/kil'aman/foot.svg"
  48435. }
  48436. },
  48437. dick: {
  48438. height: math.unit(2.1, "feet"),
  48439. name: "Dick",
  48440. image: {
  48441. source: "./media/characters/kil'aman/dick.svg"
  48442. }
  48443. },
  48444. },
  48445. [
  48446. {
  48447. name: "Normal",
  48448. height: math.unit(9, "feet")
  48449. },
  48450. {
  48451. name: "Canon Height",
  48452. height: math.unit(10, "miles"),
  48453. default: true
  48454. },
  48455. {
  48456. name: "Maximum",
  48457. height: math.unit(6e9, "miles")
  48458. },
  48459. ]
  48460. ))
  48461. characterMakers.push(() => makeCharacter(
  48462. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48463. {
  48464. front: {
  48465. height: math.unit(90, "feet"),
  48466. weight: math.unit(675000, "lb"),
  48467. name: "Front",
  48468. image: {
  48469. source: "./media/characters/qadan/front.svg",
  48470. extra: 1012/1004,
  48471. bottom: 78/1090
  48472. }
  48473. },
  48474. back: {
  48475. height: math.unit(90, "feet"),
  48476. weight: math.unit(675000, "lb"),
  48477. name: "Back",
  48478. image: {
  48479. source: "./media/characters/qadan/back.svg",
  48480. extra: 1042/1031,
  48481. bottom: 55/1097
  48482. }
  48483. },
  48484. armored: {
  48485. height: math.unit(90, "feet"),
  48486. weight: math.unit(675000, "lb"),
  48487. name: "Armored",
  48488. image: {
  48489. source: "./media/characters/qadan/armored.svg",
  48490. extra: 1047/1037,
  48491. bottom: 48/1095
  48492. }
  48493. },
  48494. },
  48495. [
  48496. {
  48497. name: "Normal",
  48498. height: math.unit(90, "feet"),
  48499. default: true
  48500. },
  48501. ]
  48502. ))
  48503. characterMakers.push(() => makeCharacter(
  48504. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48505. {
  48506. front: {
  48507. height: math.unit(6, "feet"),
  48508. weight: math.unit(225, "lb"),
  48509. name: "Front",
  48510. image: {
  48511. source: "./media/characters/brooke/front.svg",
  48512. extra: 1050/1010,
  48513. bottom: 66/1116
  48514. }
  48515. },
  48516. back: {
  48517. height: math.unit(6, "feet"),
  48518. weight: math.unit(225, "lb"),
  48519. name: "Back",
  48520. image: {
  48521. source: "./media/characters/brooke/back.svg",
  48522. extra: 1053/1013,
  48523. bottom: 41/1094
  48524. }
  48525. },
  48526. dressed: {
  48527. height: math.unit(6, "feet"),
  48528. weight: math.unit(225, "lb"),
  48529. name: "Dressed",
  48530. image: {
  48531. source: "./media/characters/brooke/dressed.svg",
  48532. extra: 1050/1010,
  48533. bottom: 66/1116
  48534. }
  48535. },
  48536. },
  48537. [
  48538. {
  48539. name: "Canon Height",
  48540. height: math.unit(500, "miles"),
  48541. default: true
  48542. },
  48543. ]
  48544. ))
  48545. characterMakers.push(() => makeCharacter(
  48546. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48547. {
  48548. front: {
  48549. height: math.unit(6 + 2/12, "feet"),
  48550. weight: math.unit(210, "lb"),
  48551. name: "Front",
  48552. image: {
  48553. source: "./media/characters/wubs/front.svg",
  48554. extra: 1345/1325,
  48555. bottom: 70/1415
  48556. }
  48557. },
  48558. back: {
  48559. height: math.unit(6 + 2/12, "feet"),
  48560. weight: math.unit(210, "lb"),
  48561. name: "Back",
  48562. image: {
  48563. source: "./media/characters/wubs/back.svg",
  48564. extra: 1296/1275,
  48565. bottom: 58/1354
  48566. }
  48567. },
  48568. },
  48569. [
  48570. {
  48571. name: "Normal",
  48572. height: math.unit(6 + 2/12, "feet"),
  48573. default: true
  48574. },
  48575. {
  48576. name: "Macro",
  48577. height: math.unit(1000, "feet")
  48578. },
  48579. {
  48580. name: "Megamacro",
  48581. height: math.unit(1, "mile")
  48582. },
  48583. ]
  48584. ))
  48585. characterMakers.push(() => makeCharacter(
  48586. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48587. {
  48588. front: {
  48589. height: math.unit(4, "feet"),
  48590. weight: math.unit(120, "lb"),
  48591. name: "Front",
  48592. image: {
  48593. source: "./media/characters/blue/front.svg",
  48594. extra: 1636/1525,
  48595. bottom: 43/1679
  48596. }
  48597. },
  48598. back: {
  48599. height: math.unit(4, "feet"),
  48600. weight: math.unit(120, "lb"),
  48601. name: "Back",
  48602. image: {
  48603. source: "./media/characters/blue/back.svg",
  48604. extra: 1660/1560,
  48605. bottom: 57/1717
  48606. }
  48607. },
  48608. paws: {
  48609. height: math.unit(0.826, "feet"),
  48610. name: "Paws",
  48611. image: {
  48612. source: "./media/characters/blue/paws.svg"
  48613. }
  48614. },
  48615. },
  48616. [
  48617. {
  48618. name: "Micro",
  48619. height: math.unit(3, "inches")
  48620. },
  48621. {
  48622. name: "Normal",
  48623. height: math.unit(4, "feet"),
  48624. default: true
  48625. },
  48626. {
  48627. name: "Femenine Form",
  48628. height: math.unit(14, "feet")
  48629. },
  48630. {
  48631. name: "Werebat Form",
  48632. height: math.unit(18, "feet")
  48633. },
  48634. ]
  48635. ))
  48636. characterMakers.push(() => makeCharacter(
  48637. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48638. {
  48639. female: {
  48640. height: math.unit(7 + 4/12, "feet"),
  48641. weight: math.unit(243, "lb"),
  48642. name: "Female",
  48643. image: {
  48644. source: "./media/characters/kaya/female.svg",
  48645. extra: 975/898,
  48646. bottom: 34/1009
  48647. }
  48648. },
  48649. herm: {
  48650. height: math.unit(7 + 4/12, "feet"),
  48651. weight: math.unit(243, "lb"),
  48652. name: "Herm",
  48653. image: {
  48654. source: "./media/characters/kaya/herm.svg",
  48655. extra: 975/898,
  48656. bottom: 34/1009
  48657. }
  48658. },
  48659. },
  48660. [
  48661. {
  48662. name: "Normal",
  48663. height: math.unit(7 + 4/12, "feet"),
  48664. default: true
  48665. },
  48666. ]
  48667. ))
  48668. characterMakers.push(() => makeCharacter(
  48669. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48670. {
  48671. female: {
  48672. height: math.unit(9 + 4/12, "feet"),
  48673. weight: math.unit(398, "lb"),
  48674. name: "Female",
  48675. image: {
  48676. source: "./media/characters/kassandra/female.svg",
  48677. extra: 908/839,
  48678. bottom: 61/969
  48679. }
  48680. },
  48681. intersex: {
  48682. height: math.unit(9 + 4/12, "feet"),
  48683. weight: math.unit(398, "lb"),
  48684. name: "Intersex",
  48685. image: {
  48686. source: "./media/characters/kassandra/intersex.svg",
  48687. extra: 908/839,
  48688. bottom: 61/969
  48689. }
  48690. },
  48691. },
  48692. [
  48693. {
  48694. name: "Normal",
  48695. height: math.unit(9 + 4/12, "feet"),
  48696. default: true
  48697. },
  48698. ]
  48699. ))
  48700. characterMakers.push(() => makeCharacter(
  48701. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48702. {
  48703. front: {
  48704. height: math.unit(3, "meters"),
  48705. name: "Front",
  48706. image: {
  48707. source: "./media/characters/amy/front.svg",
  48708. extra: 1380/1343,
  48709. bottom: 70/1450
  48710. }
  48711. },
  48712. back: {
  48713. height: math.unit(3, "meters"),
  48714. name: "Back",
  48715. image: {
  48716. source: "./media/characters/amy/back.svg",
  48717. extra: 1380/1347,
  48718. bottom: 66/1446
  48719. }
  48720. },
  48721. },
  48722. [
  48723. {
  48724. name: "Normal",
  48725. height: math.unit(3, "meters"),
  48726. default: true
  48727. },
  48728. ]
  48729. ))
  48730. characterMakers.push(() => makeCharacter(
  48731. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48732. {
  48733. side: {
  48734. height: math.unit(47, "cm"),
  48735. weight: math.unit(10.8, "kg"),
  48736. name: "Side",
  48737. image: {
  48738. source: "./media/characters/alphaschakal/side.svg",
  48739. extra: 1058/568,
  48740. bottom: 62/1120
  48741. }
  48742. },
  48743. back: {
  48744. height: math.unit(78, "cm"),
  48745. weight: math.unit(10.8, "kg"),
  48746. name: "Back",
  48747. image: {
  48748. source: "./media/characters/alphaschakal/back.svg",
  48749. extra: 1102/942,
  48750. bottom: 185/1287
  48751. }
  48752. },
  48753. head: {
  48754. height: math.unit(28, "cm"),
  48755. name: "Head",
  48756. image: {
  48757. source: "./media/characters/alphaschakal/head.svg",
  48758. extra: 696/508,
  48759. bottom: 0/696
  48760. }
  48761. },
  48762. paw: {
  48763. height: math.unit(16, "cm"),
  48764. name: "Paw",
  48765. image: {
  48766. source: "./media/characters/alphaschakal/paw.svg"
  48767. }
  48768. },
  48769. },
  48770. [
  48771. {
  48772. name: "Normal",
  48773. height: math.unit(47, "cm"),
  48774. default: true
  48775. },
  48776. {
  48777. name: "Macro",
  48778. height: math.unit(340, "cm")
  48779. },
  48780. ]
  48781. ))
  48782. characterMakers.push(() => makeCharacter(
  48783. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48784. {
  48785. front: {
  48786. height: math.unit(36, "earths"),
  48787. name: "Front",
  48788. image: {
  48789. source: "./media/characters/ecobyss/front.svg",
  48790. extra: 1282/1215,
  48791. bottom: 11/1293
  48792. }
  48793. },
  48794. back: {
  48795. height: math.unit(36, "earths"),
  48796. name: "Back",
  48797. image: {
  48798. source: "./media/characters/ecobyss/back.svg",
  48799. extra: 1291/1222,
  48800. bottom: 8/1299
  48801. }
  48802. },
  48803. },
  48804. [
  48805. {
  48806. name: "Normal",
  48807. height: math.unit(36, "earths"),
  48808. default: true
  48809. },
  48810. ]
  48811. ))
  48812. characterMakers.push(() => makeCharacter(
  48813. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48814. {
  48815. front: {
  48816. height: math.unit(12, "feet"),
  48817. name: "Front",
  48818. image: {
  48819. source: "./media/characters/vasuk/front.svg",
  48820. extra: 1326/1207,
  48821. bottom: 64/1390
  48822. }
  48823. },
  48824. },
  48825. [
  48826. {
  48827. name: "Normal",
  48828. height: math.unit(12, "feet"),
  48829. default: true
  48830. },
  48831. ]
  48832. ))
  48833. characterMakers.push(() => makeCharacter(
  48834. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48835. {
  48836. side: {
  48837. height: math.unit(100, "feet"),
  48838. name: "Side",
  48839. image: {
  48840. source: "./media/characters/linneaus/side.svg",
  48841. extra: 987/807,
  48842. bottom: 47/1034
  48843. }
  48844. },
  48845. },
  48846. [
  48847. {
  48848. name: "Macro",
  48849. height: math.unit(100, "feet"),
  48850. default: true
  48851. },
  48852. ]
  48853. ))
  48854. characterMakers.push(() => makeCharacter(
  48855. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48856. {
  48857. front: {
  48858. height: math.unit(8, "feet"),
  48859. weight: math.unit(1200, "lb"),
  48860. name: "Front",
  48861. image: {
  48862. source: "./media/characters/nyterious-daligdig/front.svg",
  48863. extra: 1284/1094,
  48864. bottom: 84/1368
  48865. }
  48866. },
  48867. back: {
  48868. height: math.unit(8, "feet"),
  48869. weight: math.unit(1200, "lb"),
  48870. name: "Back",
  48871. image: {
  48872. source: "./media/characters/nyterious-daligdig/back.svg",
  48873. extra: 1301/1121,
  48874. bottom: 129/1430
  48875. }
  48876. },
  48877. mouth: {
  48878. height: math.unit(1.464, "feet"),
  48879. name: "Mouth",
  48880. image: {
  48881. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48882. }
  48883. },
  48884. },
  48885. [
  48886. {
  48887. name: "Small",
  48888. height: math.unit(8, "feet"),
  48889. default: true
  48890. },
  48891. {
  48892. name: "Normal",
  48893. height: math.unit(15, "feet")
  48894. },
  48895. {
  48896. name: "Macro",
  48897. height: math.unit(90, "feet")
  48898. },
  48899. ]
  48900. ))
  48901. characterMakers.push(() => makeCharacter(
  48902. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48903. {
  48904. front: {
  48905. height: math.unit(7 + 4/12, "feet"),
  48906. weight: math.unit(252, "lb"),
  48907. name: "Front",
  48908. image: {
  48909. source: "./media/characters/bandel/front.svg",
  48910. extra: 1946/1775,
  48911. bottom: 26/1972
  48912. }
  48913. },
  48914. back: {
  48915. height: math.unit(7 + 4/12, "feet"),
  48916. weight: math.unit(252, "lb"),
  48917. name: "Back",
  48918. image: {
  48919. source: "./media/characters/bandel/back.svg",
  48920. extra: 1940/1770,
  48921. bottom: 25/1965
  48922. }
  48923. },
  48924. maw: {
  48925. height: math.unit(2.15, "feet"),
  48926. name: "Maw",
  48927. image: {
  48928. source: "./media/characters/bandel/maw.svg"
  48929. }
  48930. },
  48931. stomach: {
  48932. height: math.unit(1.95, "feet"),
  48933. name: "Stomach",
  48934. image: {
  48935. source: "./media/characters/bandel/stomach.svg"
  48936. }
  48937. },
  48938. },
  48939. [
  48940. {
  48941. name: "Normal",
  48942. height: math.unit(7 + 4/12, "feet"),
  48943. default: true
  48944. },
  48945. ]
  48946. ))
  48947. characterMakers.push(() => makeCharacter(
  48948. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48949. {
  48950. front: {
  48951. height: math.unit(10 + 5/12, "feet"),
  48952. weight: math.unit(773.5, "kg"),
  48953. name: "Front",
  48954. image: {
  48955. source: "./media/characters/zed/front.svg",
  48956. extra: 987/941,
  48957. bottom: 52/1039
  48958. }
  48959. },
  48960. },
  48961. [
  48962. {
  48963. name: "Short",
  48964. height: math.unit(5 + 4/12, "feet")
  48965. },
  48966. {
  48967. name: "Average",
  48968. height: math.unit(10 + 5/12, "feet"),
  48969. default: true
  48970. },
  48971. {
  48972. name: "Mini-Macro",
  48973. height: math.unit(24 + 9/12, "feet")
  48974. },
  48975. {
  48976. name: "Macro",
  48977. height: math.unit(249, "feet")
  48978. },
  48979. {
  48980. name: "Mega-Macro",
  48981. height: math.unit(12490, "feet")
  48982. },
  48983. {
  48984. name: "Giga-Macro",
  48985. height: math.unit(24.9, "miles")
  48986. },
  48987. {
  48988. name: "Tera-Macro",
  48989. height: math.unit(24900, "miles")
  48990. },
  48991. {
  48992. name: "Cosmic Scale",
  48993. height: math.unit(38.9, "lightyears")
  48994. },
  48995. {
  48996. name: "Universal Scale",
  48997. height: math.unit(138e12, "lightyears")
  48998. },
  48999. ]
  49000. ))
  49001. characterMakers.push(() => makeCharacter(
  49002. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49003. {
  49004. front: {
  49005. height: math.unit(1561, "inches"),
  49006. name: "Front",
  49007. image: {
  49008. source: "./media/characters/ivan/front.svg",
  49009. extra: 1126/1071,
  49010. bottom: 26/1152
  49011. }
  49012. },
  49013. back: {
  49014. height: math.unit(1561, "inches"),
  49015. name: "Back",
  49016. image: {
  49017. source: "./media/characters/ivan/back.svg",
  49018. extra: 1134/1079,
  49019. bottom: 30/1164
  49020. }
  49021. },
  49022. },
  49023. [
  49024. {
  49025. name: "Normal",
  49026. height: math.unit(1561, "inches"),
  49027. default: true
  49028. },
  49029. ]
  49030. ))
  49031. characterMakers.push(() => makeCharacter(
  49032. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49033. {
  49034. front: {
  49035. height: math.unit(5 + 7/12, "feet"),
  49036. weight: math.unit(150, "lb"),
  49037. name: "Front",
  49038. image: {
  49039. source: "./media/characters/robin-arctic-hare/front.svg",
  49040. extra: 1148/974,
  49041. bottom: 20/1168
  49042. }
  49043. },
  49044. },
  49045. [
  49046. {
  49047. name: "Normal",
  49048. height: math.unit(5 + 7/12, "feet"),
  49049. default: true
  49050. },
  49051. ]
  49052. ))
  49053. characterMakers.push(() => makeCharacter(
  49054. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49055. {
  49056. side: {
  49057. height: math.unit(5, "feet"),
  49058. name: "Side",
  49059. image: {
  49060. source: "./media/characters/birch/side.svg",
  49061. extra: 985/796,
  49062. bottom: 111/1096
  49063. }
  49064. },
  49065. },
  49066. [
  49067. {
  49068. name: "Normal",
  49069. height: math.unit(5, "feet"),
  49070. default: true
  49071. },
  49072. ]
  49073. ))
  49074. characterMakers.push(() => makeCharacter(
  49075. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49076. {
  49077. front: {
  49078. height: math.unit(4, "feet"),
  49079. name: "Front",
  49080. image: {
  49081. source: "./media/characters/rasp/front.svg",
  49082. extra: 561/478,
  49083. bottom: 74/635
  49084. }
  49085. },
  49086. },
  49087. [
  49088. {
  49089. name: "Normal",
  49090. height: math.unit(4, "feet"),
  49091. default: true
  49092. },
  49093. ]
  49094. ))
  49095. characterMakers.push(() => makeCharacter(
  49096. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49097. {
  49098. front: {
  49099. height: math.unit(4 + 6/12, "feet"),
  49100. name: "Front",
  49101. image: {
  49102. source: "./media/characters/agatha/front.svg",
  49103. extra: 947/933,
  49104. bottom: 42/989
  49105. }
  49106. },
  49107. back: {
  49108. height: math.unit(4 + 6/12, "feet"),
  49109. name: "Back",
  49110. image: {
  49111. source: "./media/characters/agatha/back.svg",
  49112. extra: 935/922,
  49113. bottom: 48/983
  49114. }
  49115. },
  49116. },
  49117. [
  49118. {
  49119. name: "Normal",
  49120. height: math.unit(4 + 6 /12, "feet"),
  49121. default: true
  49122. },
  49123. {
  49124. name: "Max Size",
  49125. height: math.unit(500, "feet")
  49126. },
  49127. ]
  49128. ))
  49129. characterMakers.push(() => makeCharacter(
  49130. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49131. {
  49132. side: {
  49133. height: math.unit(30, "feet"),
  49134. name: "Side",
  49135. image: {
  49136. source: "./media/characters/roggy/side.svg",
  49137. extra: 909/643,
  49138. bottom: 63/972
  49139. }
  49140. },
  49141. lounging: {
  49142. height: math.unit(20, "feet"),
  49143. name: "Lounging",
  49144. image: {
  49145. source: "./media/characters/roggy/lounging.svg",
  49146. extra: 643/479,
  49147. bottom: 145/788
  49148. }
  49149. },
  49150. handpaw: {
  49151. height: math.unit(13.1, "feet"),
  49152. name: "Handpaw",
  49153. image: {
  49154. source: "./media/characters/roggy/handpaw.svg"
  49155. }
  49156. },
  49157. footpaw: {
  49158. height: math.unit(15.8, "feet"),
  49159. name: "Footpaw",
  49160. image: {
  49161. source: "./media/characters/roggy/footpaw.svg"
  49162. }
  49163. },
  49164. },
  49165. [
  49166. {
  49167. name: "Menacing",
  49168. height: math.unit(30, "feet"),
  49169. default: true
  49170. },
  49171. ]
  49172. ))
  49173. characterMakers.push(() => makeCharacter(
  49174. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49175. {
  49176. front: {
  49177. height: math.unit(5 + 7/12, "feet"),
  49178. weight: math.unit(135, "lb"),
  49179. name: "Front",
  49180. image: {
  49181. source: "./media/characters/naomi/front.svg",
  49182. extra: 1209/1154,
  49183. bottom: 129/1338
  49184. }
  49185. },
  49186. back: {
  49187. height: math.unit(5 + 7/12, "feet"),
  49188. weight: math.unit(135, "lb"),
  49189. name: "Back",
  49190. image: {
  49191. source: "./media/characters/naomi/back.svg",
  49192. extra: 1252/1190,
  49193. bottom: 23/1275
  49194. }
  49195. },
  49196. },
  49197. [
  49198. {
  49199. name: "Normal",
  49200. height: math.unit(5 + 7 /12, "feet"),
  49201. default: true
  49202. },
  49203. ]
  49204. ))
  49205. characterMakers.push(() => makeCharacter(
  49206. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49207. {
  49208. side: {
  49209. height: math.unit(35, "meters"),
  49210. name: "Side",
  49211. image: {
  49212. source: "./media/characters/kimpi/side.svg",
  49213. extra: 419/382,
  49214. bottom: 63/482
  49215. }
  49216. },
  49217. hand: {
  49218. height: math.unit(8.96, "meters"),
  49219. name: "Hand",
  49220. image: {
  49221. source: "./media/characters/kimpi/hand.svg"
  49222. }
  49223. },
  49224. },
  49225. [
  49226. {
  49227. name: "Normal",
  49228. height: math.unit(35, "meters"),
  49229. default: true
  49230. },
  49231. ]
  49232. ))
  49233. characterMakers.push(() => makeCharacter(
  49234. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49235. {
  49236. front: {
  49237. height: math.unit(4 + 4/12, "feet"),
  49238. name: "Front",
  49239. image: {
  49240. source: "./media/characters/pepper-purrloin/front.svg",
  49241. extra: 1141/1024,
  49242. bottom: 21/1162
  49243. }
  49244. },
  49245. },
  49246. [
  49247. {
  49248. name: "Normal",
  49249. height: math.unit(4 + 4/12, "feet"),
  49250. default: true
  49251. },
  49252. ]
  49253. ))
  49254. characterMakers.push(() => makeCharacter(
  49255. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49256. {
  49257. front: {
  49258. height: math.unit(6 + 2/12, "feet"),
  49259. name: "Front",
  49260. image: {
  49261. source: "./media/characters/raphael/front.svg",
  49262. extra: 1101/962,
  49263. bottom: 59/1160
  49264. }
  49265. },
  49266. },
  49267. [
  49268. {
  49269. name: "Normal",
  49270. height: math.unit(6 + 2/12, "feet"),
  49271. default: true
  49272. },
  49273. ]
  49274. ))
  49275. characterMakers.push(() => makeCharacter(
  49276. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49277. {
  49278. front: {
  49279. height: math.unit(6, "feet"),
  49280. weight: math.unit(150, "lb"),
  49281. name: "Front",
  49282. image: {
  49283. source: "./media/characters/victor-williams/front.svg",
  49284. extra: 1894/1825,
  49285. bottom: 67/1961
  49286. }
  49287. },
  49288. },
  49289. [
  49290. {
  49291. name: "Normal",
  49292. height: math.unit(6, "feet"),
  49293. default: true
  49294. },
  49295. ]
  49296. ))
  49297. characterMakers.push(() => makeCharacter(
  49298. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49299. {
  49300. front: {
  49301. height: math.unit(5 + 8/12, "feet"),
  49302. weight: math.unit(150, "lb"),
  49303. name: "Front",
  49304. image: {
  49305. source: "./media/characters/rachel/front.svg",
  49306. extra: 1902/1787,
  49307. bottom: 46/1948
  49308. }
  49309. },
  49310. },
  49311. [
  49312. {
  49313. name: "Base Height",
  49314. height: math.unit(5 + 8/12, "feet"),
  49315. default: true
  49316. },
  49317. {
  49318. name: "Macro",
  49319. height: math.unit(200, "feet")
  49320. },
  49321. {
  49322. name: "Mega Macro",
  49323. height: math.unit(1, "mile")
  49324. },
  49325. {
  49326. name: "Giga Macro",
  49327. height: math.unit(1500, "miles")
  49328. },
  49329. {
  49330. name: "Tera Macro",
  49331. height: math.unit(8000, "miles")
  49332. },
  49333. {
  49334. name: "Tera Macro+",
  49335. height: math.unit(2e5, "miles")
  49336. },
  49337. ]
  49338. ))
  49339. characterMakers.push(() => makeCharacter(
  49340. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49341. {
  49342. front: {
  49343. height: math.unit(6.5, "feet"),
  49344. name: "Front",
  49345. image: {
  49346. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49347. extra: 860/819,
  49348. bottom: 307/1167
  49349. }
  49350. },
  49351. back: {
  49352. height: math.unit(6.5, "feet"),
  49353. name: "Back",
  49354. image: {
  49355. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49356. extra: 880/837,
  49357. bottom: 395/1275
  49358. }
  49359. },
  49360. sleeping: {
  49361. height: math.unit(2.79, "feet"),
  49362. name: "Sleeping",
  49363. image: {
  49364. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49365. extra: 465/383,
  49366. bottom: 263/728
  49367. }
  49368. },
  49369. maw: {
  49370. height: math.unit(2.52, "feet"),
  49371. name: "Maw",
  49372. image: {
  49373. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49374. }
  49375. },
  49376. },
  49377. [
  49378. {
  49379. name: "Normal",
  49380. height: math.unit(6.5, "feet"),
  49381. default: true
  49382. },
  49383. ]
  49384. ))
  49385. characterMakers.push(() => makeCharacter(
  49386. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49387. {
  49388. front: {
  49389. height: math.unit(5, "feet"),
  49390. name: "Front",
  49391. image: {
  49392. source: "./media/characters/nova-nerium/front.svg",
  49393. extra: 1548/1392,
  49394. bottom: 374/1922
  49395. }
  49396. },
  49397. back: {
  49398. height: math.unit(5, "feet"),
  49399. name: "Back",
  49400. image: {
  49401. source: "./media/characters/nova-nerium/back.svg",
  49402. extra: 1658/1468,
  49403. bottom: 257/1915
  49404. }
  49405. },
  49406. },
  49407. [
  49408. {
  49409. name: "Normal",
  49410. height: math.unit(5, "feet"),
  49411. default: true
  49412. },
  49413. ]
  49414. ))
  49415. characterMakers.push(() => makeCharacter(
  49416. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49417. {
  49418. front: {
  49419. height: math.unit(5 + 4/12, "feet"),
  49420. name: "Front",
  49421. image: {
  49422. source: "./media/characters/ashe-pyriph/front.svg",
  49423. extra: 1935/1747,
  49424. bottom: 60/1995
  49425. }
  49426. },
  49427. },
  49428. [
  49429. {
  49430. name: "Normal",
  49431. height: math.unit(5 + 4/12, "feet"),
  49432. default: true
  49433. },
  49434. ]
  49435. ))
  49436. characterMakers.push(() => makeCharacter(
  49437. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49438. {
  49439. front: {
  49440. height: math.unit(8.7, "feet"),
  49441. name: "Front",
  49442. image: {
  49443. source: "./media/characters/flicker-wisp/front.svg",
  49444. extra: 1835/1613,
  49445. bottom: 449/2284
  49446. }
  49447. },
  49448. side: {
  49449. height: math.unit(8.7, "feet"),
  49450. name: "Side",
  49451. image: {
  49452. source: "./media/characters/flicker-wisp/side.svg",
  49453. extra: 1841/1642,
  49454. bottom: 336/2177
  49455. },
  49456. default: true
  49457. },
  49458. maw: {
  49459. height: math.unit(3.35, "feet"),
  49460. name: "Maw",
  49461. image: {
  49462. source: "./media/characters/flicker-wisp/maw.svg",
  49463. extra: 2338/1506,
  49464. bottom: 0/2338
  49465. }
  49466. },
  49467. ovipositor: {
  49468. height: math.unit(4.95, "feet"),
  49469. name: "Ovipositor",
  49470. image: {
  49471. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49472. }
  49473. },
  49474. egg: {
  49475. height: math.unit(0.385, "feet"),
  49476. weight: math.unit(2, "lb"),
  49477. name: "Egg",
  49478. image: {
  49479. source: "./media/characters/flicker-wisp/egg.svg"
  49480. }
  49481. },
  49482. },
  49483. [
  49484. {
  49485. name: "Normal",
  49486. height: math.unit(8.7, "feet"),
  49487. default: true
  49488. },
  49489. ]
  49490. ))
  49491. characterMakers.push(() => makeCharacter(
  49492. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49493. {
  49494. side: {
  49495. height: math.unit(11, "feet"),
  49496. name: "Side",
  49497. image: {
  49498. source: "./media/characters/faefnul/side.svg",
  49499. extra: 1100/1007,
  49500. bottom: 0/1100
  49501. }
  49502. },
  49503. },
  49504. [
  49505. {
  49506. name: "Normal",
  49507. height: math.unit(11, "feet"),
  49508. default: true
  49509. },
  49510. ]
  49511. ))
  49512. characterMakers.push(() => makeCharacter(
  49513. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49514. {
  49515. front: {
  49516. height: math.unit(6 + 2/12, "feet"),
  49517. name: "Front",
  49518. image: {
  49519. source: "./media/characters/shady/front.svg",
  49520. extra: 502/461,
  49521. bottom: 9/511
  49522. }
  49523. },
  49524. kneeling: {
  49525. height: math.unit(4.6, "feet"),
  49526. name: "Kneeling",
  49527. image: {
  49528. source: "./media/characters/shady/kneeling.svg",
  49529. extra: 1328/1219,
  49530. bottom: 117/1445
  49531. }
  49532. },
  49533. maw: {
  49534. height: math.unit(2, "feet"),
  49535. name: "Maw",
  49536. image: {
  49537. source: "./media/characters/shady/maw.svg"
  49538. }
  49539. },
  49540. },
  49541. [
  49542. {
  49543. name: "Nano",
  49544. height: math.unit(1, "mm")
  49545. },
  49546. {
  49547. name: "Micro",
  49548. height: math.unit(12, "mm")
  49549. },
  49550. {
  49551. name: "Tiny",
  49552. height: math.unit(3, "inches")
  49553. },
  49554. {
  49555. name: "Normal",
  49556. height: math.unit(6 + 2/12, "feet"),
  49557. default: true
  49558. },
  49559. {
  49560. name: "Big",
  49561. height: math.unit(15, "feet")
  49562. },
  49563. {
  49564. name: "Macro",
  49565. height: math.unit(150, "feet")
  49566. },
  49567. {
  49568. name: "Titanic",
  49569. height: math.unit(500, "feet")
  49570. },
  49571. ]
  49572. ))
  49573. characterMakers.push(() => makeCharacter(
  49574. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49575. {
  49576. front: {
  49577. height: math.unit(12, "feet"),
  49578. name: "Front",
  49579. image: {
  49580. source: "./media/characters/fenrir/front.svg",
  49581. extra: 968/875,
  49582. bottom: 22/990
  49583. }
  49584. },
  49585. },
  49586. [
  49587. {
  49588. name: "Big",
  49589. height: math.unit(12, "feet"),
  49590. default: true
  49591. },
  49592. ]
  49593. ))
  49594. characterMakers.push(() => makeCharacter(
  49595. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49596. {
  49597. front: {
  49598. height: math.unit(5 + 4/12, "feet"),
  49599. name: "Front",
  49600. image: {
  49601. source: "./media/characters/makar/front.svg",
  49602. extra: 1181/1112,
  49603. bottom: 78/1259
  49604. }
  49605. },
  49606. },
  49607. [
  49608. {
  49609. name: "Normal",
  49610. height: math.unit(5 + 4/12, "feet"),
  49611. default: true
  49612. },
  49613. ]
  49614. ))
  49615. characterMakers.push(() => makeCharacter(
  49616. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49617. {
  49618. front: {
  49619. height: math.unit(5 + 7/12, "feet"),
  49620. name: "Front",
  49621. image: {
  49622. source: "./media/characters/callow/front.svg",
  49623. extra: 1482/1304,
  49624. bottom: 23/1505
  49625. }
  49626. },
  49627. back: {
  49628. height: math.unit(5 + 7/12, "feet"),
  49629. name: "Back",
  49630. image: {
  49631. source: "./media/characters/callow/back.svg",
  49632. extra: 1484/1296,
  49633. bottom: 25/1509
  49634. }
  49635. },
  49636. },
  49637. [
  49638. {
  49639. name: "Micro",
  49640. height: math.unit(3, "inches"),
  49641. default: true
  49642. },
  49643. {
  49644. name: "Normal",
  49645. height: math.unit(5 + 7/12, "feet")
  49646. },
  49647. ]
  49648. ))
  49649. characterMakers.push(() => makeCharacter(
  49650. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49651. {
  49652. front: {
  49653. height: math.unit(6 + 2/12, "feet"),
  49654. name: "Front",
  49655. image: {
  49656. source: "./media/characters/natel/front.svg",
  49657. extra: 1833/1692,
  49658. bottom: 166/1999
  49659. }
  49660. },
  49661. },
  49662. [
  49663. {
  49664. name: "Normal",
  49665. height: math.unit(6 + 2/12, "feet"),
  49666. default: true
  49667. },
  49668. ]
  49669. ))
  49670. characterMakers.push(() => makeCharacter(
  49671. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49672. {
  49673. front: {
  49674. height: math.unit(1.75, "meters"),
  49675. name: "Front",
  49676. image: {
  49677. source: "./media/characters/misu/front.svg",
  49678. extra: 1690/1558,
  49679. bottom: 234/1924
  49680. }
  49681. },
  49682. back: {
  49683. height: math.unit(1.75, "meters"),
  49684. name: "Back",
  49685. image: {
  49686. source: "./media/characters/misu/back.svg",
  49687. extra: 1762/1618,
  49688. bottom: 146/1908
  49689. }
  49690. },
  49691. frontNude: {
  49692. height: math.unit(1.75, "meters"),
  49693. name: "Front (Nude)",
  49694. image: {
  49695. source: "./media/characters/misu/front-nude.svg",
  49696. extra: 1690/1558,
  49697. bottom: 234/1924
  49698. }
  49699. },
  49700. backNude: {
  49701. height: math.unit(1.75, "meters"),
  49702. name: "Back (Nude)",
  49703. image: {
  49704. source: "./media/characters/misu/back-nude.svg",
  49705. extra: 1762/1618,
  49706. bottom: 146/1908
  49707. }
  49708. },
  49709. frontErect: {
  49710. height: math.unit(1.75, "meters"),
  49711. name: "Front (Erect)",
  49712. image: {
  49713. source: "./media/characters/misu/front-erect.svg",
  49714. extra: 1690/1558,
  49715. bottom: 234/1924
  49716. }
  49717. },
  49718. maw: {
  49719. height: math.unit(0.47, "meters"),
  49720. name: "Maw",
  49721. image: {
  49722. source: "./media/characters/misu/maw.svg"
  49723. }
  49724. },
  49725. head: {
  49726. height: math.unit(0.35, "meters"),
  49727. name: "Head",
  49728. image: {
  49729. source: "./media/characters/misu/head.svg"
  49730. }
  49731. },
  49732. rear: {
  49733. height: math.unit(0.47, "meters"),
  49734. name: "Rear",
  49735. image: {
  49736. source: "./media/characters/misu/rear.svg"
  49737. }
  49738. },
  49739. },
  49740. [
  49741. {
  49742. name: "Normal",
  49743. height: math.unit(1.75, "meters")
  49744. },
  49745. {
  49746. name: "Not good for the people",
  49747. height: math.unit(42, "meters")
  49748. },
  49749. {
  49750. name: "Not good for the neighborhood",
  49751. height: math.unit(135, "meters")
  49752. },
  49753. {
  49754. name: "Bit bigger problem",
  49755. height: math.unit(380, "meters"),
  49756. default: true
  49757. },
  49758. {
  49759. name: "Not good for the city",
  49760. height: math.unit(1.5, "km")
  49761. },
  49762. {
  49763. name: "Not good for the county",
  49764. height: math.unit(5.5, "km")
  49765. },
  49766. {
  49767. name: "Not good for the state",
  49768. height: math.unit(25, "km")
  49769. },
  49770. {
  49771. name: "Not good for the country",
  49772. height: math.unit(125, "km")
  49773. },
  49774. {
  49775. name: "Not good for the continent",
  49776. height: math.unit(2100, "km")
  49777. },
  49778. {
  49779. name: "Not good for the planet",
  49780. height: math.unit(35000, "km")
  49781. },
  49782. {
  49783. name: "Just no",
  49784. height: math.unit(8.5e18, "km")
  49785. },
  49786. ]
  49787. ))
  49788. characterMakers.push(() => makeCharacter(
  49789. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49790. {
  49791. front: {
  49792. height: math.unit(6.5, "feet"),
  49793. name: "Front",
  49794. image: {
  49795. source: "./media/characters/poppy/front.svg",
  49796. extra: 1878/1812,
  49797. bottom: 43/1921
  49798. }
  49799. },
  49800. feet: {
  49801. height: math.unit(1.06, "feet"),
  49802. name: "Feet",
  49803. image: {
  49804. source: "./media/characters/poppy/feet.svg",
  49805. extra: 1083/1083,
  49806. bottom: 87/1170
  49807. }
  49808. },
  49809. },
  49810. [
  49811. {
  49812. name: "Human",
  49813. height: math.unit(6.5, "feet")
  49814. },
  49815. {
  49816. name: "Default",
  49817. height: math.unit(300, "feet"),
  49818. default: true
  49819. },
  49820. {
  49821. name: "Huge",
  49822. height: math.unit(850, "feet")
  49823. },
  49824. {
  49825. name: "Mega",
  49826. height: math.unit(8000, "feet")
  49827. },
  49828. {
  49829. name: "Giga",
  49830. height: math.unit(300, "miles")
  49831. },
  49832. ]
  49833. ))
  49834. characterMakers.push(() => makeCharacter(
  49835. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49836. {
  49837. bipedal: {
  49838. height: math.unit(7, "feet"),
  49839. name: "Bipedal",
  49840. image: {
  49841. source: "./media/characters/zener/bipedal.svg",
  49842. extra: 874/805,
  49843. bottom: 109/983
  49844. }
  49845. },
  49846. quadrupedal: {
  49847. height: math.unit(4.64, "feet"),
  49848. name: "Quadrupedal",
  49849. image: {
  49850. source: "./media/characters/zener/quadrupedal.svg",
  49851. extra: 638/507,
  49852. bottom: 190/828
  49853. }
  49854. },
  49855. cock: {
  49856. height: math.unit(18, "inches"),
  49857. name: "Cock",
  49858. image: {
  49859. source: "./media/characters/zener/cock.svg"
  49860. }
  49861. },
  49862. },
  49863. [
  49864. {
  49865. name: "Normal",
  49866. height: math.unit(7, "feet"),
  49867. default: true
  49868. },
  49869. ]
  49870. ))
  49871. characterMakers.push(() => makeCharacter(
  49872. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49873. {
  49874. nude: {
  49875. height: math.unit(5 + 6/12, "feet"),
  49876. name: "Nude",
  49877. image: {
  49878. source: "./media/characters/charlie-dog/nude.svg",
  49879. extra: 768/734,
  49880. bottom: 26/794
  49881. }
  49882. },
  49883. dressed: {
  49884. height: math.unit(5 + 6/12, "feet"),
  49885. name: "Dressed",
  49886. image: {
  49887. source: "./media/characters/charlie-dog/dressed.svg",
  49888. extra: 768/734,
  49889. bottom: 26/794
  49890. }
  49891. },
  49892. },
  49893. [
  49894. {
  49895. name: "Normal",
  49896. height: math.unit(5 + 6/12, "feet"),
  49897. default: true
  49898. },
  49899. ]
  49900. ))
  49901. characterMakers.push(() => makeCharacter(
  49902. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49903. {
  49904. front: {
  49905. height: math.unit(6 + 4/12, "feet"),
  49906. name: "Front",
  49907. image: {
  49908. source: "./media/characters/ir'istrasz/front.svg",
  49909. extra: 1014/977,
  49910. bottom: 65/1079
  49911. }
  49912. },
  49913. back: {
  49914. height: math.unit(6 + 4/12, "feet"),
  49915. name: "Back",
  49916. image: {
  49917. source: "./media/characters/ir'istrasz/back.svg",
  49918. extra: 1024/992,
  49919. bottom: 34/1058
  49920. }
  49921. },
  49922. },
  49923. [
  49924. {
  49925. name: "Normal",
  49926. height: math.unit(6 + 4/12, "feet"),
  49927. default: true
  49928. },
  49929. ]
  49930. ))
  49931. characterMakers.push(() => makeCharacter(
  49932. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49933. {
  49934. front: {
  49935. height: math.unit(5 + 8/12, "feet"),
  49936. name: "Front",
  49937. image: {
  49938. source: "./media/characters/dee-ditto/front.svg",
  49939. extra: 1874/1785,
  49940. bottom: 68/1942
  49941. }
  49942. },
  49943. back: {
  49944. height: math.unit(5 + 8/12, "feet"),
  49945. name: "Back",
  49946. image: {
  49947. source: "./media/characters/dee-ditto/back.svg",
  49948. extra: 1870/1783,
  49949. bottom: 77/1947
  49950. }
  49951. },
  49952. },
  49953. [
  49954. {
  49955. name: "Normal",
  49956. height: math.unit(5 + 8/12, "feet"),
  49957. default: true
  49958. },
  49959. ]
  49960. ))
  49961. characterMakers.push(() => makeCharacter(
  49962. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49963. {
  49964. front: {
  49965. height: math.unit(7 + 6/12, "feet"),
  49966. name: "Front",
  49967. image: {
  49968. source: "./media/characters/fey/front.svg",
  49969. extra: 995/979,
  49970. bottom: 30/1025
  49971. }
  49972. },
  49973. back: {
  49974. height: math.unit(7 + 6/12, "feet"),
  49975. name: "Back",
  49976. image: {
  49977. source: "./media/characters/fey/back.svg",
  49978. extra: 1079/1008,
  49979. bottom: 5/1084
  49980. }
  49981. },
  49982. dressed: {
  49983. height: math.unit(7 + 6/12, "feet"),
  49984. name: "Dressed",
  49985. image: {
  49986. source: "./media/characters/fey/dressed.svg",
  49987. extra: 995/979,
  49988. bottom: 30/1025
  49989. }
  49990. },
  49991. },
  49992. [
  49993. {
  49994. name: "Normal",
  49995. height: math.unit(7 + 6/12, "feet"),
  49996. default: true
  49997. },
  49998. ]
  49999. ))
  50000. characterMakers.push(() => makeCharacter(
  50001. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50002. {
  50003. standing: {
  50004. height: math.unit(17, "feet"),
  50005. name: "Standing",
  50006. image: {
  50007. source: "./media/characters/aster/standing.svg",
  50008. extra: 1798/1598,
  50009. bottom: 117/1915
  50010. }
  50011. },
  50012. },
  50013. [
  50014. {
  50015. name: "Normal",
  50016. height: math.unit(17, "feet"),
  50017. default: true
  50018. },
  50019. {
  50020. name: "Homewrecker",
  50021. height: math.unit(95, "feet")
  50022. },
  50023. {
  50024. name: "Planet Devourer",
  50025. height: math.unit(1008000, "miles")
  50026. },
  50027. ]
  50028. ))
  50029. characterMakers.push(() => makeCharacter(
  50030. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50031. {
  50032. front: {
  50033. height: math.unit(6 + 5/12, "feet"),
  50034. weight: math.unit(265, "lb"),
  50035. name: "Front",
  50036. image: {
  50037. source: "./media/characters/devon-childs/front.svg",
  50038. extra: 1795/1721,
  50039. bottom: 41/1836
  50040. }
  50041. },
  50042. side: {
  50043. height: math.unit(6 + 5/12, "feet"),
  50044. weight: math.unit(265, "lb"),
  50045. name: "Side",
  50046. image: {
  50047. source: "./media/characters/devon-childs/side.svg",
  50048. extra: 1812/1738,
  50049. bottom: 30/1842
  50050. }
  50051. },
  50052. back: {
  50053. height: math.unit(6 + 5/12, "feet"),
  50054. weight: math.unit(265, "lb"),
  50055. name: "Back",
  50056. image: {
  50057. source: "./media/characters/devon-childs/back.svg",
  50058. extra: 1808/1735,
  50059. bottom: 23/1831
  50060. }
  50061. },
  50062. hand: {
  50063. height: math.unit(1.464, "feet"),
  50064. name: "Hand",
  50065. image: {
  50066. source: "./media/characters/devon-childs/hand.svg"
  50067. }
  50068. },
  50069. foot: {
  50070. height: math.unit(1.6, "feet"),
  50071. name: "Foot",
  50072. image: {
  50073. source: "./media/characters/devon-childs/foot.svg"
  50074. }
  50075. },
  50076. },
  50077. [
  50078. {
  50079. name: "Micro",
  50080. height: math.unit(7, "cm")
  50081. },
  50082. {
  50083. name: "Normal",
  50084. height: math.unit(6 + 5/12, "feet"),
  50085. default: true
  50086. },
  50087. {
  50088. name: "Macro",
  50089. height: math.unit(154, "feet")
  50090. },
  50091. ]
  50092. ))
  50093. characterMakers.push(() => makeCharacter(
  50094. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50095. {
  50096. front: {
  50097. height: math.unit(6, "feet"),
  50098. weight: math.unit(180, "lb"),
  50099. name: "Front",
  50100. image: {
  50101. source: "./media/characters/lydemox-vir/front.svg",
  50102. extra: 1632/1435,
  50103. bottom: 58/1690
  50104. }
  50105. },
  50106. frontSFW: {
  50107. height: math.unit(6, "feet"),
  50108. weight: math.unit(180, "lb"),
  50109. name: "Front (SFW)",
  50110. image: {
  50111. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50112. extra: 1632/1435,
  50113. bottom: 58/1690
  50114. }
  50115. },
  50116. back: {
  50117. height: math.unit(6, "feet"),
  50118. weight: math.unit(180, "lb"),
  50119. name: "Back",
  50120. image: {
  50121. source: "./media/characters/lydemox-vir/back.svg",
  50122. extra: 1593/1408,
  50123. bottom: 31/1624
  50124. }
  50125. },
  50126. paw: {
  50127. height: math.unit(1.85, "feet"),
  50128. name: "Paw",
  50129. image: {
  50130. source: "./media/characters/lydemox-vir/paw.svg"
  50131. }
  50132. },
  50133. dick: {
  50134. height: math.unit(1.8, "feet"),
  50135. name: "Dick",
  50136. image: {
  50137. source: "./media/characters/lydemox-vir/dick.svg"
  50138. }
  50139. },
  50140. },
  50141. [
  50142. {
  50143. name: "Macro",
  50144. height: math.unit(100, "feet"),
  50145. default: true
  50146. },
  50147. {
  50148. name: "Teramacro",
  50149. height: math.unit(1, "earth")
  50150. },
  50151. {
  50152. name: "Planetary",
  50153. height: math.unit(20, "earths")
  50154. },
  50155. ]
  50156. ))
  50157. characterMakers.push(() => makeCharacter(
  50158. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50159. {
  50160. front: {
  50161. height: math.unit(15 + 8/12, "feet"),
  50162. weight: math.unit(1237, "kg"),
  50163. name: "Front",
  50164. image: {
  50165. source: "./media/characters/mia/front.svg",
  50166. extra: 1573/1446,
  50167. bottom: 58/1631
  50168. }
  50169. },
  50170. },
  50171. [
  50172. {
  50173. name: "Small",
  50174. height: math.unit(9 + 5/12, "feet")
  50175. },
  50176. {
  50177. name: "Normal",
  50178. height: math.unit(15 + 8/12, "feet"),
  50179. default: true
  50180. },
  50181. ]
  50182. ))
  50183. characterMakers.push(() => makeCharacter(
  50184. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50185. {
  50186. front: {
  50187. height: math.unit(10 + 6/12, "feet"),
  50188. weight: math.unit(1.3, "tons"),
  50189. name: "Front",
  50190. image: {
  50191. source: "./media/characters/mr-graves/front.svg",
  50192. extra: 1779/1695,
  50193. bottom: 198/1977
  50194. }
  50195. },
  50196. },
  50197. [
  50198. {
  50199. name: "Normal",
  50200. height: math.unit(10 + 6 /12, "feet"),
  50201. default: true
  50202. },
  50203. ]
  50204. ))
  50205. characterMakers.push(() => makeCharacter(
  50206. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50207. {
  50208. dressedFront: {
  50209. height: math.unit(5 + 8/12, "feet"),
  50210. weight: math.unit(125, "lb"),
  50211. name: "Dressed (Front)",
  50212. image: {
  50213. source: "./media/characters/jess/dressed-front.svg",
  50214. extra: 1176/1152,
  50215. bottom: 42/1218
  50216. }
  50217. },
  50218. dressedSide: {
  50219. height: math.unit(5 + 8/12, "feet"),
  50220. weight: math.unit(125, "lb"),
  50221. name: "Dressed (Side)",
  50222. image: {
  50223. source: "./media/characters/jess/dressed-side.svg",
  50224. extra: 1204/1190,
  50225. bottom: 6/1210
  50226. }
  50227. },
  50228. nudeFront: {
  50229. height: math.unit(5 + 8/12, "feet"),
  50230. weight: math.unit(125, "lb"),
  50231. name: "Nude (Front)",
  50232. image: {
  50233. source: "./media/characters/jess/nude-front.svg",
  50234. extra: 1176/1152,
  50235. bottom: 42/1218
  50236. }
  50237. },
  50238. nudeSide: {
  50239. height: math.unit(5 + 8/12, "feet"),
  50240. weight: math.unit(125, "lb"),
  50241. name: "Nude (Side)",
  50242. image: {
  50243. source: "./media/characters/jess/nude-side.svg",
  50244. extra: 1204/1190,
  50245. bottom: 6/1210
  50246. }
  50247. },
  50248. organsFront: {
  50249. height: math.unit(2.83799342105, "feet"),
  50250. name: "Organs (Front)",
  50251. image: {
  50252. source: "./media/characters/jess/organs-front.svg"
  50253. }
  50254. },
  50255. organsSide: {
  50256. height: math.unit(2.64225290474, "feet"),
  50257. name: "Organs (Side)",
  50258. image: {
  50259. source: "./media/characters/jess/organs-side.svg"
  50260. }
  50261. },
  50262. digestiveTractFront: {
  50263. height: math.unit(2.8106580871, "feet"),
  50264. name: "Digestive Tract (Front)",
  50265. image: {
  50266. source: "./media/characters/jess/digestive-tract-front.svg"
  50267. }
  50268. },
  50269. digestiveTractSide: {
  50270. height: math.unit(2.54365045014, "feet"),
  50271. name: "Digestive Tract (Side)",
  50272. image: {
  50273. source: "./media/characters/jess/digestive-tract-side.svg"
  50274. }
  50275. },
  50276. respiratorySystemFront: {
  50277. height: math.unit(1.11196233456, "feet"),
  50278. name: "Respiratory System (Front)",
  50279. image: {
  50280. source: "./media/characters/jess/respiratory-system-front.svg"
  50281. }
  50282. },
  50283. respiratorySystemSide: {
  50284. height: math.unit(0.89327966297, "feet"),
  50285. name: "Respiratory System (Side)",
  50286. image: {
  50287. source: "./media/characters/jess/respiratory-system-side.svg"
  50288. }
  50289. },
  50290. urinaryTractFront: {
  50291. height: math.unit(1.16126356186, "feet"),
  50292. name: "Urinary Tract (Front)",
  50293. image: {
  50294. source: "./media/characters/jess/urinary-tract-front.svg"
  50295. }
  50296. },
  50297. urinaryTractSide: {
  50298. height: math.unit(1.20910039627, "feet"),
  50299. name: "Urinary Tract (Side)",
  50300. image: {
  50301. source: "./media/characters/jess/urinary-tract-side.svg"
  50302. }
  50303. },
  50304. reproductiveOrgansFront: {
  50305. height: math.unit(0.48422591566, "feet"),
  50306. name: "Reproductive Organs (Front)",
  50307. image: {
  50308. source: "./media/characters/jess/reproductive-organs-front.svg"
  50309. }
  50310. },
  50311. reproductiveOrgansSide: {
  50312. height: math.unit(0.61553314481, "feet"),
  50313. name: "Reproductive Organs (Side)",
  50314. image: {
  50315. source: "./media/characters/jess/reproductive-organs-side.svg"
  50316. }
  50317. },
  50318. breastsFront: {
  50319. height: math.unit(0.47690395121, "feet"),
  50320. name: "Breasts (Front)",
  50321. image: {
  50322. source: "./media/characters/jess/breasts-front.svg"
  50323. }
  50324. },
  50325. breastsSide: {
  50326. height: math.unit(0.30556998307, "feet"),
  50327. name: "Breasts (Side)",
  50328. image: {
  50329. source: "./media/characters/jess/breasts-side.svg"
  50330. }
  50331. },
  50332. heartFront: {
  50333. height: math.unit(0.53011022622, "feet"),
  50334. name: "Heart (Front)",
  50335. image: {
  50336. source: "./media/characters/jess/heart-front.svg"
  50337. }
  50338. },
  50339. heartSide: {
  50340. height: math.unit(0.51790695213, "feet"),
  50341. name: "Heart (Side)",
  50342. image: {
  50343. source: "./media/characters/jess/heart-side.svg"
  50344. }
  50345. },
  50346. earsAndNoseFront: {
  50347. height: math.unit(0.29385483995, "feet"),
  50348. name: "Ears and Nose (Front)",
  50349. image: {
  50350. source: "./media/characters/jess/ears-and-nose-front.svg"
  50351. }
  50352. },
  50353. earsAndNoseSide: {
  50354. height: math.unit(0.18109658741, "feet"),
  50355. name: "Ears and Nose (Side)",
  50356. image: {
  50357. source: "./media/characters/jess/ears-and-nose-side.svg"
  50358. }
  50359. },
  50360. },
  50361. [
  50362. {
  50363. name: "Normal",
  50364. height: math.unit(5 + 8/12, "feet"),
  50365. default: true
  50366. },
  50367. ]
  50368. ))
  50369. characterMakers.push(() => makeCharacter(
  50370. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50371. {
  50372. front: {
  50373. height: math.unit(6, "feet"),
  50374. weight: math.unit(6.64467e-7, "grams"),
  50375. name: "Front",
  50376. image: {
  50377. source: "./media/characters/wimpering/front.svg",
  50378. extra: 597/587,
  50379. bottom: 34/631
  50380. }
  50381. },
  50382. },
  50383. [
  50384. {
  50385. name: "Micro",
  50386. height: math.unit(0.4, "mm"),
  50387. default: true
  50388. },
  50389. ]
  50390. ))
  50391. characterMakers.push(() => makeCharacter(
  50392. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50393. {
  50394. front: {
  50395. height: math.unit(5 + 2/12, "feet"),
  50396. weight: math.unit(110, "lb"),
  50397. name: "Front",
  50398. image: {
  50399. source: "./media/characters/keltre/front.svg",
  50400. extra: 1099/1057,
  50401. bottom: 22/1121
  50402. }
  50403. },
  50404. back: {
  50405. height: math.unit(5 + 2/12, "feet"),
  50406. weight: math.unit(110, "lb"),
  50407. name: "Back",
  50408. image: {
  50409. source: "./media/characters/keltre/back.svg",
  50410. extra: 1095/1053,
  50411. bottom: 17/1112
  50412. }
  50413. },
  50414. dressed: {
  50415. height: math.unit(5 + 2/12, "feet"),
  50416. weight: math.unit(110, "lb"),
  50417. name: "Dressed",
  50418. image: {
  50419. source: "./media/characters/keltre/dressed.svg",
  50420. extra: 1099/1057,
  50421. bottom: 22/1121
  50422. }
  50423. },
  50424. winter: {
  50425. height: math.unit(5 + 2/12, "feet"),
  50426. weight: math.unit(110, "lb"),
  50427. name: "Winter",
  50428. image: {
  50429. source: "./media/characters/keltre/winter.svg",
  50430. extra: 1099/1057,
  50431. bottom: 22/1121
  50432. }
  50433. },
  50434. head: {
  50435. height: math.unit(1.61 * 0.86, "feet"),
  50436. name: "Head",
  50437. image: {
  50438. source: "./media/characters/keltre/head.svg",
  50439. extra: 534/421,
  50440. bottom: 0/534
  50441. }
  50442. },
  50443. hand: {
  50444. height: math.unit(1.3 * 0.86, "feet"),
  50445. name: "Hand",
  50446. image: {
  50447. source: "./media/characters/keltre/hand.svg"
  50448. }
  50449. },
  50450. foot: {
  50451. height: math.unit(1.8 * 0.86, "feet"),
  50452. name: "Foot",
  50453. image: {
  50454. source: "./media/characters/keltre/foot.svg"
  50455. }
  50456. },
  50457. },
  50458. [
  50459. {
  50460. name: "Fine",
  50461. height: math.unit(1, "inch")
  50462. },
  50463. {
  50464. name: "Dimnutive",
  50465. height: math.unit(4, "inches")
  50466. },
  50467. {
  50468. name: "Tiny",
  50469. height: math.unit(1, "foot")
  50470. },
  50471. {
  50472. name: "Small",
  50473. height: math.unit(3, "feet")
  50474. },
  50475. {
  50476. name: "Normal",
  50477. height: math.unit(5 + 2/12, "feet"),
  50478. default: true
  50479. },
  50480. ]
  50481. ))
  50482. characterMakers.push(() => makeCharacter(
  50483. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50484. {
  50485. front: {
  50486. height: math.unit(6 + 2/12, "feet"),
  50487. name: "Front",
  50488. image: {
  50489. source: "./media/characters/nox/front.svg",
  50490. extra: 1917/1830,
  50491. bottom: 74/1991
  50492. }
  50493. },
  50494. back: {
  50495. height: math.unit(6 + 2/12, "feet"),
  50496. name: "Back",
  50497. image: {
  50498. source: "./media/characters/nox/back.svg",
  50499. extra: 1896/1815,
  50500. bottom: 21/1917
  50501. }
  50502. },
  50503. head: {
  50504. height: math.unit(1.1, "feet"),
  50505. name: "Head",
  50506. image: {
  50507. source: "./media/characters/nox/head.svg",
  50508. extra: 874/704,
  50509. bottom: 0/874
  50510. }
  50511. },
  50512. tattoo: {
  50513. height: math.unit(0.729, "feet"),
  50514. name: "Tattoo",
  50515. image: {
  50516. source: "./media/characters/nox/tattoo.svg"
  50517. }
  50518. },
  50519. },
  50520. [
  50521. {
  50522. name: "Normal",
  50523. height: math.unit(6 + 2/12, "feet")
  50524. },
  50525. {
  50526. name: "Gigamacro",
  50527. height: math.unit(2, "earths"),
  50528. default: true
  50529. },
  50530. {
  50531. name: "Cosmic",
  50532. height: math.unit(867, "yottameters")
  50533. },
  50534. ]
  50535. ))
  50536. characterMakers.push(() => makeCharacter(
  50537. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50538. {
  50539. front: {
  50540. height: math.unit(6, "feet"),
  50541. weight: math.unit(150, "lb"),
  50542. name: "Front",
  50543. image: {
  50544. source: "./media/characters/caspian/front.svg",
  50545. extra: 1443/1359,
  50546. bottom: 0/1443
  50547. }
  50548. },
  50549. back: {
  50550. height: math.unit(6, "feet"),
  50551. weight: math.unit(150, "lb"),
  50552. name: "Back",
  50553. image: {
  50554. source: "./media/characters/caspian/back.svg",
  50555. extra: 1379/1309,
  50556. bottom: 0/1379
  50557. }
  50558. },
  50559. head: {
  50560. height: math.unit(0.9, "feet"),
  50561. name: "Head",
  50562. image: {
  50563. source: "./media/characters/caspian/head.svg",
  50564. extra: 692/492,
  50565. bottom: 0/692
  50566. }
  50567. },
  50568. headAlt: {
  50569. height: math.unit(0.95, "feet"),
  50570. name: "Head (Alt)",
  50571. image: {
  50572. source: "./media/characters/caspian/head-alt.svg",
  50573. extra: 668/508,
  50574. bottom: 0/668
  50575. }
  50576. },
  50577. hand: {
  50578. height: math.unit(0.8, "feet"),
  50579. name: "Hand",
  50580. image: {
  50581. source: "./media/characters/caspian/hand.svg"
  50582. }
  50583. },
  50584. paw: {
  50585. height: math.unit(0.95, "feet"),
  50586. name: "Paw",
  50587. image: {
  50588. source: "./media/characters/caspian/paw.svg"
  50589. }
  50590. },
  50591. },
  50592. [
  50593. {
  50594. name: "Normal",
  50595. height: math.unit(162, "feet"),
  50596. default: true
  50597. },
  50598. ]
  50599. ))
  50600. characterMakers.push(() => makeCharacter(
  50601. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50602. {
  50603. front: {
  50604. height: math.unit(6, "feet"),
  50605. name: "Front",
  50606. image: {
  50607. source: "./media/characters/myra-aisling/front.svg",
  50608. extra: 1268/1166,
  50609. bottom: 73/1341
  50610. }
  50611. },
  50612. back: {
  50613. height: math.unit(6, "feet"),
  50614. name: "Back",
  50615. image: {
  50616. source: "./media/characters/myra-aisling/back.svg",
  50617. extra: 1249/1149,
  50618. bottom: 79/1328
  50619. }
  50620. },
  50621. dressed: {
  50622. height: math.unit(6, "feet"),
  50623. name: "Dressed",
  50624. image: {
  50625. source: "./media/characters/myra-aisling/dressed.svg",
  50626. extra: 1290/1189,
  50627. bottom: 47/1337
  50628. }
  50629. },
  50630. hand: {
  50631. height: math.unit(1.1, "feet"),
  50632. name: "Hand",
  50633. image: {
  50634. source: "./media/characters/myra-aisling/hand.svg"
  50635. }
  50636. },
  50637. paw: {
  50638. height: math.unit(1.23, "feet"),
  50639. name: "Paw",
  50640. image: {
  50641. source: "./media/characters/myra-aisling/paw.svg"
  50642. }
  50643. },
  50644. },
  50645. [
  50646. {
  50647. name: "Normal",
  50648. height: math.unit(160, "feet"),
  50649. default: true
  50650. },
  50651. ]
  50652. ))
  50653. characterMakers.push(() => makeCharacter(
  50654. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50655. {
  50656. front: {
  50657. height: math.unit(6, "feet"),
  50658. name: "Front",
  50659. image: {
  50660. source: "./media/characters/tenley-sidero/front.svg",
  50661. extra: 1365/1276,
  50662. bottom: 47/1412
  50663. }
  50664. },
  50665. back: {
  50666. height: math.unit(6, "feet"),
  50667. name: "Back",
  50668. image: {
  50669. source: "./media/characters/tenley-sidero/back.svg",
  50670. extra: 1383/1283,
  50671. bottom: 35/1418
  50672. }
  50673. },
  50674. dressed: {
  50675. height: math.unit(6, "feet"),
  50676. name: "Dressed",
  50677. image: {
  50678. source: "./media/characters/tenley-sidero/dressed.svg",
  50679. extra: 1364/1275,
  50680. bottom: 42/1406
  50681. }
  50682. },
  50683. head: {
  50684. height: math.unit(1.47, "feet"),
  50685. name: "Head",
  50686. image: {
  50687. source: "./media/characters/tenley-sidero/head.svg",
  50688. extra: 610/490,
  50689. bottom: 0/610
  50690. }
  50691. },
  50692. },
  50693. [
  50694. {
  50695. name: "Normal",
  50696. height: math.unit(154, "feet"),
  50697. default: true
  50698. },
  50699. ]
  50700. ))
  50701. characterMakers.push(() => makeCharacter(
  50702. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50703. {
  50704. front: {
  50705. height: math.unit(5, "inches"),
  50706. name: "Front",
  50707. image: {
  50708. source: "./media/characters/mallory/front.svg",
  50709. extra: 1919/1678,
  50710. bottom: 29/1948
  50711. }
  50712. },
  50713. hand: {
  50714. height: math.unit(0.73, "inches"),
  50715. name: "Hand",
  50716. image: {
  50717. source: "./media/characters/mallory/hand.svg"
  50718. }
  50719. },
  50720. paw: {
  50721. height: math.unit(0.68, "inches"),
  50722. name: "Paw",
  50723. image: {
  50724. source: "./media/characters/mallory/paw.svg"
  50725. }
  50726. },
  50727. },
  50728. [
  50729. {
  50730. name: "Small",
  50731. height: math.unit(5, "inches"),
  50732. default: true
  50733. },
  50734. ]
  50735. ))
  50736. characterMakers.push(() => makeCharacter(
  50737. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50738. {
  50739. naked: {
  50740. height: math.unit(6, "feet"),
  50741. name: "Naked",
  50742. image: {
  50743. source: "./media/characters/mab/naked.svg",
  50744. extra: 1855/1757,
  50745. bottom: 208/2063
  50746. }
  50747. },
  50748. outside: {
  50749. height: math.unit(6, "feet"),
  50750. name: "Outside",
  50751. image: {
  50752. source: "./media/characters/mab/outside.svg",
  50753. extra: 1855/1757,
  50754. bottom: 208/2063
  50755. }
  50756. },
  50757. party: {
  50758. height: math.unit(6, "feet"),
  50759. name: "Party",
  50760. image: {
  50761. source: "./media/characters/mab/party.svg",
  50762. extra: 1855/1757,
  50763. bottom: 208/2063
  50764. }
  50765. },
  50766. },
  50767. [
  50768. {
  50769. name: "Normal",
  50770. height: math.unit(165, "feet"),
  50771. default: true
  50772. },
  50773. ]
  50774. ))
  50775. characterMakers.push(() => makeCharacter(
  50776. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50777. {
  50778. feral: {
  50779. height: math.unit(12, "feet"),
  50780. weight: math.unit(20000, "lb"),
  50781. name: "Side",
  50782. image: {
  50783. source: "./media/characters/winter/feral.svg",
  50784. extra: 1286/943,
  50785. bottom: 112/1398
  50786. },
  50787. form: "feral",
  50788. default: true
  50789. },
  50790. feralNsfw: {
  50791. height: math.unit(12, "feet"),
  50792. weight: math.unit(20000, "lb"),
  50793. name: "Side (NSFW)",
  50794. image: {
  50795. source: "./media/characters/winter/feral-nsfw.svg",
  50796. extra: 1286/943,
  50797. bottom: 112/1398
  50798. },
  50799. form: "feral"
  50800. },
  50801. dick: {
  50802. height: math.unit(3.79, "feet"),
  50803. name: "Dick",
  50804. image: {
  50805. source: "./media/characters/winter/dick.svg"
  50806. },
  50807. form: "feral"
  50808. },
  50809. anthro: {
  50810. height: math.unit(12, "feet"),
  50811. weight: math.unit(10, "tons"),
  50812. name: "Anthro",
  50813. image: {
  50814. source: "./media/characters/winter/anthro.svg",
  50815. extra: 1701/1553,
  50816. bottom: 64/1765
  50817. },
  50818. form: "anthro",
  50819. default: true
  50820. },
  50821. },
  50822. [
  50823. {
  50824. name: "Big",
  50825. height: math.unit(12, "feet"),
  50826. default: true,
  50827. form: "feral"
  50828. },
  50829. {
  50830. name: "Big",
  50831. height: math.unit(12, "feet"),
  50832. default: true,
  50833. form: "anthro"
  50834. },
  50835. ],
  50836. {
  50837. "feral": {
  50838. name: "Feral",
  50839. default: true
  50840. },
  50841. "anthro": {
  50842. name: "Anthro"
  50843. }
  50844. }
  50845. ))
  50846. characterMakers.push(() => makeCharacter(
  50847. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50848. {
  50849. front: {
  50850. height: math.unit(4.1, "inches"),
  50851. name: "Front",
  50852. image: {
  50853. source: "./media/characters/alto/front.svg",
  50854. extra: 736/627,
  50855. bottom: 90/826
  50856. }
  50857. },
  50858. },
  50859. [
  50860. {
  50861. name: "Normal",
  50862. height: math.unit(4.1, "inches"),
  50863. default: true
  50864. },
  50865. ]
  50866. ))
  50867. characterMakers.push(() => makeCharacter(
  50868. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50869. {
  50870. sitting: {
  50871. height: math.unit(3, "feet"),
  50872. name: "Sitting",
  50873. image: {
  50874. source: "./media/characters/ratstrid-v/sitting.svg",
  50875. extra: 355/310,
  50876. bottom: 136/491
  50877. }
  50878. },
  50879. },
  50880. [
  50881. {
  50882. name: "Normal",
  50883. height: math.unit(3, "feet"),
  50884. default: true
  50885. },
  50886. ]
  50887. ))
  50888. characterMakers.push(() => makeCharacter(
  50889. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50890. {
  50891. back: {
  50892. height: math.unit(6, "feet"),
  50893. weight: math.unit(450, "lb"),
  50894. name: "Back",
  50895. image: {
  50896. source: "./media/characters/siz/back.svg",
  50897. extra: 1449/1274,
  50898. bottom: 13/1462
  50899. }
  50900. },
  50901. },
  50902. [
  50903. {
  50904. name: "Smallest",
  50905. height: math.unit(18 + 3/12, "feet")
  50906. },
  50907. {
  50908. name: "Modest",
  50909. height: math.unit(56 + 8/12, "feet"),
  50910. default: true
  50911. },
  50912. {
  50913. name: "Largest",
  50914. height: math.unit(3590, "feet")
  50915. },
  50916. ]
  50917. ))
  50918. characterMakers.push(() => makeCharacter(
  50919. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50920. {
  50921. front: {
  50922. height: math.unit(5 + 9/12, "feet"),
  50923. weight: math.unit(150, "lb"),
  50924. name: "Front",
  50925. image: {
  50926. source: "./media/characters/ven/front.svg",
  50927. extra: 1372/1320,
  50928. bottom: 73/1445
  50929. }
  50930. },
  50931. side: {
  50932. height: math.unit(5 + 9/12, "feet"),
  50933. weight: math.unit(1150, "lb"),
  50934. name: "Side",
  50935. image: {
  50936. source: "./media/characters/ven/side.svg",
  50937. extra: 1119/1070,
  50938. bottom: 42/1161
  50939. },
  50940. default: true
  50941. },
  50942. },
  50943. [
  50944. {
  50945. name: "Normal",
  50946. height: math.unit(5 + 9/12, "feet"),
  50947. default: true
  50948. },
  50949. ]
  50950. ))
  50951. characterMakers.push(() => makeCharacter(
  50952. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50953. {
  50954. front: {
  50955. height: math.unit(12, "feet"),
  50956. weight: math.unit(1000, "kg"),
  50957. name: "Front",
  50958. image: {
  50959. source: "./media/characters/maple/front.svg",
  50960. extra: 1193/1081,
  50961. bottom: 22/1215
  50962. }
  50963. },
  50964. },
  50965. [
  50966. {
  50967. name: "Compressed",
  50968. height: math.unit(7, "feet")
  50969. },
  50970. {
  50971. name: "Normal",
  50972. height: math.unit(12, "feet"),
  50973. default: true
  50974. },
  50975. ]
  50976. ))
  50977. characterMakers.push(() => makeCharacter(
  50978. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50979. {
  50980. front: {
  50981. height: math.unit(9, "feet"),
  50982. weight: math.unit(1500, "lb"),
  50983. name: "Front",
  50984. image: {
  50985. source: "./media/characters/nora/front.svg",
  50986. extra: 1348/1286,
  50987. bottom: 218/1566
  50988. }
  50989. },
  50990. erect: {
  50991. height: math.unit(9, "feet"),
  50992. weight: math.unit(11500, "lb"),
  50993. name: "Erect",
  50994. image: {
  50995. source: "./media/characters/nora/erect.svg",
  50996. extra: 1488/1433,
  50997. bottom: 133/1621
  50998. }
  50999. },
  51000. },
  51001. [
  51002. {
  51003. name: "Normal",
  51004. height: math.unit(9, "feet"),
  51005. default: true
  51006. },
  51007. ]
  51008. ))
  51009. characterMakers.push(() => makeCharacter(
  51010. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51011. {
  51012. front: {
  51013. height: math.unit(25, "feet"),
  51014. weight: math.unit(27500, "lb"),
  51015. name: "Front",
  51016. image: {
  51017. source: "./media/characters/north-caudin/front.svg",
  51018. extra: 1184/1082,
  51019. bottom: 23/1207
  51020. }
  51021. },
  51022. },
  51023. [
  51024. {
  51025. name: "Compressed",
  51026. height: math.unit(10, "feet")
  51027. },
  51028. {
  51029. name: "Normal",
  51030. height: math.unit(25, "feet"),
  51031. default: true
  51032. },
  51033. ]
  51034. ))
  51035. characterMakers.push(() => makeCharacter(
  51036. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51037. {
  51038. front: {
  51039. height: math.unit(9, "feet"),
  51040. weight: math.unit(1250, "lb"),
  51041. name: "Front",
  51042. image: {
  51043. source: "./media/characters/merrian/front.svg",
  51044. extra: 2393/2304,
  51045. bottom: 40/2433
  51046. }
  51047. },
  51048. },
  51049. [
  51050. {
  51051. name: "Normal",
  51052. height: math.unit(9, "feet"),
  51053. default: true
  51054. },
  51055. ]
  51056. ))
  51057. characterMakers.push(() => makeCharacter(
  51058. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51059. {
  51060. front: {
  51061. height: math.unit(9, "feet"),
  51062. weight: math.unit(1000, "lb"),
  51063. name: "Front",
  51064. image: {
  51065. source: "./media/characters/hazel/front.svg",
  51066. extra: 2351/2298,
  51067. bottom: 38/2389
  51068. }
  51069. },
  51070. },
  51071. [
  51072. {
  51073. name: "Normal",
  51074. height: math.unit(9, "feet"),
  51075. default: true
  51076. },
  51077. ]
  51078. ))
  51079. characterMakers.push(() => makeCharacter(
  51080. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51081. {
  51082. front: {
  51083. height: math.unit(13, "feet"),
  51084. weight: math.unit(3200, "lb"),
  51085. name: "Front",
  51086. image: {
  51087. source: "./media/characters/emma/front.svg",
  51088. extra: 2263/2029,
  51089. bottom: 68/2331
  51090. }
  51091. },
  51092. },
  51093. [
  51094. {
  51095. name: "Normal",
  51096. height: math.unit(13, "feet"),
  51097. default: true
  51098. },
  51099. ]
  51100. ))
  51101. characterMakers.push(() => makeCharacter(
  51102. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51103. {
  51104. front: {
  51105. height: math.unit(11 + 9/12, "feet"),
  51106. weight: math.unit(2500, "lb"),
  51107. name: "Front",
  51108. image: {
  51109. source: "./media/characters/ilumina/front.svg",
  51110. extra: 2248/2209,
  51111. bottom: 164/2412
  51112. }
  51113. },
  51114. },
  51115. [
  51116. {
  51117. name: "Normal",
  51118. height: math.unit(11 + 9/12, "feet"),
  51119. default: true
  51120. },
  51121. ]
  51122. ))
  51123. characterMakers.push(() => makeCharacter(
  51124. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51125. {
  51126. front: {
  51127. height: math.unit(8 + 10/12, "feet"),
  51128. weight: math.unit(1350, "lb"),
  51129. name: "Front",
  51130. image: {
  51131. source: "./media/characters/moonshine/front.svg",
  51132. extra: 2395/2288,
  51133. bottom: 40/2435
  51134. }
  51135. },
  51136. },
  51137. [
  51138. {
  51139. name: "Normal",
  51140. height: math.unit(8 + 10/12, "feet"),
  51141. default: true
  51142. },
  51143. ]
  51144. ))
  51145. characterMakers.push(() => makeCharacter(
  51146. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51147. {
  51148. front: {
  51149. height: math.unit(14, "feet"),
  51150. weight: math.unit(3400, "lb"),
  51151. name: "Front",
  51152. image: {
  51153. source: "./media/characters/aletia/front.svg",
  51154. extra: 1185/1052,
  51155. bottom: 21/1206
  51156. }
  51157. },
  51158. },
  51159. [
  51160. {
  51161. name: "Compressed",
  51162. height: math.unit(8, "feet")
  51163. },
  51164. {
  51165. name: "Normal",
  51166. height: math.unit(14, "feet"),
  51167. default: true
  51168. },
  51169. ]
  51170. ))
  51171. characterMakers.push(() => makeCharacter(
  51172. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51173. {
  51174. front: {
  51175. height: math.unit(17, "feet"),
  51176. weight: math.unit(6500, "lb"),
  51177. name: "Front",
  51178. image: {
  51179. source: "./media/characters/deidra/front.svg",
  51180. extra: 1201/1081,
  51181. bottom: 16/1217
  51182. }
  51183. },
  51184. },
  51185. [
  51186. {
  51187. name: "Compressed",
  51188. height: math.unit(9 + 6/12, "feet")
  51189. },
  51190. {
  51191. name: "Normal",
  51192. height: math.unit(17, "feet"),
  51193. default: true
  51194. },
  51195. ]
  51196. ))
  51197. characterMakers.push(() => makeCharacter(
  51198. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51199. {
  51200. front: {
  51201. height: math.unit(7 + 4/12, "feet"),
  51202. weight: math.unit(280, "lb"),
  51203. name: "Front",
  51204. image: {
  51205. source: "./media/characters/freki-yrmori/front.svg",
  51206. extra: 1286/1182,
  51207. bottom: 29/1315
  51208. }
  51209. },
  51210. maw: {
  51211. height: math.unit(0.9, "feet"),
  51212. name: "Maw",
  51213. image: {
  51214. source: "./media/characters/freki-yrmori/maw.svg"
  51215. }
  51216. },
  51217. },
  51218. [
  51219. {
  51220. name: "Normal",
  51221. height: math.unit(7 + 4/12, "feet"),
  51222. default: true
  51223. },
  51224. {
  51225. name: "Macro",
  51226. height: math.unit(38.5, "meters")
  51227. },
  51228. ]
  51229. ))
  51230. characterMakers.push(() => makeCharacter(
  51231. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51232. {
  51233. side: {
  51234. height: math.unit(47.2, "meters"),
  51235. weight: math.unit(10000, "tons"),
  51236. name: "Side",
  51237. image: {
  51238. source: "./media/characters/aetherios/side.svg",
  51239. extra: 2363/642,
  51240. bottom: 221/2584
  51241. }
  51242. },
  51243. top: {
  51244. height: math.unit(240, "meters"),
  51245. weight: math.unit(10000, "tons"),
  51246. name: "Top",
  51247. image: {
  51248. source: "./media/characters/aetherios/top.svg"
  51249. }
  51250. },
  51251. bottom: {
  51252. height: math.unit(240, "meters"),
  51253. weight: math.unit(10000, "tons"),
  51254. name: "Bottom",
  51255. image: {
  51256. source: "./media/characters/aetherios/bottom.svg"
  51257. }
  51258. },
  51259. head: {
  51260. height: math.unit(38.6, "meters"),
  51261. name: "Head",
  51262. image: {
  51263. source: "./media/characters/aetherios/head.svg",
  51264. extra: 1335/1112,
  51265. bottom: 0/1335
  51266. }
  51267. },
  51268. front: {
  51269. height: math.unit(29, "meters"),
  51270. name: "Front",
  51271. image: {
  51272. source: "./media/characters/aetherios/front.svg",
  51273. extra: 1266/953,
  51274. bottom: 158/1424
  51275. }
  51276. },
  51277. maw: {
  51278. height: math.unit(16.37, "meters"),
  51279. name: "Maw",
  51280. image: {
  51281. source: "./media/characters/aetherios/maw.svg",
  51282. extra: 748/637,
  51283. bottom: 0/748
  51284. },
  51285. extraAttributes: {
  51286. preyCapacity: {
  51287. name: "Capacity",
  51288. power: 3,
  51289. type: "volume",
  51290. base: math.unit(1000, "people")
  51291. },
  51292. tongueSize: {
  51293. name: "Tongue Size",
  51294. power: 2,
  51295. type: "area",
  51296. base: math.unit(21, "m^2")
  51297. }
  51298. }
  51299. },
  51300. forepaw: {
  51301. height: math.unit(18, "meters"),
  51302. name: "Forepaw",
  51303. image: {
  51304. source: "./media/characters/aetherios/forepaw.svg"
  51305. }
  51306. },
  51307. hindpaw: {
  51308. height: math.unit(23, "meters"),
  51309. name: "Hindpaw",
  51310. image: {
  51311. source: "./media/characters/aetherios/hindpaw.svg"
  51312. }
  51313. },
  51314. genitals: {
  51315. height: math.unit(42, "meters"),
  51316. name: "Genitals",
  51317. image: {
  51318. source: "./media/characters/aetherios/genitals.svg"
  51319. }
  51320. },
  51321. },
  51322. [
  51323. {
  51324. name: "Normal",
  51325. height: math.unit(47.2, "meters"),
  51326. default: true
  51327. },
  51328. {
  51329. name: "Macro",
  51330. height: math.unit(160, "meters")
  51331. },
  51332. {
  51333. name: "Mega",
  51334. height: math.unit(1.87, "km")
  51335. },
  51336. {
  51337. name: "Giga",
  51338. height: math.unit(40000, "km")
  51339. },
  51340. {
  51341. name: "Stellar",
  51342. height: math.unit(158000000, "km")
  51343. },
  51344. {
  51345. name: "Cosmic",
  51346. height: math.unit(9.46e12, "km")
  51347. },
  51348. ]
  51349. ))
  51350. characterMakers.push(() => makeCharacter(
  51351. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51352. {
  51353. front: {
  51354. height: math.unit(5 + 4/12, "feet"),
  51355. weight: math.unit(80, "lb"),
  51356. name: "Front",
  51357. image: {
  51358. source: "./media/characters/mizu-gieeg/front.svg",
  51359. extra: 850/709,
  51360. bottom: 52/902
  51361. }
  51362. },
  51363. back: {
  51364. height: math.unit(5 + 4/12, "feet"),
  51365. weight: math.unit(80, "lb"),
  51366. name: "Back",
  51367. image: {
  51368. source: "./media/characters/mizu-gieeg/back.svg",
  51369. extra: 882/745,
  51370. bottom: 25/907
  51371. }
  51372. },
  51373. },
  51374. [
  51375. {
  51376. name: "Normal",
  51377. height: math.unit(5 + 4/12, "feet"),
  51378. default: true
  51379. },
  51380. ]
  51381. ))
  51382. characterMakers.push(() => makeCharacter(
  51383. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51384. {
  51385. front: {
  51386. height: math.unit(6, "feet"),
  51387. name: "Front",
  51388. image: {
  51389. source: "./media/characters/roselle-st-papier/front.svg",
  51390. extra: 1430/1280,
  51391. bottom: 37/1467
  51392. }
  51393. },
  51394. back: {
  51395. height: math.unit(6, "feet"),
  51396. name: "Back",
  51397. image: {
  51398. source: "./media/characters/roselle-st-papier/back.svg",
  51399. extra: 1491/1296,
  51400. bottom: 23/1514
  51401. }
  51402. },
  51403. ear: {
  51404. height: math.unit(1.26, "feet"),
  51405. name: "Ear",
  51406. image: {
  51407. source: "./media/characters/roselle-st-papier/ear.svg"
  51408. }
  51409. },
  51410. },
  51411. [
  51412. {
  51413. name: "Normal",
  51414. height: math.unit(150, "feet"),
  51415. default: true
  51416. },
  51417. ]
  51418. ))
  51419. characterMakers.push(() => makeCharacter(
  51420. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51421. {
  51422. front: {
  51423. height: math.unit(1, "inches"),
  51424. name: "Front",
  51425. image: {
  51426. source: "./media/characters/valargent/front.svg",
  51427. extra: 1825/1694,
  51428. bottom: 62/1887
  51429. }
  51430. },
  51431. back: {
  51432. height: math.unit(1, "inches"),
  51433. name: "Back",
  51434. image: {
  51435. source: "./media/characters/valargent/back.svg",
  51436. extra: 1775/1682,
  51437. bottom: 88/1863
  51438. }
  51439. },
  51440. },
  51441. [
  51442. {
  51443. name: "Micro",
  51444. height: math.unit(1, "inch"),
  51445. default: true
  51446. },
  51447. ]
  51448. ))
  51449. characterMakers.push(() => makeCharacter(
  51450. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51451. {
  51452. front: {
  51453. height: math.unit(3.4, "meters"),
  51454. name: "Front",
  51455. image: {
  51456. source: "./media/characters/zarina/front.svg",
  51457. extra: 1733/1425,
  51458. bottom: 93/1826
  51459. }
  51460. },
  51461. squatting: {
  51462. height: math.unit(2.14, "meters"),
  51463. name: "Squatting",
  51464. image: {
  51465. source: "./media/characters/zarina/squatting.svg",
  51466. extra: 1073/788,
  51467. bottom: 63/1136
  51468. }
  51469. },
  51470. back: {
  51471. height: math.unit(2.14, "meters"),
  51472. name: "Back",
  51473. image: {
  51474. source: "./media/characters/zarina/back.svg",
  51475. extra: 1128/885,
  51476. bottom: 0/1128
  51477. }
  51478. },
  51479. },
  51480. [
  51481. {
  51482. name: "Normal",
  51483. height: math.unit(3.4, "meters"),
  51484. default: true
  51485. },
  51486. {
  51487. name: "Big",
  51488. height: math.unit(5, "meters")
  51489. },
  51490. {
  51491. name: "Macro",
  51492. height: math.unit(110, "meters")
  51493. },
  51494. ]
  51495. ))
  51496. characterMakers.push(() => makeCharacter(
  51497. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51498. {
  51499. front: {
  51500. height: math.unit(7, "feet"),
  51501. name: "Front",
  51502. image: {
  51503. source: "./media/characters/ventus-astro-fox/front.svg",
  51504. extra: 1792/1623,
  51505. bottom: 28/1820
  51506. }
  51507. },
  51508. back: {
  51509. height: math.unit(7, "feet"),
  51510. name: "Back",
  51511. image: {
  51512. source: "./media/characters/ventus-astro-fox/back.svg",
  51513. extra: 1789/1620,
  51514. bottom: 31/1820
  51515. }
  51516. },
  51517. outfit: {
  51518. height: math.unit(7, "feet"),
  51519. name: "Outfit",
  51520. image: {
  51521. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51522. extra: 1054/925,
  51523. bottom: 15/1069
  51524. }
  51525. },
  51526. head: {
  51527. height: math.unit(1.12, "feet"),
  51528. name: "Head",
  51529. image: {
  51530. source: "./media/characters/ventus-astro-fox/head.svg",
  51531. extra: 866/504,
  51532. bottom: 0/866
  51533. }
  51534. },
  51535. hand: {
  51536. height: math.unit(1, "feet"),
  51537. name: "Hand",
  51538. image: {
  51539. source: "./media/characters/ventus-astro-fox/hand.svg"
  51540. }
  51541. },
  51542. paw: {
  51543. height: math.unit(1.5, "feet"),
  51544. name: "Paw",
  51545. image: {
  51546. source: "./media/characters/ventus-astro-fox/paw.svg"
  51547. }
  51548. },
  51549. },
  51550. [
  51551. {
  51552. name: "Normal",
  51553. height: math.unit(7, "feet"),
  51554. default: true
  51555. },
  51556. {
  51557. name: "Macro",
  51558. height: math.unit(200, "feet")
  51559. },
  51560. {
  51561. name: "Cosmic",
  51562. height: math.unit(3, "universes")
  51563. },
  51564. ]
  51565. ))
  51566. characterMakers.push(() => makeCharacter(
  51567. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51568. {
  51569. front: {
  51570. height: math.unit(3, "meters"),
  51571. weight: math.unit(7000, "lb"),
  51572. name: "Front",
  51573. image: {
  51574. source: "./media/characters/core-t/front.svg",
  51575. extra: 5729/4941,
  51576. bottom: 1129/6858
  51577. }
  51578. },
  51579. },
  51580. [
  51581. {
  51582. name: "Big",
  51583. height: math.unit(3, "meters"),
  51584. default: true
  51585. },
  51586. ]
  51587. ))
  51588. characterMakers.push(() => makeCharacter(
  51589. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51590. {
  51591. normal: {
  51592. height: math.unit(6 + 6/12, "feet"),
  51593. weight: math.unit(275, "lb"),
  51594. name: "Front",
  51595. image: {
  51596. source: "./media/characters/cadbunny/normal.svg",
  51597. extra: 1129/947,
  51598. bottom: 93/1222
  51599. },
  51600. default: true,
  51601. form: "normal"
  51602. },
  51603. gigantamax: {
  51604. height: math.unit(26, "feet"),
  51605. weight: math.unit(16000, "lb"),
  51606. name: "Front",
  51607. image: {
  51608. source: "./media/characters/cadbunny/gigantamax.svg",
  51609. extra: 1133/944,
  51610. bottom: 90/1223
  51611. },
  51612. default: true,
  51613. form: "gigantamax"
  51614. },
  51615. },
  51616. [
  51617. {
  51618. name: "Normal",
  51619. height: math.unit(6 + 6/12, "feet"),
  51620. default: true,
  51621. form: "normal"
  51622. },
  51623. {
  51624. name: "Small",
  51625. height: math.unit(26, "feet"),
  51626. default: true,
  51627. form: "gigantamax"
  51628. },
  51629. {
  51630. name: "Large",
  51631. height: math.unit(78, "feet"),
  51632. form: "gigantamax"
  51633. },
  51634. ],
  51635. {
  51636. "normal": {
  51637. name: "Normal",
  51638. default: true
  51639. },
  51640. "gigantamax": {
  51641. name: "Gigantamax"
  51642. }
  51643. }
  51644. ))
  51645. characterMakers.push(() => makeCharacter(
  51646. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51647. {
  51648. anthroFront: {
  51649. height: math.unit(8, "feet"),
  51650. weight: math.unit(300, "lb"),
  51651. name: "Front",
  51652. image: {
  51653. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51654. extra: 1272/1176,
  51655. bottom: 53/1325
  51656. },
  51657. form: "anthro",
  51658. default: true
  51659. },
  51660. feralSide: {
  51661. height: math.unit(4, "feet"),
  51662. weight: math.unit(250, "lb"),
  51663. name: "Side",
  51664. image: {
  51665. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51666. extra: 731/621,
  51667. bottom: 0/731
  51668. },
  51669. form: "feral",
  51670. default: true
  51671. },
  51672. },
  51673. [
  51674. {
  51675. name: "Regular",
  51676. height: math.unit(8, "feet"),
  51677. form: "anthro"
  51678. },
  51679. {
  51680. name: "Macro",
  51681. height: math.unit(250, "feet"),
  51682. form: "anthro",
  51683. default: true
  51684. },
  51685. {
  51686. name: "Regular",
  51687. height: math.unit(4, "feet"),
  51688. form: "feral"
  51689. },
  51690. {
  51691. name: "Macro",
  51692. height: math.unit(125, "feet"),
  51693. form: "feral",
  51694. default: true
  51695. },
  51696. ],
  51697. {
  51698. "anthro": {
  51699. name: "Anthro",
  51700. default: true
  51701. },
  51702. "feral": {
  51703. name: "Feral",
  51704. },
  51705. }
  51706. ))
  51707. characterMakers.push(() => makeCharacter(
  51708. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51709. {
  51710. front: {
  51711. height: math.unit(11 + 10/12, "feet"),
  51712. weight: math.unit(1587, "kg"),
  51713. name: "Front",
  51714. image: {
  51715. source: "./media/characters/maple-javira-dragon/front.svg",
  51716. extra: 1136/744,
  51717. bottom: 73/1209
  51718. }
  51719. },
  51720. side: {
  51721. height: math.unit(11 + 10/12, "feet"),
  51722. weight: math.unit(1587, "kg"),
  51723. name: "Side",
  51724. image: {
  51725. source: "./media/characters/maple-javira-dragon/side.svg",
  51726. extra: 712/505,
  51727. bottom: 17/729
  51728. }
  51729. },
  51730. head: {
  51731. height: math.unit(8.05, "feet"),
  51732. name: "Head",
  51733. image: {
  51734. source: "./media/characters/maple-javira-dragon/head.svg",
  51735. extra: 1420/1344,
  51736. bottom: 0/1420
  51737. }
  51738. },
  51739. },
  51740. [
  51741. {
  51742. name: "Normal",
  51743. height: math.unit(11 + 10/12, "feet"),
  51744. default: true
  51745. },
  51746. ]
  51747. ))
  51748. characterMakers.push(() => makeCharacter(
  51749. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51750. {
  51751. front: {
  51752. height: math.unit(117, "cm"),
  51753. weight: math.unit(50, "kg"),
  51754. name: "Front",
  51755. image: {
  51756. source: "./media/characters/sonia-wyverntail/front.svg",
  51757. extra: 708/592,
  51758. bottom: 25/733
  51759. }
  51760. },
  51761. },
  51762. [
  51763. {
  51764. name: "Normal",
  51765. height: math.unit(117, "cm"),
  51766. default: true
  51767. },
  51768. ]
  51769. ))
  51770. characterMakers.push(() => makeCharacter(
  51771. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51772. {
  51773. front: {
  51774. height: math.unit(6 + 5/12, "feet"),
  51775. name: "Front",
  51776. image: {
  51777. source: "./media/characters/micah/front.svg",
  51778. extra: 1758/1546,
  51779. bottom: 214/1972
  51780. }
  51781. },
  51782. },
  51783. [
  51784. {
  51785. name: "Normal",
  51786. height: math.unit(6 + 5/12, "feet"),
  51787. default: true
  51788. },
  51789. ]
  51790. ))
  51791. characterMakers.push(() => makeCharacter(
  51792. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51793. {
  51794. front: {
  51795. height: math.unit(1.75, "meters"),
  51796. weight: math.unit(100, "kg"),
  51797. name: "Front",
  51798. image: {
  51799. source: "./media/characters/zarya/front.svg",
  51800. extra: 741/735,
  51801. bottom: 44/785
  51802. },
  51803. extraAttributes: {
  51804. "tailLength": {
  51805. name: "Tail Length",
  51806. power: 1,
  51807. type: "length",
  51808. base: math.unit(180, "cm")
  51809. },
  51810. "pawLength": {
  51811. name: "Paw Length",
  51812. power: 1,
  51813. type: "length",
  51814. base: math.unit(31, "cm")
  51815. },
  51816. }
  51817. },
  51818. side: {
  51819. height: math.unit(1.75, "meters"),
  51820. weight: math.unit(100, "kg"),
  51821. name: "Side",
  51822. image: {
  51823. source: "./media/characters/zarya/side.svg",
  51824. extra: 776/770,
  51825. bottom: 17/793
  51826. },
  51827. extraAttributes: {
  51828. "tailLength": {
  51829. name: "Tail Length",
  51830. power: 1,
  51831. type: "length",
  51832. base: math.unit(180, "cm")
  51833. },
  51834. "pawLength": {
  51835. name: "Paw Length",
  51836. power: 1,
  51837. type: "length",
  51838. base: math.unit(31, "cm")
  51839. },
  51840. }
  51841. },
  51842. back: {
  51843. height: math.unit(1.75, "meters"),
  51844. weight: math.unit(100, "kg"),
  51845. name: "Back",
  51846. image: {
  51847. source: "./media/characters/zarya/back.svg",
  51848. extra: 741/735,
  51849. bottom: 44/785
  51850. },
  51851. extraAttributes: {
  51852. "tailLength": {
  51853. name: "Tail Length",
  51854. power: 1,
  51855. type: "length",
  51856. base: math.unit(180, "cm")
  51857. },
  51858. "pawLength": {
  51859. name: "Paw Length",
  51860. power: 1,
  51861. type: "length",
  51862. base: math.unit(31, "cm")
  51863. },
  51864. }
  51865. },
  51866. frontNoTail: {
  51867. height: math.unit(1.75, "meters"),
  51868. weight: math.unit(100, "kg"),
  51869. name: "Front (No Tail)",
  51870. image: {
  51871. source: "./media/characters/zarya/front-no-tail.svg",
  51872. extra: 741/735,
  51873. bottom: 44/785
  51874. },
  51875. extraAttributes: {
  51876. "tailLength": {
  51877. name: "Tail Length",
  51878. power: 1,
  51879. type: "length",
  51880. base: math.unit(180, "cm")
  51881. },
  51882. "pawLength": {
  51883. name: "Paw Length",
  51884. power: 1,
  51885. type: "length",
  51886. base: math.unit(31, "cm")
  51887. },
  51888. }
  51889. },
  51890. dressed: {
  51891. height: math.unit(1.75, "meters"),
  51892. weight: math.unit(100, "kg"),
  51893. name: "Dressed",
  51894. image: {
  51895. source: "./media/characters/zarya/dressed.svg",
  51896. extra: 683/672,
  51897. bottom: 79/762
  51898. },
  51899. extraAttributes: {
  51900. "tailLength": {
  51901. name: "Tail Length",
  51902. power: 1,
  51903. type: "length",
  51904. base: math.unit(180, "cm")
  51905. },
  51906. "pawLength": {
  51907. name: "Paw Length",
  51908. power: 1,
  51909. type: "length",
  51910. base: math.unit(31, "cm")
  51911. },
  51912. }
  51913. },
  51914. },
  51915. [
  51916. {
  51917. name: "Micro",
  51918. height: math.unit(5, "cm")
  51919. },
  51920. {
  51921. name: "Normal",
  51922. height: math.unit(1.75, "meters"),
  51923. default: true
  51924. },
  51925. {
  51926. name: "Macro",
  51927. height: math.unit(122, "meters")
  51928. },
  51929. ]
  51930. ))
  51931. characterMakers.push(() => makeCharacter(
  51932. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51933. {
  51934. front: {
  51935. height: math.unit(7.5, "feet"),
  51936. name: "Front",
  51937. image: {
  51938. source: "./media/characters/sven-hatisson/front.svg",
  51939. extra: 917/857,
  51940. bottom: 42/959
  51941. }
  51942. },
  51943. back: {
  51944. height: math.unit(7.5, "feet"),
  51945. name: "Back",
  51946. image: {
  51947. source: "./media/characters/sven-hatisson/back.svg",
  51948. extra: 903/856,
  51949. bottom: 15/918
  51950. }
  51951. },
  51952. },
  51953. [
  51954. {
  51955. name: "Base Height",
  51956. height: math.unit(7.5, "feet")
  51957. },
  51958. {
  51959. name: "Usual Height",
  51960. height: math.unit(13.5, "feet"),
  51961. default: true
  51962. },
  51963. {
  51964. name: "Smaller Macro",
  51965. height: math.unit(85, "feet")
  51966. },
  51967. {
  51968. name: "Moderate Macro",
  51969. height: math.unit(320, "feet")
  51970. },
  51971. {
  51972. name: "Large Macro",
  51973. height: math.unit(1000, "feet")
  51974. },
  51975. {
  51976. name: "Largest Size",
  51977. height: math.unit(2, "miles")
  51978. },
  51979. ]
  51980. ))
  51981. characterMakers.push(() => makeCharacter(
  51982. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51983. {
  51984. side: {
  51985. height: math.unit(1.8, "meters"),
  51986. weight: math.unit(275, "kg"),
  51987. name: "Side",
  51988. image: {
  51989. source: "./media/characters/terra/side.svg",
  51990. extra: 1273/1147,
  51991. bottom: 0/1273
  51992. }
  51993. },
  51994. },
  51995. [
  51996. {
  51997. name: "Normal",
  51998. height: math.unit(16.2, "meters"),
  51999. default: true
  52000. },
  52001. ]
  52002. ))
  52003. characterMakers.push(() => makeCharacter(
  52004. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52005. {
  52006. borzoiFront: {
  52007. height: math.unit(6 + 9/12, "feet"),
  52008. name: "Front",
  52009. image: {
  52010. source: "./media/characters/rae/borzoi-front.svg",
  52011. extra: 1161/1098,
  52012. bottom: 31/1192
  52013. },
  52014. form: "borzoi",
  52015. default: true
  52016. },
  52017. werewolfFront: {
  52018. height: math.unit(8 + 7/12, "feet"),
  52019. name: "Front",
  52020. image: {
  52021. source: "./media/characters/rae/werewolf-front.svg",
  52022. extra: 1411/1334,
  52023. bottom: 127/1538
  52024. },
  52025. form: "werewolf",
  52026. default: true
  52027. },
  52028. },
  52029. [
  52030. {
  52031. name: "Normal",
  52032. height: math.unit(6 + 9/12, "feet"),
  52033. default: true,
  52034. form: "borzoi"
  52035. },
  52036. {
  52037. name: "Normal",
  52038. height: math.unit(8 + 7/12, "feet"),
  52039. default: true,
  52040. form: "werewolf"
  52041. },
  52042. ],
  52043. {
  52044. "borzoi": {
  52045. name: "Borzoi",
  52046. default: true
  52047. },
  52048. "werewolf": {
  52049. name: "Werewolf",
  52050. },
  52051. }
  52052. ))
  52053. characterMakers.push(() => makeCharacter(
  52054. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52055. {
  52056. front: {
  52057. height: math.unit(8 + 7/12, "feet"),
  52058. weight: math.unit(482, "lb"),
  52059. name: "Front",
  52060. image: {
  52061. source: "./media/characters/kit/front.svg",
  52062. extra: 1247/1103,
  52063. bottom: 41/1288
  52064. }
  52065. },
  52066. back: {
  52067. height: math.unit(8 + 7/12, "feet"),
  52068. weight: math.unit(482, "lb"),
  52069. name: "Back",
  52070. image: {
  52071. source: "./media/characters/kit/back.svg",
  52072. extra: 1252/1123,
  52073. bottom: 21/1273
  52074. }
  52075. },
  52076. paw: {
  52077. height: math.unit(1.46, "feet"),
  52078. name: "Paw",
  52079. image: {
  52080. source: "./media/characters/kit/paw.svg"
  52081. }
  52082. },
  52083. },
  52084. [
  52085. {
  52086. name: "Normal",
  52087. height: math.unit(2.61, "meters"),
  52088. default: true
  52089. },
  52090. {
  52091. name: "\"Tall\"",
  52092. height: math.unit(8.21, "meters")
  52093. },
  52094. {
  52095. name: "Tall",
  52096. height: math.unit(19.6, "meters")
  52097. },
  52098. {
  52099. name: "Very Tall",
  52100. height: math.unit(57.91, "meters")
  52101. },
  52102. {
  52103. name: "Semi-Macro",
  52104. height: math.unit(138.64, "meters")
  52105. },
  52106. {
  52107. name: "Macro",
  52108. height: math.unit(831.99, "meters")
  52109. },
  52110. {
  52111. name: "EX-Macro",
  52112. height: math.unit(96451121, "meters")
  52113. },
  52114. {
  52115. name: "S1-Omnipotent",
  52116. height: math.unit(4.42074e+9, "meters")
  52117. },
  52118. {
  52119. name: "S2-Omnipotent",
  52120. height: math.unit(9.42074e+17, "meters")
  52121. },
  52122. {
  52123. name: "Omnipotent",
  52124. height: math.unit(4.23112e+24, "meters")
  52125. },
  52126. {
  52127. name: "Hypergod",
  52128. height: math.unit(5.05176e+27, "meters")
  52129. },
  52130. {
  52131. name: "Hypergod-EX",
  52132. height: math.unit(9.45532e+49, "meters")
  52133. },
  52134. {
  52135. name: "Hypergod-SP",
  52136. height: math.unit(9.45532e+195, "meters")
  52137. },
  52138. ]
  52139. ))
  52140. characterMakers.push(() => makeCharacter(
  52141. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52142. {
  52143. side: {
  52144. height: math.unit(0.6, "meters"),
  52145. weight: math.unit(24, "kg"),
  52146. name: "Side",
  52147. image: {
  52148. source: "./media/characters/celeste/side.svg",
  52149. extra: 810/517,
  52150. bottom: 53/863
  52151. }
  52152. },
  52153. },
  52154. [
  52155. {
  52156. name: "Velociraptor",
  52157. height: math.unit(0.6, "meters"),
  52158. default: true
  52159. },
  52160. {
  52161. name: "Utahraptor",
  52162. height: math.unit(1.8, "meters")
  52163. },
  52164. {
  52165. name: "Gallimimus",
  52166. height: math.unit(4.0, "meters")
  52167. },
  52168. {
  52169. name: "Large",
  52170. height: math.unit(20, "meters")
  52171. },
  52172. {
  52173. name: "Planetary",
  52174. height: math.unit(50, "megameters")
  52175. },
  52176. {
  52177. name: "Stellar",
  52178. height: math.unit(1.5, "gigameters")
  52179. },
  52180. {
  52181. name: "Galactic",
  52182. height: math.unit(100, "exameters")
  52183. },
  52184. ]
  52185. ))
  52186. characterMakers.push(() => makeCharacter(
  52187. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52188. {
  52189. front: {
  52190. height: math.unit(6, "feet"),
  52191. weight: math.unit(210, "lb"),
  52192. name: "Front",
  52193. image: {
  52194. source: "./media/characters/glacia/front.svg",
  52195. extra: 958/901,
  52196. bottom: 45/1003
  52197. }
  52198. },
  52199. },
  52200. [
  52201. {
  52202. name: "Macro",
  52203. height: math.unit(1000, "meters"),
  52204. default: true
  52205. },
  52206. ]
  52207. ))
  52208. characterMakers.push(() => makeCharacter(
  52209. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52210. {
  52211. front: {
  52212. height: math.unit(4, "meters"),
  52213. name: "Front",
  52214. image: {
  52215. source: "./media/characters/giri/front.svg",
  52216. extra: 966/894,
  52217. bottom: 21/987
  52218. }
  52219. },
  52220. },
  52221. [
  52222. {
  52223. name: "Normal",
  52224. height: math.unit(4, "meters"),
  52225. default: true
  52226. },
  52227. ]
  52228. ))
  52229. characterMakers.push(() => makeCharacter(
  52230. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52231. {
  52232. back: {
  52233. height: math.unit(4, "feet"),
  52234. weight: math.unit(37, "lb"),
  52235. name: "Back",
  52236. image: {
  52237. source: "./media/characters/tin/back.svg",
  52238. extra: 845/780,
  52239. bottom: 28/873
  52240. }
  52241. },
  52242. },
  52243. [
  52244. {
  52245. name: "Normal",
  52246. height: math.unit(4, "feet"),
  52247. default: true
  52248. },
  52249. ]
  52250. ))
  52251. characterMakers.push(() => makeCharacter(
  52252. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52253. {
  52254. front: {
  52255. height: math.unit(25, "feet"),
  52256. name: "Front",
  52257. image: {
  52258. source: "./media/characters/cadenza-vivace/front.svg",
  52259. extra: 1842/1578,
  52260. bottom: 30/1872
  52261. }
  52262. },
  52263. },
  52264. [
  52265. {
  52266. name: "Macro",
  52267. height: math.unit(25, "feet"),
  52268. default: true
  52269. },
  52270. ]
  52271. ))
  52272. characterMakers.push(() => makeCharacter(
  52273. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52274. {
  52275. front: {
  52276. height: math.unit(10, "feet"),
  52277. weight: math.unit(625, "kg"),
  52278. name: "Front",
  52279. image: {
  52280. source: "./media/characters/zain/front.svg",
  52281. extra: 1682/1498,
  52282. bottom: 223/1905
  52283. }
  52284. },
  52285. back: {
  52286. height: math.unit(10, "feet"),
  52287. weight: math.unit(625, "kg"),
  52288. name: "Back",
  52289. image: {
  52290. source: "./media/characters/zain/back.svg",
  52291. extra: 1814/1657,
  52292. bottom: 152/1966
  52293. }
  52294. },
  52295. head: {
  52296. height: math.unit(10, "feet"),
  52297. weight: math.unit(625, "kg"),
  52298. name: "Head",
  52299. image: {
  52300. source: "./media/characters/zain/head.svg",
  52301. extra: 1059/762,
  52302. bottom: 0/1059
  52303. }
  52304. },
  52305. },
  52306. [
  52307. {
  52308. name: "Normal",
  52309. height: math.unit(10, "feet"),
  52310. default: true
  52311. },
  52312. ]
  52313. ))
  52314. characterMakers.push(() => makeCharacter(
  52315. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52316. {
  52317. front: {
  52318. height: math.unit(6 + 5/12, "feet"),
  52319. weight: math.unit(750, "lb"),
  52320. name: "Front",
  52321. image: {
  52322. source: "./media/characters/ruchex/front.svg",
  52323. extra: 877/820,
  52324. bottom: 17/894
  52325. },
  52326. extraAttributes: {
  52327. "width": {
  52328. name: "Width",
  52329. power: 1,
  52330. type: "length",
  52331. base: math.unit(4.757, "feet")
  52332. },
  52333. }
  52334. },
  52335. },
  52336. [
  52337. {
  52338. name: "Normal",
  52339. height: math.unit(6 + 5/12, "feet"),
  52340. default: true
  52341. },
  52342. ]
  52343. ))
  52344. characterMakers.push(() => makeCharacter(
  52345. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52346. {
  52347. dressedFront: {
  52348. height: math.unit(191, "cm"),
  52349. weight: math.unit(80, "kg"),
  52350. name: "Front",
  52351. image: {
  52352. source: "./media/characters/buster/dressed-front.svg",
  52353. extra: 1022/973,
  52354. bottom: 69/1091
  52355. }
  52356. },
  52357. dressedBack: {
  52358. height: math.unit(191, "cm"),
  52359. weight: math.unit(80, "kg"),
  52360. name: "Back",
  52361. image: {
  52362. source: "./media/characters/buster/dressed-back.svg",
  52363. extra: 1018/970,
  52364. bottom: 55/1073
  52365. }
  52366. },
  52367. nudeFront: {
  52368. height: math.unit(191, "cm"),
  52369. weight: math.unit(80, "kg"),
  52370. name: "Front (Nude)",
  52371. image: {
  52372. source: "./media/characters/buster/nude-front.svg",
  52373. extra: 1022/973,
  52374. bottom: 69/1091
  52375. }
  52376. },
  52377. nudeBack: {
  52378. height: math.unit(191, "cm"),
  52379. weight: math.unit(80, "kg"),
  52380. name: "Back (Nude)",
  52381. image: {
  52382. source: "./media/characters/buster/nude-back.svg",
  52383. extra: 1018/970,
  52384. bottom: 55/1073
  52385. }
  52386. },
  52387. dick: {
  52388. height: math.unit(2.59, "feet"),
  52389. name: "Dick",
  52390. image: {
  52391. source: "./media/characters/buster/dick.svg"
  52392. }
  52393. },
  52394. ass: {
  52395. height: math.unit(1.2, "feet"),
  52396. name: "Ass",
  52397. image: {
  52398. source: "./media/characters/buster/ass.svg"
  52399. }
  52400. },
  52401. },
  52402. [
  52403. {
  52404. name: "Normal",
  52405. height: math.unit(191, "cm"),
  52406. default: true
  52407. },
  52408. ]
  52409. ))
  52410. characterMakers.push(() => makeCharacter(
  52411. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52412. {
  52413. side: {
  52414. height: math.unit(8.1, "feet"),
  52415. weight: math.unit(3500, "lb"),
  52416. name: "Side",
  52417. image: {
  52418. source: "./media/characters/sonya/side.svg",
  52419. extra: 1730/1317,
  52420. bottom: 86/1816
  52421. }
  52422. },
  52423. },
  52424. [
  52425. {
  52426. name: "Normal",
  52427. height: math.unit(8.1, "feet"),
  52428. default: true
  52429. },
  52430. ]
  52431. ))
  52432. characterMakers.push(() => makeCharacter(
  52433. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52434. {
  52435. front: {
  52436. height: math.unit(6, "feet"),
  52437. weight: math.unit(150, "lb"),
  52438. name: "Front",
  52439. image: {
  52440. source: "./media/characters/cadence-andrysiak/front.svg",
  52441. extra: 1164/1121,
  52442. bottom: 60/1224
  52443. }
  52444. },
  52445. back: {
  52446. height: math.unit(6, "feet"),
  52447. weight: math.unit(150, "lb"),
  52448. name: "Back",
  52449. image: {
  52450. source: "./media/characters/cadence-andrysiak/back.svg",
  52451. extra: 1200/1165,
  52452. bottom: 9/1209
  52453. }
  52454. },
  52455. dressed: {
  52456. height: math.unit(6, "feet"),
  52457. weight: math.unit(150, "lb"),
  52458. name: "Dressed",
  52459. image: {
  52460. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52461. extra: 1164/1121,
  52462. bottom: 60/1224
  52463. }
  52464. },
  52465. },
  52466. [
  52467. {
  52468. name: "Micro",
  52469. height: math.unit(1, "mm")
  52470. },
  52471. {
  52472. name: "Normal",
  52473. height: math.unit(6, "feet"),
  52474. default: true
  52475. },
  52476. ]
  52477. ))
  52478. characterMakers.push(() => makeCharacter(
  52479. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52480. {
  52481. front: {
  52482. height: math.unit(60, "inches"),
  52483. weight: math.unit(16, "lb"),
  52484. preyCapacity: math.unit(80, "liters"),
  52485. name: "Front",
  52486. image: {
  52487. source: "./media/characters/penny-lynx/front.svg",
  52488. extra: 1959/1769,
  52489. bottom: 49/2008
  52490. }
  52491. },
  52492. },
  52493. [
  52494. {
  52495. name: "Nokia",
  52496. height: math.unit(2, "inches")
  52497. },
  52498. {
  52499. name: "Desktop",
  52500. height: math.unit(24, "inches")
  52501. },
  52502. {
  52503. name: "TV",
  52504. height: math.unit(60, "inches")
  52505. },
  52506. {
  52507. name: "Jumbotron",
  52508. height: math.unit(12, "feet")
  52509. },
  52510. {
  52511. name: "Billboard",
  52512. height: math.unit(48, "feet"),
  52513. default: true
  52514. },
  52515. {
  52516. name: "IMAX",
  52517. height: math.unit(96, "feet")
  52518. },
  52519. {
  52520. name: "SINGULARITY",
  52521. height: math.unit(864938, "miles")
  52522. },
  52523. ]
  52524. ))
  52525. characterMakers.push(() => makeCharacter(
  52526. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52527. {
  52528. front: {
  52529. height: math.unit(5 + 4/12, "feet"),
  52530. weight: math.unit(230, "lb"),
  52531. name: "Front",
  52532. image: {
  52533. source: "./media/characters/sukebe/front.svg",
  52534. extra: 2130/2038,
  52535. bottom: 90/2220
  52536. }
  52537. },
  52538. back: {
  52539. height: math.unit(3.48, "feet"),
  52540. weight: math.unit(230, "lb"),
  52541. name: "Back",
  52542. image: {
  52543. source: "./media/characters/sukebe/back.svg",
  52544. extra: 1670/1604,
  52545. bottom: 0/1670
  52546. }
  52547. },
  52548. },
  52549. [
  52550. {
  52551. name: "Normal",
  52552. height: math.unit(5 + 4/12, "feet"),
  52553. default: true
  52554. },
  52555. ]
  52556. ))
  52557. characterMakers.push(() => makeCharacter(
  52558. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52559. {
  52560. front: {
  52561. height: math.unit(6, "feet"),
  52562. name: "Front",
  52563. image: {
  52564. source: "./media/characters/nylla/front.svg",
  52565. extra: 1868/1699,
  52566. bottom: 97/1965
  52567. }
  52568. },
  52569. back: {
  52570. height: math.unit(6, "feet"),
  52571. name: "Back",
  52572. image: {
  52573. source: "./media/characters/nylla/back.svg",
  52574. extra: 1889/1712,
  52575. bottom: 93/1982
  52576. }
  52577. },
  52578. frontNsfw: {
  52579. height: math.unit(6, "feet"),
  52580. name: "Front (NSFW)",
  52581. image: {
  52582. source: "./media/characters/nylla/front-nsfw.svg",
  52583. extra: 1868/1699,
  52584. bottom: 97/1965
  52585. },
  52586. extraAttributes: {
  52587. "dickLength": {
  52588. name: "Dick Length",
  52589. power: 1,
  52590. type: "length",
  52591. base: math.unit(1.4, "feet")
  52592. },
  52593. "cumVolume": {
  52594. name: "Cum Volume",
  52595. power: 3,
  52596. type: "volume",
  52597. base: math.unit(100, "mL")
  52598. },
  52599. }
  52600. },
  52601. backNsfw: {
  52602. height: math.unit(6, "feet"),
  52603. name: "Back (NSFW)",
  52604. image: {
  52605. source: "./media/characters/nylla/back-nsfw.svg",
  52606. extra: 1889/1712,
  52607. bottom: 93/1982
  52608. }
  52609. },
  52610. maw: {
  52611. height: math.unit(2.10, "feet"),
  52612. name: "Maw",
  52613. image: {
  52614. source: "./media/characters/nylla/maw.svg"
  52615. }
  52616. },
  52617. paws: {
  52618. height: math.unit(2.06, "feet"),
  52619. name: "Paws",
  52620. image: {
  52621. source: "./media/characters/nylla/paws.svg"
  52622. }
  52623. },
  52624. muzzle: {
  52625. height: math.unit(0.61, "feet"),
  52626. name: "Muzzle",
  52627. image: {
  52628. source: "./media/characters/nylla/muzzle.svg"
  52629. }
  52630. },
  52631. sheath: {
  52632. height: math.unit(1.305, "feet"),
  52633. name: "Sheath",
  52634. image: {
  52635. source: "./media/characters/nylla/sheath.svg"
  52636. }
  52637. },
  52638. },
  52639. [
  52640. {
  52641. name: "Micro",
  52642. height: math.unit(7.5, "inches")
  52643. },
  52644. {
  52645. name: "Normal",
  52646. height: math.unit(7, "feet"),
  52647. default: true
  52648. },
  52649. {
  52650. name: "Macro",
  52651. height: math.unit(60, "feet")
  52652. },
  52653. {
  52654. name: "Mega",
  52655. height: math.unit(200, "feet")
  52656. },
  52657. ]
  52658. ))
  52659. characterMakers.push(() => makeCharacter(
  52660. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52661. {
  52662. front: {
  52663. height: math.unit(10, "feet"),
  52664. weight: math.unit(2300, "lb"),
  52665. name: "Front",
  52666. image: {
  52667. source: "./media/characters/hunt3r/front.svg",
  52668. extra: 1909/1742,
  52669. bottom: 46/1955
  52670. }
  52671. },
  52672. },
  52673. [
  52674. {
  52675. name: "Normal",
  52676. height: math.unit(10, "feet"),
  52677. default: true
  52678. },
  52679. ]
  52680. ))
  52681. characterMakers.push(() => makeCharacter(
  52682. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52683. {
  52684. dressed: {
  52685. height: math.unit(11, "feet"),
  52686. weight: math.unit(18500, "lb"),
  52687. preyCapacity: math.unit(9, "people"),
  52688. name: "Dressed",
  52689. image: {
  52690. source: "./media/characters/cylphis/dressed.svg",
  52691. extra: 1028/1003,
  52692. bottom: 75/1103
  52693. },
  52694. },
  52695. undressed: {
  52696. height: math.unit(11, "feet"),
  52697. weight: math.unit(18500, "lb"),
  52698. preyCapacity: math.unit(9, "people"),
  52699. name: "Undressed",
  52700. image: {
  52701. source: "./media/characters/cylphis/undressed.svg",
  52702. extra: 1028/1003,
  52703. bottom: 75/1103
  52704. }
  52705. },
  52706. full: {
  52707. height: math.unit(11, "feet"),
  52708. weight: math.unit(18500 + 150*9, "lb"),
  52709. preyCapacity: math.unit(9, "people"),
  52710. name: "Full",
  52711. image: {
  52712. source: "./media/characters/cylphis/full.svg",
  52713. extra: 1028/1003,
  52714. bottom: 75/1103
  52715. }
  52716. },
  52717. },
  52718. [
  52719. {
  52720. name: "Small",
  52721. height: math.unit(8, "feet")
  52722. },
  52723. {
  52724. name: "Normal",
  52725. height: math.unit(11, "feet"),
  52726. default: true
  52727. },
  52728. ]
  52729. ))
  52730. characterMakers.push(() => makeCharacter(
  52731. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52732. {
  52733. front: {
  52734. height: math.unit(2 + 7/12, "feet"),
  52735. name: "Front",
  52736. image: {
  52737. source: "./media/characters/orishan/front.svg",
  52738. extra: 1058/1023,
  52739. bottom: 23/1081
  52740. }
  52741. },
  52742. back: {
  52743. height: math.unit(2 + 7/12, "feet"),
  52744. name: "Back",
  52745. image: {
  52746. source: "./media/characters/orishan/back.svg",
  52747. extra: 1058/1023,
  52748. bottom: 23/1081
  52749. }
  52750. },
  52751. },
  52752. [
  52753. {
  52754. name: "Micro",
  52755. height: math.unit(2, "cm")
  52756. },
  52757. {
  52758. name: "Normal",
  52759. height: math.unit(2 + 7/12, "feet"),
  52760. default: true
  52761. },
  52762. ]
  52763. ))
  52764. characterMakers.push(() => makeCharacter(
  52765. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52766. {
  52767. front: {
  52768. height: math.unit(3, "meters"),
  52769. weight: math.unit(508, "kg"),
  52770. name: "Front",
  52771. image: {
  52772. source: "./media/characters/seranis/front.svg",
  52773. extra: 1478/1454,
  52774. bottom: 41/1519
  52775. }
  52776. },
  52777. },
  52778. [
  52779. {
  52780. name: "Normal",
  52781. height: math.unit(3, "meters"),
  52782. default: true
  52783. },
  52784. {
  52785. name: "Macro",
  52786. height: math.unit(108, "meters")
  52787. },
  52788. {
  52789. name: "Megamacro",
  52790. height: math.unit(1250, "meters")
  52791. },
  52792. ]
  52793. ))
  52794. characterMakers.push(() => makeCharacter(
  52795. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52796. {
  52797. undressed: {
  52798. height: math.unit(5 + 3/12, "feet"),
  52799. name: "Undressed",
  52800. image: {
  52801. source: "./media/characters/ankou/undressed.svg",
  52802. extra: 1301/1213,
  52803. bottom: 87/1388
  52804. }
  52805. },
  52806. dressed: {
  52807. height: math.unit(5 + 3/12, "feet"),
  52808. name: "Dressed",
  52809. image: {
  52810. source: "./media/characters/ankou/dressed.svg",
  52811. extra: 1301/1213,
  52812. bottom: 87/1388
  52813. }
  52814. },
  52815. head: {
  52816. height: math.unit(1.61, "feet"),
  52817. name: "Head",
  52818. image: {
  52819. source: "./media/characters/ankou/head.svg"
  52820. }
  52821. },
  52822. },
  52823. [
  52824. {
  52825. name: "Normal",
  52826. height: math.unit(5 + 3/12, "feet"),
  52827. default: true
  52828. },
  52829. ]
  52830. ))
  52831. characterMakers.push(() => makeCharacter(
  52832. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52833. {
  52834. side: {
  52835. height: math.unit(6 + 3/12, "feet"),
  52836. weight: math.unit(200, "kg"),
  52837. name: "Side",
  52838. image: {
  52839. source: "./media/characters/juniper-skunktaur/side.svg",
  52840. extra: 1574/1229,
  52841. bottom: 38/1612
  52842. }
  52843. },
  52844. front: {
  52845. height: math.unit(6 + 3/12, "feet"),
  52846. weight: math.unit(200, "kg"),
  52847. name: "Front",
  52848. image: {
  52849. source: "./media/characters/juniper-skunktaur/front.svg",
  52850. extra: 1337/1278,
  52851. bottom: 22/1359
  52852. }
  52853. },
  52854. back: {
  52855. height: math.unit(6 + 3/12, "feet"),
  52856. weight: math.unit(200, "kg"),
  52857. name: "Back",
  52858. image: {
  52859. source: "./media/characters/juniper-skunktaur/back.svg",
  52860. extra: 1618/1273,
  52861. bottom: 13/1631
  52862. }
  52863. },
  52864. top: {
  52865. height: math.unit(2.62, "feet"),
  52866. weight: math.unit(200, "kg"),
  52867. name: "Top",
  52868. image: {
  52869. source: "./media/characters/juniper-skunktaur/top.svg"
  52870. }
  52871. },
  52872. },
  52873. [
  52874. {
  52875. name: "Normal",
  52876. height: math.unit(6 + 3/12, "feet"),
  52877. default: true
  52878. },
  52879. ]
  52880. ))
  52881. characterMakers.push(() => makeCharacter(
  52882. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52883. {
  52884. front: {
  52885. height: math.unit(20.5, "feet"),
  52886. name: "Front",
  52887. image: {
  52888. source: "./media/characters/rei/front.svg",
  52889. extra: 1349/1195,
  52890. bottom: 31/1380
  52891. }
  52892. },
  52893. back: {
  52894. height: math.unit(20.5, "feet"),
  52895. name: "Back",
  52896. image: {
  52897. source: "./media/characters/rei/back.svg",
  52898. extra: 1358/1204,
  52899. bottom: 22/1380
  52900. }
  52901. },
  52902. pawsDigi: {
  52903. height: math.unit(3.45, "feet"),
  52904. name: "Paws (Digi)",
  52905. image: {
  52906. source: "./media/characters/rei/paws-digi.svg"
  52907. }
  52908. },
  52909. pawsPlanti: {
  52910. height: math.unit(3.45, "feet"),
  52911. name: "Paws (Planti)",
  52912. image: {
  52913. source: "./media/characters/rei/paws-planti.svg"
  52914. }
  52915. },
  52916. },
  52917. [
  52918. {
  52919. name: "Normal",
  52920. height: math.unit(20.5, "feet"),
  52921. default: true
  52922. },
  52923. ]
  52924. ))
  52925. characterMakers.push(() => makeCharacter(
  52926. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52927. {
  52928. front: {
  52929. height: math.unit(5 + 11/12, "feet"),
  52930. name: "Front",
  52931. image: {
  52932. source: "./media/characters/carina/front.svg",
  52933. extra: 1720/1449,
  52934. bottom: 14/1734
  52935. }
  52936. },
  52937. back: {
  52938. height: math.unit(5 + 11/12, "feet"),
  52939. name: "Back",
  52940. image: {
  52941. source: "./media/characters/carina/back.svg",
  52942. extra: 1493/1445,
  52943. bottom: 17/1510
  52944. }
  52945. },
  52946. paw: {
  52947. height: math.unit(0.92, "feet"),
  52948. name: "Paw",
  52949. image: {
  52950. source: "./media/characters/carina/paw.svg"
  52951. }
  52952. },
  52953. },
  52954. [
  52955. {
  52956. name: "Normal",
  52957. height: math.unit(5 + 11/12, "feet"),
  52958. default: true
  52959. },
  52960. ]
  52961. ))
  52962. characterMakers.push(() => makeCharacter(
  52963. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52964. {
  52965. normal_front: {
  52966. height: math.unit(4.88, "meters"),
  52967. name: "Front",
  52968. image: {
  52969. source: "./media/characters/maya/normal-front.svg",
  52970. extra: 1222/1145,
  52971. bottom: 57/1279
  52972. },
  52973. form: "normal",
  52974. default: true
  52975. },
  52976. monstrous_front: {
  52977. height: math.unit(10, "meters"),
  52978. name: "Front",
  52979. image: {
  52980. source: "./media/characters/maya/monstrous-front.svg",
  52981. extra: 1523/1109,
  52982. bottom: 113/1636
  52983. },
  52984. form: "monstrous",
  52985. extraAttributes: {
  52986. "swallowSize": {
  52987. name: "Tailmaw Bite Size",
  52988. power: 3,
  52989. type: "volume",
  52990. base: math.unit(43000, "liters")
  52991. },
  52992. }
  52993. },
  52994. taur_front: {
  52995. height: math.unit(10, "meters"),
  52996. name: "Front",
  52997. image: {
  52998. source: "./media/characters/maya/taur-front.svg",
  52999. extra: 743/506,
  53000. bottom: 101/844
  53001. },
  53002. form: "taur",
  53003. },
  53004. },
  53005. [
  53006. {
  53007. name: "Normal",
  53008. height: math.unit(4.88, "meters"),
  53009. default: true,
  53010. form: "normal"
  53011. },
  53012. {
  53013. name: "Macro",
  53014. height: math.unit(38.1, "meters"),
  53015. form: "normal"
  53016. },
  53017. {
  53018. name: "Macro+",
  53019. height: math.unit(152.4, "meters"),
  53020. form: "normal"
  53021. },
  53022. {
  53023. name: "Macro++",
  53024. height: math.unit(16.09, "km"),
  53025. form: "normal"
  53026. },
  53027. {
  53028. name: "Mega-macro",
  53029. height: math.unit(700, "megameters"),
  53030. form: "normal"
  53031. },
  53032. {
  53033. name: "Satiated",
  53034. height: math.unit(10, "meters"),
  53035. default: true,
  53036. form: "monstrous"
  53037. },
  53038. {
  53039. name: "Hungry",
  53040. height: math.unit(75, "meters"),
  53041. form: "monstrous"
  53042. },
  53043. {
  53044. name: "Ravenous",
  53045. height: math.unit(500, "meters"),
  53046. form: "monstrous"
  53047. },
  53048. {
  53049. name: "\"Normal\"",
  53050. height: math.unit(10, "meters"),
  53051. form: "taur"
  53052. },
  53053. {
  53054. name: "Macro",
  53055. height: math.unit(50, "meters"),
  53056. form: "taur"
  53057. },
  53058. ],
  53059. {
  53060. "normal": {
  53061. name: "Normal",
  53062. default: true
  53063. },
  53064. "monstrous": {
  53065. name: "Monstrous",
  53066. },
  53067. "taur": {
  53068. name: "Taur",
  53069. },
  53070. }
  53071. ))
  53072. characterMakers.push(() => makeCharacter(
  53073. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53074. {
  53075. front: {
  53076. height: math.unit(6 + 2/12, "feet"),
  53077. weight: math.unit(500, "lb"),
  53078. preyCapacity: math.unit(4, "people"),
  53079. name: "Front",
  53080. image: {
  53081. source: "./media/characters/yepir/front.svg"
  53082. }
  53083. },
  53084. side: {
  53085. height: math.unit(6 + 2/12, "feet"),
  53086. weight: math.unit(500, "lb"),
  53087. preyCapacity: math.unit(4, "people"),
  53088. name: "Side",
  53089. image: {
  53090. source: "./media/characters/yepir/side.svg"
  53091. }
  53092. },
  53093. paw: {
  53094. height: math.unit(1.05, "feet"),
  53095. name: "Paw",
  53096. image: {
  53097. source: "./media/characters/yepir/paw.svg"
  53098. }
  53099. },
  53100. },
  53101. [
  53102. {
  53103. name: "Normal",
  53104. height: math.unit(6 + 2/12, "feet"),
  53105. default: true
  53106. },
  53107. ]
  53108. ))
  53109. characterMakers.push(() => makeCharacter(
  53110. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53111. {
  53112. front: {
  53113. height: math.unit(5 + 4/12, "feet"),
  53114. name: "Front",
  53115. image: {
  53116. source: "./media/characters/russec/front.svg",
  53117. extra: 1926/1626,
  53118. bottom: 72/1998
  53119. }
  53120. },
  53121. back: {
  53122. height: math.unit(5 + 4/12, "feet"),
  53123. name: "Back",
  53124. image: {
  53125. source: "./media/characters/russec/back.svg",
  53126. extra: 1910/1591,
  53127. bottom: 48/1958
  53128. }
  53129. },
  53130. },
  53131. [
  53132. {
  53133. name: "Small",
  53134. height: math.unit(5 + 4/12, "feet")
  53135. },
  53136. {
  53137. name: "Normal",
  53138. height: math.unit(72, "feet"),
  53139. default: true
  53140. },
  53141. ]
  53142. ))
  53143. characterMakers.push(() => makeCharacter(
  53144. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53145. {
  53146. side: {
  53147. height: math.unit(12, "feet"),
  53148. name: "Side",
  53149. image: {
  53150. source: "./media/characters/cianus/side.svg",
  53151. extra: 808/526,
  53152. bottom: 61/869
  53153. }
  53154. },
  53155. },
  53156. [
  53157. {
  53158. name: "Normal",
  53159. height: math.unit(12, "feet"),
  53160. default: true
  53161. },
  53162. ]
  53163. ))
  53164. characterMakers.push(() => makeCharacter(
  53165. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53166. {
  53167. front: {
  53168. height: math.unit(9 + 6/12, "feet"),
  53169. weight: math.unit(300, "lb"),
  53170. name: "Front",
  53171. image: {
  53172. source: "./media/characters/ahab/front.svg",
  53173. extra: 1897/1868,
  53174. bottom: 121/2018
  53175. }
  53176. },
  53177. frontNsfw: {
  53178. height: math.unit(9 + 6/12, "feet"),
  53179. weight: math.unit(300, "lb"),
  53180. name: "Front-nsfw",
  53181. image: {
  53182. source: "./media/characters/ahab/front-nsfw.svg",
  53183. extra: 1897/1868,
  53184. bottom: 121/2018
  53185. }
  53186. },
  53187. },
  53188. [
  53189. {
  53190. name: "Normal",
  53191. height: math.unit(9 + 6/12, "feet")
  53192. },
  53193. {
  53194. name: "Macro",
  53195. height: math.unit(657, "feet"),
  53196. default: true
  53197. },
  53198. ]
  53199. ))
  53200. characterMakers.push(() => makeCharacter(
  53201. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53202. {
  53203. front: {
  53204. height: math.unit(2.69, "meters"),
  53205. weight: math.unit(132, "kg"),
  53206. name: "Front",
  53207. image: {
  53208. source: "./media/characters/aarkus/front.svg",
  53209. extra: 1400/1231,
  53210. bottom: 34/1434
  53211. }
  53212. },
  53213. back: {
  53214. height: math.unit(2.69, "meters"),
  53215. weight: math.unit(132, "kg"),
  53216. name: "Back",
  53217. image: {
  53218. source: "./media/characters/aarkus/back.svg",
  53219. extra: 1381/1218,
  53220. bottom: 30/1411
  53221. }
  53222. },
  53223. frontNsfw: {
  53224. height: math.unit(2.69, "meters"),
  53225. weight: math.unit(132, "kg"),
  53226. name: "Front (NSFW)",
  53227. image: {
  53228. source: "./media/characters/aarkus/front-nsfw.svg",
  53229. extra: 1400/1231,
  53230. bottom: 34/1434
  53231. }
  53232. },
  53233. foot: {
  53234. height: math.unit(1.45, "feet"),
  53235. name: "Foot",
  53236. image: {
  53237. source: "./media/characters/aarkus/foot.svg"
  53238. }
  53239. },
  53240. head: {
  53241. height: math.unit(2.85, "feet"),
  53242. name: "Head",
  53243. image: {
  53244. source: "./media/characters/aarkus/head.svg"
  53245. }
  53246. },
  53247. headAlt: {
  53248. height: math.unit(3.07, "feet"),
  53249. name: "Head (Alt)",
  53250. image: {
  53251. source: "./media/characters/aarkus/head-alt.svg"
  53252. }
  53253. },
  53254. mouth: {
  53255. height: math.unit(1.25, "feet"),
  53256. name: "Mouth",
  53257. image: {
  53258. source: "./media/characters/aarkus/mouth.svg"
  53259. }
  53260. },
  53261. dick: {
  53262. height: math.unit(1.77, "feet"),
  53263. name: "Dick",
  53264. image: {
  53265. source: "./media/characters/aarkus/dick.svg"
  53266. }
  53267. },
  53268. },
  53269. [
  53270. {
  53271. name: "Normal",
  53272. height: math.unit(2.69, "meters"),
  53273. default: true
  53274. },
  53275. {
  53276. name: "Macro",
  53277. height: math.unit(269, "meters")
  53278. },
  53279. {
  53280. name: "Macro+",
  53281. height: math.unit(672.5, "meters")
  53282. },
  53283. {
  53284. name: "Megamacro",
  53285. height: math.unit(2.017, "km")
  53286. },
  53287. ]
  53288. ))
  53289. characterMakers.push(() => makeCharacter(
  53290. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53291. {
  53292. front: {
  53293. height: math.unit(23.47, "cm"),
  53294. weight: math.unit(600, "grams"),
  53295. name: "Front",
  53296. image: {
  53297. source: "./media/characters/diode/front.svg",
  53298. extra: 1778/1396,
  53299. bottom: 95/1873
  53300. }
  53301. },
  53302. side: {
  53303. height: math.unit(23.47, "cm"),
  53304. weight: math.unit(600, "grams"),
  53305. name: "Side",
  53306. image: {
  53307. source: "./media/characters/diode/side.svg",
  53308. extra: 1831/1404,
  53309. bottom: 86/1917
  53310. }
  53311. },
  53312. wings: {
  53313. height: math.unit(0.683, "feet"),
  53314. name: "Wings",
  53315. image: {
  53316. source: "./media/characters/diode/wings.svg"
  53317. }
  53318. },
  53319. },
  53320. [
  53321. {
  53322. name: "Normal",
  53323. height: math.unit(23.47, "cm"),
  53324. default: true
  53325. },
  53326. ]
  53327. ))
  53328. characterMakers.push(() => makeCharacter(
  53329. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53330. {
  53331. front: {
  53332. height: math.unit(6 + 3/12, "feet"),
  53333. weight: math.unit(250, "lb"),
  53334. name: "Front",
  53335. image: {
  53336. source: "./media/characters/reika/front.svg",
  53337. extra: 1120/1078,
  53338. bottom: 86/1206
  53339. }
  53340. },
  53341. },
  53342. [
  53343. {
  53344. name: "Normal",
  53345. height: math.unit(6 + 3/12, "feet"),
  53346. default: true
  53347. },
  53348. ]
  53349. ))
  53350. characterMakers.push(() => makeCharacter(
  53351. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53352. {
  53353. front: {
  53354. height: math.unit(16 + 8/12, "feet"),
  53355. weight: math.unit(9000, "lb"),
  53356. name: "Front",
  53357. image: {
  53358. source: "./media/characters/lokuto-takama/front.svg",
  53359. extra: 1774/1632,
  53360. bottom: 147/1921
  53361. },
  53362. extraAttributes: {
  53363. "bustWidth": {
  53364. name: "Bust Width",
  53365. power: 1,
  53366. type: "length",
  53367. base: math.unit(2.4, "meters")
  53368. },
  53369. "breastWeight": {
  53370. name: "Breast Weight",
  53371. power: 3,
  53372. type: "mass",
  53373. base: math.unit(1000, "kg")
  53374. },
  53375. }
  53376. },
  53377. },
  53378. [
  53379. {
  53380. name: "Normal",
  53381. height: math.unit(16 + 8/12, "feet"),
  53382. default: true
  53383. },
  53384. ]
  53385. ))
  53386. characterMakers.push(() => makeCharacter(
  53387. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53388. {
  53389. front: {
  53390. height: math.unit(10, "cm"),
  53391. weight: math.unit(850, "grams"),
  53392. name: "Front",
  53393. image: {
  53394. source: "./media/characters/owak-bone/front.svg",
  53395. extra: 1965/1801,
  53396. bottom: 31/1996
  53397. }
  53398. },
  53399. },
  53400. [
  53401. {
  53402. name: "Normal",
  53403. height: math.unit(10, "cm"),
  53404. default: true
  53405. },
  53406. ]
  53407. ))
  53408. characterMakers.push(() => makeCharacter(
  53409. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53410. {
  53411. front: {
  53412. height: math.unit(2 + 6/12, "feet"),
  53413. weight: math.unit(9, "lb"),
  53414. name: "Front",
  53415. image: {
  53416. source: "./media/characters/muffin/front.svg",
  53417. extra: 1220/1195,
  53418. bottom: 84/1304
  53419. }
  53420. },
  53421. },
  53422. [
  53423. {
  53424. name: "Normal",
  53425. height: math.unit(2 + 6/12, "feet"),
  53426. default: true
  53427. },
  53428. ]
  53429. ))
  53430. characterMakers.push(() => makeCharacter(
  53431. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53432. {
  53433. front: {
  53434. height: math.unit(7, "feet"),
  53435. name: "Front",
  53436. image: {
  53437. source: "./media/characters/chimera/front.svg",
  53438. extra: 1752/1614,
  53439. bottom: 68/1820
  53440. }
  53441. },
  53442. },
  53443. [
  53444. {
  53445. name: "Normal",
  53446. height: math.unit(7, "feet")
  53447. },
  53448. {
  53449. name: "Gigamacro",
  53450. height: math.unit(2.9, "gigameters"),
  53451. default: true
  53452. },
  53453. {
  53454. name: "Universal",
  53455. height: math.unit(1.56e26, "yottameters")
  53456. },
  53457. ]
  53458. ))
  53459. characterMakers.push(() => makeCharacter(
  53460. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53461. {
  53462. front: {
  53463. height: math.unit(3, "feet"),
  53464. weight: math.unit(20, "lb"),
  53465. name: "Front",
  53466. image: {
  53467. source: "./media/characters/kit-fennec-fox/front.svg",
  53468. extra: 1027/932,
  53469. bottom: 16/1043
  53470. }
  53471. },
  53472. back: {
  53473. height: math.unit(3, "feet"),
  53474. weight: math.unit(20, "lb"),
  53475. name: "Back",
  53476. image: {
  53477. source: "./media/characters/kit-fennec-fox/back.svg",
  53478. extra: 1027/932,
  53479. bottom: 16/1043
  53480. }
  53481. },
  53482. },
  53483. [
  53484. {
  53485. name: "Normal",
  53486. height: math.unit(3, "feet"),
  53487. default: true
  53488. },
  53489. ]
  53490. ))
  53491. characterMakers.push(() => makeCharacter(
  53492. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53493. {
  53494. front: {
  53495. height: math.unit(167, "cm"),
  53496. name: "Front",
  53497. image: {
  53498. source: "./media/characters/blue-otter/front.svg",
  53499. extra: 1951/1920,
  53500. bottom: 31/1982
  53501. }
  53502. },
  53503. },
  53504. [
  53505. {
  53506. name: "Otter-Sized",
  53507. height: math.unit(100, "cm")
  53508. },
  53509. {
  53510. name: "Normal",
  53511. height: math.unit(167, "cm"),
  53512. default: true
  53513. },
  53514. ]
  53515. ))
  53516. characterMakers.push(() => makeCharacter(
  53517. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53518. {
  53519. front: {
  53520. height: math.unit(4 + 4/12, "feet"),
  53521. name: "Front",
  53522. image: {
  53523. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53524. extra: 1072/1067,
  53525. bottom: 117/1189
  53526. }
  53527. },
  53528. back: {
  53529. height: math.unit(4 + 4/12, "feet"),
  53530. name: "Back",
  53531. image: {
  53532. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53533. extra: 1135/1129,
  53534. bottom: 57/1192
  53535. }
  53536. },
  53537. head: {
  53538. height: math.unit(1.77, "feet"),
  53539. name: "Head",
  53540. image: {
  53541. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53542. }
  53543. },
  53544. },
  53545. [
  53546. {
  53547. name: "Normal",
  53548. height: math.unit(4 + 4/12, "feet"),
  53549. default: true
  53550. },
  53551. ]
  53552. ))
  53553. characterMakers.push(() => makeCharacter(
  53554. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53555. {
  53556. front: {
  53557. height: math.unit(2, "inches"),
  53558. name: "Front",
  53559. image: {
  53560. source: "./media/characters/carley-hartford/front.svg",
  53561. extra: 1035/988,
  53562. bottom: 23/1058
  53563. }
  53564. },
  53565. back: {
  53566. height: math.unit(2, "inches"),
  53567. name: "Back",
  53568. image: {
  53569. source: "./media/characters/carley-hartford/back.svg",
  53570. extra: 1035/988,
  53571. bottom: 23/1058
  53572. }
  53573. },
  53574. dressed: {
  53575. height: math.unit(2, "inches"),
  53576. name: "Dressed",
  53577. image: {
  53578. source: "./media/characters/carley-hartford/dressed.svg",
  53579. extra: 651/620,
  53580. bottom: 0/651
  53581. }
  53582. },
  53583. },
  53584. [
  53585. {
  53586. name: "Micro",
  53587. height: math.unit(2, "inches"),
  53588. default: true
  53589. },
  53590. {
  53591. name: "Macro",
  53592. height: math.unit(6 + 3/12, "feet")
  53593. },
  53594. ]
  53595. ))
  53596. characterMakers.push(() => makeCharacter(
  53597. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53598. {
  53599. front: {
  53600. height: math.unit(2 + 3/12, "feet"),
  53601. weight: math.unit(15 + 7/16, "lb"),
  53602. name: "Front",
  53603. image: {
  53604. source: "./media/characters/duke/front.svg",
  53605. extra: 910/815,
  53606. bottom: 30/940
  53607. }
  53608. },
  53609. },
  53610. [
  53611. {
  53612. name: "Normal",
  53613. height: math.unit(2 + 3/12, "feet"),
  53614. default: true
  53615. },
  53616. ]
  53617. ))
  53618. characterMakers.push(() => makeCharacter(
  53619. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53620. {
  53621. front: {
  53622. height: math.unit(5 + 4/12, "feet"),
  53623. weight: math.unit(156, "lb"),
  53624. name: "Front",
  53625. image: {
  53626. source: "./media/characters/dein/front.svg",
  53627. extra: 855/815,
  53628. bottom: 48/903
  53629. }
  53630. },
  53631. side: {
  53632. height: math.unit(5 + 4/12, "feet"),
  53633. weight: math.unit(156, "lb"),
  53634. name: "side",
  53635. image: {
  53636. source: "./media/characters/dein/side.svg",
  53637. extra: 846/803,
  53638. bottom: 25/871
  53639. }
  53640. },
  53641. maw: {
  53642. height: math.unit(1.45, "feet"),
  53643. name: "Maw",
  53644. image: {
  53645. source: "./media/characters/dein/maw.svg"
  53646. }
  53647. },
  53648. },
  53649. [
  53650. {
  53651. name: "Ferret Sized",
  53652. height: math.unit(2 + 5/12, "feet")
  53653. },
  53654. {
  53655. name: "Normal",
  53656. height: math.unit(5 + 4/12, "feet"),
  53657. default: true
  53658. },
  53659. ]
  53660. ))
  53661. characterMakers.push(() => makeCharacter(
  53662. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53663. {
  53664. front: {
  53665. height: math.unit(84 + 8/12, "feet"),
  53666. weight: math.unit(942180, "lb"),
  53667. name: "Front",
  53668. image: {
  53669. source: "./media/characters/daurine-arima/front.svg",
  53670. extra: 1989/1782,
  53671. bottom: 37/2026
  53672. }
  53673. },
  53674. side: {
  53675. height: math.unit(84 + 8/12, "feet"),
  53676. weight: math.unit(942180, "lb"),
  53677. name: "Side",
  53678. image: {
  53679. source: "./media/characters/daurine-arima/side.svg",
  53680. extra: 1997/1790,
  53681. bottom: 21/2018
  53682. }
  53683. },
  53684. back: {
  53685. height: math.unit(84 + 8/12, "feet"),
  53686. weight: math.unit(942180, "lb"),
  53687. name: "Back",
  53688. image: {
  53689. source: "./media/characters/daurine-arima/back.svg",
  53690. extra: 1992/1800,
  53691. bottom: 12/2004
  53692. }
  53693. },
  53694. head: {
  53695. height: math.unit(15.5, "feet"),
  53696. name: "Head",
  53697. image: {
  53698. source: "./media/characters/daurine-arima/head.svg"
  53699. }
  53700. },
  53701. headAlt: {
  53702. height: math.unit(19.19, "feet"),
  53703. name: "Head (Alt)",
  53704. image: {
  53705. source: "./media/characters/daurine-arima/head-alt.svg"
  53706. }
  53707. },
  53708. },
  53709. [
  53710. {
  53711. name: "Minimum height",
  53712. height: math.unit(8 + 10/12, "feet")
  53713. },
  53714. {
  53715. name: "Comfort height",
  53716. height: math.unit(19 + 6 /12, "feet")
  53717. },
  53718. {
  53719. name: "\"Normal\" height",
  53720. height: math.unit(28 + 10/12, "feet")
  53721. },
  53722. {
  53723. name: "Base height",
  53724. height: math.unit(84 + 8/12, "feet"),
  53725. default: true
  53726. },
  53727. {
  53728. name: "Mini-macro",
  53729. height: math.unit(2360, "feet")
  53730. },
  53731. {
  53732. name: "Macro",
  53733. height: math.unit(10, "miles")
  53734. },
  53735. {
  53736. name: "Goddess",
  53737. height: math.unit(9.99e40, "yottameters")
  53738. },
  53739. ]
  53740. ))
  53741. characterMakers.push(() => makeCharacter(
  53742. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53743. {
  53744. front: {
  53745. height: math.unit(2.3, "meters"),
  53746. name: "Front",
  53747. image: {
  53748. source: "./media/characters/cilenomon/front.svg",
  53749. extra: 1963/1778,
  53750. bottom: 54/2017
  53751. }
  53752. },
  53753. },
  53754. [
  53755. {
  53756. name: "Normal",
  53757. height: math.unit(2.3, "meters"),
  53758. default: true
  53759. },
  53760. {
  53761. name: "Big",
  53762. height: math.unit(5, "meters")
  53763. },
  53764. {
  53765. name: "Macro",
  53766. height: math.unit(30, "meters")
  53767. },
  53768. {
  53769. name: "True",
  53770. height: math.unit(1, "universe")
  53771. },
  53772. ]
  53773. ))
  53774. characterMakers.push(() => makeCharacter(
  53775. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53776. {
  53777. front: {
  53778. height: math.unit(5, "feet"),
  53779. name: "Front",
  53780. image: {
  53781. source: "./media/characters/sen-mink/front.svg",
  53782. extra: 1727/1675,
  53783. bottom: 35/1762
  53784. }
  53785. },
  53786. },
  53787. [
  53788. {
  53789. name: "Normal",
  53790. height: math.unit(5, "feet"),
  53791. default: true
  53792. },
  53793. ]
  53794. ))
  53795. characterMakers.push(() => makeCharacter(
  53796. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53797. {
  53798. front: {
  53799. height: math.unit(5.42999, "feet"),
  53800. weight: math.unit(100, "lb"),
  53801. name: "Front",
  53802. image: {
  53803. source: "./media/characters/ophois/front.svg",
  53804. extra: 1429/1286,
  53805. bottom: 60/1489
  53806. }
  53807. },
  53808. },
  53809. [
  53810. {
  53811. name: "Normal",
  53812. height: math.unit(5.42999, "feet"),
  53813. default: true
  53814. },
  53815. ]
  53816. ))
  53817. characterMakers.push(() => makeCharacter(
  53818. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53819. {
  53820. front: {
  53821. height: math.unit(2, "meters"),
  53822. name: "Front",
  53823. image: {
  53824. source: "./media/characters/riley/front.svg",
  53825. extra: 1779/1754,
  53826. bottom: 139/1918
  53827. }
  53828. },
  53829. },
  53830. [
  53831. {
  53832. name: "Normal",
  53833. height: math.unit(2, "meters"),
  53834. default: true
  53835. },
  53836. ]
  53837. ))
  53838. characterMakers.push(() => makeCharacter(
  53839. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53840. {
  53841. front: {
  53842. height: math.unit(6 + 2/12, "feet"),
  53843. weight: math.unit(195, "lb"),
  53844. preyCapacity: math.unit(6, "people"),
  53845. name: "Front",
  53846. image: {
  53847. source: "./media/characters/shuken-flash/front.svg",
  53848. extra: 1905/1739,
  53849. bottom: 65/1970
  53850. }
  53851. },
  53852. back: {
  53853. height: math.unit(6 + 2/12, "feet"),
  53854. weight: math.unit(195, "lb"),
  53855. preyCapacity: math.unit(6, "people"),
  53856. name: "Back",
  53857. image: {
  53858. source: "./media/characters/shuken-flash/back.svg",
  53859. extra: 1912/1751,
  53860. bottom: 13/1925
  53861. }
  53862. },
  53863. },
  53864. [
  53865. {
  53866. name: "Normal",
  53867. height: math.unit(6 + 2/12, "feet"),
  53868. default: true
  53869. },
  53870. ]
  53871. ))
  53872. characterMakers.push(() => makeCharacter(
  53873. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53874. {
  53875. front: {
  53876. height: math.unit(5 + 9/12, "feet"),
  53877. weight: math.unit(150, "lb"),
  53878. name: "Front",
  53879. image: {
  53880. source: "./media/characters/plat/front.svg",
  53881. extra: 1816/1703,
  53882. bottom: 43/1859
  53883. }
  53884. },
  53885. side: {
  53886. height: math.unit(5 + 9/12, "feet"),
  53887. weight: math.unit(300, "lb"),
  53888. name: "Side",
  53889. image: {
  53890. source: "./media/characters/plat/side.svg",
  53891. extra: 1824/1699,
  53892. bottom: 18/1842
  53893. }
  53894. },
  53895. },
  53896. [
  53897. {
  53898. name: "Normal",
  53899. height: math.unit(5 + 9/12, "feet"),
  53900. default: true
  53901. },
  53902. ]
  53903. ))
  53904. characterMakers.push(() => makeCharacter(
  53905. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53906. {
  53907. front: {
  53908. height: math.unit(9, "feet"),
  53909. weight: math.unit(1800, "lb"),
  53910. name: "Front",
  53911. image: {
  53912. source: "./media/characters/elaine/front.svg",
  53913. extra: 1833/1354,
  53914. bottom: 25/1858
  53915. }
  53916. },
  53917. back: {
  53918. height: math.unit(8.8, "feet"),
  53919. weight: math.unit(1800, "lb"),
  53920. name: "Back",
  53921. image: {
  53922. source: "./media/characters/elaine/back.svg",
  53923. extra: 1641/1233,
  53924. bottom: 53/1694
  53925. }
  53926. },
  53927. },
  53928. [
  53929. {
  53930. name: "Normal",
  53931. height: math.unit(9, "feet"),
  53932. default: true
  53933. },
  53934. ]
  53935. ))
  53936. characterMakers.push(() => makeCharacter(
  53937. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53938. {
  53939. front: {
  53940. height: math.unit(17 + 9/12, "feet"),
  53941. weight: math.unit(8000, "lb"),
  53942. name: "Front",
  53943. image: {
  53944. source: "./media/characters/vera-raven/front.svg",
  53945. extra: 1457/1412,
  53946. bottom: 121/1578
  53947. }
  53948. },
  53949. side: {
  53950. height: math.unit(17 + 9/12, "feet"),
  53951. weight: math.unit(8000, "lb"),
  53952. name: "Side",
  53953. image: {
  53954. source: "./media/characters/vera-raven/side.svg",
  53955. extra: 1510/1464,
  53956. bottom: 54/1564
  53957. }
  53958. },
  53959. },
  53960. [
  53961. {
  53962. name: "Normal",
  53963. height: math.unit(17 + 9/12, "feet"),
  53964. default: true
  53965. },
  53966. ]
  53967. ))
  53968. characterMakers.push(() => makeCharacter(
  53969. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53970. {
  53971. dressed: {
  53972. height: math.unit(6 + 9/12, "feet"),
  53973. name: "Dressed",
  53974. image: {
  53975. source: "./media/characters/nakisha/dressed.svg",
  53976. extra: 1909/1757,
  53977. bottom: 48/1957
  53978. }
  53979. },
  53980. nude: {
  53981. height: math.unit(6 + 9/12, "feet"),
  53982. name: "Nude",
  53983. image: {
  53984. source: "./media/characters/nakisha/nude.svg",
  53985. extra: 1917/1765,
  53986. bottom: 34/1951
  53987. }
  53988. },
  53989. },
  53990. [
  53991. {
  53992. name: "Normal",
  53993. height: math.unit(6 + 9/12, "feet"),
  53994. default: true
  53995. },
  53996. ]
  53997. ))
  53998. characterMakers.push(() => makeCharacter(
  53999. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54000. {
  54001. front: {
  54002. height: math.unit(87, "meters"),
  54003. name: "Front",
  54004. image: {
  54005. source: "./media/characters/serafin/front.svg",
  54006. extra: 1919/1776,
  54007. bottom: 65/1984
  54008. }
  54009. },
  54010. },
  54011. [
  54012. {
  54013. name: "Normal",
  54014. height: math.unit(87, "meters"),
  54015. default: true
  54016. },
  54017. ]
  54018. ))
  54019. characterMakers.push(() => makeCharacter(
  54020. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54021. {
  54022. front: {
  54023. height: math.unit(6, "feet"),
  54024. weight: math.unit(200, "lb"),
  54025. name: "Front",
  54026. image: {
  54027. source: "./media/characters/poptart/front.svg",
  54028. extra: 615/583,
  54029. bottom: 23/638
  54030. }
  54031. },
  54032. back: {
  54033. height: math.unit(6, "feet"),
  54034. weight: math.unit(200, "lb"),
  54035. name: "Back",
  54036. image: {
  54037. source: "./media/characters/poptart/back.svg",
  54038. extra: 617/584,
  54039. bottom: 22/639
  54040. }
  54041. },
  54042. frontNsfw: {
  54043. height: math.unit(6, "feet"),
  54044. weight: math.unit(200, "lb"),
  54045. name: "Front (NSFW)",
  54046. image: {
  54047. source: "./media/characters/poptart/front-nsfw.svg",
  54048. extra: 615/583,
  54049. bottom: 23/638
  54050. }
  54051. },
  54052. backNsfw: {
  54053. height: math.unit(6, "feet"),
  54054. weight: math.unit(200, "lb"),
  54055. name: "Back (NSFW)",
  54056. image: {
  54057. source: "./media/characters/poptart/back-nsfw.svg",
  54058. extra: 617/584,
  54059. bottom: 22/639
  54060. }
  54061. },
  54062. hand: {
  54063. height: math.unit(1.14, "feet"),
  54064. name: "Hand",
  54065. image: {
  54066. source: "./media/characters/poptart/hand.svg"
  54067. }
  54068. },
  54069. foot: {
  54070. height: math.unit(1.5, "feet"),
  54071. name: "Foot",
  54072. image: {
  54073. source: "./media/characters/poptart/foot.svg"
  54074. }
  54075. },
  54076. },
  54077. [
  54078. {
  54079. name: "Normal",
  54080. height: math.unit(6, "feet"),
  54081. default: true
  54082. },
  54083. {
  54084. name: "Grande",
  54085. height: math.unit(350, "feet")
  54086. },
  54087. {
  54088. name: "Massif",
  54089. height: math.unit(967, "feet")
  54090. },
  54091. ]
  54092. ))
  54093. characterMakers.push(() => makeCharacter(
  54094. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54095. {
  54096. hyenaSide: {
  54097. height: math.unit(120, "cm"),
  54098. weight: math.unit(120, "lb"),
  54099. name: "Side",
  54100. image: {
  54101. source: "./media/characters/trance/hyena-side.svg",
  54102. extra: 998/904,
  54103. bottom: 76/1074
  54104. }
  54105. },
  54106. },
  54107. [
  54108. {
  54109. name: "Normal",
  54110. height: math.unit(120, "cm"),
  54111. default: true
  54112. },
  54113. {
  54114. name: "Dire",
  54115. height: math.unit(230, "cm")
  54116. },
  54117. {
  54118. name: "Macro",
  54119. height: math.unit(37, "feet")
  54120. },
  54121. ]
  54122. ))
  54123. characterMakers.push(() => makeCharacter(
  54124. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54125. {
  54126. front: {
  54127. height: math.unit(6 + 3/12, "feet"),
  54128. name: "Front",
  54129. image: {
  54130. source: "./media/characters/michael-berretta/front.svg",
  54131. extra: 515/494,
  54132. bottom: 20/535
  54133. }
  54134. },
  54135. back: {
  54136. height: math.unit(6 + 3/12, "feet"),
  54137. name: "Back",
  54138. image: {
  54139. source: "./media/characters/michael-berretta/back.svg",
  54140. extra: 520/497,
  54141. bottom: 21/541
  54142. }
  54143. },
  54144. frontNsfw: {
  54145. height: math.unit(6 + 3/12, "feet"),
  54146. name: "Front (NSFW)",
  54147. image: {
  54148. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54149. extra: 515/494,
  54150. bottom: 20/535
  54151. }
  54152. },
  54153. dick: {
  54154. height: math.unit(1, "feet"),
  54155. name: "Dick",
  54156. image: {
  54157. source: "./media/characters/michael-berretta/dick.svg"
  54158. }
  54159. },
  54160. },
  54161. [
  54162. {
  54163. name: "Normal",
  54164. height: math.unit(6 + 3/12, "feet"),
  54165. default: true
  54166. },
  54167. {
  54168. name: "Big",
  54169. height: math.unit(12, "feet")
  54170. },
  54171. {
  54172. name: "Macro",
  54173. height: math.unit(187.5, "feet")
  54174. },
  54175. ]
  54176. ))
  54177. characterMakers.push(() => makeCharacter(
  54178. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54179. {
  54180. front: {
  54181. height: math.unit(9 + 9/12, "feet"),
  54182. weight: math.unit(1244, "lb"),
  54183. name: "Front",
  54184. image: {
  54185. source: "./media/characters/stella-edgecomb/front.svg",
  54186. extra: 1835/1706,
  54187. bottom: 49/1884
  54188. }
  54189. },
  54190. pen: {
  54191. height: math.unit(0.95, "feet"),
  54192. name: "Pen",
  54193. image: {
  54194. source: "./media/characters/stella-edgecomb/pen.svg"
  54195. }
  54196. },
  54197. },
  54198. [
  54199. {
  54200. name: "Cozy Bear",
  54201. height: math.unit(0.5, "inches")
  54202. },
  54203. {
  54204. name: "Normal",
  54205. height: math.unit(9 + 9/12, "feet"),
  54206. default: true
  54207. },
  54208. {
  54209. name: "Giga Bear",
  54210. height: math.unit(1, "mile")
  54211. },
  54212. {
  54213. name: "Great Bear",
  54214. height: math.unit(53, "miles")
  54215. },
  54216. {
  54217. name: "Goddess Bear",
  54218. height: math.unit(40000, "miles")
  54219. },
  54220. {
  54221. name: "Sun Bear",
  54222. height: math.unit(900000, "miles")
  54223. },
  54224. ]
  54225. ))
  54226. characterMakers.push(() => makeCharacter(
  54227. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54228. {
  54229. anthroFront: {
  54230. height: math.unit(556, "cm"),
  54231. weight: math.unit(2650, "kg"),
  54232. preyCapacity: math.unit(3, "people"),
  54233. name: "Front",
  54234. image: {
  54235. source: "./media/characters/ash´iika/front.svg",
  54236. extra: 710/673,
  54237. bottom: 15/725
  54238. },
  54239. form: "anthro",
  54240. default: true
  54241. },
  54242. anthroSide: {
  54243. height: math.unit(556, "cm"),
  54244. weight: math.unit(2650, "kg"),
  54245. preyCapacity: math.unit(3, "people"),
  54246. name: "Side",
  54247. image: {
  54248. source: "./media/characters/ash´iika/side.svg",
  54249. extra: 696/676,
  54250. bottom: 13/709
  54251. },
  54252. form: "anthro"
  54253. },
  54254. anthroDressed: {
  54255. height: math.unit(556, "cm"),
  54256. weight: math.unit(2650, "kg"),
  54257. preyCapacity: math.unit(3, "people"),
  54258. name: "Dressed",
  54259. image: {
  54260. source: "./media/characters/ash´iika/dressed.svg",
  54261. extra: 710/673,
  54262. bottom: 15/725
  54263. },
  54264. form: "anthro"
  54265. },
  54266. anthroHead: {
  54267. height: math.unit(3.5, "feet"),
  54268. name: "Head",
  54269. image: {
  54270. source: "./media/characters/ash´iika/head.svg",
  54271. extra: 348/291,
  54272. bottom: 45/393
  54273. },
  54274. form: "anthro"
  54275. },
  54276. feralSide: {
  54277. height: math.unit(870, "cm"),
  54278. weight: math.unit(17500, "kg"),
  54279. preyCapacity: math.unit(15, "people"),
  54280. name: "Side",
  54281. image: {
  54282. source: "./media/characters/ash´iika/feral.svg",
  54283. extra: 595/199,
  54284. bottom: 7/602
  54285. },
  54286. form: "feral",
  54287. default: true,
  54288. },
  54289. },
  54290. [
  54291. {
  54292. name: "Normal",
  54293. height: math.unit(556, "cm"),
  54294. default: true,
  54295. form: "anthro"
  54296. },
  54297. {
  54298. name: "Macro",
  54299. height: math.unit(88, "meters"),
  54300. form: "anthro"
  54301. },
  54302. {
  54303. name: "Normal",
  54304. height: math.unit(870, "cm"),
  54305. default: true,
  54306. form: "feral"
  54307. },
  54308. {
  54309. name: "Large",
  54310. height: math.unit(25, "meters"),
  54311. form: "feral"
  54312. },
  54313. ],
  54314. {
  54315. "anthro": {
  54316. name: "Anthro",
  54317. default: true
  54318. },
  54319. "feral": {
  54320. name: "Feral",
  54321. },
  54322. }
  54323. ))
  54324. characterMakers.push(() => makeCharacter(
  54325. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54326. {
  54327. front: {
  54328. height: math.unit(10, "feet"),
  54329. weight: math.unit(800, "lb"),
  54330. name: "Front",
  54331. image: {
  54332. source: "./media/characters/yen/front.svg",
  54333. extra: 443/411,
  54334. bottom: 6/449
  54335. }
  54336. },
  54337. sleeping: {
  54338. height: math.unit(10, "feet"),
  54339. weight: math.unit(800, "lb"),
  54340. name: "Sleeping",
  54341. image: {
  54342. source: "./media/characters/yen/sleeping.svg",
  54343. extra: 470/422,
  54344. bottom: 0/470
  54345. }
  54346. },
  54347. head: {
  54348. height: math.unit(2.2, "feet"),
  54349. name: "Head",
  54350. image: {
  54351. source: "./media/characters/yen/head.svg"
  54352. }
  54353. },
  54354. headAlt: {
  54355. height: math.unit(2.1, "feet"),
  54356. name: "Head (Alt)",
  54357. image: {
  54358. source: "./media/characters/yen/head-alt.svg"
  54359. }
  54360. },
  54361. },
  54362. [
  54363. {
  54364. name: "Normal",
  54365. height: math.unit(10, "feet"),
  54366. default: true
  54367. },
  54368. ]
  54369. ))
  54370. characterMakers.push(() => makeCharacter(
  54371. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54372. {
  54373. front: {
  54374. height: math.unit(12, "feet"),
  54375. name: "Front",
  54376. image: {
  54377. source: "./media/characters/citra/front.svg",
  54378. extra: 1950/1710,
  54379. bottom: 47/1997
  54380. }
  54381. },
  54382. },
  54383. [
  54384. {
  54385. name: "Normal",
  54386. height: math.unit(12, "feet"),
  54387. default: true
  54388. },
  54389. ]
  54390. ))
  54391. characterMakers.push(() => makeCharacter(
  54392. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54393. {
  54394. side: {
  54395. height: math.unit(7 + 10/12, "feet"),
  54396. name: "Side",
  54397. image: {
  54398. source: "./media/characters/sholstim/side.svg",
  54399. extra: 786/682,
  54400. bottom: 40/826
  54401. }
  54402. },
  54403. },
  54404. [
  54405. {
  54406. name: "Normal",
  54407. height: math.unit(7 + 10/12, "feet"),
  54408. default: true
  54409. },
  54410. ]
  54411. ))
  54412. characterMakers.push(() => makeCharacter(
  54413. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54414. {
  54415. front: {
  54416. height: math.unit(3.10, "meters"),
  54417. name: "Front",
  54418. image: {
  54419. source: "./media/characters/aggyn/front.svg",
  54420. extra: 1188/963,
  54421. bottom: 24/1212
  54422. }
  54423. },
  54424. },
  54425. [
  54426. {
  54427. name: "Normal",
  54428. height: math.unit(3.10, "meters"),
  54429. default: true
  54430. },
  54431. ]
  54432. ))
  54433. characterMakers.push(() => makeCharacter(
  54434. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54435. {
  54436. front: {
  54437. height: math.unit(7 + 5/12, "feet"),
  54438. weight: math.unit(687, "lb"),
  54439. name: "Front",
  54440. image: {
  54441. source: "./media/characters/alsandair-hergenroether/front.svg",
  54442. extra: 1251/1186,
  54443. bottom: 75/1326
  54444. }
  54445. },
  54446. back: {
  54447. height: math.unit(7 + 5/12, "feet"),
  54448. weight: math.unit(687, "lb"),
  54449. name: "Back",
  54450. image: {
  54451. source: "./media/characters/alsandair-hergenroether/back.svg",
  54452. extra: 1290/1229,
  54453. bottom: 17/1307
  54454. }
  54455. },
  54456. },
  54457. [
  54458. {
  54459. name: "Max Compression",
  54460. height: math.unit(7 + 5/12, "feet"),
  54461. default: true
  54462. },
  54463. {
  54464. name: "\"Normal\"",
  54465. height: math.unit(2, "universes")
  54466. },
  54467. ]
  54468. ))
  54469. characterMakers.push(() => makeCharacter(
  54470. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54471. {
  54472. front: {
  54473. height: math.unit(4 + 1/12, "feet"),
  54474. weight: math.unit(92, "lb"),
  54475. name: "Front",
  54476. image: {
  54477. source: "./media/characters/ie/front.svg",
  54478. extra: 1585/1352,
  54479. bottom: 91/1676
  54480. }
  54481. },
  54482. },
  54483. [
  54484. {
  54485. name: "Normal",
  54486. height: math.unit(4 + 1/12, "feet"),
  54487. default: true
  54488. },
  54489. ]
  54490. ))
  54491. characterMakers.push(() => makeCharacter(
  54492. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54493. {
  54494. anthro: {
  54495. height: math.unit(6, "feet"),
  54496. weight: math.unit(150, "lb"),
  54497. name: "Front",
  54498. image: {
  54499. source: "./media/characters/willow/anthro.svg",
  54500. extra: 1073/986,
  54501. bottom: 34/1107
  54502. },
  54503. form: "anthro",
  54504. default: true
  54505. },
  54506. taur: {
  54507. height: math.unit(6, "feet"),
  54508. weight: math.unit(150, "lb"),
  54509. name: "Side",
  54510. image: {
  54511. source: "./media/characters/willow/taur.svg",
  54512. extra: 647/512,
  54513. bottom: 136/783
  54514. },
  54515. form: "taur",
  54516. default: true
  54517. },
  54518. },
  54519. [
  54520. {
  54521. name: "Humanoid",
  54522. height: math.unit(2.7, "meters"),
  54523. form: "anthro"
  54524. },
  54525. {
  54526. name: "Normal",
  54527. height: math.unit(9, "meters"),
  54528. form: "anthro",
  54529. default: true
  54530. },
  54531. {
  54532. name: "Humanoid",
  54533. height: math.unit(2.1, "meters"),
  54534. form: "taur"
  54535. },
  54536. {
  54537. name: "Normal",
  54538. height: math.unit(7, "meters"),
  54539. form: "taur",
  54540. default: true
  54541. },
  54542. ],
  54543. {
  54544. "anthro": {
  54545. name: "Anthro",
  54546. default: true
  54547. },
  54548. "taur": {
  54549. name: "Taur",
  54550. },
  54551. }
  54552. ))
  54553. characterMakers.push(() => makeCharacter(
  54554. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54555. {
  54556. front: {
  54557. height: math.unit(2 + 5/12, "feet"),
  54558. name: "Front",
  54559. image: {
  54560. source: "./media/characters/kyan/front.svg",
  54561. extra: 460/334,
  54562. bottom: 23/483
  54563. },
  54564. extraAttributes: {
  54565. "toeLength": {
  54566. name: "Toe Length",
  54567. power: 1,
  54568. type: "length",
  54569. base: math.unit(7, "cm")
  54570. },
  54571. "toeclawLength": {
  54572. name: "Toeclaw Length",
  54573. power: 1,
  54574. type: "length",
  54575. base: math.unit(4.7, "cm")
  54576. },
  54577. "earHeight": {
  54578. name: "Ear Height",
  54579. power: 1,
  54580. type: "length",
  54581. base: math.unit(14.1, "cm")
  54582. },
  54583. }
  54584. },
  54585. paws: {
  54586. height: math.unit(0.45, "feet"),
  54587. name: "Paws",
  54588. image: {
  54589. source: "./media/characters/kyan/paws.svg",
  54590. extra: 581/581,
  54591. bottom: 114/695
  54592. }
  54593. },
  54594. },
  54595. [
  54596. {
  54597. name: "Normal",
  54598. height: math.unit(2 + 5/12, "feet"),
  54599. default: true
  54600. },
  54601. ]
  54602. ))
  54603. characterMakers.push(() => makeCharacter(
  54604. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54605. {
  54606. front: {
  54607. height: math.unit(2 + 2/3, "feet"),
  54608. name: "Front",
  54609. image: {
  54610. source: "./media/characters/xazzon/front.svg",
  54611. extra: 1109/984,
  54612. bottom: 42/1151
  54613. }
  54614. },
  54615. back: {
  54616. height: math.unit(2 + 2/3, "feet"),
  54617. name: "Back",
  54618. image: {
  54619. source: "./media/characters/xazzon/back.svg",
  54620. extra: 1095/971,
  54621. bottom: 23/1118
  54622. }
  54623. },
  54624. },
  54625. [
  54626. {
  54627. name: "Normal",
  54628. height: math.unit(2 + 2/3, "feet"),
  54629. default: true
  54630. },
  54631. ]
  54632. ))
  54633. characterMakers.push(() => makeCharacter(
  54634. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54635. {
  54636. front: {
  54637. height: math.unit(8, "feet"),
  54638. weight: math.unit(300, "lb"),
  54639. name: "Front",
  54640. image: {
  54641. source: "./media/characters/khyla-shadowsong/front.svg",
  54642. extra: 861/798,
  54643. bottom: 32/893
  54644. }
  54645. },
  54646. side: {
  54647. height: math.unit(8, "feet"),
  54648. weight: math.unit(300, "lb"),
  54649. name: "Side",
  54650. image: {
  54651. source: "./media/characters/khyla-shadowsong/side.svg",
  54652. extra: 790/750,
  54653. bottom: 87/877
  54654. }
  54655. },
  54656. back: {
  54657. height: math.unit(8, "feet"),
  54658. weight: math.unit(300, "lb"),
  54659. name: "Back",
  54660. image: {
  54661. source: "./media/characters/khyla-shadowsong/back.svg",
  54662. extra: 855/808,
  54663. bottom: 14/869
  54664. }
  54665. },
  54666. head: {
  54667. height: math.unit(2.7, "feet"),
  54668. name: "Head",
  54669. image: {
  54670. source: "./media/characters/khyla-shadowsong/head.svg"
  54671. }
  54672. },
  54673. },
  54674. [
  54675. {
  54676. name: "Micro",
  54677. height: math.unit(6, "inches")
  54678. },
  54679. {
  54680. name: "Normal",
  54681. height: math.unit(8, "feet"),
  54682. default: true
  54683. },
  54684. ]
  54685. ))
  54686. characterMakers.push(() => makeCharacter(
  54687. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54688. {
  54689. hyperFront: {
  54690. height: math.unit(9 + 4/12, "feet"),
  54691. weight: math.unit(2000, "lb"),
  54692. name: "Front",
  54693. image: {
  54694. source: "./media/characters/tiden/hyper-front.svg",
  54695. extra: 400/382,
  54696. bottom: 6/406
  54697. },
  54698. form: "hyper",
  54699. },
  54700. regularFront: {
  54701. height: math.unit(7 + 10/12, "feet"),
  54702. weight: math.unit(470, "lb"),
  54703. name: "Front",
  54704. image: {
  54705. source: "./media/characters/tiden/regular-front.svg",
  54706. extra: 468/442,
  54707. bottom: 6/474
  54708. },
  54709. form: "regular",
  54710. },
  54711. },
  54712. [
  54713. {
  54714. name: "Normal",
  54715. height: math.unit(9 + 4/12, "feet"),
  54716. default: true,
  54717. form: "hyper"
  54718. },
  54719. {
  54720. name: "Normal",
  54721. height: math.unit(7 + 10/12, "feet"),
  54722. default: true,
  54723. form: "regular"
  54724. },
  54725. ],
  54726. {
  54727. "hyper": {
  54728. name: "Hyper",
  54729. default: true
  54730. },
  54731. "regular": {
  54732. name: "Regular",
  54733. },
  54734. }
  54735. ))
  54736. characterMakers.push(() => makeCharacter(
  54737. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54738. {
  54739. side: {
  54740. height: math.unit(6, "feet"),
  54741. weight: math.unit(150, "lb"),
  54742. name: "Side",
  54743. image: {
  54744. source: "./media/characters/jason-crowe/side.svg",
  54745. extra: 1771/766,
  54746. bottom: 219/1990
  54747. }
  54748. },
  54749. },
  54750. [
  54751. {
  54752. name: "Pocket Gryphon",
  54753. height: math.unit(6, "cm")
  54754. },
  54755. {
  54756. name: "Raven",
  54757. height: math.unit(60, "cm")
  54758. },
  54759. {
  54760. name: "Normal",
  54761. height: math.unit(1, "meter"),
  54762. default: true
  54763. },
  54764. ]
  54765. ))
  54766. characterMakers.push(() => makeCharacter(
  54767. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54768. {
  54769. front: {
  54770. height: math.unit(9 + 6/12, "feet"),
  54771. weight: math.unit(1100, "lb"),
  54772. name: "Front",
  54773. image: {
  54774. source: "./media/characters/django/front.svg",
  54775. extra: 1231/1136,
  54776. bottom: 34/1265
  54777. }
  54778. },
  54779. side: {
  54780. height: math.unit(9 + 6/12, "feet"),
  54781. weight: math.unit(1100, "lb"),
  54782. name: "Side",
  54783. image: {
  54784. source: "./media/characters/django/side.svg",
  54785. extra: 1267/1174,
  54786. bottom: 9/1276
  54787. }
  54788. },
  54789. },
  54790. [
  54791. {
  54792. name: "Normal",
  54793. height: math.unit(9 + 6/12, "feet"),
  54794. default: true
  54795. },
  54796. {
  54797. name: "Macro 1",
  54798. height: math.unit(50, "feet")
  54799. },
  54800. {
  54801. name: "Macro 2",
  54802. height: math.unit(500, "feet")
  54803. },
  54804. {
  54805. name: "Mega Macro",
  54806. height: math.unit(5300, "feet")
  54807. },
  54808. ]
  54809. ))
  54810. characterMakers.push(() => makeCharacter(
  54811. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54812. {
  54813. frontSfw: {
  54814. height: math.unit(120, "cm"),
  54815. weight: math.unit(15, "kg"),
  54816. name: "Front (SFW)",
  54817. image: {
  54818. source: "./media/characters/eri/front-sfw.svg",
  54819. extra: 1014/939,
  54820. bottom: 37/1051
  54821. },
  54822. form: "moth",
  54823. },
  54824. frontNsfw: {
  54825. height: math.unit(120, "cm"),
  54826. weight: math.unit(15, "kg"),
  54827. name: "Front (NSFW)",
  54828. image: {
  54829. source: "./media/characters/eri/front-nsfw.svg",
  54830. extra: 1014/939,
  54831. bottom: 37/1051
  54832. },
  54833. form: "moth",
  54834. default: true
  54835. },
  54836. egg: {
  54837. height: math.unit(10, "cm"),
  54838. name: "Egg",
  54839. image: {
  54840. source: "./media/characters/eri/egg.svg"
  54841. },
  54842. form: "egg",
  54843. default: true
  54844. },
  54845. },
  54846. [
  54847. {
  54848. name: "Normal",
  54849. height: math.unit(120, "cm"),
  54850. default: true,
  54851. form: "moth"
  54852. },
  54853. {
  54854. name: "Normal",
  54855. height: math.unit(10, "cm"),
  54856. default: true,
  54857. form: "egg"
  54858. },
  54859. ],
  54860. {
  54861. "moth": {
  54862. name: "Moth",
  54863. default: true
  54864. },
  54865. "egg": {
  54866. name: "Egg",
  54867. },
  54868. }
  54869. ))
  54870. characterMakers.push(() => makeCharacter(
  54871. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54872. {
  54873. front: {
  54874. height: math.unit(200, "feet"),
  54875. name: "Front",
  54876. image: {
  54877. source: "./media/characters/bishop-dowser/front.svg",
  54878. extra: 933/868,
  54879. bottom: 106/1039
  54880. }
  54881. },
  54882. },
  54883. [
  54884. {
  54885. name: "Giant",
  54886. height: math.unit(200, "feet"),
  54887. default: true
  54888. },
  54889. ]
  54890. ))
  54891. characterMakers.push(() => makeCharacter(
  54892. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54893. {
  54894. front: {
  54895. height: math.unit(2, "meters"),
  54896. preyCapacity: math.unit(3, "people"),
  54897. name: "Front",
  54898. image: {
  54899. source: "./media/characters/fryra/front.svg",
  54900. extra: 1025/948,
  54901. bottom: 30/1055
  54902. },
  54903. extraAttributes: {
  54904. "breastVolume": {
  54905. name: "Breast Volume",
  54906. power: 3,
  54907. type: "volume",
  54908. base: math.unit(8, "liters")
  54909. },
  54910. }
  54911. },
  54912. back: {
  54913. height: math.unit(2, "meters"),
  54914. preyCapacity: math.unit(3, "people"),
  54915. name: "Back",
  54916. image: {
  54917. source: "./media/characters/fryra/back.svg",
  54918. extra: 993/938,
  54919. bottom: 38/1031
  54920. },
  54921. extraAttributes: {
  54922. "breastVolume": {
  54923. name: "Breast Volume",
  54924. power: 3,
  54925. type: "volume",
  54926. base: math.unit(8, "liters")
  54927. },
  54928. }
  54929. },
  54930. head: {
  54931. height: math.unit(1.33, "feet"),
  54932. name: "Head",
  54933. image: {
  54934. source: "./media/characters/fryra/head.svg"
  54935. }
  54936. },
  54937. maw: {
  54938. height: math.unit(0.56, "feet"),
  54939. name: "Maw",
  54940. image: {
  54941. source: "./media/characters/fryra/maw.svg"
  54942. }
  54943. },
  54944. },
  54945. [
  54946. {
  54947. name: "Micro",
  54948. height: math.unit(5, "cm")
  54949. },
  54950. {
  54951. name: "Normal",
  54952. height: math.unit(2, "meters"),
  54953. default: true
  54954. },
  54955. {
  54956. name: "Small Macro",
  54957. height: math.unit(8, "meters")
  54958. },
  54959. {
  54960. name: "Macro",
  54961. height: math.unit(50, "meters")
  54962. },
  54963. {
  54964. name: "Megamacro",
  54965. height: math.unit(1, "km")
  54966. },
  54967. {
  54968. name: "Planetary",
  54969. height: math.unit(300000, "km")
  54970. },
  54971. {
  54972. name: "Universal",
  54973. height: math.unit(250, "lightyears")
  54974. },
  54975. {
  54976. name: "Fabric of Reality",
  54977. height: math.unit(1000, "multiverses")
  54978. },
  54979. ]
  54980. ))
  54981. characterMakers.push(() => makeCharacter(
  54982. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54983. {
  54984. frontDressed: {
  54985. height: math.unit(6 + 2/12, "feet"),
  54986. name: "Front (Dressed)",
  54987. image: {
  54988. source: "./media/characters/fiera/front-dressed.svg",
  54989. extra: 1883/1793,
  54990. bottom: 70/1953
  54991. }
  54992. },
  54993. backDressed: {
  54994. height: math.unit(6 + 2/12, "feet"),
  54995. name: "Back (Dressed)",
  54996. image: {
  54997. source: "./media/characters/fiera/back-dressed.svg",
  54998. extra: 1847/1780,
  54999. bottom: 70/1917
  55000. }
  55001. },
  55002. frontNude: {
  55003. height: math.unit(6 + 2/12, "feet"),
  55004. name: "Front (Nude)",
  55005. image: {
  55006. source: "./media/characters/fiera/front-nude.svg",
  55007. extra: 1875/1785,
  55008. bottom: 66/1941
  55009. }
  55010. },
  55011. backNude: {
  55012. height: math.unit(6 + 2/12, "feet"),
  55013. name: "Back (Nude)",
  55014. image: {
  55015. source: "./media/characters/fiera/back-nude.svg",
  55016. extra: 1855/1788,
  55017. bottom: 44/1899
  55018. }
  55019. },
  55020. maw: {
  55021. height: math.unit(1.3, "feet"),
  55022. name: "Maw",
  55023. image: {
  55024. source: "./media/characters/fiera/maw.svg"
  55025. }
  55026. },
  55027. paw: {
  55028. height: math.unit(1, "feet"),
  55029. name: "Paw",
  55030. image: {
  55031. source: "./media/characters/fiera/paw.svg"
  55032. }
  55033. },
  55034. shoe: {
  55035. height: math.unit(1.05, "feet"),
  55036. name: "Shoe",
  55037. image: {
  55038. source: "./media/characters/fiera/shoe.svg"
  55039. }
  55040. },
  55041. },
  55042. [
  55043. {
  55044. name: "Normal",
  55045. height: math.unit(6 + 2/12, "feet"),
  55046. default: true
  55047. },
  55048. {
  55049. name: "Size Difference",
  55050. height: math.unit(13, "feet")
  55051. },
  55052. {
  55053. name: "Macro",
  55054. height: math.unit(60, "feet")
  55055. },
  55056. {
  55057. name: "Mega Macro",
  55058. height: math.unit(200, "feet")
  55059. },
  55060. ]
  55061. ))
  55062. characterMakers.push(() => makeCharacter(
  55063. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55064. {
  55065. back: {
  55066. height: math.unit(6, "feet"),
  55067. name: "Back",
  55068. image: {
  55069. source: "./media/characters/flare/back.svg",
  55070. extra: 1883/1765,
  55071. bottom: 32/1915
  55072. }
  55073. },
  55074. },
  55075. [
  55076. {
  55077. name: "Normal",
  55078. height: math.unit(6 + 2/12, "feet"),
  55079. default: true
  55080. },
  55081. {
  55082. name: "Size Difference",
  55083. height: math.unit(13, "feet")
  55084. },
  55085. {
  55086. name: "Macro",
  55087. height: math.unit(60, "feet")
  55088. },
  55089. {
  55090. name: "Macro 2",
  55091. height: math.unit(100, "feet")
  55092. },
  55093. {
  55094. name: "Mega Macro",
  55095. height: math.unit(200, "feet")
  55096. },
  55097. ]
  55098. ))
  55099. characterMakers.push(() => makeCharacter(
  55100. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55101. {
  55102. front: {
  55103. height: math.unit(2.2, "m"),
  55104. weight: math.unit(300, "kg"),
  55105. name: "Front",
  55106. image: {
  55107. source: "./media/characters/hanna/front.svg",
  55108. extra: 1696/1502,
  55109. bottom: 206/1902
  55110. }
  55111. },
  55112. },
  55113. [
  55114. {
  55115. name: "Humanoid",
  55116. height: math.unit(2.2, "meters")
  55117. },
  55118. {
  55119. name: "Normal",
  55120. height: math.unit(4.8, "meters"),
  55121. default: true
  55122. },
  55123. ]
  55124. ))
  55125. characterMakers.push(() => makeCharacter(
  55126. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55127. {
  55128. front: {
  55129. height: math.unit(2.8, "meters"),
  55130. name: "Front",
  55131. image: {
  55132. source: "./media/characters/argo/front.svg",
  55133. extra: 731/518,
  55134. bottom: 84/815
  55135. }
  55136. },
  55137. },
  55138. [
  55139. {
  55140. name: "Normal",
  55141. height: math.unit(3, "meters"),
  55142. default: true
  55143. },
  55144. ]
  55145. ))
  55146. characterMakers.push(() => makeCharacter(
  55147. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55148. {
  55149. side: {
  55150. height: math.unit(3.8, "meters"),
  55151. name: "Side",
  55152. image: {
  55153. source: "./media/characters/sybil/side.svg",
  55154. extra: 382/361,
  55155. bottom: 25/407
  55156. }
  55157. },
  55158. },
  55159. [
  55160. {
  55161. name: "Normal",
  55162. height: math.unit(3.8, "meters"),
  55163. default: true
  55164. },
  55165. ]
  55166. ))
  55167. characterMakers.push(() => makeCharacter(
  55168. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55169. {
  55170. side: {
  55171. height: math.unit(6, "meters"),
  55172. name: "Side",
  55173. image: {
  55174. source: "./media/characters/plum/side.svg",
  55175. extra: 858/755,
  55176. bottom: 45/903
  55177. },
  55178. form: "taur",
  55179. default: true
  55180. },
  55181. back: {
  55182. height: math.unit(6.3, "meters"),
  55183. name: "Back",
  55184. image: {
  55185. source: "./media/characters/plum/back.svg",
  55186. extra: 887/813,
  55187. bottom: 32/919
  55188. },
  55189. form: "taur",
  55190. },
  55191. feral: {
  55192. height: math.unit(5.5, "meter"),
  55193. name: "Front",
  55194. image: {
  55195. source: "./media/characters/plum/feral.svg",
  55196. extra: 568/403,
  55197. bottom: 51/619
  55198. },
  55199. form: "feral",
  55200. default: true
  55201. },
  55202. head: {
  55203. height: math.unit(1.46, "meter"),
  55204. name: "Head",
  55205. image: {
  55206. source: "./media/characters/plum/head.svg"
  55207. },
  55208. form: "taur"
  55209. },
  55210. tailTop: {
  55211. height: math.unit(5.6, "meter"),
  55212. name: "Tail (Top)",
  55213. image: {
  55214. source: "./media/characters/plum/tail-top.svg"
  55215. },
  55216. form: "taur",
  55217. },
  55218. tailBottom: {
  55219. height: math.unit(5.6, "meter"),
  55220. name: "Tail (Bottom)",
  55221. image: {
  55222. source: "./media/characters/plum/tail-bottom.svg"
  55223. },
  55224. form: "taur",
  55225. },
  55226. feralHead: {
  55227. height: math.unit(2.56549521, "meter"),
  55228. name: "Head",
  55229. image: {
  55230. source: "./media/characters/plum/head.svg"
  55231. },
  55232. form: "feral"
  55233. },
  55234. feralTailTop: {
  55235. height: math.unit(5.44728435, "meter"),
  55236. name: "Tail (Top)",
  55237. image: {
  55238. source: "./media/characters/plum/tail-top.svg"
  55239. },
  55240. form: "feral",
  55241. },
  55242. feralTailBottom: {
  55243. height: math.unit(5.44728435, "meter"),
  55244. name: "Tail (Bottom)",
  55245. image: {
  55246. source: "./media/characters/plum/tail-bottom.svg"
  55247. },
  55248. form: "feral",
  55249. },
  55250. },
  55251. [
  55252. {
  55253. name: "Normal",
  55254. height: math.unit(6, "meters"),
  55255. default: true,
  55256. form: "taur"
  55257. },
  55258. {
  55259. name: "Normal",
  55260. height: math.unit(5.5, "meters"),
  55261. default: true,
  55262. form: "feral"
  55263. },
  55264. ],
  55265. {
  55266. "taur": {
  55267. name: "Taur",
  55268. default: true
  55269. },
  55270. "feral": {
  55271. name: "Feral",
  55272. },
  55273. }
  55274. ))
  55275. characterMakers.push(() => makeCharacter(
  55276. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55277. {
  55278. front: {
  55279. height: math.unit(6, "feet"),
  55280. weight: math.unit(115, "lb"),
  55281. name: "Front",
  55282. image: {
  55283. source: "./media/characters/celeste-kitsune/front.svg",
  55284. extra: 393/366,
  55285. bottom: 7/400
  55286. }
  55287. },
  55288. side: {
  55289. height: math.unit(6, "feet"),
  55290. weight: math.unit(115, "lb"),
  55291. name: "Side",
  55292. image: {
  55293. source: "./media/characters/celeste-kitsune/side.svg",
  55294. extra: 818/765,
  55295. bottom: 40/858
  55296. }
  55297. },
  55298. },
  55299. [
  55300. {
  55301. name: "Megamacro",
  55302. height: math.unit(1500, "miles"),
  55303. default: true
  55304. },
  55305. ]
  55306. ))
  55307. characterMakers.push(() => makeCharacter(
  55308. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55309. {
  55310. front: {
  55311. height: math.unit(8, "meters"),
  55312. name: "Front",
  55313. image: {
  55314. source: "./media/characters/io/front.svg",
  55315. extra: 865/722,
  55316. bottom: 58/923
  55317. }
  55318. },
  55319. back: {
  55320. height: math.unit(8, "meters"),
  55321. name: "Back",
  55322. image: {
  55323. source: "./media/characters/io/back.svg",
  55324. extra: 920/776,
  55325. bottom: 42/962
  55326. }
  55327. },
  55328. head: {
  55329. height: math.unit(5.09, "meters"),
  55330. name: "Head",
  55331. image: {
  55332. source: "./media/characters/io/head.svg"
  55333. }
  55334. },
  55335. hand: {
  55336. height: math.unit(1.6, "meters"),
  55337. name: "Hand",
  55338. image: {
  55339. source: "./media/characters/io/hand.svg"
  55340. }
  55341. },
  55342. foot: {
  55343. height: math.unit(2.4, "meters"),
  55344. name: "Foot",
  55345. image: {
  55346. source: "./media/characters/io/foot.svg"
  55347. }
  55348. },
  55349. },
  55350. [
  55351. {
  55352. name: "Normal",
  55353. height: math.unit(8, "meters"),
  55354. default: true
  55355. },
  55356. ]
  55357. ))
  55358. characterMakers.push(() => makeCharacter(
  55359. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55360. {
  55361. side: {
  55362. height: math.unit(6 + 3/12, "feet"),
  55363. weight: math.unit(225, "lb"),
  55364. name: "Side",
  55365. image: {
  55366. source: "./media/characters/silas/side.svg",
  55367. extra: 703/653,
  55368. bottom: 23/726
  55369. },
  55370. extraAttributes: {
  55371. "pawLength": {
  55372. name: "Paw Length",
  55373. power: 1,
  55374. type: "length",
  55375. base: math.unit(12, "inches")
  55376. },
  55377. "pawWidth": {
  55378. name: "Paw Width",
  55379. power: 1,
  55380. type: "length",
  55381. base: math.unit(4.5, "inches")
  55382. },
  55383. "pawArea": {
  55384. name: "Paw Area",
  55385. power: 2,
  55386. type: "area",
  55387. base: math.unit(12 * 4.5, "inches^2")
  55388. },
  55389. }
  55390. },
  55391. },
  55392. [
  55393. {
  55394. name: "Normal",
  55395. height: math.unit(6 + 3/12, "feet"),
  55396. default: true
  55397. },
  55398. ]
  55399. ))
  55400. characterMakers.push(() => makeCharacter(
  55401. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55402. {
  55403. back: {
  55404. height: math.unit(1.6, "meters"),
  55405. weight: math.unit(150, "lb"),
  55406. name: "Back",
  55407. image: {
  55408. source: "./media/characters/zari/back.svg",
  55409. extra: 424/411,
  55410. bottom: 32/456
  55411. },
  55412. extraAttributes: {
  55413. "bladderCapacity": {
  55414. name: "Bladder Size",
  55415. power: 3,
  55416. type: "volume",
  55417. base: math.unit(500, "mL")
  55418. },
  55419. "bladderFlow": {
  55420. name: "Flow Rate",
  55421. power: 3,
  55422. type: "volume",
  55423. base: math.unit(25, "mL")
  55424. },
  55425. }
  55426. },
  55427. },
  55428. [
  55429. {
  55430. name: "Normal",
  55431. height: math.unit(1.6, "meters"),
  55432. default: true
  55433. },
  55434. ]
  55435. ))
  55436. characterMakers.push(() => makeCharacter(
  55437. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55438. {
  55439. front: {
  55440. height: math.unit(25, "feet"),
  55441. weight: math.unit(5, "tons"),
  55442. name: "Front",
  55443. image: {
  55444. source: "./media/characters/charlie-human/front.svg",
  55445. extra: 1870/1740,
  55446. bottom: 102/1972
  55447. },
  55448. extraAttributes: {
  55449. "dickLength": {
  55450. name: "Dick Length",
  55451. power: 1,
  55452. type: "length",
  55453. base: math.unit(9, "feet")
  55454. },
  55455. }
  55456. },
  55457. back: {
  55458. height: math.unit(25, "feet"),
  55459. weight: math.unit(5, "tons"),
  55460. name: "Back",
  55461. image: {
  55462. source: "./media/characters/charlie-human/back.svg",
  55463. extra: 1858/1733,
  55464. bottom: 105/1963
  55465. },
  55466. extraAttributes: {
  55467. "dickLength": {
  55468. name: "Dick Length",
  55469. power: 1,
  55470. type: "length",
  55471. base: math.unit(9, "feet")
  55472. },
  55473. }
  55474. },
  55475. },
  55476. [
  55477. {
  55478. name: "\"Normal\"",
  55479. height: math.unit(6 + 4/12, "feet")
  55480. },
  55481. {
  55482. name: "Big",
  55483. height: math.unit(25, "feet"),
  55484. default: true
  55485. },
  55486. ]
  55487. ))
  55488. characterMakers.push(() => makeCharacter(
  55489. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55490. {
  55491. front: {
  55492. height: math.unit(6 + 4/12, "feet"),
  55493. weight: math.unit(320, "lb"),
  55494. name: "Front",
  55495. image: {
  55496. source: "./media/characters/ookitsu/front.svg",
  55497. extra: 1160/976,
  55498. bottom: 38/1198
  55499. }
  55500. },
  55501. frontNsfw: {
  55502. height: math.unit(6 + 4/12, "feet"),
  55503. weight: math.unit(320, "lb"),
  55504. name: "Front (NSFW)",
  55505. image: {
  55506. source: "./media/characters/ookitsu/front-nsfw.svg",
  55507. extra: 1160/976,
  55508. bottom: 38/1198
  55509. }
  55510. },
  55511. back: {
  55512. height: math.unit(6 + 4/12, "feet"),
  55513. weight: math.unit(320, "lb"),
  55514. name: "Back",
  55515. image: {
  55516. source: "./media/characters/ookitsu/back.svg",
  55517. extra: 1030/975,
  55518. bottom: 70/1100
  55519. }
  55520. },
  55521. head: {
  55522. height: math.unit(1.79, "feet"),
  55523. name: "Head",
  55524. image: {
  55525. source: "./media/characters/ookitsu/head.svg"
  55526. }
  55527. },
  55528. hand: {
  55529. height: math.unit(0.92, "feet"),
  55530. name: "Hand",
  55531. image: {
  55532. source: "./media/characters/ookitsu/hand.svg"
  55533. }
  55534. },
  55535. tails: {
  55536. height: math.unit(3.3, "feet"),
  55537. name: "Tails",
  55538. image: {
  55539. source: "./media/characters/ookitsu/tails.svg"
  55540. }
  55541. },
  55542. dick: {
  55543. height: math.unit(1.10833, "feet"),
  55544. name: "Dick",
  55545. image: {
  55546. source: "./media/characters/ookitsu/dick.svg"
  55547. }
  55548. },
  55549. },
  55550. [
  55551. {
  55552. name: "Normal",
  55553. height: math.unit(6 + 4/12, "feet"),
  55554. default: true
  55555. },
  55556. {
  55557. name: "Macro",
  55558. height: math.unit(30, "feet")
  55559. },
  55560. ]
  55561. ))
  55562. characterMakers.push(() => makeCharacter(
  55563. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55564. {
  55565. anthroFront: {
  55566. height: math.unit(6, "feet"),
  55567. weight: math.unit(250, "lb"),
  55568. name: "Front",
  55569. image: {
  55570. source: "./media/characters/jhusky/anthro-front.svg",
  55571. extra: 474/439,
  55572. bottom: 7/481
  55573. },
  55574. form: "anthro",
  55575. default: true
  55576. },
  55577. taurSideSfw: {
  55578. height: math.unit(6 + 4/12, "feet"),
  55579. weight: math.unit(500, "lb"),
  55580. name: "Side (SFW)",
  55581. image: {
  55582. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55583. extra: 1741/1629,
  55584. bottom: 196/1937
  55585. },
  55586. form: "taur",
  55587. default: true
  55588. },
  55589. taurSideNsfw: {
  55590. height: math.unit(6 + 4/12, "feet"),
  55591. weight: math.unit(500, "lb"),
  55592. name: "Taur (NSFW)",
  55593. image: {
  55594. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55595. extra: 1741/1629,
  55596. bottom: 196/1937
  55597. },
  55598. form: "taur",
  55599. },
  55600. },
  55601. [
  55602. {
  55603. name: "Huge",
  55604. height: math.unit(500, "feet"),
  55605. form: "anthro"
  55606. },
  55607. {
  55608. name: "Macro",
  55609. height: math.unit(1000, "feet"),
  55610. default: true,
  55611. form: "anthro"
  55612. },
  55613. {
  55614. name: "Megamacro",
  55615. height: math.unit(10000, "feet"),
  55616. form: "anthro"
  55617. },
  55618. {
  55619. name: "Huge",
  55620. height: math.unit(528, "feet"),
  55621. form: "taur"
  55622. },
  55623. {
  55624. name: "Macro",
  55625. height: math.unit(1056, "feet"),
  55626. default: true,
  55627. form: "taur"
  55628. },
  55629. {
  55630. name: "Megamacro",
  55631. height: math.unit(10556, "feet"),
  55632. form: "taur"
  55633. },
  55634. ],
  55635. {
  55636. "anthro": {
  55637. name: "Anthro",
  55638. default: true
  55639. },
  55640. "taur": {
  55641. name: "Taur",
  55642. },
  55643. }
  55644. ))
  55645. characterMakers.push(() => makeCharacter(
  55646. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55647. {
  55648. front: {
  55649. height: math.unit(8, "feet"),
  55650. weight: math.unit(500, "lb"),
  55651. name: "Front",
  55652. image: {
  55653. source: "./media/characters/armail/front.svg",
  55654. extra: 1753/1669,
  55655. bottom: 155/1908
  55656. }
  55657. },
  55658. back: {
  55659. height: math.unit(8, "feet"),
  55660. weight: math.unit(500, "lb"),
  55661. name: "Back",
  55662. image: {
  55663. source: "./media/characters/armail/back.svg",
  55664. extra: 1872/1803,
  55665. bottom: 63/1935
  55666. }
  55667. },
  55668. },
  55669. [
  55670. {
  55671. name: "Micro",
  55672. height: math.unit(0.25, "feet")
  55673. },
  55674. {
  55675. name: "Normal",
  55676. height: math.unit(8, "feet"),
  55677. default: true
  55678. },
  55679. {
  55680. name: "Mini-macro",
  55681. height: math.unit(30, "feet")
  55682. },
  55683. {
  55684. name: "Macro",
  55685. height: math.unit(400, "feet")
  55686. },
  55687. {
  55688. name: "Mega-macro",
  55689. height: math.unit(6000, "feet")
  55690. },
  55691. ]
  55692. ))
  55693. characterMakers.push(() => makeCharacter(
  55694. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55695. {
  55696. front: {
  55697. height: math.unit(6 + 7/12, "feet"),
  55698. weight: math.unit(210, "lb"),
  55699. name: "Front",
  55700. image: {
  55701. source: "./media/characters/wilfred-t-buxton/front.svg",
  55702. extra: 1068/882,
  55703. bottom: 28/1096
  55704. }
  55705. },
  55706. },
  55707. [
  55708. {
  55709. name: "Normal",
  55710. height: math.unit(6 + 7/12, "feet"),
  55711. default: true
  55712. },
  55713. ]
  55714. ))
  55715. characterMakers.push(() => makeCharacter(
  55716. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55717. {
  55718. front: {
  55719. height: math.unit(5 + 2/12, "feet"),
  55720. weight: math.unit(120, "lb"),
  55721. name: "Front",
  55722. image: {
  55723. source: "./media/characters/leighton-marrow/front.svg",
  55724. extra: 441/409,
  55725. bottom: 37/478
  55726. }
  55727. },
  55728. },
  55729. [
  55730. {
  55731. name: "Normal",
  55732. height: math.unit(5 + 2/12, "feet"),
  55733. default: true
  55734. },
  55735. ]
  55736. ))
  55737. characterMakers.push(() => makeCharacter(
  55738. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55739. {
  55740. front: {
  55741. height: math.unit(4, "meters"),
  55742. weight: math.unit(1200, "kg"),
  55743. name: "Front",
  55744. image: {
  55745. source: "./media/characters/licos/front.svg",
  55746. extra: 1727/1604,
  55747. bottom: 101/1828
  55748. },
  55749. form: "anthro",
  55750. default: true
  55751. },
  55752. taur_side: {
  55753. height: math.unit(20, "meters"),
  55754. weight: math.unit(1100000, "kg"),
  55755. name: "Side",
  55756. image: {
  55757. source: "./media/characters/licos/taur.svg",
  55758. extra: 1158/1091,
  55759. bottom: 80/1238
  55760. },
  55761. form: "taur",
  55762. default: true
  55763. },
  55764. },
  55765. [
  55766. {
  55767. name: "Normal",
  55768. height: math.unit(4, "meters"),
  55769. default: true,
  55770. form: "anthro"
  55771. },
  55772. {
  55773. name: "Normal",
  55774. height: math.unit(20, "meters"),
  55775. default: true,
  55776. form: "taur"
  55777. },
  55778. ],
  55779. {
  55780. "anthro": {
  55781. name: "Anthro",
  55782. default: true
  55783. },
  55784. "taur": {
  55785. name: "Taur",
  55786. },
  55787. }
  55788. ))
  55789. characterMakers.push(() => makeCharacter(
  55790. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55791. {
  55792. front: {
  55793. height: math.unit(10 + 3/12, "feet"),
  55794. name: "Front",
  55795. image: {
  55796. source: "./media/characters/theo-monkey/front.svg",
  55797. extra: 1735/1658,
  55798. bottom: 73/1808
  55799. }
  55800. },
  55801. back: {
  55802. height: math.unit(10 + 3/12, "feet"),
  55803. name: "Back",
  55804. image: {
  55805. source: "./media/characters/theo-monkey/back.svg",
  55806. extra: 1742/1664,
  55807. bottom: 33/1775
  55808. }
  55809. },
  55810. head: {
  55811. height: math.unit(2.29, "feet"),
  55812. name: "Head",
  55813. image: {
  55814. source: "./media/characters/theo-monkey/head.svg"
  55815. }
  55816. },
  55817. handPalm: {
  55818. height: math.unit(1.73, "feet"),
  55819. name: "Hand (Palm)",
  55820. image: {
  55821. source: "./media/characters/theo-monkey/hand-palm.svg"
  55822. }
  55823. },
  55824. handBack: {
  55825. height: math.unit(1.63, "feet"),
  55826. name: "Hand (Back)",
  55827. image: {
  55828. source: "./media/characters/theo-monkey/hand-back.svg"
  55829. }
  55830. },
  55831. footSole: {
  55832. height: math.unit(2.15, "feet"),
  55833. name: "Foot (Sole)",
  55834. image: {
  55835. source: "./media/characters/theo-monkey/foot-sole.svg"
  55836. }
  55837. },
  55838. footSide: {
  55839. height: math.unit(1.6, "feet"),
  55840. name: "Foot (Side)",
  55841. image: {
  55842. source: "./media/characters/theo-monkey/foot-side.svg"
  55843. }
  55844. },
  55845. },
  55846. [
  55847. {
  55848. name: "Normal",
  55849. height: math.unit(10 + 3/12, "feet"),
  55850. default: true
  55851. },
  55852. ]
  55853. ))
  55854. characterMakers.push(() => makeCharacter(
  55855. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55856. {
  55857. front: {
  55858. height: math.unit(11, "feet"),
  55859. weight: math.unit(3000, "lb"),
  55860. preyCapacity: math.unit(10, "people"),
  55861. name: "Front",
  55862. image: {
  55863. source: "./media/characters/brook/front.svg",
  55864. extra: 909/835,
  55865. bottom: 108/1017
  55866. }
  55867. },
  55868. back: {
  55869. height: math.unit(11, "feet"),
  55870. weight: math.unit(3000, "lb"),
  55871. preyCapacity: math.unit(10, "people"),
  55872. name: "Back",
  55873. image: {
  55874. source: "./media/characters/brook/back.svg",
  55875. extra: 976/916,
  55876. bottom: 34/1010
  55877. }
  55878. },
  55879. backAlt: {
  55880. height: math.unit(11, "feet"),
  55881. weight: math.unit(3000, "lb"),
  55882. preyCapacity: math.unit(10, "people"),
  55883. name: "Back (Alt)",
  55884. image: {
  55885. source: "./media/characters/brook/back-alt.svg",
  55886. extra: 1283/1213,
  55887. bottom: 35/1318
  55888. }
  55889. },
  55890. bust: {
  55891. height: math.unit(9.0859030837, "feet"),
  55892. weight: math.unit(3000, "lb"),
  55893. preyCapacity: math.unit(10, "people"),
  55894. name: "Bust",
  55895. image: {
  55896. source: "./media/characters/brook/bust.svg",
  55897. extra: 2043/1923,
  55898. bottom: 0/2043
  55899. }
  55900. },
  55901. },
  55902. [
  55903. {
  55904. name: "Small",
  55905. height: math.unit(11, "feet"),
  55906. default: true
  55907. },
  55908. {
  55909. name: "Towering",
  55910. height: math.unit(5, "km")
  55911. },
  55912. {
  55913. name: "Enormous",
  55914. height: math.unit(25, "earths")
  55915. },
  55916. ]
  55917. ))
  55918. characterMakers.push(() => makeCharacter(
  55919. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55920. {
  55921. front: {
  55922. height: math.unit(4, "feet"),
  55923. weight: math.unit(150, "lb"),
  55924. name: "Front",
  55925. image: {
  55926. source: "./media/characters/squishi/front.svg",
  55927. extra: 1428/1271,
  55928. bottom: 30/1458
  55929. },
  55930. extraAttributes: {
  55931. "pawSize": {
  55932. name: "Paw Size",
  55933. power: 1,
  55934. type: "length",
  55935. base: math.unit(14, "ShoeSizeMensUS"),
  55936. defaultUnit: "ShoeSizeMensUS"
  55937. },
  55938. }
  55939. },
  55940. side: {
  55941. height: math.unit(4, "feet"),
  55942. weight: math.unit(150, "lb"),
  55943. name: "Side",
  55944. image: {
  55945. source: "./media/characters/squishi/side.svg",
  55946. extra: 1428/1271,
  55947. bottom: 30/1458
  55948. },
  55949. extraAttributes: {
  55950. "pawSize": {
  55951. name: "Paw Size",
  55952. power: 1,
  55953. type: "length",
  55954. base: math.unit(14, "ShoeSizeMensUS"),
  55955. defaultUnit: "ShoeSizeMensUS"
  55956. },
  55957. }
  55958. },
  55959. back: {
  55960. height: math.unit(4, "feet"),
  55961. weight: math.unit(150, "lb"),
  55962. name: "Back",
  55963. image: {
  55964. source: "./media/characters/squishi/back.svg",
  55965. extra: 1428/1271,
  55966. bottom: 30/1458
  55967. },
  55968. extraAttributes: {
  55969. "pawSize": {
  55970. name: "Paw Size",
  55971. power: 1,
  55972. type: "length",
  55973. base: math.unit(14, "ShoeSizeMensUS"),
  55974. defaultUnit: "ShoeSizeMensUS"
  55975. },
  55976. }
  55977. },
  55978. },
  55979. [
  55980. {
  55981. name: "Normal",
  55982. height: math.unit(4, "feet"),
  55983. default: true
  55984. },
  55985. ]
  55986. ))
  55987. characterMakers.push(() => makeCharacter(
  55988. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55989. {
  55990. front: {
  55991. height: math.unit(7 + 8/12, "feet"),
  55992. weight: math.unit(333, "lb"),
  55993. name: "Front",
  55994. image: {
  55995. source: "./media/characters/vincent-vasroc/front.svg",
  55996. extra: 1962/1860,
  55997. bottom: 41/2003
  55998. }
  55999. },
  56000. back: {
  56001. height: math.unit(7 + 8/12, "feet"),
  56002. weight: math.unit(333, "lb"),
  56003. name: "Back",
  56004. image: {
  56005. source: "./media/characters/vincent-vasroc/back.svg",
  56006. extra: 1952/1815,
  56007. bottom: 33/1985
  56008. }
  56009. },
  56010. paw: {
  56011. height: math.unit(1.24, "feet"),
  56012. name: "Paw",
  56013. image: {
  56014. source: "./media/characters/vincent-vasroc/paw.svg"
  56015. }
  56016. },
  56017. ear: {
  56018. height: math.unit(0.75, "feet"),
  56019. name: "Ear",
  56020. image: {
  56021. source: "./media/characters/vincent-vasroc/ear.svg"
  56022. }
  56023. },
  56024. },
  56025. [
  56026. {
  56027. name: "Nano",
  56028. height: math.unit(92, "micrometers")
  56029. },
  56030. {
  56031. name: "Normal",
  56032. height: math.unit(7 + 8/12, "feet"),
  56033. default: true
  56034. },
  56035. ]
  56036. ))
  56037. characterMakers.push(() => makeCharacter(
  56038. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56039. {
  56040. frontNsfw: {
  56041. height: math.unit(40, "feet"),
  56042. weight: math.unit(58, "tons"),
  56043. name: "Front (NSFW)",
  56044. image: {
  56045. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56046. extra: 1265/965,
  56047. bottom: 155/1420
  56048. }
  56049. },
  56050. frontSfw: {
  56051. height: math.unit(40, "feet"),
  56052. weight: math.unit(58, "tons"),
  56053. name: "Front (SFW)",
  56054. image: {
  56055. source: "./media/characters/ru-kahn/front-sfw.svg",
  56056. extra: 1265/965,
  56057. bottom: 80/1345
  56058. }
  56059. },
  56060. },
  56061. [
  56062. {
  56063. name: "Small",
  56064. height: math.unit(4, "feet")
  56065. },
  56066. {
  56067. name: "Normal",
  56068. height: math.unit(40, "feet"),
  56069. default: true
  56070. },
  56071. {
  56072. name: "Macro",
  56073. height: math.unit(400, "feet")
  56074. },
  56075. ]
  56076. ))
  56077. characterMakers.push(() => makeCharacter(
  56078. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56079. {
  56080. frontNude: {
  56081. height: math.unit(6 + 5/12, "feet"),
  56082. name: "Front (Nude)",
  56083. image: {
  56084. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56085. extra: 1369/1366,
  56086. bottom: 68/1437
  56087. }
  56088. },
  56089. frontDressed: {
  56090. height: math.unit(6 + 5/12, "feet"),
  56091. name: "Front (Dressed)",
  56092. image: {
  56093. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56094. extra: 1369/1366,
  56095. bottom: 68/1437
  56096. }
  56097. },
  56098. },
  56099. [
  56100. {
  56101. name: "Normal",
  56102. height: math.unit(6 + 5/12, "feet"),
  56103. default: true
  56104. },
  56105. {
  56106. name: "Maximum",
  56107. height: math.unit(1930, "feet")
  56108. },
  56109. ]
  56110. ))
  56111. characterMakers.push(() => makeCharacter(
  56112. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56113. {
  56114. front: {
  56115. height: math.unit(5 + 6/12, "feet"),
  56116. name: "Front",
  56117. image: {
  56118. source: "./media/characters/kaja/front.svg",
  56119. extra: 1874/1514,
  56120. bottom: 117/1991
  56121. }
  56122. },
  56123. },
  56124. [
  56125. {
  56126. name: "Normal",
  56127. height: math.unit(5 + 6/12, "feet"),
  56128. default: true
  56129. },
  56130. ]
  56131. ))
  56132. characterMakers.push(() => makeCharacter(
  56133. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56134. {
  56135. front: {
  56136. height: math.unit(5 + 9/12, "feet"),
  56137. weight: math.unit(200, "lb"),
  56138. name: "Front",
  56139. image: {
  56140. source: "./media/characters/mark-smith/front.svg",
  56141. extra: 1004/943,
  56142. bottom: 58/1062
  56143. }
  56144. },
  56145. back: {
  56146. height: math.unit(5 + 9/12, "feet"),
  56147. weight: math.unit(200, "lb"),
  56148. name: "Back",
  56149. image: {
  56150. source: "./media/characters/mark-smith/back.svg",
  56151. extra: 1023/953,
  56152. bottom: 24/1047
  56153. }
  56154. },
  56155. head: {
  56156. height: math.unit(1.82, "feet"),
  56157. name: "Head",
  56158. image: {
  56159. source: "./media/characters/mark-smith/head.svg"
  56160. }
  56161. },
  56162. hand: {
  56163. height: math.unit(1.4, "feet"),
  56164. name: "Hand",
  56165. image: {
  56166. source: "./media/characters/mark-smith/hand.svg"
  56167. }
  56168. },
  56169. paw: {
  56170. height: math.unit(1.69, "feet"),
  56171. name: "Paw",
  56172. image: {
  56173. source: "./media/characters/mark-smith/paw.svg"
  56174. }
  56175. },
  56176. },
  56177. [
  56178. {
  56179. name: "Micro",
  56180. height: math.unit(0.25, "inches")
  56181. },
  56182. {
  56183. name: "Normal",
  56184. height: math.unit(5 + 9/12, "feet"),
  56185. default: true
  56186. },
  56187. {
  56188. name: "Macro",
  56189. height: math.unit(500, "feet")
  56190. },
  56191. ]
  56192. ))
  56193. characterMakers.push(() => makeCharacter(
  56194. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56195. {
  56196. frontNude: {
  56197. height: math.unit(6, "feet"),
  56198. name: "Front (Nude)",
  56199. image: {
  56200. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56201. extra: 1384/1321,
  56202. bottom: 57/1441
  56203. }
  56204. },
  56205. frontDressed: {
  56206. height: math.unit(6, "feet"),
  56207. name: "Front (Dressed)",
  56208. image: {
  56209. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56210. extra: 1384/1321,
  56211. bottom: 57/1441
  56212. }
  56213. },
  56214. },
  56215. [
  56216. {
  56217. name: "Normal",
  56218. height: math.unit(6, "feet"),
  56219. default: true
  56220. },
  56221. {
  56222. name: "Maximum",
  56223. height: math.unit(1776, "feet")
  56224. },
  56225. ]
  56226. ))
  56227. characterMakers.push(() => makeCharacter(
  56228. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56229. {
  56230. front: {
  56231. height: math.unit(2 + 4/12, "feet"),
  56232. weight: math.unit(350, "lb"),
  56233. name: "Front",
  56234. image: {
  56235. source: "./media/characters/devos/front.svg",
  56236. extra: 958/852,
  56237. bottom: 143/1101
  56238. }
  56239. },
  56240. },
  56241. [
  56242. {
  56243. name: "Base",
  56244. height: math.unit(2 + 4/12, "feet"),
  56245. default: true
  56246. },
  56247. ]
  56248. ))
  56249. characterMakers.push(() => makeCharacter(
  56250. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56251. {
  56252. front: {
  56253. height: math.unit(9 + 2/12, "feet"),
  56254. name: "Front",
  56255. image: {
  56256. source: "./media/characters/hiveheart/front.svg",
  56257. extra: 394/364,
  56258. bottom: 65/459
  56259. }
  56260. },
  56261. back: {
  56262. height: math.unit(9 + 2/12, "feet"),
  56263. name: "Back",
  56264. image: {
  56265. source: "./media/characters/hiveheart/back.svg",
  56266. extra: 374/357,
  56267. bottom: 63/437
  56268. }
  56269. },
  56270. },
  56271. [
  56272. {
  56273. name: "Base",
  56274. height: math.unit(9 + 2/12, "feet"),
  56275. default: true
  56276. },
  56277. ]
  56278. ))
  56279. characterMakers.push(() => makeCharacter(
  56280. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56281. {
  56282. front: {
  56283. height: math.unit(2.5, "inches"),
  56284. weight: math.unit(0.6, "oz"),
  56285. name: "Front",
  56286. image: {
  56287. source: "./media/characters/bryn/front.svg",
  56288. extra: 1480/1205,
  56289. bottom: 27/1507
  56290. }
  56291. },
  56292. back: {
  56293. height: math.unit(2.5, "inches"),
  56294. weight: math.unit(0.6, "oz"),
  56295. name: "Back",
  56296. image: {
  56297. source: "./media/characters/bryn/back.svg",
  56298. extra: 1475/1201,
  56299. bottom: 39/1514
  56300. }
  56301. },
  56302. foot: {
  56303. height: math.unit(0.4, "inches"),
  56304. name: "Foot",
  56305. image: {
  56306. source: "./media/characters/bryn/foot.svg"
  56307. }
  56308. },
  56309. },
  56310. [
  56311. {
  56312. name: "Normal",
  56313. height: math.unit(2.5, "inches"),
  56314. default: true
  56315. },
  56316. ]
  56317. ))
  56318. characterMakers.push(() => makeCharacter(
  56319. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56320. {
  56321. side: {
  56322. height: math.unit(7, "feet"),
  56323. weight: math.unit(657, "kg"),
  56324. name: "Side",
  56325. image: {
  56326. source: "./media/characters/delta/side.svg",
  56327. extra: 781/212,
  56328. bottom: 7/788
  56329. },
  56330. extraAttributes: {
  56331. "wingspan": {
  56332. name: "Wingspan",
  56333. power: 1,
  56334. type: "length",
  56335. base: math.unit(48, "feet")
  56336. },
  56337. "length": {
  56338. name: "Length",
  56339. power: 1,
  56340. type: "length",
  56341. base: math.unit(21, "feet")
  56342. },
  56343. "pawSize": {
  56344. name: "Paw Size",
  56345. power: 2,
  56346. type: "area",
  56347. base: math.unit(1.5*1.4, "feet^2")
  56348. },
  56349. }
  56350. },
  56351. },
  56352. [
  56353. {
  56354. name: "Normal",
  56355. height: math.unit(6, "feet"),
  56356. default: true
  56357. },
  56358. ]
  56359. ))
  56360. characterMakers.push(() => makeCharacter(
  56361. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56362. {
  56363. front: {
  56364. height: math.unit(6, "feet"),
  56365. name: "Front",
  56366. image: {
  56367. source: "./media/characters/pyrow/front.svg",
  56368. extra: 513/486,
  56369. bottom: 14/527
  56370. }
  56371. },
  56372. frontWing: {
  56373. height: math.unit(6, "feet"),
  56374. name: "Front (Wing)",
  56375. image: {
  56376. source: "./media/characters/pyrow/front-wing.svg",
  56377. extra: 539/383,
  56378. bottom: 20/559
  56379. }
  56380. },
  56381. back: {
  56382. height: math.unit(6, "feet"),
  56383. name: "Back",
  56384. image: {
  56385. source: "./media/characters/pyrow/back.svg",
  56386. extra: 500/473,
  56387. bottom: 9/509
  56388. }
  56389. },
  56390. },
  56391. [
  56392. {
  56393. name: "Normal",
  56394. height: math.unit(6, "feet"),
  56395. default: true
  56396. },
  56397. ]
  56398. ))
  56399. characterMakers.push(() => makeCharacter(
  56400. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56401. {
  56402. front: {
  56403. height: math.unit(5, "meters"),
  56404. weight: math.unit(3, "tonnes"),
  56405. name: "Front",
  56406. image: {
  56407. source: "./media/characters/velikan/front.svg",
  56408. extra: 867/744,
  56409. bottom: 71/938
  56410. },
  56411. extraAttributes: {
  56412. "shoeSize": {
  56413. name: "Shoe Size",
  56414. power: 1,
  56415. type: "length",
  56416. base: math.unit(135, "ShoeSizeUK"),
  56417. defaultUnit: "ShoeSizeUK"
  56418. },
  56419. }
  56420. },
  56421. },
  56422. [
  56423. {
  56424. name: "Normal",
  56425. height: math.unit(5, "meters"),
  56426. default: true
  56427. },
  56428. {
  56429. name: "Macro",
  56430. height: math.unit(1, "km")
  56431. },
  56432. {
  56433. name: "Mega Macro",
  56434. height: math.unit(100, "km")
  56435. },
  56436. {
  56437. name: "Giga Macro",
  56438. height: math.unit(2, "megameters")
  56439. },
  56440. {
  56441. name: "Planetary",
  56442. height: math.unit(22, "megameters")
  56443. },
  56444. {
  56445. name: "Solar",
  56446. height: math.unit(8, "gigameters")
  56447. },
  56448. {
  56449. name: "Cosmic",
  56450. height: math.unit(10, "zettameters")
  56451. },
  56452. {
  56453. name: "Omni",
  56454. height: math.unit(9e260, "multiverses")
  56455. },
  56456. ]
  56457. ))
  56458. characterMakers.push(() => makeCharacter(
  56459. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56460. {
  56461. front: {
  56462. height: math.unit(4 + 3/12, "feet"),
  56463. weight: math.unit(90, "lb"),
  56464. name: "Front",
  56465. image: {
  56466. source: "./media/characters/sabiki/front.svg",
  56467. extra: 1662/1423,
  56468. bottom: 65/1727
  56469. }
  56470. },
  56471. },
  56472. [
  56473. {
  56474. name: "Normal",
  56475. height: math.unit(4 + 3/12, "feet"),
  56476. default: true
  56477. },
  56478. ]
  56479. ))
  56480. characterMakers.push(() => makeCharacter(
  56481. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56482. {
  56483. frontSfw: {
  56484. height: math.unit(2, "mm"),
  56485. name: "Front (SFW)",
  56486. image: {
  56487. source: "./media/characters/carmel/front-sfw.svg",
  56488. extra: 1131/1006,
  56489. bottom: 66/1197
  56490. }
  56491. },
  56492. frontNsfw: {
  56493. height: math.unit(2, "mm"),
  56494. name: "Front (NSFW)",
  56495. image: {
  56496. source: "./media/characters/carmel/front-nsfw.svg",
  56497. extra: 1131/1006,
  56498. bottom: 66/1197
  56499. }
  56500. },
  56501. foot: {
  56502. height: math.unit(0.3, "mm"),
  56503. name: "Foot",
  56504. image: {
  56505. source: "./media/characters/carmel/foot.svg"
  56506. }
  56507. },
  56508. tongue: {
  56509. height: math.unit(0.71, "mm"),
  56510. name: "Tongue",
  56511. image: {
  56512. source: "./media/characters/carmel/tongue.svg"
  56513. }
  56514. },
  56515. dick: {
  56516. height: math.unit(0.085, "mm"),
  56517. name: "Dick",
  56518. image: {
  56519. source: "./media/characters/carmel/dick.svg"
  56520. }
  56521. },
  56522. },
  56523. [
  56524. {
  56525. name: "Micro",
  56526. height: math.unit(2, "mm"),
  56527. default: true
  56528. },
  56529. {
  56530. name: "Normal",
  56531. height: math.unit(4 + 8/12, "feet")
  56532. },
  56533. {
  56534. name: "Mega Macro",
  56535. height: math.unit(250, "feet")
  56536. },
  56537. {
  56538. name: "BIGGER",
  56539. height: math.unit(1000, "feet")
  56540. },
  56541. {
  56542. name: "BIGGEST",
  56543. height: math.unit(2, "miles")
  56544. },
  56545. ]
  56546. ))
  56547. characterMakers.push(() => makeCharacter(
  56548. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56549. {
  56550. front: {
  56551. height: math.unit(6.5, "feet"),
  56552. weight: math.unit(198, "lb"),
  56553. name: "Front",
  56554. image: {
  56555. source: "./media/characters/tamani/anthro.svg",
  56556. extra: 930/890,
  56557. bottom: 34/964
  56558. },
  56559. form: "anthro",
  56560. default: true
  56561. },
  56562. side: {
  56563. height: math.unit(6, "feet"),
  56564. weight: math.unit(198*2, "lb"),
  56565. name: "Side",
  56566. image: {
  56567. source: "./media/characters/tamani/feral.svg",
  56568. extra: 559/519,
  56569. bottom: 43/602
  56570. },
  56571. form: "feral"
  56572. },
  56573. },
  56574. [
  56575. {
  56576. name: "Normal",
  56577. height: math.unit(6.5, "feet"),
  56578. default: true,
  56579. form: "anthro"
  56580. },
  56581. {
  56582. name: "Normal",
  56583. height: math.unit(6, "feet"),
  56584. default: true,
  56585. form: "feral"
  56586. },
  56587. ],
  56588. {
  56589. "anthro": {
  56590. name: "Anthro",
  56591. default: true
  56592. },
  56593. "feral": {
  56594. name: "Feral",
  56595. },
  56596. }
  56597. ))
  56598. characterMakers.push(() => makeCharacter(
  56599. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56600. {
  56601. front: {
  56602. height: math.unit(4 + 1/12, "feet"),
  56603. weight: math.unit(114, "lb"),
  56604. name: "Front",
  56605. image: {
  56606. source: "./media/characters/dex/front.svg",
  56607. extra: 787/680,
  56608. bottom: 18/805
  56609. }
  56610. },
  56611. side: {
  56612. height: math.unit(4 + 1/12, "feet"),
  56613. weight: math.unit(114, "lb"),
  56614. name: "Side",
  56615. image: {
  56616. source: "./media/characters/dex/side.svg",
  56617. extra: 785/680,
  56618. bottom: 12/797
  56619. }
  56620. },
  56621. back: {
  56622. height: math.unit(4 + 1/12, "feet"),
  56623. weight: math.unit(114, "lb"),
  56624. name: "Back",
  56625. image: {
  56626. source: "./media/characters/dex/back.svg",
  56627. extra: 785/681,
  56628. bottom: 17/802
  56629. }
  56630. },
  56631. loungewear: {
  56632. height: math.unit(4 + 1/12, "feet"),
  56633. weight: math.unit(114, "lb"),
  56634. name: "Loungewear",
  56635. image: {
  56636. source: "./media/characters/dex/loungewear.svg",
  56637. extra: 787/680,
  56638. bottom: 18/805
  56639. }
  56640. },
  56641. workout: {
  56642. height: math.unit(4 + 1/12, "feet"),
  56643. weight: math.unit(114, "lb"),
  56644. name: "Workout",
  56645. image: {
  56646. source: "./media/characters/dex/workout.svg",
  56647. extra: 787/680,
  56648. bottom: 18/805
  56649. }
  56650. },
  56651. schoolUniform: {
  56652. height: math.unit(4 + 1/12, "feet"),
  56653. weight: math.unit(114, "lb"),
  56654. name: "School-uniform",
  56655. image: {
  56656. source: "./media/characters/dex/school-uniform.svg",
  56657. extra: 787/680,
  56658. bottom: 18/805
  56659. }
  56660. },
  56661. maw: {
  56662. height: math.unit(0.55, "feet"),
  56663. name: "Maw",
  56664. image: {
  56665. source: "./media/characters/dex/maw.svg"
  56666. }
  56667. },
  56668. paw: {
  56669. height: math.unit(0.87, "feet"),
  56670. name: "Paw",
  56671. image: {
  56672. source: "./media/characters/dex/paw.svg"
  56673. }
  56674. },
  56675. bust: {
  56676. height: math.unit(1.67, "feet"),
  56677. name: "Bust",
  56678. image: {
  56679. source: "./media/characters/dex/bust.svg"
  56680. }
  56681. },
  56682. },
  56683. [
  56684. {
  56685. name: "Normal",
  56686. height: math.unit(4 + 1/12, "feet"),
  56687. default: true
  56688. },
  56689. ]
  56690. ))
  56691. characterMakers.push(() => makeCharacter(
  56692. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56693. {
  56694. front: {
  56695. height: math.unit(4 + 3/12, "feet"),
  56696. weight: math.unit(60, "lb"),
  56697. name: "Front",
  56698. image: {
  56699. source: "./media/characters/silke/front.svg",
  56700. extra: 1334/1122,
  56701. bottom: 21/1355
  56702. }
  56703. },
  56704. back: {
  56705. height: math.unit(4 + 3/12, "feet"),
  56706. weight: math.unit(60, "lb"),
  56707. name: "Back",
  56708. image: {
  56709. source: "./media/characters/silke/back.svg",
  56710. extra: 1328/1092,
  56711. bottom: 16/1344
  56712. }
  56713. },
  56714. dressed: {
  56715. height: math.unit(4 + 3/12, "feet"),
  56716. weight: math.unit(60, "lb"),
  56717. name: "Dressed",
  56718. image: {
  56719. source: "./media/characters/silke/dressed.svg",
  56720. extra: 1334/1122,
  56721. bottom: 43/1377
  56722. }
  56723. },
  56724. },
  56725. [
  56726. {
  56727. name: "Normal",
  56728. height: math.unit(4 + 3/12, "feet"),
  56729. default: true
  56730. },
  56731. ]
  56732. ))
  56733. characterMakers.push(() => makeCharacter(
  56734. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56735. {
  56736. front: {
  56737. height: math.unit(1.58, "meters"),
  56738. weight: math.unit(47, "kg"),
  56739. name: "Front",
  56740. image: {
  56741. source: "./media/characters/wireshark/front.svg",
  56742. extra: 883/838,
  56743. bottom: 66/949
  56744. }
  56745. },
  56746. },
  56747. [
  56748. {
  56749. name: "Normal",
  56750. height: math.unit(1.58, "meters"),
  56751. default: true
  56752. },
  56753. ]
  56754. ))
  56755. characterMakers.push(() => makeCharacter(
  56756. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56757. {
  56758. front: {
  56759. height: math.unit(6, "meters"),
  56760. weight: math.unit(15000, "kg"),
  56761. name: "Front",
  56762. image: {
  56763. source: "./media/characters/gallagher/front.svg",
  56764. extra: 532/493,
  56765. bottom: 0/532
  56766. }
  56767. },
  56768. },
  56769. [
  56770. {
  56771. name: "Normal",
  56772. height: math.unit(6, "meters"),
  56773. default: true
  56774. },
  56775. ]
  56776. ))
  56777. characterMakers.push(() => makeCharacter(
  56778. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56779. {
  56780. front: {
  56781. height: math.unit(2.4, "meters"),
  56782. weight: math.unit(270, "kg"),
  56783. name: "Front",
  56784. image: {
  56785. source: "./media/characters/alice/front.svg",
  56786. extra: 950/900,
  56787. bottom: 36/986
  56788. }
  56789. },
  56790. side: {
  56791. height: math.unit(2.4, "meters"),
  56792. weight: math.unit(270, "kg"),
  56793. name: "Side",
  56794. image: {
  56795. source: "./media/characters/alice/side.svg",
  56796. extra: 921/876,
  56797. bottom: 19/940
  56798. }
  56799. },
  56800. dressed: {
  56801. height: math.unit(2.4, "meters"),
  56802. weight: math.unit(270, "kg"),
  56803. name: "Dressed",
  56804. image: {
  56805. source: "./media/characters/alice/dressed.svg",
  56806. extra: 905/850,
  56807. bottom: 81/986
  56808. }
  56809. },
  56810. fishnet: {
  56811. height: math.unit(2.4, "meters"),
  56812. weight: math.unit(270, "kg"),
  56813. name: "Fishnet",
  56814. image: {
  56815. source: "./media/characters/alice/fishnet.svg",
  56816. extra: 905/850,
  56817. bottom: 81/986
  56818. }
  56819. },
  56820. },
  56821. [
  56822. {
  56823. name: "Normal",
  56824. height: math.unit(2.4, "meters"),
  56825. default: true
  56826. },
  56827. ]
  56828. ))
  56829. characterMakers.push(() => makeCharacter(
  56830. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56831. {
  56832. front: {
  56833. height: math.unit(175.25, "feet"),
  56834. name: "Front",
  56835. image: {
  56836. source: "./media/characters/fio/front.svg",
  56837. extra: 1883/1591,
  56838. bottom: 34/1917
  56839. }
  56840. },
  56841. },
  56842. [
  56843. {
  56844. name: "Normal",
  56845. height: math.unit(175.25, "cm"),
  56846. default: true
  56847. },
  56848. ]
  56849. ))
  56850. characterMakers.push(() => makeCharacter(
  56851. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56852. {
  56853. side: {
  56854. height: math.unit(6, "meters"),
  56855. weight: math.unit(3400, "kg"),
  56856. preyCapacity: math.unit(1700, "liters"),
  56857. name: "Side",
  56858. image: {
  56859. source: "./media/characters/hass/side.svg",
  56860. extra: 1058/997,
  56861. bottom: 177/1235
  56862. }
  56863. },
  56864. feeding: {
  56865. height: math.unit(6*0.63, "meters"),
  56866. weight: math.unit(3400, "kg"),
  56867. preyCapacity: math.unit(1700, "liters"),
  56868. name: "Feeding",
  56869. image: {
  56870. source: "./media/characters/hass/feeding.svg",
  56871. extra: 689/579,
  56872. bottom: 146/835
  56873. }
  56874. },
  56875. guts: {
  56876. height: math.unit(6, "meters"),
  56877. weight: math.unit(3400, "kg"),
  56878. name: "Guts",
  56879. image: {
  56880. source: "./media/characters/hass/guts.svg",
  56881. extra: 1223/1198,
  56882. bottom: 182/1405
  56883. }
  56884. },
  56885. dickFront: {
  56886. height: math.unit(1.4, "meters"),
  56887. name: "Dick (Front)",
  56888. image: {
  56889. source: "./media/characters/hass/dick-front.svg"
  56890. }
  56891. },
  56892. dickSide: {
  56893. height: math.unit(1.3, "meters"),
  56894. name: "Dick (Side)",
  56895. image: {
  56896. source: "./media/characters/hass/dick-side.svg"
  56897. }
  56898. },
  56899. dickBack: {
  56900. height: math.unit(1.4, "meters"),
  56901. name: "Dick (Back)",
  56902. image: {
  56903. source: "./media/characters/hass/dick-back.svg"
  56904. }
  56905. },
  56906. },
  56907. [
  56908. {
  56909. name: "Normal",
  56910. height: math.unit(6, "meters"),
  56911. default: true
  56912. },
  56913. ]
  56914. ))
  56915. characterMakers.push(() => makeCharacter(
  56916. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56917. {
  56918. front: {
  56919. height: math.unit(4, "feet"),
  56920. weight: math.unit(60, "lb"),
  56921. name: "Front",
  56922. image: {
  56923. source: "./media/characters/hickory-finnegan/front.svg",
  56924. extra: 444/411,
  56925. bottom: 10/454
  56926. }
  56927. },
  56928. side: {
  56929. height: math.unit(4, "feet"),
  56930. weight: math.unit(60, "lb"),
  56931. name: "Side",
  56932. image: {
  56933. source: "./media/characters/hickory-finnegan/side.svg",
  56934. extra: 444/411,
  56935. bottom: 10/454
  56936. }
  56937. },
  56938. back: {
  56939. height: math.unit(4, "feet"),
  56940. weight: math.unit(60, "lb"),
  56941. name: "Back",
  56942. image: {
  56943. source: "./media/characters/hickory-finnegan/back.svg",
  56944. extra: 444/411,
  56945. bottom: 10/454
  56946. }
  56947. },
  56948. },
  56949. [
  56950. {
  56951. name: "Normal",
  56952. height: math.unit(4, "feet"),
  56953. default: true
  56954. },
  56955. ]
  56956. ))
  56957. characterMakers.push(() => makeCharacter(
  56958. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56959. {
  56960. snivy_front: {
  56961. height: math.unit(2, "feet"),
  56962. weight: math.unit(17.9, "lb"),
  56963. name: "Front",
  56964. image: {
  56965. source: "./media/characters/robin-phox/snivy-front.svg",
  56966. extra: 569/504,
  56967. bottom: 33/602
  56968. },
  56969. form: "snivy",
  56970. default: true
  56971. },
  56972. snivy_frontNsfw: {
  56973. height: math.unit(2, "feet"),
  56974. weight: math.unit(17.9, "lb"),
  56975. name: "Front (NSFW)",
  56976. image: {
  56977. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56978. extra: 569/504,
  56979. bottom: 33/602
  56980. },
  56981. form: "snivy",
  56982. },
  56983. snivy_back: {
  56984. height: math.unit(2, "feet"),
  56985. weight: math.unit(17.9, "lb"),
  56986. name: "Back",
  56987. image: {
  56988. source: "./media/characters/robin-phox/snivy-back.svg",
  56989. extra: 577/508,
  56990. bottom: 21/598
  56991. },
  56992. form: "snivy",
  56993. },
  56994. snivy_foot: {
  56995. height: math.unit(0.68, "feet"),
  56996. name: "Foot",
  56997. image: {
  56998. source: "./media/characters/robin-phox/snivy-foot.svg"
  56999. },
  57000. form: "snivy",
  57001. },
  57002. snivy_sole: {
  57003. height: math.unit(0.68, "feet"),
  57004. name: "Sole",
  57005. image: {
  57006. source: "./media/characters/robin-phox/snivy-sole.svg"
  57007. },
  57008. form: "snivy",
  57009. },
  57010. yoshi_front: {
  57011. height: math.unit(6, "feet"),
  57012. weight: math.unit(150, "lb"),
  57013. name: "Front",
  57014. image: {
  57015. source: "./media/characters/robin-phox/yoshi-front.svg",
  57016. extra: 890/792,
  57017. bottom: 29/919
  57018. },
  57019. form: "yoshi",
  57020. default: true
  57021. },
  57022. yoshi_frontNsfw: {
  57023. height: math.unit(6, "feet"),
  57024. weight: math.unit(150, "lb"),
  57025. name: "Front (NSFW)",
  57026. image: {
  57027. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57028. extra: 890/792,
  57029. bottom: 29/919
  57030. },
  57031. form: "yoshi",
  57032. },
  57033. yoshi_back: {
  57034. height: math.unit(6, "feet"),
  57035. weight: math.unit(150, "lb"),
  57036. name: "Back",
  57037. image: {
  57038. source: "./media/characters/robin-phox/yoshi-back.svg",
  57039. extra: 890/792,
  57040. bottom: 29/919
  57041. },
  57042. form: "yoshi",
  57043. },
  57044. yoshi_foot: {
  57045. height: math.unit(1.5, "feet"),
  57046. name: "Foot",
  57047. image: {
  57048. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57049. },
  57050. form: "yoshi",
  57051. },
  57052. delphox_front: {
  57053. height: math.unit(4 + 11/12, "feet"),
  57054. weight: math.unit(86, "lb"),
  57055. name: "Front",
  57056. image: {
  57057. source: "./media/characters/robin-phox/delphox-front.svg",
  57058. extra: 1266/1069,
  57059. bottom: 32/1298
  57060. },
  57061. form: "delphox",
  57062. default: true
  57063. },
  57064. delphox_frontNsfw: {
  57065. height: math.unit(4 + 11/12, "feet"),
  57066. weight: math.unit(86, "lb"),
  57067. name: "Front (NSFW)",
  57068. image: {
  57069. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57070. extra: 1266/1069,
  57071. bottom: 32/1298
  57072. },
  57073. form: "delphox",
  57074. },
  57075. delphox_back: {
  57076. height: math.unit(4 + 11/12, "feet"),
  57077. weight: math.unit(86, "lb"),
  57078. name: "Back",
  57079. image: {
  57080. source: "./media/characters/robin-phox/delphox-back.svg",
  57081. extra: 1269/1083,
  57082. bottom: 15/1284
  57083. },
  57084. form: "delphox",
  57085. },
  57086. mienshao_front: {
  57087. height: math.unit(4 + 7/12, "feet"),
  57088. weight: math.unit(78.3, "lb"),
  57089. name: "Front",
  57090. image: {
  57091. source: "./media/characters/robin-phox/mienshao-front.svg",
  57092. extra: 1052/970,
  57093. bottom: 108/1160
  57094. },
  57095. form: "mienshao",
  57096. default: true
  57097. },
  57098. mienshao_frontNsfw: {
  57099. height: math.unit(4 + 7/12, "feet"),
  57100. weight: math.unit(78.3, "lb"),
  57101. name: "Front (NSFW)",
  57102. image: {
  57103. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57104. extra: 1052/970,
  57105. bottom: 108/1160
  57106. },
  57107. form: "mienshao",
  57108. },
  57109. mienshao_back: {
  57110. height: math.unit(4 + 7/12, "feet"),
  57111. weight: math.unit(78.3, "lb"),
  57112. name: "Back",
  57113. image: {
  57114. source: "./media/characters/robin-phox/mienshao-back.svg",
  57115. extra: 1102/982,
  57116. bottom: 32/1134
  57117. },
  57118. form: "mienshao",
  57119. },
  57120. inteleon_front: {
  57121. height: math.unit(6 + 3/12, "feet"),
  57122. weight: math.unit(99.6, "lb"),
  57123. name: "Front",
  57124. image: {
  57125. source: "./media/characters/robin-phox/inteleon-front.svg",
  57126. extra: 910/799,
  57127. bottom: 76/986
  57128. },
  57129. form: "inteleon",
  57130. default: true
  57131. },
  57132. inteleon_frontNsfw: {
  57133. height: math.unit(6 + 3/12, "feet"),
  57134. weight: math.unit(99.6, "lb"),
  57135. name: "Front (NSFW)",
  57136. image: {
  57137. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57138. extra: 910/799,
  57139. bottom: 76/986
  57140. },
  57141. form: "inteleon",
  57142. },
  57143. inteleon_back: {
  57144. height: math.unit(6 + 3/12, "feet"),
  57145. weight: math.unit(99.6, "lb"),
  57146. name: "Back",
  57147. image: {
  57148. source: "./media/characters/robin-phox/inteleon-back.svg",
  57149. extra: 907/796,
  57150. bottom: 25/932
  57151. },
  57152. form: "inteleon",
  57153. },
  57154. reshiram_front: {
  57155. height: math.unit(10 + 6/12, "feet"),
  57156. weight: math.unit(727.5, "lb"),
  57157. name: "Front",
  57158. image: {
  57159. source: "./media/characters/robin-phox/reshiram-front.svg",
  57160. extra: 1198/940,
  57161. bottom: 123/1321
  57162. },
  57163. form: "reshiram",
  57164. },
  57165. reshiram_frontNsfw: {
  57166. height: math.unit(10 + 6/12, "feet"),
  57167. weight: math.unit(727.5, "lb"),
  57168. name: "Front-nsfw",
  57169. image: {
  57170. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57171. extra: 1198/940,
  57172. bottom: 123/1321
  57173. },
  57174. form: "reshiram",
  57175. },
  57176. reshiram_back: {
  57177. height: math.unit(10 + 6/12, "feet"),
  57178. weight: math.unit(727.5, "lb"),
  57179. name: "Back",
  57180. image: {
  57181. source: "./media/characters/robin-phox/reshiram-back.svg",
  57182. extra: 1024/904,
  57183. bottom: 85/1109
  57184. },
  57185. form: "reshiram",
  57186. },
  57187. samurott_front: {
  57188. height: math.unit(8, "feet"),
  57189. weight: math.unit(208.6, "lb"),
  57190. name: "Front",
  57191. image: {
  57192. source: "./media/characters/robin-phox/samurott-front.svg",
  57193. extra: 1048/984,
  57194. bottom: 100/1148
  57195. },
  57196. form: "samurott",
  57197. },
  57198. samurott_frontNsfw: {
  57199. height: math.unit(8, "feet"),
  57200. weight: math.unit(208.6, "lb"),
  57201. name: "Front-nsfw",
  57202. image: {
  57203. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57204. extra: 1048/984,
  57205. bottom: 100/1148
  57206. },
  57207. form: "samurott",
  57208. },
  57209. samurott_back: {
  57210. height: math.unit(8, "feet"),
  57211. weight: math.unit(208.6, "lb"),
  57212. name: "Back",
  57213. image: {
  57214. source: "./media/characters/robin-phox/samurott-back.svg",
  57215. extra: 1110/1042,
  57216. bottom: 12/1122
  57217. },
  57218. form: "samurott",
  57219. },
  57220. samurott_feral: {
  57221. height: math.unit(4 + 11/12, "feet"),
  57222. weight: math.unit(208.6, "lb"),
  57223. name: "Feral",
  57224. image: {
  57225. source: "./media/characters/robin-phox/samurott-feral.svg",
  57226. extra: 766/681,
  57227. bottom: 108/874
  57228. },
  57229. form: "samurott",
  57230. },
  57231. },
  57232. [
  57233. {
  57234. name: "Normal",
  57235. height: math.unit(2, "feet"),
  57236. default: true,
  57237. form: "snivy"
  57238. },
  57239. {
  57240. name: "Normal",
  57241. height: math.unit(6, "feet"),
  57242. default: true,
  57243. form: "yoshi"
  57244. },
  57245. {
  57246. name: "Normal",
  57247. height: math.unit(4 + 11/12, "feet"),
  57248. default: true,
  57249. form: "delphox"
  57250. },
  57251. {
  57252. name: "Normal",
  57253. height: math.unit(4 + 7/12, "feet"),
  57254. default: true,
  57255. form: "mienshao"
  57256. },
  57257. {
  57258. name: "Normal",
  57259. height: math.unit(6 + 3/12, "feet"),
  57260. default: true,
  57261. form: "inteleon"
  57262. },
  57263. {
  57264. name: "Normal",
  57265. height: math.unit(10 + 6/12, "feet"),
  57266. default: true,
  57267. form: "reshiram"
  57268. },
  57269. {
  57270. name: "Normal",
  57271. height: math.unit(8, "feet"),
  57272. default: true,
  57273. form: "samurott"
  57274. },
  57275. {
  57276. name: "Macro",
  57277. height: math.unit(500, "feet"),
  57278. allForms: true
  57279. },
  57280. {
  57281. name: "Mega Macro",
  57282. height: math.unit(10, "earths"),
  57283. allForms: true
  57284. },
  57285. {
  57286. name: "Giga Macro",
  57287. height: math.unit(1, "galaxy"),
  57288. allForms: true
  57289. },
  57290. {
  57291. name: "Godly Macro",
  57292. height: math.unit(1e10, "multiverses"),
  57293. allForms: true
  57294. },
  57295. ],
  57296. {
  57297. "snivy": {
  57298. name: "Snivy",
  57299. default: true
  57300. },
  57301. "yoshi": {
  57302. name: "Yoshi",
  57303. },
  57304. "delphox": {
  57305. name: "Delphox",
  57306. },
  57307. "mienshao": {
  57308. name: "Mienshao",
  57309. },
  57310. "inteleon": {
  57311. name: "Inteleon",
  57312. },
  57313. "reshiram": {
  57314. name: "Reshiram",
  57315. },
  57316. "samurott": {
  57317. name: "Samurott",
  57318. },
  57319. }
  57320. ))
  57321. characterMakers.push(() => makeCharacter(
  57322. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57323. {
  57324. front: {
  57325. height: math.unit(4, "feet"),
  57326. name: "Front",
  57327. image: {
  57328. source: "./media/characters/ash-leung/front.svg",
  57329. extra: 1916/1792,
  57330. bottom: 50/1966
  57331. }
  57332. },
  57333. },
  57334. [
  57335. {
  57336. name: "Atomic",
  57337. height: math.unit(1, "angstrom")
  57338. },
  57339. {
  57340. name: "Microscopic",
  57341. height: math.unit(4000, "angstroms")
  57342. },
  57343. {
  57344. name: "Speck",
  57345. height: math.unit(1, "mm")
  57346. },
  57347. {
  57348. name: "Small",
  57349. height: math.unit(1, "inch")
  57350. },
  57351. {
  57352. name: "Normal",
  57353. height: math.unit(4, "feet"),
  57354. default: true
  57355. },
  57356. ]
  57357. ))
  57358. characterMakers.push(() => makeCharacter(
  57359. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57360. {
  57361. frontDressed: {
  57362. height: math.unit(2.08, "meters"),
  57363. weight: math.unit(175, "lb"),
  57364. name: "Front (Dressed)",
  57365. image: {
  57366. source: "./media/characters/carie/front-dressed.svg",
  57367. extra: 456/417,
  57368. bottom: 7/463
  57369. }
  57370. },
  57371. backDressed: {
  57372. height: math.unit(2.08, "meters"),
  57373. weight: math.unit(175, "lb"),
  57374. name: "Back (Dressed)",
  57375. image: {
  57376. source: "./media/characters/carie/back-dressed.svg",
  57377. extra: 455/414,
  57378. bottom: 11/466
  57379. }
  57380. },
  57381. front: {
  57382. height: math.unit(2, "meters"),
  57383. weight: math.unit(175, "lb"),
  57384. name: "Front",
  57385. image: {
  57386. source: "./media/characters/carie/front.svg",
  57387. extra: 438/399,
  57388. bottom: 12/450
  57389. }
  57390. },
  57391. back: {
  57392. height: math.unit(2, "meters"),
  57393. weight: math.unit(175, "lb"),
  57394. name: "Back",
  57395. image: {
  57396. source: "./media/characters/carie/back.svg",
  57397. extra: 438/397,
  57398. bottom: 7/445
  57399. }
  57400. },
  57401. },
  57402. [
  57403. {
  57404. name: "Normal",
  57405. height: math.unit(2.08, "meters"),
  57406. default: true
  57407. },
  57408. {
  57409. name: "Macro",
  57410. height: math.unit(2.08e3, "meters")
  57411. },
  57412. {
  57413. name: "Mega Macro",
  57414. height: math.unit(2.08e6, "meters")
  57415. },
  57416. {
  57417. name: "Giga Macro",
  57418. height: math.unit(2.08e9, "meters")
  57419. },
  57420. {
  57421. name: "Tera Macro",
  57422. height: math.unit(2.08e12, "meters")
  57423. },
  57424. {
  57425. name: "Peta Macro",
  57426. height: math.unit(2.08e15, "meters")
  57427. },
  57428. {
  57429. name: "Exa Macro",
  57430. height: math.unit(2.08e18, "meters")
  57431. },
  57432. {
  57433. name: "Zetta Macro",
  57434. height: math.unit(2.08e21, "meters")
  57435. },
  57436. {
  57437. name: "Yotta Macro",
  57438. height: math.unit(2.08e24, "meters")
  57439. },
  57440. ]
  57441. ))
  57442. characterMakers.push(() => makeCharacter(
  57443. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57444. {
  57445. front: {
  57446. height: math.unit(5 + 2/12, "feet"),
  57447. weight: math.unit(120, "lb"),
  57448. name: "Front",
  57449. image: {
  57450. source: "./media/characters/sai-bree/front.svg",
  57451. extra: 1843/1702,
  57452. bottom: 91/1934
  57453. }
  57454. },
  57455. back: {
  57456. height: math.unit(5 + 2/12, "feet"),
  57457. weight: math.unit(120, "lb"),
  57458. name: "Back",
  57459. image: {
  57460. source: "./media/characters/sai-bree/back.svg",
  57461. extra: 1809/1637,
  57462. bottom: 56/1865
  57463. }
  57464. },
  57465. },
  57466. [
  57467. {
  57468. name: "Normal",
  57469. height: math.unit(5 + 2/12, "feet"),
  57470. default: true
  57471. },
  57472. {
  57473. name: "Macro",
  57474. height: math.unit(500, "feet")
  57475. },
  57476. ]
  57477. ))
  57478. characterMakers.push(() => makeCharacter(
  57479. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57480. {
  57481. side: {
  57482. height: math.unit(0.77, "meters"),
  57483. weight: math.unit(120, "lb"),
  57484. name: "Side",
  57485. image: {
  57486. source: "./media/characters/davwyn/side.svg",
  57487. extra: 1557/1225,
  57488. bottom: 131/1688
  57489. }
  57490. },
  57491. front: {
  57492. height: math.unit(0.835410, "meters"),
  57493. weight: math.unit(120, "lb"),
  57494. name: "Front",
  57495. image: {
  57496. source: "./media/characters/davwyn/front.svg",
  57497. extra: 870/843,
  57498. bottom: 175/1045
  57499. }
  57500. },
  57501. },
  57502. [
  57503. {
  57504. name: "Minidrake",
  57505. height: math.unit(0.77/4, "meters")
  57506. },
  57507. {
  57508. name: "Normal",
  57509. height: math.unit(0.77, "meters"),
  57510. default: true
  57511. },
  57512. ]
  57513. ))
  57514. characterMakers.push(() => makeCharacter(
  57515. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57516. {
  57517. front: {
  57518. height: math.unit(10 + 3/12, "feet"),
  57519. weight: math.unit(2857, "lb"),
  57520. name: "Front",
  57521. image: {
  57522. source: "./media/characters/balans/front.svg",
  57523. extra: 427/402,
  57524. bottom: 26/453
  57525. }
  57526. },
  57527. side: {
  57528. height: math.unit(10 + 3/12, "feet"),
  57529. weight: math.unit(2857, "lb"),
  57530. name: "Side",
  57531. image: {
  57532. source: "./media/characters/balans/side.svg",
  57533. extra: 397/371,
  57534. bottom: 17/414
  57535. }
  57536. },
  57537. back: {
  57538. height: math.unit(10 + 3/12, "feet"),
  57539. weight: math.unit(2857, "lb"),
  57540. name: "Back",
  57541. image: {
  57542. source: "./media/characters/balans/back.svg",
  57543. extra: 408/381,
  57544. bottom: 14/422
  57545. }
  57546. },
  57547. hand: {
  57548. height: math.unit(1.15, "feet"),
  57549. name: "Hand",
  57550. image: {
  57551. source: "./media/characters/balans/hand.svg"
  57552. }
  57553. },
  57554. footRest: {
  57555. height: math.unit(3.1, "feet"),
  57556. name: "Foot (Rest)",
  57557. image: {
  57558. source: "./media/characters/balans/foot-rest.svg"
  57559. }
  57560. },
  57561. footActive: {
  57562. height: math.unit(3.5, "feet"),
  57563. name: "Foot (Active)",
  57564. image: {
  57565. source: "./media/characters/balans/foot-active.svg"
  57566. }
  57567. },
  57568. },
  57569. [
  57570. {
  57571. name: "Normal",
  57572. height: math.unit(10 + 3/12, "feet"),
  57573. default: true
  57574. },
  57575. ]
  57576. ))
  57577. characterMakers.push(() => makeCharacter(
  57578. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57579. {
  57580. side: {
  57581. height: math.unit(9, "meters"),
  57582. weight: math.unit(114, "tonnes"),
  57583. name: "Side",
  57584. image: {
  57585. source: "./media/characters/eldkveikir/side.svg",
  57586. extra: 1927/338,
  57587. bottom: 42/1969
  57588. }
  57589. },
  57590. sitting: {
  57591. height: math.unit(13.4, "meters"),
  57592. weight: math.unit(114, "tonnes"),
  57593. name: "Sitting",
  57594. image: {
  57595. source: "./media/characters/eldkveikir/sitting.svg",
  57596. extra: 1108/963,
  57597. bottom: 610/1718
  57598. }
  57599. },
  57600. maw: {
  57601. height: math.unit(8.36, "meters"),
  57602. name: "Maw",
  57603. image: {
  57604. source: "./media/characters/eldkveikir/maw.svg"
  57605. }
  57606. },
  57607. hand: {
  57608. height: math.unit(4.84, "meters"),
  57609. name: "Hand",
  57610. image: {
  57611. source: "./media/characters/eldkveikir/hand.svg"
  57612. }
  57613. },
  57614. foot: {
  57615. height: math.unit(6.9, "meters"),
  57616. name: "Foot",
  57617. image: {
  57618. source: "./media/characters/eldkveikir/foot.svg"
  57619. }
  57620. },
  57621. genitals: {
  57622. height: math.unit(9.6, "meters"),
  57623. name: "Genitals",
  57624. image: {
  57625. source: "./media/characters/eldkveikir/genitals.svg"
  57626. }
  57627. },
  57628. },
  57629. [
  57630. {
  57631. name: "Normal",
  57632. height: math.unit(9, "meters"),
  57633. default: true
  57634. },
  57635. ]
  57636. ))
  57637. characterMakers.push(() => makeCharacter(
  57638. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57639. {
  57640. front: {
  57641. height: math.unit(14, "feet"),
  57642. weight: math.unit(4100, "lb"),
  57643. name: "Front",
  57644. image: {
  57645. source: "./media/characters/arrow/front.svg",
  57646. extra: 330/318,
  57647. bottom: 56/386
  57648. }
  57649. },
  57650. },
  57651. [
  57652. {
  57653. name: "Normal",
  57654. height: math.unit(14, "feet"),
  57655. default: true
  57656. },
  57657. {
  57658. name: "Minimacro",
  57659. height: math.unit(63, "feet")
  57660. },
  57661. {
  57662. name: "Macro",
  57663. height: math.unit(630, "feet")
  57664. },
  57665. {
  57666. name: "Megamacro",
  57667. height: math.unit(12600, "feet")
  57668. },
  57669. {
  57670. name: "Gigamacro",
  57671. height: math.unit(18000, "miles")
  57672. },
  57673. ]
  57674. ))
  57675. characterMakers.push(() => makeCharacter(
  57676. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57677. {
  57678. front: {
  57679. height: math.unit(10, "feet"),
  57680. weight: math.unit(2.4, "tons"),
  57681. name: "Front",
  57682. image: {
  57683. source: "./media/characters/3yk-k0-unit/front.svg",
  57684. extra: 573/561,
  57685. bottom: 33/606
  57686. }
  57687. },
  57688. back: {
  57689. height: math.unit(10, "feet"),
  57690. weight: math.unit(2.4, "tons"),
  57691. name: "Back",
  57692. image: {
  57693. source: "./media/characters/3yk-k0-unit/back.svg",
  57694. extra: 614/573,
  57695. bottom: 32/646
  57696. }
  57697. },
  57698. maw: {
  57699. height: math.unit(2.15, "feet"),
  57700. name: "Maw",
  57701. image: {
  57702. source: "./media/characters/3yk-k0-unit/maw.svg"
  57703. }
  57704. },
  57705. },
  57706. [
  57707. {
  57708. name: "Normal",
  57709. height: math.unit(10, "feet"),
  57710. default: true
  57711. },
  57712. ]
  57713. ))
  57714. characterMakers.push(() => makeCharacter(
  57715. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57716. {
  57717. front: {
  57718. height: math.unit(8 + 8/12, "feet"),
  57719. name: "Front",
  57720. image: {
  57721. source: "./media/characters/nemo/front.svg",
  57722. extra: 1308/1217,
  57723. bottom: 57/1365
  57724. }
  57725. },
  57726. },
  57727. [
  57728. {
  57729. name: "Normal",
  57730. height: math.unit(8 + 8/12, "feet"),
  57731. default: true
  57732. },
  57733. ]
  57734. ))
  57735. characterMakers.push(() => makeCharacter(
  57736. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57737. {
  57738. front: {
  57739. height: math.unit(8, "feet"),
  57740. weight: math.unit(760, "lb"),
  57741. name: "Front",
  57742. image: {
  57743. source: "./media/characters/rexx/front.svg",
  57744. extra: 786/750,
  57745. bottom: 17/803
  57746. },
  57747. extraAttributes: {
  57748. "pawLength": {
  57749. name: "Paw Length",
  57750. power: 1,
  57751. type: "length",
  57752. base: math.unit(27, "inches")
  57753. },
  57754. }
  57755. },
  57756. },
  57757. [
  57758. {
  57759. name: "Micro",
  57760. height: math.unit(2, "inches")
  57761. },
  57762. {
  57763. name: "Normal",
  57764. height: math.unit(8, "feet"),
  57765. default: true
  57766. },
  57767. {
  57768. name: "Macro",
  57769. height: math.unit(150, "feet")
  57770. },
  57771. ]
  57772. ))
  57773. characterMakers.push(() => makeCharacter(
  57774. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57775. {
  57776. front: {
  57777. height: math.unit(18, "feet"),
  57778. weight: math.unit(1975, "lb"),
  57779. name: "Front",
  57780. image: {
  57781. source: "./media/characters/draco/front.svg",
  57782. extra: 1325/1241,
  57783. bottom: 83/1408
  57784. }
  57785. },
  57786. back: {
  57787. height: math.unit(18, "feet"),
  57788. weight: math.unit(1975, "lb"),
  57789. name: "Back",
  57790. image: {
  57791. source: "./media/characters/draco/back.svg",
  57792. extra: 1332/1250,
  57793. bottom: 43/1375
  57794. }
  57795. },
  57796. dick: {
  57797. height: math.unit(7.5, "feet"),
  57798. name: "Dick",
  57799. image: {
  57800. source: "./media/characters/draco/dick.svg"
  57801. }
  57802. },
  57803. },
  57804. [
  57805. {
  57806. name: "Normal",
  57807. height: math.unit(18, "feet"),
  57808. default: true
  57809. },
  57810. ]
  57811. ))
  57812. characterMakers.push(() => makeCharacter(
  57813. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57814. {
  57815. front: {
  57816. height: math.unit(3.2, "meters"),
  57817. name: "Front",
  57818. image: {
  57819. source: "./media/characters/harriett/front.svg",
  57820. extra: 1966/1915,
  57821. bottom: 9/1975
  57822. }
  57823. },
  57824. },
  57825. [
  57826. {
  57827. name: "Normal",
  57828. height: math.unit(3.2, "meters"),
  57829. default: true
  57830. },
  57831. ]
  57832. ))
  57833. characterMakers.push(() => makeCharacter(
  57834. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57835. {
  57836. sitting: {
  57837. height: math.unit(0.8, "meter"),
  57838. name: "Sitting",
  57839. image: {
  57840. source: "./media/characters/serpentus/sitting.svg",
  57841. extra: 293/290,
  57842. bottom: 140/433
  57843. }
  57844. },
  57845. },
  57846. [
  57847. {
  57848. name: "Normal",
  57849. height: math.unit(0.8, "meter"),
  57850. default: true
  57851. },
  57852. ]
  57853. ))
  57854. characterMakers.push(() => makeCharacter(
  57855. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57856. {
  57857. front: {
  57858. height: math.unit(5.7174385736, "feet"),
  57859. name: "Front",
  57860. image: {
  57861. source: "./media/characters/nova-polecat/front.svg",
  57862. extra: 1317/1216,
  57863. bottom: 92/1409
  57864. }
  57865. },
  57866. },
  57867. [
  57868. {
  57869. name: "Normal",
  57870. height: math.unit(5.7174385736, "feet"),
  57871. default: true
  57872. },
  57873. ]
  57874. ))
  57875. characterMakers.push(() => makeCharacter(
  57876. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57877. {
  57878. front: {
  57879. height: math.unit(5 + 4/12, "feet"),
  57880. weight: math.unit(250, "lb"),
  57881. name: "Front",
  57882. image: {
  57883. source: "./media/characters/mook/front.svg",
  57884. extra: 1088/1037,
  57885. bottom: 132/1220
  57886. }
  57887. },
  57888. back: {
  57889. height: math.unit(5 + 1/12, "feet"),
  57890. weight: math.unit(250, "lb"),
  57891. name: "Back",
  57892. image: {
  57893. source: "./media/characters/mook/back.svg",
  57894. extra: 1184/905,
  57895. bottom: 96/1280
  57896. }
  57897. },
  57898. head: {
  57899. height: math.unit(1.85, "feet"),
  57900. name: "Head",
  57901. image: {
  57902. source: "./media/characters/mook/head.svg"
  57903. }
  57904. },
  57905. hand: {
  57906. height: math.unit(1.9, "feet"),
  57907. name: "Hand",
  57908. image: {
  57909. source: "./media/characters/mook/hand.svg"
  57910. }
  57911. },
  57912. palm: {
  57913. height: math.unit(1.84, "feet"),
  57914. name: "Palm",
  57915. image: {
  57916. source: "./media/characters/mook/palm.svg"
  57917. }
  57918. },
  57919. foot: {
  57920. height: math.unit(1.44, "feet"),
  57921. name: "Foot",
  57922. image: {
  57923. source: "./media/characters/mook/foot.svg"
  57924. }
  57925. },
  57926. sole: {
  57927. height: math.unit(1.44, "feet"),
  57928. name: "Sole",
  57929. image: {
  57930. source: "./media/characters/mook/sole.svg"
  57931. }
  57932. },
  57933. },
  57934. [
  57935. {
  57936. name: "Normal",
  57937. height: math.unit(5 + 4/12, "feet"),
  57938. default: true
  57939. },
  57940. {
  57941. name: "Big",
  57942. height: math.unit(12, "feet")
  57943. },
  57944. ]
  57945. ))
  57946. characterMakers.push(() => makeCharacter(
  57947. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57948. {
  57949. front: {
  57950. height: math.unit(6 + 10/12, "feet"),
  57951. weight: math.unit(233, "lb"),
  57952. name: "Front",
  57953. image: {
  57954. source: "./media/characters/kayla/front.svg",
  57955. extra: 1850/1775,
  57956. bottom: 65/1915
  57957. }
  57958. },
  57959. },
  57960. [
  57961. {
  57962. name: "Normal",
  57963. height: math.unit(6 + 10/12, "feet"),
  57964. default: true
  57965. },
  57966. {
  57967. name: "Amazonian",
  57968. height: math.unit(12 + 5/12, "feet")
  57969. },
  57970. {
  57971. name: "Mini Giantess",
  57972. height: math.unit(26, "feet")
  57973. },
  57974. {
  57975. name: "Giantess",
  57976. height: math.unit(200, "feet")
  57977. },
  57978. {
  57979. name: "Mega Giantess",
  57980. height: math.unit(2500, "feet")
  57981. },
  57982. {
  57983. name: "City Sized",
  57984. height: math.unit(50, "miles")
  57985. },
  57986. {
  57987. name: "Country Sized",
  57988. height: math.unit(500, "miles")
  57989. },
  57990. {
  57991. name: "Continent Sized",
  57992. height: math.unit(2500, "miles")
  57993. },
  57994. {
  57995. name: "Planet Sized",
  57996. height: math.unit(10000, "miles")
  57997. },
  57998. {
  57999. name: "Star Sized",
  58000. height: math.unit(5e6, "miles")
  58001. },
  58002. {
  58003. name: "Solar System Sized",
  58004. height: math.unit(125, "AU")
  58005. },
  58006. {
  58007. name: "Galaxy Sized",
  58008. height: math.unit(300e3, "lightyears")
  58009. },
  58010. {
  58011. name: "Universe Sized",
  58012. height: math.unit(200e9, "lightyears")
  58013. },
  58014. {
  58015. name: "Multiverse Sized",
  58016. height: math.unit(20, "exauniverses")
  58017. },
  58018. {
  58019. name: "Mother of Existence",
  58020. height: math.unit(1e6, "yottauniverses")
  58021. },
  58022. ]
  58023. ))
  58024. characterMakers.push(() => makeCharacter(
  58025. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58026. {
  58027. side: {
  58028. height: math.unit(9.5, "meters"),
  58029. name: "Side",
  58030. image: {
  58031. source: "./media/characters/kulve-ragnarok/side.svg",
  58032. extra: 364/326,
  58033. bottom: 50/414
  58034. }
  58035. },
  58036. },
  58037. [
  58038. {
  58039. name: "Normal",
  58040. height: math.unit(9.5, "meters"),
  58041. default: true
  58042. },
  58043. ]
  58044. ))
  58045. characterMakers.push(() => makeCharacter(
  58046. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58047. {
  58048. front: {
  58049. height: math.unit(8 + 9/12, "feet"),
  58050. name: "Front",
  58051. image: {
  58052. source: "./media/characters/atlas-goat/front.svg",
  58053. extra: 1462/1323,
  58054. bottom: 12/1474
  58055. }
  58056. },
  58057. },
  58058. [
  58059. {
  58060. name: "Normal",
  58061. height: math.unit(8 + 9/12, "feet"),
  58062. default: true
  58063. },
  58064. {
  58065. name: "Skyline",
  58066. height: math.unit(845, "feet")
  58067. },
  58068. {
  58069. name: "Orbital",
  58070. height: math.unit(93000, "miles")
  58071. },
  58072. {
  58073. name: "Constellation",
  58074. height: math.unit(27000, "lightyears")
  58075. },
  58076. ]
  58077. ))
  58078. characterMakers.push(() => makeCharacter(
  58079. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58080. {
  58081. side: {
  58082. height: math.unit(1.8, "meters"),
  58083. weight: math.unit(120, "kg"),
  58084. name: "Side",
  58085. image: {
  58086. source: "./media/characters/xie-ling/side.svg",
  58087. extra: 646/574,
  58088. bottom: 44/690
  58089. }
  58090. },
  58091. },
  58092. [
  58093. {
  58094. name: "Tiny",
  58095. height: math.unit(1.80, "meters")
  58096. },
  58097. {
  58098. name: "Small",
  58099. height: math.unit(6, "meters")
  58100. },
  58101. {
  58102. name: "Medium",
  58103. height: math.unit(15, "meters")
  58104. },
  58105. {
  58106. name: "Normal",
  58107. height: math.unit(30, "meters"),
  58108. default: true
  58109. },
  58110. {
  58111. name: "Above Normal",
  58112. height: math.unit(60, "meters")
  58113. },
  58114. {
  58115. name: "Big",
  58116. height: math.unit(220, "meters")
  58117. },
  58118. {
  58119. name: "Giant",
  58120. height: math.unit(2.2, "km")
  58121. },
  58122. {
  58123. name: "Macro",
  58124. height: math.unit(25, "km")
  58125. },
  58126. {
  58127. name: "Mega Macro",
  58128. height: math.unit(350, "km")
  58129. },
  58130. {
  58131. name: "Mega Macro+",
  58132. height: math.unit(5000, "km")
  58133. },
  58134. {
  58135. name: "Goddess",
  58136. height: math.unit(3, "multiverses")
  58137. },
  58138. ]
  58139. ))
  58140. characterMakers.push(() => makeCharacter(
  58141. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58142. {
  58143. frontSfw: {
  58144. height: math.unit(5 + 11/12, "feet"),
  58145. weight: math.unit(210, "lb"),
  58146. name: "Front",
  58147. image: {
  58148. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58149. extra: 1928/1821,
  58150. bottom: 45/1973
  58151. }
  58152. },
  58153. backSfw: {
  58154. height: math.unit(5 + 11/12, "feet"),
  58155. weight: math.unit(210, "lb"),
  58156. name: "Back",
  58157. image: {
  58158. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58159. extra: 1920/1813,
  58160. bottom: 34/1954
  58161. }
  58162. },
  58163. frontNsfw: {
  58164. height: math.unit(5 + 11/12, "feet"),
  58165. weight: math.unit(210, "lb"),
  58166. name: "Front (NSFW)",
  58167. image: {
  58168. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58169. extra: 1928/1821,
  58170. bottom: 45/1973
  58171. }
  58172. },
  58173. backNsfw: {
  58174. height: math.unit(5 + 11/12, "feet"),
  58175. weight: math.unit(210, "lb"),
  58176. name: "Back (NSFW)",
  58177. image: {
  58178. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58179. extra: 1920/1813,
  58180. bottom: 34/1954
  58181. }
  58182. },
  58183. },
  58184. [
  58185. {
  58186. name: "Normal",
  58187. height: math.unit(5 + 11/12, "feet"),
  58188. default: true
  58189. },
  58190. {
  58191. name: "Goddess",
  58192. height: math.unit(20 + 3/12, "feet")
  58193. },
  58194. {
  58195. name: "Breaker of Man",
  58196. height: math.unit(329 + 9/12, "feet")
  58197. },
  58198. {
  58199. name: "Solar Justice",
  58200. height: math.unit(0.6, "solarradii")
  58201. },
  58202. {
  58203. name: "She Who Judges",
  58204. height: math.unit(1, "universe")
  58205. },
  58206. ]
  58207. ))
  58208. characterMakers.push(() => makeCharacter(
  58209. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58210. {
  58211. casual_front: {
  58212. height: math.unit(6 + 1/12, "feet"),
  58213. weight: math.unit(190, "lb"),
  58214. preyCapacity: math.unit(1, "people"),
  58215. name: "Front",
  58216. image: {
  58217. source: "./media/characters/managarmr/casual-front.svg",
  58218. extra: 411/381,
  58219. bottom: 15/426
  58220. },
  58221. extraAttributes: {
  58222. "pawSize": {
  58223. name: "Paw Size",
  58224. power: 1,
  58225. type: "length",
  58226. base: math.unit(0.2, "meters")
  58227. },
  58228. },
  58229. form: "casual",
  58230. },
  58231. casual_back: {
  58232. height: math.unit(6 + 1/12, "feet"),
  58233. weight: math.unit(190, "lb"),
  58234. preyCapacity: math.unit(1, "people"),
  58235. name: "Back",
  58236. image: {
  58237. source: "./media/characters/managarmr/casual-back.svg",
  58238. extra: 413/383,
  58239. bottom: 13/426
  58240. },
  58241. extraAttributes: {
  58242. "pawSize": {
  58243. name: "Paw Size",
  58244. power: 1,
  58245. type: "length",
  58246. base: math.unit(0.2, "meters")
  58247. },
  58248. },
  58249. form: "casual",
  58250. },
  58251. base_front: {
  58252. height: math.unit(7, "feet"),
  58253. weight: math.unit(210, "lb"),
  58254. preyCapacity: math.unit(2, "people"),
  58255. name: "Front",
  58256. image: {
  58257. source: "./media/characters/managarmr/base-front.svg",
  58258. extra: 580/485,
  58259. bottom: 32/612
  58260. },
  58261. extraAttributes: {
  58262. "wingspan": {
  58263. name: "Wingspan",
  58264. power: 1,
  58265. type: "length",
  58266. base: math.unit(4, "meters")
  58267. },
  58268. "pawSize": {
  58269. name: "Paw Size",
  58270. power: 1,
  58271. type: "length",
  58272. base: math.unit(0.2, "meters")
  58273. },
  58274. },
  58275. form: "base",
  58276. },
  58277. "true-divine_front": {
  58278. height: math.unit(40, "feet"),
  58279. weight: math.unit(39000, "lb"),
  58280. preyCapacity: math.unit(375, "people"),
  58281. name: "Front",
  58282. image: {
  58283. source: "./media/characters/managarmr/true-divine-front.svg",
  58284. extra: 725/573,
  58285. bottom: 120/845
  58286. },
  58287. extraAttributes: {
  58288. "wingspan": {
  58289. name: "Wingspan",
  58290. power: 1,
  58291. type: "length",
  58292. base: math.unit(20, "meters")
  58293. },
  58294. "pawSize": {
  58295. name: "Paw Size",
  58296. power: 1,
  58297. type: "length",
  58298. base: math.unit(1.5, "meters")
  58299. },
  58300. },
  58301. form: "true-divine",
  58302. },
  58303. },
  58304. [
  58305. {
  58306. name: "Normal",
  58307. height: math.unit(6 + 1/12, "feet"),
  58308. form: "casual",
  58309. default: true
  58310. },
  58311. {
  58312. name: "Normal",
  58313. height: math.unit(7, "feet"),
  58314. form: "base",
  58315. default: true
  58316. },
  58317. ],
  58318. {
  58319. "casual": {
  58320. name: "Casual",
  58321. default: true
  58322. },
  58323. "base": {
  58324. name: "Base",
  58325. },
  58326. "true-divine": {
  58327. name: "True Divine",
  58328. },
  58329. }
  58330. ))
  58331. characterMakers.push(() => makeCharacter(
  58332. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58333. {
  58334. front: {
  58335. height: math.unit(1.8, "meters"),
  58336. weight: math.unit(110, "kg"),
  58337. name: "Front",
  58338. image: {
  58339. source: "./media/characters/mystra/front.svg",
  58340. extra: 529/442,
  58341. bottom: 31/560
  58342. }
  58343. },
  58344. frontLewd: {
  58345. height: math.unit(1.8, "meters"),
  58346. weight: math.unit(110, "kg"),
  58347. name: "Front (Lewd)",
  58348. image: {
  58349. source: "./media/characters/mystra/front-lewd.svg",
  58350. extra: 529/442,
  58351. bottom: 31/560
  58352. }
  58353. },
  58354. head: {
  58355. height: math.unit(1.63, "feet"),
  58356. name: "Head",
  58357. image: {
  58358. source: "./media/characters/mystra/head.svg"
  58359. }
  58360. },
  58361. paw: {
  58362. height: math.unit(1.9, "feet"),
  58363. name: "Paw",
  58364. image: {
  58365. source: "./media/characters/mystra/paw.svg"
  58366. }
  58367. },
  58368. },
  58369. [
  58370. {
  58371. name: "Incognito",
  58372. height: math.unit(2.3, "meters")
  58373. },
  58374. {
  58375. name: "Small Macro",
  58376. height: math.unit(300, "meters")
  58377. },
  58378. {
  58379. name: "Small Mega",
  58380. height: math.unit(2, "km")
  58381. },
  58382. {
  58383. name: "Mega",
  58384. height: math.unit(30, "km")
  58385. },
  58386. {
  58387. name: "Small Giga",
  58388. height: math.unit(100, "km")
  58389. },
  58390. {
  58391. name: "Giga",
  58392. height: math.unit(1000, "km"),
  58393. default: true
  58394. },
  58395. {
  58396. name: "Continental",
  58397. height: math.unit(5000, "km")
  58398. },
  58399. {
  58400. name: "Terra",
  58401. height: math.unit(20000, "km")
  58402. },
  58403. {
  58404. name: "Solar",
  58405. height: math.unit(2e6, "km")
  58406. },
  58407. {
  58408. name: "Galactic",
  58409. height: math.unit(528502, "lightyears")
  58410. },
  58411. {
  58412. name: "Universal",
  58413. height: math.unit(20, "universes")
  58414. },
  58415. ]
  58416. ))
  58417. characterMakers.push(() => makeCharacter(
  58418. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58419. {
  58420. front: {
  58421. height: math.unit(2, "meters"),
  58422. weight: math.unit(140, "kg"),
  58423. name: "Front",
  58424. image: {
  58425. source: "./media/characters/caleb/front.svg",
  58426. extra: 873/817,
  58427. bottom: 47/920
  58428. }
  58429. },
  58430. back: {
  58431. height: math.unit(2, "meters"),
  58432. weight: math.unit(140, "kg"),
  58433. name: "Back",
  58434. image: {
  58435. source: "./media/characters/caleb/back.svg",
  58436. extra: 877/828,
  58437. bottom: 24/901
  58438. }
  58439. },
  58440. snakeTail: {
  58441. height: math.unit(1.44, "feet"),
  58442. name: "Snake Tail",
  58443. image: {
  58444. source: "./media/characters/caleb/snake-tail.svg"
  58445. }
  58446. },
  58447. dick: {
  58448. height: math.unit(2.6, "feet"),
  58449. name: "Dick",
  58450. image: {
  58451. source: "./media/characters/caleb/dick.svg"
  58452. }
  58453. },
  58454. },
  58455. [
  58456. {
  58457. name: "Incognito",
  58458. height: math.unit(3, "meters")
  58459. },
  58460. {
  58461. name: "Home Size",
  58462. height: math.unit(200, "meters"),
  58463. default: true
  58464. },
  58465. {
  58466. name: "Macro",
  58467. height: math.unit(500, "meters")
  58468. },
  58469. {
  58470. name: "Big Macro",
  58471. height: math.unit(5, "km")
  58472. },
  58473. {
  58474. name: "Giga",
  58475. height: math.unit(250, "km")
  58476. },
  58477. {
  58478. name: "Giga+",
  58479. height: math.unit(5000, "km")
  58480. },
  58481. {
  58482. name: "Small Terra",
  58483. height: math.unit(35e3, "km")
  58484. },
  58485. {
  58486. name: "Terra",
  58487. height: math.unit(2e6, "km")
  58488. },
  58489. {
  58490. name: "Terra+",
  58491. height: math.unit(1.5e6, "km")
  58492. },
  58493. ]
  58494. ))
  58495. characterMakers.push(() => makeCharacter(
  58496. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58497. {
  58498. front: {
  58499. height: math.unit(2, "meters"),
  58500. weight: math.unit(120, "kg"),
  58501. name: "Front",
  58502. image: {
  58503. source: "./media/characters/gilirian/front.svg",
  58504. extra: 805/737,
  58505. bottom: 13/818
  58506. }
  58507. },
  58508. side: {
  58509. height: math.unit(2, "meters"),
  58510. weight: math.unit(120, "kg"),
  58511. name: "Side",
  58512. image: {
  58513. source: "./media/characters/gilirian/side.svg",
  58514. extra: 810/746,
  58515. bottom: 6/816
  58516. }
  58517. },
  58518. back: {
  58519. height: math.unit(2, "meters"),
  58520. weight: math.unit(120, "kg"),
  58521. name: "Back",
  58522. image: {
  58523. source: "./media/characters/gilirian/back.svg",
  58524. extra: 815/745,
  58525. bottom: 15/830
  58526. }
  58527. },
  58528. frontNsfw: {
  58529. height: math.unit(2, "meters"),
  58530. weight: math.unit(120, "kg"),
  58531. name: "Front (NSFW)",
  58532. image: {
  58533. source: "./media/characters/gilirian/front-nsfw.svg",
  58534. extra: 805/737,
  58535. bottom: 13/818
  58536. }
  58537. },
  58538. sideNsfw: {
  58539. height: math.unit(2, "meters"),
  58540. weight: math.unit(120, "kg"),
  58541. name: "Side (NSFW)",
  58542. image: {
  58543. source: "./media/characters/gilirian/side-nsfw.svg",
  58544. extra: 810/746,
  58545. bottom: 6/816
  58546. }
  58547. },
  58548. },
  58549. [
  58550. {
  58551. name: "Incognito",
  58552. height: math.unit(2, "meters"),
  58553. default: true
  58554. },
  58555. {
  58556. name: "Macro",
  58557. height: math.unit(250, "meters")
  58558. },
  58559. {
  58560. name: "Big Macro",
  58561. height: math.unit(1500, "meters")
  58562. },
  58563. {
  58564. name: "Mega",
  58565. height: math.unit(40, "km")
  58566. },
  58567. {
  58568. name: "Giga",
  58569. height: math.unit(300, "km")
  58570. },
  58571. {
  58572. name: "Extra Giga",
  58573. height: math.unit(5000, "km")
  58574. },
  58575. {
  58576. name: "Small Terra",
  58577. height: math.unit(10e3, "km")
  58578. },
  58579. {
  58580. name: "Terra",
  58581. height: math.unit(3e5, "km")
  58582. },
  58583. {
  58584. name: "Galactic",
  58585. height: math.unit(369950, "lightyears")
  58586. },
  58587. ]
  58588. ))
  58589. characterMakers.push(() => makeCharacter(
  58590. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58591. {
  58592. front: {
  58593. height: math.unit(2.5, "meters"),
  58594. weight: math.unit(230, "lb"),
  58595. name: "Front",
  58596. image: {
  58597. source: "./media/characters/tarken/front.svg",
  58598. extra: 764/720,
  58599. bottom: 49/813
  58600. }
  58601. },
  58602. back: {
  58603. height: math.unit(2.5, "meters"),
  58604. weight: math.unit(230, "lb"),
  58605. name: "Back",
  58606. image: {
  58607. source: "./media/characters/tarken/back.svg",
  58608. extra: 756/720,
  58609. bottom: 35/791
  58610. }
  58611. },
  58612. frontNsfw: {
  58613. height: math.unit(2.5, "meters"),
  58614. weight: math.unit(230, "lb"),
  58615. name: "Front (NSFW)",
  58616. image: {
  58617. source: "./media/characters/tarken/front-nsfw.svg",
  58618. extra: 764/720,
  58619. bottom: 49/813
  58620. }
  58621. },
  58622. backNsfw: {
  58623. height: math.unit(2.5, "meters"),
  58624. weight: math.unit(230, "lb"),
  58625. name: "Back (NSFW)",
  58626. image: {
  58627. source: "./media/characters/tarken/back-nsfw.svg",
  58628. extra: 756/720,
  58629. bottom: 35/791
  58630. }
  58631. },
  58632. head: {
  58633. height: math.unit(2.22, "feet"),
  58634. name: "Head",
  58635. image: {
  58636. source: "./media/characters/tarken/head.svg"
  58637. }
  58638. },
  58639. tail: {
  58640. height: math.unit(5.25, "feet"),
  58641. name: "Tail",
  58642. image: {
  58643. source: "./media/characters/tarken/tail.svg"
  58644. }
  58645. },
  58646. dick: {
  58647. height: math.unit(1.95, "feet"),
  58648. name: "Dick",
  58649. image: {
  58650. source: "./media/characters/tarken/dick.svg"
  58651. }
  58652. },
  58653. hand: {
  58654. height: math.unit(1.78, "feet"),
  58655. name: "Hand",
  58656. image: {
  58657. source: "./media/characters/tarken/hand.svg"
  58658. }
  58659. },
  58660. beam: {
  58661. height: math.unit(1.5, "feet"),
  58662. name: "Beam",
  58663. image: {
  58664. source: "./media/characters/tarken/beam.svg"
  58665. }
  58666. },
  58667. },
  58668. [
  58669. {
  58670. name: "Original Size",
  58671. height: math.unit(2.5, "meters")
  58672. },
  58673. {
  58674. name: "Macro",
  58675. height: math.unit(150, "meters"),
  58676. default: true
  58677. },
  58678. {
  58679. name: "Macro+",
  58680. height: math.unit(300, "meters")
  58681. },
  58682. {
  58683. name: "Mega",
  58684. height: math.unit(2, "km")
  58685. },
  58686. {
  58687. name: "Mega+",
  58688. height: math.unit(35, "km")
  58689. },
  58690.  {
  58691. name: "Mega++",
  58692. height: math.unit(60, "km")
  58693. },
  58694. {
  58695. name: "Giga",
  58696. height: math.unit(200, "km")
  58697. },
  58698. {
  58699. name: "Giga+",
  58700. height: math.unit(2500, "km")
  58701. },
  58702. {
  58703. name: "Giga++",
  58704. height: math.unit(6600, "km")
  58705. },
  58706. {
  58707. name: "Terra",
  58708. height: math.unit(20000, "km")
  58709. },
  58710. {
  58711. name: "Terra+",
  58712. height: math.unit(300000, "km")
  58713. },
  58714. ]
  58715. ))
  58716. characterMakers.push(() => makeCharacter(
  58717. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58718. {
  58719. magpie_dressed: {
  58720. height: math.unit(1.7, "meters"),
  58721. weight: math.unit(70, "kg"),
  58722. name: "Dressed",
  58723. image: {
  58724. source: "./media/characters/otreus/magpie-dressed.svg",
  58725. extra: 691/672,
  58726. bottom: 116/807
  58727. },
  58728. form: "magpie",
  58729. default: true
  58730. },
  58731. magpie_nude: {
  58732. height: math.unit(1.7, "meters"),
  58733. weight: math.unit(70, "kg"),
  58734. name: "Nude",
  58735. image: {
  58736. source: "./media/characters/otreus/magpie-nude.svg",
  58737. extra: 691/672,
  58738. bottom: 116/807
  58739. },
  58740. form: "magpie",
  58741. },
  58742. magpie_dressedLewd: {
  58743. height: math.unit(1.7, "meters"),
  58744. weight: math.unit(70, "kg"),
  58745. name: "Dressed (Lewd)",
  58746. image: {
  58747. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58748. extra: 691/672,
  58749. bottom: 116/807
  58750. },
  58751. form: "magpie",
  58752. },
  58753. magpie_nudeLewd: {
  58754. height: math.unit(1.7, "meters"),
  58755. weight: math.unit(70, "kg"),
  58756. name: "Nude (Lewd)",
  58757. image: {
  58758. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58759. extra: 691/672,
  58760. bottom: 116/807
  58761. },
  58762. form: "magpie",
  58763. },
  58764. magpie_leftFoot: {
  58765. height: math.unit(1.58, "feet"),
  58766. name: "Left Foot",
  58767. image: {
  58768. source: "./media/characters/otreus/magpie-left-foot.svg"
  58769. },
  58770. form: "magpie",
  58771. },
  58772. magpie_rightFoot: {
  58773. height: math.unit(1.58, "feet"),
  58774. name: "Right Foot",
  58775. image: {
  58776. source: "./media/characters/otreus/magpie-right-foot.svg"
  58777. },
  58778. form: "magpie",
  58779. },
  58780. magpie_wingspan: {
  58781. height: math.unit(2, "meters"),
  58782. weight: math.unit(70, "kg"),
  58783. name: "Wingspan",
  58784. image: {
  58785. source: "./media/characters/otreus/magpie-wingspan.svg"
  58786. },
  58787. extraAttributes: {
  58788. "wingspan": {
  58789. name: "Wingspan",
  58790. power: 1,
  58791. type: "length",
  58792. base: math.unit(3.35, "meters")
  58793. },
  58794. },
  58795. form: "magpie",
  58796. },
  58797. hippogriff_dressed: {
  58798. height: math.unit(1.7, "meters"),
  58799. weight: math.unit(70, "kg"),
  58800. name: "Dressed",
  58801. image: {
  58802. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58803. extra: 710/689,
  58804. bottom: 67/777
  58805. },
  58806. form: "hippogriff",
  58807. default: true
  58808. },
  58809. hippogriff_nude: {
  58810. height: math.unit(1.7, "meters"),
  58811. weight: math.unit(70, "kg"),
  58812. name: "Nude",
  58813. image: {
  58814. source: "./media/characters/otreus/hippogriff-nude.svg",
  58815. extra: 710/689,
  58816. bottom: 67/777
  58817. },
  58818. form: "hippogriff",
  58819. },
  58820. hippogriff_dressedLewd: {
  58821. height: math.unit(1.7, "meters"),
  58822. weight: math.unit(70, "kg"),
  58823. name: "Dressed (Lewd)",
  58824. image: {
  58825. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58826. extra: 710/689,
  58827. bottom: 67/777
  58828. },
  58829. form: "hippogriff",
  58830. },
  58831. hippogriff_nudeLewd: {
  58832. height: math.unit(1.7, "meters"),
  58833. weight: math.unit(70, "kg"),
  58834. name: "Nude (Lewd)",
  58835. image: {
  58836. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58837. extra: 710/689,
  58838. bottom: 67/777
  58839. },
  58840. form: "hippogriff",
  58841. },
  58842. },
  58843. [
  58844. {
  58845. name: "Original Size",
  58846. height: math.unit(1.7, "meters"),
  58847. allForms: true
  58848. },
  58849. {
  58850. name: "Incognito Size",
  58851. height: math.unit(2, "meters"),
  58852. allForms: true
  58853. },
  58854. {
  58855. name: "Mega",
  58856. height: math.unit(2, "km"),
  58857. allForms: true
  58858. },
  58859. {
  58860. name: "Mega+",
  58861. height: math.unit(40, "km"),
  58862. allForms: true
  58863. },
  58864. {
  58865. name: "Giga",
  58866. height: math.unit(250, "km"),
  58867. allForms: true
  58868. },
  58869. {
  58870. name: "Giga+",
  58871. height: math.unit(3000, "km"),
  58872. allForms: true
  58873. },
  58874. {
  58875. name: "Terra",
  58876. height: math.unit(20000, "km"),
  58877. allForms: true
  58878. },
  58879. {
  58880. name: "Solar (Home Size)",
  58881. height: math.unit(3e6, "km"),
  58882. allForms: true,
  58883. default: true
  58884. },
  58885. ],
  58886. {
  58887. "magpie": {
  58888. name: "Magpie",
  58889. default: true
  58890. },
  58891. "hippogriff": {
  58892. name: "Hippogriff",
  58893. },
  58894. }
  58895. ))
  58896. characterMakers.push(() => makeCharacter(
  58897. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58898. {
  58899. frontDressed: {
  58900. height: math.unit(1.8, "meters"),
  58901. weight: math.unit(90, "kg"),
  58902. name: "Front (Dressed)",
  58903. image: {
  58904. source: "./media/characters/thalia/front-dressed.svg",
  58905. extra: 478/402,
  58906. bottom: 55/533
  58907. }
  58908. },
  58909. backDressed: {
  58910. height: math.unit(1.8, "meters"),
  58911. weight: math.unit(90, "kg"),
  58912. name: "Back (Dressed)",
  58913. image: {
  58914. source: "./media/characters/thalia/back-dressed.svg",
  58915. extra: 500/424,
  58916. bottom: 15/515
  58917. }
  58918. },
  58919. frontNude: {
  58920. height: math.unit(1.8, "meters"),
  58921. weight: math.unit(90, "kg"),
  58922. name: "Front (Nude)",
  58923. image: {
  58924. source: "./media/characters/thalia/front-nude.svg",
  58925. extra: 478/402,
  58926. bottom: 55/533
  58927. }
  58928. },
  58929. backNude: {
  58930. height: math.unit(1.8, "meters"),
  58931. weight: math.unit(90, "kg"),
  58932. name: "Back (Nude)",
  58933. image: {
  58934. source: "./media/characters/thalia/back-nude.svg",
  58935. extra: 500/424,
  58936. bottom: 15/515
  58937. }
  58938. },
  58939. },
  58940. [
  58941. {
  58942. name: "Incognito",
  58943. height: math.unit(3, "meters")
  58944. },
  58945. {
  58946. name: "Macro",
  58947. height: math.unit(500, "meters")
  58948. },
  58949. {
  58950. name: "Mega",
  58951. height: math.unit(5, "km")
  58952. },
  58953. {
  58954. name: "Mega+",
  58955. height: math.unit(30, "km")
  58956. },
  58957. {
  58958. name: "Giga",
  58959. height: math.unit(350, "km")
  58960. },
  58961. {
  58962. name: "Giga+",
  58963. height: math.unit(4000, "km")
  58964. },
  58965. {
  58966. name: "Terra",
  58967. height: math.unit(35000, "km")
  58968. },
  58969. {
  58970. name: "Original Size",
  58971. height: math.unit(130000, "km")
  58972. },
  58973. {
  58974. name: "Solar (Home Size)",
  58975. height: math.unit(4e6, "km"),
  58976. default: true
  58977. },
  58978. ]
  58979. ))
  58980. characterMakers.push(() => makeCharacter(
  58981. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58982. {
  58983. front: {
  58984. height: math.unit(1.8, "meters"),
  58985. weight: math.unit(95, "kg"),
  58986. name: "Front",
  58987. image: {
  58988. source: "./media/characters/shango/front.svg",
  58989. extra: 1925/1774,
  58990. bottom: 67/1992
  58991. }
  58992. },
  58993. back: {
  58994. height: math.unit(1.8, "meters"),
  58995. weight: math.unit(95, "kg"),
  58996. name: "Back",
  58997. image: {
  58998. source: "./media/characters/shango/back.svg",
  58999. extra: 1915/1766,
  59000. bottom: 52/1967
  59001. }
  59002. },
  59003. frontLewd: {
  59004. height: math.unit(1.8, "meters"),
  59005. weight: math.unit(95, "kg"),
  59006. name: "Front (Lewd)",
  59007. image: {
  59008. source: "./media/characters/shango/front-lewd.svg",
  59009. extra: 1925/1774,
  59010. bottom: 67/1992
  59011. }
  59012. },
  59013. backLewd: {
  59014. height: math.unit(1.8, "meters"),
  59015. weight: math.unit(95, "kg"),
  59016. name: "Back (Lewd)",
  59017. image: {
  59018. source: "./media/characters/shango/back-lewd.svg",
  59019. extra: 1915/1766,
  59020. bottom: 52/1967
  59021. }
  59022. },
  59023. maw: {
  59024. height: math.unit(1.64, "feet"),
  59025. name: "Maw",
  59026. image: {
  59027. source: "./media/characters/shango/maw.svg"
  59028. }
  59029. },
  59030. dick: {
  59031. height: math.unit(2.14, "feet"),
  59032. name: "Dick",
  59033. image: {
  59034. source: "./media/characters/shango/dick.svg"
  59035. }
  59036. },
  59037. },
  59038. [
  59039. {
  59040. name: "Incognito",
  59041. height: math.unit(1.8, "meters")
  59042. },
  59043. {
  59044. name: "Home Size",
  59045. height: math.unit(60, "meters"),
  59046. default: true
  59047. },
  59048. {
  59049. name: "Macro",
  59050. height: math.unit(450, "meters")
  59051. },
  59052. {
  59053. name: "Mega",
  59054. height: math.unit(6, "km")
  59055. },
  59056. {
  59057. name: "Mega+",
  59058. height: math.unit(35, "km")
  59059. },
  59060. {
  59061. name: "Giga",
  59062. height: math.unit(500, "km")
  59063. },
  59064. {
  59065. name: "Giga+",
  59066. height: math.unit(5000, "km")
  59067. },
  59068. {
  59069. name: "Terra",
  59070. height: math.unit(60000, "km")
  59071. },
  59072. {
  59073. name: "Terra+",
  59074. height: math.unit(400000, "km")
  59075. },
  59076. ]
  59077. ))
  59078. characterMakers.push(() => makeCharacter(
  59079. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59080. {
  59081. front: {
  59082. height: math.unit(2, "meters"),
  59083. weight: math.unit(95, "kg"),
  59084. name: "Front",
  59085. image: {
  59086. source: "./media/characters/osiris-gryphon/front.svg",
  59087. extra: 1508/1313,
  59088. bottom: 87/1595
  59089. }
  59090. },
  59091. back: {
  59092. height: math.unit(2, "meters"),
  59093. weight: math.unit(95, "kg"),
  59094. name: "Back",
  59095. image: {
  59096. source: "./media/characters/osiris-gryphon/back.svg",
  59097. extra: 1436/1309,
  59098. bottom: 64/1500
  59099. }
  59100. },
  59101. frontLewd: {
  59102. height: math.unit(2, "meters"),
  59103. weight: math.unit(95, "kg"),
  59104. name: "Front-lewd",
  59105. image: {
  59106. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59107. extra: 1508/1313,
  59108. bottom: 87/1595
  59109. }
  59110. },
  59111. wing: {
  59112. height: math.unit(6.3333, "feet"),
  59113. name: "Wing",
  59114. image: {
  59115. source: "./media/characters/osiris-gryphon/wing.svg"
  59116. }
  59117. },
  59118. },
  59119. [
  59120. {
  59121. name: "Incognito",
  59122. height: math.unit(2, "meters")
  59123. },
  59124. {
  59125. name: "Home Size",
  59126. height: math.unit(30, "meters"),
  59127. default: true
  59128. },
  59129. {
  59130. name: "Macro",
  59131. height: math.unit(100, "meters")
  59132. },
  59133. {
  59134. name: "Macro+",
  59135. height: math.unit(350, "meters")
  59136. },
  59137. {
  59138. name: "Mega",
  59139. height: math.unit(40, "km")
  59140. },
  59141. {
  59142. name: "Giga",
  59143. height: math.unit(300, "km")
  59144. },
  59145. {
  59146. name: "Giga+",
  59147. height: math.unit(2000, "km")
  59148. },
  59149. {
  59150. name: "Terra",
  59151. height: math.unit(30000, "km")
  59152. },
  59153. ]
  59154. ))
  59155. characterMakers.push(() => makeCharacter(
  59156. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59157. {
  59158. front: {
  59159. height: math.unit(2.5, "meters"),
  59160. weight: math.unit(200, "kg"),
  59161. name: "Front",
  59162. image: {
  59163. source: "./media/characters/atlas-dragon/front.svg",
  59164. extra: 745/462,
  59165. bottom: 36/781
  59166. }
  59167. },
  59168. back: {
  59169. height: math.unit(2.5, "meters"),
  59170. weight: math.unit(200, "kg"),
  59171. name: "Back",
  59172. image: {
  59173. source: "./media/characters/atlas-dragon/back.svg",
  59174. extra: 848/822,
  59175. bottom: 57/905
  59176. }
  59177. },
  59178. frontLewd: {
  59179. height: math.unit(2.5, "meters"),
  59180. weight: math.unit(200, "kg"),
  59181. name: "Front (Lewd)",
  59182. image: {
  59183. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59184. extra: 745/462,
  59185. bottom: 36/781
  59186. }
  59187. },
  59188. backLewd: {
  59189. height: math.unit(2.5, "meters"),
  59190. weight: math.unit(200, "kg"),
  59191. name: "Back (Lewd)",
  59192. image: {
  59193. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59194. extra: 848/822,
  59195. bottom: 57/905
  59196. }
  59197. },
  59198. },
  59199. [
  59200. {
  59201. name: "Incognito",
  59202. height: math.unit(2.5, "meters")
  59203. },
  59204. {
  59205. name: "Small Macro",
  59206. height: math.unit(50, "meters")
  59207. },
  59208. {
  59209. name: "Macro",
  59210. height: math.unit(350, "meters")
  59211. },
  59212. {
  59213. name: "Mega",
  59214. height: math.unit(5.5, "kilometers")
  59215. },
  59216. {
  59217. name: "Mega+",
  59218. height: math.unit(50, "km")
  59219. },
  59220. {
  59221. name: "Giga",
  59222. height: math.unit(350, "km")
  59223. },
  59224. {
  59225. name: "Giga+",
  59226. height: math.unit(2000, "km")
  59227. },
  59228. {
  59229. name: "Giga++",
  59230. height: math.unit(6500, "km")
  59231. },
  59232. {
  59233. name: "Terra",
  59234. height: math.unit(30000, "km")
  59235. },
  59236. {
  59237. name: "Terra+",
  59238. height: math.unit(250000, "km")
  59239. },
  59240. {
  59241. name: "True Size",
  59242. height: math.unit(100, "multiverses"),
  59243. default: true
  59244. },
  59245. ]
  59246. ))
  59247. characterMakers.push(() => makeCharacter(
  59248. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59249. {
  59250. front: {
  59251. height: math.unit(1.8, "m"),
  59252. weight: math.unit(120, "kg"),
  59253. name: "Front",
  59254. image: {
  59255. source: "./media/characters/chey/front.svg",
  59256. extra: 1359/1270,
  59257. bottom: 18/1377
  59258. }
  59259. },
  59260. arm: {
  59261. height: math.unit(2.05, "feet"),
  59262. name: "Arm",
  59263. image: {
  59264. source: "./media/characters/chey/arm.svg"
  59265. }
  59266. },
  59267. head: {
  59268. height: math.unit(1.89, "feet"),
  59269. name: "Head",
  59270. image: {
  59271. source: "./media/characters/chey/head.svg"
  59272. }
  59273. },
  59274. },
  59275. [
  59276. {
  59277. name: "Original Size",
  59278. height: math.unit(5, "cm")
  59279. },
  59280. {
  59281. name: "Incognito Size",
  59282. height: math.unit(2.4, "m")
  59283. },
  59284. {
  59285. name: "Home Size",
  59286. height: math.unit(200, "meters"),
  59287. default: true
  59288. },
  59289. {
  59290. name: "Mega",
  59291. height: math.unit(2, "km")
  59292. },
  59293. {
  59294. name: "Giga (Preferred Size)",
  59295. height: math.unit(2000, "km")
  59296. },
  59297. {
  59298. name: "Giga+",
  59299. height: math.unit(6000, "km")
  59300. },
  59301. {
  59302. name: "Terra",
  59303. height: math.unit(17000, "km")
  59304. },
  59305. {
  59306. name: "Terra+",
  59307. height: math.unit(75000, "km")
  59308. },
  59309. {
  59310. name: "Terra++",
  59311. height: math.unit(225000, "km")
  59312. },
  59313. ]
  59314. ))
  59315. characterMakers.push(() => makeCharacter(
  59316. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59317. {
  59318. side: {
  59319. height: math.unit(7.8, "meters"),
  59320. name: "Side",
  59321. image: {
  59322. source: "./media/characters/ragnarok/side.svg",
  59323. extra: 725/621,
  59324. bottom: 72/797
  59325. }
  59326. },
  59327. },
  59328. [
  59329. {
  59330. name: "Normal",
  59331. height: math.unit(7.8, "meters"),
  59332. default: true
  59333. },
  59334. ]
  59335. ))
  59336. characterMakers.push(() => makeCharacter(
  59337. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59338. {
  59339. hyena_front: {
  59340. height: math.unit(2.1, "meters"),
  59341. weight: math.unit(110, "kg"),
  59342. name: "Front",
  59343. image: {
  59344. source: "./media/characters/nima/hyena-front.svg",
  59345. extra: 1904/1796,
  59346. bottom: 67/1971
  59347. },
  59348. form: "hyena",
  59349. },
  59350. hyena_back: {
  59351. height: math.unit(2.1, "meters"),
  59352. weight: math.unit(110, "kg"),
  59353. name: "Back",
  59354. image: {
  59355. source: "./media/characters/nima/hyena-back.svg",
  59356. extra: 1964/1884,
  59357. bottom: 35/1999
  59358. },
  59359. form: "hyena",
  59360. },
  59361. shark_front: {
  59362. height: math.unit(1.95, "meters"),
  59363. weight: math.unit(110, "kg"),
  59364. name: "Front",
  59365. image: {
  59366. source: "./media/characters/nima/shark-front.svg",
  59367. extra: 2238/2013,
  59368. bottom: 0/223
  59369. },
  59370. form: "shark",
  59371. },
  59372. paw: {
  59373. height: math.unit(1, "feet"),
  59374. name: "Paw",
  59375. image: {
  59376. source: "./media/characters/nima/paw.svg"
  59377. }
  59378. },
  59379. circlet: {
  59380. height: math.unit(0.3, "feet"),
  59381. name: "Circlet",
  59382. image: {
  59383. source: "./media/characters/nima/circlet.svg"
  59384. }
  59385. },
  59386. necklace: {
  59387. height: math.unit(1.2, "feet"),
  59388. name: "Necklace",
  59389. image: {
  59390. source: "./media/characters/nima/necklace.svg"
  59391. }
  59392. },
  59393. bracelet: {
  59394. height: math.unit(0.51, "feet"),
  59395. name: "Bracelet",
  59396. image: {
  59397. source: "./media/characters/nima/bracelet.svg"
  59398. }
  59399. },
  59400. armband: {
  59401. height: math.unit(1.3, "feet"),
  59402. name: "Armband",
  59403. image: {
  59404. source: "./media/characters/nima/armband.svg"
  59405. }
  59406. },
  59407. },
  59408. [
  59409. {
  59410. name: "Incognito",
  59411. height: math.unit(2.1, "meters"),
  59412. allForms: true
  59413. },
  59414. {
  59415. name: "Small Macro",
  59416. height: math.unit(50, "meters"),
  59417. allForms: true
  59418. },
  59419. {
  59420. name: "Macro",
  59421. height: math.unit(200, "meters"),
  59422. allForms: true
  59423. },
  59424. {
  59425. name: "Mega",
  59426. height: math.unit(2.5, "km"),
  59427. allForms: true
  59428. },
  59429. {
  59430. name: "Mega+",
  59431. height: math.unit(30, "km"),
  59432. allForms: true
  59433. },
  59434. {
  59435. name: "Giga (Home Size)",
  59436. height: math.unit(400, "km"),
  59437. allForms: true,
  59438. default: true
  59439. },
  59440. {
  59441. name: "Giga+",
  59442. height: math.unit(2500, "km"),
  59443. allForms: true
  59444. },
  59445. {
  59446. name: "Giga++",
  59447. height: math.unit(8000, "km"),
  59448. allForms: true
  59449. },
  59450. {
  59451. name: "Terra",
  59452. height: math.unit(20000, "km"),
  59453. allForms: true
  59454. },
  59455. {
  59456. name: "Terra+",
  59457. height: math.unit(70000, "km"),
  59458. allForms: true
  59459. },
  59460. {
  59461. name: "Terra++",
  59462. height: math.unit(600000, "km"),
  59463. allForms: true
  59464. },
  59465. {
  59466. name: "Galactic",
  59467. height: math.unit(40, "galaxies"),
  59468. allForms: true
  59469. },
  59470. {
  59471. name: "Universal",
  59472. height: math.unit(40, "universes"),
  59473. allForms: true
  59474. },
  59475. ],
  59476. {
  59477. "hyena": {
  59478. name: "Hyena",
  59479. default: true
  59480. },
  59481. "shark": {
  59482. name: "Shark",
  59483. },
  59484. }
  59485. ))
  59486. characterMakers.push(() => makeCharacter(
  59487. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59488. {
  59489. anthro_front: {
  59490. height: math.unit(1.5, "meters"),
  59491. name: "Front",
  59492. image: {
  59493. source: "./media/characters/adelaide/anthro-front.svg",
  59494. extra: 860/783,
  59495. bottom: 60/920
  59496. },
  59497. form: "anthro",
  59498. default: true
  59499. },
  59500. hand: {
  59501. height: math.unit(0.65, "feet"),
  59502. name: "Hand",
  59503. image: {
  59504. source: "./media/characters/adelaide/hand.svg"
  59505. },
  59506. form: "anthro"
  59507. },
  59508. foot: {
  59509. height: math.unit(1.38 * 259 / 314, "feet"),
  59510. name: "Foot",
  59511. image: {
  59512. source: "./media/characters/adelaide/foot.svg",
  59513. extra: 259/259,
  59514. bottom: 55/314
  59515. },
  59516. form: "anthro"
  59517. },
  59518. feather: {
  59519. height: math.unit(0.85, "feet"),
  59520. name: "Feather",
  59521. image: {
  59522. source: "./media/characters/adelaide/feather.svg"
  59523. },
  59524. form: "anthro"
  59525. },
  59526. feral_side: {
  59527. height: math.unit(1, "meters"),
  59528. name: "Side",
  59529. image: {
  59530. source: "./media/characters/adelaide/feral-side.svg",
  59531. extra: 550/467,
  59532. bottom: 37/587
  59533. },
  59534. form: "feral",
  59535. default: true
  59536. },
  59537. feral_hand: {
  59538. height: math.unit(0.58, "feet"),
  59539. name: "Hand",
  59540. image: {
  59541. source: "./media/characters/adelaide/hand.svg"
  59542. },
  59543. form: "feral"
  59544. },
  59545. feral_foot: {
  59546. height: math.unit(1.2 * 259 / 314, "feet"),
  59547. name: "Foot",
  59548. image: {
  59549. source: "./media/characters/adelaide/foot.svg",
  59550. extra: 259/259,
  59551. bottom: 55/314
  59552. },
  59553. form: "feral"
  59554. },
  59555. feral_feather: {
  59556. height: math.unit(0.63, "feet"),
  59557. name: "Feather",
  59558. image: {
  59559. source: "./media/characters/adelaide/feather.svg"
  59560. },
  59561. form: "feral"
  59562. },
  59563. },
  59564. [
  59565. {
  59566. name: "Normal",
  59567. height: math.unit(1.5, "meters"),
  59568. form: "anthro",
  59569. default: true
  59570. },
  59571. {
  59572. name: "Normal",
  59573. height: math.unit(1, "meters"),
  59574. form: "feral",
  59575. default: true
  59576. },
  59577. ],
  59578. {
  59579. "anthro": {
  59580. name: "Anthro",
  59581. default: true
  59582. },
  59583. "feral": {
  59584. name: "Feral",
  59585. },
  59586. }
  59587. ))
  59588. characterMakers.push(() => makeCharacter(
  59589. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59590. {
  59591. front: {
  59592. height: math.unit(2.5, "meters"),
  59593. name: "Front",
  59594. image: {
  59595. source: "./media/characters/goa/front.svg",
  59596. extra: 1109/1013,
  59597. bottom: 150/1259
  59598. }
  59599. },
  59600. },
  59601. [
  59602. {
  59603. name: "Normal",
  59604. height: math.unit(2.5, "meters"),
  59605. default: true
  59606. },
  59607. ]
  59608. ))
  59609. characterMakers.push(() => makeCharacter(
  59610. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59611. {
  59612. front: {
  59613. height: math.unit(2, "meters"),
  59614. weight: math.unit(100, "kg"),
  59615. name: "Front",
  59616. image: {
  59617. source: "./media/characters/kiki-weavile/front.svg",
  59618. extra: 357/332,
  59619. bottom: 60/417
  59620. }
  59621. },
  59622. },
  59623. [
  59624. {
  59625. name: "Normal",
  59626. height: math.unit(2, "meters"),
  59627. default: true
  59628. },
  59629. ]
  59630. ))
  59631. characterMakers.push(() => makeCharacter(
  59632. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59633. {
  59634. side: {
  59635. height: math.unit(1.6, "meters"),
  59636. name: "Side",
  59637. image: {
  59638. source: "./media/characters/liza/side.svg",
  59639. extra: 943/915,
  59640. bottom: 72/1015
  59641. }
  59642. },
  59643. },
  59644. [
  59645. {
  59646. name: "Normal",
  59647. height: math.unit(1.6, "meters"),
  59648. default: true
  59649. },
  59650. ]
  59651. ))
  59652. characterMakers.push(() => makeCharacter(
  59653. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59654. {
  59655. side: {
  59656. height: math.unit(2.5, "meters"),
  59657. preyCapacity: math.unit(1, "people"),
  59658. name: "Side",
  59659. image: {
  59660. source: "./media/characters/persephone-sweetbreath/side.svg",
  59661. extra: 796/700,
  59662. bottom: 44/840
  59663. }
  59664. },
  59665. sideVore: {
  59666. height: math.unit(2.5, "meters"),
  59667. preyCapacity: math.unit(1, "people"),
  59668. name: "Side (Full)",
  59669. image: {
  59670. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59671. extra: 796/700,
  59672. bottom: 44/840
  59673. }
  59674. },
  59675. },
  59676. [
  59677. {
  59678. name: "Normal",
  59679. height: math.unit(2.5, "meters"),
  59680. default: true
  59681. },
  59682. ]
  59683. ))
  59684. characterMakers.push(() => makeCharacter(
  59685. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59686. {
  59687. front: {
  59688. height: math.unit(32, "meters"),
  59689. name: "Front",
  59690. image: {
  59691. source: "./media/characters/pierce/front.svg",
  59692. extra: 1695/1475,
  59693. bottom: 185/1880
  59694. }
  59695. },
  59696. side: {
  59697. height: math.unit(32, "meters"),
  59698. name: "Side",
  59699. image: {
  59700. source: "./media/characters/pierce/side.svg",
  59701. extra: 974/859,
  59702. bottom: 43/1017
  59703. }
  59704. },
  59705. frontWingless: {
  59706. height: math.unit(32, "meters"),
  59707. name: "Front (Wingless)",
  59708. image: {
  59709. source: "./media/characters/pierce/front-wingless.svg",
  59710. extra: 1695/1475,
  59711. bottom: 185/1880
  59712. }
  59713. },
  59714. sideWingless: {
  59715. height: math.unit(32, "meters"),
  59716. name: "Side (Wingless)",
  59717. image: {
  59718. source: "./media/characters/pierce/side-wingless.svg",
  59719. extra: 974/859,
  59720. bottom: 43/1017
  59721. }
  59722. },
  59723. maw: {
  59724. height: math.unit(19.3, "meters"),
  59725. name: "Maw",
  59726. image: {
  59727. source: "./media/characters/pierce/maw.svg"
  59728. }
  59729. },
  59730. },
  59731. [
  59732. {
  59733. name: "Small",
  59734. height: math.unit(8.5, "meters")
  59735. },
  59736. {
  59737. name: "Normal",
  59738. height: math.unit(32, "meters"),
  59739. default: true
  59740. },
  59741. ]
  59742. ))
  59743. characterMakers.push(() => makeCharacter(
  59744. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59745. {
  59746. front: {
  59747. height: math.unit(2.3, "meters"),
  59748. weight: math.unit(165, "kg"),
  59749. name: "Front",
  59750. image: {
  59751. source: "./media/characters/shira/front.svg",
  59752. extra: 924/919,
  59753. bottom: 17/941
  59754. },
  59755. form: "cobra",
  59756. default: true
  59757. },
  59758. back: {
  59759. height: math.unit(2.3, "meters"),
  59760. weight: math.unit(165, "kg"),
  59761. name: "Back",
  59762. image: {
  59763. source: "./media/characters/shira/back.svg",
  59764. extra: 928/922,
  59765. bottom: 18/946
  59766. },
  59767. form: "cobra"
  59768. },
  59769. frontLewd: {
  59770. height: math.unit(2.3, "meters"),
  59771. weight: math.unit(165, "kg"),
  59772. name: "Front (Lewd)",
  59773. image: {
  59774. source: "./media/characters/shira/front-lewd.svg",
  59775. extra: 924/919,
  59776. bottom: 17/941
  59777. },
  59778. form: "cobra"
  59779. },
  59780. backLewd: {
  59781. height: math.unit(2.3, "meters"),
  59782. weight: math.unit(165, "kg"),
  59783. name: "Back (Lewd)",
  59784. image: {
  59785. source: "./media/characters/shira/back-lewd.svg",
  59786. extra: 928/922,
  59787. bottom: 18/946
  59788. },
  59789. form: "cobra"
  59790. },
  59791. maw: {
  59792. height: math.unit(1.14, "feet"),
  59793. name: "Maw",
  59794. image: {
  59795. source: "./media/characters/shira/maw.svg"
  59796. },
  59797. form: "cobra"
  59798. },
  59799. magma_front: {
  59800. height: math.unit(2.3, "meters"),
  59801. weight: math.unit(165, "kg"),
  59802. name: "Front",
  59803. image: {
  59804. source: "./media/characters/shira/magma-front.svg",
  59805. extra: 1870/1693,
  59806. bottom: 24/1894
  59807. },
  59808. form: "magma",
  59809. },
  59810. magma_back: {
  59811. height: math.unit(2.3, "meters"),
  59812. weight: math.unit(165, "kg"),
  59813. name: "Back",
  59814. image: {
  59815. source: "./media/characters/shira/magma-back.svg",
  59816. extra: 1918/1756,
  59817. bottom: 46/1964
  59818. },
  59819. form: "magma",
  59820. },
  59821. },
  59822. [
  59823. {
  59824. name: "Incognito",
  59825. height: math.unit(2.3, "meters"),
  59826. allForms: true
  59827. },
  59828. {
  59829. name: "Home Size",
  59830. height: math.unit(150, "meters"),
  59831. default: true,
  59832. allForms: true
  59833. },
  59834. {
  59835. name: "Macro",
  59836. height: math.unit(2, "km"),
  59837. allForms: true
  59838. },
  59839. {
  59840. name: "Mega",
  59841. height: math.unit(30, "km"),
  59842. allForms: true
  59843. },
  59844. {
  59845. name: "Giga",
  59846. height: math.unit(450, "km"),
  59847. allForms: true
  59848. },
  59849. {
  59850. name: "Giga+",
  59851. height: math.unit(3000, "km"),
  59852. allForms: true
  59853. },
  59854. {
  59855. name: "Giga++",
  59856. height: math.unit(6000, "km"),
  59857. allForms: true
  59858. },
  59859. {
  59860. name: "Terra",
  59861. height: math.unit(80000, "km"),
  59862. allForms: true
  59863. },
  59864. {
  59865. name: "Terra+",
  59866. height: math.unit(350000, "km"),
  59867. allForms: true
  59868. },
  59869. {
  59870. name: "Solar",
  59871. height: math.unit(1e6, "km"),
  59872. allForms: true
  59873. },
  59874. ],
  59875. {
  59876. "cobra": {
  59877. name: "Cobra",
  59878. default: true
  59879. },
  59880. "magma": {
  59881. name: "Magma Dragon",
  59882. },
  59883. }
  59884. ))
  59885. characterMakers.push(() => makeCharacter(
  59886. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59887. {
  59888. front: {
  59889. height: math.unit(2, "meters"),
  59890. weight: math.unit(160, "kg"),
  59891. name: "Front",
  59892. image: {
  59893. source: "./media/characters/daxerios/front.svg",
  59894. extra: 1334/1277,
  59895. bottom: 45/1379
  59896. }
  59897. },
  59898. frontLewd: {
  59899. height: math.unit(2, "meters"),
  59900. weight: math.unit(160, "kg"),
  59901. name: "Front (Lewd)",
  59902. image: {
  59903. source: "./media/characters/daxerios/front-lewd.svg",
  59904. extra: 1334/1277,
  59905. bottom: 45/1379
  59906. }
  59907. },
  59908. dick: {
  59909. height: math.unit(2.35, "feet"),
  59910. name: "Dick",
  59911. image: {
  59912. source: "./media/characters/daxerios/dick.svg"
  59913. }
  59914. },
  59915. },
  59916. [
  59917. {
  59918. name: "\"Small\"",
  59919. height: math.unit(5, "meters")
  59920. },
  59921. {
  59922. name: "Original Size",
  59923. height: math.unit(500, "meters"),
  59924. default: true
  59925. },
  59926. {
  59927. name: "Mega",
  59928. height: math.unit(2, "km")
  59929. },
  59930. {
  59931. name: "Mega+",
  59932. height: math.unit(35, "km")
  59933. },
  59934. {
  59935. name: "Giga",
  59936. height: math.unit(250, "km")
  59937. },
  59938. {
  59939. name: "Giga+",
  59940. height: math.unit(3000, "km")
  59941. },
  59942. {
  59943. name: "Terra",
  59944. height: math.unit(25000, "km")
  59945. },
  59946. {
  59947. name: "Terra+",
  59948. height: math.unit(300000, "km")
  59949. },
  59950. {
  59951. name: "Solar",
  59952. height: math.unit(1e6, "km")
  59953. },
  59954. ]
  59955. ))
  59956. characterMakers.push(() => makeCharacter(
  59957. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59958. {
  59959. front: {
  59960. height: math.unit(8 + 4/12, "feet"),
  59961. weight: math.unit(464, "lb"),
  59962. name: "Front",
  59963. image: {
  59964. source: "./media/characters/caveat/front.svg",
  59965. extra: 1861/1678,
  59966. bottom: 40/1901
  59967. }
  59968. },
  59969. },
  59970. [
  59971. {
  59972. name: "Normal",
  59973. height: math.unit(8 + 4/12, "feet"),
  59974. default: true
  59975. },
  59976. ]
  59977. ))
  59978. characterMakers.push(() => makeCharacter(
  59979. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59980. {
  59981. front: {
  59982. height: math.unit(12, "feet"),
  59983. weight: math.unit(1800, "lb"),
  59984. name: "Front",
  59985. image: {
  59986. source: "./media/characters/centbair/front.svg",
  59987. extra: 781/663,
  59988. bottom: 25/806
  59989. }
  59990. },
  59991. frontNsfw: {
  59992. height: math.unit(12, "feet"),
  59993. weight: math.unit(1800, "lb"),
  59994. name: "Front (NSFW)",
  59995. image: {
  59996. source: "./media/characters/centbair/front-nsfw.svg",
  59997. extra: 781/663,
  59998. bottom: 25/806
  59999. }
  60000. },
  60001. back: {
  60002. height: math.unit(12, "feet"),
  60003. weight: math.unit(1800, "lb"),
  60004. name: "Back",
  60005. image: {
  60006. source: "./media/characters/centbair/back.svg",
  60007. extra: 808/761,
  60008. bottom: 19/827
  60009. }
  60010. },
  60011. dick: {
  60012. height: math.unit(6.5, "feet"),
  60013. name: "Dick",
  60014. image: {
  60015. source: "./media/characters/centbair/dick.svg"
  60016. }
  60017. },
  60018. slit: {
  60019. height: math.unit(3.25, "feet"),
  60020. name: "Slit",
  60021. image: {
  60022. source: "./media/characters/centbair/slit.svg"
  60023. }
  60024. },
  60025. },
  60026. [
  60027. {
  60028. name: "Normal",
  60029. height: math.unit(12, "feet"),
  60030. default: true
  60031. },
  60032. ]
  60033. ))
  60034. characterMakers.push(() => makeCharacter(
  60035. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60036. {
  60037. front: {
  60038. height: math.unit(5 + 7/12, "feet"),
  60039. name: "Front",
  60040. image: {
  60041. source: "./media/characters/andy/front.svg",
  60042. extra: 634/588,
  60043. bottom: 36/670
  60044. },
  60045. extraAttributes: {
  60046. "pawLength": {
  60047. name: "Paw Length",
  60048. power: 1,
  60049. type: "length",
  60050. base: math.unit(1, "feet")
  60051. },
  60052. }
  60053. },
  60054. side: {
  60055. height: math.unit(5 + 7/12, "feet"),
  60056. name: "Side",
  60057. image: {
  60058. source: "./media/characters/andy/side.svg",
  60059. extra: 641/596,
  60060. bottom: 34/675
  60061. },
  60062. extraAttributes: {
  60063. "pawLength": {
  60064. name: "Paw Length",
  60065. power: 1,
  60066. type: "length",
  60067. base: math.unit(1, "feet")
  60068. },
  60069. }
  60070. },
  60071. back: {
  60072. height: math.unit(5 + 7/12, "feet"),
  60073. name: "Back",
  60074. image: {
  60075. source: "./media/characters/andy/back.svg",
  60076. extra: 618/583,
  60077. bottom: 39/657
  60078. },
  60079. extraAttributes: {
  60080. "pawLength": {
  60081. name: "Paw Length",
  60082. power: 1,
  60083. type: "length",
  60084. base: math.unit(1, "feet")
  60085. },
  60086. }
  60087. },
  60088. paw: {
  60089. height: math.unit(1.13, "feet"),
  60090. name: "Paw",
  60091. image: {
  60092. source: "./media/characters/andy/paw.svg"
  60093. }
  60094. },
  60095. },
  60096. [
  60097. {
  60098. name: "Micro",
  60099. height: math.unit(4, "inches")
  60100. },
  60101. {
  60102. name: "Normal",
  60103. height: math.unit(5 + 7/12, "feet"),
  60104. default: true
  60105. },
  60106. {
  60107. name: "Macro",
  60108. height: math.unit(390.42, "feet")
  60109. },
  60110. ]
  60111. ))
  60112. characterMakers.push(() => makeCharacter(
  60113. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60114. {
  60115. front: {
  60116. height: math.unit(7, "feet"),
  60117. weight: math.unit(250, "lb"),
  60118. name: "Front",
  60119. image: {
  60120. source: "./media/characters/vix-titan/front.svg",
  60121. extra: 460/428,
  60122. bottom: 15/475
  60123. },
  60124. extraAttributes: {
  60125. "pawWidth": {
  60126. name: "Paw Width",
  60127. power: 1,
  60128. type: "length",
  60129. base: math.unit(0.75, "feet")
  60130. },
  60131. }
  60132. },
  60133. },
  60134. [
  60135. {
  60136. name: "Normal",
  60137. height: math.unit(7, "feet"),
  60138. default: true
  60139. },
  60140. {
  60141. name: "Giant",
  60142. height: math.unit(1500, "feet")
  60143. },
  60144. {
  60145. name: "Mega",
  60146. height: math.unit(10, "miles")
  60147. },
  60148. {
  60149. name: "Giga",
  60150. height: math.unit(150, "miles")
  60151. },
  60152. {
  60153. name: "Tera",
  60154. height: math.unit(144000, "miles")
  60155. },
  60156. ]
  60157. ))
  60158. characterMakers.push(() => makeCharacter(
  60159. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60160. {
  60161. front: {
  60162. height: math.unit(6 + 2/12, "feet"),
  60163. name: "Front",
  60164. image: {
  60165. source: "./media/characters/reiku/front.svg",
  60166. extra: 1910/1757,
  60167. bottom: 103/2013
  60168. },
  60169. extraAttributes: {
  60170. "thighThickness": {
  60171. name: "Thigh Thickness",
  60172. power: 1,
  60173. type: "length",
  60174. base: math.unit(1.12, "feet")
  60175. },
  60176. "assThickness": {
  60177. name: "Ass Thickness",
  60178. power: 1,
  60179. type: "length",
  60180. base: math.unit(1.12*2, "feet")
  60181. },
  60182. }
  60183. },
  60184. side: {
  60185. height: math.unit(6 + 2/12, "feet"),
  60186. name: "Side",
  60187. image: {
  60188. source: "./media/characters/reiku/side.svg",
  60189. extra: 1846/1748,
  60190. bottom: 99/1945
  60191. },
  60192. extraAttributes: {
  60193. "thighThickness": {
  60194. name: "Thigh Thickness",
  60195. power: 1,
  60196. type: "length",
  60197. base: math.unit(1.12, "feet")
  60198. },
  60199. "assThickness": {
  60200. name: "Ass Thickness",
  60201. power: 1,
  60202. type: "length",
  60203. base: math.unit(1.12*2, "feet")
  60204. },
  60205. }
  60206. },
  60207. back: {
  60208. height: math.unit(6 + 2/12, "feet"),
  60209. name: "Back",
  60210. image: {
  60211. source: "./media/characters/reiku/back.svg",
  60212. extra: 1941/1786,
  60213. bottom: 34/1975
  60214. },
  60215. extraAttributes: {
  60216. "thighThickness": {
  60217. name: "Thigh Thickness",
  60218. power: 1,
  60219. type: "length",
  60220. base: math.unit(1.12, "feet")
  60221. },
  60222. "assThickness": {
  60223. name: "Ass Thickness",
  60224. power: 1,
  60225. type: "length",
  60226. base: math.unit(1.12*2, "feet")
  60227. },
  60228. }
  60229. },
  60230. head: {
  60231. height: math.unit(1.8, "feet"),
  60232. name: "Head",
  60233. image: {
  60234. source: "./media/characters/reiku/head.svg"
  60235. }
  60236. },
  60237. tailTop: {
  60238. height: math.unit(8.4, "feet"),
  60239. name: "Tail (Top)",
  60240. image: {
  60241. source: "./media/characters/reiku/tail-top.svg"
  60242. }
  60243. },
  60244. tailBottom: {
  60245. height: math.unit(8.4, "feet"),
  60246. name: "Tail (Bottom)",
  60247. image: {
  60248. source: "./media/characters/reiku/tail-bottom.svg"
  60249. }
  60250. },
  60251. foot: {
  60252. height: math.unit(2.6, "feet"),
  60253. name: "Foot",
  60254. image: {
  60255. source: "./media/characters/reiku/foot.svg"
  60256. }
  60257. },
  60258. footCurled: {
  60259. height: math.unit(2.3, "feet"),
  60260. name: "Foot (Curled)",
  60261. image: {
  60262. source: "./media/characters/reiku/foot-curled.svg"
  60263. }
  60264. },
  60265. footSide: {
  60266. height: math.unit(1.26, "feet"),
  60267. name: "Foot (Side)",
  60268. image: {
  60269. source: "./media/characters/reiku/foot-side.svg"
  60270. }
  60271. },
  60272. },
  60273. [
  60274. {
  60275. name: "Normal",
  60276. height: math.unit(6 + 2/12, "feet"),
  60277. default: true
  60278. },
  60279. ]
  60280. ))
  60281. characterMakers.push(() => makeCharacter(
  60282. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60283. {
  60284. front: {
  60285. height: math.unit(7, "feet"),
  60286. weight: math.unit(500, "kg"),
  60287. name: "Front",
  60288. image: {
  60289. source: "./media/characters/cialda/front.svg",
  60290. extra: 912/745,
  60291. bottom: 55/967
  60292. }
  60293. },
  60294. },
  60295. [
  60296. {
  60297. name: "Normal",
  60298. height: math.unit(7, "feet"),
  60299. default: true
  60300. },
  60301. ]
  60302. ))
  60303. characterMakers.push(() => makeCharacter(
  60304. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60305. {
  60306. side: {
  60307. height: math.unit(6, "feet"),
  60308. weight: math.unit(600, "lb"),
  60309. preyCapacity: math.unit(25, "liters"),
  60310. name: "Side",
  60311. image: {
  60312. source: "./media/characters/darkkin/side.svg",
  60313. extra: 1597/1447,
  60314. bottom: 101/1698
  60315. }
  60316. },
  60317. },
  60318. [
  60319. {
  60320. name: "Canon Height",
  60321. height: math.unit(568, "feet"),
  60322. default: true
  60323. },
  60324. ]
  60325. ))
  60326. characterMakers.push(() => makeCharacter(
  60327. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60328. {
  60329. front: {
  60330. height: math.unit(6, "feet"),
  60331. weight: math.unit(1500, "lb"),
  60332. preyCapacity: math.unit(3, "people"),
  60333. name: "Front",
  60334. image: {
  60335. source: "./media/characters/livnia/front.svg",
  60336. extra: 934/932,
  60337. bottom: 83/1017
  60338. }
  60339. },
  60340. back: {
  60341. height: math.unit(6, "feet"),
  60342. weight: math.unit(1500, "lb"),
  60343. preyCapacity: math.unit(3, "people"),
  60344. name: "Back",
  60345. image: {
  60346. source: "./media/characters/livnia/back.svg",
  60347. extra: 916/915,
  60348. bottom: 58/974
  60349. }
  60350. },
  60351. head: {
  60352. height: math.unit(1.53, "feet"),
  60353. name: "Head",
  60354. image: {
  60355. source: "./media/characters/livnia/head.svg"
  60356. }
  60357. },
  60358. maw: {
  60359. height: math.unit(0.78, "feet"),
  60360. name: "Maw",
  60361. image: {
  60362. source: "./media/characters/livnia/maw.svg"
  60363. }
  60364. },
  60365. genitals: {
  60366. height: math.unit(0.35, "feet"),
  60367. name: "Genitals",
  60368. image: {
  60369. source: "./media/characters/livnia/genitals.svg"
  60370. }
  60371. },
  60372. },
  60373. [
  60374. {
  60375. name: "Normal",
  60376. height: math.unit(1000, "feet"),
  60377. default: true
  60378. },
  60379. ]
  60380. ))
  60381. characterMakers.push(() => makeCharacter(
  60382. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60383. {
  60384. front: {
  60385. height: math.unit(4, "feet"),
  60386. weight: math.unit(73, "lb"),
  60387. name: "Front",
  60388. image: {
  60389. source: "./media/characters/hayaku/front.svg",
  60390. extra: 1011/888,
  60391. bottom: 33/1044
  60392. }
  60393. },
  60394. back: {
  60395. height: math.unit(4, "feet"),
  60396. weight: math.unit(73, "lb"),
  60397. name: "Back",
  60398. image: {
  60399. source: "./media/characters/hayaku/back.svg",
  60400. extra: 1040/930,
  60401. bottom: 20/1060
  60402. }
  60403. },
  60404. },
  60405. [
  60406. {
  60407. name: "Normal",
  60408. height: math.unit(4, "feet"),
  60409. default: true
  60410. },
  60411. ]
  60412. ))
  60413. characterMakers.push(() => makeCharacter(
  60414. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60415. {
  60416. front: {
  60417. height: math.unit(6 + 7/12, "feet"),
  60418. weight: math.unit(300, "lb"),
  60419. name: "Front",
  60420. image: {
  60421. source: "./media/characters/athena-bryzant/front.svg",
  60422. extra: 870/835,
  60423. bottom: 33/903
  60424. }
  60425. },
  60426. back: {
  60427. height: math.unit(6 + 7/12, "feet"),
  60428. weight: math.unit(300, "lb"),
  60429. name: "Back",
  60430. image: {
  60431. source: "./media/characters/athena-bryzant/back.svg",
  60432. extra: 858/823,
  60433. bottom: 30/888
  60434. }
  60435. },
  60436. head: {
  60437. height: math.unit(2.38, "feet"),
  60438. name: "Head",
  60439. image: {
  60440. source: "./media/characters/athena-bryzant/head.svg"
  60441. }
  60442. },
  60443. wings: {
  60444. height: math.unit(2.85, "feet"),
  60445. name: "Wings",
  60446. image: {
  60447. source: "./media/characters/athena-bryzant/wings.svg"
  60448. }
  60449. },
  60450. },
  60451. [
  60452. {
  60453. name: "Normal",
  60454. height: math.unit(6 + 7/12, "feet"),
  60455. default: true
  60456. },
  60457. {
  60458. name: "Big",
  60459. height: math.unit(8, "feet")
  60460. },
  60461. {
  60462. name: "Very Big",
  60463. height: math.unit(11, "feet")
  60464. },
  60465. ]
  60466. ))
  60467. characterMakers.push(() => makeCharacter(
  60468. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60469. {
  60470. side: {
  60471. height: math.unit(3, "meters"),
  60472. weight: math.unit(7500, "kg"),
  60473. preyCapacity: math.unit(1e12, "people"),
  60474. name: "Side",
  60475. image: {
  60476. source: "./media/characters/zel-kesh/side.svg",
  60477. extra: 910/407,
  60478. bottom: 147/1057
  60479. }
  60480. },
  60481. },
  60482. [
  60483. {
  60484. name: "Normal",
  60485. height: math.unit(3, "meters"),
  60486. default: true
  60487. },
  60488. ]
  60489. ))
  60490. characterMakers.push(() => makeCharacter(
  60491. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60492. {
  60493. front: {
  60494. height: math.unit(2, "meters"),
  60495. weight: math.unit(95, "kg"),
  60496. name: "Front",
  60497. image: {
  60498. source: "./media/characters/kane-fox/front.svg",
  60499. extra: 945/888,
  60500. bottom: 27/972
  60501. }
  60502. },
  60503. back: {
  60504. height: math.unit(2, "meters"),
  60505. weight: math.unit(95, "kg"),
  60506. name: "Back",
  60507. image: {
  60508. source: "./media/characters/kane-fox/back.svg",
  60509. extra: 959/914,
  60510. bottom: 15/974
  60511. }
  60512. },
  60513. frontLewd: {
  60514. height: math.unit(2, "meters"),
  60515. weight: math.unit(95, "kg"),
  60516. name: "Front (Lewd)",
  60517. image: {
  60518. source: "./media/characters/kane-fox/front-lewd.svg",
  60519. extra: 945/888,
  60520. bottom: 27/972
  60521. }
  60522. },
  60523. },
  60524. [
  60525. {
  60526. name: "Home Size",
  60527. height: math.unit(2, "meters"),
  60528. default: true
  60529. },
  60530. {
  60531. name: "Macro",
  60532. height: math.unit(200, "meters")
  60533. },
  60534. {
  60535. name: "Small Mega",
  60536. height: math.unit(3, "km")
  60537. },
  60538. {
  60539. name: "Mega",
  60540. height: math.unit(50, "km")
  60541. },
  60542. {
  60543. name: "Giga",
  60544. height: math.unit(200, "km")
  60545. },
  60546. {
  60547. name: "Giga+",
  60548. height: math.unit(2500, "km")
  60549. },
  60550. {
  60551. name: "Terra",
  60552. height: math.unit(70000, "km")
  60553. },
  60554. {
  60555. name: "Terra+",
  60556. height: math.unit(150000, "km")
  60557. },
  60558. {
  60559. name: "Terra++",
  60560. height: math.unit(400000, "km")
  60561. },
  60562. ]
  60563. ))
  60564. characterMakers.push(() => makeCharacter(
  60565. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60566. {
  60567. otter_front: {
  60568. height: math.unit(1.8, "meters"),
  60569. weight: math.unit(90, "kg"),
  60570. name: "Front",
  60571. image: {
  60572. source: "./media/characters/ayranus/otter-front.svg",
  60573. extra: 468/452,
  60574. bottom: 43/511
  60575. },
  60576. form: "otter",
  60577. },
  60578. otter_frontLewd: {
  60579. height: math.unit(1.8, "meters"),
  60580. weight: math.unit(90, "kg"),
  60581. name: "Front (Lewd)",
  60582. image: {
  60583. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60584. extra: 468/452,
  60585. bottom: 43/511
  60586. },
  60587. form: "otter",
  60588. },
  60589. lionbat_front: {
  60590. height: math.unit(1.8, "meters"),
  60591. weight: math.unit(90, "kg"),
  60592. name: "Front (Lewd)",
  60593. image: {
  60594. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60595. extra: 797/740,
  60596. bottom: 78/875
  60597. },
  60598. form: "lionbat",
  60599. },
  60600. paw: {
  60601. height: math.unit(1.5, "feet"),
  60602. name: "Paw",
  60603. image: {
  60604. source: "./media/characters/ayranus/paw.svg"
  60605. },
  60606. },
  60607. },
  60608. [
  60609. {
  60610. name: "Incognito",
  60611. height: math.unit(1.8, "meters"),
  60612. allForms: true
  60613. },
  60614. {
  60615. name: "Macro",
  60616. height: math.unit(60, "meters"),
  60617. allForms: true
  60618. },
  60619. {
  60620. name: "Macro+",
  60621. height: math.unit(200, "meters"),
  60622. allForms: true
  60623. },
  60624. {
  60625. name: "Mega",
  60626. height: math.unit(35, "km"),
  60627. allForms: true
  60628. },
  60629. {
  60630. name: "Giga",
  60631. height: math.unit(220, "km"),
  60632. allForms: true
  60633. },
  60634. {
  60635. name: "Giga+",
  60636. height: math.unit(1500, "km"),
  60637. allForms: true
  60638. },
  60639. {
  60640. name: "Terra",
  60641. height: math.unit(13000, "km"),
  60642. allForms: true
  60643. },
  60644. {
  60645. name: "Terra+",
  60646. height: math.unit(500000, "km"),
  60647. allForms: true
  60648. },
  60649. {
  60650. name: "Galactic",
  60651. height: math.unit(486080, "parsecs"),
  60652. default: true,
  60653. allForms: true
  60654. },
  60655. ],
  60656. {
  60657. "otter": {
  60658. name: "Otter",
  60659. default: true
  60660. },
  60661. "lionbat": {
  60662. name: "Lionbat",
  60663. },
  60664. }
  60665. ))
  60666. characterMakers.push(() => makeCharacter(
  60667. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60668. {
  60669. front: {
  60670. height: math.unit(7 + 4/12, "feet"),
  60671. weight: math.unit(400, "lb"),
  60672. name: "Front",
  60673. image: {
  60674. source: "./media/characters/proxy/front.svg",
  60675. extra: 1605/1542,
  60676. bottom: 55/1660
  60677. }
  60678. },
  60679. side: {
  60680. height: math.unit(7 + 4/12, "feet"),
  60681. weight: math.unit(400, "lb"),
  60682. name: "Side",
  60683. image: {
  60684. source: "./media/characters/proxy/side.svg",
  60685. extra: 794/759,
  60686. bottom: 6/800
  60687. }
  60688. },
  60689. hand: {
  60690. height: math.unit(1.54, "feet"),
  60691. name: "Hand",
  60692. image: {
  60693. source: "./media/characters/proxy/hand.svg"
  60694. }
  60695. },
  60696. paw: {
  60697. height: math.unit(1.53, "feet"),
  60698. name: "Paw",
  60699. image: {
  60700. source: "./media/characters/proxy/paw.svg"
  60701. }
  60702. },
  60703. maw: {
  60704. height: math.unit(1.9, "feet"),
  60705. name: "Maw",
  60706. image: {
  60707. source: "./media/characters/proxy/maw.svg"
  60708. }
  60709. },
  60710. },
  60711. [
  60712. {
  60713. name: "Normal",
  60714. height: math.unit(7 + 4/12, "feet"),
  60715. default: true
  60716. },
  60717. ]
  60718. ))
  60719. characterMakers.push(() => makeCharacter(
  60720. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60721. {
  60722. front: {
  60723. height: math.unit(4, "meters"),
  60724. name: "Front",
  60725. image: {
  60726. source: "./media/characters/crocozilla/front.svg",
  60727. extra: 1790/1742,
  60728. bottom: 78/1868
  60729. }
  60730. },
  60731. },
  60732. [
  60733. {
  60734. name: "Normal",
  60735. height: math.unit(4, "meters"),
  60736. default: true
  60737. },
  60738. ]
  60739. ))
  60740. characterMakers.push(() => makeCharacter(
  60741. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60742. {
  60743. front: {
  60744. height: math.unit(1.8, "meters"),
  60745. weight: math.unit(120, "kg"),
  60746. name: "Front",
  60747. image: {
  60748. source: "./media/characters/kurz/front.svg",
  60749. extra: 1960/1824,
  60750. bottom: 41/2001
  60751. }
  60752. },
  60753. back: {
  60754. height: math.unit(1.8, "meters"),
  60755. weight: math.unit(120, "kg"),
  60756. name: "Back",
  60757. image: {
  60758. source: "./media/characters/kurz/back.svg",
  60759. extra: 1906/1787,
  60760. bottom: 60/1966
  60761. }
  60762. },
  60763. frontLewd: {
  60764. height: math.unit(1.8, "meters"),
  60765. weight: math.unit(120, "kg"),
  60766. name: "Front (Lewd)",
  60767. image: {
  60768. source: "./media/characters/kurz/front-lewd.svg",
  60769. extra: 1960/1824,
  60770. bottom: 41/2001
  60771. }
  60772. },
  60773. maw: {
  60774. height: math.unit(0.69, "meters"),
  60775. name: "Maw",
  60776. image: {
  60777. source: "./media/characters/kurz/maw.svg"
  60778. }
  60779. },
  60780. },
  60781. [
  60782. {
  60783. name: "Original Size",
  60784. height: math.unit(1.8, "meters")
  60785. },
  60786. {
  60787. name: "Incognito Size",
  60788. height: math.unit(2.4, "meters"),
  60789. default: true
  60790. },
  60791. {
  60792. name: "Macro",
  60793. height: math.unit(30, "meters")
  60794. },
  60795. {
  60796. name: "Macro+",
  60797. height: math.unit(250, "meters")
  60798. },
  60799. {
  60800. name: "Mega",
  60801. height: math.unit(2, "km")
  60802. },
  60803. {
  60804. name: "Mega+",
  60805. height: math.unit(35, "km")
  60806. },
  60807. {
  60808. name: "Mega++",
  60809. height: math.unit(75, "km")
  60810. },
  60811. {
  60812. name: "Giga",
  60813. height: math.unit(250, "km")
  60814. },
  60815. {
  60816. name: "Terra",
  60817. height: math.unit(15000, "km")
  60818. },
  60819. {
  60820. name: "Terra+",
  60821. height: math.unit(2250000, "km")
  60822. },
  60823. ]
  60824. ))
  60825. characterMakers.push(() => makeCharacter(
  60826. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60827. {
  60828. front: {
  60829. height: math.unit(16 + 3/12, "feet"),
  60830. weight: math.unit(3575, "lb"),
  60831. name: "Front",
  60832. image: {
  60833. source: "./media/characters/nikita/front.svg",
  60834. extra: 1064/955,
  60835. bottom: 47/1111
  60836. }
  60837. },
  60838. },
  60839. [
  60840. {
  60841. name: "Normal",
  60842. height: math.unit(16 + 3/12, "feet"),
  60843. default: true
  60844. },
  60845. {
  60846. name: "Big",
  60847. height: math.unit(21, "feet")
  60848. },
  60849. {
  60850. name: "Biggest",
  60851. height: math.unit(50, "feet")
  60852. },
  60853. ]
  60854. ))
  60855. characterMakers.push(() => makeCharacter(
  60856. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60857. {
  60858. front: {
  60859. height: math.unit(1.92, "m"),
  60860. weight: math.unit(76, "kg"),
  60861. name: "Front",
  60862. image: {
  60863. source: "./media/characters/kyara/front.svg",
  60864. extra: 1550/1438,
  60865. bottom: 139/1689
  60866. }
  60867. },
  60868. back: {
  60869. height: math.unit(1.92, "m"),
  60870. weight: math.unit(76, "kg"),
  60871. name: "Back",
  60872. image: {
  60873. source: "./media/characters/kyara/back.svg",
  60874. extra: 1523/1427,
  60875. bottom: 83/1606
  60876. }
  60877. },
  60878. head: {
  60879. height: math.unit(1.22, "feet"),
  60880. name: "Head",
  60881. image: {
  60882. source: "./media/characters/kyara/head.svg"
  60883. }
  60884. },
  60885. maw: {
  60886. height: math.unit(0.73, "feet"),
  60887. name: "Maw",
  60888. image: {
  60889. source: "./media/characters/kyara/maw.svg"
  60890. }
  60891. },
  60892. paws: {
  60893. height: math.unit(0.95, "feet"),
  60894. name: "Paws",
  60895. image: {
  60896. source: "./media/characters/kyara/paws.svg"
  60897. }
  60898. },
  60899. },
  60900. [
  60901. {
  60902. name: "Normal",
  60903. height: math.unit(1.92, "meters"),
  60904. default: true
  60905. },
  60906. {
  60907. name: "Mini Macro",
  60908. height: math.unit(192, "meters")
  60909. },
  60910. {
  60911. name: "Macro",
  60912. height: math.unit(480, "meters")
  60913. },
  60914. {
  60915. name: "Mega Macro",
  60916. height: math.unit(1440, "meters")
  60917. },
  60918. ]
  60919. ))
  60920. characterMakers.push(() => makeCharacter(
  60921. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60922. {
  60923. front: {
  60924. height: math.unit(6, "feet"),
  60925. weight: math.unit(160, "lbs"),
  60926. preyCapacity: math.unit(0.05, "people"),
  60927. name: "Front",
  60928. image: {
  60929. source: "./media/characters/layla-amari/front.svg",
  60930. extra: 1922/1723,
  60931. bottom: 90/2012
  60932. }
  60933. },
  60934. back: {
  60935. height: math.unit(6, "feet"),
  60936. weight: math.unit(160, "lbs"),
  60937. preyCapacity: math.unit(0.05, "people"),
  60938. name: "Back",
  60939. image: {
  60940. source: "./media/characters/layla-amari/back.svg",
  60941. extra: 1917/1718,
  60942. bottom: 50/1967
  60943. }
  60944. },
  60945. frontDressed: {
  60946. height: math.unit(6, "feet"),
  60947. weight: math.unit(160, "lbs"),
  60948. preyCapacity: math.unit(0.05, "people"),
  60949. name: "Front (Dressed)",
  60950. image: {
  60951. source: "./media/characters/layla-amari/front-dressed.svg",
  60952. extra: 1922/1723,
  60953. bottom: 90/2012
  60954. }
  60955. },
  60956. face: {
  60957. height: math.unit(0.93, "feet"),
  60958. name: "Face",
  60959. image: {
  60960. source: "./media/characters/layla-amari/face.svg"
  60961. }
  60962. },
  60963. hand: {
  60964. height: math.unit(0.66 , "feet"),
  60965. name: "Hand",
  60966. image: {
  60967. source: "./media/characters/layla-amari/hand.svg"
  60968. }
  60969. },
  60970. foot: {
  60971. height: math.unit(1, "feet"),
  60972. name: "Foot",
  60973. image: {
  60974. source: "./media/characters/layla-amari/foot.svg"
  60975. }
  60976. },
  60977. necklace: {
  60978. height: math.unit(0.32, "feet"),
  60979. name: "Necklace",
  60980. image: {
  60981. source: "./media/characters/layla-amari/necklace.svg"
  60982. }
  60983. },
  60984. nipple: {
  60985. height: math.unit(0.2, "feet"),
  60986. name: "Nipple",
  60987. image: {
  60988. source: "./media/characters/layla-amari/nipple.svg"
  60989. }
  60990. },
  60991. slit: {
  60992. height: math.unit(0.26, "feet"),
  60993. name: "Slit",
  60994. image: {
  60995. source: "./media/characters/layla-amari/slit.svg"
  60996. }
  60997. },
  60998. },
  60999. [
  61000. {
  61001. name: "Natural",
  61002. height: math.unit(825, "feet"),
  61003. default: true
  61004. },
  61005. {
  61006. name: "Enhanced",
  61007. height: math.unit(8250, "feet")
  61008. },
  61009. {
  61010. name: "Apparent Size",
  61011. height: math.unit(9.04363e+8, "meters")
  61012. },
  61013. ]
  61014. ))
  61015. characterMakers.push(() => makeCharacter(
  61016. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61017. {
  61018. front: {
  61019. height: math.unit(1.3, "meters"),
  61020. name: "Front",
  61021. image: {
  61022. source: "./media/characters/percy/front.svg",
  61023. extra: 1444/1289,
  61024. bottom: 54/1498
  61025. }
  61026. },
  61027. },
  61028. [
  61029. {
  61030. name: "Normal",
  61031. height: math.unit(1.3, "meters"),
  61032. default: true
  61033. },
  61034. ]
  61035. ))
  61036. characterMakers.push(() => makeCharacter(
  61037. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61038. {
  61039. side: {
  61040. height: math.unit(10, "meters"),
  61041. name: "Side",
  61042. image: {
  61043. source: "./media/characters/grev/side.svg",
  61044. extra: 653/266,
  61045. bottom: 77/730
  61046. }
  61047. },
  61048. head: {
  61049. height: math.unit(16.2, "m"),
  61050. name: "Head",
  61051. image: {
  61052. source: "./media/characters/grev/head.svg"
  61053. }
  61054. },
  61055. dick: {
  61056. height: math.unit(2.8135932034, "m"),
  61057. name: "Dick",
  61058. image: {
  61059. source: "./media/characters/grev/dick.svg"
  61060. }
  61061. },
  61062. },
  61063. [
  61064. {
  61065. name: "Friend-Sized",
  61066. height: math.unit(80, "cm")
  61067. },
  61068. {
  61069. name: "Normal",
  61070. height: math.unit(10, "meters"),
  61071. default: true
  61072. },
  61073. {
  61074. name: "Macro",
  61075. height: math.unit(200, "meters")
  61076. },
  61077. ]
  61078. ))
  61079. characterMakers.push(() => makeCharacter(
  61080. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61081. {
  61082. front: {
  61083. height: math.unit(19.75, "feet"),
  61084. weight: math.unit(20000, "lb"),
  61085. name: "Front",
  61086. image: {
  61087. source: "./media/characters/azuuca/front.svg",
  61088. extra: 1593/1511,
  61089. bottom: 55/1648
  61090. }
  61091. },
  61092. },
  61093. [
  61094. {
  61095. name: "Normal",
  61096. height: math.unit(19.75, "feet"),
  61097. default: true
  61098. },
  61099. ]
  61100. ))
  61101. characterMakers.push(() => makeCharacter(
  61102. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61103. {
  61104. front: {
  61105. height: math.unit(15, "feet"),
  61106. weight: math.unit(1500, "lb"),
  61107. name: "Front",
  61108. image: {
  61109. source: "./media/characters/valuria/front.svg",
  61110. extra: 1588/1486,
  61111. bottom: 31/1619
  61112. }
  61113. },
  61114. },
  61115. [
  61116. {
  61117. name: "Normal",
  61118. height: math.unit(15, "feet"),
  61119. default: true
  61120. },
  61121. {
  61122. name: "Small",
  61123. height: math.unit(500, "feet")
  61124. },
  61125. {
  61126. name: "Macro",
  61127. height: math.unit(4000, "feet")
  61128. },
  61129. {
  61130. name: "Mega Macro",
  61131. height: math.unit(2000, "miles")
  61132. },
  61133. {
  61134. name: "Giga Macro",
  61135. height: math.unit(3e6, "miles")
  61136. },
  61137. ]
  61138. ))
  61139. characterMakers.push(() => makeCharacter(
  61140. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61141. {
  61142. front: {
  61143. height: math.unit(3500, "solarradii"),
  61144. name: "Front",
  61145. image: {
  61146. source: "./media/characters/terigaia/front.svg",
  61147. extra: 1531/1451,
  61148. bottom: 98/1629
  61149. }
  61150. },
  61151. },
  61152. [
  61153. {
  61154. name: "Normal",
  61155. height: math.unit(3500, "solarradii"),
  61156. default: true
  61157. },
  61158. ]
  61159. ))
  61160. characterMakers.push(() => makeCharacter(
  61161. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61162. {
  61163. front: {
  61164. height: math.unit(9.34, "feet"),
  61165. weight: math.unit(600, "lb"),
  61166. name: "Front",
  61167. image: {
  61168. source: "./media/characters/blair-blaziken/front.svg",
  61169. extra: 1557/1462,
  61170. bottom: 55/1612
  61171. }
  61172. },
  61173. },
  61174. [
  61175. {
  61176. name: "Normal",
  61177. height: math.unit(9.34, "feet"),
  61178. default: true
  61179. },
  61180. ]
  61181. ))
  61182. characterMakers.push(() => makeCharacter(
  61183. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61184. {
  61185. pistrogre_front: {
  61186. height: math.unit(10, "feet"),
  61187. weight: math.unit(10, "tons"),
  61188. name: "Front",
  61189. image: {
  61190. source: "./media/characters/braxia/pistrogre-front.svg",
  61191. extra: 1531/1334,
  61192. bottom: 114/1645
  61193. },
  61194. form: "pistrogre",
  61195. default: true
  61196. },
  61197. human_front: {
  61198. height: math.unit(10, "feet"),
  61199. weight: math.unit(10, "tons"),
  61200. name: "Front",
  61201. image: {
  61202. source: "./media/characters/braxia/human-front.svg",
  61203. extra: 1574/1501,
  61204. bottom: 37/1611
  61205. },
  61206. form: "human",
  61207. default: true
  61208. },
  61209. },
  61210. [
  61211. {
  61212. name: "Normal",
  61213. height: math.unit(10, "feet"),
  61214. default: true,
  61215. allForms: true
  61216. },
  61217. {
  61218. name: "Macro",
  61219. height: math.unit(1000, "feet"),
  61220. allForms: true
  61221. },
  61222. {
  61223. name: "Mega Macro",
  61224. height: math.unit(100, "miles"),
  61225. allForms: true
  61226. },
  61227. {
  61228. name: "Cosmic",
  61229. height: math.unit(1000000, "lightyears"),
  61230. allForms: true
  61231. },
  61232. {
  61233. name: "ϐѮԆԬӁꭍϞԢ",
  61234. height: math.unit(1000, "multiverses"),
  61235. allForms: true
  61236. },
  61237. ],
  61238. {
  61239. "pistrogre": {
  61240. name: "Pistrogre",
  61241. default: true
  61242. },
  61243. "human": {
  61244. name: "Human",
  61245. },
  61246. }
  61247. ))
  61248. characterMakers.push(() => makeCharacter(
  61249. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61250. {
  61251. front: {
  61252. height: math.unit(6 + 1/12, "feet"),
  61253. weight: math.unit(280, "lb"),
  61254. name: "Front",
  61255. image: {
  61256. source: "./media/characters/kiriga-yato/front.svg",
  61257. extra: 445/394,
  61258. bottom: 11/456
  61259. }
  61260. },
  61261. },
  61262. [
  61263. {
  61264. name: "Descended",
  61265. height: math.unit(3, "feet")
  61266. },
  61267. {
  61268. name: "Average",
  61269. height: math.unit(6 + 1/12, "feet"),
  61270. default: true
  61271. },
  61272. {
  61273. name: "Ascended",
  61274. height: math.unit(9 + 2/12, "feet")
  61275. },
  61276. ]
  61277. ))
  61278. characterMakers.push(() => makeCharacter(
  61279. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61280. {
  61281. front: {
  61282. height: math.unit(6, "feet"),
  61283. weight: math.unit(150, "lb"),
  61284. name: "Front",
  61285. image: {
  61286. source: "./media/characters/kylie/front.svg",
  61287. extra: 1114/1046,
  61288. bottom: 65/1179
  61289. },
  61290. extraAttributes: {
  61291. "hoofSize": {
  61292. name: "Hoof Size",
  61293. power: 2,
  61294. type: "area",
  61295. base: math.unit(0.034, "m^2")
  61296. },
  61297. "footSize": {
  61298. name: "Foot Size",
  61299. power: 2,
  61300. type: "area",
  61301. base: math.unit(0.75, "m^2")
  61302. },
  61303. }
  61304. },
  61305. side: {
  61306. height: math.unit(6, "feet"),
  61307. weight: math.unit(150, "lb"),
  61308. name: "Side",
  61309. image: {
  61310. source: "./media/characters/kylie/side.svg",
  61311. extra: 1178/1110,
  61312. bottom: 21/1199
  61313. },
  61314. extraAttributes: {
  61315. "hoofSize": {
  61316. name: "Hoof Size",
  61317. power: 2,
  61318. type: "area",
  61319. base: math.unit(0.034, "m^2")
  61320. },
  61321. "footSize": {
  61322. name: "Foot Size",
  61323. power: 2,
  61324. type: "area",
  61325. base: math.unit(0.75, "m^2")
  61326. },
  61327. }
  61328. },
  61329. back: {
  61330. height: math.unit(6, "feet"),
  61331. weight: math.unit(150, "lb"),
  61332. name: "Back",
  61333. image: {
  61334. source: "./media/characters/kylie/back.svg",
  61335. extra: 1115/1047,
  61336. bottom: 66/1181
  61337. },
  61338. extraAttributes: {
  61339. "hoofSize": {
  61340. name: "Hoof Size",
  61341. power: 2,
  61342. type: "area",
  61343. base: math.unit(0.034, "m^2")
  61344. },
  61345. "footSize": {
  61346. name: "Foot Size",
  61347. power: 2,
  61348. type: "area",
  61349. base: math.unit(0.75, "m^2")
  61350. },
  61351. }
  61352. },
  61353. head: {
  61354. height: math.unit(1.85, "feet"),
  61355. name: "Head",
  61356. image: {
  61357. source: "./media/characters/kylie/head.svg"
  61358. }
  61359. },
  61360. },
  61361. [
  61362. {
  61363. name: "Normal",
  61364. height: math.unit(90, "meters"),
  61365. default: true
  61366. },
  61367. ]
  61368. ))
  61369. characterMakers.push(() => makeCharacter(
  61370. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61371. {
  61372. front: {
  61373. height: math.unit(245, "feet"),
  61374. weight: math.unit(400000, "lb"),
  61375. name: "Front",
  61376. image: {
  61377. source: "./media/characters/sabado/front.svg",
  61378. extra: 1309/1164,
  61379. bottom: 29/1338
  61380. }
  61381. },
  61382. },
  61383. [
  61384. {
  61385. name: "Normal",
  61386. height: math.unit(245, "feet"),
  61387. default: true
  61388. },
  61389. ]
  61390. ))
  61391. characterMakers.push(() => makeCharacter(
  61392. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61393. {
  61394. shark_front: {
  61395. height: math.unit(2, "meters"),
  61396. weight: math.unit(200, "kg"),
  61397. name: "Front",
  61398. image: {
  61399. source: "./media/characters/zechal/shark-front.svg",
  61400. extra: 969/925,
  61401. bottom: 74/1043
  61402. },
  61403. form: "shark",
  61404. },
  61405. shark_back: {
  61406. height: math.unit(2, "meters"),
  61407. weight: math.unit(200, "kg"),
  61408. name: "Back",
  61409. image: {
  61410. source: "./media/characters/zechal/shark-back.svg",
  61411. extra: 994/949,
  61412. bottom: 176/1170
  61413. },
  61414. form: "shark",
  61415. },
  61416. shark_frontLewd: {
  61417. height: math.unit(2, "meters"),
  61418. weight: math.unit(200, "kg"),
  61419. name: "Front (Lewd)",
  61420. image: {
  61421. source: "./media/characters/zechal/shark-front-lewd.svg",
  61422. extra: 969/925,
  61423. bottom: 74/1043
  61424. },
  61425. form: "shark",
  61426. },
  61427. shark_side: {
  61428. height: math.unit(1.56, "meters"),
  61429. weight: math.unit(200, "kg"),
  61430. name: "Side",
  61431. image: {
  61432. source: "./media/characters/zechal/shark-side.svg"
  61433. },
  61434. form: "shark",
  61435. },
  61436. dragon_front: {
  61437. height: math.unit(2, "meters"),
  61438. weight: math.unit(200, "kg"),
  61439. name: "Front",
  61440. image: {
  61441. source: "./media/characters/zechal/dragon-front.svg",
  61442. extra: 1041/925,
  61443. bottom: 74/1115
  61444. },
  61445. form: "dragon",
  61446. },
  61447. dragon_back: {
  61448. height: math.unit(2, "meters"),
  61449. weight: math.unit(200, "kg"),
  61450. name: "Back",
  61451. image: {
  61452. source: "./media/characters/zechal/dragon-back.svg",
  61453. extra: 1061/949,
  61454. bottom: 176/1237
  61455. },
  61456. form: "dragon",
  61457. },
  61458. dragon_frontLewd: {
  61459. height: math.unit(2, "meters"),
  61460. weight: math.unit(200, "kg"),
  61461. name: "Front (Lewd)",
  61462. image: {
  61463. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61464. extra: 1041/925,
  61465. bottom: 74/1115
  61466. },
  61467. form: "dragon",
  61468. },
  61469. dragon_side: {
  61470. height: math.unit(1.56, "meters"),
  61471. weight: math.unit(200, "kg"),
  61472. name: "Side",
  61473. image: {
  61474. source: "./media/characters/zechal/dragon-side.svg"
  61475. },
  61476. form: "dragon",
  61477. },
  61478. foot: {
  61479. height: math.unit(0.5, "meters"),
  61480. name: "Foot",
  61481. image: {
  61482. source: "./media/characters/zechal/foot.svg"
  61483. }
  61484. },
  61485. sheathFront: {
  61486. height: math.unit(0.45, "meters"),
  61487. name: "Sheath (Front)",
  61488. image: {
  61489. source: "./media/characters/zechal/sheath-front.svg"
  61490. }
  61491. },
  61492. sheathSide: {
  61493. height: math.unit(0.45, "meters"),
  61494. name: "Sheath (Side)",
  61495. image: {
  61496. source: "./media/characters/zechal/sheath-side.svg"
  61497. }
  61498. },
  61499. },
  61500. [
  61501. {
  61502. name: "Incognito",
  61503. height: math.unit(2, "meters"),
  61504. allForms: true
  61505. },
  61506. {
  61507. name: "Small Rampage",
  61508. height: math.unit(25, "meters"),
  61509. allForms: true
  61510. },
  61511. {
  61512. name: "Home Size",
  61513. height: math.unit(250, "meters"),
  61514. allForms: true,
  61515. default: true
  61516. },
  61517. {
  61518. name: "Macro+",
  61519. height: math.unit(700, "meters"),
  61520. allForms: true
  61521. },
  61522. {
  61523. name: "Small Mega",
  61524. height: math.unit(3, "km"),
  61525. allForms: true
  61526. },
  61527. {
  61528. name: "Mega",
  61529. height: math.unit(15, "km"),
  61530. allForms: true
  61531. },
  61532. {
  61533. name: "Giga",
  61534. height: math.unit(300, "km"),
  61535. allForms: true
  61536. },
  61537. {
  61538. name: "Giga+",
  61539. height: math.unit(1750, "km"),
  61540. allForms: true
  61541. },
  61542. {
  61543. name: "Continental",
  61544. height: math.unit(5000, "km"),
  61545. allForms: true
  61546. },
  61547. {
  61548. name: "Terra",
  61549. height: math.unit(20000, "km"),
  61550. allForms: true
  61551. },
  61552. {
  61553. name: "Terra+",
  61554. height: math.unit(300000, "km"),
  61555. allForms: true
  61556. },
  61557. {
  61558. name: "Solar",
  61559. height: math.unit(40000000, "km"),
  61560. allForms: true
  61561. },
  61562. {
  61563. name: "Galactic",
  61564. height: math.unit(810133, "parsecs"),
  61565. allForms: true
  61566. },
  61567. {
  61568. name: "Universal",
  61569. height: math.unit(25, "universes"),
  61570. allForms: true
  61571. },
  61572. ],
  61573. {
  61574. "shark": {
  61575. name: "Shark",
  61576. default: true
  61577. },
  61578. "dragon": {
  61579. name: "Dragon",
  61580. },
  61581. }
  61582. ))
  61583. characterMakers.push(() => makeCharacter(
  61584. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61585. {
  61586. front: {
  61587. height: math.unit(2.2, "meters"),
  61588. weight: math.unit(150, "kg"),
  61589. name: "Front",
  61590. image: {
  61591. source: "./media/characters/sergis/front.svg",
  61592. extra: 1314/1312,
  61593. bottom: 112/1426
  61594. }
  61595. },
  61596. back: {
  61597. height: math.unit(2.2, "meters"),
  61598. weight: math.unit(150, "kg"),
  61599. name: "Back",
  61600. image: {
  61601. source: "./media/characters/sergis/back.svg",
  61602. extra: 1335/1333,
  61603. bottom: 19/1354
  61604. }
  61605. },
  61606. frontLewd: {
  61607. height: math.unit(2.2, "meters"),
  61608. weight: math.unit(150, "kg"),
  61609. name: "Front (Lewd)",
  61610. image: {
  61611. source: "./media/characters/sergis/front-lewd.svg",
  61612. extra: 1314/1312,
  61613. bottom: 112/1426
  61614. }
  61615. },
  61616. frontDressed: {
  61617. height: math.unit(2.2, "meters"),
  61618. weight: math.unit(150, "kg"),
  61619. name: "Front (Dressed)",
  61620. image: {
  61621. source: "./media/characters/sergis/front-dressed.svg",
  61622. extra: 1330/1328,
  61623. bottom: 95/1425
  61624. }
  61625. },
  61626. frontDressedLewd: {
  61627. height: math.unit(2.2, "meters"),
  61628. weight: math.unit(150, "kg"),
  61629. name: "Front (Dressed, Lewd)",
  61630. image: {
  61631. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61632. extra: 1330/1328,
  61633. bottom: 95/1425
  61634. }
  61635. },
  61636. maw: {
  61637. height: math.unit(0.48, "meters"),
  61638. name: "Maw",
  61639. image: {
  61640. source: "./media/characters/sergis/maw.svg"
  61641. }
  61642. },
  61643. sheath: {
  61644. height: math.unit(0.38, "meters"),
  61645. name: "Sheath",
  61646. image: {
  61647. source: "./media/characters/sergis/sheath.svg"
  61648. }
  61649. },
  61650. },
  61651. [
  61652. {
  61653. name: "Incognito Size",
  61654. height: math.unit(2.2, "meters")
  61655. },
  61656. {
  61657. name: "Small Macro",
  61658. height: math.unit(40, "meters")
  61659. },
  61660. {
  61661. name: "Macro",
  61662. height: math.unit(150, "meters")
  61663. },
  61664. {
  61665. name: "Macro+",
  61666. height: math.unit(300, "meters")
  61667. },
  61668. {
  61669. name: "Mega",
  61670. height: math.unit(2.5, "km")
  61671. },
  61672. {
  61673. name: "Mega+",
  61674. height: math.unit(30, "km")
  61675. },
  61676. {
  61677. name: "Home Size",
  61678. height: math.unit(300, "km"),
  61679. default: true
  61680. },
  61681. {
  61682. name: "Giga+",
  61683. height: math.unit(1000, "km")
  61684. },
  61685. {
  61686. name: "Giga++",
  61687. height: math.unit(6000, "km")
  61688. },
  61689. {
  61690. name: "Terra",
  61691. height: math.unit(70000, "km")
  61692. },
  61693. {
  61694. name: "Terra+",
  61695. height: math.unit(200000, "km")
  61696. },
  61697. {
  61698. name: "Galactic",
  61699. height: math.unit(634200, "lightyears")
  61700. },
  61701. ]
  61702. ))
  61703. characterMakers.push(() => makeCharacter(
  61704. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61705. {
  61706. standard: {
  61707. height: math.unit(1 + 5/12, "feet"),
  61708. name: "Standard",
  61709. image: {
  61710. source: "./media/characters/spade/standard.svg",
  61711. extra: 1794/1703,
  61712. bottom: 115/1909
  61713. }
  61714. },
  61715. disguised: {
  61716. height: math.unit(1 + 5/12, "feet"),
  61717. name: "Disguised",
  61718. image: {
  61719. source: "./media/characters/spade/disguised.svg",
  61720. extra: 1794/1700,
  61721. bottom: 98/1892
  61722. }
  61723. },
  61724. },
  61725. [
  61726. {
  61727. name: "Normal",
  61728. height: math.unit(1 + 5/12, "feet"),
  61729. default: true
  61730. },
  61731. ]
  61732. ))
  61733. characterMakers.push(() => makeCharacter(
  61734. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61735. {
  61736. frontNsfw: {
  61737. height: math.unit(5, "meters"),
  61738. weight: math.unit(2000, "kg"),
  61739. preyCapacity: math.unit(5, "people"),
  61740. name: "Front (NSFW)",
  61741. image: {
  61742. source: "./media/characters/zeanlain/front-nsfw.svg",
  61743. extra: 1087/938,
  61744. bottom: 93/1180
  61745. },
  61746. extraAttributes: {
  61747. "wingspan": {
  61748. name: "Wingspan",
  61749. power: 1,
  61750. type: "length",
  61751. base: math.unit(10, "meters")
  61752. },
  61753. "footSize": {
  61754. name: "Foot Size",
  61755. power: 1,
  61756. type: "length",
  61757. base: math.unit(0.68, "meters")
  61758. },
  61759. "cockLength": {
  61760. name: "Cock Length",
  61761. power: 1,
  61762. type: "length",
  61763. base: math.unit(1.69, "meters")
  61764. },
  61765. "ballVolume": {
  61766. name: "Ball Volume",
  61767. power: 3,
  61768. type: "volume",
  61769. base: math.unit(0.028, "m^3")
  61770. },
  61771. }
  61772. },
  61773. front: {
  61774. height: math.unit(5, "meters"),
  61775. weight: math.unit(2000, "kg"),
  61776. preyCapacity: math.unit(3, "people"),
  61777. name: "Front",
  61778. image: {
  61779. source: "./media/characters/zeanlain/front.svg",
  61780. extra: 1087/938,
  61781. bottom: 93/1180
  61782. },
  61783. extraAttributes: {
  61784. "wingspan": {
  61785. name: "Wingspan",
  61786. power: 1,
  61787. type: "length",
  61788. base: math.unit(10, "meters")
  61789. },
  61790. "footSize": {
  61791. name: "Foot Size",
  61792. power: 1,
  61793. type: "length",
  61794. base: math.unit(0.68, "meters")
  61795. },
  61796. }
  61797. },
  61798. },
  61799. [
  61800. {
  61801. name: "Normal",
  61802. height: math.unit(5, "meters"),
  61803. default: true
  61804. },
  61805. ]
  61806. ))
  61807. characterMakers.push(() => makeCharacter(
  61808. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61809. {
  61810. front: {
  61811. height: math.unit(10, "meters"),
  61812. weight: math.unit(250000, "kg"),
  61813. name: "Front",
  61814. image: {
  61815. source: "./media/characters/airamis/front.svg",
  61816. extra: 865/835,
  61817. bottom: 13/878
  61818. }
  61819. },
  61820. },
  61821. [
  61822. {
  61823. name: "Normal",
  61824. height: math.unit(10, "meters"),
  61825. default: true
  61826. },
  61827. ]
  61828. ))
  61829. characterMakers.push(() => makeCharacter(
  61830. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61831. {
  61832. front: {
  61833. height: math.unit(3 + 3/12, "feet"),
  61834. weight: math.unit(75, "lb"),
  61835. name: "Front",
  61836. image: {
  61837. source: "./media/characters/corra-tourmaline/front.svg",
  61838. extra: 1037/864,
  61839. bottom: 39/1076
  61840. }
  61841. },
  61842. back: {
  61843. height: math.unit(3 + 3/12, "feet"),
  61844. weight: math.unit(75, "lb"),
  61845. name: "Back",
  61846. image: {
  61847. source: "./media/characters/corra-tourmaline/back.svg",
  61848. extra: 1022/849,
  61849. bottom: 26/1048
  61850. }
  61851. },
  61852. dressed: {
  61853. height: math.unit(3 + 3/12, "feet"),
  61854. weight: math.unit(75, "lb"),
  61855. name: "Dressed",
  61856. image: {
  61857. source: "./media/characters/corra-tourmaline/dressed.svg",
  61858. extra: 1037/864,
  61859. bottom: 39/1076
  61860. }
  61861. },
  61862. beans: {
  61863. height: math.unit(0.37, "feet"),
  61864. name: "Beans",
  61865. image: {
  61866. source: "./media/characters/corra-tourmaline/beans.svg"
  61867. }
  61868. },
  61869. },
  61870. [
  61871. {
  61872. name: "Normal",
  61873. height: math.unit(3 + 3/12, "feet"),
  61874. default: true
  61875. },
  61876. {
  61877. name: "Macro",
  61878. height: math.unit(32, "feet")
  61879. },
  61880. ]
  61881. ))
  61882. characterMakers.push(() => makeCharacter(
  61883. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61884. {
  61885. front: {
  61886. height: math.unit(6 + 2/12, "feet"),
  61887. weight: math.unit(203, "lb"),
  61888. name: "Front",
  61889. image: {
  61890. source: "./media/characters/maki-kawa/front.svg",
  61891. extra: 950/890,
  61892. bottom: 62/1012
  61893. }
  61894. },
  61895. back: {
  61896. height: math.unit(6 + 2/12, "feet"),
  61897. weight: math.unit(203, "lb"),
  61898. name: "Back",
  61899. image: {
  61900. source: "./media/characters/maki-kawa/back.svg",
  61901. extra: 953/878,
  61902. bottom: 49/1002
  61903. }
  61904. },
  61905. frontBarista: {
  61906. height: math.unit(6 + 2/12, "feet"),
  61907. weight: math.unit(203, "lb"),
  61908. name: "Front (Barista)",
  61909. image: {
  61910. source: "./media/characters/maki-kawa/front-barista.svg",
  61911. extra: 943/883,
  61912. bottom: 69/1012
  61913. }
  61914. },
  61915. backBarista: {
  61916. height: math.unit(6 + 2/12, "feet"),
  61917. weight: math.unit(203, "lb"),
  61918. name: "Back (Barista)",
  61919. image: {
  61920. source: "./media/characters/maki-kawa/back-barista.svg",
  61921. extra: 953/878,
  61922. bottom: 49/1002
  61923. }
  61924. },
  61925. frontWrestler: {
  61926. height: math.unit(6 + 2/12, "feet"),
  61927. weight: math.unit(203, "lb"),
  61928. name: "Front (Wrestler)",
  61929. image: {
  61930. source: "./media/characters/maki-kawa/front-wrestler.svg",
  61931. extra: 950/890,
  61932. bottom: 62/1012
  61933. }
  61934. },
  61935. backWrestler: {
  61936. height: math.unit(6 + 2/12, "feet"),
  61937. weight: math.unit(203, "lb"),
  61938. name: "Back (Wrestler)",
  61939. image: {
  61940. source: "./media/characters/maki-kawa/back-wrestler.svg",
  61941. extra: 953/878,
  61942. bottom: 49/1002
  61943. }
  61944. },
  61945. headFront: {
  61946. height: math.unit(1.64, "feet"),
  61947. name: "Head (Front)",
  61948. image: {
  61949. source: "./media/characters/maki-kawa/head-front.svg"
  61950. }
  61951. },
  61952. headSide: {
  61953. height: math.unit(1.59, "feet"),
  61954. name: "Head (Side)",
  61955. image: {
  61956. source: "./media/characters/maki-kawa/head-side.svg"
  61957. }
  61958. },
  61959. paw: {
  61960. height: math.unit(0.9, "feet"),
  61961. name: "Paw",
  61962. image: {
  61963. source: "./media/characters/maki-kawa/paw.svg"
  61964. }
  61965. },
  61966. },
  61967. [
  61968. {
  61969. name: "Normal",
  61970. height: math.unit(6 + 2/12, "feet"),
  61971. default: true
  61972. },
  61973. {
  61974. name: "Macro",
  61975. height: math.unit(617, "feet")
  61976. },
  61977. ]
  61978. ))
  61979. characterMakers.push(() => makeCharacter(
  61980. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  61981. {
  61982. front: {
  61983. height: math.unit(10, "feet"),
  61984. weight: math.unit(1500, "lb"),
  61985. name: "Front",
  61986. image: {
  61987. source: "./media/characters/lennox/front.svg",
  61988. extra: 1623/1496,
  61989. bottom: 18/1641
  61990. }
  61991. },
  61992. back: {
  61993. height: math.unit(10, "feet"),
  61994. weight: math.unit(1500, "lb"),
  61995. name: "Back",
  61996. image: {
  61997. source: "./media/characters/lennox/back.svg",
  61998. extra: 1641/1481,
  61999. bottom: 13/1654
  62000. }
  62001. },
  62002. maw: {
  62003. height: math.unit(2.94, "feet"),
  62004. name: "Maw",
  62005. image: {
  62006. source: "./media/characters/lennox/maw.svg"
  62007. }
  62008. },
  62009. },
  62010. [
  62011. {
  62012. name: "Micro",
  62013. height: math.unit(1, "inch")
  62014. },
  62015. {
  62016. name: "Normal",
  62017. height: math.unit(10, "feet"),
  62018. default: true
  62019. },
  62020. {
  62021. name: "Macro",
  62022. height: math.unit(200, "feet")
  62023. },
  62024. ]
  62025. ))
  62026. characterMakers.push(() => makeCharacter(
  62027. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62028. {
  62029. frontDressed: {
  62030. height: math.unit(15 + 7/12, "feet"),
  62031. weight: math.unit(5000, "lb"),
  62032. name: "Front (Dressed)",
  62033. image: {
  62034. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62035. extra: 1136/1023,
  62036. bottom: 51/1187
  62037. }
  62038. },
  62039. backDressed: {
  62040. height: math.unit(15 + 7/12, "feet"),
  62041. weight: math.unit(5000, "lb"),
  62042. name: "Back (Dressed)",
  62043. image: {
  62044. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62045. extra: 2359/2143,
  62046. bottom: 103/2462
  62047. }
  62048. },
  62049. front: {
  62050. height: math.unit(15 + 7/12, "feet"),
  62051. weight: math.unit(5000, "lb"),
  62052. name: "Front",
  62053. image: {
  62054. source: "./media/characters/vyse-iron-thunder/front.svg",
  62055. extra: 1136/1023,
  62056. bottom: 51/1187
  62057. }
  62058. },
  62059. hand: {
  62060. height: math.unit(2.36, "feet"),
  62061. name: "Hand",
  62062. image: {
  62063. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62064. }
  62065. },
  62066. foot: {
  62067. height: math.unit(1.72, "feet"),
  62068. name: "Foot",
  62069. image: {
  62070. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62071. }
  62072. },
  62073. mouth: {
  62074. height: math.unit(2, "feet"),
  62075. name: "Mouth",
  62076. image: {
  62077. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62078. }
  62079. },
  62080. eye: {
  62081. height: math.unit(0.58, "feet"),
  62082. name: "Eye",
  62083. image: {
  62084. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62085. }
  62086. },
  62087. },
  62088. [
  62089. {
  62090. name: "Normal",
  62091. height: math.unit(15 + 7/12, "feet"),
  62092. default: true
  62093. },
  62094. {
  62095. name: "Macro",
  62096. height: math.unit(157, "feet")
  62097. },
  62098. {
  62099. name: "Macro+",
  62100. height: math.unit(1570, "feet")
  62101. },
  62102. {
  62103. name: "Macro++",
  62104. height: math.unit(15700, "feet")
  62105. },
  62106. {
  62107. name: "Macro+++",
  62108. height: math.unit(157000, "feet")
  62109. },
  62110. {
  62111. name: "Macro++++",
  62112. height: math.unit(1570000, "feet")
  62113. },
  62114. ]
  62115. ))
  62116. characterMakers.push(() => makeCharacter(
  62117. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62118. {
  62119. side: {
  62120. height: math.unit(6, "feet"),
  62121. weight: math.unit(115, "lb"),
  62122. name: "Side",
  62123. image: {
  62124. source: "./media/characters/moonbeam/side.svg",
  62125. extra: 839/485,
  62126. bottom: 60/899
  62127. }
  62128. },
  62129. },
  62130. [
  62131. {
  62132. name: "Normal",
  62133. height: math.unit(6, "feet"),
  62134. default: true
  62135. },
  62136. ]
  62137. ))
  62138. characterMakers.push(() => makeCharacter(
  62139. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62140. {
  62141. front: {
  62142. height: math.unit(3500, "miles"),
  62143. weight: math.unit(1659, "petatonnes"),
  62144. name: "Front",
  62145. image: {
  62146. source: "./media/characters/baltica/front.svg",
  62147. extra: 429/428,
  62148. bottom: 41/470
  62149. }
  62150. },
  62151. back: {
  62152. height: math.unit(3500, "miles"),
  62153. weight: math.unit(1659, "petatonnes"),
  62154. name: "Back",
  62155. image: {
  62156. source: "./media/characters/baltica/back.svg",
  62157. extra: 452/451,
  62158. bottom: 8/460
  62159. }
  62160. },
  62161. },
  62162. [
  62163. {
  62164. name: "Gigamacro",
  62165. height: math.unit(3500, "miles"),
  62166. default: true
  62167. },
  62168. ]
  62169. ))
  62170. characterMakers.push(() => makeCharacter(
  62171. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62172. {
  62173. front: {
  62174. height: math.unit(6 + 10/12, "feet"),
  62175. weight: math.unit(200, "lb"),
  62176. name: "Front",
  62177. image: {
  62178. source: "./media/characters/shadow-wolf/front.svg",
  62179. extra: 1931/1760,
  62180. bottom: 88/2019
  62181. }
  62182. },
  62183. },
  62184. [
  62185. {
  62186. name: "Normal",
  62187. height: math.unit(6 + 10/12, "feet"),
  62188. default: true
  62189. },
  62190. ]
  62191. ))
  62192. characterMakers.push(() => makeCharacter(
  62193. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62194. {
  62195. front: {
  62196. height: math.unit(5 + 10/12, "feet"),
  62197. name: "Front",
  62198. image: {
  62199. source: "./media/characters/quincy-praying-mantis/front.svg",
  62200. extra: 1055/891,
  62201. bottom: 92/1147
  62202. }
  62203. },
  62204. soles: {
  62205. height: math.unit(0.85, "feet"),
  62206. name: "Soles",
  62207. image: {
  62208. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62209. extra: 429/324,
  62210. bottom: 89/518
  62211. },
  62212. extraAttributes: {
  62213. "shoeSize": {
  62214. name: "Shoe Size",
  62215. power: 1,
  62216. type: "length",
  62217. base: math.unit(23, "ShoeSizeMensUS"),
  62218. defaultUnit: "ShoeSizeMensUS"
  62219. },
  62220. }
  62221. },
  62222. foot: {
  62223. height: math.unit(0.72, "feet"),
  62224. name: "Foot",
  62225. image: {
  62226. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62227. extra: 349/349,
  62228. bottom: 76/425
  62229. }
  62230. },
  62231. },
  62232. [
  62233. {
  62234. name: "Normal",
  62235. height: math.unit(5 + 10/12, "feet"),
  62236. default: true
  62237. },
  62238. ]
  62239. ))
  62240. characterMakers.push(() => makeCharacter(
  62241. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62242. {
  62243. front: {
  62244. height: math.unit(6, "feet"),
  62245. name: "Front",
  62246. image: {
  62247. source: "./media/characters/christopher-redwood/front.svg",
  62248. extra: 1402/1341,
  62249. bottom: 23/1425
  62250. }
  62251. },
  62252. back: {
  62253. height: math.unit(6, "feet"),
  62254. name: "Back",
  62255. image: {
  62256. source: "./media/characters/christopher-redwood/back.svg",
  62257. extra: 1406/1345,
  62258. bottom: 36/1442
  62259. }
  62260. },
  62261. head: {
  62262. height: math.unit(1.685, "feet"),
  62263. name: "Head",
  62264. image: {
  62265. source: "./media/characters/christopher-redwood/head.svg"
  62266. }
  62267. },
  62268. },
  62269. [
  62270. {
  62271. name: "Normal",
  62272. height: math.unit(6, "feet"),
  62273. default: true
  62274. },
  62275. ]
  62276. ))
  62277. characterMakers.push(() => makeCharacter(
  62278. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62279. {
  62280. front: {
  62281. height: math.unit(1.9, "meters"),
  62282. weight: math.unit(140, "lb"),
  62283. name: "Front",
  62284. image: {
  62285. source: "./media/characters/kara-fox/front.svg",
  62286. extra: 766/711,
  62287. bottom: 41/807
  62288. }
  62289. },
  62290. back: {
  62291. height: math.unit(1.9, "meters"),
  62292. weight: math.unit(140, "lb"),
  62293. name: "Back",
  62294. image: {
  62295. source: "./media/characters/kara-fox/back.svg",
  62296. extra: 766/596,
  62297. bottom: 29/795
  62298. }
  62299. },
  62300. maw: {
  62301. height: math.unit(0.78, "feet"),
  62302. name: "Maw",
  62303. image: {
  62304. source: "./media/characters/kara-fox/maw.svg"
  62305. }
  62306. },
  62307. pawpads: {
  62308. height: math.unit(0.96, "feet"),
  62309. name: "Pawpads",
  62310. image: {
  62311. source: "./media/characters/kara-fox/pawpads.svg"
  62312. }
  62313. },
  62314. },
  62315. [
  62316. {
  62317. name: "Normal",
  62318. height: math.unit(1.9, "meters"),
  62319. default: true
  62320. },
  62321. {
  62322. name: "Giantess",
  62323. height: math.unit(80, "meters")
  62324. },
  62325. ]
  62326. ))
  62327. characterMakers.push(() => makeCharacter(
  62328. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62329. {
  62330. front: {
  62331. height: math.unit(12, "feet"),
  62332. name: "Front",
  62333. image: {
  62334. source: "./media/characters/naomi-espeon/front.svg",
  62335. extra: 892/797,
  62336. bottom: 5/897
  62337. }
  62338. },
  62339. back: {
  62340. height: math.unit(12, "feet"),
  62341. name: "Back",
  62342. image: {
  62343. source: "./media/characters/naomi-espeon/back.svg",
  62344. extra: 890/785,
  62345. bottom: 12/902
  62346. }
  62347. },
  62348. },
  62349. [
  62350. {
  62351. name: "Normal",
  62352. height: math.unit(12, "feet"),
  62353. default: true
  62354. },
  62355. ]
  62356. ))
  62357. characterMakers.push(() => makeCharacter(
  62358. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62359. {
  62360. anthro_front: {
  62361. height: math.unit(8, "feet"),
  62362. weight: math.unit(625, "lb"),
  62363. name: "Front",
  62364. image: {
  62365. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62366. extra: 638/574,
  62367. bottom: 73/711
  62368. },
  62369. form: "anthro",
  62370. default: true
  62371. },
  62372. anthro_back: {
  62373. height: math.unit(8, "feet"),
  62374. weight: math.unit(625, "lb"),
  62375. name: "Back",
  62376. image: {
  62377. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62378. extra: 674/614,
  62379. bottom: 7/681
  62380. },
  62381. form: "anthro",
  62382. },
  62383. taur_side: {
  62384. height: math.unit(16, "feet"),
  62385. weight: math.unit(4.5, "tons"),
  62386. name: "Side",
  62387. image: {
  62388. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62389. extra: 704/646,
  62390. bottom: 132/836
  62391. },
  62392. form: "taur",
  62393. default: true
  62394. },
  62395. },
  62396. [
  62397. {
  62398. name: "Normal",
  62399. height: math.unit(8, "feet"),
  62400. default: true,
  62401. form: "anthro"
  62402. },
  62403. {
  62404. name: "Normal",
  62405. height: math.unit(16, "feet"),
  62406. default: true,
  62407. form: "taur"
  62408. },
  62409. ],
  62410. {
  62411. "anthro": {
  62412. name: "Anthro",
  62413. default: true
  62414. },
  62415. "taur": {
  62416. name: "Taur",
  62417. },
  62418. }
  62419. ))
  62420. characterMakers.push(() => makeCharacter(
  62421. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62422. {
  62423. front: {
  62424. height: math.unit(190, "cm"),
  62425. weight: math.unit(110, "kg"),
  62426. name: "Front",
  62427. image: {
  62428. source: "./media/characters/amelie/front.svg",
  62429. extra: 530/442,
  62430. bottom: 35/565
  62431. }
  62432. },
  62433. },
  62434. [
  62435. {
  62436. name: "Normal",
  62437. height: math.unit(190, "cm"),
  62438. default: true
  62439. },
  62440. ]
  62441. ))
  62442. characterMakers.push(() => makeCharacter(
  62443. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62444. {
  62445. front: {
  62446. height: math.unit(21, "feet"),
  62447. weight: math.unit(30000, "lb"),
  62448. name: "Front",
  62449. image: {
  62450. source: "./media/characters/valence/front.svg",
  62451. extra: 1430/1306,
  62452. bottom: 51/1481
  62453. }
  62454. },
  62455. },
  62456. [
  62457. {
  62458. name: "Normal",
  62459. height: math.unit(21, "feet"),
  62460. default: true
  62461. },
  62462. ]
  62463. ))
  62464. characterMakers.push(() => makeCharacter(
  62465. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62466. {
  62467. front: {
  62468. height: math.unit(5 + 9/12, "feet"),
  62469. weight: math.unit(170, "lb"),
  62470. name: "Front",
  62471. image: {
  62472. source: "./media/characters/aurora-adkins/front.svg",
  62473. extra: 1141/1089,
  62474. bottom: 41/1182
  62475. }
  62476. },
  62477. },
  62478. [
  62479. {
  62480. name: "Tiny",
  62481. height: math.unit(7, "mm")
  62482. },
  62483. {
  62484. name: "Small",
  62485. height: math.unit(3.4, "inches")
  62486. },
  62487. {
  62488. name: "Normal",
  62489. height: math.unit(5 + 9/12, "feet"),
  62490. default: true
  62491. },
  62492. {
  62493. name: "Big",
  62494. height: math.unit(31, "feet")
  62495. },
  62496. {
  62497. name: "Giant",
  62498. height: math.unit(300, "feet")
  62499. },
  62500. ]
  62501. ))
  62502. characterMakers.push(() => makeCharacter(
  62503. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62504. {
  62505. front: {
  62506. height: math.unit(5 + 6/12, "feet"),
  62507. weight: math.unit(210, "lb"),
  62508. name: "Front",
  62509. image: {
  62510. source: "./media/characters/cyber/front.svg",
  62511. extra: 1968/1798,
  62512. bottom: 10/1978
  62513. },
  62514. extraAttributes: {
  62515. "shoeSize": {
  62516. name: "Shoe Size",
  62517. power: 1,
  62518. type: "length",
  62519. base: math.unit(30, "ShoeSizeMensUS")
  62520. },
  62521. }
  62522. },
  62523. },
  62524. [
  62525. {
  62526. name: "Normal",
  62527. height: math.unit(5 + 6/12, "feet"),
  62528. default: true
  62529. },
  62530. ]
  62531. ))
  62532. characterMakers.push(() => makeCharacter(
  62533. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62534. {
  62535. front: {
  62536. height: math.unit(6 + 6/12, "feet"),
  62537. weight: math.unit(140, "lb"),
  62538. name: "Front",
  62539. image: {
  62540. source: "./media/characters/sapphire-wairimea/front.svg",
  62541. extra: 475/458,
  62542. bottom: 14/489
  62543. }
  62544. },
  62545. },
  62546. [
  62547. {
  62548. name: "Normal",
  62549. height: math.unit(6 + 6/12, "feet")
  62550. },
  62551. {
  62552. name: "Macro",
  62553. height: math.unit(132, "feet"),
  62554. default: true
  62555. },
  62556. ]
  62557. ))
  62558. //characters
  62559. function makeCharacters() {
  62560. const results = [];
  62561. characterMakers.forEach(character => {
  62562. results.push(character());
  62563. });
  62564. return results;
  62565. }