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

68808 строки
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. "nagainini": {
  2451. name: "Nagainini",
  2452. parents: ["naga"]
  2453. },
  2454. "kaizleon": {
  2455. name: "Kaizleon",
  2456. parents: ["humanoid"]
  2457. },
  2458. "dragoyle": {
  2459. name: "Dragoyle",
  2460. parents: ["dragon", "gargoyle"]
  2461. },
  2462. "gargoyle": {
  2463. name: "Gargoyle",
  2464. parents: ["construct", "monster"]
  2465. },
  2466. "sea-serpent": {
  2467. name: "Sea Serpent",
  2468. parents: ["aquatic", "monster"]
  2469. },
  2470. "dutch-angel-dragon": {
  2471. name: "Dutch Angel Dragon",
  2472. parents: ["dragon", "avian"]
  2473. },
  2474. }
  2475. //species
  2476. function getSpeciesInfo(speciesList) {
  2477. let result = new Set();
  2478. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2479. result.add(entry)
  2480. });
  2481. return Array.from(result);
  2482. };
  2483. function getSpeciesInfoHelper(species) {
  2484. if (!speciesData[species]) {
  2485. console.warn(species + " doesn't exist");
  2486. return [];
  2487. }
  2488. if (speciesData[species].parents) {
  2489. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2490. } else {
  2491. return [species];
  2492. }
  2493. }
  2494. characterMakers.push(() => makeCharacter(
  2495. {
  2496. name: "Fen",
  2497. species: ["crux"],
  2498. description: {
  2499. title: "Bio",
  2500. text: "Very furry. Sheds on everything."
  2501. },
  2502. tags: [
  2503. "anthro",
  2504. "goo"
  2505. ]
  2506. },
  2507. {
  2508. front: {
  2509. height: math.unit(12, "feet"),
  2510. weight: math.unit(2400, "lb"),
  2511. preyCapacity: math.unit(1, "people"),
  2512. name: "Front",
  2513. image: {
  2514. source: "./media/characters/fen/front.svg",
  2515. extra: 1804/1562,
  2516. bottom: 205/2009
  2517. },
  2518. extraAttributes: {
  2519. pawSize: {
  2520. name: "Paw Size",
  2521. power: 2,
  2522. type: "area",
  2523. base: math.unit(0.35, "m^2")
  2524. }
  2525. }
  2526. },
  2527. diving: {
  2528. height: math.unit(4.9, "meters"),
  2529. weight: math.unit(2400, "lb"),
  2530. name: "Diving",
  2531. image: {
  2532. source: "./media/characters/fen/diving.svg"
  2533. }
  2534. },
  2535. sleeby: {
  2536. height: math.unit(3.45, "meters"),
  2537. weight: math.unit(2400, "lb"),
  2538. name: "Sleeby",
  2539. image: {
  2540. source: "./media/characters/fen/sleeby.svg"
  2541. }
  2542. },
  2543. goo: {
  2544. height: math.unit(12, "feet"),
  2545. weight: math.unit(3600, "lb"),
  2546. volume: math.unit(1000, "liters"),
  2547. preyCapacity: math.unit(6, "people"),
  2548. name: "Goo",
  2549. image: {
  2550. source: "./media/characters/fen/goo.svg",
  2551. extra: 1307/1071,
  2552. bottom: 134/1441
  2553. }
  2554. },
  2555. horror: {
  2556. height: math.unit(13.6, "feet"),
  2557. weight: math.unit(2400, "lb"),
  2558. preyCapacity: math.unit(1, "people"),
  2559. name: "Horror",
  2560. image: {
  2561. source: "./media/characters/fen/horror.svg",
  2562. extra: 893/797,
  2563. bottom: 0/893
  2564. }
  2565. },
  2566. gooNsfw: {
  2567. height: math.unit(12, "feet"),
  2568. weight: math.unit(3750, "lb"),
  2569. volume: math.unit(1000, "liters"),
  2570. preyCapacity: math.unit(6, "people"),
  2571. name: "Goo (NSFW)",
  2572. image: {
  2573. source: "./media/characters/fen/goo-nsfw.svg",
  2574. extra: 1875/1734,
  2575. bottom: 122/1997
  2576. }
  2577. },
  2578. maw: {
  2579. height: math.unit(5.03, "feet"),
  2580. name: "Maw",
  2581. image: {
  2582. source: "./media/characters/fen/maw.svg"
  2583. }
  2584. },
  2585. gooCeiling: {
  2586. height: math.unit(6.6, "feet"),
  2587. weight: math.unit(3000, "lb"),
  2588. volume: math.unit(1000, "liters"),
  2589. preyCapacity: math.unit(6, "people"),
  2590. name: "Maw (Goo)",
  2591. image: {
  2592. source: "./media/characters/fen/goo-maw.svg"
  2593. }
  2594. },
  2595. paw: {
  2596. height: math.unit(3.77, "feet"),
  2597. name: "Paw",
  2598. image: {
  2599. source: "./media/characters/fen/paw.svg"
  2600. },
  2601. extraAttributes: {
  2602. "toeSize": {
  2603. name: "Toe Size",
  2604. power: 2,
  2605. type: "area",
  2606. base: math.unit(0.02875, "m^2")
  2607. },
  2608. "pawSize": {
  2609. name: "Paw Size",
  2610. power: 2,
  2611. type: "area",
  2612. base: math.unit(0.378, "m^2")
  2613. },
  2614. }
  2615. },
  2616. tail: {
  2617. height: math.unit(12.1, "feet"),
  2618. name: "Tail",
  2619. image: {
  2620. source: "./media/characters/fen/tail.svg"
  2621. }
  2622. },
  2623. tailFull: {
  2624. height: math.unit(12.1, "feet"),
  2625. name: "Full Tail",
  2626. image: {
  2627. source: "./media/characters/fen/tail-full.svg"
  2628. }
  2629. },
  2630. back: {
  2631. height: math.unit(12, "feet"),
  2632. weight: math.unit(2400, "lb"),
  2633. name: "Back",
  2634. image: {
  2635. source: "./media/characters/fen/back.svg",
  2636. },
  2637. info: {
  2638. description: {
  2639. mode: "append",
  2640. text: "\n\nHe is not currently looking at you."
  2641. }
  2642. }
  2643. },
  2644. full: {
  2645. height: math.unit(1.85, "meter"),
  2646. weight: math.unit(3200, "lb"),
  2647. preyCapacity: math.unit(3, "people"),
  2648. name: "Full",
  2649. image: {
  2650. source: "./media/characters/fen/full.svg",
  2651. extra: 1133/859,
  2652. bottom: 145/1278
  2653. },
  2654. info: {
  2655. description: {
  2656. mode: "append",
  2657. text: "\n\nMunch."
  2658. }
  2659. }
  2660. },
  2661. gooLounging: {
  2662. height: math.unit(4.53, "feet"),
  2663. weight: math.unit(3000, "lb"),
  2664. preyCapacity: math.unit(6, "people"),
  2665. name: "Goo (Lounging)",
  2666. image: {
  2667. source: "./media/characters/fen/goo-lounging.svg",
  2668. bottom: 116 / 613
  2669. }
  2670. },
  2671. lounging: {
  2672. height: math.unit(10.52, "feet"),
  2673. weight: math.unit(2400, "lb"),
  2674. name: "Lounging",
  2675. image: {
  2676. source: "./media/characters/fen/lounging.svg"
  2677. }
  2678. },
  2679. },
  2680. [
  2681. {
  2682. name: "Small",
  2683. height: math.unit(2.2428, "meter")
  2684. },
  2685. {
  2686. name: "Normal",
  2687. height: math.unit(12, "feet"),
  2688. default: true,
  2689. },
  2690. {
  2691. name: "Big",
  2692. height: math.unit(20, "feet")
  2693. },
  2694. {
  2695. name: "Minimacro",
  2696. height: math.unit(40, "feet"),
  2697. info: {
  2698. description: {
  2699. mode: "append",
  2700. text: "\n\nTOO DAMN BIG"
  2701. }
  2702. }
  2703. },
  2704. {
  2705. name: "Macro",
  2706. height: math.unit(100, "feet"),
  2707. info: {
  2708. description: {
  2709. mode: "append",
  2710. text: "\n\nTOO DAMN BIG"
  2711. }
  2712. }
  2713. },
  2714. {
  2715. name: "Megamacro",
  2716. height: math.unit(2, "miles")
  2717. },
  2718. {
  2719. name: "Gigamacro",
  2720. height: math.unit(10, "earths")
  2721. },
  2722. ]
  2723. ))
  2724. characterMakers.push(() => makeCharacter(
  2725. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2726. {
  2727. front: {
  2728. height: math.unit(183, "cm"),
  2729. weight: math.unit(80, "kg"),
  2730. name: "Front",
  2731. image: {
  2732. source: "./media/characters/sofia-fluttertail/front.svg",
  2733. bottom: 0.01,
  2734. extra: 2154 / 2081
  2735. }
  2736. },
  2737. frontAlt: {
  2738. height: math.unit(183, "cm"),
  2739. weight: math.unit(80, "kg"),
  2740. name: "Front (alt)",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2743. }
  2744. },
  2745. back: {
  2746. height: math.unit(183, "cm"),
  2747. weight: math.unit(80, "kg"),
  2748. name: "Back",
  2749. image: {
  2750. source: "./media/characters/sofia-fluttertail/back.svg"
  2751. }
  2752. },
  2753. kneeling: {
  2754. height: math.unit(125, "cm"),
  2755. weight: math.unit(80, "kg"),
  2756. name: "Kneeling",
  2757. image: {
  2758. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2759. extra: 1033 / 977,
  2760. bottom: 23.7 / 1057
  2761. }
  2762. },
  2763. maw: {
  2764. height: math.unit(183 / 5, "cm"),
  2765. name: "Maw",
  2766. image: {
  2767. source: "./media/characters/sofia-fluttertail/maw.svg"
  2768. }
  2769. },
  2770. mawcloseup: {
  2771. height: math.unit(183 / 5 * 0.41, "cm"),
  2772. name: "Maw (Closeup)",
  2773. image: {
  2774. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2775. }
  2776. },
  2777. paws: {
  2778. height: math.unit(1.17, "feet"),
  2779. name: "Paws",
  2780. image: {
  2781. source: "./media/characters/sofia-fluttertail/paws.svg",
  2782. extra: 851 / 851,
  2783. bottom: 17 / 868
  2784. }
  2785. },
  2786. },
  2787. [
  2788. {
  2789. name: "Normal",
  2790. height: math.unit(1.83, "meter")
  2791. },
  2792. {
  2793. name: "Size Thief",
  2794. height: math.unit(18, "feet")
  2795. },
  2796. {
  2797. name: "50 Foot Collie",
  2798. height: math.unit(50, "feet")
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(96, "feet"),
  2803. default: true
  2804. },
  2805. {
  2806. name: "Megamerger",
  2807. height: math.unit(650, "feet")
  2808. },
  2809. ]
  2810. ))
  2811. characterMakers.push(() => makeCharacter(
  2812. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2813. {
  2814. front: {
  2815. height: math.unit(7, "feet"),
  2816. weight: math.unit(100, "kg"),
  2817. name: "Front",
  2818. image: {
  2819. source: "./media/characters/march/front.svg",
  2820. extra: 1992/1851,
  2821. bottom: 39/2031
  2822. }
  2823. },
  2824. foot: {
  2825. height: math.unit(0.9, "feet"),
  2826. name: "Foot",
  2827. image: {
  2828. source: "./media/characters/march/foot.svg"
  2829. }
  2830. },
  2831. },
  2832. [
  2833. {
  2834. name: "Normal",
  2835. height: math.unit(7.9, "feet")
  2836. },
  2837. {
  2838. name: "Macro",
  2839. height: math.unit(220, "meters")
  2840. },
  2841. {
  2842. name: "Megamacro",
  2843. height: math.unit(2.98, "km"),
  2844. default: true
  2845. },
  2846. {
  2847. name: "Gigamacro",
  2848. height: math.unit(15963, "km")
  2849. },
  2850. {
  2851. name: "Teramacro",
  2852. height: math.unit(2980000000, "km")
  2853. },
  2854. {
  2855. name: "Examacro",
  2856. height: math.unit(250, "parsecs")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(6, "feet"),
  2865. weight: math.unit(60, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/noir/front.svg",
  2869. extra: 1793/1668,
  2870. bottom: 74/1867
  2871. }
  2872. },
  2873. },
  2874. [
  2875. {
  2876. name: "Normal",
  2877. height: math.unit(6.6, "feet")
  2878. },
  2879. {
  2880. name: "Macro",
  2881. height: math.unit(500, "feet")
  2882. },
  2883. {
  2884. name: "Megamacro",
  2885. height: math.unit(2.5, "km"),
  2886. default: true
  2887. },
  2888. {
  2889. name: "Gigamacro",
  2890. height: math.unit(22500, "km")
  2891. },
  2892. {
  2893. name: "Teramacro",
  2894. height: math.unit(2500000000, "km")
  2895. },
  2896. {
  2897. name: "Examacro",
  2898. height: math.unit(200, "parsecs")
  2899. },
  2900. ]
  2901. ))
  2902. characterMakers.push(() => makeCharacter(
  2903. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2904. {
  2905. front: {
  2906. height: math.unit(7, "feet"),
  2907. weight: math.unit(100, "kg"),
  2908. name: "Front",
  2909. image: {
  2910. source: "./media/characters/okuri/front.svg",
  2911. extra: 739/665,
  2912. bottom: 39/778
  2913. }
  2914. },
  2915. back: {
  2916. height: math.unit(7, "feet"),
  2917. weight: math.unit(100, "kg"),
  2918. name: "Back",
  2919. image: {
  2920. source: "./media/characters/okuri/back.svg",
  2921. extra: 734/653,
  2922. bottom: 13/747
  2923. }
  2924. },
  2925. sitting: {
  2926. height: math.unit(2.95, "feet"),
  2927. weight: math.unit(100, "kg"),
  2928. name: "Sitting",
  2929. image: {
  2930. source: "./media/characters/okuri/sitting.svg",
  2931. extra: 370/318,
  2932. bottom: 99/469
  2933. }
  2934. },
  2935. },
  2936. [
  2937. {
  2938. name: "Smallest",
  2939. height: math.unit(5 + 2/12, "feet")
  2940. },
  2941. {
  2942. name: "Smaller",
  2943. height: math.unit(300, "feet")
  2944. },
  2945. {
  2946. name: "Small",
  2947. height: math.unit(1000, "feet")
  2948. },
  2949. {
  2950. name: "Macro",
  2951. height: math.unit(1, "mile")
  2952. },
  2953. {
  2954. name: "Mega Macro (Small)",
  2955. height: math.unit(20, "km")
  2956. },
  2957. {
  2958. name: "Mega Macro (Large)",
  2959. height: math.unit(600, "km")
  2960. },
  2961. {
  2962. name: "Giga Macro",
  2963. height: math.unit(10000, "km")
  2964. },
  2965. {
  2966. name: "Normal",
  2967. height: math.unit(577560, "km"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Large",
  2972. height: math.unit(4, "galaxies")
  2973. },
  2974. {
  2975. name: "Largest",
  2976. height: math.unit(15, "multiverses")
  2977. },
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2982. {
  2983. front: {
  2984. height: math.unit(7, "feet"),
  2985. weight: math.unit(100, "kg"),
  2986. name: "Front",
  2987. image: {
  2988. source: "./media/characters/manny/front.svg",
  2989. extra: 1,
  2990. bottom: 0.06
  2991. }
  2992. },
  2993. back: {
  2994. height: math.unit(7, "feet"),
  2995. weight: math.unit(100, "kg"),
  2996. name: "Back",
  2997. image: {
  2998. source: "./media/characters/manny/back.svg",
  2999. extra: 1,
  3000. bottom: 0.014
  3001. }
  3002. },
  3003. },
  3004. [
  3005. {
  3006. name: "Normal",
  3007. height: math.unit(7, "feet"),
  3008. },
  3009. {
  3010. name: "Macro",
  3011. height: math.unit(78, "feet"),
  3012. default: true
  3013. },
  3014. {
  3015. name: "Macro+",
  3016. height: math.unit(300, "meters")
  3017. },
  3018. {
  3019. name: "Macro++",
  3020. height: math.unit(2400, "meters")
  3021. },
  3022. {
  3023. name: "Megamacro",
  3024. height: math.unit(5167, "meters")
  3025. },
  3026. {
  3027. name: "Gigamacro",
  3028. height: math.unit(41769, "miles")
  3029. },
  3030. ]
  3031. ))
  3032. characterMakers.push(() => makeCharacter(
  3033. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3034. {
  3035. front: {
  3036. height: math.unit(7, "feet"),
  3037. weight: math.unit(100, "kg"),
  3038. name: "Front",
  3039. image: {
  3040. source: "./media/characters/adake/front-1.svg"
  3041. }
  3042. },
  3043. frontAlt: {
  3044. height: math.unit(7, "feet"),
  3045. weight: math.unit(100, "kg"),
  3046. name: "Front (Alt)",
  3047. image: {
  3048. source: "./media/characters/adake/front-2.svg",
  3049. extra: 1,
  3050. bottom: 0.01
  3051. }
  3052. },
  3053. back: {
  3054. height: math.unit(7, "feet"),
  3055. weight: math.unit(100, "kg"),
  3056. name: "Back",
  3057. image: {
  3058. source: "./media/characters/adake/back.svg",
  3059. }
  3060. },
  3061. kneel: {
  3062. height: math.unit(5.385, "feet"),
  3063. weight: math.unit(100, "kg"),
  3064. name: "Kneeling",
  3065. image: {
  3066. source: "./media/characters/adake/kneel.svg",
  3067. bottom: 0.052
  3068. }
  3069. },
  3070. },
  3071. [
  3072. {
  3073. name: "Normal",
  3074. height: math.unit(7, "feet"),
  3075. },
  3076. {
  3077. name: "Macro",
  3078. height: math.unit(78, "feet"),
  3079. default: true
  3080. },
  3081. {
  3082. name: "Macro+",
  3083. height: math.unit(300, "meters")
  3084. },
  3085. {
  3086. name: "Macro++",
  3087. height: math.unit(2400, "meters")
  3088. },
  3089. {
  3090. name: "Megamacro",
  3091. height: math.unit(5167, "meters")
  3092. },
  3093. {
  3094. name: "Gigamacro",
  3095. height: math.unit(41769, "miles")
  3096. },
  3097. ]
  3098. ))
  3099. characterMakers.push(() => makeCharacter(
  3100. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3101. {
  3102. front: {
  3103. height: math.unit(1.65, "meters"),
  3104. weight: math.unit(50, "kg"),
  3105. name: "Front",
  3106. image: {
  3107. source: "./media/characters/elijah/front.svg",
  3108. extra: 858 / 830,
  3109. bottom: 95.5 / 953.8559
  3110. }
  3111. },
  3112. back: {
  3113. height: math.unit(1.65, "meters"),
  3114. weight: math.unit(50, "kg"),
  3115. name: "Back",
  3116. image: {
  3117. source: "./media/characters/elijah/back.svg",
  3118. extra: 895 / 850,
  3119. bottom: 5.3 / 897.956
  3120. }
  3121. },
  3122. frontNsfw: {
  3123. height: math.unit(1.65, "meters"),
  3124. weight: math.unit(50, "kg"),
  3125. name: "Front (NSFW)",
  3126. image: {
  3127. source: "./media/characters/elijah/front-nsfw.svg",
  3128. extra: 858 / 830,
  3129. bottom: 95.5 / 953.8559
  3130. }
  3131. },
  3132. backNsfw: {
  3133. height: math.unit(1.65, "meters"),
  3134. weight: math.unit(50, "kg"),
  3135. name: "Back (NSFW)",
  3136. image: {
  3137. source: "./media/characters/elijah/back-nsfw.svg",
  3138. extra: 895 / 850,
  3139. bottom: 5.3 / 897.956
  3140. }
  3141. },
  3142. dick: {
  3143. height: math.unit(1, "feet"),
  3144. name: "Dick",
  3145. image: {
  3146. source: "./media/characters/elijah/dick.svg"
  3147. }
  3148. },
  3149. beakOpen: {
  3150. height: math.unit(1.25, "feet"),
  3151. name: "Beak (Open)",
  3152. image: {
  3153. source: "./media/characters/elijah/beak-open.svg"
  3154. }
  3155. },
  3156. beakShut: {
  3157. height: math.unit(1.25, "feet"),
  3158. name: "Beak (Shut)",
  3159. image: {
  3160. source: "./media/characters/elijah/beak-shut.svg"
  3161. }
  3162. },
  3163. footFlexing: {
  3164. height: math.unit(1.61, "feet"),
  3165. name: "Foot (Flexing)",
  3166. image: {
  3167. source: "./media/characters/elijah/foot-flexing.svg"
  3168. }
  3169. },
  3170. footStepping: {
  3171. height: math.unit(1.44, "feet"),
  3172. name: "Foot (Stepping)",
  3173. image: {
  3174. source: "./media/characters/elijah/foot-stepping.svg"
  3175. }
  3176. },
  3177. plantigradeLeg: {
  3178. height: math.unit(2.34, "feet"),
  3179. name: "Plantigrade Leg",
  3180. image: {
  3181. source: "./media/characters/elijah/plantigrade-leg.svg"
  3182. }
  3183. },
  3184. plantigradeFootLeft: {
  3185. height: math.unit(0.9, "feet"),
  3186. name: "Plantigrade Foot (Left)",
  3187. image: {
  3188. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3189. }
  3190. },
  3191. plantigradeFootRight: {
  3192. height: math.unit(0.9, "feet"),
  3193. name: "Plantigrade Foot (Right)",
  3194. image: {
  3195. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3196. }
  3197. },
  3198. },
  3199. [
  3200. {
  3201. name: "Normal",
  3202. height: math.unit(1.65, "meters")
  3203. },
  3204. {
  3205. name: "Macro",
  3206. height: math.unit(55, "meters"),
  3207. default: true
  3208. },
  3209. {
  3210. name: "Macro+",
  3211. height: math.unit(105, "meters")
  3212. },
  3213. ]
  3214. ))
  3215. characterMakers.push(() => makeCharacter(
  3216. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3217. {
  3218. front: {
  3219. height: math.unit(7 + 2/12, "feet"),
  3220. weight: math.unit(320, "kg"),
  3221. preyCapacity: math.unit(0.276549935, "people"),
  3222. name: "Front",
  3223. image: {
  3224. source: "./media/characters/rai/front.svg",
  3225. extra: 1802/1696,
  3226. bottom: 68/1870
  3227. },
  3228. form: "anthro",
  3229. default: true
  3230. },
  3231. frontDressed: {
  3232. height: math.unit(7 + 2/12, "feet"),
  3233. weight: math.unit(320, "kg"),
  3234. preyCapacity: math.unit(0.276549935, "people"),
  3235. name: "Front (Dressed)",
  3236. image: {
  3237. source: "./media/characters/rai/front-dressed.svg",
  3238. extra: 1802/1696,
  3239. bottom: 68/1870
  3240. },
  3241. form: "anthro"
  3242. },
  3243. side: {
  3244. height: math.unit(7 + 2/12, "feet"),
  3245. weight: math.unit(320, "kg"),
  3246. preyCapacity: math.unit(0.276549935, "people"),
  3247. name: "Side",
  3248. image: {
  3249. source: "./media/characters/rai/side.svg",
  3250. extra: 1789/1710,
  3251. bottom: 115/1904
  3252. },
  3253. form: "anthro"
  3254. },
  3255. back: {
  3256. height: math.unit(7 + 2/12, "feet"),
  3257. weight: math.unit(320, "kg"),
  3258. preyCapacity: math.unit(0.276549935, "people"),
  3259. name: "Back",
  3260. image: {
  3261. source: "./media/characters/rai/back.svg",
  3262. extra: 1770/1707,
  3263. bottom: 28/1798
  3264. },
  3265. form: "anthro"
  3266. },
  3267. feral: {
  3268. height: math.unit(9.5, "feet"),
  3269. weight: math.unit(640, "kg"),
  3270. preyCapacity: math.unit(4, "people"),
  3271. name: "Feral",
  3272. image: {
  3273. source: "./media/characters/rai/feral.svg",
  3274. extra: 945/553,
  3275. bottom: 176/1121
  3276. },
  3277. form: "feral",
  3278. default: true
  3279. },
  3280. dragon: {
  3281. height: math.unit(23, "feet"),
  3282. weight: math.unit(50000, "lb"),
  3283. name: "Dragon",
  3284. image: {
  3285. source: "./media/characters/rai/dragon.svg",
  3286. extra: 2498 / 2030,
  3287. bottom: 85.2 / 2584
  3288. },
  3289. form: "dragon",
  3290. default: true
  3291. },
  3292. maw: {
  3293. height: math.unit(1.69, "feet"),
  3294. name: "Maw",
  3295. image: {
  3296. source: "./media/characters/rai/maw.svg"
  3297. },
  3298. form: "anthro"
  3299. },
  3300. },
  3301. [
  3302. {
  3303. name: "Normal",
  3304. height: math.unit(7 + 2/12, "feet"),
  3305. form: "anthro"
  3306. },
  3307. {
  3308. name: "Big",
  3309. height: math.unit(11, "feet"),
  3310. form: "anthro"
  3311. },
  3312. {
  3313. name: "Minimacro",
  3314. height: math.unit(77, "feet"),
  3315. form: "anthro"
  3316. },
  3317. {
  3318. name: "Macro",
  3319. height: math.unit(302, "feet"),
  3320. default: true,
  3321. form: "anthro"
  3322. },
  3323. {
  3324. name: "Normal",
  3325. height: math.unit(9.5, "feet"),
  3326. form: "feral",
  3327. default: true
  3328. },
  3329. {
  3330. name: "Normal",
  3331. height: math.unit(23, "feet"),
  3332. form: "dragon",
  3333. default: true
  3334. }
  3335. ],
  3336. {
  3337. "anthro": {
  3338. name: "Anthro",
  3339. default: true
  3340. },
  3341. "feral": {
  3342. name: "Feral",
  3343. },
  3344. "dragon": {
  3345. name: "Dragon",
  3346. },
  3347. }
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3351. {
  3352. frontDressed: {
  3353. height: math.unit(216, "feet"),
  3354. weight: math.unit(7000000, "lb"),
  3355. preyCapacity: math.unit(1321, "people"),
  3356. name: "Front (Dressed)",
  3357. image: {
  3358. source: "./media/characters/jazzy/front-dressed.svg",
  3359. extra: 2738 / 2651,
  3360. bottom: 41.8 / 2786
  3361. }
  3362. },
  3363. backDressed: {
  3364. height: math.unit(216, "feet"),
  3365. weight: math.unit(7000000, "lb"),
  3366. preyCapacity: math.unit(1321, "people"),
  3367. name: "Back (Dressed)",
  3368. image: {
  3369. source: "./media/characters/jazzy/back-dressed.svg",
  3370. extra: 2775 / 2673,
  3371. bottom: 36.8 / 2817
  3372. }
  3373. },
  3374. front: {
  3375. height: math.unit(216, "feet"),
  3376. weight: math.unit(7000000, "lb"),
  3377. preyCapacity: math.unit(1321, "people"),
  3378. name: "Front",
  3379. image: {
  3380. source: "./media/characters/jazzy/front.svg",
  3381. extra: 2738 / 2651,
  3382. bottom: 41.8 / 2786
  3383. }
  3384. },
  3385. back: {
  3386. height: math.unit(216, "feet"),
  3387. weight: math.unit(7000000, "lb"),
  3388. preyCapacity: math.unit(1321, "people"),
  3389. name: "Back",
  3390. image: {
  3391. source: "./media/characters/jazzy/back.svg",
  3392. extra: 2775 / 2673,
  3393. bottom: 36.8 / 2817
  3394. }
  3395. },
  3396. maw: {
  3397. height: math.unit(20, "feet"),
  3398. name: "Maw",
  3399. image: {
  3400. source: "./media/characters/jazzy/maw.svg"
  3401. }
  3402. },
  3403. paws: {
  3404. height: math.unit(27.5, "feet"),
  3405. name: "Paws",
  3406. image: {
  3407. source: "./media/characters/jazzy/paws.svg"
  3408. }
  3409. },
  3410. eye: {
  3411. height: math.unit(4.4, "feet"),
  3412. name: "Eye",
  3413. image: {
  3414. source: "./media/characters/jazzy/eye.svg"
  3415. }
  3416. },
  3417. droneOffense: {
  3418. height: math.unit(9.5, "inches"),
  3419. name: "Drone (Offense)",
  3420. image: {
  3421. source: "./media/characters/jazzy/drone-offense.svg"
  3422. }
  3423. },
  3424. droneRecon: {
  3425. height: math.unit(9.5, "inches"),
  3426. name: "Drone (Recon)",
  3427. image: {
  3428. source: "./media/characters/jazzy/drone-recon.svg"
  3429. }
  3430. },
  3431. droneDefense: {
  3432. height: math.unit(9.5, "inches"),
  3433. name: "Drone (Defense)",
  3434. image: {
  3435. source: "./media/characters/jazzy/drone-defense.svg"
  3436. }
  3437. },
  3438. },
  3439. [
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(216, "feet"),
  3443. default: true
  3444. },
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(9 + 6/12, "feet"),
  3452. weight: math.unit(700, "lb"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/flamm/front.svg",
  3456. extra: 1736/1596,
  3457. bottom: 93/1829
  3458. }
  3459. },
  3460. buff: {
  3461. height: math.unit(9 + 6/12, "feet"),
  3462. weight: math.unit(950, "lb"),
  3463. name: "Buff",
  3464. image: {
  3465. source: "./media/characters/flamm/buff.svg",
  3466. extra: 3018/2874,
  3467. bottom: 221/3239
  3468. }
  3469. },
  3470. lyingFront: {
  3471. height: math.unit(9 + 6/12, "feet"),
  3472. weight: math.unit(700, "lb"),
  3473. name: "Lying (Front)",
  3474. image: {
  3475. source: "./media/characters/flamm/lying-front.svg"
  3476. },
  3477. extraAttributes: {
  3478. "ballVolume": {
  3479. name: "Ball Volume",
  3480. power: 3,
  3481. type: "volume",
  3482. base: math.unit(5, "liters")
  3483. },
  3484. }
  3485. },
  3486. lyingBack: {
  3487. height: math.unit(9 + 6/12, "feet"),
  3488. weight: math.unit(700, "lb"),
  3489. name: "Lying (Back)",
  3490. image: {
  3491. source: "./media/characters/flamm/lying-back.svg"
  3492. },
  3493. extraAttributes: {
  3494. "ballVolume": {
  3495. name: "Ball Volume",
  3496. power: 3,
  3497. type: "volume",
  3498. base: math.unit(5, "liters")
  3499. },
  3500. }
  3501. },
  3502. },
  3503. [
  3504. {
  3505. name: "Normal",
  3506. height: math.unit(9.5, "feet")
  3507. },
  3508. {
  3509. name: "Macro",
  3510. height: math.unit(200, "feet"),
  3511. default: true
  3512. },
  3513. ]
  3514. ))
  3515. characterMakers.push(() => makeCharacter(
  3516. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3517. {
  3518. front: {
  3519. height: math.unit(5 + 3/12, "feet"),
  3520. weight: math.unit(60, "kg"),
  3521. name: "Front",
  3522. image: {
  3523. source: "./media/characters/zephiro/front.svg",
  3524. extra: 1873/1761,
  3525. bottom: 147/2020
  3526. }
  3527. },
  3528. side: {
  3529. height: math.unit(5 + 3/12, "feet"),
  3530. weight: math.unit(60, "kg"),
  3531. name: "Side",
  3532. image: {
  3533. source: "./media/characters/zephiro/side.svg",
  3534. extra: 1929/1827,
  3535. bottom: 65/1994
  3536. }
  3537. },
  3538. back: {
  3539. height: math.unit(5 + 3/12, "feet"),
  3540. weight: math.unit(60, "kg"),
  3541. name: "Back",
  3542. image: {
  3543. source: "./media/characters/zephiro/back.svg",
  3544. extra: 1926/1816,
  3545. bottom: 41/1967
  3546. }
  3547. },
  3548. hand: {
  3549. height: math.unit(0.68, "feet"),
  3550. name: "Hand",
  3551. image: {
  3552. source: "./media/characters/zephiro/hand.svg"
  3553. }
  3554. },
  3555. paw: {
  3556. height: math.unit(1, "feet"),
  3557. name: "Paw",
  3558. image: {
  3559. source: "./media/characters/zephiro/paw.svg"
  3560. }
  3561. },
  3562. beans: {
  3563. height: math.unit(0.93, "feet"),
  3564. name: "Beans",
  3565. image: {
  3566. source: "./media/characters/zephiro/beans.svg"
  3567. }
  3568. },
  3569. },
  3570. [
  3571. {
  3572. name: "Micro",
  3573. height: math.unit(3, "inches")
  3574. },
  3575. {
  3576. name: "Normal",
  3577. height: math.unit(5 + 3 / 12, "feet"),
  3578. default: true
  3579. },
  3580. {
  3581. name: "Macro",
  3582. height: math.unit(118, "feet")
  3583. },
  3584. ]
  3585. ))
  3586. characterMakers.push(() => makeCharacter(
  3587. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3588. {
  3589. front: {
  3590. height: math.unit(5, "feet"),
  3591. weight: math.unit(90, "kg"),
  3592. preyCapacity: math.unit(14, "people"),
  3593. name: "Front",
  3594. image: {
  3595. source: "./media/characters/fory/front.svg",
  3596. extra: 2862 / 2674,
  3597. bottom: 180 / 3043.8
  3598. },
  3599. form: "weaselbun",
  3600. default: true,
  3601. extraAttributes: {
  3602. "pawSize": {
  3603. name: "Paw Size",
  3604. power: 2,
  3605. type: "area",
  3606. base: math.unit(0.1596, "m^2")
  3607. },
  3608. "pawLength": {
  3609. name: "Paw Length",
  3610. power: 1,
  3611. type: "length",
  3612. base: math.unit(0.7, "m")
  3613. }
  3614. }
  3615. },
  3616. back: {
  3617. height: math.unit(5, "feet"),
  3618. weight: math.unit(90, "kg"),
  3619. preyCapacity: math.unit(14, "people"),
  3620. name: "Back",
  3621. image: {
  3622. source: "./media/characters/fory/back.svg",
  3623. extra: 1790/1672,
  3624. bottom: 84/1874
  3625. },
  3626. form: "weaselbun",
  3627. extraAttributes: {
  3628. "pawSize": {
  3629. name: "Paw Size",
  3630. power: 2,
  3631. type: "area",
  3632. base: math.unit(0.1596, "m^2")
  3633. },
  3634. "pawLength": {
  3635. name: "Paw Length",
  3636. power: 1,
  3637. type: "length",
  3638. base: math.unit(0.7, "m")
  3639. }
  3640. }
  3641. },
  3642. paw: {
  3643. height: math.unit(2.14, "feet"),
  3644. name: "Paw",
  3645. image: {
  3646. source: "./media/characters/fory/paw.svg"
  3647. },
  3648. form: "weaselbun",
  3649. extraAttributes: {
  3650. "pawSize": {
  3651. name: "Paw Size",
  3652. power: 2,
  3653. type: "area",
  3654. base: math.unit(0.1596, "m^2")
  3655. },
  3656. "pawLength": {
  3657. name: "Paw Length",
  3658. power: 1,
  3659. type: "length",
  3660. base: math.unit(0.48, "m")
  3661. }
  3662. }
  3663. },
  3664. bunBack: {
  3665. height: math.unit(3, "feet"),
  3666. weight: math.unit(20, "kg"),
  3667. preyCapacity: math.unit(3, "people"),
  3668. name: "Back",
  3669. image: {
  3670. source: "./media/characters/fory/bun-back.svg",
  3671. extra: 1749/1564,
  3672. bottom: 246/1995
  3673. },
  3674. form: "bun",
  3675. default: true,
  3676. extraAttributes: {
  3677. "pawSize": {
  3678. name: "Paw Size",
  3679. power: 2,
  3680. type: "area",
  3681. base: math.unit(0.072, "m^2")
  3682. },
  3683. "pawLength": {
  3684. name: "Paw Length",
  3685. power: 1,
  3686. type: "length",
  3687. base: math.unit(0.45, "m")
  3688. }
  3689. }
  3690. },
  3691. },
  3692. [
  3693. {
  3694. name: "Normal",
  3695. height: math.unit(5, "feet"),
  3696. form: "weaselbun"
  3697. },
  3698. {
  3699. name: "Macro",
  3700. height: math.unit(50, "feet"),
  3701. default: true,
  3702. form: "weaselbun"
  3703. },
  3704. {
  3705. name: "Megamacro",
  3706. height: math.unit(10, "miles"),
  3707. form: "weaselbun"
  3708. },
  3709. {
  3710. name: "Gigamacro",
  3711. height: math.unit(5, "earths"),
  3712. form: "weaselbun"
  3713. },
  3714. {
  3715. name: "Normal",
  3716. height: math.unit(3, "feet"),
  3717. default: true,
  3718. form: "bun"
  3719. },
  3720. {
  3721. name: "Fun-Size",
  3722. height: math.unit(12, "feet"),
  3723. form: "bun"
  3724. },
  3725. {
  3726. name: "Macro",
  3727. height: math.unit(100, "feet"),
  3728. form: "bun"
  3729. },
  3730. {
  3731. name: "Planetary",
  3732. height: math.unit(3, "earths"),
  3733. form: "bun"
  3734. },
  3735. ],
  3736. {
  3737. "weaselbun": {
  3738. name: "Weaselbun",
  3739. default: true
  3740. },
  3741. "bun": {
  3742. name: "Bun",
  3743. },
  3744. }
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(7, "feet"),
  3751. weight: math.unit(90, "kg"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/kurrikage/front.svg",
  3755. extra: 1845/1733,
  3756. bottom: 119/1964
  3757. }
  3758. },
  3759. back: {
  3760. height: math.unit(7, "feet"),
  3761. weight: math.unit(90, "kg"),
  3762. name: "Back",
  3763. image: {
  3764. source: "./media/characters/kurrikage/back.svg",
  3765. extra: 1790/1677,
  3766. bottom: 61/1851
  3767. }
  3768. },
  3769. dressed: {
  3770. height: math.unit(7, "feet"),
  3771. weight: math.unit(90, "kg"),
  3772. name: "Dressed",
  3773. image: {
  3774. source: "./media/characters/kurrikage/dressed.svg",
  3775. extra: 1845/1733,
  3776. bottom: 119/1964
  3777. }
  3778. },
  3779. foot: {
  3780. height: math.unit(1.5, "feet"),
  3781. name: "Foot",
  3782. image: {
  3783. source: "./media/characters/kurrikage/foot.svg"
  3784. }
  3785. },
  3786. staff: {
  3787. height: math.unit(6.7, "feet"),
  3788. name: "Staff",
  3789. image: {
  3790. source: "./media/characters/kurrikage/staff.svg"
  3791. }
  3792. },
  3793. peek: {
  3794. height: math.unit(1.05, "feet"),
  3795. name: "Peeking",
  3796. image: {
  3797. source: "./media/characters/kurrikage/peek.svg",
  3798. bottom: 0.08
  3799. }
  3800. },
  3801. },
  3802. [
  3803. {
  3804. name: "Normal",
  3805. height: math.unit(12, "feet"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "Big",
  3810. height: math.unit(20, "feet")
  3811. },
  3812. {
  3813. name: "Macro",
  3814. height: math.unit(500, "feet")
  3815. },
  3816. {
  3817. name: "Megamacro",
  3818. height: math.unit(20, "miles")
  3819. },
  3820. ]
  3821. ))
  3822. characterMakers.push(() => makeCharacter(
  3823. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3824. {
  3825. front: {
  3826. height: math.unit(6, "feet"),
  3827. weight: math.unit(75, "kg"),
  3828. name: "Front",
  3829. image: {
  3830. source: "./media/characters/shingo/front.svg",
  3831. extra: 1900/1825,
  3832. bottom: 82/1982
  3833. }
  3834. },
  3835. side: {
  3836. height: math.unit(6, "feet"),
  3837. weight: math.unit(75, "kg"),
  3838. name: "Side",
  3839. image: {
  3840. source: "./media/characters/shingo/side.svg",
  3841. extra: 1930/1865,
  3842. bottom: 16/1946
  3843. }
  3844. },
  3845. back: {
  3846. height: math.unit(6, "feet"),
  3847. weight: math.unit(75, "kg"),
  3848. name: "Back",
  3849. image: {
  3850. source: "./media/characters/shingo/back.svg",
  3851. extra: 1922/1852,
  3852. bottom: 16/1938
  3853. }
  3854. },
  3855. frontDressed: {
  3856. height: math.unit(6, "feet"),
  3857. weight: math.unit(150, "lb"),
  3858. name: "Front (Dressed)",
  3859. image: {
  3860. source: "./media/characters/shingo/front-dressed.svg",
  3861. extra: 1900/1825,
  3862. bottom: 82/1982
  3863. }
  3864. },
  3865. paw: {
  3866. height: math.unit(1.29, "feet"),
  3867. name: "Paw",
  3868. image: {
  3869. source: "./media/characters/shingo/paw.svg"
  3870. }
  3871. },
  3872. hand: {
  3873. height: math.unit(1.07, "feet"),
  3874. name: "Hand",
  3875. image: {
  3876. source: "./media/characters/shingo/hand.svg"
  3877. }
  3878. },
  3879. frontAlt: {
  3880. height: math.unit(6, "feet"),
  3881. weight: math.unit(75, "kg"),
  3882. name: "Front (Alt)",
  3883. image: {
  3884. source: "./media/characters/shingo/front-alt.svg",
  3885. extra: 3511 / 3338,
  3886. bottom: 0.005
  3887. }
  3888. },
  3889. frontAlt2: {
  3890. height: math.unit(6, "feet"),
  3891. weight: math.unit(75, "kg"),
  3892. name: "Front (Alt 2)",
  3893. image: {
  3894. source: "./media/characters/shingo/front-alt-2.svg",
  3895. extra: 706/681,
  3896. bottom: 11/717
  3897. }
  3898. },
  3899. pawAlt: {
  3900. height: math.unit(1, "feet"),
  3901. name: "Paw (Alt)",
  3902. image: {
  3903. source: "./media/characters/shingo/paw-alt.svg"
  3904. }
  3905. },
  3906. },
  3907. [
  3908. {
  3909. name: "Micro",
  3910. height: math.unit(4, "inches")
  3911. },
  3912. {
  3913. name: "Normal",
  3914. height: math.unit(6, "feet"),
  3915. default: true
  3916. },
  3917. {
  3918. name: "Macro",
  3919. height: math.unit(108, "feet")
  3920. },
  3921. {
  3922. name: "Macro+",
  3923. height: math.unit(1500, "feet")
  3924. },
  3925. ]
  3926. ))
  3927. characterMakers.push(() => makeCharacter(
  3928. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3929. {
  3930. side: {
  3931. height: math.unit(6, "feet"),
  3932. weight: math.unit(75, "kg"),
  3933. name: "Side",
  3934. image: {
  3935. source: "./media/characters/aigey/side.svg"
  3936. }
  3937. },
  3938. },
  3939. [
  3940. {
  3941. name: "Macro",
  3942. height: math.unit(200, "feet"),
  3943. default: true
  3944. },
  3945. {
  3946. name: "Megamacro",
  3947. height: math.unit(100, "miles")
  3948. },
  3949. ]
  3950. )
  3951. )
  3952. characterMakers.push(() => makeCharacter(
  3953. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3954. {
  3955. front: {
  3956. height: math.unit(13, "feet"),
  3957. weight: math.unit(1036.80, "kg"),
  3958. name: "Front",
  3959. image: {
  3960. source: "./media/characters/natasha/front.svg",
  3961. extra: 1301/1210,
  3962. bottom: 39/1340
  3963. }
  3964. },
  3965. back: {
  3966. height: math.unit(13, "feet"),
  3967. weight: math.unit(1036.80, "kg"),
  3968. name: "Back",
  3969. image: {
  3970. source: "./media/characters/natasha/back.svg",
  3971. extra: 1342/1252,
  3972. bottom: 20/1362
  3973. }
  3974. },
  3975. head: {
  3976. height: math.unit(3.48, "feet"),
  3977. name: "Head",
  3978. image: {
  3979. source: "./media/characters/natasha/head.svg"
  3980. }
  3981. },
  3982. jaws: {
  3983. height: math.unit(3.52, "feet"),
  3984. name: "Jaws",
  3985. image: {
  3986. source: "./media/characters/natasha/jaws.svg"
  3987. }
  3988. },
  3989. paws: {
  3990. height: math.unit(2.7, "feet"),
  3991. name: "Paws",
  3992. image: {
  3993. source: "./media/characters/natasha/paws.svg"
  3994. }
  3995. },
  3996. collar: {
  3997. height: math.unit(0.89, "feet"),
  3998. name: "Collar",
  3999. image: {
  4000. source: "./media/characters/natasha/collar.svg"
  4001. }
  4002. },
  4003. gauge: {
  4004. height: math.unit(0.36, "feet"),
  4005. name: "Gauge",
  4006. image: {
  4007. source: "./media/characters/natasha/gauge.svg"
  4008. }
  4009. },
  4010. },
  4011. [
  4012. {
  4013. name: "Shortstack",
  4014. height: math.unit(3, "feet")
  4015. },
  4016. {
  4017. name: "Normal",
  4018. height: math.unit(13, "feet"),
  4019. default: true
  4020. },
  4021. {
  4022. name: "Macro",
  4023. height: math.unit(100, "feet")
  4024. },
  4025. {
  4026. name: "Macro+",
  4027. height: math.unit(260, "feet")
  4028. },
  4029. {
  4030. name: "Macro++",
  4031. height: math.unit(1, "mile")
  4032. },
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  4037. {
  4038. front: {
  4039. height: math.unit(6, "feet"),
  4040. weight: math.unit(75, "kg"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/malik/front.svg",
  4044. extra: 1750/1561,
  4045. bottom: 80/1830
  4046. },
  4047. extraAttributes: {
  4048. "toeSize": {
  4049. name: "Toe Size",
  4050. power: 2,
  4051. type: "area",
  4052. base: math.unit(0.0159, "m^2")
  4053. },
  4054. "pawSize": {
  4055. name: "Paw Size",
  4056. power: 2,
  4057. type: "area",
  4058. base: math.unit(0.09834, "m^2")
  4059. },
  4060. }
  4061. },
  4062. side: {
  4063. height: math.unit(6, "feet"),
  4064. weight: math.unit(75, "kg"),
  4065. name: "Side",
  4066. image: {
  4067. source: "./media/characters/malik/side.svg",
  4068. extra: 1802/1685,
  4069. bottom: 42/1844
  4070. },
  4071. extraAttributes: {
  4072. "toeSize": {
  4073. name: "Toe Size",
  4074. power: 2,
  4075. type: "area",
  4076. base: math.unit(0.0159, "m^2")
  4077. },
  4078. "pawSize": {
  4079. name: "Paw Size",
  4080. power: 2,
  4081. type: "area",
  4082. base: math.unit(0.09834, "m^2")
  4083. },
  4084. }
  4085. },
  4086. back: {
  4087. height: math.unit(6, "feet"),
  4088. weight: math.unit(75, "kg"),
  4089. name: "Back",
  4090. image: {
  4091. source: "./media/characters/malik/back.svg",
  4092. extra: 1803/1607,
  4093. bottom: 33/1836
  4094. },
  4095. extraAttributes: {
  4096. "toeSize": {
  4097. name: "Toe Size",
  4098. power: 2,
  4099. type: "area",
  4100. base: math.unit(0.0159, "m^2")
  4101. },
  4102. "pawSize": {
  4103. name: "Paw Size",
  4104. power: 2,
  4105. type: "area",
  4106. base: math.unit(0.09834, "m^2")
  4107. },
  4108. }
  4109. },
  4110. },
  4111. [
  4112. {
  4113. name: "Macro",
  4114. height: math.unit(156, "feet"),
  4115. default: true
  4116. },
  4117. {
  4118. name: "Macro+",
  4119. height: math.unit(1188, "feet")
  4120. },
  4121. ]
  4122. ))
  4123. characterMakers.push(() => makeCharacter(
  4124. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4125. {
  4126. front: {
  4127. height: math.unit(6, "feet"),
  4128. weight: math.unit(75, "kg"),
  4129. name: "Front",
  4130. image: {
  4131. source: "./media/characters/sefer/front.svg",
  4132. extra: 848 / 659,
  4133. bottom: 28.3 / 876.442
  4134. }
  4135. },
  4136. back: {
  4137. height: math.unit(6, "feet"),
  4138. weight: math.unit(75, "kg"),
  4139. name: "Back",
  4140. image: {
  4141. source: "./media/characters/sefer/back.svg",
  4142. extra: 864 / 695,
  4143. bottom: 10 / 871
  4144. }
  4145. },
  4146. frontDressed: {
  4147. height: math.unit(6, "feet"),
  4148. weight: math.unit(75, "kg"),
  4149. name: "Dressed",
  4150. image: {
  4151. source: "./media/characters/sefer/dressed.svg",
  4152. extra: 839 / 653,
  4153. bottom: 37.6 / 878
  4154. }
  4155. },
  4156. },
  4157. [
  4158. {
  4159. name: "Normal",
  4160. height: math.unit(6, "feet"),
  4161. default: true
  4162. },
  4163. {
  4164. name: "Big",
  4165. height: math.unit(8, "meters")
  4166. },
  4167. ]
  4168. ))
  4169. characterMakers.push(() => makeCharacter(
  4170. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4171. {
  4172. body: {
  4173. height: math.unit(2.2428, "meter"),
  4174. weight: math.unit(124.738, "kg"),
  4175. name: "Body",
  4176. image: {
  4177. extra: 1225 / 1050,
  4178. source: "./media/characters/north/front.svg"
  4179. }
  4180. }
  4181. },
  4182. [
  4183. {
  4184. name: "Micro",
  4185. height: math.unit(4, "inches")
  4186. },
  4187. {
  4188. name: "Macro",
  4189. height: math.unit(63, "meters")
  4190. },
  4191. {
  4192. name: "Megamacro",
  4193. height: math.unit(101, "miles"),
  4194. default: true
  4195. }
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4200. {
  4201. angled: {
  4202. height: math.unit(4, "meter"),
  4203. weight: math.unit(150, "kg"),
  4204. name: "Angled",
  4205. image: {
  4206. source: "./media/characters/talan/angled-sfw.svg",
  4207. bottom: 29 / 3734
  4208. }
  4209. },
  4210. angledNsfw: {
  4211. height: math.unit(4, "meter"),
  4212. weight: math.unit(150, "kg"),
  4213. name: "Angled (NSFW)",
  4214. image: {
  4215. source: "./media/characters/talan/angled-nsfw.svg",
  4216. bottom: 29 / 3734
  4217. }
  4218. },
  4219. frontNsfw: {
  4220. height: math.unit(4, "meter"),
  4221. weight: math.unit(150, "kg"),
  4222. name: "Front (NSFW)",
  4223. image: {
  4224. source: "./media/characters/talan/front-nsfw.svg",
  4225. bottom: 29 / 3734
  4226. }
  4227. },
  4228. sideNsfw: {
  4229. height: math.unit(4, "meter"),
  4230. weight: math.unit(150, "kg"),
  4231. name: "Side (NSFW)",
  4232. image: {
  4233. source: "./media/characters/talan/side-nsfw.svg",
  4234. bottom: 29 / 3734
  4235. }
  4236. },
  4237. back: {
  4238. height: math.unit(4, "meter"),
  4239. weight: math.unit(150, "kg"),
  4240. name: "Back",
  4241. image: {
  4242. source: "./media/characters/talan/back.svg"
  4243. }
  4244. },
  4245. dickBottom: {
  4246. height: math.unit(0.621, "meter"),
  4247. name: "Dick (Bottom)",
  4248. image: {
  4249. source: "./media/characters/talan/dick-bottom.svg"
  4250. }
  4251. },
  4252. dickTop: {
  4253. height: math.unit(0.621, "meter"),
  4254. name: "Dick (Top)",
  4255. image: {
  4256. source: "./media/characters/talan/dick-top.svg"
  4257. }
  4258. },
  4259. dickSide: {
  4260. height: math.unit(0.305, "meter"),
  4261. name: "Dick (Side)",
  4262. image: {
  4263. source: "./media/characters/talan/dick-side.svg"
  4264. }
  4265. },
  4266. dickFront: {
  4267. height: math.unit(0.305, "meter"),
  4268. name: "Dick (Front)",
  4269. image: {
  4270. source: "./media/characters/talan/dick-front.svg"
  4271. }
  4272. },
  4273. },
  4274. [
  4275. {
  4276. name: "Normal",
  4277. height: math.unit(4, "meters")
  4278. },
  4279. {
  4280. name: "Macro",
  4281. height: math.unit(100, "meters")
  4282. },
  4283. {
  4284. name: "Megamacro",
  4285. height: math.unit(2, "miles"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "Gigamacro",
  4290. height: math.unit(5000, "miles")
  4291. },
  4292. {
  4293. name: "Teramacro",
  4294. height: math.unit(100, "parsecs")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4300. {
  4301. front: {
  4302. height: math.unit(2, "meter"),
  4303. weight: math.unit(90, "kg"),
  4304. name: "Front",
  4305. image: {
  4306. source: "./media/characters/gael'rathus/front.svg"
  4307. }
  4308. },
  4309. frontAlt: {
  4310. height: math.unit(2, "meter"),
  4311. weight: math.unit(90, "kg"),
  4312. name: "Front (alt)",
  4313. image: {
  4314. source: "./media/characters/gael'rathus/front-alt.svg"
  4315. }
  4316. },
  4317. frontAlt2: {
  4318. height: math.unit(2, "meter"),
  4319. weight: math.unit(90, "kg"),
  4320. name: "Front (alt 2)",
  4321. image: {
  4322. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4323. }
  4324. }
  4325. },
  4326. [
  4327. {
  4328. name: "Normal",
  4329. height: math.unit(9, "feet"),
  4330. default: true
  4331. },
  4332. {
  4333. name: "Large",
  4334. height: math.unit(25, "feet")
  4335. },
  4336. {
  4337. name: "Macro",
  4338. height: math.unit(0.25, "miles")
  4339. },
  4340. {
  4341. name: "Megamacro",
  4342. height: math.unit(10, "miles")
  4343. }
  4344. ]
  4345. ))
  4346. characterMakers.push(() => makeCharacter(
  4347. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4348. {
  4349. side: {
  4350. height: math.unit(2, "meter"),
  4351. weight: math.unit(140, "kg"),
  4352. name: "Side",
  4353. image: {
  4354. source: "./media/characters/sosha/side.svg",
  4355. extra: 1170/1006,
  4356. bottom: 94/1264
  4357. }
  4358. },
  4359. maw: {
  4360. height: math.unit(2.87, "feet"),
  4361. name: "Maw",
  4362. image: {
  4363. source: "./media/characters/sosha/maw.svg",
  4364. extra: 966/865,
  4365. bottom: 0/966
  4366. }
  4367. },
  4368. cooch: {
  4369. height: math.unit(5.6, "feet"),
  4370. name: "Cooch",
  4371. image: {
  4372. source: "./media/characters/sosha/cooch.svg"
  4373. }
  4374. },
  4375. },
  4376. [
  4377. {
  4378. name: "Normal",
  4379. height: math.unit(12, "feet"),
  4380. default: true
  4381. }
  4382. ]
  4383. ))
  4384. characterMakers.push(() => makeCharacter(
  4385. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4386. {
  4387. side: {
  4388. height: math.unit(5 + 5 / 12, "feet"),
  4389. weight: math.unit(170, "kg"),
  4390. name: "Side",
  4391. image: {
  4392. source: "./media/characters/runnola/side.svg",
  4393. extra: 741 / 448,
  4394. bottom: 0.05
  4395. }
  4396. },
  4397. },
  4398. [
  4399. {
  4400. name: "Small",
  4401. height: math.unit(3, "feet")
  4402. },
  4403. {
  4404. name: "Normal",
  4405. height: math.unit(5 + 5 / 12, "feet"),
  4406. default: true
  4407. },
  4408. {
  4409. name: "Big",
  4410. height: math.unit(10, "feet")
  4411. },
  4412. ]
  4413. ))
  4414. characterMakers.push(() => makeCharacter(
  4415. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4416. {
  4417. front: {
  4418. height: math.unit(2, "meter"),
  4419. weight: math.unit(50, "kg"),
  4420. name: "Front",
  4421. image: {
  4422. source: "./media/characters/kurribird/front.svg",
  4423. bottom: 0.015
  4424. }
  4425. },
  4426. frontAlt: {
  4427. height: math.unit(1.5, "meter"),
  4428. weight: math.unit(50, "kg"),
  4429. name: "Front (Alt)",
  4430. image: {
  4431. source: "./media/characters/kurribird/front-alt.svg",
  4432. extra: 1.45
  4433. }
  4434. },
  4435. },
  4436. [
  4437. {
  4438. name: "Normal",
  4439. height: math.unit(7, "feet")
  4440. },
  4441. {
  4442. name: "Big",
  4443. height: math.unit(12, "feet"),
  4444. default: true
  4445. },
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(1500, "feet")
  4449. },
  4450. {
  4451. name: "Megamacro",
  4452. height: math.unit(2, "miles")
  4453. }
  4454. ]
  4455. ))
  4456. characterMakers.push(() => makeCharacter(
  4457. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4458. {
  4459. front: {
  4460. height: math.unit(2, "meter"),
  4461. weight: math.unit(80, "kg"),
  4462. name: "Front",
  4463. image: {
  4464. source: "./media/characters/elbial/front.svg",
  4465. extra: 1643 / 1556,
  4466. bottom: 60.2 / 1696
  4467. }
  4468. },
  4469. side: {
  4470. height: math.unit(2, "meter"),
  4471. weight: math.unit(80, "kg"),
  4472. name: "Side",
  4473. image: {
  4474. source: "./media/characters/elbial/side.svg",
  4475. extra: 1601/1528,
  4476. bottom: 97/1698
  4477. }
  4478. },
  4479. back: {
  4480. height: math.unit(2, "meter"),
  4481. weight: math.unit(80, "kg"),
  4482. name: "Back",
  4483. image: {
  4484. source: "./media/characters/elbial/back.svg",
  4485. extra: 1653/1569,
  4486. bottom: 20/1673
  4487. }
  4488. },
  4489. frontDressed: {
  4490. height: math.unit(2, "meter"),
  4491. weight: math.unit(80, "kg"),
  4492. name: "Front (Dressed)",
  4493. image: {
  4494. source: "./media/characters/elbial/front-dressed.svg",
  4495. extra: 1638/1569,
  4496. bottom: 70/1708
  4497. }
  4498. },
  4499. genitals: {
  4500. height: math.unit(2 / 3.367, "meter"),
  4501. name: "Genitals",
  4502. image: {
  4503. source: "./media/characters/elbial/genitals.svg"
  4504. }
  4505. },
  4506. },
  4507. [
  4508. {
  4509. name: "Large",
  4510. height: math.unit(100, "feet")
  4511. },
  4512. {
  4513. name: "Macro",
  4514. height: math.unit(500, "feet"),
  4515. default: true
  4516. },
  4517. {
  4518. name: "Megamacro",
  4519. height: math.unit(10, "miles")
  4520. },
  4521. {
  4522. name: "Gigamacro",
  4523. height: math.unit(25000, "miles")
  4524. },
  4525. {
  4526. name: "Full-Size",
  4527. height: math.unit(8000000, "gigaparsecs")
  4528. }
  4529. ]
  4530. ))
  4531. characterMakers.push(() => makeCharacter(
  4532. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4533. {
  4534. front: {
  4535. height: math.unit(2, "meter"),
  4536. weight: math.unit(60, "kg"),
  4537. name: "Front",
  4538. image: {
  4539. source: "./media/characters/noah/front.svg",
  4540. extra: 1383/1313,
  4541. bottom: 104/1487
  4542. }
  4543. },
  4544. hand: {
  4545. height: math.unit(0.6, "feet"),
  4546. name: "Hand",
  4547. image: {
  4548. source: "./media/characters/noah/hand.svg"
  4549. }
  4550. },
  4551. talons: {
  4552. height: math.unit(1.385, "feet"),
  4553. name: "Talons",
  4554. image: {
  4555. source: "./media/characters/noah/talons.svg"
  4556. }
  4557. },
  4558. beak: {
  4559. height: math.unit(0.43, "feet"),
  4560. name: "Beak",
  4561. image: {
  4562. source: "./media/characters/noah/beak.svg"
  4563. }
  4564. },
  4565. collar: {
  4566. height: math.unit(0.88, "feet"),
  4567. name: "Collar",
  4568. image: {
  4569. source: "./media/characters/noah/collar.svg"
  4570. }
  4571. },
  4572. eyeNarrow: {
  4573. height: math.unit(0.18, "feet"),
  4574. name: "Eye (Narrow)",
  4575. image: {
  4576. source: "./media/characters/noah/eye-narrow.svg"
  4577. }
  4578. },
  4579. eyeNormal: {
  4580. height: math.unit(0.18, "feet"),
  4581. name: "Eye (Normal)",
  4582. image: {
  4583. source: "./media/characters/noah/eye-normal.svg"
  4584. }
  4585. },
  4586. eyeWide: {
  4587. height: math.unit(0.18, "feet"),
  4588. name: "Eye (Wide)",
  4589. image: {
  4590. source: "./media/characters/noah/eye-wide.svg"
  4591. }
  4592. },
  4593. ear: {
  4594. height: math.unit(0.64, "feet"),
  4595. name: "Ear",
  4596. image: {
  4597. source: "./media/characters/noah/ear.svg"
  4598. }
  4599. },
  4600. },
  4601. [
  4602. {
  4603. name: "Large",
  4604. height: math.unit(50, "feet")
  4605. },
  4606. {
  4607. name: "Macro",
  4608. height: math.unit(750, "feet"),
  4609. default: true
  4610. },
  4611. {
  4612. name: "Megamacro",
  4613. height: math.unit(50, "miles")
  4614. },
  4615. {
  4616. name: "Gigamacro",
  4617. height: math.unit(100000, "miles")
  4618. },
  4619. {
  4620. name: "Full-Size",
  4621. height: math.unit(3000000000, "miles")
  4622. }
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4627. {
  4628. front: {
  4629. height: math.unit(2, "meter"),
  4630. weight: math.unit(80, "kg"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/natalya/front.svg"
  4634. }
  4635. },
  4636. back: {
  4637. height: math.unit(2, "meter"),
  4638. weight: math.unit(80, "kg"),
  4639. name: "Back",
  4640. image: {
  4641. source: "./media/characters/natalya/back.svg"
  4642. }
  4643. }
  4644. },
  4645. [
  4646. {
  4647. name: "Normal",
  4648. height: math.unit(150, "feet"),
  4649. default: true
  4650. },
  4651. {
  4652. name: "Megamacro",
  4653. height: math.unit(5, "miles")
  4654. },
  4655. {
  4656. name: "Full-Size",
  4657. height: math.unit(600, "kiloparsecs")
  4658. }
  4659. ]
  4660. ))
  4661. characterMakers.push(() => makeCharacter(
  4662. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4663. {
  4664. front: {
  4665. height: math.unit(2, "meter"),
  4666. weight: math.unit(50, "kg"),
  4667. name: "Front",
  4668. image: {
  4669. source: "./media/characters/erestrebah/front.svg",
  4670. extra: 1262/1162,
  4671. bottom: 96/1358
  4672. }
  4673. },
  4674. back: {
  4675. height: math.unit(2, "meter"),
  4676. weight: math.unit(50, "kg"),
  4677. name: "Back",
  4678. image: {
  4679. source: "./media/characters/erestrebah/back.svg",
  4680. extra: 1257/1139,
  4681. bottom: 13/1270
  4682. }
  4683. },
  4684. wing: {
  4685. height: math.unit(2, "meter"),
  4686. weight: math.unit(50, "kg"),
  4687. name: "Wing",
  4688. image: {
  4689. source: "./media/characters/erestrebah/wing.svg",
  4690. extra: 1262/1162,
  4691. bottom: 96/1358
  4692. }
  4693. },
  4694. mouth: {
  4695. height: math.unit(0.39, "feet"),
  4696. name: "Mouth",
  4697. image: {
  4698. source: "./media/characters/erestrebah/mouth.svg"
  4699. }
  4700. }
  4701. },
  4702. [
  4703. {
  4704. name: "Normal",
  4705. height: math.unit(10, "feet")
  4706. },
  4707. {
  4708. name: "Large",
  4709. height: math.unit(50, "feet"),
  4710. default: true
  4711. },
  4712. {
  4713. name: "Macro",
  4714. height: math.unit(300, "feet")
  4715. },
  4716. {
  4717. name: "Macro+",
  4718. height: math.unit(750, "feet")
  4719. },
  4720. {
  4721. name: "Megamacro",
  4722. height: math.unit(3, "miles")
  4723. }
  4724. ]
  4725. ))
  4726. characterMakers.push(() => makeCharacter(
  4727. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4728. {
  4729. front: {
  4730. height: math.unit(2, "meter"),
  4731. weight: math.unit(80, "kg"),
  4732. name: "Front",
  4733. image: {
  4734. source: "./media/characters/jennifer/front.svg",
  4735. bottom: 0.11,
  4736. extra: 1.16
  4737. }
  4738. },
  4739. frontAlt: {
  4740. height: math.unit(2, "meter"),
  4741. weight: math.unit(80, "kg"),
  4742. name: "Front (Alt)",
  4743. image: {
  4744. source: "./media/characters/jennifer/front-alt.svg"
  4745. }
  4746. }
  4747. },
  4748. [
  4749. {
  4750. name: "Canon Height",
  4751. height: math.unit(120, "feet"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Macro+",
  4756. height: math.unit(300, "feet")
  4757. },
  4758. {
  4759. name: "Megamacro",
  4760. height: math.unit(20000, "feet")
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(2, "meter"),
  4769. weight: math.unit(50, "kg"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/kalista/front.svg",
  4773. extra: 1314/1145,
  4774. bottom: 101/1415
  4775. }
  4776. },
  4777. back: {
  4778. height: math.unit(2, "meter"),
  4779. weight: math.unit(50, "kg"),
  4780. name: "Back",
  4781. image: {
  4782. source: "./media/characters/kalista/back.svg",
  4783. extra: 1366 / 1156,
  4784. bottom: 33.9 / 1362.78
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Uncomfortably Small",
  4791. height: math.unit(10, "feet")
  4792. },
  4793. {
  4794. name: "Small",
  4795. height: math.unit(30, "feet")
  4796. },
  4797. {
  4798. name: "Macro",
  4799. height: math.unit(100, "feet"),
  4800. default: true
  4801. },
  4802. {
  4803. name: "Macro+",
  4804. height: math.unit(2000, "feet")
  4805. },
  4806. {
  4807. name: "True Form",
  4808. height: math.unit(8924, "miles")
  4809. }
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4814. {
  4815. front: {
  4816. height: math.unit(2, "meter"),
  4817. weight: math.unit(120, "kg"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/ggv/front.svg"
  4821. }
  4822. },
  4823. side: {
  4824. height: math.unit(2, "meter"),
  4825. weight: math.unit(120, "kg"),
  4826. name: "Side",
  4827. image: {
  4828. source: "./media/characters/ggv/side.svg"
  4829. }
  4830. }
  4831. },
  4832. [
  4833. {
  4834. name: "Extremely Puny",
  4835. height: math.unit(9 + 5 / 12, "feet")
  4836. },
  4837. {
  4838. name: "Horribly Small",
  4839. height: math.unit(47.7, "miles"),
  4840. default: true
  4841. },
  4842. {
  4843. name: "Reasonably Sized",
  4844. height: math.unit(25000, "parsecs")
  4845. },
  4846. {
  4847. name: "Slightly Uncompressed",
  4848. height: math.unit(7.77e31, "parsecs")
  4849. },
  4850. {
  4851. name: "Omniversal",
  4852. height: math.unit(1e300, "meters")
  4853. },
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(2, "meter"),
  4861. weight: math.unit(75, "lb"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/napalm/front.svg"
  4865. }
  4866. },
  4867. back: {
  4868. height: math.unit(2, "meter"),
  4869. weight: math.unit(75, "lb"),
  4870. name: "Back",
  4871. image: {
  4872. source: "./media/characters/napalm/back.svg"
  4873. }
  4874. }
  4875. },
  4876. [
  4877. {
  4878. name: "Standard",
  4879. height: math.unit(55, "feet"),
  4880. default: true
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(7 + 5 / 6, "feet"),
  4889. weight: math.unit(325, "lb"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/asana/front.svg",
  4893. extra: 1133 / 1060,
  4894. bottom: 15.2 / 1148.6
  4895. }
  4896. },
  4897. back: {
  4898. height: math.unit(7 + 5 / 6, "feet"),
  4899. weight: math.unit(325, "lb"),
  4900. name: "Back",
  4901. image: {
  4902. source: "./media/characters/asana/back.svg",
  4903. extra: 1114 / 1043,
  4904. bottom: 5 / 1120
  4905. }
  4906. },
  4907. dressedDark: {
  4908. height: math.unit(7 + 5 / 6, "feet"),
  4909. weight: math.unit(325, "lb"),
  4910. name: "Dressed (Dark)",
  4911. image: {
  4912. source: "./media/characters/asana/dressed-dark.svg",
  4913. extra: 1133 / 1060,
  4914. bottom: 15.2 / 1148.6
  4915. }
  4916. },
  4917. dressedLight: {
  4918. height: math.unit(7 + 5 / 6, "feet"),
  4919. weight: math.unit(325, "lb"),
  4920. name: "Dressed (Light)",
  4921. image: {
  4922. source: "./media/characters/asana/dressed-light.svg",
  4923. extra: 1133 / 1060,
  4924. bottom: 15.2 / 1148.6
  4925. }
  4926. },
  4927. },
  4928. [
  4929. {
  4930. name: "Standard",
  4931. height: math.unit(7 + 5 / 6, "feet"),
  4932. default: true
  4933. },
  4934. {
  4935. name: "Large",
  4936. height: math.unit(10, "meters")
  4937. },
  4938. {
  4939. name: "Macro",
  4940. height: math.unit(2500, "meters")
  4941. },
  4942. {
  4943. name: "Megamacro",
  4944. height: math.unit(5e6, "meters")
  4945. },
  4946. {
  4947. name: "Examacro",
  4948. height: math.unit(5e12, "lightyears")
  4949. },
  4950. {
  4951. name: "Max Size",
  4952. height: math.unit(1e31, "lightyears")
  4953. }
  4954. ]
  4955. ))
  4956. characterMakers.push(() => makeCharacter(
  4957. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4958. {
  4959. front: {
  4960. height: math.unit(2, "meter"),
  4961. weight: math.unit(60, "kg"),
  4962. name: "Front",
  4963. image: {
  4964. source: "./media/characters/ebony/front.svg",
  4965. bottom: 0.03,
  4966. extra: 1045 / 810 + 0.03
  4967. }
  4968. },
  4969. side: {
  4970. height: math.unit(2, "meter"),
  4971. weight: math.unit(60, "kg"),
  4972. name: "Side",
  4973. image: {
  4974. source: "./media/characters/ebony/side.svg",
  4975. bottom: 0.03,
  4976. extra: 1045 / 810 + 0.03
  4977. }
  4978. },
  4979. back: {
  4980. height: math.unit(2, "meter"),
  4981. weight: math.unit(60, "kg"),
  4982. name: "Back",
  4983. image: {
  4984. source: "./media/characters/ebony/back.svg",
  4985. bottom: 0.01,
  4986. extra: 1045 / 810 + 0.01
  4987. }
  4988. },
  4989. },
  4990. [
  4991. // TODO check why I did this lol
  4992. {
  4993. name: "Standard",
  4994. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Macro",
  4999. height: math.unit(200, "feet")
  5000. },
  5001. {
  5002. name: "Gigamacro",
  5003. height: math.unit(13000, "km")
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(6, "feet"),
  5012. weight: math.unit(175, "lb"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/mountain/front.svg",
  5016. extra: 972 / 955,
  5017. bottom: 64 / 1036.6
  5018. }
  5019. },
  5020. back: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(175, "lb"),
  5023. name: "Back",
  5024. image: {
  5025. source: "./media/characters/mountain/back.svg",
  5026. extra: 970 / 950,
  5027. bottom: 28.25 / 999
  5028. }
  5029. },
  5030. },
  5031. [
  5032. {
  5033. name: "Large",
  5034. height: math.unit(20, "meters")
  5035. },
  5036. {
  5037. name: "Macro",
  5038. height: math.unit(300, "meters")
  5039. },
  5040. {
  5041. name: "Gigamacro",
  5042. height: math.unit(10000, "km"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Examacro",
  5047. height: math.unit(10e9, "lightyears")
  5048. }
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5053. {
  5054. front: {
  5055. height: math.unit(8, "feet"),
  5056. weight: math.unit(500, "lb"),
  5057. name: "Front",
  5058. image: {
  5059. source: "./media/characters/rick/front.svg"
  5060. }
  5061. }
  5062. },
  5063. [
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(8, "feet"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(5, "km")
  5072. }
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5077. {
  5078. front: {
  5079. height: math.unit(8, "feet"),
  5080. weight: math.unit(120, "lb"),
  5081. name: "Front",
  5082. image: {
  5083. source: "./media/characters/ona/front.svg"
  5084. }
  5085. },
  5086. frontAlt: {
  5087. height: math.unit(8, "feet"),
  5088. weight: math.unit(120, "lb"),
  5089. name: "Front (Alt)",
  5090. image: {
  5091. source: "./media/characters/ona/front-alt.svg"
  5092. }
  5093. },
  5094. back: {
  5095. height: math.unit(8, "feet"),
  5096. weight: math.unit(120, "lb"),
  5097. name: "Back",
  5098. image: {
  5099. source: "./media/characters/ona/back.svg"
  5100. }
  5101. },
  5102. foot: {
  5103. height: math.unit(1.1, "feet"),
  5104. name: "Foot",
  5105. image: {
  5106. source: "./media/characters/ona/foot.svg"
  5107. }
  5108. }
  5109. },
  5110. [
  5111. {
  5112. name: "Megamacro",
  5113. height: math.unit(70, "km"),
  5114. default: true
  5115. },
  5116. {
  5117. name: "Gigamacro",
  5118. height: math.unit(681818, "miles")
  5119. },
  5120. {
  5121. name: "Examacro",
  5122. height: math.unit(3800000, "lightyears")
  5123. },
  5124. ]
  5125. ))
  5126. characterMakers.push(() => makeCharacter(
  5127. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5128. {
  5129. front: {
  5130. height: math.unit(12, "feet"),
  5131. weight: math.unit(3000, "lb"),
  5132. name: "Front",
  5133. image: {
  5134. source: "./media/characters/mech/front.svg",
  5135. extra: 2900 / 2770,
  5136. bottom: 110 / 3010
  5137. }
  5138. },
  5139. back: {
  5140. height: math.unit(12, "feet"),
  5141. weight: math.unit(3000, "lb"),
  5142. name: "Back",
  5143. image: {
  5144. source: "./media/characters/mech/back.svg",
  5145. extra: 3011 / 2890,
  5146. bottom: 94 / 3105
  5147. }
  5148. },
  5149. maw: {
  5150. height: math.unit(3.07, "feet"),
  5151. name: "Maw",
  5152. image: {
  5153. source: "./media/characters/mech/maw.svg"
  5154. }
  5155. },
  5156. head: {
  5157. height: math.unit(3.07, "feet"),
  5158. name: "Head",
  5159. image: {
  5160. source: "./media/characters/mech/head.svg"
  5161. }
  5162. },
  5163. dick: {
  5164. height: math.unit(1.43, "feet"),
  5165. name: "Dick",
  5166. image: {
  5167. source: "./media/characters/mech/dick.svg"
  5168. }
  5169. },
  5170. },
  5171. [
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(12, "feet")
  5175. },
  5176. {
  5177. name: "Macro",
  5178. height: math.unit(300, "feet"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro+",
  5183. height: math.unit(1500, "feet")
  5184. },
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(1.3, "meter"),
  5192. weight: math.unit(30, "kg"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/gregory/front.svg",
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(1.3, "meter"),
  5203. default: true
  5204. },
  5205. {
  5206. name: "Macro",
  5207. height: math.unit(20, "meter")
  5208. }
  5209. ]
  5210. ))
  5211. characterMakers.push(() => makeCharacter(
  5212. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5213. {
  5214. front: {
  5215. height: math.unit(2.8, "meter"),
  5216. weight: math.unit(200, "kg"),
  5217. name: "Front",
  5218. image: {
  5219. source: "./media/characters/elory/front.svg",
  5220. }
  5221. }
  5222. },
  5223. [
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(2.8, "meter"),
  5227. default: true
  5228. },
  5229. {
  5230. name: "Macro",
  5231. height: math.unit(38, "meter")
  5232. }
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5237. {
  5238. front: {
  5239. height: math.unit(470, "feet"),
  5240. weight: math.unit(924, "tons"),
  5241. name: "Front",
  5242. image: {
  5243. source: "./media/characters/angelpatamon/front.svg",
  5244. }
  5245. }
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(470, "feet"),
  5251. default: true
  5252. },
  5253. {
  5254. name: "Deity Size I",
  5255. height: math.unit(28651.2, "km")
  5256. },
  5257. {
  5258. name: "Deity Size II",
  5259. height: math.unit(171907.2, "km")
  5260. }
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5265. {
  5266. side: {
  5267. height: math.unit(7.2, "meter"),
  5268. weight: math.unit(8.2, "tons"),
  5269. name: "Side",
  5270. image: {
  5271. source: "./media/characters/cryae/side.svg",
  5272. extra: 3500 / 1500
  5273. }
  5274. }
  5275. },
  5276. [
  5277. {
  5278. name: "Normal",
  5279. height: math.unit(7.2, "meter"),
  5280. default: true
  5281. }
  5282. ]
  5283. ))
  5284. characterMakers.push(() => makeCharacter(
  5285. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5286. {
  5287. front: {
  5288. height: math.unit(6, "feet"),
  5289. weight: math.unit(175, "lb"),
  5290. name: "Front",
  5291. image: {
  5292. source: "./media/characters/xera/front.svg",
  5293. extra: 2377 / 1972,
  5294. bottom: 75.5 / 2452
  5295. }
  5296. },
  5297. side: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(175, "lb"),
  5300. name: "Side",
  5301. image: {
  5302. source: "./media/characters/xera/side.svg",
  5303. extra: 2345 / 2019,
  5304. bottom: 39.7 / 2384
  5305. }
  5306. },
  5307. back: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(175, "lb"),
  5310. name: "Back",
  5311. image: {
  5312. source: "./media/characters/xera/back.svg",
  5313. extra: 2095 / 1984,
  5314. bottom: 67 / 2166
  5315. }
  5316. },
  5317. },
  5318. [
  5319. {
  5320. name: "Small",
  5321. height: math.unit(10, "feet")
  5322. },
  5323. {
  5324. name: "Macro",
  5325. height: math.unit(500, "meters"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Macro+",
  5330. height: math.unit(10, "km")
  5331. },
  5332. {
  5333. name: "Gigamacro",
  5334. height: math.unit(25000, "km")
  5335. },
  5336. {
  5337. name: "Teramacro",
  5338. height: math.unit(3e6, "km")
  5339. }
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5344. {
  5345. front: {
  5346. height: math.unit(6, "feet"),
  5347. weight: math.unit(175, "lb"),
  5348. name: "Front",
  5349. image: {
  5350. source: "./media/characters/nebula/front.svg",
  5351. extra: 2566 / 2362,
  5352. bottom: 81 / 2644
  5353. }
  5354. }
  5355. },
  5356. [
  5357. {
  5358. name: "Small",
  5359. height: math.unit(4.5, "meters")
  5360. },
  5361. {
  5362. name: "Macro",
  5363. height: math.unit(1500, "meters"),
  5364. default: true
  5365. },
  5366. {
  5367. name: "Megamacro",
  5368. height: math.unit(150, "km")
  5369. },
  5370. {
  5371. name: "Gigamacro",
  5372. height: math.unit(27000, "km")
  5373. }
  5374. ]
  5375. ))
  5376. characterMakers.push(() => makeCharacter(
  5377. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5378. {
  5379. front: {
  5380. height: math.unit(6, "feet"),
  5381. weight: math.unit(225, "lb"),
  5382. name: "Front",
  5383. image: {
  5384. source: "./media/characters/abysgar/front.svg",
  5385. extra: 1739/1614,
  5386. bottom: 71/1810
  5387. }
  5388. },
  5389. frontNsfw: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(225, "lb"),
  5392. name: "Front (NSFW)",
  5393. image: {
  5394. source: "./media/characters/abysgar/front-nsfw.svg",
  5395. extra: 1739/1614,
  5396. bottom: 71/1810
  5397. }
  5398. },
  5399. back: {
  5400. height: math.unit(4.6, "feet"),
  5401. weight: math.unit(225, "lb"),
  5402. name: "Back",
  5403. image: {
  5404. source: "./media/characters/abysgar/back.svg",
  5405. extra: 1384/1327,
  5406. bottom: 0/1384
  5407. }
  5408. },
  5409. head: {
  5410. height: math.unit(1.25, "feet"),
  5411. name: "Head",
  5412. image: {
  5413. source: "./media/characters/abysgar/head.svg",
  5414. extra: 669/569,
  5415. bottom: 0/669
  5416. }
  5417. },
  5418. },
  5419. [
  5420. {
  5421. name: "Small",
  5422. height: math.unit(4.5, "meters")
  5423. },
  5424. {
  5425. name: "Macro",
  5426. height: math.unit(1250, "meters"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Megamacro",
  5431. height: math.unit(125, "km")
  5432. },
  5433. {
  5434. name: "Gigamacro",
  5435. height: math.unit(26000, "km")
  5436. }
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5441. {
  5442. front: {
  5443. height: math.unit(6, "feet"),
  5444. weight: math.unit(180, "lb"),
  5445. name: "Front",
  5446. image: {
  5447. source: "./media/characters/yakuz/front.svg"
  5448. }
  5449. }
  5450. },
  5451. [
  5452. {
  5453. name: "Small",
  5454. height: math.unit(5, "meters")
  5455. },
  5456. {
  5457. name: "Macro",
  5458. height: math.unit(1500, "meters"),
  5459. default: true
  5460. },
  5461. {
  5462. name: "Megamacro",
  5463. height: math.unit(200, "km")
  5464. },
  5465. {
  5466. name: "Gigamacro",
  5467. height: math.unit(100000, "km")
  5468. }
  5469. ]
  5470. ))
  5471. characterMakers.push(() => makeCharacter(
  5472. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5473. {
  5474. front: {
  5475. height: math.unit(6, "feet"),
  5476. weight: math.unit(175, "lb"),
  5477. name: "Front",
  5478. image: {
  5479. source: "./media/characters/mirova/front.svg",
  5480. extra: 1947/1753,
  5481. bottom: 28/1975
  5482. }
  5483. },
  5484. back: {
  5485. height: math.unit(2.48, "feet"),
  5486. name: "Back",
  5487. image: {
  5488. source: "./media/characters/mirova/back.svg"
  5489. }
  5490. },
  5491. head: {
  5492. height: math.unit(1.94, "feet"),
  5493. name: "Head",
  5494. image: {
  5495. source: "./media/characters/mirova/head.svg"
  5496. }
  5497. },
  5498. headSide: {
  5499. height: math.unit(2, "feet"),
  5500. name: "Head (Side)",
  5501. image: {
  5502. source: "./media/characters/mirova/head-side.svg"
  5503. }
  5504. },
  5505. },
  5506. [
  5507. {
  5508. name: "Small",
  5509. height: math.unit(5, "meters")
  5510. },
  5511. {
  5512. name: "Macro",
  5513. height: math.unit(900, "meters"),
  5514. default: true
  5515. },
  5516. {
  5517. name: "Megamacro",
  5518. height: math.unit(135, "km")
  5519. },
  5520. {
  5521. name: "Gigamacro",
  5522. height: math.unit(20000, "km")
  5523. }
  5524. ]
  5525. ))
  5526. characterMakers.push(() => makeCharacter(
  5527. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5528. {
  5529. side: {
  5530. height: math.unit(28.35, "feet"),
  5531. weight: math.unit(99.75, "tons"),
  5532. name: "Side",
  5533. image: {
  5534. source: "./media/characters/asana-mech/side.svg",
  5535. extra: 923 / 699,
  5536. bottom: 50 / 975
  5537. }
  5538. },
  5539. chaingun: {
  5540. height: math.unit(7, "feet"),
  5541. weight: math.unit(2400, "lb"),
  5542. name: "Chaingun",
  5543. image: {
  5544. source: "./media/characters/asana-mech/chaingun.svg"
  5545. }
  5546. },
  5547. laser: {
  5548. height: math.unit(7.12, "feet"),
  5549. weight: math.unit(2000, "lb"),
  5550. name: "Laser",
  5551. image: {
  5552. source: "./media/characters/asana-mech/laser.svg"
  5553. }
  5554. },
  5555. },
  5556. [
  5557. {
  5558. name: "Normal",
  5559. height: math.unit(28.35, "feet"),
  5560. default: true
  5561. },
  5562. {
  5563. name: "Macro",
  5564. height: math.unit(2500, "feet")
  5565. },
  5566. {
  5567. name: "Megamacro",
  5568. height: math.unit(25, "miles")
  5569. },
  5570. {
  5571. name: "Examacro",
  5572. height: math.unit(6e8, "lightyears")
  5573. },
  5574. ]
  5575. ))
  5576. characterMakers.push(() => makeCharacter(
  5577. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5578. {
  5579. front: {
  5580. height: math.unit(5, "meters"),
  5581. weight: math.unit(1000, "kg"),
  5582. name: "Front",
  5583. image: {
  5584. source: "./media/characters/asche/front.svg",
  5585. extra: 1258 / 1190,
  5586. bottom: 47 / 1305
  5587. }
  5588. },
  5589. frontUnderwear: {
  5590. height: math.unit(5, "meters"),
  5591. weight: math.unit(1000, "kg"),
  5592. name: "Front (Underwear)",
  5593. image: {
  5594. source: "./media/characters/asche/front-underwear.svg",
  5595. extra: 1258 / 1190,
  5596. bottom: 47 / 1305
  5597. }
  5598. },
  5599. frontDressed: {
  5600. height: math.unit(5, "meters"),
  5601. weight: math.unit(1000, "kg"),
  5602. name: "Front (Dressed)",
  5603. image: {
  5604. source: "./media/characters/asche/front-dressed.svg",
  5605. extra: 1258 / 1190,
  5606. bottom: 47 / 1305
  5607. }
  5608. },
  5609. frontArmor: {
  5610. height: math.unit(5, "meters"),
  5611. weight: math.unit(1000, "kg"),
  5612. name: "Front (Armored)",
  5613. image: {
  5614. source: "./media/characters/asche/front-armored.svg",
  5615. extra: 1374 / 1308,
  5616. bottom: 23 / 1397
  5617. }
  5618. },
  5619. mp724: {
  5620. height: math.unit(0.96, "meters"),
  5621. weight: math.unit(38, "kg"),
  5622. name: "H&K MP724",
  5623. image: {
  5624. source: "./media/characters/asche/h&k-mp724.svg"
  5625. }
  5626. },
  5627. side: {
  5628. height: math.unit(5, "meters"),
  5629. weight: math.unit(1000, "kg"),
  5630. name: "Side",
  5631. image: {
  5632. source: "./media/characters/asche/side.svg",
  5633. extra: 1717 / 1609,
  5634. bottom: 0.005
  5635. }
  5636. },
  5637. back: {
  5638. height: math.unit(5, "meters"),
  5639. weight: math.unit(1000, "kg"),
  5640. name: "Back",
  5641. image: {
  5642. source: "./media/characters/asche/back.svg",
  5643. extra: 1570 / 1501
  5644. }
  5645. },
  5646. },
  5647. [
  5648. {
  5649. name: "DEFCON 5",
  5650. height: math.unit(5, "meters")
  5651. },
  5652. {
  5653. name: "DEFCON 4",
  5654. height: math.unit(500, "meters"),
  5655. default: true
  5656. },
  5657. {
  5658. name: "DEFCON 3",
  5659. height: math.unit(5, "km")
  5660. },
  5661. {
  5662. name: "DEFCON 2",
  5663. height: math.unit(500, "km")
  5664. },
  5665. {
  5666. name: "DEFCON 1",
  5667. height: math.unit(500000, "km")
  5668. },
  5669. {
  5670. name: "DEFCON 0",
  5671. height: math.unit(3, "gigaparsecs")
  5672. },
  5673. ]
  5674. ))
  5675. characterMakers.push(() => makeCharacter(
  5676. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5677. {
  5678. front: {
  5679. height: math.unit(7, "feet"),
  5680. weight: math.unit(92.7, "kg"),
  5681. name: "Front",
  5682. image: {
  5683. source: "./media/characters/gale/front.svg",
  5684. extra: 977/919,
  5685. bottom: 105/1082
  5686. }
  5687. },
  5688. side: {
  5689. height: math.unit(6.7, "feet"),
  5690. weight: math.unit(92.7, "kg"),
  5691. name: "Side",
  5692. image: {
  5693. source: "./media/characters/gale/side.svg",
  5694. extra: 978/922,
  5695. bottom: 140/1118
  5696. }
  5697. },
  5698. back: {
  5699. height: math.unit(7, "feet"),
  5700. weight: math.unit(92.7, "kg"),
  5701. name: "Back",
  5702. image: {
  5703. source: "./media/characters/gale/back.svg",
  5704. extra: 966/920,
  5705. bottom: 61/1027
  5706. }
  5707. },
  5708. maw: {
  5709. height: math.unit(2.23, "feet"),
  5710. name: "Maw",
  5711. image: {
  5712. source: "./media/characters/gale/maw.svg"
  5713. }
  5714. },
  5715. foot: {
  5716. height: math.unit(2.1, "feet"),
  5717. name: "Foot",
  5718. image: {
  5719. source: "./media/characters/gale/foot.svg"
  5720. }
  5721. },
  5722. },
  5723. [
  5724. {
  5725. name: "Normal",
  5726. height: math.unit(7, "feet")
  5727. },
  5728. {
  5729. name: "Macro",
  5730. height: math.unit(150, "feet"),
  5731. default: true
  5732. },
  5733. {
  5734. name: "Macro+",
  5735. height: math.unit(300, "feet")
  5736. },
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5741. {
  5742. front: {
  5743. height: math.unit(5 + 10/12, "feet"),
  5744. weight: math.unit(67, "kg"),
  5745. name: "Front",
  5746. image: {
  5747. source: "./media/characters/draylen/front.svg",
  5748. extra: 832/777,
  5749. bottom: 85/917
  5750. }
  5751. }
  5752. },
  5753. [
  5754. {
  5755. name: "Normal",
  5756. height: math.unit(5 + 10/12, "feet")
  5757. },
  5758. {
  5759. name: "Macro",
  5760. height: math.unit(150, "feet"),
  5761. default: true
  5762. }
  5763. ]
  5764. ))
  5765. characterMakers.push(() => makeCharacter(
  5766. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5767. {
  5768. front: {
  5769. height: math.unit(7 + 9 / 12, "feet"),
  5770. weight: math.unit(379, "lbs"),
  5771. name: "Front",
  5772. image: {
  5773. source: "./media/characters/chez/front.svg"
  5774. }
  5775. },
  5776. side: {
  5777. height: math.unit(7 + 9 / 12, "feet"),
  5778. weight: math.unit(379, "lbs"),
  5779. name: "Side",
  5780. image: {
  5781. source: "./media/characters/chez/side.svg"
  5782. }
  5783. }
  5784. },
  5785. [
  5786. {
  5787. name: "Normal",
  5788. height: math.unit(7 + 9 / 12, "feet"),
  5789. default: true
  5790. },
  5791. {
  5792. name: "God King",
  5793. height: math.unit(9750000, "meters")
  5794. }
  5795. ]
  5796. ))
  5797. characterMakers.push(() => makeCharacter(
  5798. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5799. {
  5800. front: {
  5801. height: math.unit(6, "feet"),
  5802. weight: math.unit(275, "lbs"),
  5803. name: "Front",
  5804. image: {
  5805. source: "./media/characters/kaylum/front.svg",
  5806. bottom: 0.01,
  5807. extra: 1166 / 1031
  5808. }
  5809. },
  5810. frontWingless: {
  5811. height: math.unit(6, "feet"),
  5812. weight: math.unit(275, "lbs"),
  5813. name: "Front (Wingless)",
  5814. image: {
  5815. source: "./media/characters/kaylum/front-wingless.svg",
  5816. bottom: 0.01,
  5817. extra: 1117 / 1031
  5818. }
  5819. }
  5820. },
  5821. [
  5822. {
  5823. name: "Normal",
  5824. height: math.unit(3.05, "meters")
  5825. },
  5826. {
  5827. name: "Master",
  5828. height: math.unit(5.5, "meters")
  5829. },
  5830. {
  5831. name: "Rampage",
  5832. height: math.unit(19, "meters")
  5833. },
  5834. {
  5835. name: "Macro Lite",
  5836. height: math.unit(37, "meters")
  5837. },
  5838. {
  5839. name: "Hyper Predator",
  5840. height: math.unit(61, "meters")
  5841. },
  5842. {
  5843. name: "Macro",
  5844. height: math.unit(138, "meters"),
  5845. default: true
  5846. }
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5851. {
  5852. front: {
  5853. height: math.unit(5 + 5 / 12, "feet"),
  5854. weight: math.unit(120, "lbs"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/geta/front.svg",
  5858. extra: 1003/933,
  5859. bottom: 21/1024
  5860. }
  5861. },
  5862. paw: {
  5863. height: math.unit(0.35, "feet"),
  5864. name: "Paw",
  5865. image: {
  5866. source: "./media/characters/geta/paw.svg"
  5867. }
  5868. },
  5869. },
  5870. [
  5871. {
  5872. name: "Micro",
  5873. height: math.unit(3, "inches"),
  5874. default: true
  5875. },
  5876. {
  5877. name: "Normal",
  5878. height: math.unit(5 + 5 / 12, "feet")
  5879. }
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5884. {
  5885. front: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(300, "lbs"),
  5888. name: "Front",
  5889. image: {
  5890. source: "./media/characters/tyrnn/front.svg"
  5891. }
  5892. }
  5893. },
  5894. [
  5895. {
  5896. name: "Main Height",
  5897. height: math.unit(355, "feet"),
  5898. default: true
  5899. },
  5900. {
  5901. name: "Fave. Height",
  5902. height: math.unit(2400, "feet")
  5903. }
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5908. {
  5909. front: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(300, "lbs"),
  5912. name: "Front",
  5913. image: {
  5914. source: "./media/characters/appledectomy/front.svg"
  5915. }
  5916. }
  5917. },
  5918. [
  5919. {
  5920. name: "Macro",
  5921. height: math.unit(2500, "feet")
  5922. },
  5923. {
  5924. name: "Megamacro",
  5925. height: math.unit(50, "miles"),
  5926. default: true
  5927. },
  5928. {
  5929. name: "Gigamacro",
  5930. height: math.unit(5000, "miles")
  5931. },
  5932. {
  5933. name: "Teramacro",
  5934. height: math.unit(250000, "miles")
  5935. },
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5940. {
  5941. front: {
  5942. height: math.unit(6, "feet"),
  5943. weight: math.unit(200, "lbs"),
  5944. name: "Front",
  5945. image: {
  5946. source: "./media/characters/vulpes/front.svg",
  5947. extra: 573 / 543,
  5948. bottom: 0.033
  5949. }
  5950. },
  5951. side: {
  5952. height: math.unit(6, "feet"),
  5953. weight: math.unit(200, "lbs"),
  5954. name: "Side",
  5955. image: {
  5956. source: "./media/characters/vulpes/side.svg",
  5957. extra: 577 / 549,
  5958. bottom: 11 / 588
  5959. }
  5960. },
  5961. back: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(200, "lbs"),
  5964. name: "Back",
  5965. image: {
  5966. source: "./media/characters/vulpes/back.svg",
  5967. extra: 573 / 549,
  5968. bottom: 20 / 593
  5969. }
  5970. },
  5971. feet: {
  5972. height: math.unit(1.276, "feet"),
  5973. name: "Feet",
  5974. image: {
  5975. source: "./media/characters/vulpes/feet.svg"
  5976. }
  5977. },
  5978. maw: {
  5979. height: math.unit(1.18, "feet"),
  5980. name: "Maw",
  5981. image: {
  5982. source: "./media/characters/vulpes/maw.svg"
  5983. }
  5984. },
  5985. },
  5986. [
  5987. {
  5988. name: "Micro",
  5989. height: math.unit(2, "inches")
  5990. },
  5991. {
  5992. name: "Normal",
  5993. height: math.unit(6.3, "feet")
  5994. },
  5995. {
  5996. name: "Macro",
  5997. height: math.unit(850, "feet")
  5998. },
  5999. {
  6000. name: "Megamacro",
  6001. height: math.unit(7500, "feet"),
  6002. default: true
  6003. },
  6004. {
  6005. name: "Gigamacro",
  6006. height: math.unit(570000, "miles")
  6007. }
  6008. ]
  6009. ))
  6010. characterMakers.push(() => makeCharacter(
  6011. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  6012. {
  6013. front: {
  6014. height: math.unit(6, "feet"),
  6015. weight: math.unit(210, "lbs"),
  6016. name: "Front",
  6017. image: {
  6018. source: "./media/characters/rain-fallen/front.svg"
  6019. }
  6020. },
  6021. side: {
  6022. height: math.unit(6, "feet"),
  6023. weight: math.unit(210, "lbs"),
  6024. name: "Side",
  6025. image: {
  6026. source: "./media/characters/rain-fallen/side.svg"
  6027. }
  6028. },
  6029. back: {
  6030. height: math.unit(6, "feet"),
  6031. weight: math.unit(210, "lbs"),
  6032. name: "Back",
  6033. image: {
  6034. source: "./media/characters/rain-fallen/back.svg"
  6035. }
  6036. },
  6037. feral: {
  6038. height: math.unit(9, "feet"),
  6039. weight: math.unit(700, "lbs"),
  6040. name: "Feral",
  6041. image: {
  6042. source: "./media/characters/rain-fallen/feral.svg"
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Meddling with Mortals",
  6049. height: math.unit(8 + 8/12, "feet")
  6050. },
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(5, "meter")
  6054. },
  6055. {
  6056. name: "Macro",
  6057. height: math.unit(150, "meter"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Megamacro",
  6062. height: math.unit(278e6, "meter")
  6063. },
  6064. {
  6065. name: "Gigamacro",
  6066. height: math.unit(2e9, "meter")
  6067. },
  6068. {
  6069. name: "Teramacro",
  6070. height: math.unit(8e12, "meter")
  6071. },
  6072. {
  6073. name: "Devourer",
  6074. height: math.unit(14, "zettameters")
  6075. },
  6076. {
  6077. name: "Scarlet King",
  6078. height: math.unit(18, "yottameters")
  6079. },
  6080. {
  6081. name: "Void",
  6082. height: math.unit(1e88, "yottameters")
  6083. }
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6088. {
  6089. standing: {
  6090. height: math.unit(6, "feet"),
  6091. weight: math.unit(180, "lbs"),
  6092. name: "Standing",
  6093. image: {
  6094. source: "./media/characters/zaakira/standing.svg",
  6095. extra: 1599/1504,
  6096. bottom: 39/1638
  6097. }
  6098. },
  6099. laying: {
  6100. height: math.unit(3.3, "feet"),
  6101. weight: math.unit(180, "lbs"),
  6102. name: "Laying",
  6103. image: {
  6104. source: "./media/characters/zaakira/laying.svg"
  6105. }
  6106. },
  6107. },
  6108. [
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(12, "feet")
  6112. },
  6113. {
  6114. name: "Macro",
  6115. height: math.unit(279, "feet"),
  6116. default: true
  6117. }
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6122. {
  6123. femSfw: {
  6124. height: math.unit(8, "feet"),
  6125. weight: math.unit(350, "lb"),
  6126. name: "Fem",
  6127. image: {
  6128. source: "./media/characters/sigvald/fem-sfw.svg",
  6129. extra: 182 / 164,
  6130. bottom: 8.7 / 190.5
  6131. }
  6132. },
  6133. femNsfw: {
  6134. height: math.unit(8, "feet"),
  6135. weight: math.unit(350, "lb"),
  6136. name: "Fem (NSFW)",
  6137. image: {
  6138. source: "./media/characters/sigvald/fem-nsfw.svg",
  6139. extra: 182 / 164,
  6140. bottom: 8.7 / 190.5
  6141. }
  6142. },
  6143. maleNsfw: {
  6144. height: math.unit(8, "feet"),
  6145. weight: math.unit(350, "lb"),
  6146. name: "Male (NSFW)",
  6147. image: {
  6148. source: "./media/characters/sigvald/male-nsfw.svg",
  6149. extra: 182 / 164,
  6150. bottom: 8.7 / 190.5
  6151. }
  6152. },
  6153. hermNsfw: {
  6154. height: math.unit(8, "feet"),
  6155. weight: math.unit(350, "lb"),
  6156. name: "Herm (NSFW)",
  6157. image: {
  6158. source: "./media/characters/sigvald/herm-nsfw.svg",
  6159. extra: 182 / 164,
  6160. bottom: 8.7 / 190.5
  6161. }
  6162. },
  6163. dick: {
  6164. height: math.unit(2.36, "feet"),
  6165. name: "Dick",
  6166. image: {
  6167. source: "./media/characters/sigvald/dick.svg"
  6168. }
  6169. },
  6170. eye: {
  6171. height: math.unit(0.31, "feet"),
  6172. name: "Eye",
  6173. image: {
  6174. source: "./media/characters/sigvald/eye.svg"
  6175. }
  6176. },
  6177. mouth: {
  6178. height: math.unit(0.92, "feet"),
  6179. name: "Mouth",
  6180. image: {
  6181. source: "./media/characters/sigvald/mouth.svg"
  6182. }
  6183. },
  6184. paws: {
  6185. height: math.unit(2.2, "feet"),
  6186. name: "Paws",
  6187. image: {
  6188. source: "./media/characters/sigvald/paws.svg"
  6189. }
  6190. }
  6191. },
  6192. [
  6193. {
  6194. name: "Normal",
  6195. height: math.unit(8, "feet")
  6196. },
  6197. {
  6198. name: "Large",
  6199. height: math.unit(12, "feet")
  6200. },
  6201. {
  6202. name: "Larger",
  6203. height: math.unit(20, "feet")
  6204. },
  6205. {
  6206. name: "Macro",
  6207. height: math.unit(150, "feet")
  6208. },
  6209. {
  6210. name: "Macro+",
  6211. height: math.unit(200, "feet"),
  6212. default: true
  6213. },
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6218. {
  6219. anthro_front: {
  6220. height: math.unit(5 + 11/12, "feet"),
  6221. weight: math.unit(250, "lb"),
  6222. name: "Front",
  6223. image: {
  6224. source: "./media/characters/scott/anthro-front.svg",
  6225. extra: 851/781,
  6226. bottom: 54/905
  6227. },
  6228. form: "anthro",
  6229. default: true
  6230. },
  6231. anthro_side: {
  6232. height: math.unit(5.1, "feet"),
  6233. weight: math.unit(250, "lb"),
  6234. name: "Side",
  6235. image: {
  6236. source: "./media/characters/scott/anthro-side.svg"
  6237. },
  6238. form: "anthro",
  6239. },
  6240. anthro_dick: {
  6241. height: math.unit(1.33, "feet"),
  6242. name: "Dick",
  6243. image: {
  6244. source: "./media/characters/scott/anthro-dick.svg"
  6245. },
  6246. form: "anthro",
  6247. },
  6248. side: {
  6249. height: math.unit(12, "feet"),
  6250. weight: math.unit(2000, "kg"),
  6251. name: "Side",
  6252. image: {
  6253. source: "./media/characters/scott/side.svg",
  6254. extra: 754 / 724,
  6255. bottom: 0.069
  6256. },
  6257. form: "taur",
  6258. default: true
  6259. },
  6260. upright: {
  6261. height: math.unit(12, "feet"),
  6262. weight: math.unit(2000, "kg"),
  6263. name: "Upright",
  6264. image: {
  6265. source: "./media/characters/scott/upright.svg",
  6266. extra: 3881 / 3722,
  6267. bottom: 0.05
  6268. },
  6269. form: "taur",
  6270. },
  6271. },
  6272. [
  6273. {
  6274. name: "Normal",
  6275. height: math.unit(5 + 11/12, "feet"),
  6276. default: true,
  6277. form: "anthro"
  6278. },
  6279. {
  6280. name: "Normal",
  6281. height: math.unit(12, "feet"),
  6282. default: true,
  6283. form: "taur"
  6284. },
  6285. ],
  6286. {
  6287. "anthro": {
  6288. name: "Anthro",
  6289. default: true
  6290. },
  6291. "taur": {
  6292. name: "Taur",
  6293. },
  6294. }
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6298. {
  6299. side: {
  6300. height: math.unit(8, "meters"),
  6301. weight: math.unit(84755, "lbs"),
  6302. name: "Side",
  6303. image: {
  6304. source: "./media/characters/tobias/side.svg",
  6305. extra: 1474 / 1096,
  6306. bottom: 38.9 / 1513.1235
  6307. }
  6308. },
  6309. maw: {
  6310. height: math.unit(2.3, "meters"),
  6311. name: "Maw",
  6312. image: {
  6313. source: "./media/characters/tobias/maw.svg"
  6314. }
  6315. },
  6316. burp: {
  6317. height: math.unit(2.85, "meters"),
  6318. name: "Burp",
  6319. image: {
  6320. source: "./media/characters/tobias/burp.svg"
  6321. }
  6322. },
  6323. },
  6324. [
  6325. {
  6326. name: "Normal",
  6327. height: math.unit(8, "meters"),
  6328. default: true
  6329. },
  6330. ]
  6331. ))
  6332. characterMakers.push(() => makeCharacter(
  6333. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6334. {
  6335. front: {
  6336. height: math.unit(5.5, "feet"),
  6337. weight: math.unit(400, "lbs"),
  6338. name: "Front",
  6339. image: {
  6340. source: "./media/characters/kieran/front.svg",
  6341. extra: 2694 / 2364,
  6342. bottom: 217 / 2908
  6343. }
  6344. },
  6345. side: {
  6346. height: math.unit(5.5, "feet"),
  6347. weight: math.unit(400, "lbs"),
  6348. name: "Side",
  6349. image: {
  6350. source: "./media/characters/kieran/side.svg",
  6351. extra: 875 / 777,
  6352. bottom: 84.6 / 959
  6353. }
  6354. },
  6355. },
  6356. [
  6357. {
  6358. name: "Normal",
  6359. height: math.unit(5.5, "feet"),
  6360. default: true
  6361. },
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6366. {
  6367. side: {
  6368. height: math.unit(2, "meters"),
  6369. weight: math.unit(70, "kg"),
  6370. name: "Side",
  6371. image: {
  6372. source: "./media/characters/sanya/side.svg",
  6373. bottom: 0.02,
  6374. extra: 1.02
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Small",
  6381. height: math.unit(2, "meters")
  6382. },
  6383. {
  6384. name: "Normal",
  6385. height: math.unit(3, "meters")
  6386. },
  6387. {
  6388. name: "Macro",
  6389. height: math.unit(16, "meters"),
  6390. default: true
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6396. {
  6397. front: {
  6398. height: math.unit(2, "meters"),
  6399. weight: math.unit(120, "kg"),
  6400. name: "Front",
  6401. image: {
  6402. source: "./media/characters/miranda/front.svg",
  6403. extra: 195 / 185,
  6404. bottom: 10.9 / 206.5
  6405. }
  6406. },
  6407. back: {
  6408. height: math.unit(2, "meters"),
  6409. weight: math.unit(120, "kg"),
  6410. name: "Back",
  6411. image: {
  6412. source: "./media/characters/miranda/back.svg",
  6413. extra: 201 / 193,
  6414. bottom: 2.3 / 203.7
  6415. }
  6416. },
  6417. },
  6418. [
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(10, "feet"),
  6422. default: true
  6423. }
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "James", species: ["deer"], tags: ["anthro"] },
  6428. {
  6429. side: {
  6430. height: math.unit(2, "meters"),
  6431. weight: math.unit(100, "kg"),
  6432. name: "Front",
  6433. image: {
  6434. source: "./media/characters/james/front.svg",
  6435. extra: 10 / 8.5
  6436. }
  6437. },
  6438. },
  6439. [
  6440. {
  6441. name: "Normal",
  6442. height: math.unit(8.5, "feet"),
  6443. default: true
  6444. }
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6449. {
  6450. side: {
  6451. height: math.unit(9.5, "feet"),
  6452. weight: math.unit(2500, "lbs"),
  6453. name: "Side",
  6454. image: {
  6455. source: "./media/characters/heather/side.svg"
  6456. }
  6457. },
  6458. },
  6459. [
  6460. {
  6461. name: "Normal",
  6462. height: math.unit(9.5, "feet"),
  6463. default: true
  6464. }
  6465. ]
  6466. ))
  6467. characterMakers.push(() => makeCharacter(
  6468. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6469. {
  6470. side: {
  6471. height: math.unit(6.5, "feet"),
  6472. weight: math.unit(400, "lbs"),
  6473. name: "Side",
  6474. image: {
  6475. source: "./media/characters/lukas/side.svg",
  6476. extra: 7.25 / 6.5
  6477. }
  6478. },
  6479. },
  6480. [
  6481. {
  6482. name: "Normal",
  6483. height: math.unit(6.5, "feet"),
  6484. default: true
  6485. }
  6486. ]
  6487. ))
  6488. characterMakers.push(() => makeCharacter(
  6489. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6490. {
  6491. side: {
  6492. height: math.unit(5, "feet"),
  6493. weight: math.unit(3000, "lbs"),
  6494. name: "Side",
  6495. image: {
  6496. source: "./media/characters/louise/side.svg"
  6497. }
  6498. },
  6499. },
  6500. [
  6501. {
  6502. name: "Normal",
  6503. height: math.unit(5, "feet"),
  6504. default: true
  6505. }
  6506. ]
  6507. ))
  6508. characterMakers.push(() => makeCharacter(
  6509. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6510. {
  6511. side: {
  6512. height: math.unit(6, "feet"),
  6513. weight: math.unit(150, "lbs"),
  6514. name: "Side",
  6515. image: {
  6516. source: "./media/characters/ramona/side.svg",
  6517. extra: 871/854,
  6518. bottom: 41/912
  6519. }
  6520. },
  6521. },
  6522. [
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(6 + 4/12, "feet")
  6526. },
  6527. {
  6528. name: "Minimacro",
  6529. height: math.unit(5.3, "meters"),
  6530. default: true
  6531. },
  6532. {
  6533. name: "Macro",
  6534. height: math.unit(20, "stories")
  6535. },
  6536. {
  6537. name: "Macro+",
  6538. height: math.unit(50, "stories")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6544. {
  6545. standing: {
  6546. height: math.unit(5.75, "feet"),
  6547. weight: math.unit(160, "lbs"),
  6548. name: "Standing",
  6549. image: {
  6550. source: "./media/characters/deerpuff/standing.svg",
  6551. extra: 682 / 624
  6552. }
  6553. },
  6554. sitting: {
  6555. height: math.unit(5.75 / 1.79, "feet"),
  6556. weight: math.unit(160, "lbs"),
  6557. name: "Sitting",
  6558. image: {
  6559. source: "./media/characters/deerpuff/sitting.svg",
  6560. bottom: 44 / 400,
  6561. extra: 1
  6562. }
  6563. },
  6564. taurLaying: {
  6565. height: math.unit(6, "feet"),
  6566. weight: math.unit(400, "lbs"),
  6567. name: "Taur (Laying)",
  6568. image: {
  6569. source: "./media/characters/deerpuff/taur-laying.svg"
  6570. }
  6571. },
  6572. },
  6573. [
  6574. {
  6575. name: "Puffball",
  6576. height: math.unit(6, "inches")
  6577. },
  6578. {
  6579. name: "Normalpuff",
  6580. height: math.unit(5.75, "feet")
  6581. },
  6582. {
  6583. name: "Macropuff",
  6584. height: math.unit(1500, "feet"),
  6585. default: true
  6586. },
  6587. {
  6588. name: "Megapuff",
  6589. height: math.unit(500, "miles")
  6590. },
  6591. {
  6592. name: "Gigapuff",
  6593. height: math.unit(250000, "miles")
  6594. },
  6595. {
  6596. name: "Omegapuff",
  6597. height: math.unit(1000, "lightyears")
  6598. },
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6603. {
  6604. stomping: {
  6605. height: math.unit(6, "feet"),
  6606. weight: math.unit(170, "lbs"),
  6607. name: "Stomping",
  6608. image: {
  6609. source: "./media/characters/vivian/stomping.svg"
  6610. }
  6611. },
  6612. sitting: {
  6613. height: math.unit(6 / 1.75, "feet"),
  6614. weight: math.unit(170, "lbs"),
  6615. name: "Sitting",
  6616. image: {
  6617. source: "./media/characters/vivian/sitting.svg",
  6618. bottom: 1 / 6.4,
  6619. extra: 1,
  6620. }
  6621. },
  6622. },
  6623. [
  6624. {
  6625. name: "Normal",
  6626. height: math.unit(7, "feet"),
  6627. default: true
  6628. },
  6629. {
  6630. name: "Macro",
  6631. height: math.unit(10, "stories")
  6632. },
  6633. {
  6634. name: "Macro+",
  6635. height: math.unit(30, "stories")
  6636. },
  6637. {
  6638. name: "Megamacro",
  6639. height: math.unit(10, "miles")
  6640. },
  6641. {
  6642. name: "Megamacro+",
  6643. height: math.unit(2750000, "meters")
  6644. },
  6645. ]
  6646. ))
  6647. characterMakers.push(() => makeCharacter(
  6648. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6649. {
  6650. front: {
  6651. height: math.unit(6, "feet"),
  6652. weight: math.unit(160, "lbs"),
  6653. name: "Front",
  6654. image: {
  6655. source: "./media/characters/prince/front.svg",
  6656. extra: 1938/1682,
  6657. bottom: 45/1983
  6658. }
  6659. },
  6660. back: {
  6661. height: math.unit(6, "feet"),
  6662. weight: math.unit(160, "lbs"),
  6663. name: "Back",
  6664. image: {
  6665. source: "./media/characters/prince/back.svg",
  6666. extra: 1955/1726,
  6667. bottom: 6/1961
  6668. }
  6669. },
  6670. },
  6671. [
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(7.75, "feet"),
  6675. default: true
  6676. },
  6677. {
  6678. name: "Not cute",
  6679. height: math.unit(17, "feet")
  6680. },
  6681. {
  6682. name: "I said NOT",
  6683. height: math.unit(91, "feet")
  6684. },
  6685. {
  6686. name: "Please stop",
  6687. height: math.unit(560, "feet")
  6688. },
  6689. {
  6690. name: "What have you done",
  6691. height: math.unit(2200, "feet")
  6692. },
  6693. {
  6694. name: "Deer God",
  6695. height: math.unit(3.6, "miles")
  6696. },
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6701. {
  6702. standing: {
  6703. height: math.unit(6, "feet"),
  6704. weight: math.unit(300, "lbs"),
  6705. name: "Standing",
  6706. image: {
  6707. source: "./media/characters/psymon/standing.svg",
  6708. extra: 1888 / 1810,
  6709. bottom: 0.05
  6710. }
  6711. },
  6712. slithering: {
  6713. height: math.unit(6, "feet"),
  6714. weight: math.unit(300, "lbs"),
  6715. name: "Slithering",
  6716. image: {
  6717. source: "./media/characters/psymon/slithering.svg",
  6718. extra: 1330 / 1224
  6719. }
  6720. },
  6721. slitheringAlt: {
  6722. height: math.unit(6, "feet"),
  6723. weight: math.unit(300, "lbs"),
  6724. name: "Slithering (Alt)",
  6725. image: {
  6726. source: "./media/characters/psymon/slithering-alt.svg",
  6727. extra: 1330 / 1224
  6728. }
  6729. },
  6730. },
  6731. [
  6732. {
  6733. name: "Normal",
  6734. height: math.unit(11.25, "feet"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Large",
  6739. height: math.unit(27, "feet")
  6740. },
  6741. {
  6742. name: "Giant",
  6743. height: math.unit(87, "feet")
  6744. },
  6745. {
  6746. name: "Macro",
  6747. height: math.unit(365, "feet")
  6748. },
  6749. {
  6750. name: "Megamacro",
  6751. height: math.unit(3, "miles")
  6752. },
  6753. {
  6754. name: "World Serpent",
  6755. height: math.unit(8000, "miles")
  6756. },
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(6, "feet"),
  6764. weight: math.unit(180, "lbs"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/daimos/front.svg",
  6768. extra: 4160 / 3897,
  6769. bottom: 0.021
  6770. }
  6771. }
  6772. },
  6773. [
  6774. {
  6775. name: "Normal",
  6776. height: math.unit(8, "feet"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Big Dog",
  6781. height: math.unit(22, "feet")
  6782. },
  6783. {
  6784. name: "Macro",
  6785. height: math.unit(127, "feet")
  6786. },
  6787. {
  6788. name: "Megamacro",
  6789. height: math.unit(3600, "feet")
  6790. },
  6791. ]
  6792. ))
  6793. characterMakers.push(() => makeCharacter(
  6794. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6795. {
  6796. side: {
  6797. height: math.unit(6, "feet"),
  6798. weight: math.unit(180, "lbs"),
  6799. name: "Side",
  6800. image: {
  6801. source: "./media/characters/blake/side.svg",
  6802. extra: 1212 / 1120,
  6803. bottom: 0.05
  6804. }
  6805. },
  6806. crouched: {
  6807. height: math.unit(6 * 0.57, "feet"),
  6808. weight: math.unit(180, "lbs"),
  6809. name: "Crouched",
  6810. image: {
  6811. source: "./media/characters/blake/crouched.svg",
  6812. extra: 840 / 587,
  6813. bottom: 0.04
  6814. }
  6815. },
  6816. bent: {
  6817. height: math.unit(6 * 0.75, "feet"),
  6818. weight: math.unit(180, "lbs"),
  6819. name: "Bent",
  6820. image: {
  6821. source: "./media/characters/blake/bent.svg",
  6822. extra: 592 / 544,
  6823. bottom: 0.035
  6824. }
  6825. },
  6826. },
  6827. [
  6828. {
  6829. name: "Normal",
  6830. height: math.unit(8 + 1 / 6, "feet"),
  6831. default: true
  6832. },
  6833. {
  6834. name: "Big Backside",
  6835. height: math.unit(37, "feet")
  6836. },
  6837. {
  6838. name: "Subway Shredder",
  6839. height: math.unit(72, "feet")
  6840. },
  6841. {
  6842. name: "City Carver",
  6843. height: math.unit(1675, "feet")
  6844. },
  6845. {
  6846. name: "Tectonic Tweaker",
  6847. height: math.unit(2300, "miles")
  6848. },
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6853. {
  6854. front: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(180, "lbs"),
  6857. name: "Front",
  6858. image: {
  6859. source: "./media/characters/guisetto/front.svg",
  6860. extra: 856 / 817,
  6861. bottom: 0.06
  6862. }
  6863. },
  6864. airborne: {
  6865. height: math.unit(6, "feet"),
  6866. weight: math.unit(180, "lbs"),
  6867. name: "Airborne",
  6868. image: {
  6869. source: "./media/characters/guisetto/airborne.svg",
  6870. extra: 584 / 525
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Normal",
  6877. height: math.unit(10 + 11 / 12, "feet"),
  6878. default: true
  6879. },
  6880. {
  6881. name: "Large",
  6882. height: math.unit(35, "feet")
  6883. },
  6884. {
  6885. name: "Macro",
  6886. height: math.unit(475, "feet")
  6887. },
  6888. ]
  6889. ))
  6890. characterMakers.push(() => makeCharacter(
  6891. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6892. {
  6893. front: {
  6894. height: math.unit(6, "feet"),
  6895. weight: math.unit(180, "lbs"),
  6896. name: "Front",
  6897. image: {
  6898. source: "./media/characters/luxor/front.svg",
  6899. extra: 2940 / 2152
  6900. }
  6901. },
  6902. back: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(180, "lbs"),
  6905. name: "Back",
  6906. image: {
  6907. source: "./media/characters/luxor/back.svg",
  6908. extra: 1083 / 960
  6909. }
  6910. },
  6911. },
  6912. [
  6913. {
  6914. name: "Normal",
  6915. height: math.unit(5 + 5 / 6, "feet"),
  6916. default: true
  6917. },
  6918. {
  6919. name: "Lamp",
  6920. height: math.unit(50, "feet")
  6921. },
  6922. {
  6923. name: "Lämp",
  6924. height: math.unit(300, "feet")
  6925. },
  6926. {
  6927. name: "The sun is a lamp",
  6928. height: math.unit(250000, "miles")
  6929. },
  6930. ]
  6931. ))
  6932. characterMakers.push(() => makeCharacter(
  6933. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6934. {
  6935. front: {
  6936. height: math.unit(6, "feet"),
  6937. weight: math.unit(50, "lbs"),
  6938. name: "Front",
  6939. image: {
  6940. source: "./media/characters/huoyan/front.svg"
  6941. }
  6942. },
  6943. side: {
  6944. height: math.unit(6, "feet"),
  6945. weight: math.unit(180, "lbs"),
  6946. name: "Side",
  6947. image: {
  6948. source: "./media/characters/huoyan/side.svg"
  6949. }
  6950. },
  6951. },
  6952. [
  6953. {
  6954. name: "Chef",
  6955. height: math.unit(9, "feet")
  6956. },
  6957. {
  6958. name: "Normal",
  6959. height: math.unit(65, "feet"),
  6960. default: true
  6961. },
  6962. {
  6963. name: "Macro",
  6964. height: math.unit(780, "feet")
  6965. },
  6966. {
  6967. name: "Flaming Mountain",
  6968. height: math.unit(4.8, "miles")
  6969. },
  6970. {
  6971. name: "Celestial",
  6972. height: math.unit(765000, "miles")
  6973. },
  6974. ]
  6975. ))
  6976. characterMakers.push(() => makeCharacter(
  6977. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6978. {
  6979. front: {
  6980. height: math.unit(5 + 3 / 4, "feet"),
  6981. weight: math.unit(120, "lbs"),
  6982. name: "Front",
  6983. image: {
  6984. source: "./media/characters/tails/front.svg"
  6985. }
  6986. }
  6987. },
  6988. [
  6989. {
  6990. name: "Normal",
  6991. height: math.unit(5 + 3 / 4, "feet"),
  6992. default: true
  6993. }
  6994. ]
  6995. ))
  6996. characterMakers.push(() => makeCharacter(
  6997. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6998. {
  6999. front: {
  7000. height: math.unit(4, "feet"),
  7001. weight: math.unit(50, "lbs"),
  7002. name: "Front",
  7003. image: {
  7004. source: "./media/characters/rainy/front.svg"
  7005. }
  7006. }
  7007. },
  7008. [
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(800, "feet"),
  7012. default: true
  7013. }
  7014. ]
  7015. ))
  7016. characterMakers.push(() => makeCharacter(
  7017. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  7018. {
  7019. front: {
  7020. height: math.unit(6, "feet"),
  7021. weight: math.unit(150, "lbs"),
  7022. name: "Front",
  7023. image: {
  7024. source: "./media/characters/rainier/front.svg"
  7025. }
  7026. }
  7027. },
  7028. [
  7029. {
  7030. name: "Micro",
  7031. height: math.unit(2, "mm"),
  7032. default: true
  7033. }
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  7038. {
  7039. front: {
  7040. height: math.unit(8 + 4/12, "feet"),
  7041. weight: math.unit(450, "kilograms"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/andy-renard/front.svg",
  7045. extra: 862/809,
  7046. bottom: 85/947
  7047. },
  7048. extraAttributes: {
  7049. "pawSize": {
  7050. name: "Paw Size",
  7051. power: 2,
  7052. type: "area",
  7053. base: math.unit(0.45*0.3, "meters^2")
  7054. },
  7055. "handSize": {
  7056. name: "Hand Size",
  7057. power: 2,
  7058. type: "area",
  7059. base: math.unit(0.4 * 0.3, "meters^2")
  7060. },
  7061. "cockSize": {
  7062. name: "Cock Length",
  7063. power: 1,
  7064. type: "length",
  7065. base: math.unit(0.75, "meters")
  7066. },
  7067. "ballDiameter": {
  7068. name: "Ball Diameter",
  7069. power: 1,
  7070. type: "length",
  7071. base: math.unit(0.3, "meters")
  7072. },
  7073. "ballVolume": {
  7074. name: "Ball Volume",
  7075. power: 3,
  7076. type: "volume",
  7077. base: math.unit(0.01413716694, "meters^3")
  7078. },
  7079. }
  7080. },
  7081. back: {
  7082. height: math.unit(8 + 4/12, "feet"),
  7083. weight: math.unit(450, "kilograms"),
  7084. name: "Back",
  7085. image: {
  7086. source: "./media/characters/andy-renard/back.svg",
  7087. extra: 1112/1033,
  7088. bottom: 64/1176
  7089. },
  7090. extraAttributes: {
  7091. "pawSize": {
  7092. name: "Paw Size",
  7093. power: 2,
  7094. type: "area",
  7095. base: math.unit(0.45*0.3, "meters^2")
  7096. },
  7097. "handSize": {
  7098. name: "Hand Size",
  7099. power: 2,
  7100. type: "area",
  7101. base: math.unit(0.4 * 0.3, "meters^2")
  7102. },
  7103. "cockSize": {
  7104. name: "Cock Length",
  7105. power: 1,
  7106. type: "length",
  7107. base: math.unit(0.75, "meters")
  7108. },
  7109. "ballDiameter": {
  7110. name: "Ball Diameter",
  7111. power: 1,
  7112. type: "length",
  7113. base: math.unit(0.3, "meters")
  7114. },
  7115. "ballVolume": {
  7116. name: "Ball Volume",
  7117. power: 3,
  7118. type: "volume",
  7119. base: math.unit(0.01413716694, "meters^3")
  7120. },
  7121. }
  7122. },
  7123. },
  7124. [
  7125. {
  7126. name: "Tall",
  7127. height: math.unit(6 + 8/12, "feet")
  7128. },
  7129. {
  7130. name: "Very Tall",
  7131. height: math.unit(8 + 4/12, "feet")
  7132. },
  7133. {
  7134. name: "Mini Macro",
  7135. height: math.unit(15, "feet"),
  7136. default: true
  7137. },
  7138. {
  7139. name: "Giant",
  7140. height: math.unit(50, "feet")
  7141. },
  7142. {
  7143. name: "Nice",
  7144. height: math.unit(69, "feet")
  7145. },
  7146. {
  7147. name: "Macro",
  7148. height: math.unit(100, "feet")
  7149. },
  7150. {
  7151. name: "Enormous",
  7152. height: math.unit(500, "feet")
  7153. },
  7154. {
  7155. name: "Gargantuan",
  7156. height: math.unit(1000, "feet")
  7157. },
  7158. {
  7159. name: "Mega",
  7160. height: math.unit(1, "mile")
  7161. },
  7162. {
  7163. name: "Giga",
  7164. height: math.unit(50, "miles")
  7165. },
  7166. {
  7167. name: "Tera",
  7168. height: math.unit(1000, "miles")
  7169. },
  7170. {
  7171. name: "Cosmic",
  7172. height: math.unit(1.5, "galaxies")
  7173. },
  7174. {
  7175. name: "God",
  7176. height: math.unit(1.5, "universes")
  7177. },
  7178. {
  7179. name: "Chief Execute God",
  7180. height: math.unit(1.5, "multiverses")
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7186. {
  7187. front: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(210, "lbs"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/cimmaron/front-sfw.svg",
  7193. extra: 701 / 676,
  7194. bottom: 0.046
  7195. }
  7196. },
  7197. back: {
  7198. height: math.unit(6, "feet"),
  7199. weight: math.unit(210, "lbs"),
  7200. name: "Back",
  7201. image: {
  7202. source: "./media/characters/cimmaron/back-sfw.svg",
  7203. extra: 701 / 676,
  7204. bottom: 0.046
  7205. }
  7206. },
  7207. frontNsfw: {
  7208. height: math.unit(6, "feet"),
  7209. weight: math.unit(210, "lbs"),
  7210. name: "Front (NSFW)",
  7211. image: {
  7212. source: "./media/characters/cimmaron/front-nsfw.svg",
  7213. extra: 701 / 676,
  7214. bottom: 0.046
  7215. }
  7216. },
  7217. backNsfw: {
  7218. height: math.unit(6, "feet"),
  7219. weight: math.unit(210, "lbs"),
  7220. name: "Back (NSFW)",
  7221. image: {
  7222. source: "./media/characters/cimmaron/back-nsfw.svg",
  7223. extra: 701 / 676,
  7224. bottom: 0.046
  7225. }
  7226. },
  7227. dick: {
  7228. height: math.unit(1.714, "feet"),
  7229. name: "Dick",
  7230. image: {
  7231. source: "./media/characters/cimmaron/dick.svg"
  7232. }
  7233. },
  7234. },
  7235. [
  7236. {
  7237. name: "Normal",
  7238. height: math.unit(6, "feet"),
  7239. default: true
  7240. },
  7241. {
  7242. name: "Macro Mayor",
  7243. height: math.unit(350, "meters")
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7249. {
  7250. front: {
  7251. height: math.unit(6, "feet"),
  7252. weight: math.unit(200, "lbs"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/akari/front.svg",
  7256. extra: 962 / 901,
  7257. bottom: 0.04
  7258. }
  7259. }
  7260. },
  7261. [
  7262. {
  7263. name: "Micro",
  7264. height: math.unit(5, "inches"),
  7265. default: true
  7266. },
  7267. {
  7268. name: "Normal",
  7269. height: math.unit(7, "feet")
  7270. },
  7271. ]
  7272. ))
  7273. characterMakers.push(() => makeCharacter(
  7274. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7275. {
  7276. front: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(140, "lbs"),
  7279. name: "Front",
  7280. image: {
  7281. source: "./media/characters/cynosura/front.svg",
  7282. extra: 437/410,
  7283. bottom: 9/446
  7284. }
  7285. },
  7286. back: {
  7287. height: math.unit(6, "feet"),
  7288. weight: math.unit(140, "lbs"),
  7289. name: "Back",
  7290. image: {
  7291. source: "./media/characters/cynosura/back.svg",
  7292. extra: 1304/1160,
  7293. bottom: 71/1375
  7294. }
  7295. },
  7296. },
  7297. [
  7298. {
  7299. name: "Micro",
  7300. height: math.unit(4, "inches")
  7301. },
  7302. {
  7303. name: "Normal",
  7304. height: math.unit(5.75, "feet"),
  7305. default: true
  7306. },
  7307. {
  7308. name: "Tall",
  7309. height: math.unit(10, "feet")
  7310. },
  7311. {
  7312. name: "Big",
  7313. height: math.unit(20, "feet")
  7314. },
  7315. {
  7316. name: "Macro",
  7317. height: math.unit(50, "feet")
  7318. },
  7319. ]
  7320. ))
  7321. characterMakers.push(() => makeCharacter(
  7322. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7323. {
  7324. front: {
  7325. height: math.unit(13 + 2/12, "feet"),
  7326. weight: math.unit(800, "kg"),
  7327. name: "Front",
  7328. image: {
  7329. source: "./media/characters/gin/front.svg",
  7330. extra: 1312/1191,
  7331. bottom: 45/1357
  7332. }
  7333. },
  7334. mouth: {
  7335. height: math.unit(2.39 * 1.8, "feet"),
  7336. name: "Mouth",
  7337. image: {
  7338. source: "./media/characters/gin/mouth.svg"
  7339. }
  7340. },
  7341. hand: {
  7342. height: math.unit(1.57 * 2.19, "feet"),
  7343. name: "Hand",
  7344. image: {
  7345. source: "./media/characters/gin/hand.svg"
  7346. }
  7347. },
  7348. foot: {
  7349. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7350. name: "Foot",
  7351. image: {
  7352. source: "./media/characters/gin/foot.svg"
  7353. }
  7354. },
  7355. sole: {
  7356. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7357. name: "Sole",
  7358. image: {
  7359. source: "./media/characters/gin/sole.svg"
  7360. }
  7361. },
  7362. },
  7363. [
  7364. {
  7365. name: "Very Small",
  7366. height: math.unit(13 + 2 / 12, "feet")
  7367. },
  7368. {
  7369. name: "Micro",
  7370. height: math.unit(600, "miles")
  7371. },
  7372. {
  7373. name: "Regular",
  7374. height: math.unit(20, "earths"),
  7375. default: true
  7376. },
  7377. {
  7378. name: "Macro",
  7379. height: math.unit(2.2, "solarradii")
  7380. },
  7381. {
  7382. name: "Teramacro",
  7383. height: math.unit(1.2, "galaxies")
  7384. },
  7385. {
  7386. name: "Omegamacro",
  7387. height: math.unit(200, "universes")
  7388. },
  7389. ]
  7390. ))
  7391. characterMakers.push(() => makeCharacter(
  7392. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7393. {
  7394. front: {
  7395. height: math.unit(6 + 1 / 6, "feet"),
  7396. weight: math.unit(178, "lbs"),
  7397. name: "Front",
  7398. image: {
  7399. source: "./media/characters/guy/front.svg"
  7400. }
  7401. }
  7402. },
  7403. [
  7404. {
  7405. name: "Normal",
  7406. height: math.unit(6 + 1 / 6, "feet"),
  7407. default: true
  7408. },
  7409. {
  7410. name: "Large",
  7411. height: math.unit(25 + 7 / 12, "feet")
  7412. },
  7413. {
  7414. name: "Macro",
  7415. height: math.unit(60 + 9 / 12, "feet")
  7416. },
  7417. {
  7418. name: "Macro+",
  7419. height: math.unit(246, "feet")
  7420. },
  7421. {
  7422. name: "Macro++",
  7423. height: math.unit(878, "feet")
  7424. }
  7425. ]
  7426. ))
  7427. characterMakers.push(() => makeCharacter(
  7428. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7429. {
  7430. front: {
  7431. height: math.unit(9, "feet"),
  7432. weight: math.unit(800, "lbs"),
  7433. name: "Front",
  7434. image: {
  7435. source: "./media/characters/tiberius/front.svg",
  7436. extra: 2295 / 2071
  7437. }
  7438. },
  7439. back: {
  7440. height: math.unit(9, "feet"),
  7441. weight: math.unit(800, "lbs"),
  7442. name: "Back",
  7443. image: {
  7444. source: "./media/characters/tiberius/back.svg",
  7445. extra: 2373 / 2160
  7446. }
  7447. },
  7448. },
  7449. [
  7450. {
  7451. name: "Normal",
  7452. height: math.unit(9, "feet"),
  7453. default: true
  7454. }
  7455. ]
  7456. ))
  7457. characterMakers.push(() => makeCharacter(
  7458. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7459. {
  7460. front: {
  7461. height: math.unit(6, "feet"),
  7462. weight: math.unit(600, "lbs"),
  7463. name: "Front",
  7464. image: {
  7465. source: "./media/characters/surgo/front.svg",
  7466. extra: 3591 / 2227
  7467. }
  7468. },
  7469. back: {
  7470. height: math.unit(6, "feet"),
  7471. weight: math.unit(600, "lbs"),
  7472. name: "Back",
  7473. image: {
  7474. source: "./media/characters/surgo/back.svg",
  7475. extra: 3557 / 2228
  7476. }
  7477. },
  7478. laying: {
  7479. height: math.unit(6 * 0.85, "feet"),
  7480. weight: math.unit(600, "lbs"),
  7481. name: "Laying",
  7482. image: {
  7483. source: "./media/characters/surgo/laying.svg"
  7484. }
  7485. },
  7486. },
  7487. [
  7488. {
  7489. name: "Normal",
  7490. height: math.unit(6, "feet"),
  7491. default: true
  7492. }
  7493. ]
  7494. ))
  7495. characterMakers.push(() => makeCharacter(
  7496. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7497. {
  7498. side: {
  7499. height: math.unit(6, "feet"),
  7500. weight: math.unit(150, "lbs"),
  7501. name: "Side",
  7502. image: {
  7503. source: "./media/characters/cibus/side.svg",
  7504. extra: 800 / 400
  7505. }
  7506. },
  7507. },
  7508. [
  7509. {
  7510. name: "Normal",
  7511. height: math.unit(6, "feet"),
  7512. default: true
  7513. }
  7514. ]
  7515. ))
  7516. characterMakers.push(() => makeCharacter(
  7517. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7518. {
  7519. front: {
  7520. height: math.unit(6, "feet"),
  7521. weight: math.unit(240, "lbs"),
  7522. name: "Front",
  7523. image: {
  7524. source: "./media/characters/nibbles/front.svg"
  7525. }
  7526. },
  7527. side: {
  7528. height: math.unit(6, "feet"),
  7529. weight: math.unit(240, "lbs"),
  7530. name: "Side",
  7531. image: {
  7532. source: "./media/characters/nibbles/side.svg"
  7533. }
  7534. },
  7535. },
  7536. [
  7537. {
  7538. name: "Normal",
  7539. height: math.unit(9, "feet"),
  7540. default: true
  7541. }
  7542. ]
  7543. ))
  7544. characterMakers.push(() => makeCharacter(
  7545. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7546. {
  7547. side: {
  7548. height: math.unit(5 + 1 / 6, "feet"),
  7549. weight: math.unit(130, "lbs"),
  7550. name: "Side",
  7551. image: {
  7552. source: "./media/characters/rikky/side.svg",
  7553. extra: 851 / 801
  7554. }
  7555. },
  7556. },
  7557. [
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(5 + 1 / 6, "feet")
  7561. },
  7562. {
  7563. name: "Macro",
  7564. height: math.unit(152, "feet"),
  7565. default: true
  7566. },
  7567. {
  7568. name: "Megamacro",
  7569. height: math.unit(7, "miles")
  7570. }
  7571. ]
  7572. ))
  7573. characterMakers.push(() => makeCharacter(
  7574. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7575. {
  7576. side: {
  7577. height: math.unit(370, "cm"),
  7578. weight: math.unit(350, "lbs"),
  7579. name: "Side",
  7580. image: {
  7581. source: "./media/characters/malfressa/side.svg"
  7582. }
  7583. },
  7584. walking: {
  7585. height: math.unit(370, "cm"),
  7586. weight: math.unit(350, "lbs"),
  7587. name: "Walking",
  7588. image: {
  7589. source: "./media/characters/malfressa/walking.svg"
  7590. }
  7591. },
  7592. feral: {
  7593. height: math.unit(2500, "cm"),
  7594. weight: math.unit(100000, "lbs"),
  7595. name: "Feral",
  7596. image: {
  7597. source: "./media/characters/malfressa/feral.svg",
  7598. extra: 2108 / 837,
  7599. bottom: 0.02
  7600. }
  7601. },
  7602. },
  7603. [
  7604. {
  7605. name: "Normal",
  7606. height: math.unit(370, "cm")
  7607. },
  7608. {
  7609. name: "Macro",
  7610. height: math.unit(300, "meters"),
  7611. default: true
  7612. }
  7613. ]
  7614. ))
  7615. characterMakers.push(() => makeCharacter(
  7616. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7617. {
  7618. front: {
  7619. height: math.unit(6, "feet"),
  7620. weight: math.unit(60, "kg"),
  7621. name: "Front",
  7622. image: {
  7623. source: "./media/characters/jaro/front.svg",
  7624. extra: 845/817,
  7625. bottom: 45/890
  7626. }
  7627. },
  7628. back: {
  7629. height: math.unit(6, "feet"),
  7630. weight: math.unit(60, "kg"),
  7631. name: "Back",
  7632. image: {
  7633. source: "./media/characters/jaro/back.svg",
  7634. extra: 847/817,
  7635. bottom: 34/881
  7636. }
  7637. },
  7638. },
  7639. [
  7640. {
  7641. name: "Micro",
  7642. height: math.unit(7, "inches")
  7643. },
  7644. {
  7645. name: "Normal",
  7646. height: math.unit(5.5, "feet"),
  7647. default: true
  7648. },
  7649. {
  7650. name: "Minimacro",
  7651. height: math.unit(20, "feet")
  7652. },
  7653. {
  7654. name: "Macro",
  7655. height: math.unit(200, "meters")
  7656. }
  7657. ]
  7658. ))
  7659. characterMakers.push(() => makeCharacter(
  7660. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7661. {
  7662. front: {
  7663. height: math.unit(6, "feet"),
  7664. weight: math.unit(195, "lb"),
  7665. name: "Front",
  7666. image: {
  7667. source: "./media/characters/rogue/front.svg"
  7668. }
  7669. },
  7670. },
  7671. [
  7672. {
  7673. name: "Macro",
  7674. height: math.unit(90, "feet"),
  7675. default: true
  7676. },
  7677. ]
  7678. ))
  7679. characterMakers.push(() => makeCharacter(
  7680. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7681. {
  7682. standing: {
  7683. height: math.unit(5 + 8 / 12, "feet"),
  7684. weight: math.unit(140, "lb"),
  7685. name: "Standing",
  7686. image: {
  7687. source: "./media/characters/piper/standing.svg",
  7688. extra: 1440/1284,
  7689. bottom: 66/1506
  7690. }
  7691. },
  7692. running: {
  7693. height: math.unit(5 + 8 / 12, "feet"),
  7694. weight: math.unit(140, "lb"),
  7695. name: "Running",
  7696. image: {
  7697. source: "./media/characters/piper/running.svg",
  7698. extra: 3948/3655,
  7699. bottom: 0/3948
  7700. }
  7701. },
  7702. sole: {
  7703. height: math.unit(0.81, "feet"),
  7704. weight: math.unit(2, "kg"),
  7705. name: "Sole",
  7706. image: {
  7707. source: "./media/characters/piper/sole.svg"
  7708. }
  7709. },
  7710. nipple: {
  7711. height: math.unit(0.25, "feet"),
  7712. weight: math.unit(1.5, "lb"),
  7713. name: "Nipple",
  7714. image: {
  7715. source: "./media/characters/piper/nipple.svg"
  7716. }
  7717. },
  7718. head: {
  7719. height: math.unit(1.1, "feet"),
  7720. name: "Head",
  7721. image: {
  7722. source: "./media/characters/piper/head.svg"
  7723. }
  7724. },
  7725. },
  7726. [
  7727. {
  7728. name: "Micro",
  7729. height: math.unit(2, "inches")
  7730. },
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(5 + 8 / 12, "feet")
  7734. },
  7735. {
  7736. name: "Macro",
  7737. height: math.unit(250, "feet"),
  7738. default: true
  7739. },
  7740. {
  7741. name: "Megamacro",
  7742. height: math.unit(7, "miles")
  7743. },
  7744. ]
  7745. ))
  7746. characterMakers.push(() => makeCharacter(
  7747. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7748. {
  7749. front: {
  7750. height: math.unit(6, "feet"),
  7751. weight: math.unit(220, "lb"),
  7752. name: "Front",
  7753. image: {
  7754. source: "./media/characters/gemini/front.svg"
  7755. }
  7756. },
  7757. back: {
  7758. height: math.unit(6, "feet"),
  7759. weight: math.unit(220, "lb"),
  7760. name: "Back",
  7761. image: {
  7762. source: "./media/characters/gemini/back.svg"
  7763. }
  7764. },
  7765. kneeling: {
  7766. height: math.unit(6 / 1.5, "feet"),
  7767. weight: math.unit(220, "lb"),
  7768. name: "Kneeling",
  7769. image: {
  7770. source: "./media/characters/gemini/kneeling.svg",
  7771. bottom: 0.02
  7772. }
  7773. },
  7774. },
  7775. [
  7776. {
  7777. name: "Macro",
  7778. height: math.unit(300, "meters"),
  7779. default: true
  7780. },
  7781. {
  7782. name: "Megamacro",
  7783. height: math.unit(6900, "meters")
  7784. },
  7785. ]
  7786. ))
  7787. characterMakers.push(() => makeCharacter(
  7788. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7789. {
  7790. anthro: {
  7791. height: math.unit(2.35, "meters"),
  7792. weight: math.unit(73, "kg"),
  7793. name: "Anthro",
  7794. image: {
  7795. source: "./media/characters/alicia/anthro.svg",
  7796. extra: 2571 / 2385,
  7797. bottom: 75 / 2648
  7798. }
  7799. },
  7800. paw: {
  7801. height: math.unit(1.32, "feet"),
  7802. name: "Paw",
  7803. image: {
  7804. source: "./media/characters/alicia/paw.svg"
  7805. }
  7806. },
  7807. feral: {
  7808. height: math.unit(1.69, "meters"),
  7809. weight: math.unit(73, "kg"),
  7810. name: "Feral",
  7811. image: {
  7812. source: "./media/characters/alicia/feral.svg",
  7813. extra: 2123 / 1715,
  7814. bottom: 222 / 2349
  7815. }
  7816. },
  7817. },
  7818. [
  7819. {
  7820. name: "Normal",
  7821. height: math.unit(2.35, "meters")
  7822. },
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(60, "meters"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Megamacro",
  7830. height: math.unit(10000, "kilometers")
  7831. },
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7836. {
  7837. front: {
  7838. height: math.unit(7, "feet"),
  7839. weight: math.unit(250, "lbs"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/archy/front.svg"
  7843. }
  7844. }
  7845. },
  7846. [
  7847. {
  7848. name: "Micro",
  7849. height: math.unit(1, "inch")
  7850. },
  7851. {
  7852. name: "Shorty",
  7853. height: math.unit(5, "feet")
  7854. },
  7855. {
  7856. name: "Normal",
  7857. height: math.unit(7, "feet")
  7858. },
  7859. {
  7860. name: "Macro",
  7861. height: math.unit(600, "meters"),
  7862. default: true
  7863. },
  7864. {
  7865. name: "Megamacro",
  7866. height: math.unit(1, "mile")
  7867. },
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(1.65, "meters"),
  7875. weight: math.unit(74, "kg"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/berri/front.svg",
  7879. extra: 857 / 837,
  7880. bottom: 18 / 877
  7881. }
  7882. },
  7883. bum: {
  7884. height: math.unit(1.46, "feet"),
  7885. name: "Bum",
  7886. image: {
  7887. source: "./media/characters/berri/bum.svg"
  7888. }
  7889. },
  7890. mouth: {
  7891. height: math.unit(0.44, "feet"),
  7892. name: "Mouth",
  7893. image: {
  7894. source: "./media/characters/berri/mouth.svg"
  7895. }
  7896. },
  7897. paw: {
  7898. height: math.unit(0.826, "feet"),
  7899. name: "Paw",
  7900. image: {
  7901. source: "./media/characters/berri/paw.svg"
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Normal",
  7908. height: math.unit(1.65, "meters")
  7909. },
  7910. {
  7911. name: "Macro",
  7912. height: math.unit(60, "m"),
  7913. default: true
  7914. },
  7915. {
  7916. name: "Megamacro",
  7917. height: math.unit(9.213, "km")
  7918. },
  7919. {
  7920. name: "Planet Eater",
  7921. height: math.unit(489, "megameters")
  7922. },
  7923. {
  7924. name: "Teramacro",
  7925. height: math.unit(2471635000000, "meters")
  7926. },
  7927. {
  7928. name: "Examacro",
  7929. height: math.unit(8.0624e+26, "meters")
  7930. }
  7931. ]
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7935. {
  7936. front: {
  7937. height: math.unit(1.72, "meters"),
  7938. weight: math.unit(68, "kg"),
  7939. name: "Front",
  7940. image: {
  7941. source: "./media/characters/lexi/front.svg"
  7942. }
  7943. }
  7944. },
  7945. [
  7946. {
  7947. name: "Very Smol",
  7948. height: math.unit(10, "mm")
  7949. },
  7950. {
  7951. name: "Micro",
  7952. height: math.unit(6.8, "cm"),
  7953. default: true
  7954. },
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(1.72, "m")
  7958. }
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7963. {
  7964. front: {
  7965. height: math.unit(1.69, "meters"),
  7966. weight: math.unit(68, "kg"),
  7967. name: "Front",
  7968. image: {
  7969. source: "./media/characters/martin/front.svg",
  7970. extra: 596 / 581
  7971. }
  7972. }
  7973. },
  7974. [
  7975. {
  7976. name: "Micro",
  7977. height: math.unit(6.85, "cm"),
  7978. default: true
  7979. },
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(1.69, "m")
  7983. }
  7984. ]
  7985. ))
  7986. characterMakers.push(() => makeCharacter(
  7987. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7988. {
  7989. front: {
  7990. height: math.unit(1.69, "meters"),
  7991. weight: math.unit(68, "kg"),
  7992. name: "Front",
  7993. image: {
  7994. source: "./media/characters/juno/front.svg"
  7995. }
  7996. }
  7997. },
  7998. [
  7999. {
  8000. name: "Micro",
  8001. height: math.unit(7, "cm")
  8002. },
  8003. {
  8004. name: "Normal",
  8005. height: math.unit(1.89, "m")
  8006. },
  8007. {
  8008. name: "Macro",
  8009. height: math.unit(353, "meters"),
  8010. default: true
  8011. }
  8012. ]
  8013. ))
  8014. characterMakers.push(() => makeCharacter(
  8015. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  8016. {
  8017. front: {
  8018. height: math.unit(1.93, "meters"),
  8019. weight: math.unit(83, "kg"),
  8020. name: "Front",
  8021. image: {
  8022. source: "./media/characters/samantha/front.svg"
  8023. }
  8024. },
  8025. frontClothed: {
  8026. height: math.unit(1.93, "meters"),
  8027. weight: math.unit(83, "kg"),
  8028. name: "Front (Clothed)",
  8029. image: {
  8030. source: "./media/characters/samantha/front-clothed.svg"
  8031. }
  8032. },
  8033. back: {
  8034. height: math.unit(1.93, "meters"),
  8035. weight: math.unit(83, "kg"),
  8036. name: "Back",
  8037. image: {
  8038. source: "./media/characters/samantha/back.svg"
  8039. }
  8040. },
  8041. },
  8042. [
  8043. {
  8044. name: "Normal",
  8045. height: math.unit(1.93, "m")
  8046. },
  8047. {
  8048. name: "Macro",
  8049. height: math.unit(74, "meters"),
  8050. default: true
  8051. },
  8052. {
  8053. name: "Macro+",
  8054. height: math.unit(223, "meters"),
  8055. },
  8056. {
  8057. name: "Megamacro",
  8058. height: math.unit(8381, "meters"),
  8059. },
  8060. {
  8061. name: "Megamacro+",
  8062. height: math.unit(12000, "kilometers")
  8063. },
  8064. ]
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  8068. {
  8069. front: {
  8070. height: math.unit(1.92, "meters"),
  8071. weight: math.unit(80, "kg"),
  8072. name: "Front",
  8073. image: {
  8074. source: "./media/characters/dr-clay/front.svg"
  8075. }
  8076. },
  8077. frontClothed: {
  8078. height: math.unit(1.92, "meters"),
  8079. weight: math.unit(80, "kg"),
  8080. name: "Front (Clothed)",
  8081. image: {
  8082. source: "./media/characters/dr-clay/front-clothed.svg"
  8083. }
  8084. }
  8085. },
  8086. [
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(1.92, "m")
  8090. },
  8091. {
  8092. name: "Macro",
  8093. height: math.unit(214, "meters"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Macro+",
  8098. height: math.unit(12.237, "meters"),
  8099. },
  8100. {
  8101. name: "Megamacro",
  8102. height: math.unit(557, "megameters"),
  8103. },
  8104. {
  8105. name: "Unimaginable",
  8106. height: math.unit(120e9, "lightyears")
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(2, "meters"),
  8115. weight: math.unit(80, "kg"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8119. }
  8120. }
  8121. },
  8122. [
  8123. {
  8124. name: "Teramacro",
  8125. height: math.unit(500000, "lightyears"),
  8126. default: true
  8127. },
  8128. ]
  8129. ))
  8130. characterMakers.push(() => makeCharacter(
  8131. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8132. {
  8133. crux: {
  8134. height: math.unit(2, "meters"),
  8135. weight: math.unit(150, "kg"),
  8136. name: "Crux",
  8137. image: {
  8138. source: "./media/characters/vemus/crux.svg",
  8139. extra: 1074/936,
  8140. bottom: 23/1097
  8141. }
  8142. },
  8143. skunkTanuki: {
  8144. height: math.unit(2, "meters"),
  8145. weight: math.unit(150, "kg"),
  8146. name: "Skunk-Tanuki",
  8147. image: {
  8148. source: "./media/characters/vemus/skunk-tanuki.svg",
  8149. extra: 926/893,
  8150. bottom: 20/946
  8151. }
  8152. },
  8153. },
  8154. [
  8155. {
  8156. name: "Normal",
  8157. height: math.unit(4, "meters"),
  8158. default: true
  8159. },
  8160. {
  8161. name: "Big",
  8162. height: math.unit(8, "meters")
  8163. },
  8164. {
  8165. name: "Macro",
  8166. height: math.unit(100, "meters")
  8167. },
  8168. {
  8169. name: "Macro+",
  8170. height: math.unit(1500, "meters")
  8171. },
  8172. {
  8173. name: "Stellar",
  8174. height: math.unit(14e8, "meters")
  8175. },
  8176. ]
  8177. ))
  8178. characterMakers.push(() => makeCharacter(
  8179. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8180. {
  8181. front: {
  8182. height: math.unit(2, "meters"),
  8183. weight: math.unit(70, "kg"),
  8184. name: "Front",
  8185. image: {
  8186. source: "./media/characters/beherit/front.svg",
  8187. extra: 1234/1109,
  8188. bottom: 55/1289
  8189. }
  8190. }
  8191. },
  8192. [
  8193. {
  8194. name: "Normal",
  8195. height: math.unit(6, "feet")
  8196. },
  8197. {
  8198. name: "Lorg",
  8199. height: math.unit(25, "feet"),
  8200. default: true
  8201. },
  8202. {
  8203. name: "Lorger",
  8204. height: math.unit(75, "feet")
  8205. },
  8206. {
  8207. name: "Macro",
  8208. height: math.unit(200, "meters")
  8209. },
  8210. ]
  8211. ))
  8212. characterMakers.push(() => makeCharacter(
  8213. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8214. {
  8215. front: {
  8216. height: math.unit(2, "meters"),
  8217. weight: math.unit(150, "kg"),
  8218. name: "Front",
  8219. image: {
  8220. source: "./media/characters/everett/front.svg",
  8221. extra: 1017/866,
  8222. bottom: 86/1103
  8223. }
  8224. },
  8225. paw: {
  8226. height: math.unit(2 / 3.6, "meters"),
  8227. name: "Paw",
  8228. image: {
  8229. source: "./media/characters/everett/paw.svg"
  8230. }
  8231. },
  8232. },
  8233. [
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(15, "feet"),
  8237. default: true
  8238. },
  8239. {
  8240. name: "Lorg",
  8241. height: math.unit(70, "feet"),
  8242. default: true
  8243. },
  8244. {
  8245. name: "Lorger",
  8246. height: math.unit(250, "feet")
  8247. },
  8248. {
  8249. name: "Macro",
  8250. height: math.unit(500, "meters")
  8251. },
  8252. ]
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8256. {
  8257. front: {
  8258. height: math.unit(2, "meters"),
  8259. weight: math.unit(86, "kg"),
  8260. name: "Front",
  8261. image: {
  8262. source: "./media/characters/rose/front.svg",
  8263. extra: 1785/1636,
  8264. bottom: 30/1815
  8265. },
  8266. form: "liom",
  8267. default: true
  8268. },
  8269. frontSporty: {
  8270. height: math.unit(2, "meters"),
  8271. weight: math.unit(86, "kg"),
  8272. name: "Front (Sporty)",
  8273. image: {
  8274. source: "./media/characters/rose/front-sporty.svg",
  8275. extra: 350/335,
  8276. bottom: 10/360
  8277. },
  8278. form: "liom"
  8279. },
  8280. frontAlt: {
  8281. height: math.unit(1.6, "meters"),
  8282. weight: math.unit(86, "kg"),
  8283. name: "Front (Alt)",
  8284. image: {
  8285. source: "./media/characters/rose/front-alt.svg",
  8286. extra: 299/283,
  8287. bottom: 3/302
  8288. },
  8289. form: "liom"
  8290. },
  8291. plush: {
  8292. height: math.unit(2, "meters"),
  8293. weight: math.unit(86/3, "kg"),
  8294. name: "Plush",
  8295. image: {
  8296. source: "./media/characters/rose/plush.svg",
  8297. extra: 361/337,
  8298. bottom: 11/372
  8299. },
  8300. form: "plush",
  8301. default: true
  8302. },
  8303. faeStanding: {
  8304. height: math.unit(10, "cm"),
  8305. weight: math.unit(10, "grams"),
  8306. name: "Standing",
  8307. image: {
  8308. source: "./media/characters/rose/fae-standing.svg",
  8309. extra: 1189/1060,
  8310. bottom: 27/1216
  8311. },
  8312. form: "fae",
  8313. default: true
  8314. },
  8315. faeSitting: {
  8316. height: math.unit(5, "cm"),
  8317. weight: math.unit(10, "grams"),
  8318. name: "Sitting",
  8319. image: {
  8320. source: "./media/characters/rose/fae-sitting.svg",
  8321. extra: 737/577,
  8322. bottom: 356/1093
  8323. },
  8324. form: "fae"
  8325. },
  8326. faePaw: {
  8327. height: math.unit(1.35, "cm"),
  8328. name: "Paw",
  8329. image: {
  8330. source: "./media/characters/rose/fae-paw.svg"
  8331. },
  8332. form: "fae"
  8333. },
  8334. fronttrueFae: {
  8335. height: math.unit(10, "cm"),
  8336. weight: math.unit(10, "grams"),
  8337. name: "Front",
  8338. image: {
  8339. source: "./media/characters/rose/true-fae-front.svg",
  8340. extra: 839/789,
  8341. bottom: 12/851
  8342. },
  8343. form: "true-fae",
  8344. default: true
  8345. },
  8346. },
  8347. [
  8348. {
  8349. name: "True Micro",
  8350. height: math.unit(9, "cm"),
  8351. form: "liom"
  8352. },
  8353. {
  8354. name: "Micro",
  8355. height: math.unit(16, "cm"),
  8356. form: "liom"
  8357. },
  8358. {
  8359. name: "Normal",
  8360. height: math.unit(1.85, "meters"),
  8361. default: true,
  8362. form: "liom"
  8363. },
  8364. {
  8365. name: "Mini-Macro",
  8366. height: math.unit(5, "meters"),
  8367. form: "liom"
  8368. },
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(15, "meters"),
  8372. form: "liom"
  8373. },
  8374. {
  8375. name: "True Macro",
  8376. height: math.unit(40, "meters"),
  8377. form: "liom"
  8378. },
  8379. {
  8380. name: "City Scale",
  8381. height: math.unit(1, "km"),
  8382. form: "liom"
  8383. },
  8384. {
  8385. name: "Plushie",
  8386. height: math.unit(9, "cm"),
  8387. form: "plush",
  8388. default: true
  8389. },
  8390. {
  8391. name: "Fae",
  8392. height: math.unit(10, "cm"),
  8393. form: "fae",
  8394. default: true
  8395. },
  8396. {
  8397. name: "Fae",
  8398. height: math.unit(10, "cm"),
  8399. form: "true-fae",
  8400. default: true
  8401. },
  8402. ],
  8403. {
  8404. "liom": {
  8405. name: "Liom"
  8406. },
  8407. "plush": {
  8408. name: "Plush"
  8409. },
  8410. "fae": {
  8411. name: "Fae Fox",
  8412. default: true
  8413. },
  8414. "true-fae": {
  8415. name: "True Fae",
  8416. },
  8417. }
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(2, "meters"),
  8424. weight: math.unit(350, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/regal/front.svg"
  8428. }
  8429. },
  8430. back: {
  8431. height: math.unit(2, "meters"),
  8432. weight: math.unit(350, "lbs"),
  8433. name: "Back",
  8434. image: {
  8435. source: "./media/characters/regal/back.svg"
  8436. }
  8437. },
  8438. },
  8439. [
  8440. {
  8441. name: "Macro",
  8442. height: math.unit(350, "feet"),
  8443. default: true
  8444. }
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8449. {
  8450. standing: {
  8451. height: math.unit(4 + 11/12, "feet"),
  8452. weight: math.unit(100, "lb"),
  8453. name: "Standing",
  8454. image: {
  8455. source: "./media/characters/opal/standing.svg",
  8456. extra: 1588/1513,
  8457. bottom: 23/1611
  8458. }
  8459. },
  8460. sitting: {
  8461. height: math.unit(2.3, "feet"),
  8462. weight: math.unit(100, "lb"),
  8463. name: "Sitting",
  8464. image: {
  8465. source: "./media/characters/opal/sitting.svg",
  8466. extra: 1031/892,
  8467. bottom: 142/1173
  8468. }
  8469. },
  8470. hand: {
  8471. height: math.unit(0.59, "feet"),
  8472. name: "Hand",
  8473. image: {
  8474. source: "./media/characters/opal/hand.svg"
  8475. }
  8476. },
  8477. foot: {
  8478. height: math.unit(0.61, "feet"),
  8479. name: "Foot",
  8480. image: {
  8481. source: "./media/characters/opal/foot.svg"
  8482. }
  8483. },
  8484. },
  8485. [
  8486. {
  8487. name: "Small",
  8488. height: math.unit(4 + 11 / 12, "feet")
  8489. },
  8490. {
  8491. name: "Normal",
  8492. height: math.unit(20, "feet"),
  8493. default: true
  8494. },
  8495. {
  8496. name: "Macro",
  8497. height: math.unit(120, "feet")
  8498. },
  8499. {
  8500. name: "Megamacro",
  8501. height: math.unit(80, "miles")
  8502. },
  8503. {
  8504. name: "True Size",
  8505. height: math.unit(100000, "lightyears")
  8506. },
  8507. ]
  8508. ))
  8509. characterMakers.push(() => makeCharacter(
  8510. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8511. {
  8512. front: {
  8513. height: math.unit(6, "feet"),
  8514. weight: math.unit(200, "lbs"),
  8515. name: "Front",
  8516. image: {
  8517. source: "./media/characters/vector-wuff/front.svg"
  8518. }
  8519. }
  8520. },
  8521. [
  8522. {
  8523. name: "Normal",
  8524. height: math.unit(2.8, "meters")
  8525. },
  8526. {
  8527. name: "Macro",
  8528. height: math.unit(450, "meters"),
  8529. default: true
  8530. },
  8531. {
  8532. name: "Megamacro",
  8533. height: math.unit(15, "kilometers")
  8534. }
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8539. {
  8540. front: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(256, "lbs"),
  8543. name: "Front",
  8544. image: {
  8545. source: "./media/characters/dannik/front.svg"
  8546. }
  8547. }
  8548. },
  8549. [
  8550. {
  8551. name: "Macro",
  8552. height: math.unit(69.57, "meters"),
  8553. default: true
  8554. },
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8559. {
  8560. front: {
  8561. height: math.unit(6, "feet"),
  8562. weight: math.unit(120, "lbs"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/azura-saharah/front.svg"
  8566. }
  8567. },
  8568. back: {
  8569. height: math.unit(6, "feet"),
  8570. weight: math.unit(120, "lbs"),
  8571. name: "Back",
  8572. image: {
  8573. source: "./media/characters/azura-saharah/back.svg"
  8574. }
  8575. },
  8576. },
  8577. [
  8578. {
  8579. name: "Macro",
  8580. height: math.unit(100, "feet"),
  8581. default: true
  8582. },
  8583. ]
  8584. ))
  8585. characterMakers.push(() => makeCharacter(
  8586. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8587. {
  8588. side: {
  8589. height: math.unit(5 + 4 / 12, "feet"),
  8590. weight: math.unit(163, "lbs"),
  8591. name: "Side",
  8592. image: {
  8593. source: "./media/characters/kennedy/side.svg"
  8594. }
  8595. }
  8596. },
  8597. [
  8598. {
  8599. name: "Standard Doggo",
  8600. height: math.unit(5 + 4 / 12, "feet")
  8601. },
  8602. {
  8603. name: "Big Doggo",
  8604. height: math.unit(25 + 3 / 12, "feet"),
  8605. default: true
  8606. },
  8607. ]
  8608. ))
  8609. characterMakers.push(() => makeCharacter(
  8610. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8611. {
  8612. front: {
  8613. height: math.unit(5 + 5/12, "feet"),
  8614. weight: math.unit(100, "lbs"),
  8615. name: "Front",
  8616. image: {
  8617. source: "./media/characters/odios-de-lunar/front.svg",
  8618. extra: 1468/1323,
  8619. bottom: 22/1490
  8620. }
  8621. }
  8622. },
  8623. [
  8624. {
  8625. name: "Micro",
  8626. height: math.unit(3, "inches")
  8627. },
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(5.5, "feet"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(100, "feet")
  8636. },
  8637. ]
  8638. ))
  8639. characterMakers.push(() => makeCharacter(
  8640. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8641. {
  8642. back: {
  8643. height: math.unit(6, "feet"),
  8644. weight: math.unit(220, "lbs"),
  8645. name: "Back",
  8646. image: {
  8647. source: "./media/characters/mandake/back.svg"
  8648. }
  8649. }
  8650. },
  8651. [
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(7, "feet"),
  8655. default: true
  8656. },
  8657. {
  8658. name: "Macro",
  8659. height: math.unit(78, "feet")
  8660. },
  8661. {
  8662. name: "Macro+",
  8663. height: math.unit(300, "meters")
  8664. },
  8665. {
  8666. name: "Macro++",
  8667. height: math.unit(2400, "feet")
  8668. },
  8669. {
  8670. name: "Megamacro",
  8671. height: math.unit(5167, "meters")
  8672. },
  8673. {
  8674. name: "Gigamacro",
  8675. height: math.unit(41769, "miles")
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(6, "feet"),
  8684. weight: math.unit(120, "lbs"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/yozey/front.svg"
  8688. }
  8689. },
  8690. frontAlt: {
  8691. height: math.unit(6, "feet"),
  8692. weight: math.unit(120, "lbs"),
  8693. name: "Front (Alt)",
  8694. image: {
  8695. source: "./media/characters/yozey/front-alt.svg"
  8696. }
  8697. },
  8698. side: {
  8699. height: math.unit(6, "feet"),
  8700. weight: math.unit(120, "lbs"),
  8701. name: "Side",
  8702. image: {
  8703. source: "./media/characters/yozey/side.svg"
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Micro",
  8710. height: math.unit(3, "inches"),
  8711. default: true
  8712. },
  8713. {
  8714. name: "Normal",
  8715. height: math.unit(6, "feet")
  8716. }
  8717. ]
  8718. ))
  8719. characterMakers.push(() => makeCharacter(
  8720. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8721. {
  8722. front: {
  8723. height: math.unit(6, "feet"),
  8724. weight: math.unit(103, "lbs"),
  8725. name: "Front",
  8726. image: {
  8727. source: "./media/characters/valeska-voss/front.svg"
  8728. }
  8729. }
  8730. },
  8731. [
  8732. {
  8733. name: "Mini-Sized Sub",
  8734. height: math.unit(3.1, "inches")
  8735. },
  8736. {
  8737. name: "Mid-Sized Sub",
  8738. height: math.unit(6.2, "inches")
  8739. },
  8740. {
  8741. name: "Full-Sized Sub",
  8742. height: math.unit(9.3, "inches")
  8743. },
  8744. {
  8745. name: "Normal",
  8746. height: math.unit(5 + 2 / 12, "foot"),
  8747. default: true
  8748. },
  8749. ]
  8750. ))
  8751. characterMakers.push(() => makeCharacter(
  8752. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8753. {
  8754. front: {
  8755. height: math.unit(6, "feet"),
  8756. weight: math.unit(160, "lbs"),
  8757. name: "Front",
  8758. image: {
  8759. source: "./media/characters/gene-zeta/front.svg",
  8760. extra: 3006 / 2826,
  8761. bottom: 182 / 3188
  8762. }
  8763. }
  8764. },
  8765. [
  8766. {
  8767. name: "Micro",
  8768. height: math.unit(6, "inches")
  8769. },
  8770. {
  8771. name: "Normal",
  8772. height: math.unit(5 + 11 / 12, "foot"),
  8773. default: true
  8774. },
  8775. {
  8776. name: "Macro",
  8777. height: math.unit(140, "feet")
  8778. },
  8779. {
  8780. name: "Supercharged",
  8781. height: math.unit(2500, "feet")
  8782. },
  8783. ]
  8784. ))
  8785. characterMakers.push(() => makeCharacter(
  8786. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8787. {
  8788. front: {
  8789. height: math.unit(6, "feet"),
  8790. weight: math.unit(350, "lbs"),
  8791. name: "Front",
  8792. image: {
  8793. source: "./media/characters/razinox/front.svg",
  8794. extra: 1686 / 1548,
  8795. bottom: 28.2 / 1868
  8796. }
  8797. },
  8798. back: {
  8799. height: math.unit(6, "feet"),
  8800. weight: math.unit(350, "lbs"),
  8801. name: "Back",
  8802. image: {
  8803. source: "./media/characters/razinox/back.svg",
  8804. extra: 1660 / 1590,
  8805. bottom: 15 / 1665
  8806. }
  8807. },
  8808. },
  8809. [
  8810. {
  8811. name: "Normal",
  8812. height: math.unit(10 + 8 / 12, "foot")
  8813. },
  8814. {
  8815. name: "Minimacro",
  8816. height: math.unit(15, "foot")
  8817. },
  8818. {
  8819. name: "Macro",
  8820. height: math.unit(60, "foot"),
  8821. default: true
  8822. },
  8823. {
  8824. name: "Megamacro",
  8825. height: math.unit(5, "miles")
  8826. },
  8827. {
  8828. name: "Gigamacro",
  8829. height: math.unit(6000, "miles")
  8830. },
  8831. ]
  8832. ))
  8833. characterMakers.push(() => makeCharacter(
  8834. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8835. {
  8836. front: {
  8837. height: math.unit(6, "feet"),
  8838. weight: math.unit(150, "lbs"),
  8839. name: "Front",
  8840. image: {
  8841. source: "./media/characters/cobalt/front.svg"
  8842. }
  8843. }
  8844. },
  8845. [
  8846. {
  8847. name: "Normal",
  8848. height: math.unit(8 + 1 / 12, "foot")
  8849. },
  8850. {
  8851. name: "Macro",
  8852. height: math.unit(111, "foot"),
  8853. default: true
  8854. },
  8855. {
  8856. name: "Supracosmic",
  8857. height: math.unit(1e42, "feet")
  8858. },
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8863. {
  8864. front: {
  8865. height: math.unit(5, "inches"),
  8866. name: "Front",
  8867. image: {
  8868. source: "./media/characters/amanda/front.svg",
  8869. extra: 926/791,
  8870. bottom: 38/964
  8871. }
  8872. },
  8873. back: {
  8874. height: math.unit(5, "inches"),
  8875. name: "Back",
  8876. image: {
  8877. source: "./media/characters/amanda/back.svg",
  8878. extra: 909/805,
  8879. bottom: 43/952
  8880. }
  8881. },
  8882. },
  8883. [
  8884. {
  8885. name: "Micro",
  8886. height: math.unit(5, "inches"),
  8887. default: true
  8888. },
  8889. ]
  8890. ))
  8891. characterMakers.push(() => makeCharacter(
  8892. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8893. {
  8894. front: {
  8895. height: math.unit(2.75, "meters"),
  8896. weight: math.unit(1200, "lb"),
  8897. name: "Front",
  8898. image: {
  8899. source: "./media/characters/teal/front.svg",
  8900. extra: 2463 / 2320,
  8901. bottom: 166 / 2629
  8902. }
  8903. },
  8904. back: {
  8905. height: math.unit(2.75, "meters"),
  8906. weight: math.unit(1200, "lb"),
  8907. name: "Back",
  8908. image: {
  8909. source: "./media/characters/teal/back.svg",
  8910. extra: 2580 / 2489,
  8911. bottom: 151 / 2731
  8912. }
  8913. },
  8914. sitting: {
  8915. height: math.unit(1.9, "meters"),
  8916. weight: math.unit(1200, "lb"),
  8917. name: "Sitting",
  8918. image: {
  8919. source: "./media/characters/teal/sitting.svg",
  8920. extra: 623 / 590,
  8921. bottom: 121 / 744
  8922. }
  8923. },
  8924. standing: {
  8925. height: math.unit(2.75, "meters"),
  8926. weight: math.unit(1200, "lb"),
  8927. name: "Standing",
  8928. image: {
  8929. source: "./media/characters/teal/standing.svg",
  8930. extra: 923 / 893,
  8931. bottom: 60 / 983
  8932. }
  8933. },
  8934. stretching: {
  8935. height: math.unit(3.65, "meters"),
  8936. weight: math.unit(1200, "lb"),
  8937. name: "Stretching",
  8938. image: {
  8939. source: "./media/characters/teal/stretching.svg",
  8940. extra: 1276 / 1244,
  8941. bottom: 0 / 1276
  8942. }
  8943. },
  8944. legged: {
  8945. height: math.unit(1.3, "meters"),
  8946. weight: math.unit(100, "lb"),
  8947. name: "Legged",
  8948. image: {
  8949. source: "./media/characters/teal/legged.svg",
  8950. extra: 462 / 437,
  8951. bottom: 24 / 486
  8952. }
  8953. },
  8954. naga: {
  8955. height: math.unit(5.4, "meters"),
  8956. weight: math.unit(4000, "lb"),
  8957. name: "Naga",
  8958. image: {
  8959. source: "./media/characters/teal/naga.svg",
  8960. extra: 1902 / 1858,
  8961. bottom: 0 / 1902
  8962. }
  8963. },
  8964. hand: {
  8965. height: math.unit(0.52, "meters"),
  8966. name: "Hand",
  8967. image: {
  8968. source: "./media/characters/teal/hand.svg"
  8969. }
  8970. },
  8971. maw: {
  8972. height: math.unit(0.43, "meters"),
  8973. name: "Maw",
  8974. image: {
  8975. source: "./media/characters/teal/maw.svg"
  8976. }
  8977. },
  8978. slit: {
  8979. height: math.unit(0.25, "meters"),
  8980. name: "Slit",
  8981. image: {
  8982. source: "./media/characters/teal/slit.svg"
  8983. }
  8984. },
  8985. },
  8986. [
  8987. {
  8988. name: "Normal",
  8989. height: math.unit(2.75, "meters"),
  8990. default: true
  8991. },
  8992. {
  8993. name: "Macro",
  8994. height: math.unit(300, "feet")
  8995. },
  8996. {
  8997. name: "Macro+",
  8998. height: math.unit(2000, "feet")
  8999. },
  9000. ]
  9001. ))
  9002. characterMakers.push(() => makeCharacter(
  9003. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  9004. {
  9005. frontCat: {
  9006. height: math.unit(6, "feet"),
  9007. weight: math.unit(180, "lbs"),
  9008. name: "Front (Cat)",
  9009. image: {
  9010. source: "./media/characters/ravin-amulet/front-cat.svg"
  9011. }
  9012. },
  9013. frontCatAlt: {
  9014. height: math.unit(6, "feet"),
  9015. weight: math.unit(180, "lbs"),
  9016. name: "Front (Alt, Cat)",
  9017. image: {
  9018. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  9019. }
  9020. },
  9021. frontWerewolf: {
  9022. height: math.unit(6 * 1.2, "feet"),
  9023. weight: math.unit(225, "lbs"),
  9024. name: "Front (Werewolf)",
  9025. image: {
  9026. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  9027. }
  9028. },
  9029. backWerewolf: {
  9030. height: math.unit(6 * 1.2, "feet"),
  9031. weight: math.unit(225, "lbs"),
  9032. name: "Back (Werewolf)",
  9033. image: {
  9034. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  9035. }
  9036. },
  9037. },
  9038. [
  9039. {
  9040. name: "Nano",
  9041. height: math.unit(1, "micrometer")
  9042. },
  9043. {
  9044. name: "Micro",
  9045. height: math.unit(1, "inch")
  9046. },
  9047. {
  9048. name: "Normal",
  9049. height: math.unit(6, "feet"),
  9050. default: true
  9051. },
  9052. {
  9053. name: "Macro",
  9054. height: math.unit(60, "feet")
  9055. }
  9056. ]
  9057. ))
  9058. characterMakers.push(() => makeCharacter(
  9059. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  9060. {
  9061. front: {
  9062. height: math.unit(6, "feet"),
  9063. weight: math.unit(165, "lbs"),
  9064. name: "Front",
  9065. image: {
  9066. source: "./media/characters/fluoresce/front.svg"
  9067. }
  9068. }
  9069. },
  9070. [
  9071. {
  9072. name: "Micro",
  9073. height: math.unit(6, "cm")
  9074. },
  9075. {
  9076. name: "Normal",
  9077. height: math.unit(5 + 7 / 12, "feet"),
  9078. default: true
  9079. },
  9080. {
  9081. name: "Macro",
  9082. height: math.unit(56, "feet")
  9083. },
  9084. {
  9085. name: "Megamacro",
  9086. height: math.unit(1.9, "miles")
  9087. },
  9088. ]
  9089. ))
  9090. characterMakers.push(() => makeCharacter(
  9091. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9092. {
  9093. front: {
  9094. height: math.unit(9 + 6 / 12, "feet"),
  9095. weight: math.unit(523, "lbs"),
  9096. name: "Side",
  9097. image: {
  9098. source: "./media/characters/aurora/side.svg",
  9099. extra: 474/393,
  9100. bottom: 5/479
  9101. }
  9102. }
  9103. },
  9104. [
  9105. {
  9106. name: "Normal",
  9107. height: math.unit(9 + 6 / 12, "feet")
  9108. },
  9109. {
  9110. name: "Macro",
  9111. height: math.unit(96, "feet"),
  9112. default: true
  9113. },
  9114. {
  9115. name: "Macro+",
  9116. height: math.unit(243, "feet")
  9117. },
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(194, "cm"),
  9125. weight: math.unit(90, "kg"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/ranek/front.svg",
  9129. extra: 1862/1791,
  9130. bottom: 80/1942
  9131. }
  9132. },
  9133. back: {
  9134. height: math.unit(194, "cm"),
  9135. weight: math.unit(90, "kg"),
  9136. name: "Back",
  9137. image: {
  9138. source: "./media/characters/ranek/back.svg",
  9139. extra: 1853/1787,
  9140. bottom: 74/1927
  9141. }
  9142. },
  9143. feral: {
  9144. height: math.unit(30, "cm"),
  9145. weight: math.unit(1.6, "lbs"),
  9146. name: "Feral",
  9147. image: {
  9148. source: "./media/characters/ranek/feral.svg",
  9149. extra: 990/631,
  9150. bottom: 29/1019
  9151. }
  9152. },
  9153. },
  9154. [
  9155. {
  9156. name: "Normal",
  9157. height: math.unit(194, "cm"),
  9158. default: true
  9159. },
  9160. {
  9161. name: "Macro",
  9162. height: math.unit(100, "meters")
  9163. },
  9164. ]
  9165. ))
  9166. characterMakers.push(() => makeCharacter(
  9167. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9168. {
  9169. front: {
  9170. height: math.unit(5 + 6 / 12, "feet"),
  9171. weight: math.unit(153, "lbs"),
  9172. name: "Front",
  9173. image: {
  9174. source: "./media/characters/andrew-cooper/front.svg"
  9175. }
  9176. },
  9177. },
  9178. [
  9179. {
  9180. name: "Nano",
  9181. height: math.unit(1, "mm")
  9182. },
  9183. {
  9184. name: "Micro",
  9185. height: math.unit(2, "inches")
  9186. },
  9187. {
  9188. name: "Normal",
  9189. height: math.unit(5 + 6 / 12, "feet"),
  9190. default: true
  9191. }
  9192. ]
  9193. ))
  9194. characterMakers.push(() => makeCharacter(
  9195. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9196. {
  9197. front: {
  9198. height: math.unit(6, "feet"),
  9199. weight: math.unit(180, "lbs"),
  9200. name: "Front",
  9201. image: {
  9202. source: "./media/characters/akane-sato/front.svg",
  9203. extra: 1219 / 1140
  9204. }
  9205. },
  9206. back: {
  9207. height: math.unit(6, "feet"),
  9208. weight: math.unit(180, "lbs"),
  9209. name: "Back",
  9210. image: {
  9211. source: "./media/characters/akane-sato/back.svg",
  9212. extra: 1219 / 1170
  9213. }
  9214. },
  9215. },
  9216. [
  9217. {
  9218. name: "Normal",
  9219. height: math.unit(2.5, "meters")
  9220. },
  9221. {
  9222. name: "Macro",
  9223. height: math.unit(250, "meters"),
  9224. default: true
  9225. },
  9226. {
  9227. name: "Megamacro",
  9228. height: math.unit(25, "km")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9234. {
  9235. front: {
  9236. height: math.unit(6, "feet"),
  9237. weight: math.unit(65, "kg"),
  9238. name: "Front",
  9239. image: {
  9240. source: "./media/characters/rook/front.svg",
  9241. extra: 960 / 950
  9242. }
  9243. }
  9244. },
  9245. [
  9246. {
  9247. name: "Normal",
  9248. height: math.unit(8.8, "feet")
  9249. },
  9250. {
  9251. name: "Macro",
  9252. height: math.unit(88, "feet"),
  9253. default: true
  9254. },
  9255. {
  9256. name: "Megamacro",
  9257. height: math.unit(8, "miles")
  9258. },
  9259. ]
  9260. ))
  9261. characterMakers.push(() => makeCharacter(
  9262. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9263. {
  9264. front: {
  9265. height: math.unit(12 + 2 / 12, "feet"),
  9266. weight: math.unit(808, "lbs"),
  9267. name: "Front",
  9268. image: {
  9269. source: "./media/characters/prodigy/front.svg"
  9270. }
  9271. }
  9272. },
  9273. [
  9274. {
  9275. name: "Normal",
  9276. height: math.unit(12 + 2 / 12, "feet"),
  9277. default: true
  9278. },
  9279. {
  9280. name: "Macro",
  9281. height: math.unit(143, "feet")
  9282. },
  9283. {
  9284. name: "Macro+",
  9285. height: math.unit(400, "feet")
  9286. },
  9287. ]
  9288. ))
  9289. characterMakers.push(() => makeCharacter(
  9290. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9291. {
  9292. front: {
  9293. height: math.unit(6, "feet"),
  9294. weight: math.unit(225, "lbs"),
  9295. name: "Front",
  9296. image: {
  9297. source: "./media/characters/daniel/front.svg"
  9298. }
  9299. },
  9300. leaning: {
  9301. height: math.unit(6, "feet"),
  9302. weight: math.unit(225, "lbs"),
  9303. name: "Leaning",
  9304. image: {
  9305. source: "./media/characters/daniel/leaning.svg"
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Macro",
  9312. height: math.unit(1000, "feet"),
  9313. default: true
  9314. },
  9315. ]
  9316. ))
  9317. characterMakers.push(() => makeCharacter(
  9318. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9319. {
  9320. front: {
  9321. height: math.unit(6, "feet"),
  9322. weight: math.unit(88, "lbs"),
  9323. name: "Front",
  9324. image: {
  9325. source: "./media/characters/chiros/front.svg",
  9326. extra: 306 / 226
  9327. }
  9328. },
  9329. side: {
  9330. height: math.unit(6, "feet"),
  9331. weight: math.unit(88, "lbs"),
  9332. name: "Side",
  9333. image: {
  9334. source: "./media/characters/chiros/side.svg",
  9335. extra: 306 / 226
  9336. }
  9337. },
  9338. },
  9339. [
  9340. {
  9341. name: "Normal",
  9342. height: math.unit(6, "cm"),
  9343. default: true
  9344. },
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9349. {
  9350. front: {
  9351. height: math.unit(6, "feet"),
  9352. weight: math.unit(100, "lbs"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/selka/front.svg",
  9356. extra: 947 / 887
  9357. }
  9358. }
  9359. },
  9360. [
  9361. {
  9362. name: "Normal",
  9363. height: math.unit(5, "cm"),
  9364. default: true
  9365. },
  9366. ]
  9367. ))
  9368. characterMakers.push(() => makeCharacter(
  9369. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9370. {
  9371. front: {
  9372. height: math.unit(8 + 3 / 12, "feet"),
  9373. weight: math.unit(424, "lbs"),
  9374. name: "Front",
  9375. image: {
  9376. source: "./media/characters/verin/front.svg",
  9377. extra: 1845 / 1550
  9378. }
  9379. },
  9380. frontArmored: {
  9381. height: math.unit(8 + 3 / 12, "feet"),
  9382. weight: math.unit(424, "lbs"),
  9383. name: "Front (Armored)",
  9384. image: {
  9385. source: "./media/characters/verin/front-armor.svg",
  9386. extra: 1845 / 1550,
  9387. bottom: 0.01
  9388. }
  9389. },
  9390. back: {
  9391. height: math.unit(8 + 3 / 12, "feet"),
  9392. weight: math.unit(424, "lbs"),
  9393. name: "Back",
  9394. image: {
  9395. source: "./media/characters/verin/back.svg",
  9396. bottom: 0.1,
  9397. extra: 1
  9398. }
  9399. },
  9400. foot: {
  9401. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9402. name: "Foot",
  9403. image: {
  9404. source: "./media/characters/verin/foot.svg"
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Normal",
  9411. height: math.unit(8 + 3 / 12, "feet")
  9412. },
  9413. {
  9414. name: "Minimacro",
  9415. height: math.unit(21, "feet"),
  9416. default: true
  9417. },
  9418. {
  9419. name: "Macro",
  9420. height: math.unit(626, "feet")
  9421. },
  9422. ]
  9423. ))
  9424. characterMakers.push(() => makeCharacter(
  9425. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9426. {
  9427. front: {
  9428. height: math.unit(2.718, "meters"),
  9429. weight: math.unit(150, "lbs"),
  9430. name: "Front",
  9431. image: {
  9432. source: "./media/characters/sovrim-terraquian/front.svg",
  9433. extra: 1752/1689,
  9434. bottom: 36/1788
  9435. }
  9436. },
  9437. back: {
  9438. height: math.unit(2.718, "meters"),
  9439. weight: math.unit(150, "lbs"),
  9440. name: "Back",
  9441. image: {
  9442. source: "./media/characters/sovrim-terraquian/back.svg",
  9443. extra: 1698/1657,
  9444. bottom: 58/1756
  9445. }
  9446. },
  9447. tongue: {
  9448. height: math.unit(2.865, "feet"),
  9449. name: "Tongue",
  9450. image: {
  9451. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9452. }
  9453. },
  9454. hand: {
  9455. height: math.unit(1.61, "feet"),
  9456. name: "Hand",
  9457. image: {
  9458. source: "./media/characters/sovrim-terraquian/hand.svg"
  9459. }
  9460. },
  9461. foot: {
  9462. height: math.unit(1.05, "feet"),
  9463. name: "Foot",
  9464. image: {
  9465. source: "./media/characters/sovrim-terraquian/foot.svg"
  9466. }
  9467. },
  9468. footAlt: {
  9469. height: math.unit(0.88, "feet"),
  9470. name: "Foot (Alt)",
  9471. image: {
  9472. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9473. }
  9474. },
  9475. },
  9476. [
  9477. {
  9478. name: "Micro",
  9479. height: math.unit(2, "inches")
  9480. },
  9481. {
  9482. name: "Small",
  9483. height: math.unit(1, "meter")
  9484. },
  9485. {
  9486. name: "Normal",
  9487. height: math.unit(Math.E, "meters"),
  9488. default: true
  9489. },
  9490. {
  9491. name: "Macro",
  9492. height: math.unit(20, "meters")
  9493. },
  9494. {
  9495. name: "Macro+",
  9496. height: math.unit(400, "meters")
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9502. {
  9503. front: {
  9504. height: math.unit(7, "feet"),
  9505. weight: math.unit(489, "lbs"),
  9506. name: "Front",
  9507. image: {
  9508. source: "./media/characters/reece-silvermane/front.svg",
  9509. bottom: 0.02,
  9510. extra: 1
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Macro",
  9517. height: math.unit(1.5, "miles"),
  9518. default: true
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(6, "feet"),
  9527. weight: math.unit(78, "kg"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/kane/front.svg",
  9531. extra: 978 / 899
  9532. }
  9533. },
  9534. back: {
  9535. height: math.unit(6, "feet"),
  9536. weight: math.unit(78, "kg"),
  9537. name: "Back",
  9538. image: {
  9539. source: "./media/characters/kane/back.svg",
  9540. extra: 1966/1800,
  9541. bottom: 0/1966
  9542. }
  9543. },
  9544. head: {
  9545. height: math.unit(1.4, "feet"),
  9546. name: "Head",
  9547. image: {
  9548. source: "./media/characters/kane/head.svg"
  9549. }
  9550. },
  9551. },
  9552. [
  9553. {
  9554. name: "Normal",
  9555. height: math.unit(2.1, "m"),
  9556. },
  9557. {
  9558. name: "Macro",
  9559. height: math.unit(1, "km"),
  9560. default: true
  9561. },
  9562. ]
  9563. ))
  9564. characterMakers.push(() => makeCharacter(
  9565. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9566. {
  9567. frontSfw: {
  9568. name: "Front (SFW)",
  9569. height: math.unit(6 + 3/12, "feet"),
  9570. weight: math.unit(200, "kg"),
  9571. image: {
  9572. source: "./media/characters/tegon/front-sfw.svg",
  9573. extra: 1105/1087,
  9574. bottom: 86/1191
  9575. }
  9576. },
  9577. backSfw: {
  9578. name: "Back (SFW)",
  9579. height: math.unit(6 + 3/12, "feet"),
  9580. weight: math.unit(200, "kg"),
  9581. image: {
  9582. source: "./media/characters/tegon/back-sfw.svg",
  9583. extra: 1107/1087,
  9584. bottom: 21/1128
  9585. }
  9586. },
  9587. frontNsfw: {
  9588. name: "Front (NSFW)",
  9589. height: math.unit(6 + 3/12, "feet"),
  9590. weight: math.unit(200, "kg"),
  9591. image: {
  9592. source: "./media/characters/tegon/front-nsfw.svg",
  9593. extra: 1105/1087,
  9594. bottom: 86/1191
  9595. }
  9596. },
  9597. maw: {
  9598. height: math.unit(1.23, "feet"),
  9599. name: "Maw",
  9600. image: {
  9601. source: "./media/characters/tegon/maw.svg"
  9602. }
  9603. },
  9604. dick: {
  9605. height: math.unit(1.18, "feet"),
  9606. name: "Dick",
  9607. image: {
  9608. source: "./media/characters/tegon/dick.svg"
  9609. }
  9610. },
  9611. },
  9612. [
  9613. {
  9614. name: "Micro",
  9615. height: math.unit(1, "inch")
  9616. },
  9617. {
  9618. name: "Normal",
  9619. height: math.unit(6 + 3 / 12, "feet"),
  9620. default: true
  9621. },
  9622. {
  9623. name: "Macro",
  9624. height: math.unit(300, "feet")
  9625. },
  9626. {
  9627. name: "Megamacro",
  9628. height: math.unit(69, "miles")
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9634. {
  9635. side: {
  9636. height: math.unit(6, "feet"),
  9637. weight: math.unit(2304, "lbs"),
  9638. name: "Side",
  9639. image: {
  9640. source: "./media/characters/arcturax/side.svg",
  9641. extra: 790 / 376,
  9642. bottom: 0.01
  9643. }
  9644. },
  9645. },
  9646. [
  9647. {
  9648. name: "Micro",
  9649. height: math.unit(2, "inch")
  9650. },
  9651. {
  9652. name: "Normal",
  9653. height: math.unit(6, "feet")
  9654. },
  9655. {
  9656. name: "Macro",
  9657. height: math.unit(39, "feet"),
  9658. default: true
  9659. },
  9660. {
  9661. name: "Megamacro",
  9662. height: math.unit(7, "miles")
  9663. },
  9664. ]
  9665. ))
  9666. characterMakers.push(() => makeCharacter(
  9667. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9668. {
  9669. front: {
  9670. height: math.unit(6, "feet"),
  9671. weight: math.unit(50, "lbs"),
  9672. name: "Front",
  9673. image: {
  9674. source: "./media/characters/sentri/front.svg",
  9675. extra: 1750 / 1570,
  9676. bottom: 0.025
  9677. }
  9678. },
  9679. frontAlt: {
  9680. height: math.unit(6, "feet"),
  9681. weight: math.unit(50, "lbs"),
  9682. name: "Front (Alt)",
  9683. image: {
  9684. source: "./media/characters/sentri/front-alt.svg",
  9685. extra: 1750 / 1570,
  9686. bottom: 0.025
  9687. }
  9688. },
  9689. },
  9690. [
  9691. {
  9692. name: "Normal",
  9693. height: math.unit(15, "feet"),
  9694. default: true
  9695. },
  9696. {
  9697. name: "Macro",
  9698. height: math.unit(2500, "feet")
  9699. }
  9700. ]
  9701. ))
  9702. characterMakers.push(() => makeCharacter(
  9703. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9704. {
  9705. front: {
  9706. height: math.unit(5 + 8 / 12, "feet"),
  9707. weight: math.unit(130, "lbs"),
  9708. name: "Front",
  9709. image: {
  9710. source: "./media/characters/corvin/front.svg",
  9711. extra: 1803 / 1629
  9712. }
  9713. },
  9714. frontShirt: {
  9715. height: math.unit(5 + 8 / 12, "feet"),
  9716. weight: math.unit(130, "lbs"),
  9717. name: "Front (Shirt)",
  9718. image: {
  9719. source: "./media/characters/corvin/front-shirt.svg",
  9720. extra: 1803 / 1629
  9721. }
  9722. },
  9723. frontPoncho: {
  9724. height: math.unit(5 + 8 / 12, "feet"),
  9725. weight: math.unit(130, "lbs"),
  9726. name: "Front (Poncho)",
  9727. image: {
  9728. source: "./media/characters/corvin/front-poncho.svg",
  9729. extra: 1803 / 1629
  9730. }
  9731. },
  9732. side: {
  9733. height: math.unit(5 + 8 / 12, "feet"),
  9734. weight: math.unit(130, "lbs"),
  9735. name: "Side",
  9736. image: {
  9737. source: "./media/characters/corvin/side.svg",
  9738. extra: 1012 / 945
  9739. }
  9740. },
  9741. back: {
  9742. height: math.unit(5 + 8 / 12, "feet"),
  9743. weight: math.unit(130, "lbs"),
  9744. name: "Back",
  9745. image: {
  9746. source: "./media/characters/corvin/back.svg",
  9747. extra: 1803 / 1629
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Micro",
  9754. height: math.unit(3, "inches")
  9755. },
  9756. {
  9757. name: "Normal",
  9758. height: math.unit(5 + 8 / 12, "feet")
  9759. },
  9760. {
  9761. name: "Macro",
  9762. height: math.unit(300, "feet"),
  9763. default: true
  9764. },
  9765. {
  9766. name: "Megamacro",
  9767. height: math.unit(500, "miles")
  9768. }
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9773. {
  9774. front: {
  9775. height: math.unit(6, "feet"),
  9776. weight: math.unit(135, "lbs"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/q/front.svg",
  9780. extra: 854 / 752,
  9781. bottom: 0.005
  9782. }
  9783. },
  9784. back: {
  9785. height: math.unit(6, "feet"),
  9786. weight: math.unit(130, "lbs"),
  9787. name: "Back",
  9788. image: {
  9789. source: "./media/characters/q/back.svg",
  9790. extra: 854 / 752
  9791. }
  9792. },
  9793. },
  9794. [
  9795. {
  9796. name: "Macro",
  9797. height: math.unit(90, "feet"),
  9798. default: true
  9799. },
  9800. {
  9801. name: "Extra Macro",
  9802. height: math.unit(300, "feet"),
  9803. },
  9804. {
  9805. name: "BIG WALF",
  9806. height: math.unit(750, "feet"),
  9807. },
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9812. {
  9813. front: {
  9814. height: math.unit(3, "feet"),
  9815. weight: math.unit(28, "lbs"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/citrine/front.svg"
  9819. }
  9820. }
  9821. },
  9822. [
  9823. {
  9824. name: "Normal",
  9825. height: math.unit(3, "feet"),
  9826. default: true
  9827. }
  9828. ]
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9832. {
  9833. front: {
  9834. height: math.unit(14, "feet"),
  9835. weight: math.unit(1450, "kg"),
  9836. preyCapacity: math.unit(15, "people"),
  9837. name: "Front",
  9838. image: {
  9839. source: "./media/characters/aura-starwind/front.svg",
  9840. extra: 1440/1327,
  9841. bottom: 11/1451
  9842. }
  9843. },
  9844. side: {
  9845. height: math.unit(14, "feet"),
  9846. weight: math.unit(1450, "kg"),
  9847. preyCapacity: math.unit(15, "people"),
  9848. name: "Side",
  9849. image: {
  9850. source: "./media/characters/aura-starwind/side.svg",
  9851. extra: 1654 / 1497
  9852. }
  9853. },
  9854. taur: {
  9855. height: math.unit(18, "feet"),
  9856. weight: math.unit(5500, "kg"),
  9857. preyCapacity: math.unit(50, "people"),
  9858. name: "Taur",
  9859. image: {
  9860. source: "./media/characters/aura-starwind/taur.svg",
  9861. extra: 1760 / 1650
  9862. }
  9863. },
  9864. feral: {
  9865. height: math.unit(46, "feet"),
  9866. weight: math.unit(25000, "kg"),
  9867. preyCapacity: math.unit(120, "people"),
  9868. name: "Feral",
  9869. image: {
  9870. source: "./media/characters/aura-starwind/feral.svg"
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Normal",
  9877. height: math.unit(14, "feet"),
  9878. default: true
  9879. },
  9880. {
  9881. name: "Macro",
  9882. height: math.unit(50, "meters")
  9883. },
  9884. {
  9885. name: "Megamacro",
  9886. height: math.unit(5000, "meters")
  9887. },
  9888. {
  9889. name: "Gigamacro",
  9890. height: math.unit(100000, "kilometers")
  9891. },
  9892. ]
  9893. ))
  9894. characterMakers.push(() => makeCharacter(
  9895. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9896. {
  9897. front: {
  9898. height: math.unit(2 + 7 / 12, "feet"),
  9899. weight: math.unit(32, "lbs"),
  9900. name: "Front",
  9901. image: {
  9902. source: "./media/characters/rivet/front.svg",
  9903. extra: 1716 / 1658,
  9904. bottom: 0.03
  9905. }
  9906. },
  9907. foot: {
  9908. height: math.unit(0.551, "feet"),
  9909. name: "Rivet's Foot",
  9910. image: {
  9911. source: "./media/characters/rivet/foot.svg"
  9912. },
  9913. rename: true
  9914. }
  9915. },
  9916. [
  9917. {
  9918. name: "Micro",
  9919. height: math.unit(1.5, "inches"),
  9920. },
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(2 + 7 / 12, "feet"),
  9924. default: true
  9925. },
  9926. {
  9927. name: "Macro",
  9928. height: math.unit(85, "feet")
  9929. },
  9930. {
  9931. name: "Megamacro",
  9932. height: math.unit(2.2, "km")
  9933. }
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(5 + 9 / 12, "feet"),
  9941. weight: math.unit(150, "lbs"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/coffee/front.svg",
  9945. extra: 946/880,
  9946. bottom: 66/1012
  9947. }
  9948. },
  9949. foot: {
  9950. height: math.unit(1.29, "feet"),
  9951. name: "Foot",
  9952. image: {
  9953. source: "./media/characters/coffee/foot.svg"
  9954. }
  9955. },
  9956. },
  9957. [
  9958. {
  9959. name: "Micro",
  9960. height: math.unit(2, "inches"),
  9961. },
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(5 + 9 / 12, "feet"),
  9965. default: true
  9966. },
  9967. {
  9968. name: "Macro",
  9969. height: math.unit(800, "feet")
  9970. },
  9971. {
  9972. name: "Megamacro",
  9973. height: math.unit(25, "miles")
  9974. }
  9975. ]
  9976. ))
  9977. characterMakers.push(() => makeCharacter(
  9978. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9979. {
  9980. front: {
  9981. height: math.unit(6, "feet"),
  9982. weight: math.unit(200, "lbs"),
  9983. name: "Front",
  9984. image: {
  9985. source: "./media/characters/chari-gal/front.svg",
  9986. extra: 735/649,
  9987. bottom: 55/790
  9988. },
  9989. form: "normal",
  9990. default: true
  9991. },
  9992. back: {
  9993. height: math.unit(6, "feet"),
  9994. weight: math.unit(200, "lb"),
  9995. name: "Back",
  9996. image: {
  9997. source: "./media/characters/chari-gal/back.svg",
  9998. extra: 762/666,
  9999. bottom: 31/793
  10000. },
  10001. form: "normal"
  10002. },
  10003. mouth: {
  10004. height: math.unit(1.35, "feet"),
  10005. name: "Mouth",
  10006. image: {
  10007. source: "./media/characters/chari-gal/mouth.svg"
  10008. },
  10009. form: "normal"
  10010. },
  10011. gigantamax: {
  10012. height: math.unit(6 * 16, "feet"),
  10013. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  10014. name: "Gigantamax",
  10015. image: {
  10016. source: "./media/characters/chari-gal/gigantamax-front.svg",
  10017. extra: 1507/1149,
  10018. bottom: 254/1761
  10019. },
  10020. form: "gigantamax",
  10021. default: true
  10022. },
  10023. },
  10024. [
  10025. {
  10026. name: "Normal",
  10027. height: math.unit(5 + 7 / 12, "feet"),
  10028. form: "normal",
  10029. },
  10030. {
  10031. name: "Macro",
  10032. height: math.unit(200, "feet"),
  10033. default: true,
  10034. form: "normal"
  10035. },
  10036. {
  10037. name: "Normal",
  10038. height: math.unit(16 * (5 + 7 / 12), "feet"),
  10039. form: "gigantamax",
  10040. },
  10041. {
  10042. name: "Macro",
  10043. height: math.unit(16 * 200, "feet"),
  10044. default: true,
  10045. form: "gigantamax"
  10046. },
  10047. ],
  10048. {
  10049. "normal": {
  10050. name: "Normal",
  10051. default: true
  10052. },
  10053. "gigantamax": {
  10054. name: "Gigantamax",
  10055. },
  10056. }
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  10060. {
  10061. front: {
  10062. height: math.unit(6, "feet"),
  10063. weight: math.unit(150, "lbs"),
  10064. name: "Front",
  10065. image: {
  10066. source: "./media/characters/nova/front.svg",
  10067. extra: 5000 / 4722,
  10068. bottom: 0.02
  10069. }
  10070. }
  10071. },
  10072. [
  10073. {
  10074. name: "Micro-",
  10075. height: math.unit(0.8, "inches")
  10076. },
  10077. {
  10078. name: "Micro",
  10079. height: math.unit(2, "inches"),
  10080. default: true
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  10086. {
  10087. koboldFront: {
  10088. height: math.unit(3 + 1 / 12, "feet"),
  10089. weight: math.unit(21.7, "lbs"),
  10090. name: "Front",
  10091. image: {
  10092. source: "./media/characters/argent/kobold-front.svg",
  10093. extra: 1471 / 1331,
  10094. bottom: 100.8 / 1575.5
  10095. },
  10096. form: "kobold",
  10097. default: true
  10098. },
  10099. dragonFront: {
  10100. height: math.unit(75, "inches"),
  10101. name: "Front",
  10102. image: {
  10103. source: "./media/characters/argent/dragon-front.svg",
  10104. extra: 1389/1248,
  10105. bottom: 54/1443
  10106. },
  10107. form: "dragon",
  10108. },
  10109. dragonBack: {
  10110. height: math.unit(75, "inches"),
  10111. name: "Back",
  10112. image: {
  10113. source: "./media/characters/argent/dragon-back.svg",
  10114. extra: 1399/1271,
  10115. bottom: 23/1422
  10116. },
  10117. form: "dragon",
  10118. },
  10119. dragonDressed: {
  10120. height: math.unit(75, "inches"),
  10121. name: "Dressed",
  10122. image: {
  10123. source: "./media/characters/argent/dragon-dressed.svg",
  10124. extra: 1350/1215,
  10125. bottom: 26/1376
  10126. },
  10127. form: "dragon"
  10128. },
  10129. dragonHead: {
  10130. height: math.unit(23.5, "inches"),
  10131. name: "Head",
  10132. image: {
  10133. source: "./media/characters/argent/dragon-head.svg"
  10134. },
  10135. form: "dragon",
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Micro",
  10141. height: math.unit(2, "inches"),
  10142. form: "kobold",
  10143. },
  10144. {
  10145. name: "Normal",
  10146. height: math.unit(3 + 1 / 12, "feet"),
  10147. form: "kobold",
  10148. default: true
  10149. },
  10150. {
  10151. name: "Macro",
  10152. height: math.unit(120, "feet"),
  10153. form: "kobold",
  10154. },
  10155. {
  10156. name: "Speck",
  10157. height: math.unit(1, "mm"),
  10158. form: "dragon",
  10159. },
  10160. {
  10161. name: "Tiny",
  10162. height: math.unit(1, "cm"),
  10163. form: "dragon",
  10164. },
  10165. {
  10166. name: "Micro",
  10167. height: math.unit(5, "cm"),
  10168. form: "dragon",
  10169. },
  10170. {
  10171. name: "Normal",
  10172. height: math.unit(75, "inches"),
  10173. form: "dragon",
  10174. default: true
  10175. },
  10176. {
  10177. name: "Extra Tall",
  10178. height: math.unit(9, "feet"),
  10179. form: "dragon",
  10180. },
  10181. {
  10182. name: "Inconvenient",
  10183. height: math.unit(5, "meters"),
  10184. form: "dragon",
  10185. },
  10186. {
  10187. name: "Macro",
  10188. height: math.unit(70, "meters"),
  10189. form: "dragon",
  10190. },
  10191. {
  10192. name: "Macro+",
  10193. height: math.unit(250, "meters"),
  10194. form: "dragon",
  10195. },
  10196. {
  10197. name: "Megamacro",
  10198. height: math.unit(20, "km"),
  10199. form: "dragon",
  10200. },
  10201. {
  10202. name: "Mountainous",
  10203. height: math.unit(100, "km"),
  10204. form: "dragon",
  10205. },
  10206. {
  10207. name: "Continental",
  10208. height: math.unit(2, "megameters"),
  10209. form: "dragon",
  10210. },
  10211. {
  10212. name: "Too Big",
  10213. height: math.unit(900, "megameters"),
  10214. form: "dragon",
  10215. },
  10216. ],
  10217. {
  10218. "kobold": {
  10219. name: "Kobold",
  10220. default: true
  10221. },
  10222. "dragon": {
  10223. name: "Dragon",
  10224. },
  10225. }
  10226. ))
  10227. characterMakers.push(() => makeCharacter(
  10228. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10229. {
  10230. lamp: {
  10231. height: math.unit(7 * 1559 / 989, "feet"),
  10232. name: "Magic Lamp",
  10233. image: {
  10234. source: "./media/characters/mira-al-cul/lamp.svg",
  10235. extra: 1617 / 1559
  10236. }
  10237. },
  10238. front: {
  10239. height: math.unit(7, "feet"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/mira-al-cul/front.svg",
  10243. extra: 1044 / 990
  10244. }
  10245. },
  10246. },
  10247. [
  10248. {
  10249. name: "Heavily Restricted",
  10250. height: math.unit(7 * 1559 / 989, "feet")
  10251. },
  10252. {
  10253. name: "Freshly Freed",
  10254. height: math.unit(50 * 1559 / 989, "feet")
  10255. },
  10256. {
  10257. name: "World Encompassing",
  10258. height: math.unit(10000 * 1559 / 989, "miles")
  10259. },
  10260. {
  10261. name: "Galactic",
  10262. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10263. },
  10264. {
  10265. name: "Palmed Universe",
  10266. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "Multiversal Matriarch",
  10271. height: math.unit(8.87e10, "yottameters")
  10272. },
  10273. {
  10274. name: "Void Mother",
  10275. height: math.unit(3.14e110, "yottaparsecs")
  10276. },
  10277. {
  10278. name: "Toying with Transcendence",
  10279. height: math.unit(1e307, "meters")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10285. {
  10286. front: {
  10287. height: math.unit(17 + 1 / 12, "feet"),
  10288. weight: math.unit(476.2 * 5, "lbs"),
  10289. name: "Front",
  10290. image: {
  10291. source: "./media/characters/kuro-shi-uchū/front.svg",
  10292. extra: 2329 / 1835,
  10293. bottom: 0.02
  10294. }
  10295. },
  10296. },
  10297. [
  10298. {
  10299. name: "Micro",
  10300. height: math.unit(2, "inches")
  10301. },
  10302. {
  10303. name: "Normal",
  10304. height: math.unit(12, "meters")
  10305. },
  10306. {
  10307. name: "Planetary",
  10308. height: math.unit(0.00929, "AU"),
  10309. default: true
  10310. },
  10311. {
  10312. name: "Universal",
  10313. height: math.unit(20, "gigaparsecs")
  10314. },
  10315. ]
  10316. ))
  10317. characterMakers.push(() => makeCharacter(
  10318. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10319. {
  10320. front: {
  10321. height: math.unit(5 + 2 / 12, "feet"),
  10322. weight: math.unit(120, "lbs"),
  10323. name: "Front",
  10324. image: {
  10325. source: "./media/characters/katherine/front.svg",
  10326. extra: 2075 / 1969
  10327. }
  10328. },
  10329. dress: {
  10330. height: math.unit(5 + 2 / 12, "feet"),
  10331. weight: math.unit(120, "lbs"),
  10332. name: "Dress",
  10333. image: {
  10334. source: "./media/characters/katherine/dress.svg",
  10335. extra: 2258 / 2064
  10336. }
  10337. },
  10338. },
  10339. [
  10340. {
  10341. name: "Micro",
  10342. height: math.unit(1, "inches"),
  10343. default: true
  10344. },
  10345. {
  10346. name: "Normal",
  10347. height: math.unit(5 + 2 / 12, "feet")
  10348. },
  10349. {
  10350. name: "Macro",
  10351. height: math.unit(100, "meters")
  10352. },
  10353. {
  10354. name: "Megamacro",
  10355. height: math.unit(80, "miles")
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10361. {
  10362. front: {
  10363. height: math.unit(7 + 8 / 12, "feet"),
  10364. weight: math.unit(250, "lbs"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/yevis/front.svg",
  10368. extra: 1938 / 1755
  10369. }
  10370. }
  10371. },
  10372. [
  10373. {
  10374. name: "Mortal",
  10375. height: math.unit(7 + 8 / 12, "feet")
  10376. },
  10377. {
  10378. name: "Battle",
  10379. height: math.unit(25 + 11 / 12, "feet")
  10380. },
  10381. {
  10382. name: "Wrath",
  10383. height: math.unit(1654 + 11 / 12, "feet")
  10384. },
  10385. {
  10386. name: "Planet Destroyer",
  10387. height: math.unit(12000, "miles")
  10388. },
  10389. {
  10390. name: "Galaxy Conqueror",
  10391. height: math.unit(1.45, "zettameters"),
  10392. default: true
  10393. },
  10394. {
  10395. name: "Universal War",
  10396. height: math.unit(184, "gigaparsecs")
  10397. },
  10398. {
  10399. name: "Eternity War",
  10400. height: math.unit(1.98e55, "yottaparsecs")
  10401. },
  10402. ]
  10403. ))
  10404. characterMakers.push(() => makeCharacter(
  10405. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10406. {
  10407. front: {
  10408. height: math.unit(5 + 8 / 12, "feet"),
  10409. weight: math.unit(63, "kg"),
  10410. name: "Front",
  10411. image: {
  10412. source: "./media/characters/xavier/front.svg",
  10413. extra: 944 / 883
  10414. }
  10415. },
  10416. frontStretch: {
  10417. height: math.unit(5 + 8 / 12, "feet"),
  10418. weight: math.unit(63, "kg"),
  10419. name: "Stretching",
  10420. image: {
  10421. source: "./media/characters/xavier/front-stretch.svg",
  10422. extra: 962 / 820
  10423. }
  10424. },
  10425. },
  10426. [
  10427. {
  10428. name: "Normal",
  10429. height: math.unit(5 + 8 / 12, "feet")
  10430. },
  10431. {
  10432. name: "Macro",
  10433. height: math.unit(100, "meters"),
  10434. default: true
  10435. },
  10436. {
  10437. name: "McLargeHuge",
  10438. height: math.unit(10, "miles")
  10439. },
  10440. ]
  10441. ))
  10442. characterMakers.push(() => makeCharacter(
  10443. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10444. {
  10445. front: {
  10446. height: math.unit(5 + 5 / 12, "feet"),
  10447. weight: math.unit(150, "lb"),
  10448. name: "Front",
  10449. image: {
  10450. source: "./media/characters/joshii/front.svg",
  10451. extra: 765 / 653,
  10452. bottom: 51 / 816
  10453. }
  10454. },
  10455. foot: {
  10456. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10457. name: "Foot",
  10458. image: {
  10459. source: "./media/characters/joshii/foot.svg"
  10460. }
  10461. },
  10462. },
  10463. [
  10464. {
  10465. name: "Micro",
  10466. height: math.unit(2, "inches")
  10467. },
  10468. {
  10469. name: "Normal",
  10470. height: math.unit(5 + 5 / 12, "feet")
  10471. },
  10472. {
  10473. name: "Macro",
  10474. height: math.unit(785, "feet"),
  10475. default: true
  10476. },
  10477. {
  10478. name: "Megamacro",
  10479. height: math.unit(24.5, "miles")
  10480. },
  10481. ]
  10482. ))
  10483. characterMakers.push(() => makeCharacter(
  10484. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10485. {
  10486. front: {
  10487. height: math.unit(6, "feet"),
  10488. weight: math.unit(150, "lb"),
  10489. name: "Front",
  10490. image: {
  10491. source: "./media/characters/goddess-elizabeth/front.svg",
  10492. extra: 1800 / 1525,
  10493. bottom: 0.005
  10494. }
  10495. },
  10496. foot: {
  10497. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10498. name: "Foot",
  10499. image: {
  10500. source: "./media/characters/goddess-elizabeth/foot.svg"
  10501. }
  10502. },
  10503. mouth: {
  10504. height: math.unit(6, "feet"),
  10505. name: "Mouth",
  10506. image: {
  10507. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10508. }
  10509. },
  10510. },
  10511. [
  10512. {
  10513. name: "Micro",
  10514. height: math.unit(12, "feet")
  10515. },
  10516. {
  10517. name: "Normal",
  10518. height: math.unit(80, "miles"),
  10519. default: true
  10520. },
  10521. {
  10522. name: "Macro",
  10523. height: math.unit(15000, "parsecs")
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10529. {
  10530. front: {
  10531. height: math.unit(5 + 9 / 12, "feet"),
  10532. weight: math.unit(144, "lb"),
  10533. name: "Front",
  10534. image: {
  10535. source: "./media/characters/kara/front.svg"
  10536. }
  10537. },
  10538. feet: {
  10539. height: math.unit(6 / 6.765, "feet"),
  10540. name: "Kara's Feet",
  10541. rename: true,
  10542. image: {
  10543. source: "./media/characters/kara/feet.svg"
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Normal",
  10550. height: math.unit(5 + 9 / 12, "feet")
  10551. },
  10552. {
  10553. name: "Macro",
  10554. height: math.unit(174, "feet"),
  10555. default: true
  10556. },
  10557. ]
  10558. ))
  10559. characterMakers.push(() => makeCharacter(
  10560. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10561. {
  10562. front: {
  10563. height: math.unit(18, "feet"),
  10564. weight: math.unit(4050, "lb"),
  10565. name: "Front",
  10566. image: {
  10567. source: "./media/characters/tyrone/front.svg",
  10568. extra: 2405 / 2270,
  10569. bottom: 182 / 2587
  10570. }
  10571. },
  10572. },
  10573. [
  10574. {
  10575. name: "Normal",
  10576. height: math.unit(18, "feet"),
  10577. default: true
  10578. },
  10579. {
  10580. name: "Macro",
  10581. height: math.unit(300, "feet")
  10582. },
  10583. {
  10584. name: "Megamacro",
  10585. height: math.unit(15, "km")
  10586. },
  10587. {
  10588. name: "Gigamacro",
  10589. height: math.unit(500, "km")
  10590. },
  10591. {
  10592. name: "Teramacro",
  10593. height: math.unit(0.5, "gigameters")
  10594. },
  10595. {
  10596. name: "Omnimacro",
  10597. height: math.unit(1e252, "yottauniverse")
  10598. },
  10599. ]
  10600. ))
  10601. characterMakers.push(() => makeCharacter(
  10602. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10603. {
  10604. front: {
  10605. height: math.unit(7 + 8 / 12, "feet"),
  10606. weight: math.unit(120, "lb"),
  10607. name: "Front",
  10608. image: {
  10609. source: "./media/characters/danny/front.svg",
  10610. extra: 1490 / 1350
  10611. }
  10612. },
  10613. back: {
  10614. height: math.unit(7 + 8 / 12, "feet"),
  10615. weight: math.unit(120, "lb"),
  10616. name: "Back",
  10617. image: {
  10618. source: "./media/characters/danny/back.svg",
  10619. extra: 1490 / 1350
  10620. }
  10621. },
  10622. },
  10623. [
  10624. {
  10625. name: "Normal",
  10626. height: math.unit(7 + 8 / 12, "feet"),
  10627. default: true
  10628. },
  10629. ]
  10630. ))
  10631. characterMakers.push(() => makeCharacter(
  10632. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10633. {
  10634. front: {
  10635. height: math.unit(3.5, "inches"),
  10636. weight: math.unit(19, "grams"),
  10637. name: "Front",
  10638. image: {
  10639. source: "./media/characters/mallow/front.svg",
  10640. extra: 471 / 431
  10641. }
  10642. },
  10643. back: {
  10644. height: math.unit(3.5, "inches"),
  10645. weight: math.unit(19, "grams"),
  10646. name: "Back",
  10647. image: {
  10648. source: "./media/characters/mallow/back.svg",
  10649. extra: 471 / 431
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Normal",
  10656. height: math.unit(3.5, "inches"),
  10657. default: true
  10658. },
  10659. ]
  10660. ))
  10661. characterMakers.push(() => makeCharacter(
  10662. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10663. {
  10664. front: {
  10665. height: math.unit(9, "feet"),
  10666. weight: math.unit(230, "kg"),
  10667. name: "Front",
  10668. image: {
  10669. source: "./media/characters/starry-aqua/front.svg"
  10670. }
  10671. },
  10672. back: {
  10673. height: math.unit(9, "feet"),
  10674. weight: math.unit(230, "kg"),
  10675. name: "Back",
  10676. image: {
  10677. source: "./media/characters/starry-aqua/back.svg"
  10678. }
  10679. },
  10680. hand: {
  10681. height: math.unit(9 * 0.1168, "feet"),
  10682. name: "Hand",
  10683. image: {
  10684. source: "./media/characters/starry-aqua/hand.svg"
  10685. }
  10686. },
  10687. foot: {
  10688. height: math.unit(9 * 0.18, "feet"),
  10689. name: "Foot",
  10690. image: {
  10691. source: "./media/characters/starry-aqua/foot.svg"
  10692. }
  10693. }
  10694. },
  10695. [
  10696. {
  10697. name: "Micro",
  10698. height: math.unit(3, "inches")
  10699. },
  10700. {
  10701. name: "Normal",
  10702. height: math.unit(9, "feet")
  10703. },
  10704. {
  10705. name: "Macro",
  10706. height: math.unit(300, "feet"),
  10707. default: true
  10708. },
  10709. {
  10710. name: "Megamacro",
  10711. height: math.unit(3200, "feet")
  10712. }
  10713. ]
  10714. ))
  10715. characterMakers.push(() => makeCharacter(
  10716. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10717. {
  10718. front: {
  10719. height: math.unit(15, "feet"),
  10720. weight: math.unit(5026, "lb"),
  10721. name: "Front",
  10722. image: {
  10723. source: "./media/characters/luka-towers/front.svg",
  10724. extra: 1269/1133,
  10725. bottom: 51/1320
  10726. }
  10727. },
  10728. },
  10729. [
  10730. {
  10731. name: "Normal",
  10732. height: math.unit(15, "feet"),
  10733. default: true
  10734. },
  10735. {
  10736. name: "Minimacro",
  10737. height: math.unit(25, "feet")
  10738. },
  10739. {
  10740. name: "Macro",
  10741. height: math.unit(320, "feet")
  10742. },
  10743. {
  10744. name: "Megamacro",
  10745. height: math.unit(35000, "feet")
  10746. },
  10747. {
  10748. name: "Gigamacro",
  10749. height: math.unit(4000, "miles")
  10750. },
  10751. {
  10752. name: "Teramacro",
  10753. height: math.unit(15000, "miles")
  10754. },
  10755. ]
  10756. ))
  10757. characterMakers.push(() => makeCharacter(
  10758. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10759. {
  10760. front: {
  10761. height: math.unit(6, "feet"),
  10762. weight: math.unit(150, "lb"),
  10763. name: "Front",
  10764. image: {
  10765. source: "./media/characters/natalie-nightring/front.svg",
  10766. extra: 1,
  10767. bottom: 0.06
  10768. }
  10769. },
  10770. },
  10771. [
  10772. {
  10773. name: "Uh Oh",
  10774. height: math.unit(0.1, "mm")
  10775. },
  10776. {
  10777. name: "Small",
  10778. height: math.unit(3, "inches")
  10779. },
  10780. {
  10781. name: "Human Scale",
  10782. height: math.unit(6, "feet")
  10783. },
  10784. {
  10785. name: "Librarian",
  10786. height: math.unit(50, "feet"),
  10787. default: true
  10788. },
  10789. {
  10790. name: "Immense",
  10791. height: math.unit(200, "miles")
  10792. },
  10793. ]
  10794. ))
  10795. characterMakers.push(() => makeCharacter(
  10796. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10797. {
  10798. front: {
  10799. height: math.unit(6, "feet"),
  10800. weight: math.unit(180, "lbs"),
  10801. name: "Front",
  10802. image: {
  10803. source: "./media/characters/danni-rosie/front.svg",
  10804. extra: 1260 / 1128,
  10805. bottom: 0.022
  10806. }
  10807. },
  10808. },
  10809. [
  10810. {
  10811. name: "Micro",
  10812. height: math.unit(2, "inches"),
  10813. default: true
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10819. {
  10820. front: {
  10821. height: math.unit(5 + 9 / 12, "feet"),
  10822. weight: math.unit(220, "lb"),
  10823. name: "Front",
  10824. image: {
  10825. source: "./media/characters/samantha-kruse/front.svg",
  10826. extra: (985 / 935),
  10827. bottom: 0.03
  10828. }
  10829. },
  10830. frontUndressed: {
  10831. height: math.unit(5 + 9 / 12, "feet"),
  10832. weight: math.unit(220, "lb"),
  10833. name: "Front (Undressed)",
  10834. image: {
  10835. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10836. extra: (973 / 923),
  10837. bottom: 0.025
  10838. }
  10839. },
  10840. fat: {
  10841. height: math.unit(5 + 9 / 12, "feet"),
  10842. weight: math.unit(900, "lb"),
  10843. name: "Front (Fat)",
  10844. image: {
  10845. source: "./media/characters/samantha-kruse/fat.svg",
  10846. extra: 2688 / 2561
  10847. }
  10848. },
  10849. },
  10850. [
  10851. {
  10852. name: "Normal",
  10853. height: math.unit(5 + 9 / 12, "feet"),
  10854. default: true
  10855. }
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10860. {
  10861. back: {
  10862. height: math.unit(5 + 4 / 12, "feet"),
  10863. weight: math.unit(4963, "lb"),
  10864. name: "Back",
  10865. image: {
  10866. source: "./media/characters/amelia-rosie/back.svg",
  10867. extra: 1113 / 963,
  10868. bottom: 0.01
  10869. }
  10870. },
  10871. },
  10872. [
  10873. {
  10874. name: "Level 0",
  10875. height: math.unit(5 + 4 / 12, "feet")
  10876. },
  10877. {
  10878. name: "Level 1",
  10879. height: math.unit(164597, "feet"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Level 2",
  10884. height: math.unit(956243, "miles")
  10885. },
  10886. {
  10887. name: "Level 3",
  10888. height: math.unit(29421709423, "miles")
  10889. },
  10890. {
  10891. name: "Level 4",
  10892. height: math.unit(154, "lightyears")
  10893. },
  10894. {
  10895. name: "Level 5",
  10896. height: math.unit(4738272, "lightyears")
  10897. },
  10898. {
  10899. name: "Level 6",
  10900. height: math.unit(145787152896, "lightyears")
  10901. },
  10902. ]
  10903. ))
  10904. characterMakers.push(() => makeCharacter(
  10905. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10906. {
  10907. front: {
  10908. height: math.unit(5 + 11 / 12, "feet"),
  10909. weight: math.unit(65, "kg"),
  10910. name: "Front",
  10911. image: {
  10912. source: "./media/characters/rook-kitara/front.svg",
  10913. extra: 1347 / 1274,
  10914. bottom: 0.005
  10915. }
  10916. },
  10917. },
  10918. [
  10919. {
  10920. name: "Totally Unfair",
  10921. height: math.unit(1.8, "mm")
  10922. },
  10923. {
  10924. name: "Lap Rookie",
  10925. height: math.unit(1.4, "feet")
  10926. },
  10927. {
  10928. name: "Normal",
  10929. height: math.unit(5 + 11 / 12, "feet"),
  10930. default: true
  10931. },
  10932. {
  10933. name: "How Did This Happen",
  10934. height: math.unit(80, "miles")
  10935. }
  10936. ]
  10937. ))
  10938. characterMakers.push(() => makeCharacter(
  10939. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10940. {
  10941. front: {
  10942. height: math.unit(7, "feet"),
  10943. weight: math.unit(300, "lb"),
  10944. name: "Front",
  10945. image: {
  10946. source: "./media/characters/pisces/front.svg",
  10947. extra: 2255 / 2115,
  10948. bottom: 0.03
  10949. }
  10950. },
  10951. back: {
  10952. height: math.unit(7, "feet"),
  10953. weight: math.unit(300, "lb"),
  10954. name: "Back",
  10955. image: {
  10956. source: "./media/characters/pisces/back.svg",
  10957. extra: 2146 / 2055,
  10958. bottom: 0.04
  10959. }
  10960. },
  10961. },
  10962. [
  10963. {
  10964. name: "Normal",
  10965. height: math.unit(7, "feet"),
  10966. default: true
  10967. },
  10968. {
  10969. name: "Swimming Pool",
  10970. height: math.unit(12.2, "meters")
  10971. },
  10972. {
  10973. name: "Olympic Swimming Pool",
  10974. height: math.unit(56.3, "meters")
  10975. },
  10976. {
  10977. name: "Lake Superior",
  10978. height: math.unit(93900, "meters")
  10979. },
  10980. {
  10981. name: "Mediterranean Sea",
  10982. height: math.unit(644457, "meters")
  10983. },
  10984. {
  10985. name: "World's Oceans",
  10986. height: math.unit(4567491, "meters")
  10987. },
  10988. ]
  10989. ))
  10990. characterMakers.push(() => makeCharacter(
  10991. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10992. {
  10993. front: {
  10994. height: math.unit(2.3, "meters"),
  10995. weight: math.unit(120, "kg"),
  10996. name: "Front",
  10997. image: {
  10998. source: "./media/characters/zelas/front.svg"
  10999. }
  11000. },
  11001. side: {
  11002. height: math.unit(2.3, "meters"),
  11003. weight: math.unit(120, "kg"),
  11004. name: "Side",
  11005. image: {
  11006. source: "./media/characters/zelas/side.svg"
  11007. }
  11008. },
  11009. back: {
  11010. height: math.unit(2.3, "meters"),
  11011. weight: math.unit(120, "kg"),
  11012. name: "Back",
  11013. image: {
  11014. source: "./media/characters/zelas/back.svg"
  11015. }
  11016. },
  11017. foot: {
  11018. height: math.unit(1.116, "feet"),
  11019. name: "Foot",
  11020. image: {
  11021. source: "./media/characters/zelas/foot.svg"
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(2.3, "meters")
  11029. },
  11030. {
  11031. name: "Macro",
  11032. height: math.unit(30, "meters"),
  11033. default: true
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  11039. {
  11040. front: {
  11041. height: math.unit(1, "inch"),
  11042. weight: math.unit(0.21, "grams"),
  11043. name: "Front",
  11044. image: {
  11045. source: "./media/characters/talbot/front.svg",
  11046. extra: 594 / 544
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Micro",
  11053. height: math.unit(1, "inch"),
  11054. default: true
  11055. },
  11056. ]
  11057. ))
  11058. characterMakers.push(() => makeCharacter(
  11059. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  11060. {
  11061. front: {
  11062. height: math.unit(3 + 3 / 12, "feet"),
  11063. weight: math.unit(51.8, "lb"),
  11064. name: "Front",
  11065. image: {
  11066. source: "./media/characters/fliss/front.svg",
  11067. extra: 840 / 640
  11068. }
  11069. },
  11070. },
  11071. [
  11072. {
  11073. name: "Teeny Tiny",
  11074. height: math.unit(1, "mm")
  11075. },
  11076. {
  11077. name: "Small",
  11078. height: math.unit(1, "inch"),
  11079. default: true
  11080. },
  11081. {
  11082. name: "Standard Sylveon",
  11083. height: math.unit(3 + 3 / 12, "feet")
  11084. },
  11085. {
  11086. name: "Large Nuisance",
  11087. height: math.unit(33, "feet")
  11088. },
  11089. {
  11090. name: "City Filler",
  11091. height: math.unit(3000, "feet")
  11092. },
  11093. {
  11094. name: "New Horizon",
  11095. height: math.unit(6000, "miles")
  11096. },
  11097. ]
  11098. ))
  11099. characterMakers.push(() => makeCharacter(
  11100. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  11101. {
  11102. front: {
  11103. height: math.unit(5, "cm"),
  11104. weight: math.unit(1.94, "g"),
  11105. name: "Front",
  11106. image: {
  11107. source: "./media/characters/fleta/front.svg",
  11108. extra: 835 / 803
  11109. }
  11110. },
  11111. back: {
  11112. height: math.unit(5, "cm"),
  11113. weight: math.unit(1.94, "g"),
  11114. name: "Back",
  11115. image: {
  11116. source: "./media/characters/fleta/back.svg",
  11117. extra: 835 / 803
  11118. }
  11119. },
  11120. },
  11121. [
  11122. {
  11123. name: "Micro",
  11124. height: math.unit(5, "cm"),
  11125. default: true
  11126. },
  11127. ]
  11128. ))
  11129. characterMakers.push(() => makeCharacter(
  11130. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11131. {
  11132. front: {
  11133. height: math.unit(6, "feet"),
  11134. weight: math.unit(225, "lb"),
  11135. name: "Front",
  11136. image: {
  11137. source: "./media/characters/dominic/front.svg",
  11138. extra: 1770 / 1620,
  11139. bottom: 0.025
  11140. }
  11141. },
  11142. back: {
  11143. height: math.unit(6, "feet"),
  11144. weight: math.unit(225, "lb"),
  11145. name: "Back",
  11146. image: {
  11147. source: "./media/characters/dominic/back.svg",
  11148. extra: 1745 / 1620,
  11149. bottom: 0.065
  11150. }
  11151. },
  11152. },
  11153. [
  11154. {
  11155. name: "Nano",
  11156. height: math.unit(0.1, "mm")
  11157. },
  11158. {
  11159. name: "Micro-",
  11160. height: math.unit(1, "mm")
  11161. },
  11162. {
  11163. name: "Micro",
  11164. height: math.unit(4, "inches")
  11165. },
  11166. {
  11167. name: "Normal",
  11168. height: math.unit(6 + 4 / 12, "feet"),
  11169. default: true
  11170. },
  11171. {
  11172. name: "Macro",
  11173. height: math.unit(115, "feet")
  11174. },
  11175. {
  11176. name: "Macro+",
  11177. height: math.unit(955, "feet")
  11178. },
  11179. {
  11180. name: "Megamacro",
  11181. height: math.unit(8990, "feet")
  11182. },
  11183. {
  11184. name: "Gigmacro",
  11185. height: math.unit(9310, "miles")
  11186. },
  11187. {
  11188. name: "Teramacro",
  11189. height: math.unit(1567005010, "miles")
  11190. },
  11191. {
  11192. name: "Examacro",
  11193. height: math.unit(1425, "parsecs")
  11194. },
  11195. ]
  11196. ))
  11197. characterMakers.push(() => makeCharacter(
  11198. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11199. {
  11200. front: {
  11201. height: math.unit(400, "feet"),
  11202. weight: math.unit(44444444, "lb"),
  11203. name: "Front",
  11204. image: {
  11205. source: "./media/characters/major-colonel/front.svg"
  11206. }
  11207. },
  11208. back: {
  11209. height: math.unit(400, "feet"),
  11210. weight: math.unit(44444444, "lb"),
  11211. name: "Back",
  11212. image: {
  11213. source: "./media/characters/major-colonel/back.svg"
  11214. }
  11215. },
  11216. },
  11217. [
  11218. {
  11219. name: "Macro",
  11220. height: math.unit(400, "feet"),
  11221. default: true
  11222. },
  11223. ]
  11224. ))
  11225. characterMakers.push(() => makeCharacter(
  11226. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11227. {
  11228. catFront: {
  11229. height: math.unit(6, "feet"),
  11230. weight: math.unit(120, "lb"),
  11231. name: "Front (Cat Side)",
  11232. image: {
  11233. source: "./media/characters/axel-lycan/cat-front.svg",
  11234. extra: 430 / 402,
  11235. bottom: 43 / 472.35
  11236. }
  11237. },
  11238. catBack: {
  11239. height: math.unit(6, "feet"),
  11240. weight: math.unit(120, "lb"),
  11241. name: "Back (Cat Side)",
  11242. image: {
  11243. source: "./media/characters/axel-lycan/cat-back.svg",
  11244. extra: 447 / 419,
  11245. bottom: 23.3 / 469
  11246. }
  11247. },
  11248. wolfFront: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(120, "lb"),
  11251. name: "Front (Wolf Side)",
  11252. image: {
  11253. source: "./media/characters/axel-lycan/wolf-front.svg",
  11254. extra: 485 / 456,
  11255. bottom: 19 / 504
  11256. }
  11257. },
  11258. wolfBack: {
  11259. height: math.unit(6, "feet"),
  11260. weight: math.unit(120, "lb"),
  11261. name: "Back (Wolf Side)",
  11262. image: {
  11263. source: "./media/characters/axel-lycan/wolf-back.svg",
  11264. extra: 475 / 438,
  11265. bottom: 39.2 / 514
  11266. }
  11267. },
  11268. },
  11269. [
  11270. {
  11271. name: "Macro",
  11272. height: math.unit(1, "km"),
  11273. default: true
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11279. {
  11280. front: {
  11281. height: math.unit(5 + 9 / 12, "feet"),
  11282. weight: math.unit(175, "lb"),
  11283. name: "Front",
  11284. image: {
  11285. source: "./media/characters/vanrel-hyena/front.svg",
  11286. extra: 1086 / 1010,
  11287. bottom: 0.04
  11288. }
  11289. },
  11290. },
  11291. [
  11292. {
  11293. name: "Normal",
  11294. height: math.unit(5 + 9 / 12, "feet"),
  11295. default: true
  11296. },
  11297. ]
  11298. ))
  11299. characterMakers.push(() => makeCharacter(
  11300. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11301. {
  11302. front: {
  11303. height: math.unit(6, "feet"),
  11304. weight: math.unit(103, "lb"),
  11305. name: "Front",
  11306. image: {
  11307. source: "./media/characters/abbott-absol/front.svg",
  11308. extra: 765/694,
  11309. bottom: 47/812
  11310. }
  11311. },
  11312. },
  11313. [
  11314. {
  11315. name: "Megamicro",
  11316. height: math.unit(0.1, "mm")
  11317. },
  11318. {
  11319. name: "Micro",
  11320. height: math.unit(1, "inch")
  11321. },
  11322. {
  11323. name: "Normal",
  11324. height: math.unit(6, "feet"),
  11325. default: true
  11326. },
  11327. ]
  11328. ))
  11329. characterMakers.push(() => makeCharacter(
  11330. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11331. {
  11332. front: {
  11333. height: math.unit(6, "feet"),
  11334. weight: math.unit(264, "lb"),
  11335. name: "Front",
  11336. image: {
  11337. source: "./media/characters/hector/front.svg",
  11338. extra: 2280 / 2130,
  11339. bottom: 0.07
  11340. }
  11341. },
  11342. },
  11343. [
  11344. {
  11345. name: "Normal",
  11346. height: math.unit(12.25, "foot"),
  11347. default: true
  11348. },
  11349. {
  11350. name: "Macro",
  11351. height: math.unit(160, "feet")
  11352. },
  11353. ]
  11354. ))
  11355. characterMakers.push(() => makeCharacter(
  11356. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11357. {
  11358. front: {
  11359. height: math.unit(6, "feet"),
  11360. weight: math.unit(150, "lb"),
  11361. name: "Front",
  11362. image: {
  11363. source: "./media/characters/sal/front.svg",
  11364. extra: 1846 / 1699,
  11365. bottom: 0.04
  11366. }
  11367. },
  11368. },
  11369. [
  11370. {
  11371. name: "Megamacro",
  11372. height: math.unit(10, "miles"),
  11373. default: true
  11374. },
  11375. ]
  11376. ))
  11377. characterMakers.push(() => makeCharacter(
  11378. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11379. {
  11380. front: {
  11381. height: math.unit(3, "meters"),
  11382. weight: math.unit(450, "kg"),
  11383. name: "front",
  11384. image: {
  11385. source: "./media/characters/ranger/front.svg",
  11386. extra: 2401 / 2243,
  11387. bottom: 0.05
  11388. }
  11389. },
  11390. },
  11391. [
  11392. {
  11393. name: "Normal",
  11394. height: math.unit(3, "meters"),
  11395. default: true
  11396. },
  11397. ]
  11398. ))
  11399. characterMakers.push(() => makeCharacter(
  11400. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11401. {
  11402. front: {
  11403. height: math.unit(14, "feet"),
  11404. weight: math.unit(800, "kg"),
  11405. name: "Front",
  11406. image: {
  11407. source: "./media/characters/theresa/front.svg",
  11408. extra: 3575 / 3346,
  11409. bottom: 0.03
  11410. }
  11411. },
  11412. },
  11413. [
  11414. {
  11415. name: "Normal",
  11416. height: math.unit(14, "feet"),
  11417. default: true
  11418. },
  11419. ]
  11420. ))
  11421. characterMakers.push(() => makeCharacter(
  11422. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11423. {
  11424. front: {
  11425. height: math.unit(6, "feet"),
  11426. weight: math.unit(3, "kg"),
  11427. name: "Front",
  11428. image: {
  11429. source: "./media/characters/ine/front.svg",
  11430. extra: 678 / 539,
  11431. bottom: 0.023
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Normal",
  11438. height: math.unit(2.265, "feet"),
  11439. default: true
  11440. },
  11441. ]
  11442. ))
  11443. characterMakers.push(() => makeCharacter(
  11444. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11445. {
  11446. front: {
  11447. height: math.unit(5, "feet"),
  11448. weight: math.unit(30, "kg"),
  11449. name: "Front",
  11450. image: {
  11451. source: "./media/characters/vial/front.svg",
  11452. extra: 1365 / 1277,
  11453. bottom: 0.04
  11454. }
  11455. },
  11456. },
  11457. [
  11458. {
  11459. name: "Normal",
  11460. height: math.unit(5, "feet"),
  11461. default: true
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11467. {
  11468. side: {
  11469. height: math.unit(3.4, "meters"),
  11470. weight: math.unit(1000, "lb"),
  11471. name: "Side",
  11472. image: {
  11473. source: "./media/characters/rovoska/side.svg",
  11474. extra: 4403 / 1515
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Normal",
  11481. height: math.unit(3.4, "meters"),
  11482. default: true
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(8, "feet"),
  11491. weight: math.unit(315, "lb"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/gunner-rotthbauer/front.svg"
  11495. }
  11496. },
  11497. back: {
  11498. height: math.unit(8, "feet"),
  11499. weight: math.unit(315, "lb"),
  11500. name: "Back",
  11501. image: {
  11502. source: "./media/characters/gunner-rotthbauer/back.svg"
  11503. }
  11504. },
  11505. },
  11506. [
  11507. {
  11508. name: "Micro",
  11509. height: math.unit(3.5, "inches")
  11510. },
  11511. {
  11512. name: "Normal",
  11513. height: math.unit(8, "feet"),
  11514. default: true
  11515. },
  11516. {
  11517. name: "Macro",
  11518. height: math.unit(250, "feet")
  11519. },
  11520. {
  11521. name: "Megamacro",
  11522. height: math.unit(1, "AU")
  11523. },
  11524. ]
  11525. ))
  11526. characterMakers.push(() => makeCharacter(
  11527. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11528. {
  11529. front: {
  11530. height: math.unit(5 + 5 / 12, "feet"),
  11531. weight: math.unit(140, "lb"),
  11532. name: "Front",
  11533. image: {
  11534. source: "./media/characters/allatia/front.svg",
  11535. extra: 1227 / 1180,
  11536. bottom: 0.027
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Normal",
  11543. height: math.unit(5 + 5 / 12, "feet")
  11544. },
  11545. {
  11546. name: "Macro",
  11547. height: math.unit(250, "feet"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(8, "miles")
  11553. }
  11554. ]
  11555. ))
  11556. characterMakers.push(() => makeCharacter(
  11557. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11558. {
  11559. front: {
  11560. height: math.unit(6, "feet"),
  11561. weight: math.unit(120, "lb"),
  11562. name: "Front",
  11563. image: {
  11564. source: "./media/characters/tene/front.svg",
  11565. extra: 814/750,
  11566. bottom: 36/850
  11567. }
  11568. },
  11569. stomping: {
  11570. height: math.unit(2.025, "meters"),
  11571. weight: math.unit(120, "lb"),
  11572. name: "Stomping",
  11573. image: {
  11574. source: "./media/characters/tene/stomping.svg",
  11575. extra: 885/821,
  11576. bottom: 15/900
  11577. }
  11578. },
  11579. sitting: {
  11580. height: math.unit(1, "meter"),
  11581. weight: math.unit(120, "lb"),
  11582. name: "Sitting",
  11583. image: {
  11584. source: "./media/characters/tene/sitting.svg",
  11585. extra: 396/366,
  11586. bottom: 79/475
  11587. }
  11588. },
  11589. smiling: {
  11590. height: math.unit(1.2, "feet"),
  11591. name: "Smiling",
  11592. image: {
  11593. source: "./media/characters/tene/smiling.svg",
  11594. extra: 1364/1071,
  11595. bottom: 0/1364
  11596. }
  11597. },
  11598. smug: {
  11599. height: math.unit(1.3, "feet"),
  11600. name: "Smug",
  11601. image: {
  11602. source: "./media/characters/tene/smug.svg",
  11603. extra: 1323/1082,
  11604. bottom: 0/1323
  11605. }
  11606. },
  11607. feral: {
  11608. height: math.unit(3.9, "feet"),
  11609. weight: math.unit(250, "lb"),
  11610. name: "Feral",
  11611. image: {
  11612. source: "./media/characters/tene/feral.svg",
  11613. extra: 717 / 458,
  11614. bottom: 0.179
  11615. }
  11616. },
  11617. },
  11618. [
  11619. {
  11620. name: "Normal",
  11621. height: math.unit(6, "feet")
  11622. },
  11623. {
  11624. name: "Macro",
  11625. height: math.unit(300, "feet"),
  11626. default: true
  11627. },
  11628. {
  11629. name: "Megamacro",
  11630. height: math.unit(5, "miles")
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11636. {
  11637. side: {
  11638. height: math.unit(6, "feet"),
  11639. name: "Side",
  11640. image: {
  11641. source: "./media/characters/evander/side.svg",
  11642. extra: 877 / 477
  11643. }
  11644. },
  11645. },
  11646. [
  11647. {
  11648. name: "Normal",
  11649. height: math.unit(0.83, "meters"),
  11650. default: true
  11651. },
  11652. ]
  11653. ))
  11654. characterMakers.push(() => makeCharacter(
  11655. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11656. {
  11657. front: {
  11658. height: math.unit(12, "feet"),
  11659. weight: math.unit(1000, "lb"),
  11660. name: "Front",
  11661. image: {
  11662. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11663. extra: 1762 / 1611
  11664. }
  11665. },
  11666. back: {
  11667. height: math.unit(12, "feet"),
  11668. weight: math.unit(1000, "lb"),
  11669. name: "Back",
  11670. image: {
  11671. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11672. extra: 1762 / 1611
  11673. }
  11674. },
  11675. },
  11676. [
  11677. {
  11678. name: "Normal",
  11679. height: math.unit(12, "feet"),
  11680. default: true
  11681. },
  11682. {
  11683. name: "Kaiju",
  11684. height: math.unit(150, "feet")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(5 + 11/12, "feet"),
  11693. weight: math.unit(180, "lb"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/zero-alurus/front.svg",
  11697. extra: 1032/957,
  11698. bottom: 10/1042
  11699. }
  11700. },
  11701. back: {
  11702. height: math.unit(5 + 11/12, "feet"),
  11703. weight: math.unit(180, "lb"),
  11704. name: "Back",
  11705. image: {
  11706. source: "./media/characters/zero-alurus/back.svg",
  11707. extra: 1027/950,
  11708. bottom: 12/1039
  11709. }
  11710. },
  11711. },
  11712. [
  11713. {
  11714. name: "Normal",
  11715. height: math.unit(5 + 11 / 12, "feet")
  11716. },
  11717. {
  11718. name: "Mini-Macro",
  11719. height: math.unit(25, "feet")
  11720. },
  11721. {
  11722. name: "Macro",
  11723. height: math.unit(90, "feet"),
  11724. default: true
  11725. },
  11726. {
  11727. name: "Macro+",
  11728. height: math.unit(500, "feet")
  11729. },
  11730. {
  11731. name: "Megamacro",
  11732. height: math.unit(1200, "feet")
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11738. {
  11739. front: {
  11740. height: math.unit(6, "feet"),
  11741. weight: math.unit(200, "lb"),
  11742. name: "Front",
  11743. image: {
  11744. source: "./media/characters/mega-shi/front.svg",
  11745. extra: 1279 / 1250,
  11746. bottom: 0.02
  11747. }
  11748. },
  11749. back: {
  11750. height: math.unit(6, "feet"),
  11751. weight: math.unit(200, "lb"),
  11752. name: "Back",
  11753. image: {
  11754. source: "./media/characters/mega-shi/back.svg",
  11755. extra: 1279 / 1250,
  11756. bottom: 0.02
  11757. }
  11758. },
  11759. },
  11760. [
  11761. {
  11762. name: "Micro",
  11763. height: math.unit(16 + 6 / 12, "feet")
  11764. },
  11765. {
  11766. name: "Third Dimension",
  11767. height: math.unit(40, "meters")
  11768. },
  11769. {
  11770. name: "Normal",
  11771. height: math.unit(660, "feet"),
  11772. default: true
  11773. },
  11774. {
  11775. name: "Megamacro",
  11776. height: math.unit(10, "miles")
  11777. },
  11778. {
  11779. name: "Planetary Launch",
  11780. height: math.unit(500, "miles")
  11781. },
  11782. {
  11783. name: "Interstellar",
  11784. height: math.unit(1e9, "miles")
  11785. },
  11786. {
  11787. name: "Leaving the Universe",
  11788. height: math.unit(1, "gigaparsec")
  11789. },
  11790. {
  11791. name: "Travelling Universes",
  11792. height: math.unit(30e15, "parsecs")
  11793. },
  11794. ]
  11795. ))
  11796. characterMakers.push(() => makeCharacter(
  11797. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11798. {
  11799. front: {
  11800. height: math.unit(5 + 4/12, "feet"),
  11801. weight: math.unit(120, "lb"),
  11802. name: "Front",
  11803. image: {
  11804. source: "./media/characters/odyssey/front.svg",
  11805. extra: 1747/1571,
  11806. bottom: 47/1794
  11807. }
  11808. },
  11809. side: {
  11810. height: math.unit(5.1, "feet"),
  11811. weight: math.unit(120, "lb"),
  11812. name: "Side",
  11813. image: {
  11814. source: "./media/characters/odyssey/side.svg",
  11815. extra: 1847/1619,
  11816. bottom: 47/1894
  11817. }
  11818. },
  11819. lounging: {
  11820. height: math.unit(1.464, "feet"),
  11821. weight: math.unit(120, "lb"),
  11822. name: "Lounging",
  11823. image: {
  11824. source: "./media/characters/odyssey/lounging.svg",
  11825. extra: 1235/837,
  11826. bottom: 551/1786
  11827. }
  11828. },
  11829. },
  11830. [
  11831. {
  11832. name: "Normal",
  11833. height: math.unit(5 + 4 / 12, "feet")
  11834. },
  11835. {
  11836. name: "Macro",
  11837. height: math.unit(1, "km")
  11838. },
  11839. {
  11840. name: "Megamacro",
  11841. height: math.unit(3000, "km")
  11842. },
  11843. {
  11844. name: "Gigamacro",
  11845. height: math.unit(1, "AU"),
  11846. default: true
  11847. },
  11848. {
  11849. name: "Omniversal",
  11850. height: math.unit(100e14, "lightyears")
  11851. },
  11852. ]
  11853. ))
  11854. characterMakers.push(() => makeCharacter(
  11855. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11856. {
  11857. front: {
  11858. height: math.unit(5 + 10/12, "feet"),
  11859. name: "Front",
  11860. image: {
  11861. source: "./media/characters/mekuto/front.svg",
  11862. extra: 875/835,
  11863. bottom: 46/921
  11864. }
  11865. },
  11866. },
  11867. [
  11868. {
  11869. name: "Minimicro",
  11870. height: math.unit(0.2, "inches")
  11871. },
  11872. {
  11873. name: "Micro",
  11874. height: math.unit(1.5, "inches")
  11875. },
  11876. {
  11877. name: "Normal",
  11878. height: math.unit(5 + 10 / 12, "feet"),
  11879. default: true
  11880. },
  11881. {
  11882. name: "Minimacro",
  11883. height: math.unit(17 + 9 / 12, "feet")
  11884. },
  11885. {
  11886. name: "Macro",
  11887. height: math.unit(177.5, "feet")
  11888. },
  11889. {
  11890. name: "Megamacro",
  11891. height: math.unit(152, "miles")
  11892. },
  11893. ]
  11894. ))
  11895. characterMakers.push(() => makeCharacter(
  11896. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11897. {
  11898. front: {
  11899. height: math.unit(6.5, "inches"),
  11900. weight: math.unit(13, "oz"),
  11901. name: "Front",
  11902. image: {
  11903. source: "./media/characters/dafydd-tomos/front.svg",
  11904. extra: 2990 / 2603,
  11905. bottom: 0.03
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Micro",
  11912. height: math.unit(6.5, "inches"),
  11913. default: true
  11914. },
  11915. ]
  11916. ))
  11917. characterMakers.push(() => makeCharacter(
  11918. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11919. {
  11920. front: {
  11921. height: math.unit(6, "feet"),
  11922. weight: math.unit(150, "lb"),
  11923. name: "Front",
  11924. image: {
  11925. source: "./media/characters/splinter/front.svg",
  11926. extra: 2990 / 2882,
  11927. bottom: 0.04
  11928. }
  11929. },
  11930. back: {
  11931. height: math.unit(6, "feet"),
  11932. weight: math.unit(150, "lb"),
  11933. name: "Back",
  11934. image: {
  11935. source: "./media/characters/splinter/back.svg",
  11936. extra: 2990 / 2882,
  11937. bottom: 0.04
  11938. }
  11939. },
  11940. },
  11941. [
  11942. {
  11943. name: "Normal",
  11944. height: math.unit(6, "feet")
  11945. },
  11946. {
  11947. name: "Macro",
  11948. height: math.unit(230, "meters"),
  11949. default: true
  11950. },
  11951. ]
  11952. ))
  11953. characterMakers.push(() => makeCharacter(
  11954. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11955. {
  11956. front: {
  11957. height: math.unit(4 + 10 / 12, "feet"),
  11958. weight: math.unit(480, "lb"),
  11959. name: "Front",
  11960. image: {
  11961. source: "./media/characters/snow-gabumon/front.svg",
  11962. extra: 1140 / 963,
  11963. bottom: 0.058
  11964. }
  11965. },
  11966. back: {
  11967. height: math.unit(4 + 10 / 12, "feet"),
  11968. weight: math.unit(480, "lb"),
  11969. name: "Back",
  11970. image: {
  11971. source: "./media/characters/snow-gabumon/back.svg",
  11972. extra: 1115 / 962,
  11973. bottom: 0.041
  11974. }
  11975. },
  11976. frontUndresed: {
  11977. height: math.unit(4 + 10 / 12, "feet"),
  11978. weight: math.unit(480, "lb"),
  11979. name: "Front (Undressed)",
  11980. image: {
  11981. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11982. extra: 1061 / 960,
  11983. bottom: 0.045
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Micro",
  11990. height: math.unit(1, "inch")
  11991. },
  11992. {
  11993. name: "Normal",
  11994. height: math.unit(4 + 10 / 12, "feet"),
  11995. default: true
  11996. },
  11997. {
  11998. name: "Macro",
  11999. height: math.unit(200, "feet")
  12000. },
  12001. {
  12002. name: "Megamacro",
  12003. height: math.unit(120, "miles")
  12004. },
  12005. {
  12006. name: "Gigamacro",
  12007. height: math.unit(9800, "miles")
  12008. },
  12009. ]
  12010. ))
  12011. characterMakers.push(() => makeCharacter(
  12012. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  12013. {
  12014. front: {
  12015. height: math.unit(1.7, "meters"),
  12016. weight: math.unit(140, "lb"),
  12017. name: "Front",
  12018. image: {
  12019. source: "./media/characters/moody/front.svg",
  12020. extra: 3226 / 3007,
  12021. bottom: 0.087
  12022. }
  12023. },
  12024. },
  12025. [
  12026. {
  12027. name: "Micro",
  12028. height: math.unit(1, "mm")
  12029. },
  12030. {
  12031. name: "Normal",
  12032. height: math.unit(1.7, "meters"),
  12033. default: true
  12034. },
  12035. {
  12036. name: "Macro",
  12037. height: math.unit(80, "meters")
  12038. },
  12039. {
  12040. name: "Macro+",
  12041. height: math.unit(500, "meters")
  12042. },
  12043. ]
  12044. ))
  12045. characterMakers.push(() => makeCharacter(
  12046. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  12047. {
  12048. front: {
  12049. height: math.unit(6, "feet"),
  12050. weight: math.unit(150, "lb"),
  12051. name: "Front",
  12052. image: {
  12053. source: "./media/characters/zyas/front.svg",
  12054. extra: 1180 / 1120,
  12055. bottom: 0.045
  12056. }
  12057. },
  12058. },
  12059. [
  12060. {
  12061. name: "Normal",
  12062. height: math.unit(10, "feet"),
  12063. default: true
  12064. },
  12065. {
  12066. name: "Macro",
  12067. height: math.unit(500, "feet")
  12068. },
  12069. {
  12070. name: "Megamacro",
  12071. height: math.unit(5, "miles")
  12072. },
  12073. {
  12074. name: "Teramacro",
  12075. height: math.unit(150000, "miles")
  12076. },
  12077. ]
  12078. ))
  12079. characterMakers.push(() => makeCharacter(
  12080. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  12081. {
  12082. front: {
  12083. height: math.unit(6, "feet"),
  12084. weight: math.unit(150, "lb"),
  12085. name: "Front",
  12086. image: {
  12087. source: "./media/characters/cuon/front.svg",
  12088. extra: 1390 / 1320,
  12089. bottom: 0.008
  12090. }
  12091. },
  12092. },
  12093. [
  12094. {
  12095. name: "Micro",
  12096. height: math.unit(3, "inches")
  12097. },
  12098. {
  12099. name: "Normal",
  12100. height: math.unit(18 + 9 / 12, "feet"),
  12101. default: true
  12102. },
  12103. {
  12104. name: "Macro",
  12105. height: math.unit(360, "feet")
  12106. },
  12107. {
  12108. name: "Megamacro",
  12109. height: math.unit(360, "miles")
  12110. },
  12111. ]
  12112. ))
  12113. characterMakers.push(() => makeCharacter(
  12114. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  12115. {
  12116. front: {
  12117. height: math.unit(2.4, "meters"),
  12118. weight: math.unit(70, "kg"),
  12119. name: "Front",
  12120. image: {
  12121. source: "./media/characters/nyanuxk/front.svg",
  12122. extra: 1172 / 1084,
  12123. bottom: 0.065
  12124. }
  12125. },
  12126. side: {
  12127. height: math.unit(2.4, "meters"),
  12128. weight: math.unit(70, "kg"),
  12129. name: "Side",
  12130. image: {
  12131. source: "./media/characters/nyanuxk/side.svg",
  12132. extra: 1190 / 1132,
  12133. bottom: 0.007
  12134. }
  12135. },
  12136. back: {
  12137. height: math.unit(2.4, "meters"),
  12138. weight: math.unit(70, "kg"),
  12139. name: "Back",
  12140. image: {
  12141. source: "./media/characters/nyanuxk/back.svg",
  12142. extra: 1200 / 1141,
  12143. bottom: 0.015
  12144. }
  12145. },
  12146. foot: {
  12147. height: math.unit(0.52, "meters"),
  12148. name: "Foot",
  12149. image: {
  12150. source: "./media/characters/nyanuxk/foot.svg"
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Micro",
  12157. height: math.unit(2, "cm")
  12158. },
  12159. {
  12160. name: "Normal",
  12161. height: math.unit(2.4, "meters"),
  12162. default: true
  12163. },
  12164. {
  12165. name: "Smaller Macro",
  12166. height: math.unit(120, "meters")
  12167. },
  12168. {
  12169. name: "Bigger Macro",
  12170. height: math.unit(1.2, "km")
  12171. },
  12172. {
  12173. name: "Megamacro",
  12174. height: math.unit(15, "kilometers")
  12175. },
  12176. {
  12177. name: "Gigamacro",
  12178. height: math.unit(2000, "km")
  12179. },
  12180. {
  12181. name: "Teramacro",
  12182. height: math.unit(500000, "km")
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12188. {
  12189. side: {
  12190. height: math.unit(6, "feet"),
  12191. name: "Side",
  12192. image: {
  12193. source: "./media/characters/ailbhe/side.svg",
  12194. extra: 757 / 464,
  12195. bottom: 0.041
  12196. }
  12197. },
  12198. },
  12199. [
  12200. {
  12201. name: "Normal",
  12202. height: math.unit(1.07, "meters"),
  12203. default: true
  12204. },
  12205. ]
  12206. ))
  12207. characterMakers.push(() => makeCharacter(
  12208. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12209. {
  12210. front: {
  12211. height: math.unit(6, "feet"),
  12212. weight: math.unit(120, "kg"),
  12213. name: "Front",
  12214. image: {
  12215. source: "./media/characters/zevulfius/front.svg",
  12216. extra: 965 / 903
  12217. }
  12218. },
  12219. side: {
  12220. height: math.unit(6, "feet"),
  12221. weight: math.unit(120, "kg"),
  12222. name: "Side",
  12223. image: {
  12224. source: "./media/characters/zevulfius/side.svg",
  12225. extra: 939 / 900
  12226. }
  12227. },
  12228. back: {
  12229. height: math.unit(6, "feet"),
  12230. weight: math.unit(120, "kg"),
  12231. name: "Back",
  12232. image: {
  12233. source: "./media/characters/zevulfius/back.svg",
  12234. extra: 918 / 854,
  12235. bottom: 0.005
  12236. }
  12237. },
  12238. foot: {
  12239. height: math.unit(6 / 3.72, "feet"),
  12240. name: "Foot",
  12241. image: {
  12242. source: "./media/characters/zevulfius/foot.svg"
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Macro",
  12249. height: math.unit(750, "meters")
  12250. },
  12251. {
  12252. name: "Megamacro",
  12253. height: math.unit(20, "km"),
  12254. default: true
  12255. },
  12256. {
  12257. name: "Gigamacro",
  12258. height: math.unit(2000, "km")
  12259. },
  12260. {
  12261. name: "Teramacro",
  12262. height: math.unit(250000, "km")
  12263. },
  12264. ]
  12265. ))
  12266. characterMakers.push(() => makeCharacter(
  12267. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12268. {
  12269. front: {
  12270. height: math.unit(100, "feet"),
  12271. weight: math.unit(350, "kg"),
  12272. name: "Front",
  12273. image: {
  12274. source: "./media/characters/rikes/front.svg",
  12275. extra: 1565 / 1483,
  12276. bottom: 0.017
  12277. }
  12278. },
  12279. },
  12280. [
  12281. {
  12282. name: "Macro",
  12283. height: math.unit(100, "feet"),
  12284. default: true
  12285. },
  12286. ]
  12287. ))
  12288. characterMakers.push(() => makeCharacter(
  12289. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12290. {
  12291. front: {
  12292. height: math.unit(8, "feet"),
  12293. weight: math.unit(356, "lb"),
  12294. name: "Front",
  12295. image: {
  12296. source: "./media/characters/adam-silver-mane/front.svg",
  12297. extra: 1036/937,
  12298. bottom: 63/1099
  12299. }
  12300. },
  12301. side: {
  12302. height: math.unit(8, "feet"),
  12303. weight: math.unit(356, "lb"),
  12304. name: "Side",
  12305. image: {
  12306. source: "./media/characters/adam-silver-mane/side.svg",
  12307. extra: 997/901,
  12308. bottom: 59/1056
  12309. }
  12310. },
  12311. frontNsfw: {
  12312. height: math.unit(8, "feet"),
  12313. weight: math.unit(356, "lb"),
  12314. name: "Front (NSFW)",
  12315. image: {
  12316. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12317. extra: 1036/937,
  12318. bottom: 63/1099
  12319. }
  12320. },
  12321. sideNsfw: {
  12322. height: math.unit(8, "feet"),
  12323. weight: math.unit(356, "lb"),
  12324. name: "Side (NSFW)",
  12325. image: {
  12326. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12327. extra: 997/901,
  12328. bottom: 59/1056
  12329. }
  12330. },
  12331. dick: {
  12332. height: math.unit(2.1, "feet"),
  12333. name: "Dick",
  12334. image: {
  12335. source: "./media/characters/adam-silver-mane/dick.svg"
  12336. }
  12337. },
  12338. taur: {
  12339. height: math.unit(16, "feet"),
  12340. weight: math.unit(1500, "kg"),
  12341. name: "Taur",
  12342. image: {
  12343. source: "./media/characters/adam-silver-mane/taur.svg",
  12344. extra: 1713 / 1571,
  12345. bottom: 0.01
  12346. }
  12347. },
  12348. },
  12349. [
  12350. {
  12351. name: "Normal",
  12352. height: math.unit(8, "feet")
  12353. },
  12354. {
  12355. name: "Minimacro",
  12356. height: math.unit(80, "feet")
  12357. },
  12358. {
  12359. name: "MDA",
  12360. height: math.unit(80, "meters")
  12361. },
  12362. {
  12363. name: "Macro",
  12364. height: math.unit(800, "feet"),
  12365. default: true
  12366. },
  12367. {
  12368. name: "Megamacro",
  12369. height: math.unit(8000, "feet")
  12370. },
  12371. {
  12372. name: "Gigamacro",
  12373. height: math.unit(800, "miles")
  12374. },
  12375. {
  12376. name: "Teramacro",
  12377. height: math.unit(80000, "miles")
  12378. },
  12379. {
  12380. name: "Celestial",
  12381. height: math.unit(8e6, "miles")
  12382. },
  12383. {
  12384. name: "Star Dragon",
  12385. height: math.unit(800000, "parsecs")
  12386. },
  12387. {
  12388. name: "Godly",
  12389. height: math.unit(800, "teraparsecs")
  12390. },
  12391. ]
  12392. ))
  12393. characterMakers.push(() => makeCharacter(
  12394. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12395. {
  12396. front: {
  12397. height: math.unit(6, "feet"),
  12398. weight: math.unit(150, "lb"),
  12399. name: "Front",
  12400. image: {
  12401. source: "./media/characters/ky'owin/front.svg",
  12402. extra: 3862/3053,
  12403. bottom: 74/3936
  12404. }
  12405. },
  12406. },
  12407. [
  12408. {
  12409. name: "Normal",
  12410. height: math.unit(6 + 8 / 12, "feet")
  12411. },
  12412. {
  12413. name: "Large",
  12414. height: math.unit(68, "feet")
  12415. },
  12416. {
  12417. name: "Macro",
  12418. height: math.unit(132, "feet")
  12419. },
  12420. {
  12421. name: "Macro+",
  12422. height: math.unit(340, "feet")
  12423. },
  12424. {
  12425. name: "Macro++",
  12426. height: math.unit(680, "feet"),
  12427. default: true
  12428. },
  12429. {
  12430. name: "Megamacro",
  12431. height: math.unit(1, "mile")
  12432. },
  12433. {
  12434. name: "Megamacro+",
  12435. height: math.unit(10, "miles")
  12436. },
  12437. ]
  12438. ))
  12439. characterMakers.push(() => makeCharacter(
  12440. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12441. {
  12442. front: {
  12443. height: math.unit(4, "feet"),
  12444. weight: math.unit(50, "lb"),
  12445. name: "Front",
  12446. image: {
  12447. source: "./media/characters/mal/front.svg",
  12448. extra: 785 / 724,
  12449. bottom: 0.07
  12450. }
  12451. },
  12452. },
  12453. [
  12454. {
  12455. name: "Micro",
  12456. height: math.unit(4, "inches")
  12457. },
  12458. {
  12459. name: "Normal",
  12460. height: math.unit(4, "feet"),
  12461. default: true
  12462. },
  12463. {
  12464. name: "Macro",
  12465. height: math.unit(200, "feet")
  12466. },
  12467. ]
  12468. ))
  12469. characterMakers.push(() => makeCharacter(
  12470. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12471. {
  12472. front: {
  12473. height: math.unit(6, "feet"),
  12474. weight: math.unit(150, "lb"),
  12475. name: "Front",
  12476. image: {
  12477. source: "./media/characters/jordan-deware/front.svg",
  12478. extra: 1191 / 1012
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Nano",
  12485. height: math.unit(0.01, "mm")
  12486. },
  12487. {
  12488. name: "Minimicro",
  12489. height: math.unit(1, "mm")
  12490. },
  12491. {
  12492. name: "Micro",
  12493. height: math.unit(0.5, "inches")
  12494. },
  12495. {
  12496. name: "Normal",
  12497. height: math.unit(4, "feet"),
  12498. default: true
  12499. },
  12500. {
  12501. name: "Minimacro",
  12502. height: math.unit(40, "meters")
  12503. },
  12504. {
  12505. name: "Small Macro",
  12506. height: math.unit(400, "meters")
  12507. },
  12508. {
  12509. name: "Macro",
  12510. height: math.unit(4, "miles")
  12511. },
  12512. {
  12513. name: "Megamacro",
  12514. height: math.unit(40, "miles")
  12515. },
  12516. {
  12517. name: "Megamacro+",
  12518. height: math.unit(400, "miles")
  12519. },
  12520. {
  12521. name: "Gigamacro",
  12522. height: math.unit(400000, "miles")
  12523. },
  12524. ]
  12525. ))
  12526. characterMakers.push(() => makeCharacter(
  12527. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12528. {
  12529. front: {
  12530. height: math.unit(15, "feet"),
  12531. weight: math.unit(3000, "kg"),
  12532. preyCapacity: math.unit(450, "people"),
  12533. name: "Front",
  12534. image: {
  12535. source: "./media/characters/kimiko/front.svg",
  12536. extra: 875/832,
  12537. bottom: 36/911
  12538. },
  12539. extraAttributes: {
  12540. "pawSize": {
  12541. name: "Paw Size",
  12542. power: 1,
  12543. type: "length",
  12544. base: math.unit(0.9, "meters")
  12545. },
  12546. }
  12547. },
  12548. side: {
  12549. height: math.unit(15, "feet"),
  12550. weight: math.unit(3000, "kg"),
  12551. preyCapacity: math.unit(400, "people"),
  12552. name: "Side",
  12553. image: {
  12554. source: "./media/characters/kimiko/side.svg",
  12555. extra: 448/270,
  12556. bottom: 7/455
  12557. },
  12558. extraAttributes: {
  12559. "pawSize": {
  12560. name: "Paw Size",
  12561. power: 1,
  12562. type: "length",
  12563. base: math.unit(0.9, "meters")
  12564. },
  12565. }
  12566. },
  12567. maw: {
  12568. height: math.unit(0.81, "feet"),
  12569. name: "Maw",
  12570. image: {
  12571. source: "./media/characters/kimiko/maw.svg"
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Normal",
  12578. height: math.unit(15, "feet"),
  12579. default: true
  12580. },
  12581. {
  12582. name: "Macro",
  12583. height: math.unit(220, "feet")
  12584. },
  12585. {
  12586. name: "Macro+",
  12587. height: math.unit(1450, "feet")
  12588. },
  12589. {
  12590. name: "Megamacro",
  12591. height: math.unit(11500, "feet")
  12592. },
  12593. {
  12594. name: "Gigamacro",
  12595. height: math.unit(9500, "miles")
  12596. },
  12597. {
  12598. name: "Teramacro",
  12599. height: math.unit(2208005005, "miles")
  12600. },
  12601. {
  12602. name: "Examacro",
  12603. height: math.unit(2750, "parsecs")
  12604. },
  12605. {
  12606. name: "Zettamacro",
  12607. height: math.unit(101500, "parsecs")
  12608. },
  12609. ]
  12610. ))
  12611. characterMakers.push(() => makeCharacter(
  12612. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12613. {
  12614. front: {
  12615. height: math.unit(6, "feet"),
  12616. weight: math.unit(70, "kg"),
  12617. name: "Front",
  12618. image: {
  12619. source: "./media/characters/andrew-sleepy/front.svg"
  12620. }
  12621. },
  12622. side: {
  12623. height: math.unit(6, "feet"),
  12624. weight: math.unit(70, "kg"),
  12625. name: "Side",
  12626. image: {
  12627. source: "./media/characters/andrew-sleepy/side.svg"
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Micro",
  12634. height: math.unit(1, "mm"),
  12635. default: true
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(6, "feet"),
  12644. weight: math.unit(150, "lb"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/judio/front.svg",
  12648. extra: 1258 / 1110
  12649. }
  12650. },
  12651. },
  12652. [
  12653. {
  12654. name: "Normal",
  12655. height: math.unit(5 + 6 / 12, "feet")
  12656. },
  12657. {
  12658. name: "Macro",
  12659. height: math.unit(1000, "feet"),
  12660. default: true
  12661. },
  12662. {
  12663. name: "Megamacro",
  12664. height: math.unit(10, "miles")
  12665. },
  12666. ]
  12667. ))
  12668. characterMakers.push(() => makeCharacter(
  12669. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12670. {
  12671. frontDressed: {
  12672. height: math.unit(6, "feet"),
  12673. weight: math.unit(68, "kg"),
  12674. name: "Front (Dressed)",
  12675. image: {
  12676. source: "./media/characters/nomaxice/front-dressed.svg",
  12677. extra: 1137/824,
  12678. bottom: 74/1211
  12679. }
  12680. },
  12681. frontShorts: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(68, "kg"),
  12684. name: "Front (Shorts)",
  12685. image: {
  12686. source: "./media/characters/nomaxice/front-shorts.svg",
  12687. extra: 1137/824,
  12688. bottom: 74/1211
  12689. }
  12690. },
  12691. back: {
  12692. height: math.unit(6, "feet"),
  12693. weight: math.unit(68, "kg"),
  12694. name: "Back",
  12695. image: {
  12696. source: "./media/characters/nomaxice/back.svg",
  12697. extra: 822/786,
  12698. bottom: 39/861
  12699. }
  12700. },
  12701. hand: {
  12702. height: math.unit(0.565, "feet"),
  12703. name: "Hand",
  12704. image: {
  12705. source: "./media/characters/nomaxice/hand.svg"
  12706. }
  12707. },
  12708. foot: {
  12709. height: math.unit(1, "feet"),
  12710. name: "Foot",
  12711. image: {
  12712. source: "./media/characters/nomaxice/foot.svg"
  12713. }
  12714. },
  12715. },
  12716. [
  12717. {
  12718. name: "Micro",
  12719. height: math.unit(8, "cm")
  12720. },
  12721. {
  12722. name: "Norm",
  12723. height: math.unit(1.82, "m")
  12724. },
  12725. {
  12726. name: "Norm+",
  12727. height: math.unit(8.8, "feet"),
  12728. default: true
  12729. },
  12730. {
  12731. name: "Big",
  12732. height: math.unit(8, "meters")
  12733. },
  12734. {
  12735. name: "Macro",
  12736. height: math.unit(18, "meters")
  12737. },
  12738. {
  12739. name: "Macro+",
  12740. height: math.unit(88, "meters")
  12741. },
  12742. ]
  12743. ))
  12744. characterMakers.push(() => makeCharacter(
  12745. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12746. {
  12747. front: {
  12748. height: math.unit(12, "feet"),
  12749. weight: math.unit(1.5, "tons"),
  12750. name: "Front",
  12751. image: {
  12752. source: "./media/characters/dydros/front.svg",
  12753. extra: 863 / 800,
  12754. bottom: 0.015
  12755. }
  12756. },
  12757. back: {
  12758. height: math.unit(12, "feet"),
  12759. weight: math.unit(1.5, "tons"),
  12760. name: "Back",
  12761. image: {
  12762. source: "./media/characters/dydros/back.svg",
  12763. extra: 900 / 843,
  12764. bottom: 0.005
  12765. }
  12766. },
  12767. },
  12768. [
  12769. {
  12770. name: "Normal",
  12771. height: math.unit(12, "feet"),
  12772. default: true
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12778. {
  12779. front: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(100, "kg"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/riggi/front.svg",
  12785. extra: 5787 / 5303
  12786. }
  12787. },
  12788. hyper: {
  12789. height: math.unit(6 * 5 / 3, "feet"),
  12790. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12791. name: "Hyper",
  12792. image: {
  12793. source: "./media/characters/riggi/hyper.svg",
  12794. extra: 3595 / 3485
  12795. }
  12796. },
  12797. },
  12798. [
  12799. {
  12800. name: "Small Macro",
  12801. height: math.unit(50, "feet")
  12802. },
  12803. {
  12804. name: "Default",
  12805. height: math.unit(200, "feet"),
  12806. default: true
  12807. },
  12808. {
  12809. name: "Loom",
  12810. height: math.unit(10000, "feet")
  12811. },
  12812. {
  12813. name: "Cruising Altitude",
  12814. height: math.unit(30000, "feet")
  12815. },
  12816. {
  12817. name: "Megamacro",
  12818. height: math.unit(100, "miles")
  12819. },
  12820. {
  12821. name: "Continent Sized",
  12822. height: math.unit(2800, "miles")
  12823. },
  12824. {
  12825. name: "Earth Sized",
  12826. height: math.unit(8000, "miles")
  12827. },
  12828. ]
  12829. ))
  12830. characterMakers.push(() => makeCharacter(
  12831. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12832. {
  12833. front: {
  12834. height: math.unit(6, "feet"),
  12835. weight: math.unit(250, "lb"),
  12836. name: "Front",
  12837. image: {
  12838. source: "./media/characters/alexi/front.svg",
  12839. extra: 3483 / 3291,
  12840. bottom: 0.04
  12841. }
  12842. },
  12843. back: {
  12844. height: math.unit(6, "feet"),
  12845. weight: math.unit(250, "lb"),
  12846. name: "Back",
  12847. image: {
  12848. source: "./media/characters/alexi/back.svg",
  12849. extra: 3533 / 3356,
  12850. bottom: 0.021
  12851. }
  12852. },
  12853. frontTransforming: {
  12854. height: math.unit(8.58, "feet"),
  12855. weight: math.unit(1300, "lb"),
  12856. name: "Transforming",
  12857. image: {
  12858. source: "./media/characters/alexi/front-transforming.svg",
  12859. extra: 437 / 409,
  12860. bottom: 19 / 458.66
  12861. }
  12862. },
  12863. frontTransformed: {
  12864. height: math.unit(12.5, "feet"),
  12865. weight: math.unit(4000, "lb"),
  12866. name: "Transformed",
  12867. image: {
  12868. source: "./media/characters/alexi/front-transformed.svg",
  12869. extra: 639 / 614,
  12870. bottom: 30.55 / 671
  12871. }
  12872. },
  12873. },
  12874. [
  12875. {
  12876. name: "Normal",
  12877. height: math.unit(14, "feet"),
  12878. default: true
  12879. },
  12880. {
  12881. name: "Minimacro",
  12882. height: math.unit(30, "meters")
  12883. },
  12884. {
  12885. name: "Macro",
  12886. height: math.unit(500, "meters")
  12887. },
  12888. {
  12889. name: "Megamacro",
  12890. height: math.unit(9000, "km")
  12891. },
  12892. {
  12893. name: "Teramacro",
  12894. height: math.unit(384000, "km")
  12895. },
  12896. ]
  12897. ))
  12898. characterMakers.push(() => makeCharacter(
  12899. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12900. {
  12901. front: {
  12902. height: math.unit(6, "feet"),
  12903. weight: math.unit(150, "lb"),
  12904. name: "Front",
  12905. image: {
  12906. source: "./media/characters/kayroo/front.svg",
  12907. extra: 1153 / 1038,
  12908. bottom: 0.06
  12909. }
  12910. },
  12911. foot: {
  12912. height: math.unit(6, "feet"),
  12913. weight: math.unit(150, "lb"),
  12914. name: "Foot",
  12915. image: {
  12916. source: "./media/characters/kayroo/foot.svg"
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Normal",
  12923. height: math.unit(8, "feet"),
  12924. default: true
  12925. },
  12926. {
  12927. name: "Minimacro",
  12928. height: math.unit(250, "feet")
  12929. },
  12930. {
  12931. name: "Macro",
  12932. height: math.unit(2800, "feet")
  12933. },
  12934. {
  12935. name: "Megamacro",
  12936. height: math.unit(5200, "feet")
  12937. },
  12938. {
  12939. name: "Gigamacro",
  12940. height: math.unit(27000, "feet")
  12941. },
  12942. {
  12943. name: "Omega",
  12944. height: math.unit(45000, "feet")
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12950. {
  12951. front: {
  12952. height: math.unit(18, "feet"),
  12953. weight: math.unit(5800, "lb"),
  12954. name: "Front",
  12955. image: {
  12956. source: "./media/characters/rhys/front.svg",
  12957. extra: 3386 / 3090,
  12958. bottom: 0.07
  12959. }
  12960. },
  12961. },
  12962. [
  12963. {
  12964. name: "Normal",
  12965. height: math.unit(18, "feet"),
  12966. default: true
  12967. },
  12968. {
  12969. name: "Working Size",
  12970. height: math.unit(200, "feet")
  12971. },
  12972. {
  12973. name: "Demolition Size",
  12974. height: math.unit(2000, "feet")
  12975. },
  12976. {
  12977. name: "Maximum Licensed Size",
  12978. height: math.unit(5, "miles")
  12979. },
  12980. {
  12981. name: "Maximum Observed Size",
  12982. height: math.unit(10, "yottameters")
  12983. },
  12984. ]
  12985. ))
  12986. characterMakers.push(() => makeCharacter(
  12987. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12988. {
  12989. front: {
  12990. height: math.unit(6, "feet"),
  12991. weight: math.unit(250, "lb"),
  12992. name: "Front",
  12993. image: {
  12994. source: "./media/characters/toto/front.svg",
  12995. extra: 527 / 479,
  12996. bottom: 0.05
  12997. }
  12998. },
  12999. },
  13000. [
  13001. {
  13002. name: "Micro",
  13003. height: math.unit(3, "feet")
  13004. },
  13005. {
  13006. name: "Normal",
  13007. height: math.unit(10, "feet")
  13008. },
  13009. {
  13010. name: "Macro",
  13011. height: math.unit(150, "feet"),
  13012. default: true
  13013. },
  13014. {
  13015. name: "Megamacro",
  13016. height: math.unit(1200, "feet")
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "King", species: ["lion"], tags: ["anthro"] },
  13022. {
  13023. back: {
  13024. height: math.unit(6, "feet"),
  13025. weight: math.unit(150, "lb"),
  13026. name: "Back",
  13027. image: {
  13028. source: "./media/characters/king/back.svg"
  13029. }
  13030. },
  13031. },
  13032. [
  13033. {
  13034. name: "Micro",
  13035. height: math.unit(2, "inches")
  13036. },
  13037. {
  13038. name: "Normal",
  13039. height: math.unit(8, "feet")
  13040. },
  13041. {
  13042. name: "Macro",
  13043. height: math.unit(200, "feet"),
  13044. default: true
  13045. },
  13046. {
  13047. name: "Megamacro",
  13048. height: math.unit(50, "miles")
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  13054. {
  13055. front: {
  13056. height: math.unit(11, "feet"),
  13057. weight: math.unit(1400, "lb"),
  13058. name: "Front",
  13059. image: {
  13060. source: "./media/characters/cordite/front.svg",
  13061. extra: 1919/1827,
  13062. bottom: 40/1959
  13063. }
  13064. },
  13065. side: {
  13066. height: math.unit(11, "feet"),
  13067. weight: math.unit(1400, "lb"),
  13068. name: "Side",
  13069. image: {
  13070. source: "./media/characters/cordite/side.svg",
  13071. extra: 1908/1793,
  13072. bottom: 38/1946
  13073. }
  13074. },
  13075. back: {
  13076. height: math.unit(11, "feet"),
  13077. weight: math.unit(1400, "lb"),
  13078. name: "Back",
  13079. image: {
  13080. source: "./media/characters/cordite/back.svg",
  13081. extra: 1938/1837,
  13082. bottom: 10/1948
  13083. }
  13084. },
  13085. feral: {
  13086. height: math.unit(2, "feet"),
  13087. weight: math.unit(90, "lb"),
  13088. name: "Feral",
  13089. image: {
  13090. source: "./media/characters/cordite/feral.svg",
  13091. extra: 1260 / 755,
  13092. bottom: 0.05
  13093. }
  13094. },
  13095. },
  13096. [
  13097. {
  13098. name: "Normal",
  13099. height: math.unit(11, "feet"),
  13100. default: true
  13101. },
  13102. ]
  13103. ))
  13104. characterMakers.push(() => makeCharacter(
  13105. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  13106. {
  13107. front: {
  13108. height: math.unit(6, "feet"),
  13109. weight: math.unit(150, "lb"),
  13110. name: "Front",
  13111. image: {
  13112. source: "./media/characters/pianostrong/front.svg",
  13113. extra: 6577 / 6254,
  13114. bottom: 0.02
  13115. }
  13116. },
  13117. side: {
  13118. height: math.unit(6, "feet"),
  13119. weight: math.unit(150, "lb"),
  13120. name: "Side",
  13121. image: {
  13122. source: "./media/characters/pianostrong/side.svg",
  13123. extra: 6106 / 5730
  13124. }
  13125. },
  13126. back: {
  13127. height: math.unit(6, "feet"),
  13128. weight: math.unit(150, "lb"),
  13129. name: "Back",
  13130. image: {
  13131. source: "./media/characters/pianostrong/back.svg",
  13132. extra: 6085 / 5733,
  13133. bottom: 0.01
  13134. }
  13135. },
  13136. },
  13137. [
  13138. {
  13139. name: "Macro",
  13140. height: math.unit(100, "feet")
  13141. },
  13142. {
  13143. name: "Macro+",
  13144. height: math.unit(300, "feet"),
  13145. default: true
  13146. },
  13147. {
  13148. name: "Macro++",
  13149. height: math.unit(1000, "feet")
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(6, "feet"),
  13158. weight: math.unit(150, "lb"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/kona/front.svg",
  13162. extra: 2960 / 2629,
  13163. bottom: 0.005
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(11 + 8 / 12, "feet")
  13171. },
  13172. {
  13173. name: "Macro",
  13174. height: math.unit(850, "feet"),
  13175. default: true
  13176. },
  13177. {
  13178. name: "Macro+",
  13179. height: math.unit(1.5, "km"),
  13180. default: true
  13181. },
  13182. {
  13183. name: "Megamacro",
  13184. height: math.unit(80, "miles")
  13185. },
  13186. {
  13187. name: "Gigamacro",
  13188. height: math.unit(3500, "miles")
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13194. {
  13195. side: {
  13196. height: math.unit(1.9, "meters"),
  13197. weight: math.unit(326, "kg"),
  13198. name: "Side",
  13199. image: {
  13200. source: "./media/characters/levi/side.svg",
  13201. extra: 1704 / 1334,
  13202. bottom: 0.02
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Normal",
  13209. height: math.unit(1.9, "meters"),
  13210. default: true
  13211. },
  13212. {
  13213. name: "Macro",
  13214. height: math.unit(20, "meters")
  13215. },
  13216. {
  13217. name: "Macro+",
  13218. height: math.unit(200, "meters")
  13219. },
  13220. {
  13221. name: "Megamacro",
  13222. height: math.unit(2, "km")
  13223. },
  13224. {
  13225. name: "Megamacro+",
  13226. height: math.unit(20, "km")
  13227. },
  13228. {
  13229. name: "Gigamacro",
  13230. height: math.unit(2500, "km")
  13231. },
  13232. {
  13233. name: "Gigamacro+",
  13234. height: math.unit(120000, "km")
  13235. },
  13236. {
  13237. name: "Teramacro",
  13238. height: math.unit(7.77e6, "km")
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13244. {
  13245. front: {
  13246. height: math.unit(6 + 4/12, "feet"),
  13247. weight: math.unit(190, "lb"),
  13248. name: "Front",
  13249. image: {
  13250. source: "./media/characters/bmc/front.svg",
  13251. extra: 1626/1472,
  13252. bottom: 79/1705
  13253. }
  13254. },
  13255. back: {
  13256. height: math.unit(6 + 4/12, "feet"),
  13257. weight: math.unit(190, "lb"),
  13258. name: "Back",
  13259. image: {
  13260. source: "./media/characters/bmc/back.svg",
  13261. extra: 1640/1479,
  13262. bottom: 45/1685
  13263. }
  13264. },
  13265. frontArmor: {
  13266. height: math.unit(6 + 4/12, "feet"),
  13267. weight: math.unit(190, "lb"),
  13268. name: "Front (Armor)",
  13269. image: {
  13270. source: "./media/characters/bmc/front-armor.svg",
  13271. extra: 1538/1468,
  13272. bottom: 79/1617
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Human-sized",
  13279. height: math.unit(6 + 4 / 12, "feet")
  13280. },
  13281. {
  13282. name: "Interactive Size",
  13283. height: math.unit(25, "feet")
  13284. },
  13285. {
  13286. name: "Small",
  13287. height: math.unit(250, "feet")
  13288. },
  13289. {
  13290. name: "Normal",
  13291. height: math.unit(1250, "feet"),
  13292. default: true
  13293. },
  13294. {
  13295. name: "Good Day",
  13296. height: math.unit(88, "miles")
  13297. },
  13298. {
  13299. name: "Largest Measured Size",
  13300. height: math.unit(105.960, "galaxies")
  13301. },
  13302. ]
  13303. ))
  13304. characterMakers.push(() => makeCharacter(
  13305. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13306. {
  13307. front: {
  13308. height: math.unit(20, "feet"),
  13309. weight: math.unit(2016, "kg"),
  13310. name: "Front",
  13311. image: {
  13312. source: "./media/characters/sven-the-kaiju/front.svg",
  13313. extra: 1277/1250,
  13314. bottom: 35/1312
  13315. }
  13316. },
  13317. mouth: {
  13318. height: math.unit(1.85, "feet"),
  13319. name: "Mouth",
  13320. image: {
  13321. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13322. }
  13323. },
  13324. },
  13325. [
  13326. {
  13327. name: "Fairy",
  13328. height: math.unit(6, "inches")
  13329. },
  13330. {
  13331. name: "Normal",
  13332. height: math.unit(20, "feet"),
  13333. default: true
  13334. },
  13335. {
  13336. name: "Rampage",
  13337. height: math.unit(200, "feet")
  13338. },
  13339. {
  13340. name: "Archfey Forest Guardian",
  13341. height: math.unit(1, "mile")
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13347. {
  13348. front: {
  13349. height: math.unit(4, "meters"),
  13350. weight: math.unit(2, "tons"),
  13351. name: "Front",
  13352. image: {
  13353. source: "./media/characters/marik/front.svg",
  13354. extra: 1057 / 1003,
  13355. bottom: 0.08
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Normal",
  13362. height: math.unit(4, "meters"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Macro",
  13367. height: math.unit(20, "meters")
  13368. },
  13369. {
  13370. name: "Megamacro",
  13371. height: math.unit(50, "km")
  13372. },
  13373. {
  13374. name: "Gigamacro",
  13375. height: math.unit(100, "km")
  13376. },
  13377. {
  13378. name: "Alpha Macro",
  13379. height: math.unit(7.88e7, "yottameters")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(6, "feet"),
  13388. weight: math.unit(110, "lb"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/mel/front.svg",
  13392. extra: 736 / 617,
  13393. bottom: 0.017
  13394. }
  13395. },
  13396. },
  13397. [
  13398. {
  13399. name: "Pico",
  13400. height: math.unit(3, "pm")
  13401. },
  13402. {
  13403. name: "Nano",
  13404. height: math.unit(3, "nm")
  13405. },
  13406. {
  13407. name: "Micro",
  13408. height: math.unit(0.3, "mm"),
  13409. default: true
  13410. },
  13411. {
  13412. name: "Micro+",
  13413. height: math.unit(3, "mm")
  13414. },
  13415. {
  13416. name: "Normal",
  13417. height: math.unit(5 + 10.5 / 12, "feet")
  13418. },
  13419. ]
  13420. ))
  13421. characterMakers.push(() => makeCharacter(
  13422. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13423. {
  13424. kaiju: {
  13425. height: math.unit(1.75, "meters"),
  13426. weight: math.unit(55, "kg"),
  13427. name: "Kaiju",
  13428. image: {
  13429. source: "./media/characters/lykonous/kaiju.svg",
  13430. extra: 1055 / 946,
  13431. bottom: 0.135
  13432. }
  13433. },
  13434. },
  13435. [
  13436. {
  13437. name: "Normal",
  13438. height: math.unit(2.5, "meters"),
  13439. default: true
  13440. },
  13441. {
  13442. name: "Kaiju Dragon",
  13443. height: math.unit(60, "meters")
  13444. },
  13445. {
  13446. name: "Mega Kaiju",
  13447. height: math.unit(120, "km")
  13448. },
  13449. {
  13450. name: "Giga Kaiju",
  13451. height: math.unit(200, "megameters")
  13452. },
  13453. {
  13454. name: "Terra Kaiju",
  13455. height: math.unit(400, "gigameters")
  13456. },
  13457. {
  13458. name: "Kaiju Dragon God",
  13459. height: math.unit(13000, "exaparsecs")
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13465. {
  13466. front: {
  13467. height: math.unit(6, "feet"),
  13468. weight: math.unit(150, "lb"),
  13469. name: "Front",
  13470. image: {
  13471. source: "./media/characters/blü/front.svg",
  13472. extra: 1883 / 1564,
  13473. bottom: 0.031
  13474. }
  13475. },
  13476. },
  13477. [
  13478. {
  13479. name: "Normal",
  13480. height: math.unit(13, "feet"),
  13481. default: true
  13482. },
  13483. {
  13484. name: "Big Boi",
  13485. height: math.unit(150, "meters")
  13486. },
  13487. {
  13488. name: "Mini Stomper",
  13489. height: math.unit(300, "meters")
  13490. },
  13491. {
  13492. name: "Macro",
  13493. height: math.unit(1000, "meters")
  13494. },
  13495. {
  13496. name: "Megamacro",
  13497. height: math.unit(11000, "meters")
  13498. },
  13499. {
  13500. name: "Gigamacro",
  13501. height: math.unit(11000, "km")
  13502. },
  13503. {
  13504. name: "Teramacro",
  13505. height: math.unit(420000, "km")
  13506. },
  13507. {
  13508. name: "Examacro",
  13509. height: math.unit(120, "parsecs")
  13510. },
  13511. {
  13512. name: "God Tho",
  13513. height: math.unit(98000000000, "parsecs")
  13514. },
  13515. ]
  13516. ))
  13517. characterMakers.push(() => makeCharacter(
  13518. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13519. {
  13520. taurFront: {
  13521. height: math.unit(6, "feet"),
  13522. weight: math.unit(200, "lb"),
  13523. name: "Taur (Front)",
  13524. image: {
  13525. source: "./media/characters/scales/taur-front.svg",
  13526. extra: 1,
  13527. bottom: 0.05
  13528. }
  13529. },
  13530. taurBack: {
  13531. height: math.unit(6, "feet"),
  13532. weight: math.unit(200, "lb"),
  13533. name: "Taur (Back)",
  13534. image: {
  13535. source: "./media/characters/scales/taur-back.svg",
  13536. extra: 1,
  13537. bottom: 0.08
  13538. }
  13539. },
  13540. anthro: {
  13541. height: math.unit(6 * 7 / 12, "feet"),
  13542. weight: math.unit(100, "lb"),
  13543. name: "Anthro",
  13544. image: {
  13545. source: "./media/characters/scales/anthro.svg",
  13546. extra: 1,
  13547. bottom: 0.06
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Normal",
  13554. height: math.unit(12, "feet"),
  13555. default: true
  13556. },
  13557. ]
  13558. ))
  13559. characterMakers.push(() => makeCharacter(
  13560. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13561. {
  13562. front: {
  13563. height: math.unit(6, "feet"),
  13564. weight: math.unit(150, "lb"),
  13565. name: "Front",
  13566. image: {
  13567. source: "./media/characters/koragos/front.svg",
  13568. extra: 841 / 794,
  13569. bottom: 0.035
  13570. }
  13571. },
  13572. back: {
  13573. height: math.unit(6, "feet"),
  13574. weight: math.unit(150, "lb"),
  13575. name: "Back",
  13576. image: {
  13577. source: "./media/characters/koragos/back.svg",
  13578. extra: 841 / 810,
  13579. bottom: 0.022
  13580. }
  13581. },
  13582. },
  13583. [
  13584. {
  13585. name: "Normal",
  13586. height: math.unit(6 + 11 / 12, "feet"),
  13587. default: true
  13588. },
  13589. {
  13590. name: "Macro",
  13591. height: math.unit(490, "feet")
  13592. },
  13593. {
  13594. name: "Megamacro",
  13595. height: math.unit(10, "miles")
  13596. },
  13597. {
  13598. name: "Gigamacro",
  13599. height: math.unit(50, "miles")
  13600. },
  13601. ]
  13602. ))
  13603. characterMakers.push(() => makeCharacter(
  13604. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13605. {
  13606. front: {
  13607. height: math.unit(6, "feet"),
  13608. weight: math.unit(250, "lb"),
  13609. name: "Front",
  13610. image: {
  13611. source: "./media/characters/xylrem/front.svg",
  13612. extra: 3323 / 3050,
  13613. bottom: 0.065
  13614. }
  13615. },
  13616. },
  13617. [
  13618. {
  13619. name: "Micro",
  13620. height: math.unit(4, "feet")
  13621. },
  13622. {
  13623. name: "Normal",
  13624. height: math.unit(16, "feet"),
  13625. default: true
  13626. },
  13627. {
  13628. name: "Macro",
  13629. height: math.unit(2720, "feet")
  13630. },
  13631. {
  13632. name: "Megamacro",
  13633. height: math.unit(25000, "miles")
  13634. },
  13635. ]
  13636. ))
  13637. characterMakers.push(() => makeCharacter(
  13638. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13639. {
  13640. front: {
  13641. height: math.unit(8, "feet"),
  13642. weight: math.unit(250, "kg"),
  13643. name: "Front",
  13644. image: {
  13645. source: "./media/characters/ikideru/front.svg",
  13646. extra: 930 / 870,
  13647. bottom: 0.087
  13648. }
  13649. },
  13650. back: {
  13651. height: math.unit(8, "feet"),
  13652. weight: math.unit(250, "kg"),
  13653. name: "Back",
  13654. image: {
  13655. source: "./media/characters/ikideru/back.svg",
  13656. extra: 919 / 852,
  13657. bottom: 0.055
  13658. }
  13659. },
  13660. },
  13661. [
  13662. {
  13663. name: "Rare",
  13664. height: math.unit(8, "feet"),
  13665. default: true
  13666. },
  13667. {
  13668. name: "Playful Loom",
  13669. height: math.unit(80, "feet")
  13670. },
  13671. {
  13672. name: "City Leaner",
  13673. height: math.unit(230, "feet")
  13674. },
  13675. {
  13676. name: "Megamacro",
  13677. height: math.unit(2500, "feet")
  13678. },
  13679. {
  13680. name: "Gigamacro",
  13681. height: math.unit(26400, "feet")
  13682. },
  13683. {
  13684. name: "Tectonic Shifter",
  13685. height: math.unit(1.7, "megameters")
  13686. },
  13687. {
  13688. name: "Planet Carer",
  13689. height: math.unit(21, "megameters")
  13690. },
  13691. {
  13692. name: "God",
  13693. height: math.unit(11157.22, "parsecs")
  13694. },
  13695. ]
  13696. ))
  13697. characterMakers.push(() => makeCharacter(
  13698. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13699. {
  13700. front: {
  13701. height: math.unit(6, "feet"),
  13702. weight: math.unit(120, "lb"),
  13703. name: "Front",
  13704. image: {
  13705. source: "./media/characters/neo/front.svg"
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Micro",
  13712. height: math.unit(2, "inches"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Human Size",
  13717. height: math.unit(5 + 8 / 12, "feet")
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13723. {
  13724. front: {
  13725. height: math.unit(13 + 10 / 12, "feet"),
  13726. weight: math.unit(5320, "lb"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/chauncey-chantz/front.svg",
  13730. extra: 1587 / 1435,
  13731. bottom: 0.02
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "Normal",
  13738. height: math.unit(13 + 10 / 12, "feet"),
  13739. default: true
  13740. },
  13741. {
  13742. name: "Macro",
  13743. height: math.unit(45, "feet")
  13744. },
  13745. {
  13746. name: "Megamacro",
  13747. height: math.unit(250, "miles")
  13748. },
  13749. {
  13750. name: "Planetary",
  13751. height: math.unit(10000, "miles")
  13752. },
  13753. {
  13754. name: "Galactic",
  13755. height: math.unit(40000, "parsecs")
  13756. },
  13757. {
  13758. name: "Universal",
  13759. height: math.unit(1, "yottameter")
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13765. {
  13766. front: {
  13767. height: math.unit(6, "feet"),
  13768. weight: math.unit(150, "lb"),
  13769. name: "Front",
  13770. image: {
  13771. source: "./media/characters/epifox/front.svg",
  13772. extra: 1,
  13773. bottom: 0.075
  13774. }
  13775. },
  13776. },
  13777. [
  13778. {
  13779. name: "Micro",
  13780. height: math.unit(6, "inches")
  13781. },
  13782. {
  13783. name: "Normal",
  13784. height: math.unit(12, "feet"),
  13785. default: true
  13786. },
  13787. {
  13788. name: "Macro",
  13789. height: math.unit(3810, "feet")
  13790. },
  13791. {
  13792. name: "Megamacro",
  13793. height: math.unit(500, "miles")
  13794. },
  13795. ]
  13796. ))
  13797. characterMakers.push(() => makeCharacter(
  13798. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13799. {
  13800. front: {
  13801. height: math.unit(1.8796, "m"),
  13802. weight: math.unit(230, "lb"),
  13803. name: "Front",
  13804. image: {
  13805. source: "./media/characters/colin-t/front.svg",
  13806. extra: 1272 / 1193,
  13807. bottom: 0.07
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Micro",
  13814. height: math.unit(0.571, "meters")
  13815. },
  13816. {
  13817. name: "Normal",
  13818. height: math.unit(1.8796, "meters"),
  13819. default: true
  13820. },
  13821. {
  13822. name: "Tall",
  13823. height: math.unit(4, "meters")
  13824. },
  13825. {
  13826. name: "Macro",
  13827. height: math.unit(67.241, "meters")
  13828. },
  13829. {
  13830. name: "Megamacro",
  13831. height: math.unit(371.856, "meters")
  13832. },
  13833. {
  13834. name: "Planetary",
  13835. height: math.unit(12631.5689, "km")
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13841. {
  13842. front: {
  13843. height: math.unit(1.85, "meters"),
  13844. weight: math.unit(80, "kg"),
  13845. name: "Front",
  13846. image: {
  13847. source: "./media/characters/matvei/front.svg",
  13848. extra: 456/447,
  13849. bottom: 8/464
  13850. }
  13851. },
  13852. back: {
  13853. height: math.unit(1.85, "meters"),
  13854. weight: math.unit(80, "kg"),
  13855. name: "Back",
  13856. image: {
  13857. source: "./media/characters/matvei/back.svg",
  13858. extra: 434/427,
  13859. bottom: 11/445
  13860. }
  13861. },
  13862. },
  13863. [
  13864. {
  13865. name: "Normal",
  13866. height: math.unit(1.85, "meters"),
  13867. default: true
  13868. },
  13869. ]
  13870. ))
  13871. characterMakers.push(() => makeCharacter(
  13872. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13873. {
  13874. front: {
  13875. height: math.unit(5 + 9 / 12, "feet"),
  13876. weight: math.unit(70, "lb"),
  13877. name: "Front",
  13878. image: {
  13879. source: "./media/characters/quincy/front.svg",
  13880. extra: 3041 / 2751
  13881. }
  13882. },
  13883. back: {
  13884. height: math.unit(5 + 9 / 12, "feet"),
  13885. weight: math.unit(70, "lb"),
  13886. name: "Back",
  13887. image: {
  13888. source: "./media/characters/quincy/back.svg",
  13889. extra: 3041 / 2751
  13890. }
  13891. },
  13892. flying: {
  13893. height: math.unit(5 + 4 / 12, "feet"),
  13894. weight: math.unit(70, "lb"),
  13895. name: "Flying",
  13896. image: {
  13897. source: "./media/characters/quincy/flying.svg",
  13898. extra: 1044 / 930
  13899. }
  13900. },
  13901. },
  13902. [
  13903. {
  13904. name: "Micro",
  13905. height: math.unit(3, "cm")
  13906. },
  13907. {
  13908. name: "Normal",
  13909. height: math.unit(5 + 9 / 12, "feet")
  13910. },
  13911. {
  13912. name: "Macro",
  13913. height: math.unit(200, "meters"),
  13914. default: true
  13915. },
  13916. {
  13917. name: "Megamacro",
  13918. height: math.unit(1000, "meters")
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(3 + 11/12, "feet"),
  13927. weight: math.unit(50, "lb"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/vanrel/front.svg",
  13931. extra: 1104/949,
  13932. bottom: 52/1156
  13933. }
  13934. },
  13935. back: {
  13936. height: math.unit(3 + 11/12, "feet"),
  13937. weight: math.unit(50, "lb"),
  13938. name: "Back",
  13939. image: {
  13940. source: "./media/characters/vanrel/back.svg",
  13941. extra: 1119/976,
  13942. bottom: 37/1156
  13943. }
  13944. },
  13945. tome: {
  13946. height: math.unit(1.35, "feet"),
  13947. weight: math.unit(10, "lb"),
  13948. name: "Vanrel's Tome",
  13949. rename: true,
  13950. image: {
  13951. source: "./media/characters/vanrel/tome.svg"
  13952. }
  13953. },
  13954. beans: {
  13955. height: math.unit(0.89, "feet"),
  13956. name: "Beans",
  13957. image: {
  13958. source: "./media/characters/vanrel/beans.svg"
  13959. }
  13960. },
  13961. },
  13962. [
  13963. {
  13964. name: "Normal",
  13965. height: math.unit(3 + 11/12, "feet"),
  13966. default: true
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13972. {
  13973. front: {
  13974. height: math.unit(7 + 5 / 12, "feet"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/kuiper-vanrel/front.svg",
  13978. extra: 1219/1169,
  13979. bottom: 69/1288
  13980. }
  13981. },
  13982. back: {
  13983. height: math.unit(7 + 5 / 12, "feet"),
  13984. name: "Back",
  13985. image: {
  13986. source: "./media/characters/kuiper-vanrel/back.svg",
  13987. extra: 1236/1193,
  13988. bottom: 27/1263
  13989. }
  13990. },
  13991. foot: {
  13992. height: math.unit(0.55, "meters"),
  13993. name: "Foot",
  13994. image: {
  13995. source: "./media/characters/kuiper-vanrel/foot.svg",
  13996. }
  13997. },
  13998. battle: {
  13999. height: math.unit(6.824, "feet"),
  14000. name: "Battle",
  14001. image: {
  14002. source: "./media/characters/kuiper-vanrel/battle.svg",
  14003. extra: 1466 / 1327,
  14004. bottom: 29 / 1492.5
  14005. }
  14006. },
  14007. meerkui: {
  14008. height: math.unit(18, "inches"),
  14009. name: "Meerkui",
  14010. image: {
  14011. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  14012. extra: 1354/1289,
  14013. bottom: 69/1423
  14014. }
  14015. },
  14016. },
  14017. [
  14018. {
  14019. name: "Normal",
  14020. height: math.unit(7 + 5 / 12, "feet"),
  14021. default: true
  14022. },
  14023. ]
  14024. ))
  14025. characterMakers.push(() => makeCharacter(
  14026. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  14027. {
  14028. front: {
  14029. height: math.unit(8 + 5 / 12, "feet"),
  14030. name: "Front",
  14031. image: {
  14032. source: "./media/characters/keset-vanrel/front.svg",
  14033. extra: 1231/1148,
  14034. bottom: 82/1313
  14035. }
  14036. },
  14037. back: {
  14038. height: math.unit(8 + 5 / 12, "feet"),
  14039. name: "Back",
  14040. image: {
  14041. source: "./media/characters/keset-vanrel/back.svg",
  14042. extra: 1240/1174,
  14043. bottom: 33/1273
  14044. }
  14045. },
  14046. hand: {
  14047. height: math.unit(0.6, "meters"),
  14048. name: "Hand",
  14049. image: {
  14050. source: "./media/characters/keset-vanrel/hand.svg"
  14051. }
  14052. },
  14053. foot: {
  14054. height: math.unit(0.94978, "meters"),
  14055. name: "Foot",
  14056. image: {
  14057. source: "./media/characters/keset-vanrel/foot.svg"
  14058. }
  14059. },
  14060. battle: {
  14061. height: math.unit(7.408, "feet"),
  14062. name: "Battle",
  14063. image: {
  14064. source: "./media/characters/keset-vanrel/battle.svg",
  14065. extra: 1890 / 1386,
  14066. bottom: 73.28 / 1970
  14067. }
  14068. },
  14069. },
  14070. [
  14071. {
  14072. name: "Normal",
  14073. height: math.unit(8 + 5 / 12, "feet"),
  14074. default: true
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  14080. {
  14081. front: {
  14082. height: math.unit(6, "feet"),
  14083. weight: math.unit(150, "lb"),
  14084. name: "Front",
  14085. image: {
  14086. source: "./media/characters/neos/front.svg",
  14087. extra: 1696 / 992,
  14088. bottom: 0.14
  14089. }
  14090. },
  14091. },
  14092. [
  14093. {
  14094. name: "Normal",
  14095. height: math.unit(54, "cm"),
  14096. default: true
  14097. },
  14098. {
  14099. name: "Macro",
  14100. height: math.unit(100, "m")
  14101. },
  14102. {
  14103. name: "Megamacro",
  14104. height: math.unit(10, "km")
  14105. },
  14106. {
  14107. name: "Megamacro+",
  14108. height: math.unit(100, "km")
  14109. },
  14110. {
  14111. name: "Gigamacro",
  14112. height: math.unit(100, "Mm")
  14113. },
  14114. {
  14115. name: "Teramacro",
  14116. height: math.unit(100, "Gm")
  14117. },
  14118. {
  14119. name: "Examacro",
  14120. height: math.unit(100, "Em")
  14121. },
  14122. {
  14123. name: "Godly",
  14124. height: math.unit(10000, "Ym")
  14125. },
  14126. {
  14127. name: "Beyond Godly",
  14128. height: math.unit(25, "multiverses")
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14134. {
  14135. fluide_tame: {
  14136. height: math.unit(5, "feet"),
  14137. name: "Tame",
  14138. image: {
  14139. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14140. extra: 1655/1574,
  14141. bottom: 231/1886
  14142. },
  14143. form: "fluide",
  14144. default: true
  14145. },
  14146. fluide_nude: {
  14147. height: math.unit(5, "feet"),
  14148. name: "Nude",
  14149. image: {
  14150. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14151. extra: 1655/1574,
  14152. bottom: 231/1886
  14153. },
  14154. form: "fluide",
  14155. },
  14156. male_tame: {
  14157. height: math.unit(5, "feet"),
  14158. name: "Tame",
  14159. image: {
  14160. source: "./media/characters/sammy-mouse/male-tame.svg",
  14161. extra: 1655/1574,
  14162. bottom: 231/1886
  14163. },
  14164. form: "male",
  14165. default: true
  14166. },
  14167. male_nude: {
  14168. height: math.unit(5, "feet"),
  14169. name: "Nude",
  14170. image: {
  14171. source: "./media/characters/sammy-mouse/male-nude.svg",
  14172. extra: 1655/1574,
  14173. bottom: 231/1886
  14174. },
  14175. form: "male",
  14176. },
  14177. female_nude: {
  14178. height: math.unit(5, "feet"),
  14179. name: "Nude",
  14180. image: {
  14181. source: "./media/characters/sammy-mouse/female-nude.svg",
  14182. extra: 1655/1574,
  14183. bottom: 231/1886
  14184. },
  14185. form: "female",
  14186. default: true
  14187. },
  14188. mouth: {
  14189. height: math.unit(0.32, "feet"),
  14190. name: "Mouth",
  14191. image: {
  14192. source: "./media/characters/sammy-mouse/mouth.svg"
  14193. },
  14194. allForms: true
  14195. },
  14196. paw: {
  14197. height: math.unit(0.42, "feet"),
  14198. name: "Paw",
  14199. image: {
  14200. source: "./media/characters/sammy-mouse/paw.svg"
  14201. },
  14202. allForms: true
  14203. },
  14204. },
  14205. [
  14206. {
  14207. name: "Micro",
  14208. height: math.unit(5, "inches"),
  14209. allForms: true
  14210. },
  14211. {
  14212. name: "Normal",
  14213. height: math.unit(5, "feet"),
  14214. default: true,
  14215. allForms: true
  14216. },
  14217. {
  14218. name: "Macro",
  14219. height: math.unit(60, "feet"),
  14220. allForms: true
  14221. },
  14222. ],
  14223. {
  14224. "fluide": {
  14225. name: "Fluide",
  14226. default: true
  14227. },
  14228. "male": {
  14229. name: "Male",
  14230. },
  14231. "female": {
  14232. name: "Female",
  14233. },
  14234. }
  14235. ))
  14236. characterMakers.push(() => makeCharacter(
  14237. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14238. {
  14239. front: {
  14240. height: math.unit(4, "feet"),
  14241. weight: math.unit(50, "lb"),
  14242. name: "Front",
  14243. image: {
  14244. source: "./media/characters/kole/front.svg",
  14245. extra: 1423 / 1303,
  14246. bottom: 0.025
  14247. }
  14248. },
  14249. back: {
  14250. height: math.unit(4, "feet"),
  14251. weight: math.unit(50, "lb"),
  14252. name: "Back",
  14253. image: {
  14254. source: "./media/characters/kole/back.svg",
  14255. extra: 1426 / 1280,
  14256. bottom: 0.02
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Normal",
  14263. height: math.unit(4, "feet"),
  14264. default: true
  14265. },
  14266. ]
  14267. ))
  14268. characterMakers.push(() => makeCharacter(
  14269. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14270. {
  14271. front: {
  14272. height: math.unit(2.5, "feet"),
  14273. weight: math.unit(32, "lb"),
  14274. name: "Front",
  14275. image: {
  14276. source: "./media/characters/rufran/front.svg",
  14277. extra: 1313/885,
  14278. bottom: 94/1407
  14279. }
  14280. },
  14281. side: {
  14282. height: math.unit(2.5, "feet"),
  14283. weight: math.unit(32, "lb"),
  14284. name: "Side",
  14285. image: {
  14286. source: "./media/characters/rufran/side.svg",
  14287. extra: 1109/852,
  14288. bottom: 118/1227
  14289. }
  14290. },
  14291. back: {
  14292. height: math.unit(2.5, "feet"),
  14293. weight: math.unit(32, "lb"),
  14294. name: "Back",
  14295. image: {
  14296. source: "./media/characters/rufran/back.svg",
  14297. extra: 1280/878,
  14298. bottom: 131/1411
  14299. }
  14300. },
  14301. mouth: {
  14302. height: math.unit(1.13, "feet"),
  14303. name: "Mouth",
  14304. image: {
  14305. source: "./media/characters/rufran/mouth.svg"
  14306. }
  14307. },
  14308. foot: {
  14309. height: math.unit(1.33, "feet"),
  14310. name: "Foot",
  14311. image: {
  14312. source: "./media/characters/rufran/foot.svg"
  14313. }
  14314. },
  14315. koboldFront: {
  14316. height: math.unit(2 + 6 / 12, "feet"),
  14317. weight: math.unit(20, "lb"),
  14318. name: "Front (Kobold)",
  14319. image: {
  14320. source: "./media/characters/rufran/kobold-front.svg",
  14321. extra: 2041 / 1839,
  14322. bottom: 0.055
  14323. }
  14324. },
  14325. koboldBack: {
  14326. height: math.unit(2 + 6 / 12, "feet"),
  14327. weight: math.unit(20, "lb"),
  14328. name: "Back (Kobold)",
  14329. image: {
  14330. source: "./media/characters/rufran/kobold-back.svg",
  14331. extra: 2054 / 1839,
  14332. bottom: 0.01
  14333. }
  14334. },
  14335. koboldHand: {
  14336. height: math.unit(0.2166, "meters"),
  14337. name: "Hand (Kobold)",
  14338. image: {
  14339. source: "./media/characters/rufran/kobold-hand.svg"
  14340. }
  14341. },
  14342. koboldFoot: {
  14343. height: math.unit(0.185, "meters"),
  14344. name: "Foot (Kobold)",
  14345. image: {
  14346. source: "./media/characters/rufran/kobold-foot.svg"
  14347. }
  14348. },
  14349. },
  14350. [
  14351. {
  14352. name: "Micro",
  14353. height: math.unit(1, "inch")
  14354. },
  14355. {
  14356. name: "Normal",
  14357. height: math.unit(2 + 6 / 12, "feet"),
  14358. default: true
  14359. },
  14360. {
  14361. name: "Big",
  14362. height: math.unit(60, "feet")
  14363. },
  14364. {
  14365. name: "Macro",
  14366. height: math.unit(325, "feet")
  14367. },
  14368. ]
  14369. ))
  14370. characterMakers.push(() => makeCharacter(
  14371. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14372. {
  14373. front: {
  14374. height: math.unit(0.3, "meters"),
  14375. weight: math.unit(3.5, "kg"),
  14376. name: "Front",
  14377. image: {
  14378. source: "./media/characters/chip/front.svg",
  14379. extra: 748 / 674
  14380. }
  14381. },
  14382. },
  14383. [
  14384. {
  14385. name: "Micro",
  14386. height: math.unit(1, "inch"),
  14387. default: true
  14388. },
  14389. ]
  14390. ))
  14391. characterMakers.push(() => makeCharacter(
  14392. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14393. {
  14394. side: {
  14395. height: math.unit(2.3, "meters"),
  14396. weight: math.unit(3500, "lb"),
  14397. name: "Side",
  14398. image: {
  14399. source: "./media/characters/torvid/side.svg",
  14400. extra: 1972 / 722,
  14401. bottom: 0.035
  14402. }
  14403. },
  14404. },
  14405. [
  14406. {
  14407. name: "Normal",
  14408. height: math.unit(2.3, "meters"),
  14409. default: true
  14410. },
  14411. ]
  14412. ))
  14413. characterMakers.push(() => makeCharacter(
  14414. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14415. {
  14416. front: {
  14417. height: math.unit(2, "meters"),
  14418. weight: math.unit(150.5, "kg"),
  14419. name: "Front",
  14420. image: {
  14421. source: "./media/characters/susan/front.svg",
  14422. extra: 693 / 635,
  14423. bottom: 0.05
  14424. }
  14425. },
  14426. },
  14427. [
  14428. {
  14429. name: "Megamacro",
  14430. height: math.unit(505, "miles"),
  14431. default: true
  14432. },
  14433. ]
  14434. ))
  14435. characterMakers.push(() => makeCharacter(
  14436. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14437. {
  14438. front: {
  14439. height: math.unit(6, "feet"),
  14440. weight: math.unit(150, "lb"),
  14441. name: "Front",
  14442. image: {
  14443. source: "./media/characters/raindrops/front.svg",
  14444. extra: 2655 / 2461,
  14445. bottom: 49 / 2705
  14446. }
  14447. },
  14448. back: {
  14449. height: math.unit(6, "feet"),
  14450. weight: math.unit(150, "lb"),
  14451. name: "Back",
  14452. image: {
  14453. source: "./media/characters/raindrops/back.svg",
  14454. extra: 2574 / 2400,
  14455. bottom: 65 / 2634
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Micro",
  14462. height: math.unit(6, "inches")
  14463. },
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(6 + 2 / 12, "feet")
  14467. },
  14468. {
  14469. name: "Macro",
  14470. height: math.unit(131, "feet"),
  14471. default: true
  14472. },
  14473. {
  14474. name: "Megamacro",
  14475. height: math.unit(15, "miles")
  14476. },
  14477. {
  14478. name: "Gigamacro",
  14479. height: math.unit(4000, "miles")
  14480. },
  14481. {
  14482. name: "Teramacro",
  14483. height: math.unit(315000, "miles")
  14484. },
  14485. ]
  14486. ))
  14487. characterMakers.push(() => makeCharacter(
  14488. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14489. {
  14490. normal_front: {
  14491. height: math.unit(9 + 2/12, "feet"),
  14492. weight: math.unit(325, "kg"),
  14493. name: "Front",
  14494. image: {
  14495. source: "./media/characters/tezwa/normal-front.svg",
  14496. extra: 770/714,
  14497. bottom: 32/802
  14498. },
  14499. form: "normal",
  14500. },
  14501. normal_paw: {
  14502. height: math.unit(2.2, "feet"),
  14503. name: "Paw",
  14504. image: {
  14505. source: "./media/characters/tezwa/paw.svg"
  14506. },
  14507. form: "normal",
  14508. },
  14509. muscled_front: {
  14510. height: math.unit(916 + 8/12, "feet"),
  14511. weight: math.unit(500000, "tons"),
  14512. name: "Front",
  14513. image: {
  14514. source: "./media/characters/tezwa/muscled-front.svg",
  14515. extra: 1840/1697,
  14516. bottom: 29/1869
  14517. },
  14518. form: "muscled",
  14519. },
  14520. muscled_paw: {
  14521. height: math.unit(200, "feet"),
  14522. name: "Paw",
  14523. image: {
  14524. source: "./media/characters/tezwa/paw.svg"
  14525. },
  14526. form: "muscled",
  14527. },
  14528. },
  14529. [
  14530. {
  14531. name: "Normal",
  14532. height: math.unit(9 + 2 / 12, "feet"),
  14533. default: true,
  14534. form: "normal"
  14535. },
  14536. {
  14537. name: "Normal",
  14538. height: math.unit(916 + 8/12, "feet"),
  14539. default: true,
  14540. form: "muscled"
  14541. },
  14542. ],
  14543. {
  14544. "normal": {
  14545. name: "Normal",
  14546. default: true
  14547. },
  14548. "muscled": {
  14549. name: "Muscled",
  14550. },
  14551. }
  14552. ))
  14553. characterMakers.push(() => makeCharacter(
  14554. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14555. {
  14556. front: {
  14557. height: math.unit(58, "feet"),
  14558. weight: math.unit(89000, "lb"),
  14559. name: "Front",
  14560. image: {
  14561. source: "./media/characters/typhus/front.svg",
  14562. extra: 816 / 800,
  14563. bottom: 0.065
  14564. }
  14565. },
  14566. },
  14567. [
  14568. {
  14569. name: "Macro",
  14570. height: math.unit(58, "feet"),
  14571. default: true
  14572. },
  14573. ]
  14574. ))
  14575. characterMakers.push(() => makeCharacter(
  14576. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14577. {
  14578. front: {
  14579. height: math.unit(12, "feet"),
  14580. weight: math.unit(6, "tonnes"),
  14581. name: "Front",
  14582. image: {
  14583. source: "./media/characters/lyra-von-wulf/front.svg",
  14584. extra: 1,
  14585. bottom: 0.10
  14586. }
  14587. },
  14588. frontMecha: {
  14589. height: math.unit(12, "feet"),
  14590. weight: math.unit(12, "tonnes"),
  14591. name: "Front (Mecha)",
  14592. image: {
  14593. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14594. extra: 1,
  14595. bottom: 0.042
  14596. }
  14597. },
  14598. maw: {
  14599. height: math.unit(2.2, "feet"),
  14600. name: "Maw",
  14601. image: {
  14602. source: "./media/characters/lyra-von-wulf/maw.svg"
  14603. }
  14604. },
  14605. },
  14606. [
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(12, "feet"),
  14610. default: true
  14611. },
  14612. {
  14613. name: "Classic",
  14614. height: math.unit(50, "feet")
  14615. },
  14616. {
  14617. name: "Macro",
  14618. height: math.unit(500, "feet")
  14619. },
  14620. {
  14621. name: "Megamacro",
  14622. height: math.unit(1, "mile")
  14623. },
  14624. {
  14625. name: "Gigamacro",
  14626. height: math.unit(400, "miles")
  14627. },
  14628. {
  14629. name: "Teramacro",
  14630. height: math.unit(22000, "miles")
  14631. },
  14632. {
  14633. name: "Solarmacro",
  14634. height: math.unit(8600000, "miles")
  14635. },
  14636. {
  14637. name: "Galactic",
  14638. height: math.unit(1057000, "lightyears")
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14644. {
  14645. front: {
  14646. height: math.unit(6 + 10 / 12, "feet"),
  14647. weight: math.unit(150, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/dixon/front.svg",
  14651. extra: 3361 / 3209,
  14652. bottom: 0.01
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Normal",
  14659. height: math.unit(6 + 10 / 12, "feet"),
  14660. default: true
  14661. },
  14662. {
  14663. name: "Big",
  14664. height: math.unit(12, "meters")
  14665. },
  14666. {
  14667. name: "Macro",
  14668. height: math.unit(500, "meters")
  14669. },
  14670. {
  14671. name: "Megamacro",
  14672. height: math.unit(2, "km")
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14678. {
  14679. kingCheetah_front: {
  14680. height: math.unit(1.85, "meters"),
  14681. weight: math.unit(68, "kg"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/kauko/king-cheetah-front.svg",
  14685. extra: 1007/972,
  14686. bottom: 35/1042
  14687. },
  14688. form: "king-cheetah",
  14689. default: true
  14690. },
  14691. kingCheetah_back: {
  14692. height: math.unit(1.85, "meters"),
  14693. weight: math.unit(68, "kg"),
  14694. name: "Back",
  14695. image: {
  14696. source: "./media/characters/kauko/king-cheetah-back.svg",
  14697. extra: 1015/980,
  14698. bottom: 11/1026
  14699. },
  14700. form: "king-cheetah",
  14701. },
  14702. kingCheetah_hand: {
  14703. height: math.unit(0.23, "meters"),
  14704. name: "Hand",
  14705. image: {
  14706. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14707. },
  14708. form: "king-cheetah",
  14709. },
  14710. kingCheetah_paw: {
  14711. height: math.unit(0.38, "meters"),
  14712. name: "Paw",
  14713. image: {
  14714. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14715. },
  14716. form: "king-cheetah",
  14717. },
  14718. kingCheetah_nape: {
  14719. height: math.unit(0.23, "meters"),
  14720. name: "Nape",
  14721. image: {
  14722. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14723. },
  14724. form: "king-cheetah",
  14725. },
  14726. wolf_front: {
  14727. height: math.unit(1.88, "meters"),
  14728. weight: math.unit(74, "kg"),
  14729. name: "Front",
  14730. image: {
  14731. source: "./media/characters/kauko/wolf-front.svg",
  14732. extra: 952/908,
  14733. bottom: 64/1016
  14734. },
  14735. form: "wolf",
  14736. default: true
  14737. },
  14738. wolf_dressed: {
  14739. height: math.unit(1.88, "meters"),
  14740. weight: math.unit(74, "kg"),
  14741. name: "Dressed",
  14742. image: {
  14743. source: "./media/characters/kauko/wolf-dressed.svg",
  14744. extra: 963/916,
  14745. bottom: 101/1064
  14746. },
  14747. form: "wolf",
  14748. },
  14749. wolf_hand: {
  14750. height: math.unit(0.3, "meters"),
  14751. name: "Hand",
  14752. image: {
  14753. source: "./media/characters/kauko/wolf-hand.svg"
  14754. },
  14755. form: "wolf",
  14756. },
  14757. wolf_paw: {
  14758. height: math.unit(0.407, "meters"),
  14759. name: "Paw",
  14760. image: {
  14761. source: "./media/characters/kauko/wolf-paw.svg"
  14762. },
  14763. form: "wolf",
  14764. },
  14765. wolf_nape: {
  14766. height: math.unit(0.25, "meters"),
  14767. name: "Nape",
  14768. image: {
  14769. source: "./media/characters/kauko/wolf-nape.svg"
  14770. },
  14771. form: "wolf",
  14772. },
  14773. },
  14774. [
  14775. {
  14776. name: "Normal",
  14777. height: math.unit(1.85, "m"),
  14778. default: true,
  14779. form: "king-cheetah"
  14780. },
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(1.88, "m"),
  14784. default: true,
  14785. form: "wolf"
  14786. },
  14787. ],
  14788. {
  14789. "king-cheetah": {
  14790. name: "King Cheetah",
  14791. default: true
  14792. },
  14793. "wolf": {
  14794. name: "Wolf",
  14795. },
  14796. }
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14800. {
  14801. frontSfw: {
  14802. height: math.unit(5, "meters"),
  14803. weight: math.unit(4250, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/varg/front-sfw.svg",
  14807. extra: 1103/1010,
  14808. bottom: 50/1153
  14809. },
  14810. form: "anthro",
  14811. default: true
  14812. },
  14813. backSfw: {
  14814. height: math.unit(5, "meters"),
  14815. weight: math.unit(4250, "lb"),
  14816. name: "Back",
  14817. image: {
  14818. source: "./media/characters/varg/back-sfw.svg",
  14819. extra: 1038/1022,
  14820. bottom: 36/1074
  14821. },
  14822. form: "anthro"
  14823. },
  14824. frontNsfw: {
  14825. height: math.unit(5, "meters"),
  14826. weight: math.unit(4250, "lb"),
  14827. name: "Front (NSFW)",
  14828. image: {
  14829. source: "./media/characters/varg/front-nsfw.svg",
  14830. extra: 1103/1010,
  14831. bottom: 50/1153
  14832. },
  14833. form: "anthro"
  14834. },
  14835. sheath: {
  14836. height: math.unit(3.8, "feet"),
  14837. weight: math.unit(90, "kilograms"),
  14838. name: "Sheath",
  14839. image: {
  14840. source: "./media/characters/varg/sheath.svg"
  14841. },
  14842. form: "anthro"
  14843. },
  14844. dick: {
  14845. height: math.unit(4.6, "feet"),
  14846. weight: math.unit(451, "kilograms"),
  14847. name: "Dick",
  14848. image: {
  14849. source: "./media/characters/varg/dick.svg"
  14850. },
  14851. form: "anthro"
  14852. },
  14853. feralSfw: {
  14854. height: math.unit(5, "meters"),
  14855. weight: math.unit(100000, "lb"),
  14856. name: "Side",
  14857. image: {
  14858. source: "./media/characters/varg/feral-sfw.svg",
  14859. extra: 1065/511,
  14860. bottom: 211/1276
  14861. },
  14862. form: "feral",
  14863. default: true
  14864. },
  14865. feralNsfw: {
  14866. height: math.unit(5, "meters"),
  14867. weight: math.unit(100000, "lb"),
  14868. name: "Side (NSFW)",
  14869. image: {
  14870. source: "./media/characters/varg/feral-nsfw.svg",
  14871. extra: 1065/511,
  14872. bottom: 211/1276
  14873. },
  14874. form: "feral",
  14875. },
  14876. feralSheath: {
  14877. height: math.unit(9.8, "feet"),
  14878. weight: math.unit(2000, "kilograms"),
  14879. name: "Sheath",
  14880. image: {
  14881. source: "./media/characters/varg/sheath.svg"
  14882. },
  14883. form: "feral"
  14884. },
  14885. feralDick: {
  14886. height: math.unit(13.11, "feet"),
  14887. weight: math.unit(10440, "kilograms"),
  14888. name: "Dick",
  14889. image: {
  14890. source: "./media/characters/varg/dick.svg"
  14891. },
  14892. form: "feral"
  14893. },
  14894. },
  14895. [
  14896. {
  14897. name: "Normal",
  14898. height: math.unit(5, "meters"),
  14899. form: "anthro"
  14900. },
  14901. {
  14902. name: "Macro",
  14903. height: math.unit(200, "meters"),
  14904. form: "anthro"
  14905. },
  14906. {
  14907. name: "Megamacro",
  14908. height: math.unit(20, "kilometers"),
  14909. form: "anthro"
  14910. },
  14911. {
  14912. name: "True Size",
  14913. height: math.unit(211, "km"),
  14914. form: "anthro",
  14915. default: true
  14916. },
  14917. {
  14918. name: "Gigamacro",
  14919. height: math.unit(1000, "km"),
  14920. form: "anthro"
  14921. },
  14922. {
  14923. name: "Gigamacro+",
  14924. height: math.unit(8000, "km"),
  14925. form: "anthro"
  14926. },
  14927. {
  14928. name: "Teramacro",
  14929. height: math.unit(1000000, "km"),
  14930. form: "anthro"
  14931. },
  14932. {
  14933. name: "Normal",
  14934. height: math.unit(5, "meters"),
  14935. form: "feral"
  14936. },
  14937. {
  14938. name: "Macro",
  14939. height: math.unit(200, "meters"),
  14940. form: "feral"
  14941. },
  14942. {
  14943. name: "Megamacro",
  14944. height: math.unit(20, "kilometers"),
  14945. form: "feral"
  14946. },
  14947. {
  14948. name: "True Size",
  14949. height: math.unit(211, "km"),
  14950. form: "feral",
  14951. default: true
  14952. },
  14953. {
  14954. name: "Gigamacro",
  14955. height: math.unit(1000, "km"),
  14956. form: "feral"
  14957. },
  14958. {
  14959. name: "Gigamacro+",
  14960. height: math.unit(8000, "km"),
  14961. form: "feral"
  14962. },
  14963. {
  14964. name: "Teramacro",
  14965. height: math.unit(1000000, "km"),
  14966. form: "feral"
  14967. },
  14968. ],
  14969. {
  14970. "anthro": {
  14971. name: "Anthro",
  14972. default: true
  14973. },
  14974. "feral": {
  14975. name: "Feral",
  14976. },
  14977. }
  14978. ))
  14979. characterMakers.push(() => makeCharacter(
  14980. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14981. {
  14982. front: {
  14983. height: math.unit(7 + 7 / 12, "feet"),
  14984. weight: math.unit(267, "lb"),
  14985. name: "Front",
  14986. image: {
  14987. source: "./media/characters/dayza/front.svg",
  14988. extra: 1262 / 1200,
  14989. bottom: 0.035
  14990. }
  14991. },
  14992. side: {
  14993. height: math.unit(7 + 7 / 12, "feet"),
  14994. weight: math.unit(267, "lb"),
  14995. name: "Side",
  14996. image: {
  14997. source: "./media/characters/dayza/side.svg",
  14998. extra: 1295 / 1245,
  14999. bottom: 0.05
  15000. }
  15001. },
  15002. back: {
  15003. height: math.unit(7 + 7 / 12, "feet"),
  15004. weight: math.unit(267, "lb"),
  15005. name: "Back",
  15006. image: {
  15007. source: "./media/characters/dayza/back.svg",
  15008. extra: 1241 / 1170
  15009. }
  15010. },
  15011. },
  15012. [
  15013. {
  15014. name: "Normal",
  15015. height: math.unit(7 + 7 / 12, "feet"),
  15016. default: true
  15017. },
  15018. {
  15019. name: "Macro",
  15020. height: math.unit(155, "feet")
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(6 + 5 / 12, "feet"),
  15029. weight: math.unit(160, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/xanthos/front.svg",
  15033. extra: 1,
  15034. bottom: 0.04
  15035. }
  15036. },
  15037. back: {
  15038. height: math.unit(6 + 5 / 12, "feet"),
  15039. weight: math.unit(160, "lb"),
  15040. name: "Back",
  15041. image: {
  15042. source: "./media/characters/xanthos/back.svg",
  15043. extra: 1,
  15044. bottom: 0.03
  15045. }
  15046. },
  15047. hand: {
  15048. height: math.unit(0.928, "feet"),
  15049. name: "Hand",
  15050. image: {
  15051. source: "./media/characters/xanthos/hand.svg"
  15052. }
  15053. },
  15054. foot: {
  15055. height: math.unit(1.286, "feet"),
  15056. name: "Foot",
  15057. image: {
  15058. source: "./media/characters/xanthos/foot.svg"
  15059. }
  15060. },
  15061. },
  15062. [
  15063. {
  15064. name: "Normal",
  15065. height: math.unit(6 + 5 / 12, "feet"),
  15066. default: true
  15067. },
  15068. {
  15069. name: "Normal+",
  15070. height: math.unit(6, "meters")
  15071. },
  15072. {
  15073. name: "Macro",
  15074. height: math.unit(40, "feet")
  15075. },
  15076. {
  15077. name: "Macro+",
  15078. height: math.unit(200, "meters")
  15079. },
  15080. {
  15081. name: "Megamacro",
  15082. height: math.unit(20, "km")
  15083. },
  15084. {
  15085. name: "Megamacro+",
  15086. height: math.unit(100, "km")
  15087. },
  15088. {
  15089. name: "Gigamacro",
  15090. height: math.unit(200, "megameters")
  15091. },
  15092. {
  15093. name: "Gigamacro+",
  15094. height: math.unit(1.5, "gigameters")
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  15100. {
  15101. front: {
  15102. height: math.unit(6 + 3 / 12, "feet"),
  15103. weight: math.unit(215, "lb"),
  15104. name: "Front",
  15105. image: {
  15106. source: "./media/characters/grynn/front.svg",
  15107. extra: 4627 / 4209,
  15108. bottom: 0.047
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Micro",
  15115. height: math.unit(6, "inches")
  15116. },
  15117. {
  15118. name: "Normal",
  15119. height: math.unit(6 + 3 / 12, "feet"),
  15120. default: true
  15121. },
  15122. {
  15123. name: "Big",
  15124. height: math.unit(104, "feet")
  15125. },
  15126. {
  15127. name: "Macro",
  15128. height: math.unit(944, "feet")
  15129. },
  15130. {
  15131. name: "Macro+",
  15132. height: math.unit(9480, "feet")
  15133. },
  15134. {
  15135. name: "Megamacro",
  15136. height: math.unit(78752, "feet")
  15137. },
  15138. {
  15139. name: "Megamacro+",
  15140. height: math.unit(630128, "feet")
  15141. },
  15142. {
  15143. name: "Megamacro++",
  15144. height: math.unit(3150695, "feet")
  15145. },
  15146. ]
  15147. ))
  15148. characterMakers.push(() => makeCharacter(
  15149. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15150. {
  15151. front: {
  15152. height: math.unit(7 + 5 / 12, "feet"),
  15153. weight: math.unit(450, "lb"),
  15154. name: "Front",
  15155. image: {
  15156. source: "./media/characters/mocha-aura/front.svg",
  15157. extra: 1907 / 1817,
  15158. bottom: 0.04
  15159. }
  15160. },
  15161. back: {
  15162. height: math.unit(7 + 5 / 12, "feet"),
  15163. weight: math.unit(450, "lb"),
  15164. name: "Back",
  15165. image: {
  15166. source: "./media/characters/mocha-aura/back.svg",
  15167. extra: 1900 / 1825,
  15168. bottom: 0.045
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Nano",
  15175. height: math.unit(1, "nm")
  15176. },
  15177. {
  15178. name: "Megamicro",
  15179. height: math.unit(1, "mm")
  15180. },
  15181. {
  15182. name: "Micro",
  15183. height: math.unit(3, "inches")
  15184. },
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(7 + 5 / 12, "feet"),
  15188. default: true
  15189. },
  15190. {
  15191. name: "Macro",
  15192. height: math.unit(30, "feet")
  15193. },
  15194. {
  15195. name: "Megamacro",
  15196. height: math.unit(3500, "feet")
  15197. },
  15198. {
  15199. name: "Teramacro",
  15200. height: math.unit(500000, "miles")
  15201. },
  15202. {
  15203. name: "Petamacro",
  15204. height: math.unit(50000000000000000, "parsecs")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(6, "feet"),
  15213. weight: math.unit(150, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/ilisha-devya/front.svg",
  15217. extra: 1053/1049,
  15218. bottom: 270/1323
  15219. }
  15220. },
  15221. back: {
  15222. height: math.unit(6, "feet"),
  15223. weight: math.unit(150, "lb"),
  15224. name: "Back",
  15225. image: {
  15226. source: "./media/characters/ilisha-devya/back.svg",
  15227. extra: 1131/1128,
  15228. bottom: 39/1170
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "Macro",
  15235. height: math.unit(500, "feet"),
  15236. default: true
  15237. },
  15238. {
  15239. name: "Megamacro",
  15240. height: math.unit(10, "miles")
  15241. },
  15242. {
  15243. name: "Gigamacro",
  15244. height: math.unit(100000, "miles")
  15245. },
  15246. {
  15247. name: "Examacro",
  15248. height: math.unit(1e9, "lightyears")
  15249. },
  15250. {
  15251. name: "Omniversal",
  15252. height: math.unit(1e33, "lightyears")
  15253. },
  15254. {
  15255. name: "Beyond Infinite",
  15256. height: math.unit(1e100, "lightyears")
  15257. },
  15258. ]
  15259. ))
  15260. characterMakers.push(() => makeCharacter(
  15261. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15262. {
  15263. Side: {
  15264. height: math.unit(6, "feet"),
  15265. weight: math.unit(150, "lb"),
  15266. name: "Side",
  15267. image: {
  15268. source: "./media/characters/mira/side.svg",
  15269. extra: 900 / 799,
  15270. bottom: 0.02
  15271. }
  15272. },
  15273. },
  15274. [
  15275. {
  15276. name: "Human Size",
  15277. height: math.unit(6, "feet")
  15278. },
  15279. {
  15280. name: "Macro",
  15281. height: math.unit(100, "feet"),
  15282. default: true
  15283. },
  15284. {
  15285. name: "Megamacro",
  15286. height: math.unit(10, "miles")
  15287. },
  15288. {
  15289. name: "Gigamacro",
  15290. height: math.unit(25000, "miles")
  15291. },
  15292. {
  15293. name: "Teramacro",
  15294. height: math.unit(300, "AU")
  15295. },
  15296. {
  15297. name: "Full Size",
  15298. height: math.unit(4.5e10, "lightyears")
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15304. {
  15305. front: {
  15306. height: math.unit(6, "feet"),
  15307. weight: math.unit(150, "lb"),
  15308. name: "Front",
  15309. image: {
  15310. source: "./media/characters/holly/front.svg",
  15311. extra: 639 / 606
  15312. }
  15313. },
  15314. back: {
  15315. height: math.unit(6, "feet"),
  15316. weight: math.unit(150, "lb"),
  15317. name: "Back",
  15318. image: {
  15319. source: "./media/characters/holly/back.svg",
  15320. extra: 623 / 598
  15321. }
  15322. },
  15323. frontWorking: {
  15324. height: math.unit(6, "feet"),
  15325. weight: math.unit(150, "lb"),
  15326. name: "Front (Working)",
  15327. image: {
  15328. source: "./media/characters/holly/front-working.svg",
  15329. extra: 607 / 577,
  15330. bottom: 0.048
  15331. }
  15332. },
  15333. },
  15334. [
  15335. {
  15336. name: "Normal",
  15337. height: math.unit(12 + 3 / 12, "feet"),
  15338. default: true
  15339. },
  15340. ]
  15341. ))
  15342. characterMakers.push(() => makeCharacter(
  15343. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15344. {
  15345. front: {
  15346. height: math.unit(6, "feet"),
  15347. weight: math.unit(150, "lb"),
  15348. name: "Front",
  15349. image: {
  15350. source: "./media/characters/porter/front.svg",
  15351. extra: 1,
  15352. bottom: 0.01
  15353. }
  15354. },
  15355. frontRobes: {
  15356. height: math.unit(6, "feet"),
  15357. weight: math.unit(150, "lb"),
  15358. name: "Front (Robes)",
  15359. image: {
  15360. source: "./media/characters/porter/front-robes.svg",
  15361. extra: 1.01,
  15362. bottom: 0.01
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Normal",
  15369. height: math.unit(11 + 9 / 12, "feet"),
  15370. default: true
  15371. },
  15372. ]
  15373. ))
  15374. characterMakers.push(() => makeCharacter(
  15375. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15376. {
  15377. legendary: {
  15378. height: math.unit(6, "feet"),
  15379. weight: math.unit(150, "lb"),
  15380. name: "Legendary",
  15381. image: {
  15382. source: "./media/characters/lucy/legendary.svg",
  15383. extra: 1355 / 1100,
  15384. bottom: 0.045
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Legendary",
  15391. height: math.unit(86882 * 2, "miles"),
  15392. default: true
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(150, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/drusilla/front.svg",
  15405. extra: 678 / 635,
  15406. bottom: 0.03
  15407. }
  15408. },
  15409. back: {
  15410. height: math.unit(6, "feet"),
  15411. weight: math.unit(150, "lb"),
  15412. name: "Back",
  15413. image: {
  15414. source: "./media/characters/drusilla/back.svg",
  15415. extra: 678 / 635,
  15416. bottom: 0.005
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Macro",
  15423. height: math.unit(100, "feet")
  15424. },
  15425. {
  15426. name: "Canon Height",
  15427. height: math.unit(2000, "feet"),
  15428. default: true
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(6, "feet"),
  15437. weight: math.unit(180, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/renard-thatch/front.svg",
  15441. extra: 2411 / 2275,
  15442. bottom: 0.01
  15443. }
  15444. },
  15445. frontPosing: {
  15446. height: math.unit(6, "feet"),
  15447. weight: math.unit(180, "lb"),
  15448. name: "Front (Posing)",
  15449. image: {
  15450. source: "./media/characters/renard-thatch/front-posing.svg",
  15451. extra: 2381 / 2261,
  15452. bottom: 0.01
  15453. }
  15454. },
  15455. back: {
  15456. height: math.unit(6, "feet"),
  15457. weight: math.unit(180, "lb"),
  15458. name: "Back",
  15459. image: {
  15460. source: "./media/characters/renard-thatch/back.svg",
  15461. extra: 2428 / 2288
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Micro",
  15468. height: math.unit(3, "inches")
  15469. },
  15470. {
  15471. name: "Default",
  15472. height: math.unit(6, "feet"),
  15473. default: true
  15474. },
  15475. {
  15476. name: "Macro",
  15477. height: math.unit(75, "feet")
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15483. {
  15484. front: {
  15485. height: math.unit(1450, "feet"),
  15486. weight: math.unit(1.21e6, "tons"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/sekvra/front.svg",
  15490. extra: 1193/1190,
  15491. bottom: 78/1271
  15492. }
  15493. },
  15494. side: {
  15495. height: math.unit(1450, "feet"),
  15496. weight: math.unit(1.21e6, "tons"),
  15497. name: "Side",
  15498. image: {
  15499. source: "./media/characters/sekvra/side.svg",
  15500. extra: 1193/1190,
  15501. bottom: 52/1245
  15502. }
  15503. },
  15504. back: {
  15505. height: math.unit(1450, "feet"),
  15506. weight: math.unit(1.21e6, "tons"),
  15507. name: "Back",
  15508. image: {
  15509. source: "./media/characters/sekvra/back.svg",
  15510. extra: 1219/1216,
  15511. bottom: 21/1240
  15512. }
  15513. },
  15514. frontClothed: {
  15515. height: math.unit(1450, "feet"),
  15516. weight: math.unit(1.21e6, "tons"),
  15517. name: "Front (Clothed)",
  15518. image: {
  15519. source: "./media/characters/sekvra/front-clothed.svg",
  15520. extra: 1192/1189,
  15521. bottom: 79/1271
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Macro",
  15528. height: math.unit(1450, "feet"),
  15529. default: true
  15530. },
  15531. {
  15532. name: "Megamacro",
  15533. height: math.unit(15000, "feet")
  15534. },
  15535. ]
  15536. ))
  15537. characterMakers.push(() => makeCharacter(
  15538. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15539. {
  15540. front: {
  15541. height: math.unit(6, "feet"),
  15542. weight: math.unit(150, "lb"),
  15543. name: "Front",
  15544. image: {
  15545. source: "./media/characters/carmine/front.svg",
  15546. extra: 1557/1538,
  15547. bottom: 68/1625
  15548. }
  15549. },
  15550. frontArmor: {
  15551. height: math.unit(6, "feet"),
  15552. weight: math.unit(150, "lb"),
  15553. name: "Front (Armor)",
  15554. image: {
  15555. source: "./media/characters/carmine/front-armor.svg",
  15556. extra: 1549/1530,
  15557. bottom: 82/1631
  15558. }
  15559. },
  15560. mouth: {
  15561. height: math.unit(0.55, "feet"),
  15562. name: "Mouth",
  15563. image: {
  15564. source: "./media/characters/carmine/mouth.svg"
  15565. }
  15566. },
  15567. hand: {
  15568. height: math.unit(1.05, "feet"),
  15569. name: "Hand",
  15570. image: {
  15571. source: "./media/characters/carmine/hand.svg"
  15572. }
  15573. },
  15574. foot: {
  15575. height: math.unit(0.6, "feet"),
  15576. name: "Foot",
  15577. image: {
  15578. source: "./media/characters/carmine/foot.svg"
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Large",
  15585. height: math.unit(1, "mile")
  15586. },
  15587. {
  15588. name: "Huge",
  15589. height: math.unit(40, "miles"),
  15590. default: true
  15591. },
  15592. {
  15593. name: "Colossal",
  15594. height: math.unit(2500, "miles")
  15595. },
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15600. {
  15601. front: {
  15602. height: math.unit(6, "feet"),
  15603. weight: math.unit(150, "lb"),
  15604. name: "Front",
  15605. image: {
  15606. source: "./media/characters/elyssia/front.svg",
  15607. extra: 2201 / 2035,
  15608. bottom: 0.05
  15609. }
  15610. },
  15611. frontClothed: {
  15612. height: math.unit(6, "feet"),
  15613. weight: math.unit(150, "lb"),
  15614. name: "Front (Clothed)",
  15615. image: {
  15616. source: "./media/characters/elyssia/front-clothed.svg",
  15617. extra: 2201 / 2035,
  15618. bottom: 0.05
  15619. }
  15620. },
  15621. back: {
  15622. height: math.unit(6, "feet"),
  15623. weight: math.unit(150, "lb"),
  15624. name: "Back",
  15625. image: {
  15626. source: "./media/characters/elyssia/back.svg",
  15627. extra: 2201 / 2035,
  15628. bottom: 0.013
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Smaller",
  15635. height: math.unit(150, "feet")
  15636. },
  15637. {
  15638. name: "Standard",
  15639. height: math.unit(1400, "feet"),
  15640. default: true
  15641. },
  15642. {
  15643. name: "Distracted",
  15644. height: math.unit(15000, "feet")
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15650. {
  15651. front: {
  15652. height: math.unit(7 + 4/12, "feet"),
  15653. weight: math.unit(690, "lb"),
  15654. name: "Front",
  15655. image: {
  15656. source: "./media/characters/geno-maxwell/front.svg",
  15657. extra: 984/856,
  15658. bottom: 87/1071
  15659. }
  15660. },
  15661. back: {
  15662. height: math.unit(7 + 4/12, "feet"),
  15663. weight: math.unit(690, "lb"),
  15664. name: "Back",
  15665. image: {
  15666. source: "./media/characters/geno-maxwell/back.svg",
  15667. extra: 981/854,
  15668. bottom: 57/1038
  15669. }
  15670. },
  15671. frontCostume: {
  15672. height: math.unit(7 + 4/12, "feet"),
  15673. weight: math.unit(690, "lb"),
  15674. name: "Front (Costume)",
  15675. image: {
  15676. source: "./media/characters/geno-maxwell/front-costume.svg",
  15677. extra: 984/856,
  15678. bottom: 87/1071
  15679. }
  15680. },
  15681. backcostume: {
  15682. height: math.unit(7 + 4/12, "feet"),
  15683. weight: math.unit(690, "lb"),
  15684. name: "Back (Costume)",
  15685. image: {
  15686. source: "./media/characters/geno-maxwell/back-costume.svg",
  15687. extra: 981/854,
  15688. bottom: 57/1038
  15689. }
  15690. },
  15691. },
  15692. [
  15693. {
  15694. name: "Micro",
  15695. height: math.unit(3, "inches")
  15696. },
  15697. {
  15698. name: "Normal",
  15699. height: math.unit(7 + 4 / 12, "feet"),
  15700. default: true
  15701. },
  15702. {
  15703. name: "Macro",
  15704. height: math.unit(220, "feet")
  15705. },
  15706. {
  15707. name: "Megamacro",
  15708. height: math.unit(11, "miles")
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(7 + 4/12, "feet"),
  15717. weight: math.unit(750, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/regena-maxwell/front.svg",
  15721. extra: 984/856,
  15722. bottom: 87/1071
  15723. }
  15724. },
  15725. back: {
  15726. height: math.unit(7 + 4/12, "feet"),
  15727. weight: math.unit(750, "lb"),
  15728. name: "Back",
  15729. image: {
  15730. source: "./media/characters/regena-maxwell/back.svg",
  15731. extra: 981/854,
  15732. bottom: 57/1038
  15733. }
  15734. },
  15735. frontCostume: {
  15736. height: math.unit(7 + 4/12, "feet"),
  15737. weight: math.unit(750, "lb"),
  15738. name: "Front (Costume)",
  15739. image: {
  15740. source: "./media/characters/regena-maxwell/front-costume.svg",
  15741. extra: 984/856,
  15742. bottom: 87/1071
  15743. }
  15744. },
  15745. backcostume: {
  15746. height: math.unit(7 + 4/12, "feet"),
  15747. weight: math.unit(750, "lb"),
  15748. name: "Back (Costume)",
  15749. image: {
  15750. source: "./media/characters/regena-maxwell/back-costume.svg",
  15751. extra: 981/854,
  15752. bottom: 57/1038
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Normal",
  15759. height: math.unit(7 + 4 / 12, "feet"),
  15760. default: true
  15761. },
  15762. {
  15763. name: "Macro",
  15764. height: math.unit(220, "feet")
  15765. },
  15766. {
  15767. name: "Megamacro",
  15768. height: math.unit(11, "miles")
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(6, "feet"),
  15777. weight: math.unit(150, "lb"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15781. extra: 860 / 690,
  15782. bottom: 0.03
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Normal",
  15789. height: math.unit(1.7, "meters"),
  15790. default: true
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15796. {
  15797. front: {
  15798. height: math.unit(6, "feet"),
  15799. weight: math.unit(150, "lb"),
  15800. name: "Front",
  15801. image: {
  15802. source: "./media/characters/quilly/front.svg",
  15803. extra: 890 / 776
  15804. }
  15805. },
  15806. },
  15807. [
  15808. {
  15809. name: "Gigamacro",
  15810. height: math.unit(404090, "miles"),
  15811. default: true
  15812. },
  15813. ]
  15814. ))
  15815. characterMakers.push(() => makeCharacter(
  15816. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15817. {
  15818. front: {
  15819. height: math.unit(7 + 8 / 12, "feet"),
  15820. weight: math.unit(350, "lb"),
  15821. name: "Front",
  15822. image: {
  15823. source: "./media/characters/tempest/front.svg",
  15824. extra: 1175 / 1086,
  15825. bottom: 0.02
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Normal",
  15832. height: math.unit(7 + 8 / 12, "feet"),
  15833. default: true
  15834. },
  15835. ]
  15836. ))
  15837. characterMakers.push(() => makeCharacter(
  15838. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15839. {
  15840. side: {
  15841. height: math.unit(4 + 5 / 12, "feet"),
  15842. weight: math.unit(80, "lb"),
  15843. name: "Side",
  15844. image: {
  15845. source: "./media/characters/rodger/side.svg",
  15846. extra: 1235 / 1118
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Micro",
  15853. height: math.unit(1, "inch")
  15854. },
  15855. {
  15856. name: "Normal",
  15857. height: math.unit(4 + 5 / 12, "feet"),
  15858. default: true
  15859. },
  15860. {
  15861. name: "Macro",
  15862. height: math.unit(120, "feet")
  15863. },
  15864. ]
  15865. ))
  15866. characterMakers.push(() => makeCharacter(
  15867. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15868. {
  15869. front: {
  15870. height: math.unit(6, "feet"),
  15871. weight: math.unit(150, "lb"),
  15872. name: "Front",
  15873. image: {
  15874. source: "./media/characters/danyel/front.svg",
  15875. extra: 1185 / 1123,
  15876. bottom: 0.05
  15877. }
  15878. },
  15879. },
  15880. [
  15881. {
  15882. name: "Shrunken",
  15883. height: math.unit(0.5, "mm")
  15884. },
  15885. {
  15886. name: "Micro",
  15887. height: math.unit(1, "mm"),
  15888. default: true
  15889. },
  15890. {
  15891. name: "Upsized",
  15892. height: math.unit(5 + 5 / 12, "feet")
  15893. },
  15894. ]
  15895. ))
  15896. characterMakers.push(() => makeCharacter(
  15897. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15898. {
  15899. front: {
  15900. height: math.unit(5 + 6 / 12, "feet"),
  15901. weight: math.unit(200, "lb"),
  15902. name: "Front",
  15903. image: {
  15904. source: "./media/characters/vivian-bijoux/front.svg",
  15905. extra: 1217/1209,
  15906. bottom: 76/1293
  15907. }
  15908. },
  15909. back: {
  15910. height: math.unit(5 + 6 / 12, "feet"),
  15911. weight: math.unit(200, "lb"),
  15912. name: "Back",
  15913. image: {
  15914. source: "./media/characters/vivian-bijoux/back.svg",
  15915. extra: 1214/1208,
  15916. bottom: 51/1265
  15917. }
  15918. },
  15919. dressed: {
  15920. height: math.unit(5 + 6 / 12, "feet"),
  15921. weight: math.unit(200, "lb"),
  15922. name: "Dressed",
  15923. image: {
  15924. source: "./media/characters/vivian-bijoux/dressed.svg",
  15925. extra: 1217/1209,
  15926. bottom: 76/1293
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Normal",
  15933. height: math.unit(5 + 6 / 12, "feet"),
  15934. default: true
  15935. },
  15936. {
  15937. name: "Bad Dream",
  15938. height: math.unit(500, "feet")
  15939. },
  15940. {
  15941. name: "Nightmare",
  15942. height: math.unit(500, "miles")
  15943. },
  15944. ]
  15945. ))
  15946. characterMakers.push(() => makeCharacter(
  15947. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15948. {
  15949. front: {
  15950. height: math.unit(6 + 1 / 12, "feet"),
  15951. weight: math.unit(260, "lb"),
  15952. name: "Front",
  15953. image: {
  15954. source: "./media/characters/zeta/front.svg",
  15955. extra: 1968 / 1889,
  15956. bottom: 0.06
  15957. }
  15958. },
  15959. back: {
  15960. height: math.unit(6 + 1 / 12, "feet"),
  15961. weight: math.unit(260, "lb"),
  15962. name: "Back",
  15963. image: {
  15964. source: "./media/characters/zeta/back.svg",
  15965. extra: 1944 / 1858,
  15966. bottom: 0.03
  15967. }
  15968. },
  15969. hand: {
  15970. height: math.unit(1.112, "feet"),
  15971. name: "Hand",
  15972. image: {
  15973. source: "./media/characters/zeta/hand.svg"
  15974. }
  15975. },
  15976. foot: {
  15977. height: math.unit(1.48, "feet"),
  15978. name: "Foot",
  15979. image: {
  15980. source: "./media/characters/zeta/foot.svg"
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Micro",
  15987. height: math.unit(6, "inches")
  15988. },
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(6 + 1 / 12, "feet"),
  15992. default: true
  15993. },
  15994. {
  15995. name: "Macro",
  15996. height: math.unit(20, "feet")
  15997. },
  15998. ]
  15999. ))
  16000. characterMakers.push(() => makeCharacter(
  16001. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  16002. {
  16003. front: {
  16004. height: math.unit(6, "feet"),
  16005. weight: math.unit(150, "lb"),
  16006. name: "Front",
  16007. image: {
  16008. source: "./media/characters/jamie-larsen/front.svg",
  16009. extra: 962 / 933,
  16010. bottom: 0.02
  16011. }
  16012. },
  16013. back: {
  16014. height: math.unit(6, "feet"),
  16015. weight: math.unit(150, "lb"),
  16016. name: "Back",
  16017. image: {
  16018. source: "./media/characters/jamie-larsen/back.svg",
  16019. extra: 997 / 946
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Macro",
  16026. height: math.unit(28 + 7 / 12, "feet"),
  16027. default: true
  16028. },
  16029. {
  16030. name: "Macro+",
  16031. height: math.unit(180, "feet")
  16032. },
  16033. {
  16034. name: "Megamacro",
  16035. height: math.unit(10, "miles")
  16036. },
  16037. {
  16038. name: "Gigamacro",
  16039. height: math.unit(200000, "miles")
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  16045. {
  16046. front: {
  16047. height: math.unit(6, "feet"),
  16048. weight: math.unit(120, "lb"),
  16049. name: "Front",
  16050. image: {
  16051. source: "./media/characters/vance/front.svg",
  16052. extra: 1980 / 1890,
  16053. bottom: 0.09
  16054. }
  16055. },
  16056. back: {
  16057. height: math.unit(6, "feet"),
  16058. weight: math.unit(120, "lb"),
  16059. name: "Back",
  16060. image: {
  16061. source: "./media/characters/vance/back.svg",
  16062. extra: 2081 / 1994,
  16063. bottom: 0.014
  16064. }
  16065. },
  16066. hand: {
  16067. height: math.unit(0.88, "feet"),
  16068. name: "Hand",
  16069. image: {
  16070. source: "./media/characters/vance/hand.svg"
  16071. }
  16072. },
  16073. foot: {
  16074. height: math.unit(0.64, "feet"),
  16075. name: "Foot",
  16076. image: {
  16077. source: "./media/characters/vance/foot.svg"
  16078. }
  16079. },
  16080. },
  16081. [
  16082. {
  16083. name: "Small",
  16084. height: math.unit(90, "feet"),
  16085. default: true
  16086. },
  16087. {
  16088. name: "Macro",
  16089. height: math.unit(100, "meters")
  16090. },
  16091. {
  16092. name: "Megamacro",
  16093. height: math.unit(15, "miles")
  16094. },
  16095. ]
  16096. ))
  16097. characterMakers.push(() => makeCharacter(
  16098. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  16099. {
  16100. front: {
  16101. height: math.unit(6, "feet"),
  16102. weight: math.unit(180, "lb"),
  16103. name: "Front",
  16104. image: {
  16105. source: "./media/characters/xochitl/front.svg",
  16106. extra: 2297 / 2261,
  16107. bottom: 0.065
  16108. }
  16109. },
  16110. back: {
  16111. height: math.unit(6, "feet"),
  16112. weight: math.unit(180, "lb"),
  16113. name: "Back",
  16114. image: {
  16115. source: "./media/characters/xochitl/back.svg",
  16116. extra: 2386 / 2354,
  16117. bottom: 0.01
  16118. }
  16119. },
  16120. foot: {
  16121. height: math.unit(6 / 5 * 1.15, "feet"),
  16122. weight: math.unit(150, "lb"),
  16123. name: "Foot",
  16124. image: {
  16125. source: "./media/characters/xochitl/foot.svg"
  16126. }
  16127. },
  16128. },
  16129. [
  16130. {
  16131. name: "Macro",
  16132. height: math.unit(80, "feet")
  16133. },
  16134. {
  16135. name: "Macro+",
  16136. height: math.unit(400, "feet"),
  16137. default: true
  16138. },
  16139. {
  16140. name: "Gigamacro",
  16141. height: math.unit(80000, "miles")
  16142. },
  16143. {
  16144. name: "Gigamacro+",
  16145. height: math.unit(400000, "miles")
  16146. },
  16147. {
  16148. name: "Teramacro",
  16149. height: math.unit(300, "AU")
  16150. },
  16151. ]
  16152. ))
  16153. characterMakers.push(() => makeCharacter(
  16154. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16155. {
  16156. front: {
  16157. height: math.unit(6, "feet"),
  16158. weight: math.unit(150, "lb"),
  16159. name: "Front",
  16160. image: {
  16161. source: "./media/characters/vincent/front.svg",
  16162. extra: 1130 / 1080,
  16163. bottom: 0.055
  16164. }
  16165. },
  16166. beak: {
  16167. height: math.unit(6 * 0.1, "feet"),
  16168. name: "Beak",
  16169. image: {
  16170. source: "./media/characters/vincent/beak.svg"
  16171. }
  16172. },
  16173. hand: {
  16174. height: math.unit(6 * 0.85, "feet"),
  16175. weight: math.unit(150, "lb"),
  16176. name: "Hand",
  16177. image: {
  16178. source: "./media/characters/vincent/hand.svg"
  16179. }
  16180. },
  16181. foot: {
  16182. height: math.unit(6 * 0.19, "feet"),
  16183. weight: math.unit(150, "lb"),
  16184. name: "Foot",
  16185. image: {
  16186. source: "./media/characters/vincent/foot.svg"
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Base",
  16193. height: math.unit(6 + 5 / 12, "feet"),
  16194. default: true
  16195. },
  16196. {
  16197. name: "Macro",
  16198. height: math.unit(300, "feet")
  16199. },
  16200. {
  16201. name: "Megamacro",
  16202. height: math.unit(2, "miles")
  16203. },
  16204. {
  16205. name: "Gigamacro",
  16206. height: math.unit(1000, "miles")
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(2, "meters"),
  16215. weight: math.unit(500, "kg"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/coatl/front.svg",
  16219. extra: 3948 / 3500,
  16220. bottom: 0.082
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Normal",
  16227. height: math.unit(4, "meters")
  16228. },
  16229. {
  16230. name: "Macro",
  16231. height: math.unit(100, "meters"),
  16232. default: true
  16233. },
  16234. {
  16235. name: "Macro+",
  16236. height: math.unit(300, "meters")
  16237. },
  16238. {
  16239. name: "Megamacro",
  16240. height: math.unit(3, "gigameters")
  16241. },
  16242. {
  16243. name: "Megamacro+",
  16244. height: math.unit(300, "terameters")
  16245. },
  16246. {
  16247. name: "Megamacro++",
  16248. height: math.unit(3, "lightyears")
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(6, "feet"),
  16257. weight: math.unit(50, "kg"),
  16258. name: "front",
  16259. image: {
  16260. source: "./media/characters/shiroryu/front.svg",
  16261. extra: 1990 / 1935
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Mortal Mingling",
  16268. height: math.unit(3, "meters")
  16269. },
  16270. {
  16271. name: "Kaiju-ish",
  16272. height: math.unit(250, "meters")
  16273. },
  16274. {
  16275. name: "Somewhat Godly",
  16276. height: math.unit(400, "km"),
  16277. default: true
  16278. },
  16279. {
  16280. name: "Planetary",
  16281. height: math.unit(300, "megameters")
  16282. },
  16283. {
  16284. name: "Galaxy-dwarfing",
  16285. height: math.unit(450, "kiloparsecs")
  16286. },
  16287. {
  16288. name: "Universe Eater",
  16289. height: math.unit(150, "gigaparsecs")
  16290. },
  16291. {
  16292. name: "Almost Immeasurable",
  16293. height: math.unit(1.3e266, "yottaparsecs")
  16294. },
  16295. ]
  16296. ))
  16297. characterMakers.push(() => makeCharacter(
  16298. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16299. {
  16300. front: {
  16301. height: math.unit(6, "feet"),
  16302. weight: math.unit(150, "lb"),
  16303. name: "Front",
  16304. image: {
  16305. source: "./media/characters/umeko/front.svg",
  16306. extra: 1,
  16307. bottom: 0.019
  16308. }
  16309. },
  16310. frontArmored: {
  16311. height: math.unit(6, "feet"),
  16312. weight: math.unit(150, "lb"),
  16313. name: "Front (Armored)",
  16314. image: {
  16315. source: "./media/characters/umeko/front-armored.svg",
  16316. extra: 1,
  16317. bottom: 0.021
  16318. }
  16319. },
  16320. },
  16321. [
  16322. {
  16323. name: "Macro",
  16324. height: math.unit(220, "feet"),
  16325. default: true
  16326. },
  16327. {
  16328. name: "Guardian Dragon",
  16329. height: math.unit(50, "miles")
  16330. },
  16331. {
  16332. name: "Cosmic",
  16333. height: math.unit(800000, "miles")
  16334. },
  16335. ]
  16336. ))
  16337. characterMakers.push(() => makeCharacter(
  16338. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16339. {
  16340. front: {
  16341. height: math.unit(6, "feet"),
  16342. weight: math.unit(150, "lb"),
  16343. name: "Front",
  16344. image: {
  16345. source: "./media/characters/cassidy/front.svg",
  16346. extra: 810/808,
  16347. bottom: 41/851
  16348. }
  16349. },
  16350. },
  16351. [
  16352. {
  16353. name: "Canon Height",
  16354. height: math.unit(120, "feet"),
  16355. default: true
  16356. },
  16357. {
  16358. name: "Macro+",
  16359. height: math.unit(400, "feet")
  16360. },
  16361. {
  16362. name: "Macro++",
  16363. height: math.unit(4000, "feet")
  16364. },
  16365. {
  16366. name: "Megamacro",
  16367. height: math.unit(3, "miles")
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(6, "feet"),
  16376. weight: math.unit(150, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/isaac/front.svg",
  16380. extra: 896 / 815,
  16381. bottom: 0.11
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Human Size",
  16388. height: math.unit(8, "feet"),
  16389. default: true
  16390. },
  16391. {
  16392. name: "Macro",
  16393. height: math.unit(400, "feet")
  16394. },
  16395. {
  16396. name: "Megamacro",
  16397. height: math.unit(50, "miles")
  16398. },
  16399. {
  16400. name: "Canon Height",
  16401. height: math.unit(200, "AU")
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(6, "feet"),
  16410. weight: math.unit(72, "kg"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/sleekit/front.svg",
  16414. extra: 4693 / 4487,
  16415. bottom: 0.012
  16416. }
  16417. },
  16418. },
  16419. [
  16420. {
  16421. name: "Minimum Height",
  16422. height: math.unit(10, "meters")
  16423. },
  16424. {
  16425. name: "Smaller",
  16426. height: math.unit(25, "meters")
  16427. },
  16428. {
  16429. name: "Larger",
  16430. height: math.unit(38, "meters"),
  16431. default: true
  16432. },
  16433. {
  16434. name: "Maximum height",
  16435. height: math.unit(100, "meters")
  16436. },
  16437. ]
  16438. ))
  16439. characterMakers.push(() => makeCharacter(
  16440. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16441. {
  16442. front: {
  16443. height: math.unit(6, "feet"),
  16444. weight: math.unit(150, "lb"),
  16445. name: "Front",
  16446. image: {
  16447. source: "./media/characters/nillia/front.svg",
  16448. extra: 719/665,
  16449. bottom: 6/725
  16450. }
  16451. },
  16452. back: {
  16453. height: math.unit(6, "feet"),
  16454. weight: math.unit(150, "lb"),
  16455. name: "Back",
  16456. image: {
  16457. source: "./media/characters/nillia/back.svg",
  16458. extra: 705/651,
  16459. bottom: 5/710
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Canon Height",
  16466. height: math.unit(489, "feet"),
  16467. default: true
  16468. }
  16469. ]
  16470. ))
  16471. characterMakers.push(() => makeCharacter(
  16472. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16473. {
  16474. front: {
  16475. height: math.unit(6, "feet"),
  16476. weight: math.unit(150, "lb"),
  16477. name: "Front",
  16478. image: {
  16479. source: "./media/characters/mesmyriza/front.svg",
  16480. extra: 1541/1291,
  16481. bottom: 87/1628
  16482. }
  16483. },
  16484. foot: {
  16485. height: math.unit(6 / (250 / 35), "feet"),
  16486. name: "Foot",
  16487. image: {
  16488. source: "./media/characters/mesmyriza/foot.svg"
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Macro",
  16495. height: math.unit(457, "meters"),
  16496. default: true
  16497. },
  16498. {
  16499. name: "Megamacro",
  16500. height: math.unit(8, "megameters")
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(6, "feet"),
  16509. weight: math.unit(250, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/saudade/front.svg",
  16513. extra: 1172 / 1139,
  16514. bottom: 0.035
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Micro",
  16521. height: math.unit(3, "inches")
  16522. },
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(6, "feet"),
  16526. default: true
  16527. },
  16528. {
  16529. name: "Macro",
  16530. height: math.unit(50, "feet")
  16531. },
  16532. {
  16533. name: "Megamacro",
  16534. height: math.unit(2800, "feet")
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16540. {
  16541. front: {
  16542. height: math.unit(5 + 4 / 12, "feet"),
  16543. weight: math.unit(100, "lb"),
  16544. name: "Front",
  16545. image: {
  16546. source: "./media/characters/keireer/front.svg",
  16547. extra: 716 / 666,
  16548. bottom: 0.05
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(5 + 4 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16562. {
  16563. front: {
  16564. height: math.unit(5.5, "feet"),
  16565. weight: math.unit(90, "kg"),
  16566. name: "Front",
  16567. image: {
  16568. source: "./media/characters/mirja/front.svg",
  16569. extra: 1452/1262,
  16570. bottom: 67/1519
  16571. }
  16572. },
  16573. frontDressed: {
  16574. height: math.unit(5.5, "feet"),
  16575. weight: math.unit(90, "lb"),
  16576. name: "Front (Dressed)",
  16577. image: {
  16578. source: "./media/characters/mirja/dressed.svg",
  16579. extra: 1452/1262,
  16580. bottom: 67/1519
  16581. }
  16582. },
  16583. back: {
  16584. height: math.unit(6, "feet"),
  16585. weight: math.unit(90, "lb"),
  16586. name: "Back",
  16587. image: {
  16588. source: "./media/characters/mirja/back.svg",
  16589. extra: 1892/1795,
  16590. bottom: 48/1940
  16591. }
  16592. },
  16593. maw: {
  16594. height: math.unit(1.312, "feet"),
  16595. name: "Maw",
  16596. image: {
  16597. source: "./media/characters/mirja/maw.svg"
  16598. }
  16599. },
  16600. paw: {
  16601. height: math.unit(1.15, "feet"),
  16602. name: "Paw",
  16603. image: {
  16604. source: "./media/characters/mirja/paw.svg"
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "\"Incognito\"",
  16611. height: math.unit(3, "meters")
  16612. },
  16613. {
  16614. name: "Strolling Size",
  16615. height: math.unit(15, "km")
  16616. },
  16617. {
  16618. name: "Larger Strolling Size",
  16619. height: math.unit(400, "km")
  16620. },
  16621. {
  16622. name: "Preferred Size",
  16623. height: math.unit(5000, "km"),
  16624. default: true
  16625. },
  16626. {
  16627. name: "True Size",
  16628. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16634. {
  16635. front: {
  16636. height: math.unit(15, "feet"),
  16637. weight: math.unit(880, "kg"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/nightraver/front.svg",
  16641. extra: 2444 / 2160,
  16642. bottom: 0.027
  16643. }
  16644. },
  16645. back: {
  16646. height: math.unit(15, "feet"),
  16647. weight: math.unit(880, "kg"),
  16648. name: "Back",
  16649. image: {
  16650. source: "./media/characters/nightraver/back.svg",
  16651. extra: 2309 / 2180,
  16652. bottom: 0.005
  16653. }
  16654. },
  16655. sole: {
  16656. height: math.unit(2.878, "feet"),
  16657. name: "Sole",
  16658. image: {
  16659. source: "./media/characters/nightraver/sole.svg"
  16660. }
  16661. },
  16662. foot: {
  16663. height: math.unit(2.285, "feet"),
  16664. name: "Foot",
  16665. image: {
  16666. source: "./media/characters/nightraver/foot.svg"
  16667. }
  16668. },
  16669. maw: {
  16670. height: math.unit(2.67, "feet"),
  16671. name: "Maw",
  16672. image: {
  16673. source: "./media/characters/nightraver/maw.svg"
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Micro",
  16680. height: math.unit(1, "cm")
  16681. },
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(15, "feet"),
  16685. default: true
  16686. },
  16687. {
  16688. name: "Macro",
  16689. height: math.unit(300, "feet")
  16690. },
  16691. {
  16692. name: "Megamacro",
  16693. height: math.unit(300, "miles")
  16694. },
  16695. {
  16696. name: "Gigamacro",
  16697. height: math.unit(10000, "miles")
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16703. {
  16704. side: {
  16705. height: math.unit(2, "inches"),
  16706. weight: math.unit(5, "grams"),
  16707. name: "Side",
  16708. image: {
  16709. source: "./media/characters/arc/side.svg"
  16710. }
  16711. },
  16712. },
  16713. [
  16714. {
  16715. name: "Micro",
  16716. height: math.unit(2, "inches"),
  16717. default: true
  16718. },
  16719. ]
  16720. ))
  16721. characterMakers.push(() => makeCharacter(
  16722. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16723. {
  16724. front: {
  16725. height: math.unit(1.1938, "meters"),
  16726. weight: math.unit(54, "kg"),
  16727. name: "Front",
  16728. image: {
  16729. source: "./media/characters/nebula-shahar/front.svg",
  16730. extra: 1642 / 1436,
  16731. bottom: 0.06
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Megamicro",
  16738. height: math.unit(0.3, "mm")
  16739. },
  16740. {
  16741. name: "Micro",
  16742. height: math.unit(3, "cm")
  16743. },
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(138, "cm"),
  16747. default: true
  16748. },
  16749. {
  16750. name: "Macro",
  16751. height: math.unit(30, "m")
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16757. {
  16758. front: {
  16759. height: math.unit(5.24, "feet"),
  16760. weight: math.unit(150, "lb"),
  16761. name: "Front",
  16762. image: {
  16763. source: "./media/characters/shayla/front.svg",
  16764. extra: 1512 / 1414,
  16765. bottom: 0.01
  16766. }
  16767. },
  16768. back: {
  16769. height: math.unit(5.24, "feet"),
  16770. weight: math.unit(150, "lb"),
  16771. name: "Back",
  16772. image: {
  16773. source: "./media/characters/shayla/back.svg",
  16774. extra: 1512 / 1414
  16775. }
  16776. },
  16777. hand: {
  16778. height: math.unit(0.7781496062992126, "feet"),
  16779. name: "Hand",
  16780. image: {
  16781. source: "./media/characters/shayla/hand.svg"
  16782. }
  16783. },
  16784. foot: {
  16785. height: math.unit(1.4206036745406823, "feet"),
  16786. name: "Foot",
  16787. image: {
  16788. source: "./media/characters/shayla/foot.svg"
  16789. }
  16790. },
  16791. },
  16792. [
  16793. {
  16794. name: "Micro",
  16795. height: math.unit(0.32, "feet")
  16796. },
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(5.24, "feet"),
  16800. default: true
  16801. },
  16802. {
  16803. name: "Macro",
  16804. height: math.unit(492.12, "feet")
  16805. },
  16806. {
  16807. name: "Megamacro",
  16808. height: math.unit(186.41, "miles")
  16809. },
  16810. ]
  16811. ))
  16812. characterMakers.push(() => makeCharacter(
  16813. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16814. {
  16815. front: {
  16816. height: math.unit(2.2, "m"),
  16817. weight: math.unit(120, "kg"),
  16818. name: "Front",
  16819. image: {
  16820. source: "./media/characters/pia-jr/front.svg",
  16821. extra: 1000 / 970,
  16822. bottom: 0.035
  16823. }
  16824. },
  16825. hand: {
  16826. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16827. name: "Hand",
  16828. image: {
  16829. source: "./media/characters/pia-jr/hand.svg"
  16830. }
  16831. },
  16832. paw: {
  16833. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16834. name: "Paw",
  16835. image: {
  16836. source: "./media/characters/pia-jr/paw.svg"
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Micro",
  16843. height: math.unit(1.2, "cm")
  16844. },
  16845. {
  16846. name: "Normal",
  16847. height: math.unit(2.2, "m"),
  16848. default: true
  16849. },
  16850. {
  16851. name: "Macro",
  16852. height: math.unit(180, "m")
  16853. },
  16854. {
  16855. name: "Megamacro",
  16856. height: math.unit(420, "km")
  16857. },
  16858. ]
  16859. ))
  16860. characterMakers.push(() => makeCharacter(
  16861. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16862. {
  16863. front: {
  16864. height: math.unit(2, "m"),
  16865. weight: math.unit(115, "kg"),
  16866. name: "Front",
  16867. image: {
  16868. source: "./media/characters/pia-sr/front.svg",
  16869. extra: 760 / 730,
  16870. bottom: 0.015
  16871. }
  16872. },
  16873. back: {
  16874. height: math.unit(2, "m"),
  16875. weight: math.unit(115, "kg"),
  16876. name: "Back",
  16877. image: {
  16878. source: "./media/characters/pia-sr/back.svg",
  16879. extra: 760 / 730,
  16880. bottom: 0.01
  16881. }
  16882. },
  16883. hand: {
  16884. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16885. name: "Hand",
  16886. image: {
  16887. source: "./media/characters/pia-sr/hand.svg"
  16888. }
  16889. },
  16890. foot: {
  16891. height: math.unit(1.83, "feet"),
  16892. name: "Foot",
  16893. image: {
  16894. source: "./media/characters/pia-sr/foot.svg"
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Micro",
  16901. height: math.unit(88, "mm")
  16902. },
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(2, "m"),
  16906. default: true
  16907. },
  16908. {
  16909. name: "Macro",
  16910. height: math.unit(200, "m")
  16911. },
  16912. {
  16913. name: "Megamacro",
  16914. height: math.unit(420, "km")
  16915. },
  16916. ]
  16917. ))
  16918. characterMakers.push(() => makeCharacter(
  16919. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16920. {
  16921. front: {
  16922. height: math.unit(8 + 2 / 12, "feet"),
  16923. weight: math.unit(300, "lb"),
  16924. name: "Front",
  16925. image: {
  16926. source: "./media/characters/kibibyte/front.svg",
  16927. extra: 2221 / 2098,
  16928. bottom: 0.04
  16929. }
  16930. },
  16931. },
  16932. [
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(8 + 2 / 12, "feet"),
  16936. default: true
  16937. },
  16938. {
  16939. name: "Socialable Macro",
  16940. height: math.unit(50, "feet")
  16941. },
  16942. {
  16943. name: "Macro",
  16944. height: math.unit(300, "feet")
  16945. },
  16946. {
  16947. name: "Megamacro",
  16948. height: math.unit(500, "miles")
  16949. },
  16950. ]
  16951. ))
  16952. characterMakers.push(() => makeCharacter(
  16953. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16954. {
  16955. front: {
  16956. height: math.unit(6, "feet"),
  16957. weight: math.unit(150, "lb"),
  16958. name: "Front",
  16959. image: {
  16960. source: "./media/characters/felix/front.svg",
  16961. extra: 762 / 722,
  16962. bottom: 0.02
  16963. }
  16964. },
  16965. frontClothed: {
  16966. height: math.unit(6, "feet"),
  16967. weight: math.unit(150, "lb"),
  16968. name: "Front (Clothed)",
  16969. image: {
  16970. source: "./media/characters/felix/front-clothed.svg",
  16971. extra: 762 / 722,
  16972. bottom: 0.02
  16973. }
  16974. },
  16975. },
  16976. [
  16977. {
  16978. name: "Normal",
  16979. height: math.unit(6 + 8 / 12, "feet"),
  16980. default: true
  16981. },
  16982. {
  16983. name: "Macro",
  16984. height: math.unit(2600, "feet")
  16985. },
  16986. {
  16987. name: "Megamacro",
  16988. height: math.unit(450, "miles")
  16989. },
  16990. ]
  16991. ))
  16992. characterMakers.push(() => makeCharacter(
  16993. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16994. {
  16995. front: {
  16996. height: math.unit(6 + 1 / 12, "feet"),
  16997. weight: math.unit(250, "lb"),
  16998. name: "Front",
  16999. image: {
  17000. source: "./media/characters/tobo/front.svg",
  17001. extra: 608 / 586,
  17002. bottom: 0.023
  17003. }
  17004. },
  17005. back: {
  17006. height: math.unit(6 + 1 / 12, "feet"),
  17007. weight: math.unit(250, "lb"),
  17008. name: "Back",
  17009. image: {
  17010. source: "./media/characters/tobo/back.svg",
  17011. extra: 608 / 586
  17012. }
  17013. },
  17014. },
  17015. [
  17016. {
  17017. name: "Nano",
  17018. height: math.unit(2, "nm")
  17019. },
  17020. {
  17021. name: "Megamicro",
  17022. height: math.unit(0.1, "mm")
  17023. },
  17024. {
  17025. name: "Micro",
  17026. height: math.unit(1, "inch"),
  17027. default: true
  17028. },
  17029. {
  17030. name: "Human-sized",
  17031. height: math.unit(6 + 1 / 12, "feet")
  17032. },
  17033. {
  17034. name: "Macro",
  17035. height: math.unit(250, "feet")
  17036. },
  17037. {
  17038. name: "Megamacro",
  17039. height: math.unit(75, "miles")
  17040. },
  17041. {
  17042. name: "Texas-sized",
  17043. height: math.unit(750, "miles")
  17044. },
  17045. {
  17046. name: "Teramacro",
  17047. height: math.unit(50000, "miles")
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  17053. {
  17054. front: {
  17055. height: math.unit(6, "feet"),
  17056. weight: math.unit(269, "lb"),
  17057. name: "Front",
  17058. image: {
  17059. source: "./media/characters/danny-kapowsky/front.svg",
  17060. extra: 766 / 736,
  17061. bottom: 0.044
  17062. }
  17063. },
  17064. back: {
  17065. height: math.unit(6, "feet"),
  17066. weight: math.unit(269, "lb"),
  17067. name: "Back",
  17068. image: {
  17069. source: "./media/characters/danny-kapowsky/back.svg",
  17070. extra: 797 / 760,
  17071. bottom: 0.025
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Macro",
  17078. height: math.unit(150, "feet"),
  17079. default: true
  17080. },
  17081. {
  17082. name: "Macro+",
  17083. height: math.unit(200, "feet")
  17084. },
  17085. {
  17086. name: "Macro++",
  17087. height: math.unit(300, "feet")
  17088. },
  17089. {
  17090. name: "Macro+++",
  17091. height: math.unit(400, "feet")
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  17097. {
  17098. side: {
  17099. height: math.unit(6, "feet"),
  17100. weight: math.unit(170, "lb"),
  17101. name: "Side",
  17102. image: {
  17103. source: "./media/characters/finn/side.svg",
  17104. extra: 1953 / 1807,
  17105. bottom: 0.057
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Megamacro",
  17112. height: math.unit(14445, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  17119. {
  17120. front: {
  17121. height: math.unit(5 + 6 / 12, "feet"),
  17122. weight: math.unit(125, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/roy/front.svg",
  17126. extra: 1,
  17127. bottom: 0.11
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Micro",
  17134. height: math.unit(3, "inches"),
  17135. default: true
  17136. },
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(5 + 6 / 12, "feet")
  17140. },
  17141. {
  17142. name: "Lesser Macro",
  17143. height: math.unit(60, "feet")
  17144. },
  17145. {
  17146. name: "Greater Macro",
  17147. height: math.unit(120, "feet")
  17148. },
  17149. ]
  17150. ))
  17151. characterMakers.push(() => makeCharacter(
  17152. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17153. {
  17154. front: {
  17155. height: math.unit(6, "feet"),
  17156. weight: math.unit(100, "lb"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/aevsivs/front.svg",
  17160. extra: 1,
  17161. bottom: 0.03
  17162. }
  17163. },
  17164. back: {
  17165. height: math.unit(6, "feet"),
  17166. weight: math.unit(100, "lb"),
  17167. name: "Back",
  17168. image: {
  17169. source: "./media/characters/aevsivs/back.svg"
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Micro",
  17176. height: math.unit(2, "inches"),
  17177. default: true
  17178. },
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(5, "feet")
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(5 + 7 / 12, "feet"),
  17190. weight: math.unit(159, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/hildegard/front.svg",
  17194. extra: 289 / 269,
  17195. bottom: 7.63 / 297.8
  17196. }
  17197. },
  17198. back: {
  17199. height: math.unit(5 + 7 / 12, "feet"),
  17200. weight: math.unit(159, "lb"),
  17201. name: "Back",
  17202. image: {
  17203. source: "./media/characters/hildegard/back.svg",
  17204. extra: 280 / 260,
  17205. bottom: 2.3 / 282
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(5 + 7 / 12, "feet"),
  17213. default: true
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17219. {
  17220. bernard: {
  17221. height: math.unit(2 + 7 / 12, "feet"),
  17222. weight: math.unit(66, "lb"),
  17223. name: "Bernard",
  17224. rename: true,
  17225. image: {
  17226. source: "./media/characters/bernard-wilder/bernard.svg",
  17227. extra: 192 / 128,
  17228. bottom: 0.05
  17229. }
  17230. },
  17231. wilder: {
  17232. height: math.unit(5 + 8 / 12, "feet"),
  17233. weight: math.unit(143, "lb"),
  17234. name: "Wilder",
  17235. rename: true,
  17236. image: {
  17237. source: "./media/characters/bernard-wilder/wilder.svg",
  17238. extra: 361 / 312,
  17239. bottom: 0.02
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(2 + 7 / 12, "feet"),
  17247. default: true
  17248. },
  17249. ]
  17250. ))
  17251. characterMakers.push(() => makeCharacter(
  17252. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17253. {
  17254. anthro: {
  17255. height: math.unit(6 + 1 / 12, "feet"),
  17256. weight: math.unit(155, "lb"),
  17257. name: "Anthro",
  17258. image: {
  17259. source: "./media/characters/hearth/anthro.svg",
  17260. extra: 1178/1136,
  17261. bottom: 28/1206
  17262. }
  17263. },
  17264. feral: {
  17265. height: math.unit(3.78, "feet"),
  17266. weight: math.unit(35, "kg"),
  17267. name: "Feral",
  17268. image: {
  17269. source: "./media/characters/hearth/feral.svg",
  17270. extra: 153 / 135,
  17271. bottom: 0.03
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Normal",
  17278. height: math.unit(6 + 1 / 12, "feet"),
  17279. default: true
  17280. },
  17281. ]
  17282. ))
  17283. characterMakers.push(() => makeCharacter(
  17284. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17285. {
  17286. front: {
  17287. height: math.unit(6, "feet"),
  17288. weight: math.unit(182, "lb"),
  17289. name: "Front",
  17290. image: {
  17291. source: "./media/characters/ingrid/front.svg",
  17292. extra: 294 / 268,
  17293. bottom: 0.027
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(6, "feet"),
  17301. default: true
  17302. },
  17303. ]
  17304. ))
  17305. characterMakers.push(() => makeCharacter(
  17306. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17307. {
  17308. eevee: {
  17309. height: math.unit(2 + 10 / 12, "feet"),
  17310. weight: math.unit(86, "lb"),
  17311. name: "Malgam",
  17312. image: {
  17313. source: "./media/characters/malgam/eevee.svg",
  17314. extra: 952/784,
  17315. bottom: 38/990
  17316. }
  17317. },
  17318. sylveon: {
  17319. height: math.unit(4, "feet"),
  17320. weight: math.unit(101, "lb"),
  17321. name: "Future Malgam",
  17322. rename: true,
  17323. image: {
  17324. source: "./media/characters/malgam/sylveon.svg",
  17325. extra: 371 / 325,
  17326. bottom: 0.015
  17327. }
  17328. },
  17329. gigantamax: {
  17330. height: math.unit(50, "feet"),
  17331. name: "Gigantamax Malgam",
  17332. rename: true,
  17333. image: {
  17334. source: "./media/characters/malgam/gigantamax.svg"
  17335. }
  17336. },
  17337. },
  17338. [
  17339. {
  17340. name: "Normal",
  17341. height: math.unit(2 + 10 / 12, "feet"),
  17342. default: true
  17343. },
  17344. ]
  17345. ))
  17346. characterMakers.push(() => makeCharacter(
  17347. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17348. {
  17349. front: {
  17350. height: math.unit(5 + 11 / 12, "feet"),
  17351. weight: math.unit(188, "lb"),
  17352. name: "Front",
  17353. image: {
  17354. source: "./media/characters/fleur/front.svg",
  17355. extra: 309 / 283,
  17356. bottom: 0.007
  17357. }
  17358. },
  17359. },
  17360. [
  17361. {
  17362. name: "Normal",
  17363. height: math.unit(5 + 11 / 12, "feet"),
  17364. default: true
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17370. {
  17371. front: {
  17372. height: math.unit(5 + 4 / 12, "feet"),
  17373. weight: math.unit(122, "lb"),
  17374. name: "Front",
  17375. image: {
  17376. source: "./media/characters/jude/front.svg",
  17377. extra: 288 / 273,
  17378. bottom: 0.03
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(5 + 4 / 12, "feet"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(5 + 11 / 12, "feet"),
  17395. weight: math.unit(190, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/seara/front.svg",
  17399. extra: 1,
  17400. bottom: 0.05
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(5 + 11 / 12, "feet"),
  17408. default: true
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17414. {
  17415. front: {
  17416. height: math.unit(16 + 5 / 12, "feet"),
  17417. weight: math.unit(524, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/caspian-lugia/front.svg",
  17421. extra: 1,
  17422. bottom: 0.04
  17423. }
  17424. },
  17425. },
  17426. [
  17427. {
  17428. name: "Normal",
  17429. height: math.unit(16 + 5 / 12, "feet"),
  17430. default: true
  17431. },
  17432. ]
  17433. ))
  17434. characterMakers.push(() => makeCharacter(
  17435. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17436. {
  17437. front: {
  17438. height: math.unit(5 + 7 / 12, "feet"),
  17439. weight: math.unit(170, "lb"),
  17440. name: "Front",
  17441. image: {
  17442. source: "./media/characters/mika/front.svg",
  17443. extra: 1,
  17444. bottom: 0.016
  17445. }
  17446. },
  17447. },
  17448. [
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(5 + 7 / 12, "feet"),
  17452. default: true
  17453. },
  17454. ]
  17455. ))
  17456. characterMakers.push(() => makeCharacter(
  17457. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17458. {
  17459. front: {
  17460. height: math.unit(6 + 2 / 12, "feet"),
  17461. weight: math.unit(268, "lb"),
  17462. name: "Front",
  17463. image: {
  17464. source: "./media/characters/sol/front.svg",
  17465. extra: 247 / 231,
  17466. bottom: 0.05
  17467. }
  17468. },
  17469. },
  17470. [
  17471. {
  17472. name: "Normal",
  17473. height: math.unit(6 + 2 / 12, "feet"),
  17474. default: true
  17475. },
  17476. ]
  17477. ))
  17478. characterMakers.push(() => makeCharacter(
  17479. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17480. {
  17481. buizel: {
  17482. height: math.unit(2 + 5 / 12, "feet"),
  17483. weight: math.unit(87, "lb"),
  17484. name: "Front",
  17485. image: {
  17486. source: "./media/characters/umiko/buizel.svg",
  17487. extra: 172 / 157,
  17488. bottom: 0.01
  17489. },
  17490. form: "buizel",
  17491. default: true
  17492. },
  17493. floatzel: {
  17494. height: math.unit(5 + 9 / 12, "feet"),
  17495. weight: math.unit(250, "lb"),
  17496. name: "Front",
  17497. image: {
  17498. source: "./media/characters/umiko/floatzel.svg",
  17499. extra: 1076/1006,
  17500. bottom: 15/1091
  17501. },
  17502. form: "floatzel",
  17503. default: true
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Normal",
  17509. height: math.unit(2 + 5 / 12, "feet"),
  17510. form: "buizel",
  17511. default: true
  17512. },
  17513. {
  17514. name: "Normal",
  17515. height: math.unit(5 + 9 / 12, "feet"),
  17516. form: "floatzel",
  17517. default: true
  17518. },
  17519. ],
  17520. {
  17521. "buizel": {
  17522. name: "Buizel"
  17523. },
  17524. "floatzel": {
  17525. name: "Floatzel",
  17526. default: true
  17527. }
  17528. }
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17532. {
  17533. front: {
  17534. height: math.unit(6 + 2 / 12, "feet"),
  17535. weight: math.unit(146, "lb"),
  17536. name: "Front",
  17537. image: {
  17538. source: "./media/characters/iliac/front.svg",
  17539. extra: 389 / 365,
  17540. bottom: 0.035
  17541. }
  17542. },
  17543. },
  17544. [
  17545. {
  17546. name: "Normal",
  17547. height: math.unit(6 + 2 / 12, "feet"),
  17548. default: true
  17549. },
  17550. ]
  17551. ))
  17552. characterMakers.push(() => makeCharacter(
  17553. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17554. {
  17555. front: {
  17556. height: math.unit(6, "feet"),
  17557. weight: math.unit(170, "lb"),
  17558. name: "Front",
  17559. image: {
  17560. source: "./media/characters/topaz/front.svg",
  17561. extra: 317 / 303,
  17562. bottom: 0.055
  17563. }
  17564. },
  17565. },
  17566. [
  17567. {
  17568. name: "Normal",
  17569. height: math.unit(6, "feet"),
  17570. default: true
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17576. {
  17577. front: {
  17578. height: math.unit(5 + 11 / 12, "feet"),
  17579. weight: math.unit(144, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/gabriel/front.svg",
  17583. extra: 285 / 262,
  17584. bottom: 0.004
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Normal",
  17591. height: math.unit(5 + 11 / 12, "feet"),
  17592. default: true
  17593. },
  17594. ]
  17595. ))
  17596. characterMakers.push(() => makeCharacter(
  17597. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17598. {
  17599. side: {
  17600. height: math.unit(6 + 5 / 12, "feet"),
  17601. weight: math.unit(300, "lb"),
  17602. name: "Side",
  17603. image: {
  17604. source: "./media/characters/tempest-suicune/side.svg",
  17605. extra: 195 / 154,
  17606. bottom: 0.04
  17607. }
  17608. },
  17609. },
  17610. [
  17611. {
  17612. name: "Normal",
  17613. height: math.unit(6 + 5 / 12, "feet"),
  17614. default: true
  17615. },
  17616. ]
  17617. ))
  17618. characterMakers.push(() => makeCharacter(
  17619. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17620. {
  17621. front: {
  17622. height: math.unit(7 + 2 / 12, "feet"),
  17623. weight: math.unit(322, "lb"),
  17624. name: "Front",
  17625. image: {
  17626. source: "./media/characters/vulcan/front.svg",
  17627. extra: 154 / 147,
  17628. bottom: 0.04
  17629. }
  17630. },
  17631. },
  17632. [
  17633. {
  17634. name: "Normal",
  17635. height: math.unit(7 + 2 / 12, "feet"),
  17636. default: true
  17637. },
  17638. ]
  17639. ))
  17640. characterMakers.push(() => makeCharacter(
  17641. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17642. {
  17643. front: {
  17644. height: math.unit(5 + 10 / 12, "feet"),
  17645. weight: math.unit(264, "lb"),
  17646. name: "Front",
  17647. image: {
  17648. source: "./media/characters/gault/front.svg",
  17649. extra: 161 / 140,
  17650. bottom: 0.028
  17651. }
  17652. },
  17653. },
  17654. [
  17655. {
  17656. name: "Normal",
  17657. height: math.unit(5 + 10 / 12, "feet"),
  17658. default: true
  17659. },
  17660. ]
  17661. ))
  17662. characterMakers.push(() => makeCharacter(
  17663. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17664. {
  17665. front: {
  17666. height: math.unit(6, "feet"),
  17667. weight: math.unit(150, "lb"),
  17668. name: "Front",
  17669. image: {
  17670. source: "./media/characters/shard/front.svg",
  17671. extra: 273 / 238,
  17672. bottom: 0.02
  17673. }
  17674. },
  17675. },
  17676. [
  17677. {
  17678. name: "Normal",
  17679. height: math.unit(3 + 6 / 12, "feet"),
  17680. default: true
  17681. },
  17682. ]
  17683. ))
  17684. characterMakers.push(() => makeCharacter(
  17685. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17686. {
  17687. front: {
  17688. height: math.unit(5 + 11 / 12, "feet"),
  17689. weight: math.unit(146, "lb"),
  17690. name: "Front",
  17691. image: {
  17692. source: "./media/characters/ashe/front.svg",
  17693. extra: 400 / 373,
  17694. bottom: 0.01
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(5 + 11 / 12, "feet"),
  17702. default: true
  17703. },
  17704. ]
  17705. ))
  17706. characterMakers.push(() => makeCharacter(
  17707. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17708. {
  17709. front: {
  17710. height: math.unit(5 + 5 / 12, "feet"),
  17711. weight: math.unit(135, "lb"),
  17712. name: "Front",
  17713. image: {
  17714. source: "./media/characters/beatrix/front.svg",
  17715. extra: 392 / 379,
  17716. bottom: 0.01
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(6, "feet"),
  17724. default: true
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17730. {
  17731. front: {
  17732. height: math.unit(6 + 2/12, "feet"),
  17733. weight: math.unit(135, "lb"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/ignatius/front.svg",
  17737. extra: 1380/1259,
  17738. bottom: 27/1407
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(6 + 2/12, "feet"),
  17746. default: true
  17747. },
  17748. ]
  17749. ))
  17750. characterMakers.push(() => makeCharacter(
  17751. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17752. {
  17753. front: {
  17754. height: math.unit(6 + 2 / 12, "feet"),
  17755. weight: math.unit(138, "lb"),
  17756. name: "Front",
  17757. image: {
  17758. source: "./media/characters/mei-li/front.svg",
  17759. extra: 237 / 229,
  17760. bottom: 0.03
  17761. }
  17762. },
  17763. },
  17764. [
  17765. {
  17766. name: "Normal",
  17767. height: math.unit(6 + 2 / 12, "feet"),
  17768. default: true
  17769. },
  17770. ]
  17771. ))
  17772. characterMakers.push(() => makeCharacter(
  17773. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17774. {
  17775. front: {
  17776. height: math.unit(2 + 4 / 12, "feet"),
  17777. weight: math.unit(62, "lb"),
  17778. name: "Front",
  17779. image: {
  17780. source: "./media/characters/puru/front.svg",
  17781. extra: 206 / 149,
  17782. bottom: 0.06
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Normal",
  17789. height: math.unit(2 + 4 / 12, "feet"),
  17790. default: true
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17796. {
  17797. anthro: {
  17798. height: math.unit(5 + 8/12, "feet"),
  17799. weight: math.unit(200, "lb"),
  17800. energyNeed: math.unit(2000, "kcal"),
  17801. name: "Anthro",
  17802. image: {
  17803. source: "./media/characters/kee/anthro.svg",
  17804. extra: 3251/3184,
  17805. bottom: 250/3501
  17806. }
  17807. },
  17808. taur: {
  17809. height: math.unit(11, "feet"),
  17810. weight: math.unit(500, "lb"),
  17811. energyNeed: math.unit(5000, "kcal"),
  17812. name: "Taur",
  17813. image: {
  17814. source: "./media/characters/kee/taur.svg",
  17815. extra: 1362/1320,
  17816. bottom: 83/1445
  17817. }
  17818. },
  17819. },
  17820. [
  17821. {
  17822. name: "Normal",
  17823. height: math.unit(5 + 8/12, "feet"),
  17824. default: true
  17825. },
  17826. {
  17827. name: "Macro",
  17828. height: math.unit(35, "feet")
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17834. {
  17835. anthro: {
  17836. height: math.unit(7, "feet"),
  17837. weight: math.unit(190, "lb"),
  17838. name: "Anthro",
  17839. image: {
  17840. source: "./media/characters/cobalt-dracha/anthro.svg",
  17841. extra: 231 / 225,
  17842. bottom: 0.04
  17843. }
  17844. },
  17845. feral: {
  17846. height: math.unit(9 + 7 / 12, "feet"),
  17847. weight: math.unit(294, "lb"),
  17848. name: "Feral",
  17849. image: {
  17850. source: "./media/characters/cobalt-dracha/feral.svg",
  17851. extra: 692 / 633,
  17852. bottom: 0.05
  17853. }
  17854. },
  17855. },
  17856. [
  17857. {
  17858. name: "Normal",
  17859. height: math.unit(7, "feet"),
  17860. default: true
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17866. {
  17867. fallen: {
  17868. height: math.unit(11 + 8 / 12, "feet"),
  17869. weight: math.unit(485, "lb"),
  17870. name: "Java (Fallen)",
  17871. rename: true,
  17872. image: {
  17873. source: "./media/characters/java/fallen.svg",
  17874. extra: 226 / 208,
  17875. bottom: 0.005
  17876. }
  17877. },
  17878. godkin: {
  17879. height: math.unit(10 + 6 / 12, "feet"),
  17880. weight: math.unit(328, "lb"),
  17881. name: "Java (Godkin)",
  17882. rename: true,
  17883. image: {
  17884. source: "./media/characters/java/godkin.svg",
  17885. extra: 1104/1068,
  17886. bottom: 36/1140
  17887. }
  17888. },
  17889. },
  17890. [
  17891. {
  17892. name: "Normal",
  17893. height: math.unit(11 + 8 / 12, "feet"),
  17894. default: true
  17895. },
  17896. ]
  17897. ))
  17898. characterMakers.push(() => makeCharacter(
  17899. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17900. {
  17901. front: {
  17902. height: math.unit(5 + 9 / 12, "feet"),
  17903. weight: math.unit(170, "lb"),
  17904. name: "Front",
  17905. image: {
  17906. source: "./media/characters/purna/front.svg",
  17907. extra: 239 / 229,
  17908. bottom: 0.01
  17909. }
  17910. },
  17911. },
  17912. [
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(5 + 9 / 12, "feet"),
  17916. default: true
  17917. },
  17918. ]
  17919. ))
  17920. characterMakers.push(() => makeCharacter(
  17921. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17922. {
  17923. front: {
  17924. height: math.unit(5 + 9 / 12, "feet"),
  17925. weight: math.unit(142, "lb"),
  17926. name: "Front",
  17927. image: {
  17928. source: "./media/characters/kuva/front.svg",
  17929. extra: 281 / 271,
  17930. bottom: 0.006
  17931. }
  17932. },
  17933. },
  17934. [
  17935. {
  17936. name: "Normal",
  17937. height: math.unit(5 + 9 / 12, "feet"),
  17938. default: true
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17944. {
  17945. anthro: {
  17946. height: math.unit(9 + 2 / 12, "feet"),
  17947. weight: math.unit(270, "lb"),
  17948. name: "Anthro",
  17949. image: {
  17950. source: "./media/characters/embra/anthro.svg",
  17951. extra: 200 / 187,
  17952. bottom: 0.02
  17953. }
  17954. },
  17955. feral: {
  17956. height: math.unit(18 + 8 / 12, "feet"),
  17957. weight: math.unit(576, "lb"),
  17958. name: "Feral",
  17959. image: {
  17960. source: "./media/characters/embra/feral.svg",
  17961. extra: 152 / 137,
  17962. bottom: 0.037
  17963. }
  17964. },
  17965. },
  17966. [
  17967. {
  17968. name: "Normal",
  17969. height: math.unit(9 + 2 / 12, "feet"),
  17970. default: true
  17971. },
  17972. ]
  17973. ))
  17974. characterMakers.push(() => makeCharacter(
  17975. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17976. {
  17977. anthro: {
  17978. height: math.unit(10 + 9 / 12, "feet"),
  17979. weight: math.unit(224, "lb"),
  17980. name: "Anthro",
  17981. image: {
  17982. source: "./media/characters/grottos/anthro.svg",
  17983. extra: 350 / 332,
  17984. bottom: 0.045
  17985. }
  17986. },
  17987. feral: {
  17988. height: math.unit(20 + 7 / 12, "feet"),
  17989. weight: math.unit(629, "lb"),
  17990. name: "Feral",
  17991. image: {
  17992. source: "./media/characters/grottos/feral.svg",
  17993. extra: 207 / 190,
  17994. bottom: 0.05
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(10 + 9 / 12, "feet"),
  18002. default: true
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  18008. {
  18009. anthro: {
  18010. height: math.unit(9 + 6 / 12, "feet"),
  18011. weight: math.unit(298, "lb"),
  18012. name: "Anthro",
  18013. image: {
  18014. source: "./media/characters/frifna/anthro.svg",
  18015. extra: 282 / 269,
  18016. bottom: 0.015
  18017. }
  18018. },
  18019. feral: {
  18020. height: math.unit(16 + 2 / 12, "feet"),
  18021. weight: math.unit(624, "lb"),
  18022. name: "Feral",
  18023. image: {
  18024. source: "./media/characters/frifna/feral.svg"
  18025. }
  18026. },
  18027. },
  18028. [
  18029. {
  18030. name: "Normal",
  18031. height: math.unit(9 + 6 / 12, "feet"),
  18032. default: true
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  18038. {
  18039. front: {
  18040. height: math.unit(6 + 2 / 12, "feet"),
  18041. weight: math.unit(168, "lb"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/elise/front.svg",
  18045. extra: 276 / 271
  18046. }
  18047. },
  18048. },
  18049. [
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(6 + 2 / 12, "feet"),
  18053. default: true
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  18059. {
  18060. front: {
  18061. height: math.unit(5 + 10 / 12, "feet"),
  18062. weight: math.unit(210, "lb"),
  18063. name: "Front",
  18064. image: {
  18065. source: "./media/characters/glade/front.svg",
  18066. extra: 258 / 247,
  18067. bottom: 0.008
  18068. }
  18069. },
  18070. },
  18071. [
  18072. {
  18073. name: "Normal",
  18074. height: math.unit(5 + 10 / 12, "feet"),
  18075. default: true
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  18081. {
  18082. front: {
  18083. height: math.unit(5 + 10 / 12, "feet"),
  18084. weight: math.unit(129, "lb"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/rina/front.svg",
  18088. extra: 266 / 255,
  18089. bottom: 0.005
  18090. }
  18091. },
  18092. },
  18093. [
  18094. {
  18095. name: "Normal",
  18096. height: math.unit(5 + 10 / 12, "feet"),
  18097. default: true
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  18103. {
  18104. front: {
  18105. height: math.unit(6 + 1 / 12, "feet"),
  18106. weight: math.unit(192, "lb"),
  18107. name: "Front",
  18108. image: {
  18109. source: "./media/characters/veronica/front.svg",
  18110. extra: 319 / 309,
  18111. bottom: 0.005
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Normal",
  18118. height: math.unit(6 + 1 / 12, "feet"),
  18119. default: true
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18125. {
  18126. front: {
  18127. height: math.unit(9 + 3 / 12, "feet"),
  18128. weight: math.unit(1100, "lb"),
  18129. name: "Front",
  18130. image: {
  18131. source: "./media/characters/braxton/front.svg",
  18132. extra: 1057 / 984,
  18133. bottom: 0.05
  18134. }
  18135. },
  18136. },
  18137. [
  18138. {
  18139. name: "Normal",
  18140. height: math.unit(9 + 3 / 12, "feet")
  18141. },
  18142. {
  18143. name: "Giant",
  18144. height: math.unit(300, "feet"),
  18145. default: true
  18146. },
  18147. {
  18148. name: "Macro",
  18149. height: math.unit(700, "feet")
  18150. },
  18151. {
  18152. name: "Megamacro",
  18153. height: math.unit(6000, "feet")
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18159. {
  18160. front: {
  18161. height: math.unit(6 + 7 / 12, "feet"),
  18162. weight: math.unit(150, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/blue-feyonics/front.svg",
  18166. extra: 1403 / 1306,
  18167. bottom: 0.047
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Normal",
  18174. height: math.unit(6 + 7 / 12, "feet"),
  18175. default: true
  18176. },
  18177. ]
  18178. ))
  18179. characterMakers.push(() => makeCharacter(
  18180. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18181. {
  18182. front: {
  18183. height: math.unit(1.8, "meters"),
  18184. weight: math.unit(60, "kg"),
  18185. name: "Front",
  18186. image: {
  18187. source: "./media/characters/maxwell/front.svg",
  18188. extra: 2060 / 1873
  18189. }
  18190. },
  18191. },
  18192. [
  18193. {
  18194. name: "Micro",
  18195. height: math.unit(1, "mm")
  18196. },
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(1.8, "meter"),
  18200. default: true
  18201. },
  18202. {
  18203. name: "Macro",
  18204. height: math.unit(30, "meters")
  18205. },
  18206. {
  18207. name: "Megamacro",
  18208. height: math.unit(10, "km")
  18209. },
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18214. {
  18215. front: {
  18216. height: math.unit(6, "feet"),
  18217. weight: math.unit(150, "lb"),
  18218. name: "Front",
  18219. image: {
  18220. source: "./media/characters/jack/front.svg",
  18221. extra: 1754 / 1640,
  18222. bottom: 0.01
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(80000, "feet"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Max size",
  18234. height: math.unit(10, "lightyears")
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18240. {
  18241. urban: {
  18242. height: math.unit(5, "feet"),
  18243. weight: math.unit(240, "lb"),
  18244. name: "Urban",
  18245. image: {
  18246. source: "./media/characters/cafat/urban.svg",
  18247. extra: 1223/1126,
  18248. bottom: 205/1428
  18249. }
  18250. },
  18251. summer: {
  18252. height: math.unit(5, "feet"),
  18253. weight: math.unit(240, "lb"),
  18254. name: "Summer",
  18255. image: {
  18256. source: "./media/characters/cafat/summer.svg",
  18257. extra: 1223/1126,
  18258. bottom: 205/1428
  18259. }
  18260. },
  18261. winter: {
  18262. height: math.unit(5, "feet"),
  18263. weight: math.unit(240, "lb"),
  18264. name: "Winter",
  18265. image: {
  18266. source: "./media/characters/cafat/winter.svg",
  18267. extra: 1223/1126,
  18268. bottom: 205/1428
  18269. }
  18270. },
  18271. lingerie: {
  18272. height: math.unit(5, "feet"),
  18273. weight: math.unit(240, "lb"),
  18274. name: "Lingerie",
  18275. image: {
  18276. source: "./media/characters/cafat/lingerie.svg",
  18277. extra: 1223/1126,
  18278. bottom: 205/1428
  18279. }
  18280. },
  18281. upright: {
  18282. height: math.unit(6.3, "feet"),
  18283. weight: math.unit(240, "lb"),
  18284. name: "Upright",
  18285. image: {
  18286. source: "./media/characters/cafat/upright.svg",
  18287. bottom: 0.01
  18288. }
  18289. },
  18290. uprightFull: {
  18291. height: math.unit(6.3, "feet"),
  18292. weight: math.unit(240, "lb"),
  18293. name: "Upright (Full)",
  18294. image: {
  18295. source: "./media/characters/cafat/upright-full.svg",
  18296. bottom: 0.01
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Small",
  18303. height: math.unit(4, "feet"),
  18304. default: true
  18305. },
  18306. {
  18307. name: "Large",
  18308. height: math.unit(13, "feet")
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18314. {
  18315. front: {
  18316. height: math.unit(6, "feet"),
  18317. weight: math.unit(150, "lb"),
  18318. name: "Front",
  18319. image: {
  18320. source: "./media/characters/verin-raharra/front.svg",
  18321. extra: 5019 / 4835,
  18322. bottom: 0.023
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(7 + 5 / 12, "feet"),
  18330. default: true
  18331. },
  18332. {
  18333. name: "Upsized",
  18334. height: math.unit(20, "feet")
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18340. {
  18341. front: {
  18342. height: math.unit(7, "feet"),
  18343. weight: math.unit(230, "lb"),
  18344. name: "Front",
  18345. image: {
  18346. source: "./media/characters/nakata/front.svg",
  18347. extra: 1.005,
  18348. bottom: 0.01
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Normal",
  18355. height: math.unit(7, "feet"),
  18356. default: true
  18357. },
  18358. {
  18359. name: "Big",
  18360. height: math.unit(14, "feet")
  18361. },
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(400, "feet")
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18370. {
  18371. front: {
  18372. height: math.unit(4.91, "feet"),
  18373. weight: math.unit(100, "lb"),
  18374. name: "Front",
  18375. image: {
  18376. source: "./media/characters/lily/front.svg",
  18377. extra: 1585 / 1415,
  18378. bottom: 0.02
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Normal",
  18385. height: math.unit(4.91, "feet"),
  18386. default: true
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18392. {
  18393. laying: {
  18394. height: math.unit(4 + 4 / 12, "feet"),
  18395. weight: math.unit(600, "lb"),
  18396. name: "Laying",
  18397. image: {
  18398. source: "./media/characters/sheila/laying.svg",
  18399. extra: 1333 / 1265,
  18400. bottom: 0.16
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(4 + 4 / 12, "feet"),
  18408. default: true
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18414. {
  18415. front: {
  18416. height: math.unit(6, "feet"),
  18417. weight: math.unit(190, "lb"),
  18418. name: "Front",
  18419. image: {
  18420. source: "./media/characters/sax/front.svg",
  18421. extra: 1187 / 973,
  18422. bottom: 0.042
  18423. }
  18424. },
  18425. },
  18426. [
  18427. {
  18428. name: "Micro",
  18429. height: math.unit(4, "inches"),
  18430. default: true
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18436. {
  18437. front: {
  18438. height: math.unit(6, "feet"),
  18439. weight: math.unit(150, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/pandora/front.svg",
  18443. extra: 2720 / 2556,
  18444. bottom: 0.015
  18445. }
  18446. },
  18447. back: {
  18448. height: math.unit(6, "feet"),
  18449. weight: math.unit(150, "lb"),
  18450. name: "Back",
  18451. image: {
  18452. source: "./media/characters/pandora/back.svg",
  18453. extra: 2720 / 2556,
  18454. bottom: 0.01
  18455. }
  18456. },
  18457. beans: {
  18458. height: math.unit(6 / 8, "feet"),
  18459. name: "Beans",
  18460. image: {
  18461. source: "./media/characters/pandora/beans.svg"
  18462. }
  18463. },
  18464. collar: {
  18465. height: math.unit(0.31, "feet"),
  18466. name: "Collar",
  18467. image: {
  18468. source: "./media/characters/pandora/collar.svg"
  18469. }
  18470. },
  18471. skirt: {
  18472. height: math.unit(6, "feet"),
  18473. weight: math.unit(150, "lb"),
  18474. name: "Skirt",
  18475. image: {
  18476. source: "./media/characters/pandora/skirt.svg",
  18477. extra: 1622 / 1525,
  18478. bottom: 0.015
  18479. }
  18480. },
  18481. hoodie: {
  18482. height: math.unit(6, "feet"),
  18483. weight: math.unit(150, "lb"),
  18484. name: "Hoodie",
  18485. image: {
  18486. source: "./media/characters/pandora/hoodie.svg",
  18487. extra: 1622 / 1525,
  18488. bottom: 0.015
  18489. }
  18490. },
  18491. casual: {
  18492. height: math.unit(6, "feet"),
  18493. weight: math.unit(150, "lb"),
  18494. name: "Casual",
  18495. image: {
  18496. source: "./media/characters/pandora/casual.svg",
  18497. extra: 1622 / 1525,
  18498. bottom: 0.015
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Normal",
  18505. height: math.unit(6, "feet")
  18506. },
  18507. {
  18508. name: "Big Steppy",
  18509. height: math.unit(1, "km"),
  18510. default: true
  18511. },
  18512. {
  18513. name: "Galactic Steppy",
  18514. height: math.unit(2, "gigameters")
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18520. {
  18521. side: {
  18522. height: math.unit(10, "feet"),
  18523. weight: math.unit(800, "kg"),
  18524. name: "Side",
  18525. image: {
  18526. source: "./media/characters/venio-darcony/side.svg",
  18527. extra: 1373 / 1003,
  18528. bottom: 0.037
  18529. }
  18530. },
  18531. front: {
  18532. height: math.unit(19, "feet"),
  18533. weight: math.unit(800, "kg"),
  18534. name: "Front",
  18535. image: {
  18536. source: "./media/characters/venio-darcony/front.svg"
  18537. }
  18538. },
  18539. back: {
  18540. height: math.unit(19, "feet"),
  18541. weight: math.unit(800, "kg"),
  18542. name: "Back",
  18543. image: {
  18544. source: "./media/characters/venio-darcony/back.svg"
  18545. }
  18546. },
  18547. sideNsfw: {
  18548. height: math.unit(10, "feet"),
  18549. weight: math.unit(800, "kg"),
  18550. name: "Side (NSFW)",
  18551. image: {
  18552. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18553. extra: 1373 / 1003,
  18554. bottom: 0.037
  18555. }
  18556. },
  18557. frontNsfw: {
  18558. height: math.unit(19, "feet"),
  18559. weight: math.unit(800, "kg"),
  18560. name: "Front (NSFW)",
  18561. image: {
  18562. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18563. }
  18564. },
  18565. backNsfw: {
  18566. height: math.unit(19, "feet"),
  18567. weight: math.unit(800, "kg"),
  18568. name: "Back (NSFW)",
  18569. image: {
  18570. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18571. }
  18572. },
  18573. sideArmored: {
  18574. height: math.unit(10, "feet"),
  18575. weight: math.unit(800, "kg"),
  18576. name: "Side (Armored)",
  18577. image: {
  18578. source: "./media/characters/venio-darcony/side-armored.svg",
  18579. extra: 1373 / 1003,
  18580. bottom: 0.037
  18581. }
  18582. },
  18583. frontArmored: {
  18584. height: math.unit(19, "feet"),
  18585. weight: math.unit(900, "kg"),
  18586. name: "Front (Armored)",
  18587. image: {
  18588. source: "./media/characters/venio-darcony/front-armored.svg"
  18589. }
  18590. },
  18591. backArmored: {
  18592. height: math.unit(19, "feet"),
  18593. weight: math.unit(900, "kg"),
  18594. name: "Back (Armored)",
  18595. image: {
  18596. source: "./media/characters/venio-darcony/back-armored.svg"
  18597. }
  18598. },
  18599. sword: {
  18600. height: math.unit(10, "feet"),
  18601. weight: math.unit(50, "lb"),
  18602. name: "Sword",
  18603. image: {
  18604. source: "./media/characters/venio-darcony/sword.svg"
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Normal",
  18611. height: math.unit(10, "feet")
  18612. },
  18613. {
  18614. name: "Macro",
  18615. height: math.unit(130, "feet"),
  18616. default: true
  18617. },
  18618. {
  18619. name: "Macro+",
  18620. height: math.unit(240, "feet")
  18621. },
  18622. ]
  18623. ))
  18624. characterMakers.push(() => makeCharacter(
  18625. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18626. {
  18627. front: {
  18628. height: math.unit(6, "feet"),
  18629. weight: math.unit(150, "lb"),
  18630. name: "Front",
  18631. image: {
  18632. source: "./media/characters/veski/front.svg",
  18633. extra: 1299 / 1225,
  18634. bottom: 0.04
  18635. }
  18636. },
  18637. back: {
  18638. height: math.unit(6, "feet"),
  18639. weight: math.unit(150, "lb"),
  18640. name: "Back",
  18641. image: {
  18642. source: "./media/characters/veski/back.svg",
  18643. extra: 1299 / 1225,
  18644. bottom: 0.008
  18645. }
  18646. },
  18647. maw: {
  18648. height: math.unit(1.5 * 1.21, "feet"),
  18649. name: "Maw",
  18650. image: {
  18651. source: "./media/characters/veski/maw.svg"
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Macro",
  18658. height: math.unit(2, "km"),
  18659. default: true
  18660. },
  18661. ]
  18662. ))
  18663. characterMakers.push(() => makeCharacter(
  18664. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18665. {
  18666. front: {
  18667. height: math.unit(5 + 7 / 12, "feet"),
  18668. name: "Front",
  18669. image: {
  18670. source: "./media/characters/isabelle/front.svg",
  18671. extra: 2130 / 1976,
  18672. bottom: 0.05
  18673. }
  18674. },
  18675. },
  18676. [
  18677. {
  18678. name: "Supermicro",
  18679. height: math.unit(10, "micrometers")
  18680. },
  18681. {
  18682. name: "Micro",
  18683. height: math.unit(1, "inch")
  18684. },
  18685. {
  18686. name: "Tiny",
  18687. height: math.unit(5, "inches")
  18688. },
  18689. {
  18690. name: "Standard",
  18691. height: math.unit(5 + 7 / 12, "inches")
  18692. },
  18693. {
  18694. name: "Macro",
  18695. height: math.unit(80, "meters"),
  18696. default: true
  18697. },
  18698. {
  18699. name: "Megamacro",
  18700. height: math.unit(250, "meters")
  18701. },
  18702. {
  18703. name: "Gigamacro",
  18704. height: math.unit(5, "km")
  18705. },
  18706. {
  18707. name: "Cosmic",
  18708. height: math.unit(2.5e6, "miles")
  18709. },
  18710. ]
  18711. ))
  18712. characterMakers.push(() => makeCharacter(
  18713. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18714. {
  18715. front: {
  18716. height: math.unit(6, "feet"),
  18717. weight: math.unit(150, "lb"),
  18718. name: "Front",
  18719. image: {
  18720. source: "./media/characters/hanzo/front.svg",
  18721. extra: 374 / 344,
  18722. bottom: 0.02
  18723. }
  18724. },
  18725. },
  18726. [
  18727. {
  18728. name: "Normal",
  18729. height: math.unit(8, "feet"),
  18730. default: true
  18731. },
  18732. ]
  18733. ))
  18734. characterMakers.push(() => makeCharacter(
  18735. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18736. {
  18737. front: {
  18738. height: math.unit(7, "feet"),
  18739. weight: math.unit(130, "lb"),
  18740. name: "Front",
  18741. image: {
  18742. source: "./media/characters/anna/front.svg",
  18743. extra: 169 / 145,
  18744. bottom: 0.06
  18745. }
  18746. },
  18747. full: {
  18748. height: math.unit(4.96, "feet"),
  18749. weight: math.unit(220, "lb"),
  18750. name: "Full",
  18751. image: {
  18752. source: "./media/characters/anna/full.svg",
  18753. extra: 138 / 114,
  18754. bottom: 0.15
  18755. }
  18756. },
  18757. tongue: {
  18758. height: math.unit(2.53, "feet"),
  18759. name: "Tongue",
  18760. image: {
  18761. source: "./media/characters/anna/tongue.svg"
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(7, "feet"),
  18769. default: true
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18775. {
  18776. front: {
  18777. height: math.unit(7 + 1/12, "feet"),
  18778. weight: math.unit(150, "lb"),
  18779. name: "Front",
  18780. image: {
  18781. source: "./media/characters/ian-corvid/front.svg",
  18782. extra: 621/591,
  18783. bottom: 14/635
  18784. }
  18785. },
  18786. back: {
  18787. height: math.unit(7 + 1/12, "feet"),
  18788. weight: math.unit(150, "lb"),
  18789. name: "Back",
  18790. image: {
  18791. source: "./media/characters/ian-corvid/back.svg",
  18792. extra: 621/600,
  18793. bottom: 10/631
  18794. }
  18795. },
  18796. stomping: {
  18797. height: math.unit(7 + 1/12, "feet"),
  18798. weight: math.unit(150, "lb"),
  18799. name: "Stomping",
  18800. image: {
  18801. source: "./media/characters/ian-corvid/stomping.svg",
  18802. extra: 309/291,
  18803. bottom: 7/316
  18804. }
  18805. },
  18806. tongue: {
  18807. height: math.unit(3.9, "feet"),
  18808. name: "Tongue",
  18809. image: {
  18810. source: "./media/characters/ian-corvid/tongue.svg"
  18811. }
  18812. },
  18813. beak: {
  18814. height: math.unit(0.9, "feet"),
  18815. name: "Beak",
  18816. image: {
  18817. source: "./media/characters/ian-corvid/beak.svg"
  18818. }
  18819. },
  18820. sitting: {
  18821. height: math.unit(7 / 1.8, "feet"),
  18822. weight: math.unit(150, "lb"),
  18823. name: "Sitting",
  18824. image: {
  18825. source: "./media/characters/ian-corvid/sitting.svg",
  18826. extra: 1400 / 1269,
  18827. bottom: 0.15
  18828. }
  18829. },
  18830. },
  18831. [
  18832. {
  18833. name: "Tiny Microw",
  18834. height: math.unit(1, "inch")
  18835. },
  18836. {
  18837. name: "Microw",
  18838. height: math.unit(6, "inches")
  18839. },
  18840. {
  18841. name: "Crow",
  18842. height: math.unit(7 + 1 / 12, "feet"),
  18843. default: true
  18844. },
  18845. {
  18846. name: "Macrow",
  18847. height: math.unit(176, "feet")
  18848. },
  18849. ]
  18850. ))
  18851. characterMakers.push(() => makeCharacter(
  18852. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18853. {
  18854. front: {
  18855. height: math.unit(5 + 7 / 12, "feet"),
  18856. weight: math.unit(147, "lb"),
  18857. name: "Front",
  18858. image: {
  18859. source: "./media/characters/natalie-kellon/front.svg",
  18860. extra: 1214 / 1141,
  18861. bottom: 0.02
  18862. }
  18863. },
  18864. },
  18865. [
  18866. {
  18867. name: "Micro",
  18868. height: math.unit(1 / 16, "inch")
  18869. },
  18870. {
  18871. name: "Tiny",
  18872. height: math.unit(4, "inches")
  18873. },
  18874. {
  18875. name: "Normal",
  18876. height: math.unit(5 + 7 / 12, "feet"),
  18877. default: true
  18878. },
  18879. {
  18880. name: "Amazon",
  18881. height: math.unit(12, "feet")
  18882. },
  18883. {
  18884. name: "Giantess",
  18885. height: math.unit(160, "meters")
  18886. },
  18887. {
  18888. name: "Titaness",
  18889. height: math.unit(800, "meters")
  18890. },
  18891. ]
  18892. ))
  18893. characterMakers.push(() => makeCharacter(
  18894. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18895. {
  18896. front: {
  18897. height: math.unit(6, "feet"),
  18898. weight: math.unit(150, "lb"),
  18899. name: "Front",
  18900. image: {
  18901. source: "./media/characters/alluria/front.svg",
  18902. extra: 806 / 738,
  18903. bottom: 0.01
  18904. }
  18905. },
  18906. side: {
  18907. height: math.unit(6, "feet"),
  18908. weight: math.unit(150, "lb"),
  18909. name: "Side",
  18910. image: {
  18911. source: "./media/characters/alluria/side.svg",
  18912. extra: 800 / 750,
  18913. }
  18914. },
  18915. back: {
  18916. height: math.unit(6, "feet"),
  18917. weight: math.unit(150, "lb"),
  18918. name: "Back",
  18919. image: {
  18920. source: "./media/characters/alluria/back.svg",
  18921. extra: 806 / 738,
  18922. }
  18923. },
  18924. frontMaid: {
  18925. height: math.unit(6, "feet"),
  18926. weight: math.unit(150, "lb"),
  18927. name: "Front (Maid)",
  18928. image: {
  18929. source: "./media/characters/alluria/front-maid.svg",
  18930. extra: 806 / 738,
  18931. bottom: 0.01
  18932. }
  18933. },
  18934. sideMaid: {
  18935. height: math.unit(6, "feet"),
  18936. weight: math.unit(150, "lb"),
  18937. name: "Side (Maid)",
  18938. image: {
  18939. source: "./media/characters/alluria/side-maid.svg",
  18940. extra: 800 / 750,
  18941. bottom: 0.005
  18942. }
  18943. },
  18944. backMaid: {
  18945. height: math.unit(6, "feet"),
  18946. weight: math.unit(150, "lb"),
  18947. name: "Back (Maid)",
  18948. image: {
  18949. source: "./media/characters/alluria/back-maid.svg",
  18950. extra: 806 / 738,
  18951. }
  18952. },
  18953. },
  18954. [
  18955. {
  18956. name: "Micro",
  18957. height: math.unit(6, "inches"),
  18958. default: true
  18959. },
  18960. ]
  18961. ))
  18962. characterMakers.push(() => makeCharacter(
  18963. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18964. {
  18965. front: {
  18966. height: math.unit(6, "feet"),
  18967. weight: math.unit(150, "lb"),
  18968. name: "Front",
  18969. image: {
  18970. source: "./media/characters/kyle/front.svg",
  18971. extra: 1069 / 962,
  18972. bottom: 77.228 / 1727.45
  18973. }
  18974. },
  18975. },
  18976. [
  18977. {
  18978. name: "Macro",
  18979. height: math.unit(150, "feet"),
  18980. default: true
  18981. },
  18982. ]
  18983. ))
  18984. characterMakers.push(() => makeCharacter(
  18985. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18986. {
  18987. front: {
  18988. height: math.unit(6, "feet"),
  18989. weight: math.unit(300, "lb"),
  18990. name: "Front",
  18991. image: {
  18992. source: "./media/characters/duncan/front.svg",
  18993. extra: 1650 / 1482,
  18994. bottom: 0.05
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Macro",
  19001. height: math.unit(100, "feet"),
  19002. default: true
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(5 + 4 / 12, "feet"),
  19011. weight: math.unit(220, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/memory/front.svg",
  19015. extra: 3641 / 3545,
  19016. bottom: 0.03
  19017. }
  19018. },
  19019. back: {
  19020. height: math.unit(5 + 4 / 12, "feet"),
  19021. weight: math.unit(220, "lb"),
  19022. name: "Back",
  19023. image: {
  19024. source: "./media/characters/memory/back.svg",
  19025. extra: 3641 / 3545,
  19026. bottom: 0.025
  19027. }
  19028. },
  19029. frontSkirt: {
  19030. height: math.unit(5 + 4 / 12, "feet"),
  19031. weight: math.unit(220, "lb"),
  19032. name: "Front (Skirt)",
  19033. image: {
  19034. source: "./media/characters/memory/front-skirt.svg",
  19035. extra: 3641 / 3545,
  19036. bottom: 0.03
  19037. }
  19038. },
  19039. frontDress: {
  19040. height: math.unit(5 + 4 / 12, "feet"),
  19041. weight: math.unit(220, "lb"),
  19042. name: "Front (Dress)",
  19043. image: {
  19044. source: "./media/characters/memory/front-dress.svg",
  19045. extra: 3641 / 3545,
  19046. bottom: 0.03
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Micro",
  19053. height: math.unit(6, "inches"),
  19054. default: true
  19055. },
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(5 + 4 / 12, "feet")
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  19064. {
  19065. front: {
  19066. height: math.unit(4 + 11 / 12, "feet"),
  19067. weight: math.unit(100, "lb"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/luno/front.svg",
  19071. extra: 1535 / 1487,
  19072. bottom: 0.03
  19073. }
  19074. },
  19075. },
  19076. [
  19077. {
  19078. name: "Micro",
  19079. height: math.unit(3, "inches")
  19080. },
  19081. {
  19082. name: "Normal",
  19083. height: math.unit(4 + 11 / 12, "feet"),
  19084. default: true
  19085. },
  19086. {
  19087. name: "Macro",
  19088. height: math.unit(300, "feet")
  19089. },
  19090. {
  19091. name: "Megamacro",
  19092. height: math.unit(700, "miles")
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  19098. {
  19099. front: {
  19100. height: math.unit(6 + 2 / 12, "feet"),
  19101. weight: math.unit(170, "lb"),
  19102. name: "Front",
  19103. image: {
  19104. source: "./media/characters/jamesy/front.svg",
  19105. extra: 440 / 382,
  19106. bottom: 0.005
  19107. }
  19108. },
  19109. },
  19110. [
  19111. {
  19112. name: "Micro",
  19113. height: math.unit(3, "inches")
  19114. },
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(6 + 2 / 12, "feet"),
  19118. default: true
  19119. },
  19120. {
  19121. name: "Macro",
  19122. height: math.unit(300, "feet")
  19123. },
  19124. {
  19125. name: "Megamacro",
  19126. height: math.unit(700, "miles")
  19127. },
  19128. ]
  19129. ))
  19130. characterMakers.push(() => makeCharacter(
  19131. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19132. {
  19133. front: {
  19134. height: math.unit(6, "feet"),
  19135. weight: math.unit(160, "lb"),
  19136. name: "Front",
  19137. image: {
  19138. source: "./media/characters/mark/front.svg",
  19139. extra: 3300 / 3100,
  19140. bottom: 136.42 / 3440.47
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Macro",
  19147. height: math.unit(120, "meters")
  19148. },
  19149. {
  19150. name: "Bigger Macro",
  19151. height: math.unit(350, "meters")
  19152. },
  19153. {
  19154. name: "Megamacro",
  19155. height: math.unit(8, "km"),
  19156. default: true
  19157. },
  19158. {
  19159. name: "Continental",
  19160. height: math.unit(4550, "km")
  19161. },
  19162. {
  19163. name: "Planetary",
  19164. height: math.unit(65000, "km")
  19165. },
  19166. ]
  19167. ))
  19168. characterMakers.push(() => makeCharacter(
  19169. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19170. {
  19171. front: {
  19172. height: math.unit(6, "feet"),
  19173. weight: math.unit(400, "lb"),
  19174. name: "Front",
  19175. image: {
  19176. source: "./media/characters/mac/front.svg",
  19177. extra: 1048 / 987.7,
  19178. bottom: 60 / 1107.6,
  19179. }
  19180. },
  19181. },
  19182. [
  19183. {
  19184. name: "Macro",
  19185. height: math.unit(500, "feet"),
  19186. default: true
  19187. },
  19188. ]
  19189. ))
  19190. characterMakers.push(() => makeCharacter(
  19191. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19192. {
  19193. front: {
  19194. height: math.unit(5 + 2 / 12, "feet"),
  19195. weight: math.unit(190, "lb"),
  19196. name: "Front",
  19197. image: {
  19198. source: "./media/characters/bari/front.svg",
  19199. extra: 3156 / 2880,
  19200. bottom: 0.03
  19201. }
  19202. },
  19203. back: {
  19204. height: math.unit(5 + 2 / 12, "feet"),
  19205. weight: math.unit(190, "lb"),
  19206. name: "Back",
  19207. image: {
  19208. source: "./media/characters/bari/back.svg",
  19209. extra: 3260 / 2834,
  19210. bottom: 0.025
  19211. }
  19212. },
  19213. frontPlush: {
  19214. height: math.unit(5 + 2 / 12, "feet"),
  19215. weight: math.unit(190, "lb"),
  19216. name: "Front (Plush)",
  19217. image: {
  19218. source: "./media/characters/bari/front-plush.svg",
  19219. extra: 1112 / 1061,
  19220. bottom: 0.002
  19221. }
  19222. },
  19223. },
  19224. [
  19225. {
  19226. name: "Micro",
  19227. height: math.unit(3, "inches")
  19228. },
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(5 + 2 / 12, "feet"),
  19232. default: true
  19233. },
  19234. {
  19235. name: "Macro",
  19236. height: math.unit(20, "feet")
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(6 + 1 / 12, "feet"),
  19245. weight: math.unit(275, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/hunter-misha-raven/front.svg"
  19249. }
  19250. },
  19251. },
  19252. [
  19253. {
  19254. name: "Mortal",
  19255. height: math.unit(6 + 1 / 12, "feet")
  19256. },
  19257. {
  19258. name: "Divine",
  19259. height: math.unit(1.12134e34, "parsecs"),
  19260. default: true
  19261. },
  19262. ]
  19263. ))
  19264. characterMakers.push(() => makeCharacter(
  19265. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19266. {
  19267. front: {
  19268. height: math.unit(6 + 3 / 12, "feet"),
  19269. weight: math.unit(220, "lb"),
  19270. name: "Front",
  19271. image: {
  19272. source: "./media/characters/max-calore/front.svg",
  19273. extra: 1700 / 1648,
  19274. bottom: 0.01
  19275. }
  19276. },
  19277. back: {
  19278. height: math.unit(6 + 3 / 12, "feet"),
  19279. weight: math.unit(220, "lb"),
  19280. name: "Back",
  19281. image: {
  19282. source: "./media/characters/max-calore/back.svg",
  19283. extra: 1700 / 1648,
  19284. bottom: 0.01
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(6 + 3 / 12, "feet"),
  19292. default: true
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19298. {
  19299. side: {
  19300. height: math.unit(2 + 8 / 12, "feet"),
  19301. weight: math.unit(99, "lb"),
  19302. name: "Side",
  19303. image: {
  19304. source: "./media/characters/aspen/side.svg",
  19305. extra: 152 / 138,
  19306. bottom: 0.032
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Normal",
  19313. height: math.unit(2 + 8 / 12, "feet"),
  19314. default: true
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19320. {
  19321. side: {
  19322. height: math.unit(3 + 2 / 12, "feet"),
  19323. weight: math.unit(224, "lb"),
  19324. name: "Side",
  19325. image: {
  19326. source: "./media/characters/sheila-feral-wolf/side.svg",
  19327. extra: 179 / 166,
  19328. bottom: 0.03
  19329. }
  19330. },
  19331. },
  19332. [
  19333. {
  19334. name: "Normal",
  19335. height: math.unit(3 + 2 / 12, "feet"),
  19336. default: true
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19342. {
  19343. side: {
  19344. height: math.unit(1 + 9 / 12, "feet"),
  19345. weight: math.unit(38, "lb"),
  19346. name: "Side",
  19347. image: {
  19348. source: "./media/characters/michelle/side.svg",
  19349. extra: 147 / 136.7,
  19350. bottom: 0.03
  19351. }
  19352. },
  19353. },
  19354. [
  19355. {
  19356. name: "Normal",
  19357. height: math.unit(1 + 9 / 12, "feet"),
  19358. default: true
  19359. },
  19360. ]
  19361. ))
  19362. characterMakers.push(() => makeCharacter(
  19363. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19364. {
  19365. front: {
  19366. height: math.unit(1.54, "feet"),
  19367. weight: math.unit(50, "lb"),
  19368. name: "Front",
  19369. image: {
  19370. source: "./media/characters/nino/front.svg"
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(1.54, "feet"),
  19378. default: true
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19384. {
  19385. front: {
  19386. height: math.unit(1.49, "feet"),
  19387. weight: math.unit(45, "lb"),
  19388. name: "Front",
  19389. image: {
  19390. source: "./media/characters/viola/front.svg"
  19391. }
  19392. },
  19393. },
  19394. [
  19395. {
  19396. name: "Normal",
  19397. height: math.unit(1.49, "feet"),
  19398. default: true
  19399. },
  19400. ]
  19401. ))
  19402. characterMakers.push(() => makeCharacter(
  19403. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19404. {
  19405. front: {
  19406. height: math.unit(6 + 5 / 12, "feet"),
  19407. weight: math.unit(580, "lb"),
  19408. name: "Front",
  19409. image: {
  19410. source: "./media/characters/atlas/front.svg",
  19411. extra: 298.5 / 290,
  19412. bottom: 0.015
  19413. }
  19414. },
  19415. },
  19416. [
  19417. {
  19418. name: "Normal",
  19419. height: math.unit(6 + 5 / 12, "feet"),
  19420. default: true
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19426. {
  19427. side: {
  19428. height: math.unit(15.6, "inches"),
  19429. weight: math.unit(10, "lb"),
  19430. name: "Side",
  19431. image: {
  19432. source: "./media/characters/davy/side.svg",
  19433. extra: 200 / 170,
  19434. bottom: 0.01
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Normal",
  19441. height: math.unit(15.6, "inches"),
  19442. default: true
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19448. {
  19449. side: {
  19450. height: math.unit(4 + 8 / 12, "feet"),
  19451. weight: math.unit(166, "lb"),
  19452. name: "Side",
  19453. image: {
  19454. source: "./media/characters/fiona/side.svg",
  19455. extra: 232 / 220,
  19456. bottom: 0.03
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Normal",
  19463. height: math.unit(4 + 8 / 12, "feet"),
  19464. default: true
  19465. },
  19466. ]
  19467. ))
  19468. characterMakers.push(() => makeCharacter(
  19469. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19470. {
  19471. front: {
  19472. height: math.unit(26, "inches"),
  19473. weight: math.unit(35, "lb"),
  19474. name: "Front",
  19475. image: {
  19476. source: "./media/characters/lyla/front.svg",
  19477. bottom: 0.1
  19478. }
  19479. },
  19480. },
  19481. [
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(3, "feet"),
  19485. default: true
  19486. },
  19487. ]
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19491. {
  19492. side: {
  19493. height: math.unit(1.8, "feet"),
  19494. weight: math.unit(44, "lb"),
  19495. name: "Side",
  19496. image: {
  19497. source: "./media/characters/perseus/side.svg",
  19498. bottom: 0.21
  19499. }
  19500. },
  19501. },
  19502. [
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(1.8, "feet"),
  19506. default: true
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19512. {
  19513. side: {
  19514. height: math.unit(4 + 2 / 12, "feet"),
  19515. weight: math.unit(20, "lb"),
  19516. name: "Side",
  19517. image: {
  19518. source: "./media/characters/remus/side.svg"
  19519. }
  19520. },
  19521. },
  19522. [
  19523. {
  19524. name: "Normal",
  19525. height: math.unit(4 + 2 / 12, "feet"),
  19526. default: true
  19527. },
  19528. ]
  19529. ))
  19530. characterMakers.push(() => makeCharacter(
  19531. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19532. {
  19533. front: {
  19534. height: math.unit(4 + 11 / 12, "feet"),
  19535. weight: math.unit(114, "lb"),
  19536. name: "Front",
  19537. image: {
  19538. source: "./media/characters/raf/front.svg",
  19539. extra: 1504/1339,
  19540. bottom: 26/1530
  19541. }
  19542. },
  19543. side: {
  19544. height: math.unit(4 + 11 / 12, "feet"),
  19545. weight: math.unit(114, "lb"),
  19546. name: "Side",
  19547. image: {
  19548. source: "./media/characters/raf/side.svg",
  19549. extra: 1466/1316,
  19550. bottom: 29/1495
  19551. }
  19552. },
  19553. paw: {
  19554. height: math.unit(1.45, "feet"),
  19555. name: "Paw",
  19556. image: {
  19557. source: "./media/characters/raf/paw.svg"
  19558. },
  19559. extraAttributes: {
  19560. "toeSize": {
  19561. name: "Toe Size",
  19562. power: 2,
  19563. type: "area",
  19564. base: math.unit(0.004, "m^2")
  19565. },
  19566. "padSize": {
  19567. name: "Pad Size",
  19568. power: 2,
  19569. type: "area",
  19570. base: math.unit(0.04, "m^2")
  19571. },
  19572. "footSize": {
  19573. name: "Foot Size",
  19574. power: 2,
  19575. type: "area",
  19576. base: math.unit(0.08, "m^2")
  19577. },
  19578. }
  19579. },
  19580. },
  19581. [
  19582. {
  19583. name: "Micro",
  19584. height: math.unit(2, "inches")
  19585. },
  19586. {
  19587. name: "Normal",
  19588. height: math.unit(4 + 11 / 12, "feet"),
  19589. default: true
  19590. },
  19591. {
  19592. name: "Macro",
  19593. height: math.unit(70, "feet")
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19599. {
  19600. front: {
  19601. height: math.unit(1.5, "meters"),
  19602. weight: math.unit(68, "kg"),
  19603. name: "Front",
  19604. image: {
  19605. source: "./media/characters/liam-einarr/front.svg",
  19606. extra: 2822 / 2666
  19607. }
  19608. },
  19609. back: {
  19610. height: math.unit(1.5, "meters"),
  19611. weight: math.unit(68, "kg"),
  19612. name: "Back",
  19613. image: {
  19614. source: "./media/characters/liam-einarr/back.svg",
  19615. extra: 2822 / 2666,
  19616. bottom: 0.015
  19617. }
  19618. },
  19619. },
  19620. [
  19621. {
  19622. name: "Normal",
  19623. height: math.unit(1.5, "meters"),
  19624. default: true
  19625. },
  19626. {
  19627. name: "Macro",
  19628. height: math.unit(150, "meters")
  19629. },
  19630. {
  19631. name: "Megamacro",
  19632. height: math.unit(35, "km")
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(6, "feet"),
  19641. weight: math.unit(75, "kg"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/linda/front.svg",
  19645. extra: 930 / 874,
  19646. bottom: 0.004
  19647. }
  19648. },
  19649. },
  19650. [
  19651. {
  19652. name: "Normal",
  19653. height: math.unit(6, "feet"),
  19654. default: true
  19655. },
  19656. ]
  19657. ))
  19658. characterMakers.push(() => makeCharacter(
  19659. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19660. {
  19661. front: {
  19662. height: math.unit(6 + 8 / 12, "feet"),
  19663. weight: math.unit(220, "lb"),
  19664. name: "Front",
  19665. image: {
  19666. source: "./media/characters/caylex/front.svg",
  19667. extra: 821 / 772,
  19668. bottom: 0.07
  19669. }
  19670. },
  19671. back: {
  19672. height: math.unit(6 + 8 / 12, "feet"),
  19673. weight: math.unit(220, "lb"),
  19674. name: "Back",
  19675. image: {
  19676. source: "./media/characters/caylex/back.svg",
  19677. extra: 821 / 772,
  19678. bottom: 0.022
  19679. }
  19680. },
  19681. hand: {
  19682. height: math.unit(1.25, "feet"),
  19683. name: "Hand",
  19684. image: {
  19685. source: "./media/characters/caylex/hand.svg"
  19686. }
  19687. },
  19688. foot: {
  19689. height: math.unit(1.6, "feet"),
  19690. name: "Foot",
  19691. image: {
  19692. source: "./media/characters/caylex/foot.svg"
  19693. }
  19694. },
  19695. armored: {
  19696. height: math.unit(6 + 8 / 12, "feet"),
  19697. weight: math.unit(250, "lb"),
  19698. name: "Armored",
  19699. image: {
  19700. source: "./media/characters/caylex/armored.svg",
  19701. extra: 1420 / 1310,
  19702. bottom: 0.045
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Normal",
  19709. height: math.unit(6 + 8 / 12, "feet"),
  19710. default: true
  19711. },
  19712. {
  19713. name: "Normal+",
  19714. height: math.unit(12, "feet")
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19720. {
  19721. front: {
  19722. height: math.unit(7 + 6 / 12, "feet"),
  19723. weight: math.unit(288, "lb"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/alana/front.svg",
  19727. extra: 679 / 653,
  19728. bottom: 22.5 / 701
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Normal",
  19735. height: math.unit(7 + 6 / 12, "feet")
  19736. },
  19737. {
  19738. name: "Large",
  19739. height: math.unit(50, "feet")
  19740. },
  19741. {
  19742. name: "Macro",
  19743. height: math.unit(100, "feet"),
  19744. default: true
  19745. },
  19746. {
  19747. name: "Macro+",
  19748. height: math.unit(200, "feet")
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(6 + 1 / 12, "feet"),
  19757. weight: math.unit(210, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/hasani/front.svg",
  19761. extra: 244 / 232,
  19762. bottom: 0.01
  19763. }
  19764. },
  19765. back: {
  19766. height: math.unit(6 + 1 / 12, "feet"),
  19767. weight: math.unit(210, "lb"),
  19768. name: "Back",
  19769. image: {
  19770. source: "./media/characters/hasani/back.svg",
  19771. extra: 244 / 232,
  19772. bottom: 0.01
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Normal",
  19779. height: math.unit(6 + 1 / 12, "feet")
  19780. },
  19781. {
  19782. name: "Macro",
  19783. height: math.unit(175, "feet"),
  19784. default: true
  19785. },
  19786. ]
  19787. ))
  19788. characterMakers.push(() => makeCharacter(
  19789. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19790. {
  19791. front: {
  19792. height: math.unit(1.82, "meters"),
  19793. weight: math.unit(140, "lb"),
  19794. name: "Front",
  19795. image: {
  19796. source: "./media/characters/nita/front.svg",
  19797. extra: 2473 / 2363,
  19798. bottom: 0.01
  19799. }
  19800. },
  19801. },
  19802. [
  19803. {
  19804. name: "Normal",
  19805. height: math.unit(1.82, "m")
  19806. },
  19807. {
  19808. name: "Macro",
  19809. height: math.unit(300, "m")
  19810. },
  19811. {
  19812. name: "Mistake Canon",
  19813. height: math.unit(0.5, "miles"),
  19814. default: true
  19815. },
  19816. {
  19817. name: "Big Mistake",
  19818. height: math.unit(13, "miles")
  19819. },
  19820. {
  19821. name: "Playing God",
  19822. height: math.unit(2450, "miles")
  19823. },
  19824. ]
  19825. ))
  19826. characterMakers.push(() => makeCharacter(
  19827. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19828. {
  19829. front: {
  19830. height: math.unit(4, "feet"),
  19831. weight: math.unit(120, "lb"),
  19832. name: "Front",
  19833. image: {
  19834. source: "./media/characters/shiriko/front.svg",
  19835. extra: 970/934,
  19836. bottom: 5/975
  19837. }
  19838. },
  19839. },
  19840. [
  19841. {
  19842. name: "Normal",
  19843. height: math.unit(4, "feet"),
  19844. default: true
  19845. },
  19846. ]
  19847. ))
  19848. characterMakers.push(() => makeCharacter(
  19849. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19850. {
  19851. front: {
  19852. height: math.unit(6, "feet"),
  19853. name: "front",
  19854. image: {
  19855. source: "./media/characters/deja/front.svg",
  19856. extra: 926 / 840,
  19857. bottom: 0.07
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Planck Length",
  19864. height: math.unit(1.6e-35, "meters")
  19865. },
  19866. {
  19867. name: "Normal",
  19868. height: math.unit(30.48, "meters"),
  19869. default: true
  19870. },
  19871. {
  19872. name: "Universal",
  19873. height: math.unit(8.8e26, "meters")
  19874. },
  19875. ]
  19876. ))
  19877. characterMakers.push(() => makeCharacter(
  19878. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19879. {
  19880. side: {
  19881. height: math.unit(8, "feet"),
  19882. weight: math.unit(6300, "lb"),
  19883. name: "Side",
  19884. image: {
  19885. source: "./media/characters/anima/side.svg",
  19886. bottom: 0.035
  19887. }
  19888. },
  19889. },
  19890. [
  19891. {
  19892. name: "Normal",
  19893. height: math.unit(8, "feet"),
  19894. default: true
  19895. },
  19896. ]
  19897. ))
  19898. characterMakers.push(() => makeCharacter(
  19899. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19900. {
  19901. front: {
  19902. height: math.unit(8, "feet"),
  19903. weight: math.unit(350, "lb"),
  19904. name: "Front",
  19905. image: {
  19906. source: "./media/characters/bianca/front.svg",
  19907. extra: 234 / 225,
  19908. bottom: 0.03
  19909. }
  19910. },
  19911. },
  19912. [
  19913. {
  19914. name: "Normal",
  19915. height: math.unit(8, "feet"),
  19916. default: true
  19917. },
  19918. ]
  19919. ))
  19920. characterMakers.push(() => makeCharacter(
  19921. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19922. {
  19923. front: {
  19924. height: math.unit(11 + 5/12, "feet"),
  19925. weight: math.unit(1200, "lb"),
  19926. name: "Front",
  19927. image: {
  19928. source: "./media/characters/adinia/front.svg",
  19929. extra: 1767/1641,
  19930. bottom: 44/1811
  19931. },
  19932. extraAttributes: {
  19933. "energyIntake": {
  19934. name: "Energy Intake",
  19935. power: 3,
  19936. type: "energy",
  19937. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19938. },
  19939. }
  19940. },
  19941. back: {
  19942. height: math.unit(11 + 5/12, "feet"),
  19943. weight: math.unit(1200, "lb"),
  19944. name: "Back",
  19945. image: {
  19946. source: "./media/characters/adinia/back.svg",
  19947. extra: 1834/1684,
  19948. bottom: 14/1848
  19949. },
  19950. extraAttributes: {
  19951. "energyIntake": {
  19952. name: "Energy Intake",
  19953. power: 3,
  19954. type: "energy",
  19955. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19956. },
  19957. }
  19958. },
  19959. maw: {
  19960. height: math.unit(3.79, "feet"),
  19961. name: "Maw",
  19962. image: {
  19963. source: "./media/characters/adinia/maw.svg"
  19964. }
  19965. },
  19966. rump: {
  19967. height: math.unit(4.6, "feet"),
  19968. name: "Rump",
  19969. image: {
  19970. source: "./media/characters/adinia/rump.svg"
  19971. }
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(11 + 5 / 12, "feet"),
  19978. default: true
  19979. },
  19980. ]
  19981. ))
  19982. characterMakers.push(() => makeCharacter(
  19983. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19984. {
  19985. front: {
  19986. height: math.unit(3, "meters"),
  19987. weight: math.unit(200, "kg"),
  19988. name: "Front",
  19989. image: {
  19990. source: "./media/characters/lykasa/front.svg",
  19991. extra: 1076 / 976,
  19992. bottom: 0.06
  19993. }
  19994. },
  19995. },
  19996. [
  19997. {
  19998. name: "Normal",
  19999. height: math.unit(3, "meters")
  20000. },
  20001. {
  20002. name: "Kaiju",
  20003. height: math.unit(120, "meters"),
  20004. default: true
  20005. },
  20006. {
  20007. name: "Mega Kaiju",
  20008. height: math.unit(240, "km")
  20009. },
  20010. {
  20011. name: "Giga Kaiju",
  20012. height: math.unit(400, "megameters")
  20013. },
  20014. {
  20015. name: "Tera Kaiju",
  20016. height: math.unit(800, "gigameters")
  20017. },
  20018. {
  20019. name: "Kaiju Dragon Goddess",
  20020. height: math.unit(26, "zettaparsecs")
  20021. },
  20022. ]
  20023. ))
  20024. characterMakers.push(() => makeCharacter(
  20025. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  20026. {
  20027. side: {
  20028. height: math.unit(283 / 124 * 6, "feet"),
  20029. weight: math.unit(35000, "lb"),
  20030. name: "Side",
  20031. image: {
  20032. source: "./media/characters/malfaren/side.svg",
  20033. extra: 1310/529,
  20034. bottom: 24/1334
  20035. }
  20036. },
  20037. front: {
  20038. height: math.unit(22.36, "feet"),
  20039. weight: math.unit(35000, "lb"),
  20040. name: "Front",
  20041. image: {
  20042. source: "./media/characters/malfaren/front.svg",
  20043. extra: 1237/1115,
  20044. bottom: 32/1269
  20045. }
  20046. },
  20047. maw: {
  20048. height: math.unit(6.9, "feet"),
  20049. name: "Maw",
  20050. image: {
  20051. source: "./media/characters/malfaren/maw.svg"
  20052. }
  20053. },
  20054. dick: {
  20055. height: math.unit(6.19, "feet"),
  20056. name: "Dick",
  20057. image: {
  20058. source: "./media/characters/malfaren/dick.svg"
  20059. }
  20060. },
  20061. eye: {
  20062. height: math.unit(0.69, "feet"),
  20063. name: "Eye",
  20064. image: {
  20065. source: "./media/characters/malfaren/eye.svg"
  20066. }
  20067. },
  20068. },
  20069. [
  20070. {
  20071. name: "Big",
  20072. height: math.unit(283 / 162 * 6, "feet"),
  20073. },
  20074. {
  20075. name: "Bigger",
  20076. height: math.unit(283 / 124 * 6, "feet")
  20077. },
  20078. {
  20079. name: "Massive",
  20080. height: math.unit(283 / 92 * 6, "feet"),
  20081. default: true
  20082. },
  20083. {
  20084. name: "👀💦",
  20085. height: math.unit(283 / 73 * 6, "feet"),
  20086. },
  20087. ]
  20088. ))
  20089. characterMakers.push(() => makeCharacter(
  20090. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  20091. {
  20092. front: {
  20093. height: math.unit(1.7, "m"),
  20094. weight: math.unit(70, "kg"),
  20095. name: "Front",
  20096. image: {
  20097. source: "./media/characters/kernel/front.svg",
  20098. extra: 1960/1821,
  20099. bottom: 17/1977
  20100. }
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Nano",
  20106. height: math.unit(17, "micrometers")
  20107. },
  20108. {
  20109. name: "Micro",
  20110. height: math.unit(1.7, "mm")
  20111. },
  20112. {
  20113. name: "Small",
  20114. height: math.unit(1.7, "cm")
  20115. },
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(1.7, "m"),
  20119. default: true
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20125. {
  20126. front: {
  20127. height: math.unit(1.75, "meters"),
  20128. weight: math.unit(65, "kg"),
  20129. name: "Front",
  20130. image: {
  20131. source: "./media/characters/jayne-folest/front.svg",
  20132. extra: 2115 / 2007,
  20133. bottom: 0.02
  20134. }
  20135. },
  20136. back: {
  20137. height: math.unit(1.75, "meters"),
  20138. weight: math.unit(65, "kg"),
  20139. name: "Back",
  20140. image: {
  20141. source: "./media/characters/jayne-folest/back.svg",
  20142. extra: 2115 / 2007,
  20143. bottom: 0.005
  20144. }
  20145. },
  20146. frontClothed: {
  20147. height: math.unit(1.75, "meters"),
  20148. weight: math.unit(65, "kg"),
  20149. name: "Front (Clothed)",
  20150. image: {
  20151. source: "./media/characters/jayne-folest/front-clothed.svg",
  20152. extra: 2115 / 2007,
  20153. bottom: 0.035
  20154. }
  20155. },
  20156. hand: {
  20157. height: math.unit(1 / 1.260, "feet"),
  20158. name: "Hand",
  20159. image: {
  20160. source: "./media/characters/jayne-folest/hand.svg"
  20161. }
  20162. },
  20163. foot: {
  20164. height: math.unit(1 / 0.918, "feet"),
  20165. name: "Foot",
  20166. image: {
  20167. source: "./media/characters/jayne-folest/foot.svg"
  20168. }
  20169. },
  20170. },
  20171. [
  20172. {
  20173. name: "Micro",
  20174. height: math.unit(4, "cm")
  20175. },
  20176. {
  20177. name: "Normal",
  20178. height: math.unit(1.75, "meters")
  20179. },
  20180. {
  20181. name: "Macro",
  20182. height: math.unit(47.5, "meters"),
  20183. default: true
  20184. },
  20185. ]
  20186. ))
  20187. characterMakers.push(() => makeCharacter(
  20188. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20189. {
  20190. front: {
  20191. height: math.unit(180, "cm"),
  20192. weight: math.unit(70, "kg"),
  20193. name: "Front",
  20194. image: {
  20195. source: "./media/characters/algier/front.svg",
  20196. extra: 596 / 572,
  20197. bottom: 0.04
  20198. }
  20199. },
  20200. back: {
  20201. height: math.unit(180, "cm"),
  20202. weight: math.unit(70, "kg"),
  20203. name: "Back",
  20204. image: {
  20205. source: "./media/characters/algier/back.svg",
  20206. extra: 596 / 572,
  20207. bottom: 0.025
  20208. }
  20209. },
  20210. frontdressed: {
  20211. height: math.unit(180, "cm"),
  20212. weight: math.unit(150, "kg"),
  20213. name: "Front (Dressed)",
  20214. image: {
  20215. source: "./media/characters/algier/front-dressed.svg",
  20216. extra: 596 / 572,
  20217. bottom: 0.038
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Micro",
  20224. height: math.unit(5, "cm")
  20225. },
  20226. {
  20227. name: "Normal",
  20228. height: math.unit(180, "cm"),
  20229. default: true
  20230. },
  20231. {
  20232. name: "Macro",
  20233. height: math.unit(64, "m")
  20234. },
  20235. ]
  20236. ))
  20237. characterMakers.push(() => makeCharacter(
  20238. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20239. {
  20240. upright: {
  20241. height: math.unit(7, "feet"),
  20242. weight: math.unit(300, "lb"),
  20243. name: "Upright",
  20244. image: {
  20245. source: "./media/characters/pretzel/upright.svg",
  20246. extra: 534 / 522,
  20247. bottom: 0.065
  20248. }
  20249. },
  20250. sprawling: {
  20251. height: math.unit(3.75, "feet"),
  20252. weight: math.unit(300, "lb"),
  20253. name: "Sprawling",
  20254. image: {
  20255. source: "./media/characters/pretzel/sprawling.svg",
  20256. extra: 314 / 281,
  20257. bottom: 0.1
  20258. }
  20259. },
  20260. tongue: {
  20261. height: math.unit(2, "feet"),
  20262. name: "Tongue",
  20263. image: {
  20264. source: "./media/characters/pretzel/tongue.svg"
  20265. }
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Normal",
  20271. height: math.unit(7, "feet"),
  20272. default: true
  20273. },
  20274. {
  20275. name: "Oversized",
  20276. height: math.unit(15, "feet")
  20277. },
  20278. {
  20279. name: "Huge",
  20280. height: math.unit(30, "feet")
  20281. },
  20282. {
  20283. name: "Macro",
  20284. height: math.unit(250, "feet")
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20290. {
  20291. sideFront: {
  20292. height: math.unit(5 + 2 / 12, "feet"),
  20293. weight: math.unit(120, "lb"),
  20294. name: "Front Side",
  20295. image: {
  20296. source: "./media/characters/roxi/side-front.svg",
  20297. extra: 2924 / 2717,
  20298. bottom: 0.08
  20299. }
  20300. },
  20301. sideBack: {
  20302. height: math.unit(5 + 2 / 12, "feet"),
  20303. weight: math.unit(120, "lb"),
  20304. name: "Back Side",
  20305. image: {
  20306. source: "./media/characters/roxi/side-back.svg",
  20307. extra: 2904 / 2693,
  20308. bottom: 0.06
  20309. }
  20310. },
  20311. front: {
  20312. height: math.unit(5 + 2 / 12, "feet"),
  20313. weight: math.unit(120, "lb"),
  20314. name: "Front",
  20315. image: {
  20316. source: "./media/characters/roxi/front.svg",
  20317. extra: 2028 / 1907,
  20318. bottom: 0.01
  20319. }
  20320. },
  20321. frontAlt: {
  20322. height: math.unit(5 + 2 / 12, "feet"),
  20323. weight: math.unit(120, "lb"),
  20324. name: "Front (Alt)",
  20325. image: {
  20326. source: "./media/characters/roxi/front-alt.svg",
  20327. extra: 1828 / 1798,
  20328. bottom: 0.01
  20329. }
  20330. },
  20331. sitting: {
  20332. height: math.unit(2.8, "feet"),
  20333. weight: math.unit(120, "lb"),
  20334. name: "Sitting",
  20335. image: {
  20336. source: "./media/characters/roxi/sitting.svg",
  20337. extra: 2660 / 2462,
  20338. bottom: 0.1
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Normal",
  20345. height: math.unit(5 + 2 / 12, "feet"),
  20346. default: true
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20352. {
  20353. side: {
  20354. height: math.unit(55, "feet"),
  20355. weight: math.unit(153, "tons"),
  20356. name: "Side",
  20357. image: {
  20358. source: "./media/characters/shadow/side.svg",
  20359. extra: 701 / 628,
  20360. bottom: 0.02
  20361. }
  20362. },
  20363. flying: {
  20364. height: math.unit(145, "feet"),
  20365. weight: math.unit(153, "tons"),
  20366. name: "Flying",
  20367. image: {
  20368. source: "./media/characters/shadow/flying.svg"
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(55, "feet"),
  20376. default: true
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20382. {
  20383. front: {
  20384. height: math.unit(6, "feet"),
  20385. weight: math.unit(200, "lb"),
  20386. name: "Front",
  20387. image: {
  20388. source: "./media/characters/marcie/front.svg",
  20389. extra: 960 / 876,
  20390. bottom: 58 / 1017.87
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Macro",
  20397. height: math.unit(1, "mile"),
  20398. default: true
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20404. {
  20405. front: {
  20406. height: math.unit(7, "feet"),
  20407. weight: math.unit(200, "lb"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/kachina/front.svg",
  20411. extra: 3206/2764,
  20412. bottom: 140/3346
  20413. }
  20414. },
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(7, "feet"),
  20420. default: true
  20421. },
  20422. ]
  20423. ))
  20424. characterMakers.push(() => makeCharacter(
  20425. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20426. {
  20427. looking: {
  20428. height: math.unit(2, "meters"),
  20429. weight: math.unit(300, "kg"),
  20430. name: "Looking",
  20431. image: {
  20432. source: "./media/characters/kash/looking.svg",
  20433. extra: 474 / 344,
  20434. bottom: 0.03
  20435. }
  20436. },
  20437. side: {
  20438. height: math.unit(2, "meters"),
  20439. weight: math.unit(300, "kg"),
  20440. name: "Side",
  20441. image: {
  20442. source: "./media/characters/kash/side.svg",
  20443. extra: 302 / 251,
  20444. bottom: 0.03
  20445. }
  20446. },
  20447. front: {
  20448. height: math.unit(2, "meters"),
  20449. weight: math.unit(300, "kg"),
  20450. name: "Front",
  20451. image: {
  20452. source: "./media/characters/kash/front.svg",
  20453. extra: 495 / 360,
  20454. bottom: 0.015
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Normal",
  20461. height: math.unit(2, "meters"),
  20462. default: true
  20463. },
  20464. {
  20465. name: "Big",
  20466. height: math.unit(3, "meters")
  20467. },
  20468. {
  20469. name: "Large",
  20470. height: math.unit(5, "meters")
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20476. {
  20477. feeding: {
  20478. height: math.unit(6.7, "feet"),
  20479. weight: math.unit(350, "lb"),
  20480. name: "Feeding",
  20481. image: {
  20482. source: "./media/characters/lalim/feeding.svg",
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(6.7, "feet"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(9.5, "feet"),
  20499. weight: math.unit(600, "lb"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/de'vout/front.svg",
  20503. extra: 1443 / 1328,
  20504. bottom: 0.025
  20505. }
  20506. },
  20507. back: {
  20508. height: math.unit(9.5, "feet"),
  20509. weight: math.unit(600, "lb"),
  20510. name: "Back",
  20511. image: {
  20512. source: "./media/characters/de'vout/back.svg",
  20513. extra: 1443 / 1328
  20514. }
  20515. },
  20516. frontDressed: {
  20517. height: math.unit(9.5, "feet"),
  20518. weight: math.unit(600, "lb"),
  20519. name: "Front (Dressed",
  20520. image: {
  20521. source: "./media/characters/de'vout/front-dressed.svg",
  20522. extra: 1443 / 1328,
  20523. bottom: 0.025
  20524. }
  20525. },
  20526. backDressed: {
  20527. height: math.unit(9.5, "feet"),
  20528. weight: math.unit(600, "lb"),
  20529. name: "Back (Dressed",
  20530. image: {
  20531. source: "./media/characters/de'vout/back-dressed.svg",
  20532. extra: 1443 / 1328
  20533. }
  20534. },
  20535. },
  20536. [
  20537. {
  20538. name: "Normal",
  20539. height: math.unit(9.5, "feet"),
  20540. default: true
  20541. },
  20542. ]
  20543. ))
  20544. characterMakers.push(() => makeCharacter(
  20545. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20546. {
  20547. front: {
  20548. height: math.unit(8, "feet"),
  20549. weight: math.unit(225, "lb"),
  20550. name: "Front",
  20551. image: {
  20552. source: "./media/characters/talana/front.svg",
  20553. extra: 1410 / 1300,
  20554. bottom: 0.015
  20555. }
  20556. },
  20557. frontDressed: {
  20558. height: math.unit(8, "feet"),
  20559. weight: math.unit(225, "lb"),
  20560. name: "Front (Dressed",
  20561. image: {
  20562. source: "./media/characters/talana/front-dressed.svg",
  20563. extra: 1410 / 1300,
  20564. bottom: 0.015
  20565. }
  20566. },
  20567. },
  20568. [
  20569. {
  20570. name: "Normal",
  20571. height: math.unit(8, "feet"),
  20572. default: true
  20573. },
  20574. ]
  20575. ))
  20576. characterMakers.push(() => makeCharacter(
  20577. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20578. {
  20579. side: {
  20580. height: math.unit(7.2, "feet"),
  20581. weight: math.unit(150, "lb"),
  20582. name: "Side",
  20583. image: {
  20584. source: "./media/characters/xeauvok/side.svg",
  20585. extra: 1975 / 1523,
  20586. bottom: 0.07
  20587. }
  20588. },
  20589. },
  20590. [
  20591. {
  20592. name: "Normal",
  20593. height: math.unit(7.2, "feet"),
  20594. default: true
  20595. },
  20596. ]
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20600. {
  20601. side: {
  20602. height: math.unit(4, "meters"),
  20603. weight: math.unit(2200, "kg"),
  20604. name: "Side",
  20605. image: {
  20606. source: "./media/characters/zara/side.svg",
  20607. extra: 765/744,
  20608. bottom: 156/921
  20609. }
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "Normal",
  20615. height: math.unit(4, "meters"),
  20616. default: true
  20617. },
  20618. ]
  20619. ))
  20620. characterMakers.push(() => makeCharacter(
  20621. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20622. {
  20623. side: {
  20624. height: math.unit(6, "feet"),
  20625. weight: math.unit(150, "lb"),
  20626. name: "Side",
  20627. image: {
  20628. source: "./media/characters/richard-dragon/side.svg",
  20629. extra: 845 / 340,
  20630. bottom: 0.017
  20631. }
  20632. },
  20633. maw: {
  20634. height: math.unit(2.97, "feet"),
  20635. name: "Maw",
  20636. image: {
  20637. source: "./media/characters/richard-dragon/maw.svg"
  20638. }
  20639. },
  20640. },
  20641. [
  20642. ]
  20643. ))
  20644. characterMakers.push(() => makeCharacter(
  20645. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20646. {
  20647. front: {
  20648. height: math.unit(4, "feet"),
  20649. weight: math.unit(100, "lb"),
  20650. name: "Front",
  20651. image: {
  20652. source: "./media/characters/richard-smeargle/front.svg",
  20653. extra: 2952 / 2820,
  20654. bottom: 0.028
  20655. }
  20656. },
  20657. },
  20658. [
  20659. {
  20660. name: "Normal",
  20661. height: math.unit(4, "feet"),
  20662. default: true
  20663. },
  20664. {
  20665. name: "Dynamax",
  20666. height: math.unit(20, "meters")
  20667. },
  20668. ]
  20669. ))
  20670. characterMakers.push(() => makeCharacter(
  20671. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20672. {
  20673. front: {
  20674. height: math.unit(6, "feet"),
  20675. weight: math.unit(110, "lb"),
  20676. name: "Front",
  20677. image: {
  20678. source: "./media/characters/klay/front.svg",
  20679. extra: 962 / 883,
  20680. bottom: 0.04
  20681. }
  20682. },
  20683. back: {
  20684. height: math.unit(6, "feet"),
  20685. weight: math.unit(110, "lb"),
  20686. name: "Back",
  20687. image: {
  20688. source: "./media/characters/klay/back.svg",
  20689. extra: 962 / 883
  20690. }
  20691. },
  20692. beans: {
  20693. height: math.unit(1.15, "feet"),
  20694. name: "Beans",
  20695. image: {
  20696. source: "./media/characters/klay/beans.svg"
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Micro",
  20703. height: math.unit(6, "inches")
  20704. },
  20705. {
  20706. name: "Mini",
  20707. height: math.unit(3, "feet")
  20708. },
  20709. {
  20710. name: "Normal",
  20711. height: math.unit(6, "feet"),
  20712. default: true
  20713. },
  20714. {
  20715. name: "Big",
  20716. height: math.unit(25, "feet")
  20717. },
  20718. {
  20719. name: "Macro",
  20720. height: math.unit(100, "feet")
  20721. },
  20722. {
  20723. name: "Megamacro",
  20724. height: math.unit(400, "feet")
  20725. },
  20726. ]
  20727. ))
  20728. characterMakers.push(() => makeCharacter(
  20729. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20730. {
  20731. front: {
  20732. height: math.unit(6, "feet"),
  20733. weight: math.unit(160, "lb"),
  20734. name: "Front",
  20735. image: {
  20736. source: "./media/characters/marcus/front.svg",
  20737. extra: 734 / 676,
  20738. bottom: 0.03
  20739. }
  20740. },
  20741. },
  20742. [
  20743. {
  20744. name: "Little",
  20745. height: math.unit(6, "feet")
  20746. },
  20747. {
  20748. name: "Normal",
  20749. height: math.unit(110, "feet"),
  20750. default: true
  20751. },
  20752. {
  20753. name: "Macro",
  20754. height: math.unit(250, "feet")
  20755. },
  20756. {
  20757. name: "Megamacro",
  20758. height: math.unit(1000, "feet")
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20764. {
  20765. front: {
  20766. height: math.unit(7, "feet"),
  20767. weight: math.unit(275, "lb"),
  20768. name: "Front",
  20769. image: {
  20770. source: "./media/characters/claude-delroute/front.svg",
  20771. extra: 902/827,
  20772. bottom: 26/928
  20773. }
  20774. },
  20775. side: {
  20776. height: math.unit(7, "feet"),
  20777. weight: math.unit(275, "lb"),
  20778. name: "Side",
  20779. image: {
  20780. source: "./media/characters/claude-delroute/side.svg",
  20781. extra: 908/853,
  20782. bottom: 16/924
  20783. }
  20784. },
  20785. back: {
  20786. height: math.unit(7, "feet"),
  20787. weight: math.unit(275, "lb"),
  20788. name: "Back",
  20789. image: {
  20790. source: "./media/characters/claude-delroute/back.svg",
  20791. extra: 911/829,
  20792. bottom: 18/929
  20793. }
  20794. },
  20795. maw: {
  20796. height: math.unit(0.6407, "meters"),
  20797. name: "Maw",
  20798. image: {
  20799. source: "./media/characters/claude-delroute/maw.svg"
  20800. }
  20801. },
  20802. },
  20803. [
  20804. {
  20805. name: "Normal",
  20806. height: math.unit(7, "feet"),
  20807. default: true
  20808. },
  20809. {
  20810. name: "Lorge",
  20811. height: math.unit(20, "feet")
  20812. },
  20813. ]
  20814. ))
  20815. characterMakers.push(() => makeCharacter(
  20816. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20817. {
  20818. front: {
  20819. height: math.unit(8 + 4 / 12, "feet"),
  20820. weight: math.unit(600, "lb"),
  20821. name: "Front",
  20822. image: {
  20823. source: "./media/characters/dragonien/front.svg",
  20824. extra: 100 / 94,
  20825. bottom: 3.3 / 103.3445
  20826. }
  20827. },
  20828. back: {
  20829. height: math.unit(8 + 4 / 12, "feet"),
  20830. weight: math.unit(600, "lb"),
  20831. name: "Back",
  20832. image: {
  20833. source: "./media/characters/dragonien/back.svg",
  20834. extra: 776 / 746,
  20835. bottom: 6.4 / 782.0616
  20836. }
  20837. },
  20838. foot: {
  20839. height: math.unit(1.54, "feet"),
  20840. name: "Foot",
  20841. image: {
  20842. source: "./media/characters/dragonien/foot.svg",
  20843. }
  20844. },
  20845. },
  20846. [
  20847. {
  20848. name: "Normal",
  20849. height: math.unit(8 + 4 / 12, "feet"),
  20850. default: true
  20851. },
  20852. {
  20853. name: "Macro",
  20854. height: math.unit(200, "feet")
  20855. },
  20856. {
  20857. name: "Megamacro",
  20858. height: math.unit(1, "mile")
  20859. },
  20860. {
  20861. name: "Gigamacro",
  20862. height: math.unit(1000, "miles")
  20863. },
  20864. ]
  20865. ))
  20866. characterMakers.push(() => makeCharacter(
  20867. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20868. {
  20869. front: {
  20870. height: math.unit(5 + 2 / 12, "feet"),
  20871. weight: math.unit(110, "lb"),
  20872. name: "Front",
  20873. image: {
  20874. source: "./media/characters/desta/front.svg",
  20875. extra: 767 / 726,
  20876. bottom: 11.7 / 779
  20877. }
  20878. },
  20879. back: {
  20880. height: math.unit(5 + 2 / 12, "feet"),
  20881. weight: math.unit(110, "lb"),
  20882. name: "Back",
  20883. image: {
  20884. source: "./media/characters/desta/back.svg",
  20885. extra: 777 / 728,
  20886. bottom: 6 / 784
  20887. }
  20888. },
  20889. frontAlt: {
  20890. height: math.unit(5 + 2 / 12, "feet"),
  20891. weight: math.unit(110, "lb"),
  20892. name: "Front",
  20893. image: {
  20894. source: "./media/characters/desta/front-alt.svg",
  20895. extra: 1482 / 1417
  20896. }
  20897. },
  20898. side: {
  20899. height: math.unit(5 + 2 / 12, "feet"),
  20900. weight: math.unit(110, "lb"),
  20901. name: "Side",
  20902. image: {
  20903. source: "./media/characters/desta/side.svg",
  20904. extra: 2579 / 2491,
  20905. bottom: 0.053
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Micro",
  20912. height: math.unit(6, "inches")
  20913. },
  20914. {
  20915. name: "Normal",
  20916. height: math.unit(5 + 2 / 12, "feet"),
  20917. default: true
  20918. },
  20919. {
  20920. name: "Macro",
  20921. height: math.unit(62, "feet")
  20922. },
  20923. {
  20924. name: "Megamacro",
  20925. height: math.unit(1800, "feet")
  20926. },
  20927. ]
  20928. ))
  20929. characterMakers.push(() => makeCharacter(
  20930. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20931. {
  20932. front: {
  20933. height: math.unit(10, "feet"),
  20934. weight: math.unit(700, "lb"),
  20935. name: "Front",
  20936. image: {
  20937. source: "./media/characters/storm-alystar/front.svg",
  20938. extra: 2112 / 1898,
  20939. bottom: 0.034
  20940. }
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Micro",
  20946. height: math.unit(3.5, "inches")
  20947. },
  20948. {
  20949. name: "Normal",
  20950. height: math.unit(10, "feet"),
  20951. default: true
  20952. },
  20953. {
  20954. name: "Macro",
  20955. height: math.unit(400, "feet")
  20956. },
  20957. {
  20958. name: "Deific",
  20959. height: math.unit(60, "miles")
  20960. },
  20961. ]
  20962. ))
  20963. characterMakers.push(() => makeCharacter(
  20964. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20965. {
  20966. front: {
  20967. height: math.unit(2.35, "meters"),
  20968. weight: math.unit(119, "kg"),
  20969. name: "Front",
  20970. image: {
  20971. source: "./media/characters/ilia/front.svg",
  20972. extra: 1285 / 1255,
  20973. bottom: 0.06
  20974. }
  20975. },
  20976. },
  20977. [
  20978. {
  20979. name: "Normal",
  20980. height: math.unit(2.35, "meters")
  20981. },
  20982. {
  20983. name: "Macro",
  20984. height: math.unit(140, "meters"),
  20985. default: true
  20986. },
  20987. {
  20988. name: "Megamacro",
  20989. height: math.unit(100, "miles")
  20990. },
  20991. ]
  20992. ))
  20993. characterMakers.push(() => makeCharacter(
  20994. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20995. {
  20996. front: {
  20997. height: math.unit(6 + 5 / 12, "feet"),
  20998. weight: math.unit(190, "lb"),
  20999. name: "Front",
  21000. image: {
  21001. source: "./media/characters/kingdead/front.svg",
  21002. extra: 1228 / 1177
  21003. }
  21004. },
  21005. },
  21006. [
  21007. {
  21008. name: "Micro",
  21009. height: math.unit(7, "inches")
  21010. },
  21011. {
  21012. name: "Normal",
  21013. height: math.unit(6 + 5 / 12, "feet")
  21014. },
  21015. {
  21016. name: "Macro",
  21017. height: math.unit(150, "feet"),
  21018. default: true
  21019. },
  21020. {
  21021. name: "Megamacro",
  21022. height: math.unit(200, "miles")
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  21028. {
  21029. front: {
  21030. height: math.unit(8, "feet"),
  21031. weight: math.unit(600, "lb"),
  21032. name: "Front",
  21033. image: {
  21034. source: "./media/characters/kyrehx/front.svg",
  21035. extra: 1195 / 1095,
  21036. bottom: 0.034
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Micro",
  21043. height: math.unit(2, "inches")
  21044. },
  21045. {
  21046. name: "Normal",
  21047. height: math.unit(8, "feet"),
  21048. default: true
  21049. },
  21050. {
  21051. name: "Macro",
  21052. height: math.unit(255, "feet")
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  21058. {
  21059. front: {
  21060. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21061. weight: math.unit(184, "lb"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/xang/front.svg",
  21065. extra: 845 / 755
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21073. default: true
  21074. },
  21075. {
  21076. name: "Macro",
  21077. height: math.unit(0.935 * 146, "feet")
  21078. },
  21079. {
  21080. name: "Megamacro",
  21081. height: math.unit(0.935 * 3, "miles")
  21082. },
  21083. ]
  21084. ))
  21085. characterMakers.push(() => makeCharacter(
  21086. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  21087. {
  21088. frontDressed: {
  21089. height: math.unit(5 + 7 / 12, "feet"),
  21090. weight: math.unit(140, "lb"),
  21091. name: "Front (Dressed)",
  21092. image: {
  21093. source: "./media/characters/doc-weardno/front-dressed.svg",
  21094. extra: 263 / 234
  21095. }
  21096. },
  21097. backDressed: {
  21098. height: math.unit(5 + 7 / 12, "feet"),
  21099. weight: math.unit(140, "lb"),
  21100. name: "Back (Dressed)",
  21101. image: {
  21102. source: "./media/characters/doc-weardno/back-dressed.svg",
  21103. extra: 266 / 238
  21104. }
  21105. },
  21106. front: {
  21107. height: math.unit(5 + 7 / 12, "feet"),
  21108. weight: math.unit(140, "lb"),
  21109. name: "Front",
  21110. image: {
  21111. source: "./media/characters/doc-weardno/front.svg",
  21112. extra: 254 / 233
  21113. }
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Micro",
  21119. height: math.unit(3, "inches")
  21120. },
  21121. {
  21122. name: "Normal",
  21123. height: math.unit(5 + 7 / 12, "feet"),
  21124. default: true
  21125. },
  21126. {
  21127. name: "Macro",
  21128. height: math.unit(25, "feet")
  21129. },
  21130. {
  21131. name: "Megamacro",
  21132. height: math.unit(2, "miles")
  21133. },
  21134. ]
  21135. ))
  21136. characterMakers.push(() => makeCharacter(
  21137. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21138. {
  21139. front: {
  21140. height: math.unit(6 + 2 / 12, "feet"),
  21141. weight: math.unit(153, "lb"),
  21142. name: "Front",
  21143. image: {
  21144. source: "./media/characters/seth-whilst/front.svg",
  21145. bottom: 0.07
  21146. }
  21147. },
  21148. },
  21149. [
  21150. {
  21151. name: "Micro",
  21152. height: math.unit(5, "inches")
  21153. },
  21154. {
  21155. name: "Normal",
  21156. height: math.unit(6 + 2 / 12, "feet"),
  21157. default: true
  21158. },
  21159. ]
  21160. ))
  21161. characterMakers.push(() => makeCharacter(
  21162. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21163. {
  21164. front: {
  21165. height: math.unit(3, "inches"),
  21166. weight: math.unit(8, "grams"),
  21167. name: "Front",
  21168. image: {
  21169. source: "./media/characters/pocket-jabari/front.svg",
  21170. extra: 1024 / 974,
  21171. bottom: 0.039
  21172. }
  21173. },
  21174. },
  21175. [
  21176. {
  21177. name: "Minimicro",
  21178. height: math.unit(8, "mm")
  21179. },
  21180. {
  21181. name: "Micro",
  21182. height: math.unit(3, "inches"),
  21183. default: true
  21184. },
  21185. {
  21186. name: "Normal",
  21187. height: math.unit(3, "feet")
  21188. },
  21189. ]
  21190. ))
  21191. characterMakers.push(() => makeCharacter(
  21192. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21193. {
  21194. frontDressed: {
  21195. height: math.unit(15, "feet"),
  21196. weight: math.unit(3280, "lb"),
  21197. name: "Front (Dressed)",
  21198. image: {
  21199. source: "./media/characters/sapphy/front-dressed.svg",
  21200. extra: 1951/1654,
  21201. bottom: 194/2145
  21202. },
  21203. form: "anthro",
  21204. default: true
  21205. },
  21206. backDressed: {
  21207. height: math.unit(15, "feet"),
  21208. weight: math.unit(3280, "lb"),
  21209. name: "Back (Dressed)",
  21210. image: {
  21211. source: "./media/characters/sapphy/back-dressed.svg",
  21212. extra: 2058/1918,
  21213. bottom: 125/2183
  21214. },
  21215. form: "anthro"
  21216. },
  21217. frontNude: {
  21218. height: math.unit(15, "feet"),
  21219. weight: math.unit(3280, "lb"),
  21220. name: "Front (Nude)",
  21221. image: {
  21222. source: "./media/characters/sapphy/front-nude.svg",
  21223. extra: 1951/1654,
  21224. bottom: 194/2145
  21225. },
  21226. form: "anthro"
  21227. },
  21228. backNude: {
  21229. height: math.unit(15, "feet"),
  21230. weight: math.unit(3280, "lb"),
  21231. name: "Back (Nude)",
  21232. image: {
  21233. source: "./media/characters/sapphy/back-nude.svg",
  21234. extra: 2058/1918,
  21235. bottom: 125/2183
  21236. },
  21237. form: "anthro"
  21238. },
  21239. full: {
  21240. height: math.unit(15, "feet"),
  21241. weight: math.unit(3280, "lb"),
  21242. name: "Full",
  21243. image: {
  21244. source: "./media/characters/sapphy/full.svg",
  21245. extra: 1396/1317,
  21246. bottom: 44/1440
  21247. },
  21248. form: "anthro"
  21249. },
  21250. dick: {
  21251. height: math.unit(3.8, "feet"),
  21252. name: "Dick",
  21253. image: {
  21254. source: "./media/characters/sapphy/dick.svg"
  21255. },
  21256. form: "anthro"
  21257. },
  21258. feral: {
  21259. height: math.unit(35, "feet"),
  21260. weight: math.unit(160, "tons"),
  21261. name: "Feral",
  21262. image: {
  21263. source: "./media/characters/sapphy/feral.svg",
  21264. extra: 1050/573,
  21265. bottom: 60/1110
  21266. },
  21267. form: "feral",
  21268. default: true
  21269. },
  21270. },
  21271. [
  21272. {
  21273. name: "Normal",
  21274. height: math.unit(15, "feet"),
  21275. form: "anthro"
  21276. },
  21277. {
  21278. name: "Casual Macro",
  21279. height: math.unit(120, "feet"),
  21280. form: "anthro"
  21281. },
  21282. {
  21283. name: "Macro",
  21284. height: math.unit(2150, "feet"),
  21285. default: true,
  21286. form: "anthro"
  21287. },
  21288. {
  21289. name: "Megamacro",
  21290. height: math.unit(8, "miles"),
  21291. form: "anthro"
  21292. },
  21293. {
  21294. name: "Galaxy Mom",
  21295. height: math.unit(6, "megalightyears"),
  21296. form: "anthro"
  21297. },
  21298. {
  21299. name: "Normal",
  21300. height: math.unit(35, "feet"),
  21301. form: "feral",
  21302. default: true
  21303. },
  21304. {
  21305. name: "Macro",
  21306. height: math.unit(300, "feet"),
  21307. form: "feral"
  21308. },
  21309. {
  21310. name: "Galaxy Mom",
  21311. height: math.unit(10, "megalightyears"),
  21312. form: "feral"
  21313. },
  21314. ],
  21315. {
  21316. "anthro": {
  21317. name: "Anthro",
  21318. default: true
  21319. },
  21320. "feral": {
  21321. name: "Feral"
  21322. }
  21323. }
  21324. ))
  21325. characterMakers.push(() => makeCharacter(
  21326. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21327. {
  21328. hyenaFront: {
  21329. height: math.unit(6, "feet"),
  21330. weight: math.unit(190, "lb"),
  21331. name: "Front",
  21332. image: {
  21333. source: "./media/characters/kiro/hyena-front.svg",
  21334. extra: 927/839,
  21335. bottom: 91/1018
  21336. },
  21337. form: "hyena",
  21338. default: true
  21339. },
  21340. front: {
  21341. height: math.unit(6, "feet"),
  21342. weight: math.unit(170, "lb"),
  21343. name: "Front",
  21344. image: {
  21345. source: "./media/characters/kiro/front.svg",
  21346. extra: 1064 / 1012,
  21347. bottom: 0.052
  21348. },
  21349. form: "folf",
  21350. default: true
  21351. },
  21352. },
  21353. [
  21354. {
  21355. name: "Micro",
  21356. height: math.unit(6, "inches"),
  21357. form: "folf"
  21358. },
  21359. {
  21360. name: "Normal",
  21361. height: math.unit(6, "feet"),
  21362. form: "folf",
  21363. default: true
  21364. },
  21365. {
  21366. name: "Macro",
  21367. height: math.unit(72, "feet"),
  21368. form: "folf"
  21369. },
  21370. {
  21371. name: "Micro",
  21372. height: math.unit(6, "inches"),
  21373. form: "hyena"
  21374. },
  21375. {
  21376. name: "Normal",
  21377. height: math.unit(6, "feet"),
  21378. form: "hyena",
  21379. default: true
  21380. },
  21381. {
  21382. name: "Macro",
  21383. height: math.unit(72, "feet"),
  21384. form: "hyena"
  21385. },
  21386. ],
  21387. {
  21388. "hyena": {
  21389. name: "Hyena",
  21390. default: true
  21391. },
  21392. "folf": {
  21393. name: "Folf",
  21394. },
  21395. }
  21396. ))
  21397. characterMakers.push(() => makeCharacter(
  21398. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21399. {
  21400. front: {
  21401. height: math.unit(5 + 9 / 12, "feet"),
  21402. weight: math.unit(175, "lb"),
  21403. name: "Front",
  21404. image: {
  21405. source: "./media/characters/irishfox/front.svg",
  21406. extra: 1912 / 1680,
  21407. bottom: 0.02
  21408. }
  21409. },
  21410. },
  21411. [
  21412. {
  21413. name: "Nano",
  21414. height: math.unit(1, "mm")
  21415. },
  21416. {
  21417. name: "Micro",
  21418. height: math.unit(2, "inches")
  21419. },
  21420. {
  21421. name: "Normal",
  21422. height: math.unit(5 + 9 / 12, "feet"),
  21423. default: true
  21424. },
  21425. {
  21426. name: "Macro",
  21427. height: math.unit(45, "feet")
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21433. {
  21434. front: {
  21435. height: math.unit(6 + 1 / 12, "feet"),
  21436. weight: math.unit(75, "lb"),
  21437. name: "Front",
  21438. image: {
  21439. source: "./media/characters/aronai-sieyes/front.svg",
  21440. extra: 1532/1450,
  21441. bottom: 42/1574
  21442. }
  21443. },
  21444. side: {
  21445. height: math.unit(6 + 1 / 12, "feet"),
  21446. weight: math.unit(75, "lb"),
  21447. name: "Side",
  21448. image: {
  21449. source: "./media/characters/aronai-sieyes/side.svg",
  21450. extra: 1422/1365,
  21451. bottom: 148/1570
  21452. }
  21453. },
  21454. back: {
  21455. height: math.unit(6 + 1 / 12, "feet"),
  21456. weight: math.unit(75, "lb"),
  21457. name: "Back",
  21458. image: {
  21459. source: "./media/characters/aronai-sieyes/back.svg",
  21460. extra: 1526/1464,
  21461. bottom: 51/1577
  21462. }
  21463. },
  21464. dressed: {
  21465. height: math.unit(6 + 1 / 12, "feet"),
  21466. weight: math.unit(75, "lb"),
  21467. name: "Dressed",
  21468. image: {
  21469. source: "./media/characters/aronai-sieyes/dressed.svg",
  21470. extra: 1559/1483,
  21471. bottom: 39/1598
  21472. }
  21473. },
  21474. slit: {
  21475. height: math.unit(1.3, "feet"),
  21476. name: "Slit",
  21477. image: {
  21478. source: "./media/characters/aronai-sieyes/slit.svg"
  21479. }
  21480. },
  21481. slitSpread: {
  21482. height: math.unit(0.9, "feet"),
  21483. name: "Slit (Spread)",
  21484. image: {
  21485. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21486. }
  21487. },
  21488. rump: {
  21489. height: math.unit(1.3, "feet"),
  21490. name: "Rump",
  21491. image: {
  21492. source: "./media/characters/aronai-sieyes/rump.svg"
  21493. }
  21494. },
  21495. maw: {
  21496. height: math.unit(1.25, "feet"),
  21497. name: "Maw",
  21498. image: {
  21499. source: "./media/characters/aronai-sieyes/maw.svg"
  21500. }
  21501. },
  21502. feral: {
  21503. height: math.unit(18, "feet"),
  21504. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21505. name: "Feral",
  21506. image: {
  21507. source: "./media/characters/aronai-sieyes/feral.svg",
  21508. extra: 1530 / 1240,
  21509. bottom: 0.035
  21510. }
  21511. },
  21512. },
  21513. [
  21514. {
  21515. name: "Micro",
  21516. height: math.unit(2, "inches")
  21517. },
  21518. {
  21519. name: "Normal",
  21520. height: math.unit(6 + 1 / 12, "feet"),
  21521. default: true
  21522. }
  21523. ]
  21524. ))
  21525. characterMakers.push(() => makeCharacter(
  21526. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21527. {
  21528. front: {
  21529. height: math.unit(12, "feet"),
  21530. weight: math.unit(410, "kg"),
  21531. name: "Front",
  21532. image: {
  21533. source: "./media/characters/xuna/front.svg",
  21534. extra: 2184 / 1980
  21535. }
  21536. },
  21537. side: {
  21538. height: math.unit(12, "feet"),
  21539. weight: math.unit(410, "kg"),
  21540. name: "Side",
  21541. image: {
  21542. source: "./media/characters/xuna/side.svg",
  21543. extra: 2184 / 1980
  21544. }
  21545. },
  21546. back: {
  21547. height: math.unit(12, "feet"),
  21548. weight: math.unit(410, "kg"),
  21549. name: "Back",
  21550. image: {
  21551. source: "./media/characters/xuna/back.svg",
  21552. extra: 2184 / 1980
  21553. }
  21554. },
  21555. },
  21556. [
  21557. {
  21558. name: "Nano glow",
  21559. height: math.unit(10, "nm")
  21560. },
  21561. {
  21562. name: "Micro floof",
  21563. height: math.unit(0.3, "m")
  21564. },
  21565. {
  21566. name: "Huggable softy boi",
  21567. height: math.unit(3.6576, "m"),
  21568. default: true
  21569. },
  21570. {
  21571. name: "Admirable floof",
  21572. height: math.unit(80, "meters")
  21573. },
  21574. {
  21575. name: "Gentle macro",
  21576. height: math.unit(300, "meters")
  21577. },
  21578. {
  21579. name: "Very careful floof",
  21580. height: math.unit(3200, "meters")
  21581. },
  21582. {
  21583. name: "The mega floof",
  21584. height: math.unit(36000, "meters")
  21585. },
  21586. {
  21587. name: "Giga-fur-Wicker",
  21588. height: math.unit(4800000, "meters")
  21589. },
  21590. {
  21591. name: "Licky world",
  21592. height: math.unit(20000000, "meters")
  21593. },
  21594. {
  21595. name: "Floofy cyan sun",
  21596. height: math.unit(1500000000, "meters")
  21597. },
  21598. {
  21599. name: "Milky Wicker",
  21600. height: math.unit(1000000000000000000000, "meters")
  21601. },
  21602. {
  21603. name: "The observing Wicker",
  21604. height: math.unit(999999999999999999999999999, "meters")
  21605. },
  21606. ]
  21607. ))
  21608. characterMakers.push(() => makeCharacter(
  21609. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21610. {
  21611. front: {
  21612. height: math.unit(5 + 9 / 12, "feet"),
  21613. weight: math.unit(150, "lb"),
  21614. name: "Front",
  21615. image: {
  21616. source: "./media/characters/arokha-sieyes/front.svg",
  21617. extra: 1425 / 1284,
  21618. bottom: 0.05
  21619. }
  21620. },
  21621. },
  21622. [
  21623. {
  21624. name: "Normal",
  21625. height: math.unit(5 + 9 / 12, "feet")
  21626. },
  21627. {
  21628. name: "Macro",
  21629. height: math.unit(30, "meters"),
  21630. default: true
  21631. },
  21632. ]
  21633. ))
  21634. characterMakers.push(() => makeCharacter(
  21635. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21636. {
  21637. front: {
  21638. height: math.unit(6, "feet"),
  21639. weight: math.unit(180, "lb"),
  21640. name: "Front",
  21641. image: {
  21642. source: "./media/characters/arokh-sieyes/front.svg",
  21643. extra: 1830 / 1769,
  21644. bottom: 0.01
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Normal",
  21651. height: math.unit(6, "feet")
  21652. },
  21653. {
  21654. name: "Macro",
  21655. height: math.unit(30, "meters"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21662. {
  21663. side: {
  21664. height: math.unit(13 + 1 / 12, "feet"),
  21665. weight: math.unit(8.5, "tonnes"),
  21666. preyCapacity: math.unit(36, "people"),
  21667. name: "Side",
  21668. image: {
  21669. source: "./media/characters/goldeneye/side.svg",
  21670. extra: 1139/741,
  21671. bottom: 98/1237
  21672. }
  21673. },
  21674. front: {
  21675. height: math.unit(5.1, "feet"),
  21676. weight: math.unit(8.5, "tonnes"),
  21677. preyCapacity: math.unit(36, "people"),
  21678. name: "Front",
  21679. image: {
  21680. source: "./media/characters/goldeneye/front.svg",
  21681. extra: 635/365,
  21682. bottom: 598/1233
  21683. }
  21684. },
  21685. maw: {
  21686. height: math.unit(6.6, "feet"),
  21687. name: "Maw",
  21688. image: {
  21689. source: "./media/characters/goldeneye/maw.svg"
  21690. }
  21691. },
  21692. headFront: {
  21693. height: math.unit(8, "feet"),
  21694. name: "Head (Front)",
  21695. image: {
  21696. source: "./media/characters/goldeneye/head-front.svg"
  21697. }
  21698. },
  21699. headSide: {
  21700. height: math.unit(6, "feet"),
  21701. name: "Head (Side)",
  21702. image: {
  21703. source: "./media/characters/goldeneye/head-side.svg"
  21704. }
  21705. },
  21706. headBack: {
  21707. height: math.unit(8, "feet"),
  21708. name: "Head (Back)",
  21709. image: {
  21710. source: "./media/characters/goldeneye/head-back.svg"
  21711. }
  21712. },
  21713. paw: {
  21714. height: math.unit(3.4, "feet"),
  21715. name: "Paw",
  21716. image: {
  21717. source: "./media/characters/goldeneye/paw.svg"
  21718. }
  21719. },
  21720. toering: {
  21721. height: math.unit(0.45, "feet"),
  21722. name: "Toering",
  21723. image: {
  21724. source: "./media/characters/goldeneye/toering.svg"
  21725. }
  21726. },
  21727. eyes: {
  21728. height: math.unit(0.5, "feet"),
  21729. name: "Eyes",
  21730. image: {
  21731. source: "./media/characters/goldeneye/eyes.svg"
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(13 + 1 / 12, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21745. {
  21746. front: {
  21747. height: math.unit(6 + 1 / 12, "feet"),
  21748. weight: math.unit(210, "lb"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/leonardo-lycheborne/front.svg",
  21752. extra: 776/723,
  21753. bottom: 34/810
  21754. }
  21755. },
  21756. side: {
  21757. height: math.unit(6 + 1 / 12, "feet"),
  21758. weight: math.unit(210, "lb"),
  21759. name: "Side",
  21760. image: {
  21761. source: "./media/characters/leonardo-lycheborne/side.svg",
  21762. extra: 780/728,
  21763. bottom: 12/792
  21764. }
  21765. },
  21766. back: {
  21767. height: math.unit(6 + 1 / 12, "feet"),
  21768. weight: math.unit(210, "lb"),
  21769. name: "Back",
  21770. image: {
  21771. source: "./media/characters/leonardo-lycheborne/back.svg",
  21772. extra: 775/721,
  21773. bottom: 17/792
  21774. }
  21775. },
  21776. hand: {
  21777. height: math.unit(1.08, "feet"),
  21778. name: "Hand",
  21779. image: {
  21780. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21781. }
  21782. },
  21783. foot: {
  21784. height: math.unit(1.32, "feet"),
  21785. name: "Foot",
  21786. image: {
  21787. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21788. }
  21789. },
  21790. maw: {
  21791. height: math.unit(1, "feet"),
  21792. name: "Maw",
  21793. image: {
  21794. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21795. }
  21796. },
  21797. were: {
  21798. height: math.unit(20, "feet"),
  21799. weight: math.unit(7800, "lb"),
  21800. name: "Were",
  21801. image: {
  21802. source: "./media/characters/leonardo-lycheborne/were.svg",
  21803. extra: 1224/1165,
  21804. bottom: 72/1296
  21805. }
  21806. },
  21807. feral: {
  21808. height: math.unit(7.5, "feet"),
  21809. weight: math.unit(600, "lb"),
  21810. name: "Feral",
  21811. image: {
  21812. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21813. extra: 797/702,
  21814. bottom: 139/936
  21815. }
  21816. },
  21817. taur: {
  21818. height: math.unit(11, "feet"),
  21819. weight: math.unit(3300, "lb"),
  21820. name: "Taur",
  21821. image: {
  21822. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21823. extra: 1271/1197,
  21824. bottom: 47/1318
  21825. }
  21826. },
  21827. barghest: {
  21828. height: math.unit(11, "feet"),
  21829. weight: math.unit(1300, "lb"),
  21830. name: "Barghest",
  21831. image: {
  21832. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21833. extra: 1291/1204,
  21834. bottom: 37/1328
  21835. }
  21836. },
  21837. dick: {
  21838. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21839. name: "Dick",
  21840. image: {
  21841. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21842. }
  21843. },
  21844. dickWere: {
  21845. height: math.unit((20) / 3.8, "feet"),
  21846. name: "Dick (Were)",
  21847. image: {
  21848. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21849. }
  21850. },
  21851. },
  21852. [
  21853. {
  21854. name: "Normal",
  21855. height: math.unit(6 + 1 / 12, "feet"),
  21856. default: true
  21857. },
  21858. ]
  21859. ))
  21860. characterMakers.push(() => makeCharacter(
  21861. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21862. {
  21863. front: {
  21864. height: math.unit(10, "feet"),
  21865. weight: math.unit(350, "lb"),
  21866. name: "Front",
  21867. image: {
  21868. source: "./media/characters/jet/front.svg",
  21869. extra: 2050 / 1980,
  21870. bottom: 0.013
  21871. }
  21872. },
  21873. back: {
  21874. height: math.unit(10, "feet"),
  21875. weight: math.unit(350, "lb"),
  21876. name: "Back",
  21877. image: {
  21878. source: "./media/characters/jet/back.svg",
  21879. extra: 2050 / 1980,
  21880. bottom: 0.013
  21881. }
  21882. },
  21883. },
  21884. [
  21885. {
  21886. name: "Micro",
  21887. height: math.unit(6, "inches")
  21888. },
  21889. {
  21890. name: "Normal",
  21891. height: math.unit(10, "feet"),
  21892. default: true
  21893. },
  21894. {
  21895. name: "Macro",
  21896. height: math.unit(100, "feet")
  21897. },
  21898. ]
  21899. ))
  21900. characterMakers.push(() => makeCharacter(
  21901. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21902. {
  21903. front: {
  21904. height: math.unit(15, "feet"),
  21905. weight: math.unit(2800, "lb"),
  21906. name: "Front",
  21907. image: {
  21908. source: "./media/characters/tanarath/front.svg",
  21909. extra: 2392 / 2220,
  21910. bottom: 0.03
  21911. }
  21912. },
  21913. back: {
  21914. height: math.unit(15, "feet"),
  21915. weight: math.unit(2800, "lb"),
  21916. name: "Back",
  21917. image: {
  21918. source: "./media/characters/tanarath/back.svg",
  21919. extra: 2392 / 2220,
  21920. bottom: 0.03
  21921. }
  21922. },
  21923. },
  21924. [
  21925. {
  21926. name: "Normal",
  21927. height: math.unit(15, "feet"),
  21928. default: true
  21929. },
  21930. ]
  21931. ))
  21932. characterMakers.push(() => makeCharacter(
  21933. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21934. {
  21935. front: {
  21936. height: math.unit(7 + 1 / 12, "feet"),
  21937. weight: math.unit(175, "lb"),
  21938. name: "Front",
  21939. image: {
  21940. source: "./media/characters/patty-cattybatty/front.svg",
  21941. extra: 908 / 874,
  21942. bottom: 0.025
  21943. }
  21944. },
  21945. },
  21946. [
  21947. {
  21948. name: "Micro",
  21949. height: math.unit(1, "inch")
  21950. },
  21951. {
  21952. name: "Normal",
  21953. height: math.unit(7 + 1 / 12, "feet")
  21954. },
  21955. {
  21956. name: "Mini Macro",
  21957. height: math.unit(155, "feet")
  21958. },
  21959. {
  21960. name: "Macro",
  21961. height: math.unit(1077, "feet")
  21962. },
  21963. {
  21964. name: "Mega Macro",
  21965. height: math.unit(47650, "feet"),
  21966. default: true
  21967. },
  21968. {
  21969. name: "Giga Macro",
  21970. height: math.unit(440, "miles")
  21971. },
  21972. {
  21973. name: "Tera Macro",
  21974. height: math.unit(8700, "miles")
  21975. },
  21976. {
  21977. name: "Planetary Macro",
  21978. height: math.unit(32700, "miles")
  21979. },
  21980. {
  21981. name: "Solar Macro",
  21982. height: math.unit(550000, "miles")
  21983. },
  21984. {
  21985. name: "Celestial Macro",
  21986. height: math.unit(2.5, "AU")
  21987. },
  21988. ]
  21989. ))
  21990. characterMakers.push(() => makeCharacter(
  21991. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21992. {
  21993. front: {
  21994. height: math.unit(4 + 5 / 12, "feet"),
  21995. weight: math.unit(90, "lb"),
  21996. name: "Front",
  21997. image: {
  21998. source: "./media/characters/cappu/front.svg",
  21999. extra: 1247 / 1152,
  22000. bottom: 0.012
  22001. }
  22002. },
  22003. },
  22004. [
  22005. {
  22006. name: "Normal",
  22007. height: math.unit(4 + 5 / 12, "feet"),
  22008. default: true
  22009. },
  22010. ]
  22011. ))
  22012. characterMakers.push(() => makeCharacter(
  22013. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  22014. {
  22015. frontDressed: {
  22016. height: math.unit(70, "cm"),
  22017. weight: math.unit(6, "kg"),
  22018. name: "Front (Dressed)",
  22019. image: {
  22020. source: "./media/characters/sebi/front-dressed.svg",
  22021. extra: 713.5 / 686.5,
  22022. bottom: 0.003
  22023. }
  22024. },
  22025. front: {
  22026. height: math.unit(70, "cm"),
  22027. weight: math.unit(5, "kg"),
  22028. name: "Front",
  22029. image: {
  22030. source: "./media/characters/sebi/front.svg",
  22031. extra: 713.5 / 686.5,
  22032. bottom: 0.003
  22033. }
  22034. }
  22035. },
  22036. [
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(70, "cm"),
  22040. default: true
  22041. },
  22042. {
  22043. name: "Macro",
  22044. height: math.unit(8, "meters")
  22045. },
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  22050. {
  22051. front: {
  22052. height: math.unit(6, "feet"),
  22053. weight: math.unit(150, "lb"),
  22054. name: "Front",
  22055. image: {
  22056. source: "./media/characters/typhek/front.svg",
  22057. extra: 1948 / 1929,
  22058. bottom: 0.025
  22059. }
  22060. },
  22061. side: {
  22062. height: math.unit(6, "feet"),
  22063. weight: math.unit(150, "lb"),
  22064. name: "Side",
  22065. image: {
  22066. source: "./media/characters/typhek/side.svg",
  22067. extra: 2034 / 2010,
  22068. bottom: 0.003
  22069. }
  22070. },
  22071. back: {
  22072. height: math.unit(6, "feet"),
  22073. weight: math.unit(150, "lb"),
  22074. name: "Back",
  22075. image: {
  22076. source: "./media/characters/typhek/back.svg",
  22077. extra: 2005 / 1978,
  22078. bottom: 0.004
  22079. }
  22080. },
  22081. palm: {
  22082. height: math.unit(1.2, "feet"),
  22083. name: "Palm",
  22084. image: {
  22085. source: "./media/characters/typhek/palm.svg"
  22086. }
  22087. },
  22088. fist: {
  22089. height: math.unit(1.1, "feet"),
  22090. name: "Fist",
  22091. image: {
  22092. source: "./media/characters/typhek/fist.svg"
  22093. }
  22094. },
  22095. foot: {
  22096. height: math.unit(1.57, "feet"),
  22097. name: "Foot",
  22098. image: {
  22099. source: "./media/characters/typhek/foot.svg"
  22100. }
  22101. },
  22102. sole: {
  22103. height: math.unit(2.05, "feet"),
  22104. name: "Sole",
  22105. image: {
  22106. source: "./media/characters/typhek/sole.svg"
  22107. }
  22108. },
  22109. },
  22110. [
  22111. {
  22112. name: "Macro",
  22113. height: math.unit(40, "stories"),
  22114. default: true
  22115. },
  22116. {
  22117. name: "Megamacro",
  22118. height: math.unit(1, "mile")
  22119. },
  22120. {
  22121. name: "Gigamacro",
  22122. height: math.unit(4000, "solarradii")
  22123. },
  22124. {
  22125. name: "Universal",
  22126. height: math.unit(1.1, "universes")
  22127. }
  22128. ]
  22129. ))
  22130. characterMakers.push(() => makeCharacter(
  22131. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22132. {
  22133. side: {
  22134. height: math.unit(5 + 7 / 12, "feet"),
  22135. weight: math.unit(150, "lb"),
  22136. name: "Side",
  22137. image: {
  22138. source: "./media/characters/kassy/side.svg",
  22139. extra: 1280 / 1225,
  22140. bottom: 0.002
  22141. }
  22142. },
  22143. front: {
  22144. height: math.unit(5 + 7 / 12, "feet"),
  22145. weight: math.unit(150, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/kassy/front.svg",
  22149. extra: 1280 / 1225,
  22150. bottom: 0.025
  22151. }
  22152. },
  22153. back: {
  22154. height: math.unit(5 + 7 / 12, "feet"),
  22155. weight: math.unit(150, "lb"),
  22156. name: "Back",
  22157. image: {
  22158. source: "./media/characters/kassy/back.svg",
  22159. extra: 1280 / 1225,
  22160. bottom: 0.002
  22161. }
  22162. },
  22163. foot: {
  22164. height: math.unit(1.266, "feet"),
  22165. name: "Foot",
  22166. image: {
  22167. source: "./media/characters/kassy/foot.svg"
  22168. }
  22169. },
  22170. },
  22171. [
  22172. {
  22173. name: "Normal",
  22174. height: math.unit(5 + 7 / 12, "feet")
  22175. },
  22176. {
  22177. name: "Macro",
  22178. height: math.unit(137, "feet"),
  22179. default: true
  22180. },
  22181. {
  22182. name: "Megamacro",
  22183. height: math.unit(1, "mile")
  22184. },
  22185. ]
  22186. ))
  22187. characterMakers.push(() => makeCharacter(
  22188. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22189. {
  22190. front: {
  22191. height: math.unit(6 + 1 / 12, "feet"),
  22192. weight: math.unit(200, "lb"),
  22193. name: "Front",
  22194. image: {
  22195. source: "./media/characters/neil/front.svg",
  22196. extra: 1326 / 1250,
  22197. bottom: 0.023
  22198. }
  22199. },
  22200. },
  22201. [
  22202. {
  22203. name: "Normal",
  22204. height: math.unit(6 + 1 / 12, "feet"),
  22205. default: true
  22206. },
  22207. {
  22208. name: "Macro",
  22209. height: math.unit(200, "feet")
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22215. {
  22216. front: {
  22217. height: math.unit(5 + 9 / 12, "feet"),
  22218. weight: math.unit(190, "lb"),
  22219. name: "Front",
  22220. image: {
  22221. source: "./media/characters/atticus/front.svg",
  22222. extra: 2934 / 2785,
  22223. bottom: 0.025
  22224. }
  22225. },
  22226. },
  22227. [
  22228. {
  22229. name: "Normal",
  22230. height: math.unit(5 + 9 / 12, "feet"),
  22231. default: true
  22232. },
  22233. {
  22234. name: "Macro",
  22235. height: math.unit(180, "feet")
  22236. },
  22237. ]
  22238. ))
  22239. characterMakers.push(() => makeCharacter(
  22240. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22241. {
  22242. side: {
  22243. height: math.unit(9, "feet"),
  22244. weight: math.unit(650, "lb"),
  22245. name: "Side",
  22246. image: {
  22247. source: "./media/characters/milo/side.svg",
  22248. extra: 2644 / 2310,
  22249. bottom: 0.032
  22250. }
  22251. },
  22252. },
  22253. [
  22254. {
  22255. name: "Normal",
  22256. height: math.unit(9, "feet"),
  22257. default: true
  22258. },
  22259. {
  22260. name: "Macro",
  22261. height: math.unit(300, "feet")
  22262. },
  22263. ]
  22264. ))
  22265. characterMakers.push(() => makeCharacter(
  22266. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22267. {
  22268. side: {
  22269. height: math.unit(8, "meters"),
  22270. weight: math.unit(90000, "kg"),
  22271. name: "Side",
  22272. image: {
  22273. source: "./media/characters/ijzer/side.svg",
  22274. extra: 2756 / 1600,
  22275. bottom: 0.01
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Small",
  22282. height: math.unit(3, "meters")
  22283. },
  22284. {
  22285. name: "Normal",
  22286. height: math.unit(8, "meters"),
  22287. default: true
  22288. },
  22289. {
  22290. name: "Normal+",
  22291. height: math.unit(10, "meters")
  22292. },
  22293. {
  22294. name: "Bigger",
  22295. height: math.unit(24, "meters")
  22296. },
  22297. {
  22298. name: "Huge",
  22299. height: math.unit(80, "meters")
  22300. },
  22301. ]
  22302. ))
  22303. characterMakers.push(() => makeCharacter(
  22304. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22305. {
  22306. front: {
  22307. height: math.unit(6 + 2 / 12, "feet"),
  22308. weight: math.unit(153, "lb"),
  22309. name: "Front",
  22310. image: {
  22311. source: "./media/characters/luca-cervicum/front.svg",
  22312. extra: 370 / 327,
  22313. bottom: 0.015
  22314. }
  22315. },
  22316. back: {
  22317. height: math.unit(6 + 2 / 12, "feet"),
  22318. weight: math.unit(153, "lb"),
  22319. name: "Back",
  22320. image: {
  22321. source: "./media/characters/luca-cervicum/back.svg",
  22322. extra: 367 / 333,
  22323. bottom: 0.005
  22324. }
  22325. },
  22326. frontGear: {
  22327. height: math.unit(6 + 2 / 12, "feet"),
  22328. weight: math.unit(173, "lb"),
  22329. name: "Front (Gear)",
  22330. image: {
  22331. source: "./media/characters/luca-cervicum/front-gear.svg",
  22332. extra: 377 / 333,
  22333. bottom: 0.006
  22334. }
  22335. },
  22336. },
  22337. [
  22338. {
  22339. name: "Normal",
  22340. height: math.unit(6 + 2 / 12, "feet"),
  22341. default: true
  22342. },
  22343. ]
  22344. ))
  22345. characterMakers.push(() => makeCharacter(
  22346. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22347. {
  22348. front: {
  22349. height: math.unit(6 + 1 / 12, "feet"),
  22350. weight: math.unit(304, "lb"),
  22351. name: "Front",
  22352. image: {
  22353. source: "./media/characters/oliver/front.svg",
  22354. extra: 157 / 143,
  22355. bottom: 0.08
  22356. }
  22357. },
  22358. },
  22359. [
  22360. {
  22361. name: "Normal",
  22362. height: math.unit(6 + 1 / 12, "feet"),
  22363. default: true
  22364. },
  22365. ]
  22366. ))
  22367. characterMakers.push(() => makeCharacter(
  22368. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22369. {
  22370. front: {
  22371. height: math.unit(5 + 7 / 12, "feet"),
  22372. weight: math.unit(140, "lb"),
  22373. name: "Front",
  22374. image: {
  22375. source: "./media/characters/shane/front.svg",
  22376. extra: 304 / 289,
  22377. bottom: 0.005
  22378. }
  22379. },
  22380. },
  22381. [
  22382. {
  22383. name: "Normal",
  22384. height: math.unit(5 + 7 / 12, "feet"),
  22385. default: true
  22386. },
  22387. ]
  22388. ))
  22389. characterMakers.push(() => makeCharacter(
  22390. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22391. {
  22392. front: {
  22393. height: math.unit(5 + 9 / 12, "feet"),
  22394. weight: math.unit(178, "lb"),
  22395. name: "Front",
  22396. image: {
  22397. source: "./media/characters/shin/front.svg",
  22398. extra: 159 / 151,
  22399. bottom: 0.015
  22400. }
  22401. },
  22402. },
  22403. [
  22404. {
  22405. name: "Normal",
  22406. height: math.unit(5 + 9 / 12, "feet"),
  22407. default: true
  22408. },
  22409. ]
  22410. ))
  22411. characterMakers.push(() => makeCharacter(
  22412. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22413. {
  22414. front: {
  22415. height: math.unit(5 + 10 / 12, "feet"),
  22416. weight: math.unit(168, "lb"),
  22417. name: "Front",
  22418. image: {
  22419. source: "./media/characters/xerxes/front.svg",
  22420. extra: 282 / 260,
  22421. bottom: 0.045
  22422. }
  22423. },
  22424. },
  22425. [
  22426. {
  22427. name: "Normal",
  22428. height: math.unit(5 + 10 / 12, "feet"),
  22429. default: true
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22435. {
  22436. front: {
  22437. height: math.unit(6 + 7 / 12, "feet"),
  22438. weight: math.unit(208, "lb"),
  22439. name: "Front",
  22440. image: {
  22441. source: "./media/characters/chaska/front.svg",
  22442. extra: 332 / 319,
  22443. bottom: 0.015
  22444. }
  22445. },
  22446. },
  22447. [
  22448. {
  22449. name: "Normal",
  22450. height: math.unit(6 + 7 / 12, "feet"),
  22451. default: true
  22452. },
  22453. ]
  22454. ))
  22455. characterMakers.push(() => makeCharacter(
  22456. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22457. {
  22458. front: {
  22459. height: math.unit(5 + 8 / 12, "feet"),
  22460. weight: math.unit(208, "lb"),
  22461. name: "Front",
  22462. image: {
  22463. source: "./media/characters/enuk/front.svg",
  22464. extra: 437 / 406,
  22465. bottom: 0.02
  22466. }
  22467. },
  22468. },
  22469. [
  22470. {
  22471. name: "Normal",
  22472. height: math.unit(5 + 8 / 12, "feet"),
  22473. default: true
  22474. },
  22475. ]
  22476. ))
  22477. characterMakers.push(() => makeCharacter(
  22478. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22479. {
  22480. front: {
  22481. height: math.unit(5 + 10 / 12, "feet"),
  22482. weight: math.unit(252, "lb"),
  22483. name: "Front",
  22484. image: {
  22485. source: "./media/characters/bruun/front.svg",
  22486. extra: 197 / 187,
  22487. bottom: 0.012
  22488. }
  22489. },
  22490. },
  22491. [
  22492. {
  22493. name: "Normal",
  22494. height: math.unit(5 + 10 / 12, "feet"),
  22495. default: true
  22496. },
  22497. ]
  22498. ))
  22499. characterMakers.push(() => makeCharacter(
  22500. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22501. {
  22502. front: {
  22503. height: math.unit(6 + 10 / 12, "feet"),
  22504. weight: math.unit(255, "lb"),
  22505. name: "Front",
  22506. image: {
  22507. source: "./media/characters/alexeev/front.svg",
  22508. extra: 213 / 200,
  22509. bottom: 0.05
  22510. }
  22511. },
  22512. },
  22513. [
  22514. {
  22515. name: "Normal",
  22516. height: math.unit(6 + 10 / 12, "feet"),
  22517. default: true
  22518. },
  22519. ]
  22520. ))
  22521. characterMakers.push(() => makeCharacter(
  22522. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22523. {
  22524. front: {
  22525. height: math.unit(2 + 8 / 12, "feet"),
  22526. weight: math.unit(22, "lb"),
  22527. name: "Front",
  22528. image: {
  22529. source: "./media/characters/evelyn/front.svg",
  22530. extra: 208 / 180
  22531. }
  22532. },
  22533. },
  22534. [
  22535. {
  22536. name: "Normal",
  22537. height: math.unit(2 + 8 / 12, "feet"),
  22538. default: true
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22544. {
  22545. front: {
  22546. height: math.unit(5 + 9 / 12, "feet"),
  22547. weight: math.unit(139, "lb"),
  22548. name: "Front",
  22549. image: {
  22550. source: "./media/characters/inca/front.svg",
  22551. extra: 294 / 291,
  22552. bottom: 0.03
  22553. }
  22554. },
  22555. },
  22556. [
  22557. {
  22558. name: "Normal",
  22559. height: math.unit(5 + 9 / 12, "feet"),
  22560. default: true
  22561. },
  22562. ]
  22563. ))
  22564. characterMakers.push(() => makeCharacter(
  22565. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22566. {
  22567. front: {
  22568. height: math.unit(6 + 3 / 12, "feet"),
  22569. weight: math.unit(185, "lb"),
  22570. name: "Front",
  22571. image: {
  22572. source: "./media/characters/mera/front.svg",
  22573. extra: 291 / 277,
  22574. bottom: 0.03
  22575. }
  22576. },
  22577. },
  22578. [
  22579. {
  22580. name: "Normal",
  22581. height: math.unit(6 + 3 / 12, "feet"),
  22582. default: true
  22583. },
  22584. ]
  22585. ))
  22586. characterMakers.push(() => makeCharacter(
  22587. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22588. {
  22589. front: {
  22590. height: math.unit(6 + 7 / 12, "feet"),
  22591. weight: math.unit(160, "lb"),
  22592. name: "Front",
  22593. image: {
  22594. source: "./media/characters/ceres/front.svg",
  22595. extra: 1023 / 950,
  22596. bottom: 0.027
  22597. }
  22598. },
  22599. back: {
  22600. height: math.unit(6 + 7 / 12, "feet"),
  22601. weight: math.unit(160, "lb"),
  22602. name: "Back",
  22603. image: {
  22604. source: "./media/characters/ceres/back.svg",
  22605. extra: 1023 / 950
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Normal",
  22612. height: math.unit(6 + 7 / 12, "feet"),
  22613. default: true
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22619. {
  22620. front: {
  22621. height: math.unit(5 + 10 / 12, "feet"),
  22622. weight: math.unit(150, "lb"),
  22623. name: "Front",
  22624. image: {
  22625. source: "./media/characters/kris/front.svg",
  22626. extra: 885 / 803,
  22627. bottom: 0.03
  22628. }
  22629. },
  22630. },
  22631. [
  22632. {
  22633. name: "Normal",
  22634. height: math.unit(5 + 10 / 12, "feet"),
  22635. default: true
  22636. },
  22637. ]
  22638. ))
  22639. characterMakers.push(() => makeCharacter(
  22640. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22641. {
  22642. dragon_front: {
  22643. height: math.unit(5, "feet"),
  22644. name: "Front",
  22645. image: {
  22646. source: "./media/characters/taluthus/dragon-front.svg",
  22647. extra: 1203/1098,
  22648. bottom: 46/1249
  22649. },
  22650. form: "dragon",
  22651. default: true
  22652. },
  22653. dragon_maw: {
  22654. height: math.unit(2.35, "feet"),
  22655. name: "Maw",
  22656. image: {
  22657. source: "./media/characters/taluthus/dragon-maw.svg"
  22658. },
  22659. form: "dragon",
  22660. },
  22661. kitsune_front: {
  22662. height: math.unit(7, "feet"),
  22663. name: "Front",
  22664. image: {
  22665. source: "./media/characters/taluthus/kitsune-front.svg",
  22666. extra: 900/841,
  22667. bottom: 65/965
  22668. },
  22669. form: "kitsune",
  22670. default: true
  22671. },
  22672. },
  22673. [
  22674. {
  22675. name: "Normal",
  22676. height: math.unit(5, "feet"),
  22677. form: "dragon",
  22678. default: true,
  22679. },
  22680. {
  22681. name: "Normal",
  22682. height: math.unit(7, "feet"),
  22683. form: "kitsune",
  22684. default: true
  22685. },
  22686. {
  22687. name: "Macro",
  22688. height: math.unit(300, "feet"),
  22689. allForms: true
  22690. },
  22691. ],
  22692. {
  22693. "dragon": {
  22694. name: "Dragon",
  22695. default: true
  22696. },
  22697. "kitsune": {
  22698. name: "Kitsune",
  22699. },
  22700. }
  22701. ))
  22702. characterMakers.push(() => makeCharacter(
  22703. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22704. {
  22705. front: {
  22706. height: math.unit(5 + 9 / 12, "feet"),
  22707. weight: math.unit(145, "lb"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/dawn/front.svg",
  22711. extra: 2094 / 2016,
  22712. bottom: 0.025
  22713. }
  22714. },
  22715. back: {
  22716. height: math.unit(5 + 9 / 12, "feet"),
  22717. weight: math.unit(160, "lb"),
  22718. name: "Back",
  22719. image: {
  22720. source: "./media/characters/dawn/back.svg",
  22721. extra: 2112 / 2080,
  22722. bottom: 0.005
  22723. }
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(6 + 7 / 12, "feet"),
  22730. default: true
  22731. },
  22732. ]
  22733. ))
  22734. characterMakers.push(() => makeCharacter(
  22735. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22736. {
  22737. anthro: {
  22738. height: math.unit(8 + 3 / 12, "feet"),
  22739. weight: math.unit(450, "lb"),
  22740. name: "Anthro",
  22741. image: {
  22742. source: "./media/characters/arador/anthro.svg",
  22743. extra: 1835 / 1718,
  22744. bottom: 0.025
  22745. }
  22746. },
  22747. feral: {
  22748. height: math.unit(4, "feet"),
  22749. weight: math.unit(200, "lb"),
  22750. name: "Feral",
  22751. image: {
  22752. source: "./media/characters/arador/feral.svg",
  22753. extra: 1683 / 1514,
  22754. bottom: 0.07
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(8 + 3 / 12, "feet")
  22762. },
  22763. {
  22764. name: "Macro",
  22765. height: math.unit(82.5, "feet"),
  22766. default: true
  22767. },
  22768. ]
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22772. {
  22773. front: {
  22774. height: math.unit(5 + 10 / 12, "feet"),
  22775. weight: math.unit(125, "lb"),
  22776. name: "Front",
  22777. image: {
  22778. source: "./media/characters/dharsi/front.svg",
  22779. extra: 716 / 630,
  22780. bottom: 0.035
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Nano",
  22787. height: math.unit(100, "nm")
  22788. },
  22789. {
  22790. name: "Micro",
  22791. height: math.unit(2, "inches")
  22792. },
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(5 + 10 / 12, "feet"),
  22796. default: true
  22797. },
  22798. {
  22799. name: "Macro",
  22800. height: math.unit(1000, "feet")
  22801. },
  22802. {
  22803. name: "Megamacro",
  22804. height: math.unit(10, "miles")
  22805. },
  22806. {
  22807. name: "Gigamacro",
  22808. height: math.unit(3000, "miles")
  22809. },
  22810. {
  22811. name: "Teramacro",
  22812. height: math.unit(500000, "miles")
  22813. },
  22814. {
  22815. name: "Teramacro+",
  22816. height: math.unit(30, "galaxies")
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22822. {
  22823. front: {
  22824. height: math.unit(6, "feet"),
  22825. weight: math.unit(150, "lb"),
  22826. name: "Front",
  22827. image: {
  22828. source: "./media/characters/deathy/front.svg",
  22829. extra: 1552 / 1463,
  22830. bottom: 0.025
  22831. }
  22832. },
  22833. side: {
  22834. height: math.unit(6, "feet"),
  22835. weight: math.unit(150, "lb"),
  22836. name: "Side",
  22837. image: {
  22838. source: "./media/characters/deathy/side.svg",
  22839. extra: 1604 / 1455,
  22840. bottom: 0.025
  22841. }
  22842. },
  22843. back: {
  22844. height: math.unit(6, "feet"),
  22845. weight: math.unit(150, "lb"),
  22846. name: "Back",
  22847. image: {
  22848. source: "./media/characters/deathy/back.svg",
  22849. extra: 1580 / 1463,
  22850. bottom: 0.005
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Micro",
  22857. height: math.unit(5, "millimeters")
  22858. },
  22859. {
  22860. name: "Normal",
  22861. height: math.unit(6 + 5 / 12, "feet"),
  22862. default: true
  22863. },
  22864. ]
  22865. ))
  22866. characterMakers.push(() => makeCharacter(
  22867. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22868. {
  22869. front: {
  22870. height: math.unit(16, "feet"),
  22871. weight: math.unit(4000, "lb"),
  22872. name: "Front",
  22873. image: {
  22874. source: "./media/characters/juniper/front.svg",
  22875. bottom: 0.04
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Normal",
  22882. height: math.unit(16, "feet"),
  22883. default: true
  22884. },
  22885. ]
  22886. ))
  22887. characterMakers.push(() => makeCharacter(
  22888. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22889. {
  22890. front: {
  22891. height: math.unit(6, "feet"),
  22892. weight: math.unit(150, "lb"),
  22893. name: "Front",
  22894. image: {
  22895. source: "./media/characters/hipster/front.svg",
  22896. extra: 1312 / 1209,
  22897. bottom: 0.025
  22898. }
  22899. },
  22900. back: {
  22901. height: math.unit(6, "feet"),
  22902. weight: math.unit(150, "lb"),
  22903. name: "Back",
  22904. image: {
  22905. source: "./media/characters/hipster/back.svg",
  22906. extra: 1281 / 1196,
  22907. bottom: 0.01
  22908. }
  22909. },
  22910. },
  22911. [
  22912. {
  22913. name: "Micro",
  22914. height: math.unit(1, "mm")
  22915. },
  22916. {
  22917. name: "Normal",
  22918. height: math.unit(4, "inches"),
  22919. default: true
  22920. },
  22921. {
  22922. name: "Macro",
  22923. height: math.unit(500, "feet")
  22924. },
  22925. {
  22926. name: "Megamacro",
  22927. height: math.unit(1000, "miles")
  22928. },
  22929. ]
  22930. ))
  22931. characterMakers.push(() => makeCharacter(
  22932. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22933. {
  22934. front: {
  22935. height: math.unit(6, "feet"),
  22936. weight: math.unit(150, "lb"),
  22937. name: "Front",
  22938. image: {
  22939. source: "./media/characters/tendirmuldr/front.svg",
  22940. extra: 1878 / 1772,
  22941. bottom: 0.015
  22942. }
  22943. },
  22944. },
  22945. [
  22946. {
  22947. name: "Megamacro",
  22948. height: math.unit(1500, "miles"),
  22949. default: true
  22950. },
  22951. ]
  22952. ))
  22953. characterMakers.push(() => makeCharacter(
  22954. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22955. {
  22956. front: {
  22957. height: math.unit(14, "feet"),
  22958. weight: math.unit(12000, "lb"),
  22959. name: "Front",
  22960. image: {
  22961. source: "./media/characters/mort/front.svg",
  22962. extra: 365 / 318,
  22963. bottom: 0.01
  22964. }
  22965. },
  22966. side: {
  22967. height: math.unit(14, "feet"),
  22968. weight: math.unit(12000, "lb"),
  22969. name: "Side",
  22970. image: {
  22971. source: "./media/characters/mort/side.svg",
  22972. extra: 365 / 318,
  22973. bottom: 0.052
  22974. },
  22975. default: true
  22976. },
  22977. back: {
  22978. height: math.unit(14, "feet"),
  22979. weight: math.unit(12000, "lb"),
  22980. name: "Back",
  22981. image: {
  22982. source: "./media/characters/mort/back.svg",
  22983. extra: 371 / 332,
  22984. bottom: 0.18
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "Normal",
  22991. height: math.unit(14, "feet"),
  22992. default: true
  22993. },
  22994. ]
  22995. ))
  22996. characterMakers.push(() => makeCharacter(
  22997. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22998. {
  22999. front: {
  23000. height: math.unit(8, "feet"),
  23001. weight: math.unit(1, "ton"),
  23002. name: "Front",
  23003. image: {
  23004. source: "./media/characters/lycoa/front.svg",
  23005. extra: 1836/1728,
  23006. bottom: 81/1917
  23007. }
  23008. },
  23009. back: {
  23010. height: math.unit(8, "feet"),
  23011. weight: math.unit(1, "ton"),
  23012. name: "Back",
  23013. image: {
  23014. source: "./media/characters/lycoa/back.svg",
  23015. extra: 1785/1720,
  23016. bottom: 91/1876
  23017. }
  23018. },
  23019. head: {
  23020. height: math.unit(1.6243, "feet"),
  23021. name: "Head",
  23022. image: {
  23023. source: "./media/characters/lycoa/head.svg",
  23024. extra: 1011/782,
  23025. bottom: 0/1011
  23026. }
  23027. },
  23028. tailmaw: {
  23029. height: math.unit(1.9, "feet"),
  23030. name: "Tailmaw",
  23031. image: {
  23032. source: "./media/characters/lycoa/tailmaw.svg"
  23033. }
  23034. },
  23035. tentacles: {
  23036. height: math.unit(2.1, "feet"),
  23037. name: "Tentacles",
  23038. image: {
  23039. source: "./media/characters/lycoa/tentacles.svg"
  23040. }
  23041. },
  23042. dick: {
  23043. height: math.unit(1.73, "feet"),
  23044. name: "Dick",
  23045. image: {
  23046. source: "./media/characters/lycoa/dick.svg"
  23047. }
  23048. },
  23049. },
  23050. [
  23051. {
  23052. name: "Normal",
  23053. height: math.unit(8, "feet"),
  23054. default: true
  23055. },
  23056. {
  23057. name: "Macro",
  23058. height: math.unit(30, "feet")
  23059. },
  23060. ]
  23061. ))
  23062. characterMakers.push(() => makeCharacter(
  23063. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  23064. {
  23065. front: {
  23066. height: math.unit(4 + 2 / 12, "feet"),
  23067. weight: math.unit(70, "lb"),
  23068. name: "Front",
  23069. image: {
  23070. source: "./media/characters/naldara/front.svg",
  23071. extra: 1664/1387,
  23072. bottom: 81/1745
  23073. },
  23074. form: "anthro",
  23075. default: true
  23076. },
  23077. naga: {
  23078. height: math.unit(20, "feet"),
  23079. weight: math.unit(15000, "kg"),
  23080. name: "Front",
  23081. image: {
  23082. source: "./media/characters/naldara/naga.svg",
  23083. extra: 1590/1396,
  23084. bottom: 285/1875
  23085. },
  23086. form: "naga",
  23087. default: true
  23088. },
  23089. },
  23090. [
  23091. {
  23092. name: "Normal",
  23093. height: math.unit(4 + 2 / 12, "feet"),
  23094. form: "anthro",
  23095. default: true
  23096. },
  23097. {
  23098. name: "Normal",
  23099. height: math.unit(20, "feet"),
  23100. form: "naga",
  23101. default: true
  23102. },
  23103. ],
  23104. {
  23105. "anthro": {
  23106. name: "Anthro",
  23107. default: true
  23108. },
  23109. "naga": {
  23110. name: "Naga"
  23111. }
  23112. }
  23113. ))
  23114. characterMakers.push(() => makeCharacter(
  23115. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  23116. {
  23117. front: {
  23118. height: math.unit(13 + 7 / 12, "feet"),
  23119. weight: math.unit(1500, "lb"),
  23120. name: "Front",
  23121. image: {
  23122. source: "./media/characters/briar/front.svg",
  23123. extra: 1223/1157,
  23124. bottom: 123/1346
  23125. }
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(13 + 7 / 12, "feet"),
  23132. default: true
  23133. },
  23134. ]
  23135. ))
  23136. characterMakers.push(() => makeCharacter(
  23137. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23138. {
  23139. side: {
  23140. height: math.unit(16, "feet"),
  23141. weight: math.unit(500, "lb"),
  23142. name: "Side",
  23143. image: {
  23144. source: "./media/characters/vanguard/side.svg",
  23145. extra: 1022/914,
  23146. bottom: 30/1052
  23147. }
  23148. },
  23149. sideAlt: {
  23150. height: math.unit(10, "feet"),
  23151. weight: math.unit(500, "lb"),
  23152. name: "Side (Alt)",
  23153. image: {
  23154. source: "./media/characters/vanguard/side-alt.svg",
  23155. extra: 502 / 425,
  23156. bottom: 0.087
  23157. }
  23158. },
  23159. },
  23160. [
  23161. {
  23162. name: "Normal",
  23163. height: math.unit(17.71, "feet"),
  23164. default: true
  23165. },
  23166. ]
  23167. ))
  23168. characterMakers.push(() => makeCharacter(
  23169. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23170. {
  23171. front: {
  23172. height: math.unit(7.5, "feet"),
  23173. weight: math.unit(2, "lb"),
  23174. name: "Front",
  23175. image: {
  23176. source: "./media/characters/artemis/work-safe-front.svg",
  23177. extra: 1192 / 1075,
  23178. bottom: 0.07
  23179. },
  23180. form: "work-safe",
  23181. default: true
  23182. },
  23183. frontNsfw: {
  23184. height: math.unit(7.5, "feet"),
  23185. weight: math.unit(2, "lb"),
  23186. name: "Front",
  23187. image: {
  23188. source: "./media/characters/artemis/calibrating-front.svg",
  23189. extra: 1192 / 1075,
  23190. bottom: 0.07
  23191. },
  23192. form: "calibrating",
  23193. default: true
  23194. },
  23195. frontNsfwer: {
  23196. height: math.unit(7.5, "feet"),
  23197. weight: math.unit(2, "lb"),
  23198. name: "Front",
  23199. image: {
  23200. source: "./media/characters/artemis/oversize-load-front.svg",
  23201. extra: 1192 / 1075,
  23202. bottom: 0.07
  23203. },
  23204. form: "oversize-load",
  23205. default: true
  23206. },
  23207. side: {
  23208. height: math.unit(7.5, "feet"),
  23209. weight: math.unit(2, "lb"),
  23210. name: "Side",
  23211. image: {
  23212. source: "./media/characters/artemis/work-safe-side.svg",
  23213. extra: 1192 / 1075,
  23214. bottom: 0.07
  23215. },
  23216. form: "work-safe"
  23217. },
  23218. sideNsfw: {
  23219. height: math.unit(7.5, "feet"),
  23220. weight: math.unit(2, "lb"),
  23221. name: "Side",
  23222. image: {
  23223. source: "./media/characters/artemis/calibrating-side.svg",
  23224. extra: 1192 / 1075,
  23225. bottom: 0.07
  23226. },
  23227. form: "calibrating"
  23228. },
  23229. sideNsfwer: {
  23230. height: math.unit(7.5, "feet"),
  23231. weight: math.unit(2, "lb"),
  23232. name: "Side",
  23233. image: {
  23234. source: "./media/characters/artemis/oversize-load-side.svg",
  23235. extra: 1192 / 1075,
  23236. bottom: 0.07
  23237. },
  23238. form: "oversize-load"
  23239. },
  23240. maw: {
  23241. height: math.unit(1.1, "feet"),
  23242. name: "Maw",
  23243. image: {
  23244. source: "./media/characters/artemis/maw.svg"
  23245. },
  23246. form: "work-safe"
  23247. },
  23248. stomach: {
  23249. height: math.unit(0.95, "feet"),
  23250. name: "Stomach",
  23251. image: {
  23252. source: "./media/characters/artemis/stomach.svg"
  23253. },
  23254. form: "work-safe"
  23255. },
  23256. dickCanine: {
  23257. height: math.unit(1, "feet"),
  23258. name: "Dick (Canine)",
  23259. image: {
  23260. source: "./media/characters/artemis/dick-canine.svg"
  23261. },
  23262. form: "calibrating"
  23263. },
  23264. dickEquine: {
  23265. height: math.unit(0.85, "feet"),
  23266. name: "Dick (Equine)",
  23267. image: {
  23268. source: "./media/characters/artemis/dick-equine.svg"
  23269. },
  23270. form: "calibrating"
  23271. },
  23272. dickExotic: {
  23273. height: math.unit(0.85, "feet"),
  23274. name: "Dick (Exotic)",
  23275. image: {
  23276. source: "./media/characters/artemis/dick-exotic.svg"
  23277. },
  23278. form: "calibrating"
  23279. },
  23280. dickCanineBigger: {
  23281. height: math.unit(1 * 1.33, "feet"),
  23282. name: "Dick (Canine)",
  23283. image: {
  23284. source: "./media/characters/artemis/dick-canine.svg"
  23285. },
  23286. form: "oversize-load"
  23287. },
  23288. dickEquineBigger: {
  23289. height: math.unit(0.85 * 1.33, "feet"),
  23290. name: "Dick (Equine)",
  23291. image: {
  23292. source: "./media/characters/artemis/dick-equine.svg"
  23293. },
  23294. form: "oversize-load"
  23295. },
  23296. dickExoticBigger: {
  23297. height: math.unit(0.85 * 1.33, "feet"),
  23298. name: "Dick (Exotic)",
  23299. image: {
  23300. source: "./media/characters/artemis/dick-exotic.svg"
  23301. },
  23302. form: "oversize-load"
  23303. },
  23304. },
  23305. [
  23306. {
  23307. name: "Normal",
  23308. height: math.unit(7.5, "feet"),
  23309. form: "work-safe",
  23310. default: true
  23311. },
  23312. {
  23313. name: "Normal",
  23314. height: math.unit(7.5, "feet"),
  23315. form: "calibrating",
  23316. default: true
  23317. },
  23318. {
  23319. name: "Normal",
  23320. height: math.unit(7.5, "feet"),
  23321. form: "oversize-load",
  23322. default: true
  23323. },
  23324. {
  23325. name: "Enlarged",
  23326. height: math.unit(12, "feet"),
  23327. form: "work-safe",
  23328. },
  23329. {
  23330. name: "Enlarged",
  23331. height: math.unit(12, "feet"),
  23332. form: "calibrating",
  23333. },
  23334. {
  23335. name: "Enlarged",
  23336. height: math.unit(12, "feet"),
  23337. form: "oversize-load",
  23338. },
  23339. ],
  23340. {
  23341. "work-safe": {
  23342. name: "Work-Safe",
  23343. default: true
  23344. },
  23345. "calibrating": {
  23346. name: "Calibrating"
  23347. },
  23348. "oversize-load": {
  23349. name: "Oversize Load"
  23350. }
  23351. }
  23352. ))
  23353. characterMakers.push(() => makeCharacter(
  23354. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23355. {
  23356. front: {
  23357. height: math.unit(5 + 3 / 12, "feet"),
  23358. weight: math.unit(160, "lb"),
  23359. name: "Front",
  23360. image: {
  23361. source: "./media/characters/kira/front.svg",
  23362. extra: 906 / 786,
  23363. bottom: 0.01
  23364. }
  23365. },
  23366. back: {
  23367. height: math.unit(5 + 3 / 12, "feet"),
  23368. weight: math.unit(160, "lb"),
  23369. name: "Back",
  23370. image: {
  23371. source: "./media/characters/kira/back.svg",
  23372. extra: 882 / 757,
  23373. bottom: 0.005
  23374. }
  23375. },
  23376. frontDressed: {
  23377. height: math.unit(5 + 3 / 12, "feet"),
  23378. weight: math.unit(160, "lb"),
  23379. name: "Front (Dressed)",
  23380. image: {
  23381. source: "./media/characters/kira/front-dressed.svg",
  23382. extra: 906 / 786,
  23383. bottom: 0.01
  23384. }
  23385. },
  23386. beans: {
  23387. height: math.unit(0.92, "feet"),
  23388. name: "Beans",
  23389. image: {
  23390. source: "./media/characters/kira/beans.svg"
  23391. }
  23392. },
  23393. },
  23394. [
  23395. {
  23396. name: "Normal",
  23397. height: math.unit(5 + 3 / 12, "feet"),
  23398. default: true
  23399. },
  23400. ]
  23401. ))
  23402. characterMakers.push(() => makeCharacter(
  23403. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23404. {
  23405. front: {
  23406. height: math.unit(5 + 4 / 12, "feet"),
  23407. weight: math.unit(145, "lb"),
  23408. name: "Front",
  23409. image: {
  23410. source: "./media/characters/scramble/front.svg",
  23411. extra: 763 / 727,
  23412. bottom: 0.05
  23413. }
  23414. },
  23415. back: {
  23416. height: math.unit(5 + 4 / 12, "feet"),
  23417. weight: math.unit(145, "lb"),
  23418. name: "Back",
  23419. image: {
  23420. source: "./media/characters/scramble/back.svg",
  23421. extra: 826 / 737,
  23422. bottom: 0.002
  23423. }
  23424. },
  23425. },
  23426. [
  23427. {
  23428. name: "Normal",
  23429. height: math.unit(5 + 4 / 12, "feet"),
  23430. default: true
  23431. },
  23432. ]
  23433. ))
  23434. characterMakers.push(() => makeCharacter(
  23435. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23436. {
  23437. side: {
  23438. height: math.unit(6 + 2 / 12, "feet"),
  23439. weight: math.unit(190, "lb"),
  23440. name: "Side",
  23441. image: {
  23442. source: "./media/characters/biscuit/side.svg",
  23443. extra: 858 / 791,
  23444. bottom: 0.044
  23445. }
  23446. },
  23447. },
  23448. [
  23449. {
  23450. name: "Normal",
  23451. height: math.unit(6 + 2 / 12, "feet"),
  23452. default: true
  23453. },
  23454. ]
  23455. ))
  23456. characterMakers.push(() => makeCharacter(
  23457. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23458. {
  23459. front: {
  23460. height: math.unit(5 + 2 / 12, "feet"),
  23461. weight: math.unit(120, "lb"),
  23462. name: "Front",
  23463. image: {
  23464. source: "./media/characters/poffin/front.svg",
  23465. extra: 786 / 680,
  23466. bottom: 0.005
  23467. }
  23468. },
  23469. },
  23470. [
  23471. {
  23472. name: "Normal",
  23473. height: math.unit(5 + 2 / 12, "feet"),
  23474. default: true
  23475. },
  23476. ]
  23477. ))
  23478. characterMakers.push(() => makeCharacter(
  23479. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23480. {
  23481. front: {
  23482. height: math.unit(6 + 3 / 12, "feet"),
  23483. weight: math.unit(519, "lb"),
  23484. name: "Front",
  23485. image: {
  23486. source: "./media/characters/dhari/front.svg",
  23487. extra: 1048 / 946,
  23488. bottom: 0.015
  23489. }
  23490. },
  23491. back: {
  23492. height: math.unit(6 + 3 / 12, "feet"),
  23493. weight: math.unit(519, "lb"),
  23494. name: "Back",
  23495. image: {
  23496. source: "./media/characters/dhari/back.svg",
  23497. extra: 1048 / 931,
  23498. bottom: 0.005
  23499. }
  23500. },
  23501. frontDressed: {
  23502. height: math.unit(6 + 3 / 12, "feet"),
  23503. weight: math.unit(519, "lb"),
  23504. name: "Front (Dressed)",
  23505. image: {
  23506. source: "./media/characters/dhari/front-dressed.svg",
  23507. extra: 1713 / 1546,
  23508. bottom: 0.02
  23509. }
  23510. },
  23511. backDressed: {
  23512. height: math.unit(6 + 3 / 12, "feet"),
  23513. weight: math.unit(519, "lb"),
  23514. name: "Back (Dressed)",
  23515. image: {
  23516. source: "./media/characters/dhari/back-dressed.svg",
  23517. extra: 1699 / 1537,
  23518. bottom: 0.01
  23519. }
  23520. },
  23521. maw: {
  23522. height: math.unit(0.95, "feet"),
  23523. name: "Maw",
  23524. image: {
  23525. source: "./media/characters/dhari/maw.svg"
  23526. }
  23527. },
  23528. wereFront: {
  23529. height: math.unit(12 + 8 / 12, "feet"),
  23530. weight: math.unit(4000, "lb"),
  23531. name: "Front (Were)",
  23532. image: {
  23533. source: "./media/characters/dhari/were-front.svg",
  23534. extra: 1065 / 969,
  23535. bottom: 0.015
  23536. }
  23537. },
  23538. wereBack: {
  23539. height: math.unit(12 + 8 / 12, "feet"),
  23540. weight: math.unit(4000, "lb"),
  23541. name: "Back (Were)",
  23542. image: {
  23543. source: "./media/characters/dhari/were-back.svg",
  23544. extra: 1065 / 969,
  23545. bottom: 0.012
  23546. }
  23547. },
  23548. wereMaw: {
  23549. height: math.unit(0.625, "meters"),
  23550. name: "Maw (Were)",
  23551. image: {
  23552. source: "./media/characters/dhari/were-maw.svg"
  23553. }
  23554. },
  23555. },
  23556. [
  23557. {
  23558. name: "Normal",
  23559. height: math.unit(6 + 3 / 12, "feet"),
  23560. default: true
  23561. },
  23562. ]
  23563. ))
  23564. characterMakers.push(() => makeCharacter(
  23565. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23566. {
  23567. anthro: {
  23568. height: math.unit(5 + 7 / 12, "feet"),
  23569. weight: math.unit(175, "lb"),
  23570. name: "Anthro",
  23571. image: {
  23572. source: "./media/characters/rena-dyne/anthro.svg",
  23573. extra: 1849 / 1785,
  23574. bottom: 0.005
  23575. }
  23576. },
  23577. taur: {
  23578. height: math.unit(15 + 6 / 12, "feet"),
  23579. weight: math.unit(8000, "lb"),
  23580. name: "Taur",
  23581. image: {
  23582. source: "./media/characters/rena-dyne/taur.svg",
  23583. extra: 2315 / 2234,
  23584. bottom: 0.033
  23585. }
  23586. },
  23587. },
  23588. [
  23589. {
  23590. name: "Normal",
  23591. height: math.unit(5 + 7 / 12, "feet"),
  23592. default: true
  23593. },
  23594. ]
  23595. ))
  23596. characterMakers.push(() => makeCharacter(
  23597. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23598. {
  23599. front: {
  23600. height: math.unit(8, "feet"),
  23601. weight: math.unit(600, "lb"),
  23602. name: "Front",
  23603. image: {
  23604. source: "./media/characters/weremeep/front.svg",
  23605. extra: 970/849,
  23606. bottom: 7/977
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(8, "feet"),
  23614. default: true
  23615. },
  23616. {
  23617. name: "Lorg",
  23618. height: math.unit(12, "feet")
  23619. },
  23620. {
  23621. name: "Oh Lawd She Comin'",
  23622. height: math.unit(20, "feet")
  23623. },
  23624. ]
  23625. ))
  23626. characterMakers.push(() => makeCharacter(
  23627. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23628. {
  23629. front: {
  23630. height: math.unit(4, "feet"),
  23631. weight: math.unit(90, "lb"),
  23632. name: "Front",
  23633. image: {
  23634. source: "./media/characters/reza/front.svg",
  23635. extra: 1183 / 1111,
  23636. bottom: 0.017
  23637. }
  23638. },
  23639. back: {
  23640. height: math.unit(4, "feet"),
  23641. weight: math.unit(90, "lb"),
  23642. name: "Back",
  23643. image: {
  23644. source: "./media/characters/reza/back.svg",
  23645. extra: 1183 / 1111,
  23646. bottom: 0.01
  23647. }
  23648. },
  23649. drake: {
  23650. height: math.unit(30, "feet"),
  23651. weight: math.unit(246960, "lb"),
  23652. name: "Drake",
  23653. image: {
  23654. source: "./media/characters/reza/drake.svg",
  23655. extra: 2350 / 2024,
  23656. bottom: 60.7 / 2403
  23657. }
  23658. },
  23659. },
  23660. [
  23661. {
  23662. name: "Normal",
  23663. height: math.unit(4, "feet"),
  23664. default: true
  23665. },
  23666. ]
  23667. ))
  23668. characterMakers.push(() => makeCharacter(
  23669. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23670. {
  23671. side: {
  23672. height: math.unit(15, "feet"),
  23673. weight: math.unit(14, "tons"),
  23674. name: "Side",
  23675. image: {
  23676. source: "./media/characters/athea/side.svg",
  23677. extra: 960 / 540,
  23678. bottom: 0.003
  23679. }
  23680. },
  23681. sitting: {
  23682. height: math.unit(6 * 2.85, "feet"),
  23683. weight: math.unit(14, "tons"),
  23684. name: "Sitting",
  23685. image: {
  23686. source: "./media/characters/athea/sitting.svg",
  23687. extra: 621 / 581,
  23688. bottom: 0.075
  23689. }
  23690. },
  23691. maw: {
  23692. height: math.unit(7.59498031496063, "feet"),
  23693. name: "Maw",
  23694. image: {
  23695. source: "./media/characters/athea/maw.svg"
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Lap Cat",
  23702. height: math.unit(2.5, "feet")
  23703. },
  23704. {
  23705. name: "Minimacro",
  23706. height: math.unit(15, "feet"),
  23707. default: true
  23708. },
  23709. {
  23710. name: "Macro",
  23711. height: math.unit(120, "feet")
  23712. },
  23713. {
  23714. name: "Macro+",
  23715. height: math.unit(640, "feet")
  23716. },
  23717. {
  23718. name: "Colossus",
  23719. height: math.unit(2.2, "miles")
  23720. },
  23721. ]
  23722. ))
  23723. characterMakers.push(() => makeCharacter(
  23724. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23725. {
  23726. front: {
  23727. height: math.unit(8 + 8 / 12, "feet"),
  23728. weight: math.unit(130, "kg"),
  23729. name: "Front",
  23730. image: {
  23731. source: "./media/characters/seroko/front.svg",
  23732. extra: 1385 / 1280,
  23733. bottom: 0.025
  23734. }
  23735. },
  23736. back: {
  23737. height: math.unit(8 + 8 / 12, "feet"),
  23738. weight: math.unit(130, "kg"),
  23739. name: "Back",
  23740. image: {
  23741. source: "./media/characters/seroko/back.svg",
  23742. extra: 1369 / 1238,
  23743. bottom: 0.018
  23744. }
  23745. },
  23746. frontDressed: {
  23747. height: math.unit(8 + 8 / 12, "feet"),
  23748. weight: math.unit(130, "kg"),
  23749. name: "Front (Dressed)",
  23750. image: {
  23751. source: "./media/characters/seroko/front-dressed.svg",
  23752. extra: 1366 / 1275,
  23753. bottom: 0.03
  23754. }
  23755. },
  23756. },
  23757. [
  23758. {
  23759. name: "Normal",
  23760. height: math.unit(8 + 8 / 12, "feet"),
  23761. default: true
  23762. },
  23763. ]
  23764. ))
  23765. characterMakers.push(() => makeCharacter(
  23766. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23767. {
  23768. front: {
  23769. height: math.unit(5.5, "feet"),
  23770. weight: math.unit(160, "lb"),
  23771. name: "Front",
  23772. image: {
  23773. source: "./media/characters/quatzi/front.svg",
  23774. extra: 2346 / 2242,
  23775. bottom: 0.015
  23776. }
  23777. },
  23778. },
  23779. [
  23780. {
  23781. name: "Normal",
  23782. height: math.unit(5.5, "feet"),
  23783. default: true
  23784. },
  23785. {
  23786. name: "Big",
  23787. height: math.unit(7.7, "feet")
  23788. },
  23789. ]
  23790. ))
  23791. characterMakers.push(() => makeCharacter(
  23792. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23793. {
  23794. front: {
  23795. height: math.unit(5 + 11 / 12, "feet"),
  23796. weight: math.unit(180, "lb"),
  23797. name: "Front",
  23798. image: {
  23799. source: "./media/characters/sen/front.svg",
  23800. extra: 1321 / 1254,
  23801. bottom: 0.015
  23802. }
  23803. },
  23804. side: {
  23805. height: math.unit(5 + 11 / 12, "feet"),
  23806. weight: math.unit(180, "lb"),
  23807. name: "Side",
  23808. image: {
  23809. source: "./media/characters/sen/side.svg",
  23810. extra: 1321 / 1254,
  23811. bottom: 0.007
  23812. }
  23813. },
  23814. back: {
  23815. height: math.unit(5 + 11 / 12, "feet"),
  23816. weight: math.unit(180, "lb"),
  23817. name: "Back",
  23818. image: {
  23819. source: "./media/characters/sen/back.svg",
  23820. extra: 1321 / 1254
  23821. }
  23822. },
  23823. },
  23824. [
  23825. {
  23826. name: "Normal",
  23827. height: math.unit(5 + 11 / 12, "feet"),
  23828. default: true
  23829. },
  23830. ]
  23831. ))
  23832. characterMakers.push(() => makeCharacter(
  23833. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23834. {
  23835. front: {
  23836. height: math.unit(166.6, "cm"),
  23837. weight: math.unit(66.6, "kg"),
  23838. name: "Front",
  23839. image: {
  23840. source: "./media/characters/fruity/front.svg",
  23841. extra: 1510 / 1386,
  23842. bottom: 0.04
  23843. }
  23844. },
  23845. back: {
  23846. height: math.unit(166.6, "cm"),
  23847. weight: math.unit(66.6, "lb"),
  23848. name: "Back",
  23849. image: {
  23850. source: "./media/characters/fruity/back.svg",
  23851. extra: 1563 / 1435,
  23852. bottom: 0.005
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Normal",
  23859. height: math.unit(166.6, "cm"),
  23860. default: true
  23861. },
  23862. {
  23863. name: "Demonic",
  23864. height: math.unit(166.6, "feet")
  23865. },
  23866. ]
  23867. ))
  23868. characterMakers.push(() => makeCharacter(
  23869. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23870. {
  23871. side: {
  23872. height: math.unit(10, "feet"),
  23873. weight: math.unit(500, "lb"),
  23874. name: "Side",
  23875. image: {
  23876. source: "./media/characters/zost/side.svg",
  23877. extra: 2870/2533,
  23878. bottom: 252/3122
  23879. }
  23880. },
  23881. mawFront: {
  23882. height: math.unit(1.08, "meters"),
  23883. name: "Maw (Front)",
  23884. image: {
  23885. source: "./media/characters/zost/maw-front.svg"
  23886. }
  23887. },
  23888. mawSide: {
  23889. height: math.unit(2.66, "feet"),
  23890. name: "Maw (Side)",
  23891. image: {
  23892. source: "./media/characters/zost/maw-side.svg"
  23893. }
  23894. },
  23895. wingspan: {
  23896. height: math.unit(7.4, "feet"),
  23897. name: "Wingspan",
  23898. image: {
  23899. source: "./media/characters/zost/wingspan.svg"
  23900. }
  23901. },
  23902. },
  23903. [
  23904. {
  23905. name: "Normal",
  23906. height: math.unit(10, "feet"),
  23907. default: true
  23908. },
  23909. ]
  23910. ))
  23911. characterMakers.push(() => makeCharacter(
  23912. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23913. {
  23914. front: {
  23915. height: math.unit(5 + 4 / 12, "feet"),
  23916. weight: math.unit(120, "lb"),
  23917. name: "Front",
  23918. image: {
  23919. source: "./media/characters/luci/front.svg",
  23920. extra: 1985 / 1884,
  23921. bottom: 0.04
  23922. }
  23923. },
  23924. back: {
  23925. height: math.unit(5 + 4 / 12, "feet"),
  23926. weight: math.unit(120, "lb"),
  23927. name: "Back",
  23928. image: {
  23929. source: "./media/characters/luci/back.svg",
  23930. extra: 1892 / 1791,
  23931. bottom: 0.002
  23932. }
  23933. },
  23934. },
  23935. [
  23936. {
  23937. name: "Normal",
  23938. height: math.unit(5 + 4 / 12, "feet"),
  23939. default: true
  23940. },
  23941. ]
  23942. ))
  23943. characterMakers.push(() => makeCharacter(
  23944. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23945. {
  23946. front: {
  23947. height: math.unit(1500, "feet"),
  23948. weight: math.unit(3.8e6, "tons"),
  23949. name: "Front",
  23950. image: {
  23951. source: "./media/characters/2th/front.svg",
  23952. extra: 3489 / 3350,
  23953. bottom: 0.1
  23954. }
  23955. },
  23956. foot: {
  23957. height: math.unit(461, "feet"),
  23958. name: "Foot",
  23959. image: {
  23960. source: "./media/characters/2th/foot.svg"
  23961. }
  23962. },
  23963. },
  23964. [
  23965. {
  23966. name: "\"Micro\"",
  23967. height: math.unit(15 + 7 / 12, "feet")
  23968. },
  23969. {
  23970. name: "Normal",
  23971. height: math.unit(1500, "feet"),
  23972. default: true
  23973. },
  23974. {
  23975. name: "Macro",
  23976. height: math.unit(5000, "feet")
  23977. },
  23978. {
  23979. name: "Megamacro",
  23980. height: math.unit(15, "miles")
  23981. },
  23982. {
  23983. name: "Gigamacro",
  23984. height: math.unit(4000, "miles")
  23985. },
  23986. {
  23987. name: "Galactic",
  23988. height: math.unit(50, "AU")
  23989. },
  23990. ]
  23991. ))
  23992. characterMakers.push(() => makeCharacter(
  23993. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23994. {
  23995. front: {
  23996. height: math.unit(5 + 6 / 12, "feet"),
  23997. weight: math.unit(220, "lb"),
  23998. name: "Front",
  23999. image: {
  24000. source: "./media/characters/amethyst/front.svg",
  24001. extra: 2078 / 2040,
  24002. bottom: 0.045
  24003. }
  24004. },
  24005. back: {
  24006. height: math.unit(5 + 6 / 12, "feet"),
  24007. weight: math.unit(220, "lb"),
  24008. name: "Back",
  24009. image: {
  24010. source: "./media/characters/amethyst/back.svg",
  24011. extra: 2021 / 1989,
  24012. bottom: 0.02
  24013. }
  24014. },
  24015. },
  24016. [
  24017. {
  24018. name: "Normal",
  24019. height: math.unit(5 + 6 / 12, "feet"),
  24020. default: true
  24021. },
  24022. ]
  24023. ))
  24024. characterMakers.push(() => makeCharacter(
  24025. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  24026. {
  24027. front: {
  24028. height: math.unit(4 + 11 / 12, "feet"),
  24029. weight: math.unit(120, "lb"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/yumi-akiyama/front.svg",
  24033. extra: 2638/2432,
  24034. bottom: 70/2708
  24035. }
  24036. },
  24037. back: {
  24038. height: math.unit(4 + 11 / 12, "feet"),
  24039. weight: math.unit(120, "lb"),
  24040. name: "Back",
  24041. image: {
  24042. source: "./media/characters/yumi-akiyama/back.svg",
  24043. extra: 2502/2397,
  24044. bottom: 80/2582
  24045. }
  24046. },
  24047. casual: {
  24048. height: math.unit(4 + 11 / 12, "feet"),
  24049. weight: math.unit(120, "lb"),
  24050. name: "Casual",
  24051. image: {
  24052. source: "./media/characters/yumi-akiyama/casual.svg",
  24053. extra: 958/887,
  24054. bottom: 41/999
  24055. }
  24056. },
  24057. jammies: {
  24058. height: math.unit(4 + 11 / 12, "feet"),
  24059. weight: math.unit(120, "lb"),
  24060. name: "Jammies",
  24061. image: {
  24062. source: "./media/characters/yumi-akiyama/jammies.svg",
  24063. extra: 958/894,
  24064. bottom: 37/995
  24065. }
  24066. },
  24067. warmWeather: {
  24068. height: math.unit(4 + 11 / 12, "feet"),
  24069. weight: math.unit(120, "lb"),
  24070. name: "Warm Weather",
  24071. image: {
  24072. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  24073. extra: 929/865,
  24074. bottom: 76/1005
  24075. }
  24076. },
  24077. mouth: {
  24078. height: math.unit(0.35, "feet"),
  24079. name: "Mouth",
  24080. image: {
  24081. source: "./media/characters/yumi-akiyama/mouth.svg"
  24082. }
  24083. },
  24084. paws: {
  24085. height: math.unit(1.05, "feet"),
  24086. name: "Paws",
  24087. image: {
  24088. source: "./media/characters/yumi-akiyama/paws.svg"
  24089. }
  24090. },
  24091. cockRing: {
  24092. height: math.unit(0.225, "feet"),
  24093. name: "Cock Ring",
  24094. image: {
  24095. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  24096. }
  24097. },
  24098. },
  24099. [
  24100. {
  24101. name: "Galactic",
  24102. height: math.unit(50, "galaxies"),
  24103. default: true
  24104. },
  24105. {
  24106. name: "Universal",
  24107. height: math.unit(100, "universes")
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  24113. {
  24114. front: {
  24115. height: math.unit(8, "feet"),
  24116. weight: math.unit(500, "lb"),
  24117. name: "Front",
  24118. image: {
  24119. source: "./media/characters/rifter-yrmori/front.svg",
  24120. extra: 1180 / 1125,
  24121. bottom: 0.02
  24122. }
  24123. },
  24124. back: {
  24125. height: math.unit(8, "feet"),
  24126. weight: math.unit(500, "lb"),
  24127. name: "Back",
  24128. image: {
  24129. source: "./media/characters/rifter-yrmori/back.svg",
  24130. extra: 1190 / 1145,
  24131. bottom: 0.001
  24132. }
  24133. },
  24134. wings: {
  24135. height: math.unit(7.75, "feet"),
  24136. weight: math.unit(500, "lb"),
  24137. name: "Wings",
  24138. image: {
  24139. source: "./media/characters/rifter-yrmori/wings.svg",
  24140. extra: 1357 / 1285
  24141. }
  24142. },
  24143. maw: {
  24144. height: math.unit(0.8, "feet"),
  24145. name: "Maw",
  24146. image: {
  24147. source: "./media/characters/rifter-yrmori/maw.svg"
  24148. }
  24149. },
  24150. mawfront: {
  24151. height: math.unit(1.45, "feet"),
  24152. name: "Maw (Front)",
  24153. image: {
  24154. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(8, "feet"),
  24162. default: true
  24163. },
  24164. {
  24165. name: "Macro",
  24166. height: math.unit(42, "meters")
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24172. {
  24173. were: {
  24174. height: math.unit(25 + 6 / 12, "feet"),
  24175. weight: math.unit(10000, "lb"),
  24176. name: "Were",
  24177. image: {
  24178. source: "./media/characters/tahajin/were.svg",
  24179. extra: 801 / 770,
  24180. bottom: 0.042
  24181. }
  24182. },
  24183. aquatic: {
  24184. height: math.unit(6 + 4 / 12, "feet"),
  24185. weight: math.unit(160, "lb"),
  24186. name: "Aquatic",
  24187. image: {
  24188. source: "./media/characters/tahajin/aquatic.svg",
  24189. extra: 572 / 542,
  24190. bottom: 0.04
  24191. }
  24192. },
  24193. chow: {
  24194. height: math.unit(8 + 11 / 12, "feet"),
  24195. weight: math.unit(450, "lb"),
  24196. name: "Chow",
  24197. image: {
  24198. source: "./media/characters/tahajin/chow.svg",
  24199. extra: 660 / 640,
  24200. bottom: 0.015
  24201. }
  24202. },
  24203. demiNaga: {
  24204. height: math.unit(6 + 8 / 12, "feet"),
  24205. weight: math.unit(300, "lb"),
  24206. name: "Demi Naga",
  24207. image: {
  24208. source: "./media/characters/tahajin/demi-naga.svg",
  24209. extra: 643 / 615,
  24210. bottom: 0.1
  24211. }
  24212. },
  24213. data: {
  24214. height: math.unit(5, "inches"),
  24215. weight: math.unit(0.1, "lb"),
  24216. name: "Data",
  24217. image: {
  24218. source: "./media/characters/tahajin/data.svg"
  24219. }
  24220. },
  24221. fluu: {
  24222. height: math.unit(5 + 7 / 12, "feet"),
  24223. weight: math.unit(140, "lb"),
  24224. name: "Fluu",
  24225. image: {
  24226. source: "./media/characters/tahajin/fluu.svg",
  24227. extra: 628 / 592,
  24228. bottom: 0.02
  24229. }
  24230. },
  24231. starWarrior: {
  24232. height: math.unit(4 + 5 / 12, "feet"),
  24233. weight: math.unit(50, "lb"),
  24234. name: "Star Warrior",
  24235. image: {
  24236. source: "./media/characters/tahajin/star-warrior.svg"
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Normal",
  24243. height: math.unit(25 + 6 / 12, "feet"),
  24244. default: true
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24250. {
  24251. front: {
  24252. height: math.unit(8, "feet"),
  24253. weight: math.unit(350, "lb"),
  24254. name: "Front",
  24255. image: {
  24256. source: "./media/characters/gabira/front.svg",
  24257. extra: 1261/1154,
  24258. bottom: 51/1312
  24259. }
  24260. },
  24261. back: {
  24262. height: math.unit(8, "feet"),
  24263. weight: math.unit(350, "lb"),
  24264. name: "Back",
  24265. image: {
  24266. source: "./media/characters/gabira/back.svg",
  24267. extra: 1265/1163,
  24268. bottom: 46/1311
  24269. }
  24270. },
  24271. head: {
  24272. height: math.unit(2.85, "feet"),
  24273. name: "Head",
  24274. image: {
  24275. source: "./media/characters/gabira/head.svg"
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Normal",
  24282. height: math.unit(8, "feet"),
  24283. default: true
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24289. {
  24290. front: {
  24291. height: math.unit(5 + 3 / 12, "feet"),
  24292. weight: math.unit(137, "lb"),
  24293. name: "Front",
  24294. image: {
  24295. source: "./media/characters/sasha-katraine/front.svg",
  24296. extra: 1745/1694,
  24297. bottom: 37/1782
  24298. }
  24299. },
  24300. back: {
  24301. height: math.unit(5 + 3 / 12, "feet"),
  24302. weight: math.unit(137, "lb"),
  24303. name: "Back",
  24304. image: {
  24305. source: "./media/characters/sasha-katraine/back.svg",
  24306. extra: 1776/1699,
  24307. bottom: 26/1802
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "Micro",
  24314. height: math.unit(5, "inches")
  24315. },
  24316. {
  24317. name: "Normal",
  24318. height: math.unit(5 + 3 / 12, "feet"),
  24319. default: true
  24320. },
  24321. ]
  24322. ))
  24323. characterMakers.push(() => makeCharacter(
  24324. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24325. {
  24326. side: {
  24327. height: math.unit(4, "inches"),
  24328. weight: math.unit(200, "grams"),
  24329. name: "Side",
  24330. image: {
  24331. source: "./media/characters/der/side.svg",
  24332. extra: 719 / 400,
  24333. bottom: 30.6 / 749.9187
  24334. }
  24335. },
  24336. },
  24337. [
  24338. {
  24339. name: "Micro",
  24340. height: math.unit(4, "inches"),
  24341. default: true
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24347. {
  24348. side: {
  24349. height: math.unit(30, "meters"),
  24350. weight: math.unit(700, "tonnes"),
  24351. name: "Side",
  24352. image: {
  24353. source: "./media/characters/fixerdragon/side.svg",
  24354. extra: (1293.0514 - 116.03) / 1106.86,
  24355. bottom: 116.03 / 1293.0514
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Planck",
  24362. height: math.unit(1.6e-35, "meters")
  24363. },
  24364. {
  24365. name: "Micro",
  24366. height: math.unit(0.4, "meters")
  24367. },
  24368. {
  24369. name: "Normal",
  24370. height: math.unit(30, "meters"),
  24371. default: true
  24372. },
  24373. {
  24374. name: "Megamacro",
  24375. height: math.unit(1.2, "megameters")
  24376. },
  24377. {
  24378. name: "Teramacro",
  24379. height: math.unit(130, "terameters")
  24380. },
  24381. {
  24382. name: "Yottamacro",
  24383. height: math.unit(6200, "yottameters")
  24384. },
  24385. ]
  24386. ));
  24387. characterMakers.push(() => makeCharacter(
  24388. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24389. {
  24390. front: {
  24391. height: math.unit(8, "feet"),
  24392. weight: math.unit(250, "lb"),
  24393. name: "Front",
  24394. image: {
  24395. source: "./media/characters/kite/front.svg",
  24396. extra: 456/414,
  24397. bottom: 24/480
  24398. }
  24399. },
  24400. },
  24401. [
  24402. {
  24403. name: "Normal",
  24404. height: math.unit(8, "feet"),
  24405. default: true
  24406. },
  24407. {
  24408. name: "Macro",
  24409. height: math.unit(360, "feet")
  24410. },
  24411. {
  24412. name: "Megamacro",
  24413. height: math.unit(1500, "feet")
  24414. },
  24415. ]
  24416. ))
  24417. characterMakers.push(() => makeCharacter(
  24418. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24419. {
  24420. anthro_front: {
  24421. height: math.unit(5 + 11/12, "feet"),
  24422. weight: math.unit(170, "lb"),
  24423. name: "Front",
  24424. image: {
  24425. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24426. extra: 1735/1585,
  24427. bottom: 96/1831
  24428. },
  24429. form: "anthro",
  24430. default: true
  24431. },
  24432. anthro_back: {
  24433. height: math.unit(5 + 11/12, "feet"),
  24434. weight: math.unit(170, "lb"),
  24435. name: "Back",
  24436. image: {
  24437. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24438. extra: 1749/1607,
  24439. bottom: 28/1777
  24440. },
  24441. form: "anthro"
  24442. },
  24443. anthro_male: {
  24444. height: math.unit(5 + 11/12, "feet"),
  24445. weight: math.unit(170, "lb"),
  24446. name: "Male",
  24447. image: {
  24448. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24449. extra: 1855/1713,
  24450. bottom: 63/1918
  24451. },
  24452. form: "anthro"
  24453. },
  24454. taur_front: {
  24455. height: math.unit(5 + 7/12, "feet"),
  24456. weight: math.unit(170, "lb"),
  24457. name: "Front",
  24458. image: {
  24459. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24460. extra: 1151/1059,
  24461. bottom: 356/1507
  24462. },
  24463. form: "taur",
  24464. default: true
  24465. },
  24466. anthro_frontDressed: {
  24467. height: math.unit(5 + 11/12, "feet"),
  24468. weight: math.unit(170, "lb"),
  24469. name: "Front (Dressed)",
  24470. image: {
  24471. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24472. extra: 1735/1585,
  24473. bottom: 96/1831
  24474. },
  24475. form: "anthro"
  24476. },
  24477. anthro_backDressed: {
  24478. height: math.unit(5 + 11/12, "feet"),
  24479. weight: math.unit(170, "lb"),
  24480. name: "Back (Dressed)",
  24481. image: {
  24482. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24483. extra: 1749/1607,
  24484. bottom: 28/1777
  24485. },
  24486. form: "anthro"
  24487. },
  24488. anthro_maleDressed: {
  24489. height: math.unit(5 + 11/12, "feet"),
  24490. weight: math.unit(170, "lb"),
  24491. name: "Male (Dressed)",
  24492. image: {
  24493. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24494. extra: 1855/1713,
  24495. bottom: 63/1918
  24496. },
  24497. form: "anthro"
  24498. },
  24499. taur_frontDressed: {
  24500. height: math.unit(5 + 7/12, "feet"),
  24501. weight: math.unit(170, "lb"),
  24502. name: "Front (Dressed)",
  24503. image: {
  24504. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24505. extra: 1151/1059,
  24506. bottom: 356/1507
  24507. },
  24508. form: "taur"
  24509. },
  24510. maw: {
  24511. height: math.unit(1.46, "feet"),
  24512. name: "Maw",
  24513. image: {
  24514. source: "./media/characters/poojawa-vynar/maw.svg"
  24515. },
  24516. allForms: true
  24517. },
  24518. head: {
  24519. height: math.unit(2.34, "feet"),
  24520. name: "Head",
  24521. image: {
  24522. source: "./media/characters/poojawa-vynar/head.svg"
  24523. },
  24524. allForms: true
  24525. },
  24526. leftPaw: {
  24527. height: math.unit(1.72, "feet"),
  24528. name: "Left Paw",
  24529. image: {
  24530. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24531. },
  24532. allForms: true
  24533. },
  24534. rightPaw: {
  24535. height: math.unit(1.61, "feet"),
  24536. name: "Right Paw",
  24537. image: {
  24538. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24539. },
  24540. allForms: true
  24541. },
  24542. toering: {
  24543. height: math.unit(2.9, "inches"),
  24544. name: "Toering",
  24545. image: {
  24546. source: "./media/characters/poojawa-vynar/toering.svg"
  24547. },
  24548. allForms: true
  24549. },
  24550. shaft: {
  24551. height: math.unit(0.625, "feet"),
  24552. name: "Shaft",
  24553. image: {
  24554. source: "./media/characters/poojawa-vynar/shaft.svg"
  24555. },
  24556. allForms: true
  24557. },
  24558. spade: {
  24559. height: math.unit(0.42, "feet"),
  24560. name: "Spade",
  24561. image: {
  24562. source: "./media/characters/poojawa-vynar/spade.svg"
  24563. },
  24564. allForms: true
  24565. },
  24566. },
  24567. [
  24568. {
  24569. name: "Shortstack",
  24570. height: math.unit(4, "feet"),
  24571. form: "anthro"
  24572. },
  24573. {
  24574. name: "Normal",
  24575. height: math.unit(5 + 11 / 12, "feet"),
  24576. form: "anthro",
  24577. default: true
  24578. },
  24579. {
  24580. name: "Tauric",
  24581. height: math.unit(4, "meters"),
  24582. form: "taur",
  24583. default: true
  24584. },
  24585. ],
  24586. {
  24587. "anthro": {
  24588. name: "Anthro",
  24589. default: true
  24590. },
  24591. "taur": {
  24592. name: "Taur",
  24593. },
  24594. }
  24595. ))
  24596. characterMakers.push(() => makeCharacter(
  24597. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24598. {
  24599. front: {
  24600. height: math.unit(293, "meters"),
  24601. weight: math.unit(70400, "tons"),
  24602. name: "Front",
  24603. image: {
  24604. source: "./media/characters/violette/front.svg",
  24605. extra: 1227 / 1180,
  24606. bottom: 0.005
  24607. }
  24608. },
  24609. back: {
  24610. height: math.unit(293, "meters"),
  24611. weight: math.unit(70400, "tons"),
  24612. name: "Back",
  24613. image: {
  24614. source: "./media/characters/violette/back.svg",
  24615. extra: 1227 / 1180,
  24616. bottom: 0.005
  24617. }
  24618. },
  24619. },
  24620. [
  24621. {
  24622. name: "Macro",
  24623. height: math.unit(293, "meters"),
  24624. default: true
  24625. },
  24626. ]
  24627. ))
  24628. characterMakers.push(() => makeCharacter(
  24629. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24630. {
  24631. front: {
  24632. height: math.unit(1050, "feet"),
  24633. weight: math.unit(200000, "tons"),
  24634. name: "Front",
  24635. image: {
  24636. source: "./media/characters/alessandra/front.svg",
  24637. extra: 960 / 912,
  24638. bottom: 0.06
  24639. }
  24640. },
  24641. },
  24642. [
  24643. {
  24644. name: "Macro",
  24645. height: math.unit(1050, "feet")
  24646. },
  24647. {
  24648. name: "Macro+",
  24649. height: math.unit(900, "meters"),
  24650. default: true
  24651. },
  24652. ]
  24653. ))
  24654. characterMakers.push(() => makeCharacter(
  24655. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24656. {
  24657. front: {
  24658. height: math.unit(5, "feet"),
  24659. weight: math.unit(187, "lb"),
  24660. name: "Front",
  24661. image: {
  24662. source: "./media/characters/person/front.svg",
  24663. extra: 3087 / 2945,
  24664. bottom: 91 / 3181
  24665. }
  24666. },
  24667. },
  24668. [
  24669. {
  24670. name: "Micro",
  24671. height: math.unit(3, "inches")
  24672. },
  24673. {
  24674. name: "Normal",
  24675. height: math.unit(5, "feet"),
  24676. default: true
  24677. },
  24678. {
  24679. name: "Macro",
  24680. height: math.unit(90, "feet")
  24681. },
  24682. {
  24683. name: "Max Size",
  24684. height: math.unit(280, "feet")
  24685. },
  24686. ]
  24687. ))
  24688. characterMakers.push(() => makeCharacter(
  24689. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24690. {
  24691. front: {
  24692. height: math.unit(12, "feet"),
  24693. weight: math.unit(3200, "lb"),
  24694. name: "Front",
  24695. image: {
  24696. source: "./media/characters/ty/front.svg",
  24697. extra: 753/703,
  24698. bottom: 61/814
  24699. }
  24700. },
  24701. back: {
  24702. height: math.unit(12, "feet"),
  24703. weight: math.unit(3200, "lb"),
  24704. name: "Back",
  24705. image: {
  24706. source: "./media/characters/ty/back.svg",
  24707. extra: 757/707,
  24708. bottom: 16/773
  24709. }
  24710. },
  24711. head: {
  24712. height: math.unit(3.7, "feet"),
  24713. name: "Head",
  24714. image: {
  24715. source: "./media/characters/ty/head.svg"
  24716. }
  24717. },
  24718. hand: {
  24719. height: math.unit(2.38, "feet"),
  24720. name: "Hand",
  24721. image: {
  24722. source: "./media/characters/ty/hand.svg"
  24723. }
  24724. },
  24725. tail: {
  24726. height: math.unit(8.01096641535, "feet"),
  24727. name: "Tail",
  24728. image: {
  24729. source: "./media/characters/ty/tail.svg"
  24730. }
  24731. },
  24732. },
  24733. [
  24734. {
  24735. name: "Normal",
  24736. height: math.unit(12, "feet"),
  24737. default: true
  24738. },
  24739. ]
  24740. ))
  24741. characterMakers.push(() => makeCharacter(
  24742. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24743. {
  24744. front: {
  24745. height: math.unit(5 + 4 / 12, "feet"),
  24746. weight: math.unit(115, "lb"),
  24747. name: "Front",
  24748. image: {
  24749. source: "./media/characters/rocky/front.svg",
  24750. extra: 1012 / 975,
  24751. bottom: 54 / 1066
  24752. }
  24753. },
  24754. },
  24755. [
  24756. {
  24757. name: "Normal",
  24758. height: math.unit(5 + 4 / 12, "feet"),
  24759. default: true
  24760. },
  24761. ]
  24762. ))
  24763. characterMakers.push(() => makeCharacter(
  24764. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24765. {
  24766. upright: {
  24767. height: math.unit(6, "meters"),
  24768. weight: math.unit(4000, "kg"),
  24769. name: "Upright",
  24770. image: {
  24771. source: "./media/characters/ruin/upright.svg",
  24772. extra: 668 / 661,
  24773. bottom: 42 / 799.8396
  24774. }
  24775. },
  24776. },
  24777. [
  24778. {
  24779. name: "Normal",
  24780. height: math.unit(6, "meters"),
  24781. default: true
  24782. },
  24783. ]
  24784. ))
  24785. characterMakers.push(() => makeCharacter(
  24786. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24787. {
  24788. front: {
  24789. height: math.unit(5, "feet"),
  24790. weight: math.unit(106, "lb"),
  24791. name: "Front",
  24792. image: {
  24793. source: "./media/characters/robin/front.svg",
  24794. extra: 862 / 799,
  24795. bottom: 42.4 / 914.8856
  24796. }
  24797. },
  24798. },
  24799. [
  24800. {
  24801. name: "Normal",
  24802. height: math.unit(5, "feet"),
  24803. default: true
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24809. {
  24810. side: {
  24811. height: math.unit(3, "feet"),
  24812. weight: math.unit(225, "lb"),
  24813. name: "Side",
  24814. image: {
  24815. source: "./media/characters/saian/side.svg",
  24816. extra: 566 / 356,
  24817. bottom: 79.7 / 643
  24818. }
  24819. },
  24820. maw: {
  24821. height: math.unit(2.85, "feet"),
  24822. name: "Maw",
  24823. image: {
  24824. source: "./media/characters/saian/maw.svg"
  24825. }
  24826. },
  24827. },
  24828. [
  24829. {
  24830. name: "Normal",
  24831. height: math.unit(3, "feet"),
  24832. default: true
  24833. },
  24834. ]
  24835. ))
  24836. characterMakers.push(() => makeCharacter(
  24837. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24838. {
  24839. side: {
  24840. height: math.unit(8, "feet"),
  24841. weight: math.unit(300, "lb"),
  24842. name: "Side",
  24843. image: {
  24844. source: "./media/characters/equus-silvermane/side.svg",
  24845. extra: 2176 / 2050,
  24846. bottom: 65.7 / 2245
  24847. }
  24848. },
  24849. front: {
  24850. height: math.unit(8, "feet"),
  24851. weight: math.unit(300, "lb"),
  24852. name: "Front",
  24853. image: {
  24854. source: "./media/characters/equus-silvermane/front.svg",
  24855. extra: 4633 / 4400,
  24856. bottom: 71.3 / 4706.915
  24857. }
  24858. },
  24859. sideStepping: {
  24860. height: math.unit(8, "feet"),
  24861. weight: math.unit(300, "lb"),
  24862. name: "Side (Stepping)",
  24863. image: {
  24864. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24865. extra: 1968 / 1860,
  24866. bottom: 16.4 / 1989
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Normal",
  24873. height: math.unit(8, "feet")
  24874. },
  24875. {
  24876. name: "Minimacro",
  24877. height: math.unit(75, "feet"),
  24878. default: true
  24879. },
  24880. {
  24881. name: "Macro",
  24882. height: math.unit(150, "feet")
  24883. },
  24884. {
  24885. name: "Macro+",
  24886. height: math.unit(1000, "feet")
  24887. },
  24888. {
  24889. name: "Megamacro",
  24890. height: math.unit(1, "mile")
  24891. },
  24892. ]
  24893. ))
  24894. characterMakers.push(() => makeCharacter(
  24895. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24896. {
  24897. side: {
  24898. height: math.unit(20, "feet"),
  24899. weight: math.unit(30000, "kg"),
  24900. name: "Side",
  24901. image: {
  24902. source: "./media/characters/windar/side.svg",
  24903. extra: 1491 / 1248,
  24904. bottom: 82.56 / 1568
  24905. }
  24906. },
  24907. },
  24908. [
  24909. {
  24910. name: "Normal",
  24911. height: math.unit(20, "feet"),
  24912. default: true
  24913. },
  24914. ]
  24915. ))
  24916. characterMakers.push(() => makeCharacter(
  24917. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24918. {
  24919. side: {
  24920. height: math.unit(15.66, "feet"),
  24921. weight: math.unit(150, "lb"),
  24922. name: "Side",
  24923. image: {
  24924. source: "./media/characters/melody/side.svg",
  24925. extra: 1097 / 944,
  24926. bottom: 11.8 / 1109
  24927. }
  24928. },
  24929. sideOutfit: {
  24930. height: math.unit(15.66, "feet"),
  24931. weight: math.unit(150, "lb"),
  24932. name: "Side (Outfit)",
  24933. image: {
  24934. source: "./media/characters/melody/side-outfit.svg",
  24935. extra: 1097 / 944,
  24936. bottom: 11.8 / 1109
  24937. }
  24938. },
  24939. },
  24940. [
  24941. {
  24942. name: "Normal",
  24943. height: math.unit(15.66, "feet"),
  24944. default: true
  24945. },
  24946. ]
  24947. ))
  24948. characterMakers.push(() => makeCharacter(
  24949. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24950. {
  24951. armoredFront: {
  24952. height: math.unit(8, "feet"),
  24953. weight: math.unit(325, "lb"),
  24954. name: "Front",
  24955. image: {
  24956. source: "./media/characters/windera/armored-front.svg",
  24957. extra: 1830/1598,
  24958. bottom: 151/1981
  24959. },
  24960. form: "armored",
  24961. default: true
  24962. },
  24963. macroFront: {
  24964. height: math.unit(70, "feet"),
  24965. weight: math.unit(315453, "lb"),
  24966. name: "Front",
  24967. image: {
  24968. source: "./media/characters/windera/macro-front.svg",
  24969. extra: 963/883,
  24970. bottom: 23/986
  24971. },
  24972. form: "macro",
  24973. default: true
  24974. },
  24975. },
  24976. [
  24977. {
  24978. name: "Normal",
  24979. height: math.unit(8, "feet"),
  24980. default: true,
  24981. form: "armored"
  24982. },
  24983. {
  24984. name: "Normal",
  24985. height: math.unit(70, "feet"),
  24986. default: true,
  24987. form: "macro"
  24988. },
  24989. ],
  24990. {
  24991. "armored": {
  24992. name: "Armored",
  24993. default: true
  24994. },
  24995. "macro": {
  24996. name: "Macro",
  24997. },
  24998. }
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  25002. {
  25003. front: {
  25004. height: math.unit(28.75, "feet"),
  25005. weight: math.unit(2000, "kg"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/sonear/front.svg",
  25009. extra: 1041.1 / 964.9,
  25010. bottom: 53.7 / 1096.6
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Normal",
  25017. height: math.unit(28.75, "feet"),
  25018. default: true
  25019. },
  25020. ]
  25021. ))
  25022. characterMakers.push(() => makeCharacter(
  25023. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  25024. {
  25025. side: {
  25026. height: math.unit(25.5, "feet"),
  25027. weight: math.unit(23000, "kg"),
  25028. name: "Side",
  25029. image: {
  25030. source: "./media/characters/kanara/side.svg"
  25031. }
  25032. },
  25033. },
  25034. [
  25035. {
  25036. name: "Normal",
  25037. height: math.unit(25.5, "feet"),
  25038. default: true
  25039. },
  25040. ]
  25041. ))
  25042. characterMakers.push(() => makeCharacter(
  25043. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  25044. {
  25045. side: {
  25046. height: math.unit(10, "feet"),
  25047. weight: math.unit(1000, "kg"),
  25048. name: "Side",
  25049. image: {
  25050. source: "./media/characters/ereus/side.svg",
  25051. extra: 1157 / 959,
  25052. bottom: 153 / 1312.5
  25053. }
  25054. },
  25055. },
  25056. [
  25057. {
  25058. name: "Normal",
  25059. height: math.unit(10, "feet"),
  25060. default: true
  25061. },
  25062. ]
  25063. ))
  25064. characterMakers.push(() => makeCharacter(
  25065. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  25066. {
  25067. side: {
  25068. height: math.unit(4.5, "feet"),
  25069. weight: math.unit(500, "lb"),
  25070. name: "Side",
  25071. image: {
  25072. source: "./media/characters/e-ter/side.svg",
  25073. extra: 1550 / 1248,
  25074. bottom: 146 / 1694
  25075. }
  25076. },
  25077. },
  25078. [
  25079. {
  25080. name: "Normal",
  25081. height: math.unit(4.5, "feet"),
  25082. default: true
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  25088. {
  25089. side: {
  25090. height: math.unit(9.7, "feet"),
  25091. weight: math.unit(4000, "kg"),
  25092. name: "Side",
  25093. image: {
  25094. source: "./media/characters/yamie/side.svg"
  25095. }
  25096. },
  25097. },
  25098. [
  25099. {
  25100. name: "Normal",
  25101. height: math.unit(9.7, "feet"),
  25102. default: true
  25103. },
  25104. ]
  25105. ))
  25106. characterMakers.push(() => makeCharacter(
  25107. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  25108. {
  25109. front: {
  25110. height: math.unit(50, "feet"),
  25111. weight: math.unit(50000, "kg"),
  25112. name: "Front",
  25113. image: {
  25114. source: "./media/characters/anders/front.svg",
  25115. extra: 570 / 539,
  25116. bottom: 14.7 / 586.7
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Large",
  25123. height: math.unit(50, "feet")
  25124. },
  25125. {
  25126. name: "Macro",
  25127. height: math.unit(2000, "feet"),
  25128. default: true
  25129. },
  25130. {
  25131. name: "Megamacro",
  25132. height: math.unit(12, "miles")
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  25138. {
  25139. front: {
  25140. height: math.unit(7 + 2 / 12, "feet"),
  25141. weight: math.unit(300, "lb"),
  25142. name: "Front",
  25143. image: {
  25144. source: "./media/characters/reban/front.svg",
  25145. extra: 1287/1212,
  25146. bottom: 148/1435
  25147. }
  25148. },
  25149. head: {
  25150. height: math.unit(1.95, "feet"),
  25151. name: "Head",
  25152. image: {
  25153. source: "./media/characters/reban/head.svg"
  25154. }
  25155. },
  25156. maw: {
  25157. height: math.unit(0.95, "feet"),
  25158. name: "Maw",
  25159. image: {
  25160. source: "./media/characters/reban/maw.svg"
  25161. }
  25162. },
  25163. foot: {
  25164. height: math.unit(1.65, "feet"),
  25165. name: "Foot",
  25166. image: {
  25167. source: "./media/characters/reban/foot.svg"
  25168. }
  25169. },
  25170. dick: {
  25171. height: math.unit(7 / 5, "feet"),
  25172. name: "Dick",
  25173. image: {
  25174. source: "./media/characters/reban/dick.svg"
  25175. }
  25176. },
  25177. },
  25178. [
  25179. {
  25180. name: "Natural Height",
  25181. height: math.unit(7 + 2 / 12, "feet")
  25182. },
  25183. {
  25184. name: "Macro",
  25185. height: math.unit(500, "feet"),
  25186. default: true
  25187. },
  25188. {
  25189. name: "Canon Height",
  25190. height: math.unit(50, "AU")
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(6, "feet"),
  25199. weight: math.unit(150, "lb"),
  25200. name: "Front",
  25201. image: {
  25202. source: "./media/characters/terrance-keayes/front.svg",
  25203. extra: 1.005,
  25204. bottom: 151 / 1615
  25205. }
  25206. },
  25207. side: {
  25208. height: math.unit(6, "feet"),
  25209. weight: math.unit(150, "lb"),
  25210. name: "Side",
  25211. image: {
  25212. source: "./media/characters/terrance-keayes/side.svg",
  25213. extra: 1.005,
  25214. bottom: 129.4 / 1544
  25215. }
  25216. },
  25217. back: {
  25218. height: math.unit(6, "feet"),
  25219. weight: math.unit(150, "lb"),
  25220. name: "Back",
  25221. image: {
  25222. source: "./media/characters/terrance-keayes/back.svg",
  25223. extra: 1.005,
  25224. bottom: 58.4 / 1557.3
  25225. }
  25226. },
  25227. dick: {
  25228. height: math.unit(6 * 0.208, "feet"),
  25229. name: "Dick",
  25230. image: {
  25231. source: "./media/characters/terrance-keayes/dick.svg"
  25232. }
  25233. },
  25234. },
  25235. [
  25236. {
  25237. name: "Canon Height",
  25238. height: math.unit(35, "miles"),
  25239. default: true
  25240. },
  25241. ]
  25242. ))
  25243. characterMakers.push(() => makeCharacter(
  25244. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25245. {
  25246. front: {
  25247. height: math.unit(6, "feet"),
  25248. weight: math.unit(150, "lb"),
  25249. name: "Front",
  25250. image: {
  25251. source: "./media/characters/ofelia/front.svg",
  25252. extra: 1130/1117,
  25253. bottom: 91/1221
  25254. }
  25255. },
  25256. back: {
  25257. height: math.unit(6, "feet"),
  25258. weight: math.unit(150, "lb"),
  25259. name: "Back",
  25260. image: {
  25261. source: "./media/characters/ofelia/back.svg",
  25262. extra: 1172/1159,
  25263. bottom: 28/1200
  25264. }
  25265. },
  25266. maw: {
  25267. height: math.unit(1, "feet"),
  25268. name: "Maw",
  25269. image: {
  25270. source: "./media/characters/ofelia/maw.svg"
  25271. }
  25272. },
  25273. foot: {
  25274. height: math.unit(1.949, "feet"),
  25275. name: "Foot",
  25276. image: {
  25277. source: "./media/characters/ofelia/foot.svg"
  25278. }
  25279. },
  25280. },
  25281. [
  25282. {
  25283. name: "Canon Height",
  25284. height: math.unit(2000, "miles"),
  25285. default: true
  25286. },
  25287. ]
  25288. ))
  25289. characterMakers.push(() => makeCharacter(
  25290. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25291. {
  25292. front: {
  25293. height: math.unit(6, "feet"),
  25294. weight: math.unit(150, "lb"),
  25295. name: "Front",
  25296. image: {
  25297. source: "./media/characters/samuel/front.svg",
  25298. extra: 265 / 258,
  25299. bottom: 2 / 266.1566
  25300. }
  25301. },
  25302. },
  25303. [
  25304. {
  25305. name: "Macro",
  25306. height: math.unit(100, "feet"),
  25307. default: true
  25308. },
  25309. {
  25310. name: "Full Size",
  25311. height: math.unit(1000, "miles")
  25312. },
  25313. ]
  25314. ))
  25315. characterMakers.push(() => makeCharacter(
  25316. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25317. {
  25318. front: {
  25319. height: math.unit(6, "feet"),
  25320. weight: math.unit(300, "lb"),
  25321. name: "Front",
  25322. image: {
  25323. source: "./media/characters/beishir-kiel/front.svg",
  25324. extra: 569 / 547,
  25325. bottom: 41.9 / 609
  25326. }
  25327. },
  25328. maw: {
  25329. height: math.unit(6 * 0.202, "feet"),
  25330. name: "Maw",
  25331. image: {
  25332. source: "./media/characters/beishir-kiel/maw.svg"
  25333. }
  25334. },
  25335. },
  25336. [
  25337. {
  25338. name: "Macro",
  25339. height: math.unit(300, "feet"),
  25340. default: true
  25341. },
  25342. ]
  25343. ))
  25344. characterMakers.push(() => makeCharacter(
  25345. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25346. {
  25347. front: {
  25348. height: math.unit(5 + 7/12, "feet"),
  25349. weight: math.unit(120, "lb"),
  25350. name: "Front",
  25351. image: {
  25352. source: "./media/characters/logan-grey/front.svg",
  25353. extra: 1836/1738,
  25354. bottom: 108/1944
  25355. }
  25356. },
  25357. back: {
  25358. height: math.unit(5 + 7/12, "feet"),
  25359. weight: math.unit(120, "lb"),
  25360. name: "Back",
  25361. image: {
  25362. source: "./media/characters/logan-grey/back.svg",
  25363. extra: 1880/1794,
  25364. bottom: 24/1904
  25365. }
  25366. },
  25367. frontSfw: {
  25368. height: math.unit(5 + 7/12, "feet"),
  25369. weight: math.unit(120, "lb"),
  25370. name: "Front (SFW)",
  25371. image: {
  25372. source: "./media/characters/logan-grey/front-sfw.svg",
  25373. extra: 1836/1738,
  25374. bottom: 108/1944
  25375. }
  25376. },
  25377. backSfw: {
  25378. height: math.unit(5 + 7/12, "feet"),
  25379. weight: math.unit(120, "lb"),
  25380. name: "Back (SFW)",
  25381. image: {
  25382. source: "./media/characters/logan-grey/back-sfw.svg",
  25383. extra: 1880/1794,
  25384. bottom: 24/1904
  25385. }
  25386. },
  25387. hands: {
  25388. height: math.unit(0.84, "feet"),
  25389. name: "Hands",
  25390. image: {
  25391. source: "./media/characters/logan-grey/hands.svg"
  25392. }
  25393. },
  25394. paws: {
  25395. height: math.unit(0.72, "feet"),
  25396. name: "Paws",
  25397. image: {
  25398. source: "./media/characters/logan-grey/paws.svg"
  25399. }
  25400. },
  25401. cock: {
  25402. height: math.unit(1.45, "feet"),
  25403. name: "Cock",
  25404. image: {
  25405. source: "./media/characters/logan-grey/cock.svg"
  25406. }
  25407. },
  25408. cockAlt: {
  25409. height: math.unit(1.437, "feet"),
  25410. name: "Cock (alt)",
  25411. image: {
  25412. source: "./media/characters/logan-grey/cock-alt.svg"
  25413. }
  25414. },
  25415. },
  25416. [
  25417. {
  25418. name: "Normal",
  25419. height: math.unit(5 + 8 / 12, "feet")
  25420. },
  25421. {
  25422. name: "The 500 Foot Femboy",
  25423. height: math.unit(500, "feet"),
  25424. default: true
  25425. },
  25426. {
  25427. name: "Megmacro",
  25428. height: math.unit(20, "miles")
  25429. },
  25430. ]
  25431. ))
  25432. characterMakers.push(() => makeCharacter(
  25433. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25434. {
  25435. front: {
  25436. height: math.unit(8 + 2 / 12, "feet"),
  25437. weight: math.unit(275, "lb"),
  25438. name: "Front",
  25439. image: {
  25440. source: "./media/characters/draganta/front.svg",
  25441. extra: 1177 / 1135,
  25442. bottom: 33.46 / 1212.1
  25443. }
  25444. },
  25445. },
  25446. [
  25447. {
  25448. name: "Normal",
  25449. height: math.unit(8 + 6 / 12, "feet"),
  25450. default: true
  25451. },
  25452. {
  25453. name: "Macro",
  25454. height: math.unit(150, "feet")
  25455. },
  25456. {
  25457. name: "Megamacro",
  25458. height: math.unit(1000, "miles")
  25459. },
  25460. ]
  25461. ))
  25462. characterMakers.push(() => makeCharacter(
  25463. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25464. {
  25465. front: {
  25466. height: math.unit(1.72, "m"),
  25467. weight: math.unit(80, "lb"),
  25468. name: "Front",
  25469. image: {
  25470. source: "./media/characters/voski/front.svg",
  25471. extra: 2076.22 / 2022.4,
  25472. bottom: 102.7 / 2177.3866
  25473. }
  25474. },
  25475. frontFlaccid: {
  25476. height: math.unit(1.72, "m"),
  25477. weight: math.unit(80, "lb"),
  25478. name: "Front (Flaccid)",
  25479. image: {
  25480. source: "./media/characters/voski/front-flaccid.svg",
  25481. extra: 2076.22 / 2022.4,
  25482. bottom: 102.7 / 2177.3866
  25483. }
  25484. },
  25485. frontErect: {
  25486. height: math.unit(1.72, "m"),
  25487. weight: math.unit(80, "lb"),
  25488. name: "Front (Erect)",
  25489. image: {
  25490. source: "./media/characters/voski/front-erect.svg",
  25491. extra: 2076.22 / 2022.4,
  25492. bottom: 102.7 / 2177.3866
  25493. }
  25494. },
  25495. back: {
  25496. height: math.unit(1.72, "m"),
  25497. weight: math.unit(80, "lb"),
  25498. name: "Back",
  25499. image: {
  25500. source: "./media/characters/voski/back.svg",
  25501. extra: 2104 / 2051,
  25502. bottom: 10.45 / 2113.63
  25503. }
  25504. },
  25505. },
  25506. [
  25507. {
  25508. name: "Normal",
  25509. height: math.unit(1.72, "m")
  25510. },
  25511. {
  25512. name: "Macro",
  25513. height: math.unit(55, "m"),
  25514. default: true
  25515. },
  25516. {
  25517. name: "Macro+",
  25518. height: math.unit(300, "m")
  25519. },
  25520. {
  25521. name: "Macro++",
  25522. height: math.unit(700, "m")
  25523. },
  25524. {
  25525. name: "Macro+++",
  25526. height: math.unit(4500, "m")
  25527. },
  25528. {
  25529. name: "Macro++++",
  25530. height: math.unit(45, "km")
  25531. },
  25532. {
  25533. name: "Macro+++++",
  25534. height: math.unit(1220, "km")
  25535. },
  25536. ]
  25537. ))
  25538. characterMakers.push(() => makeCharacter(
  25539. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25540. {
  25541. front: {
  25542. height: math.unit(2.3, "m"),
  25543. weight: math.unit(304, "kg"),
  25544. name: "Front",
  25545. image: {
  25546. source: "./media/characters/icowom-lee/front.svg",
  25547. extra: 985 / 955,
  25548. bottom: 25.4 / 1012
  25549. }
  25550. },
  25551. fronttentacles: {
  25552. height: math.unit(2.3, "m"),
  25553. weight: math.unit(304, "kg"),
  25554. name: "Front (Tentacles)",
  25555. image: {
  25556. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25557. extra: 985 / 955,
  25558. bottom: 25.4 / 1012
  25559. }
  25560. },
  25561. back: {
  25562. height: math.unit(2.3, "m"),
  25563. weight: math.unit(304, "kg"),
  25564. name: "Back",
  25565. image: {
  25566. source: "./media/characters/icowom-lee/back.svg",
  25567. extra: 975 / 954,
  25568. bottom: 9.5 / 985
  25569. }
  25570. },
  25571. backtentacles: {
  25572. height: math.unit(2.3, "m"),
  25573. weight: math.unit(304, "kg"),
  25574. name: "Back (Tentacles)",
  25575. image: {
  25576. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25577. extra: 975 / 954,
  25578. bottom: 9.5 / 985
  25579. }
  25580. },
  25581. frontDressed: {
  25582. height: math.unit(2.3, "m"),
  25583. weight: math.unit(304, "kg"),
  25584. name: "Front (Dressed)",
  25585. image: {
  25586. source: "./media/characters/icowom-lee/front-dressed.svg",
  25587. extra: 3076 / 2933,
  25588. bottom: 51.4 / 3125.1889
  25589. }
  25590. },
  25591. rump: {
  25592. height: math.unit(0.776, "meters"),
  25593. name: "Rump",
  25594. image: {
  25595. source: "./media/characters/icowom-lee/rump.svg"
  25596. }
  25597. },
  25598. genitals: {
  25599. height: math.unit(0.78, "meters"),
  25600. name: "Genitals",
  25601. image: {
  25602. source: "./media/characters/icowom-lee/genitals.svg"
  25603. }
  25604. },
  25605. },
  25606. [
  25607. {
  25608. name: "Normal",
  25609. height: math.unit(2.3, "meters"),
  25610. default: true
  25611. },
  25612. {
  25613. name: "Macro",
  25614. height: math.unit(94, "meters"),
  25615. default: true
  25616. },
  25617. ]
  25618. ))
  25619. characterMakers.push(() => makeCharacter(
  25620. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25621. {
  25622. front: {
  25623. height: math.unit(22, "meters"),
  25624. weight: math.unit(21000, "kg"),
  25625. name: "Front",
  25626. image: {
  25627. source: "./media/characters/shock-diamond/front.svg",
  25628. extra: 2204 / 2053,
  25629. bottom: 65 / 2239.47
  25630. }
  25631. },
  25632. frontNude: {
  25633. height: math.unit(22, "meters"),
  25634. weight: math.unit(21000, "kg"),
  25635. name: "Front (Nude)",
  25636. image: {
  25637. source: "./media/characters/shock-diamond/front-nude.svg",
  25638. extra: 2514 / 2285,
  25639. bottom: 13 / 2527.56
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Normal",
  25646. height: math.unit(3, "meters")
  25647. },
  25648. {
  25649. name: "Macro",
  25650. height: math.unit(22, "meters"),
  25651. default: true
  25652. },
  25653. ]
  25654. ))
  25655. characterMakers.push(() => makeCharacter(
  25656. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25657. {
  25658. front: {
  25659. height: math.unit(5 + 4/12, "feet"),
  25660. weight: math.unit(125, "lb"),
  25661. name: "Front",
  25662. image: {
  25663. source: "./media/characters/rory/front.svg",
  25664. extra: 1790/1681,
  25665. bottom: 66/1856
  25666. },
  25667. form: "normal",
  25668. default: true
  25669. },
  25670. back: {
  25671. height: math.unit(5 + 4/12, "feet"),
  25672. weight: math.unit(125, "lb"),
  25673. name: "Back",
  25674. image: {
  25675. source: "./media/characters/rory/back.svg",
  25676. extra: 1805/1690,
  25677. bottom: 56/1861
  25678. },
  25679. form: "normal"
  25680. },
  25681. frontDressed: {
  25682. height: math.unit(5 + 4/12, "feet"),
  25683. weight: math.unit(125, "lb"),
  25684. name: "Front (Dressed)",
  25685. image: {
  25686. source: "./media/characters/rory/front-dressed.svg",
  25687. extra: 1790/1681,
  25688. bottom: 66/1856
  25689. },
  25690. form: "normal"
  25691. },
  25692. backDressed: {
  25693. height: math.unit(5 + 4/12, "feet"),
  25694. weight: math.unit(125, "lb"),
  25695. name: "Back (Dressed)",
  25696. image: {
  25697. source: "./media/characters/rory/back-dressed.svg",
  25698. extra: 1805/1690,
  25699. bottom: 56/1861
  25700. },
  25701. form: "normal"
  25702. },
  25703. frontNsfw: {
  25704. height: math.unit(5 + 4/12, "feet"),
  25705. weight: math.unit(125, "lb"),
  25706. name: "Front (NSFW)",
  25707. image: {
  25708. source: "./media/characters/rory/front-nsfw.svg",
  25709. extra: 1790/1681,
  25710. bottom: 66/1856
  25711. },
  25712. form: "normal"
  25713. },
  25714. backNsfw: {
  25715. height: math.unit(5 + 4/12, "feet"),
  25716. weight: math.unit(125, "lb"),
  25717. name: "Back (NSFW)",
  25718. image: {
  25719. source: "./media/characters/rory/back-nsfw.svg",
  25720. extra: 1805/1690,
  25721. bottom: 56/1861
  25722. },
  25723. form: "normal"
  25724. },
  25725. dick: {
  25726. height: math.unit(0.8, "feet"),
  25727. name: "Dick",
  25728. image: {
  25729. source: "./media/characters/rory/dick.svg"
  25730. },
  25731. form: "normal"
  25732. },
  25733. thicc_front: {
  25734. height: math.unit(5 + 4/12, "feet"),
  25735. weight: math.unit(195, "lb"),
  25736. name: "Front",
  25737. image: {
  25738. source: "./media/characters/rory/thicc-front.svg",
  25739. extra: 1220/1100,
  25740. bottom: 103/1323
  25741. },
  25742. form: "thicc",
  25743. default: true
  25744. },
  25745. thicc_back: {
  25746. height: math.unit(5 + 4/12, "feet"),
  25747. weight: math.unit(195, "lb"),
  25748. name: "Back",
  25749. image: {
  25750. source: "./media/characters/rory/thicc-back.svg",
  25751. extra: 1166/1086,
  25752. bottom: 35/1201
  25753. },
  25754. form: "thicc"
  25755. },
  25756. },
  25757. [
  25758. {
  25759. name: "Micro",
  25760. height: math.unit(3, "inches"),
  25761. allForms: true
  25762. },
  25763. {
  25764. name: "Normal",
  25765. height: math.unit(5 + 4/12, "feet"),
  25766. allForms: true,
  25767. default: true
  25768. },
  25769. {
  25770. name: "Macro",
  25771. height: math.unit(90, "feet"),
  25772. allForms: true
  25773. },
  25774. {
  25775. name: "Supercharged",
  25776. height: math.unit(270, "feet"),
  25777. allForms: true
  25778. },
  25779. ],
  25780. {
  25781. "normal": {
  25782. name: "Normal",
  25783. default: true
  25784. },
  25785. "thicc": {
  25786. name: "Thicc",
  25787. },
  25788. }
  25789. ))
  25790. characterMakers.push(() => makeCharacter(
  25791. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25792. {
  25793. front: {
  25794. height: math.unit(5 + 9 / 12, "feet"),
  25795. weight: math.unit(190, "lb"),
  25796. name: "Front",
  25797. image: {
  25798. source: "./media/characters/sprisk/front.svg",
  25799. extra: 1225 / 1180,
  25800. bottom: 42.7 / 1266.4
  25801. }
  25802. },
  25803. frontNsfw: {
  25804. height: math.unit(5 + 9 / 12, "feet"),
  25805. weight: math.unit(190, "lb"),
  25806. name: "Front (NSFW)",
  25807. image: {
  25808. source: "./media/characters/sprisk/front-nsfw.svg",
  25809. extra: 1225 / 1180,
  25810. bottom: 42.7 / 1266.4
  25811. }
  25812. },
  25813. back: {
  25814. height: math.unit(5 + 9 / 12, "feet"),
  25815. weight: math.unit(190, "lb"),
  25816. name: "Back",
  25817. image: {
  25818. source: "./media/characters/sprisk/back.svg",
  25819. extra: 1247 / 1200,
  25820. bottom: 5.6 / 1253.04
  25821. }
  25822. },
  25823. },
  25824. [
  25825. {
  25826. name: "Tiny",
  25827. height: math.unit(2, "inches")
  25828. },
  25829. {
  25830. name: "Normal",
  25831. height: math.unit(5 + 9 / 12, "feet"),
  25832. default: true
  25833. },
  25834. {
  25835. name: "Mini Macro",
  25836. height: math.unit(18, "feet")
  25837. },
  25838. {
  25839. name: "Macro",
  25840. height: math.unit(100, "feet")
  25841. },
  25842. {
  25843. name: "MACRO",
  25844. height: math.unit(50, "miles")
  25845. },
  25846. {
  25847. name: "M A C R O",
  25848. height: math.unit(300, "miles")
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25854. {
  25855. side: {
  25856. height: math.unit(15.6, "meters"),
  25857. weight: math.unit(700000, "kg"),
  25858. name: "Side",
  25859. image: {
  25860. source: "./media/characters/bunsen/side.svg",
  25861. extra: 1644 / 358
  25862. }
  25863. },
  25864. foot: {
  25865. height: math.unit(1.611 * 1644 / 358, "meter"),
  25866. name: "Foot",
  25867. image: {
  25868. source: "./media/characters/bunsen/foot.svg"
  25869. }
  25870. },
  25871. },
  25872. [
  25873. {
  25874. name: "Small",
  25875. height: math.unit(10, "feet")
  25876. },
  25877. {
  25878. name: "Normal",
  25879. height: math.unit(15.6, "meters"),
  25880. default: true
  25881. },
  25882. ]
  25883. ))
  25884. characterMakers.push(() => makeCharacter(
  25885. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25886. {
  25887. front: {
  25888. height: math.unit(4 + 11 / 12, "feet"),
  25889. weight: math.unit(140, "lb"),
  25890. name: "Front",
  25891. image: {
  25892. source: "./media/characters/sesh/front.svg",
  25893. extra: 3420 / 3231,
  25894. bottom: 72 / 3949.5
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Normal",
  25901. height: math.unit(4 + 11 / 12, "feet")
  25902. },
  25903. {
  25904. name: "Grown",
  25905. height: math.unit(15, "feet"),
  25906. default: true
  25907. },
  25908. {
  25909. name: "Macro",
  25910. height: math.unit(1500, "feet")
  25911. },
  25912. {
  25913. name: "Megamacro",
  25914. height: math.unit(30, "miles")
  25915. },
  25916. {
  25917. name: "Continental",
  25918. height: math.unit(3000, "miles")
  25919. },
  25920. {
  25921. name: "Gravity Mass",
  25922. height: math.unit(300000, "miles")
  25923. },
  25924. {
  25925. name: "Planet Buster",
  25926. height: math.unit(30000000, "miles")
  25927. },
  25928. {
  25929. name: "Big",
  25930. height: math.unit(3000000000, "miles")
  25931. },
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25936. {
  25937. front: {
  25938. height: math.unit(9, "feet"),
  25939. weight: math.unit(350, "lb"),
  25940. name: "Front",
  25941. image: {
  25942. source: "./media/characters/pepper/front.svg",
  25943. extra: 1448 / 1312,
  25944. bottom: 9.4 / 1457.88
  25945. }
  25946. },
  25947. back: {
  25948. height: math.unit(9, "feet"),
  25949. weight: math.unit(350, "lb"),
  25950. name: "Back",
  25951. image: {
  25952. source: "./media/characters/pepper/back.svg",
  25953. extra: 1423 / 1300,
  25954. bottom: 4.6 / 1429
  25955. }
  25956. },
  25957. maw: {
  25958. height: math.unit(0.932, "feet"),
  25959. name: "Maw",
  25960. image: {
  25961. source: "./media/characters/pepper/maw.svg"
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Normal",
  25968. height: math.unit(9, "feet"),
  25969. default: true
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25975. {
  25976. front: {
  25977. height: math.unit(6, "feet"),
  25978. weight: math.unit(150, "lb"),
  25979. name: "Front",
  25980. image: {
  25981. source: "./media/characters/maelstrom/front.svg",
  25982. extra: 2100 / 1883,
  25983. bottom: 94 / 2196.7
  25984. }
  25985. },
  25986. },
  25987. [
  25988. {
  25989. name: "Less Kaiju",
  25990. height: math.unit(200, "feet")
  25991. },
  25992. {
  25993. name: "Kaiju",
  25994. height: math.unit(400, "feet"),
  25995. default: true
  25996. },
  25997. {
  25998. name: "Kaiju-er",
  25999. height: math.unit(600, "feet")
  26000. },
  26001. ]
  26002. ))
  26003. characterMakers.push(() => makeCharacter(
  26004. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  26005. {
  26006. front: {
  26007. height: math.unit(6 + 5 / 12, "feet"),
  26008. weight: math.unit(180, "lb"),
  26009. name: "Front",
  26010. image: {
  26011. source: "./media/characters/lexir/front.svg",
  26012. extra: 180 / 172,
  26013. bottom: 12 / 192
  26014. }
  26015. },
  26016. back: {
  26017. height: math.unit(6 + 5 / 12, "feet"),
  26018. weight: math.unit(180, "lb"),
  26019. name: "Back",
  26020. image: {
  26021. source: "./media/characters/lexir/back.svg",
  26022. extra: 1273/1201,
  26023. bottom: 39/1312
  26024. }
  26025. },
  26026. },
  26027. [
  26028. {
  26029. name: "Very Smal",
  26030. height: math.unit(1, "nm")
  26031. },
  26032. {
  26033. name: "Normal",
  26034. height: math.unit(6 + 5 / 12, "feet"),
  26035. default: true
  26036. },
  26037. {
  26038. name: "Macro",
  26039. height: math.unit(1, "mile")
  26040. },
  26041. {
  26042. name: "Megamacro",
  26043. height: math.unit(50, "miles")
  26044. },
  26045. ]
  26046. ))
  26047. characterMakers.push(() => makeCharacter(
  26048. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  26049. {
  26050. front: {
  26051. height: math.unit(1.5, "meters"),
  26052. weight: math.unit(100, "lb"),
  26053. name: "Front",
  26054. image: {
  26055. source: "./media/characters/maksio/front.svg",
  26056. extra: 1549 / 1531,
  26057. bottom: 123.7 / 1674.5429
  26058. }
  26059. },
  26060. back: {
  26061. height: math.unit(1.5, "meters"),
  26062. weight: math.unit(100, "lb"),
  26063. name: "Back",
  26064. image: {
  26065. source: "./media/characters/maksio/back.svg",
  26066. extra: 1541 / 1509,
  26067. bottom: 97 / 1639
  26068. }
  26069. },
  26070. hand: {
  26071. height: math.unit(0.621, "feet"),
  26072. name: "Hand",
  26073. image: {
  26074. source: "./media/characters/maksio/hand.svg"
  26075. }
  26076. },
  26077. foot: {
  26078. height: math.unit(1.611, "feet"),
  26079. name: "Foot",
  26080. image: {
  26081. source: "./media/characters/maksio/foot.svg"
  26082. }
  26083. },
  26084. },
  26085. [
  26086. {
  26087. name: "Shrunken",
  26088. height: math.unit(10, "cm")
  26089. },
  26090. {
  26091. name: "Normal",
  26092. height: math.unit(150, "cm"),
  26093. default: true
  26094. },
  26095. ]
  26096. ))
  26097. characterMakers.push(() => makeCharacter(
  26098. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  26099. {
  26100. front: {
  26101. height: math.unit(100, "feet"),
  26102. name: "Front",
  26103. image: {
  26104. source: "./media/characters/erza-bear/front.svg",
  26105. extra: 2449 / 2390,
  26106. bottom: 46 / 2494
  26107. }
  26108. },
  26109. back: {
  26110. height: math.unit(100, "feet"),
  26111. name: "Back",
  26112. image: {
  26113. source: "./media/characters/erza-bear/back.svg",
  26114. extra: 2489 / 2430,
  26115. bottom: 85.4 / 2480
  26116. }
  26117. },
  26118. tail: {
  26119. height: math.unit(42, "feet"),
  26120. name: "Tail",
  26121. image: {
  26122. source: "./media/characters/erza-bear/tail.svg"
  26123. }
  26124. },
  26125. tongue: {
  26126. height: math.unit(8, "feet"),
  26127. name: "Tongue",
  26128. image: {
  26129. source: "./media/characters/erza-bear/tongue.svg"
  26130. }
  26131. },
  26132. dick: {
  26133. height: math.unit(10.5, "feet"),
  26134. name: "Dick",
  26135. image: {
  26136. source: "./media/characters/erza-bear/dick.svg"
  26137. }
  26138. },
  26139. dickVertical: {
  26140. height: math.unit(16.9, "feet"),
  26141. name: "Dick (Vertical)",
  26142. image: {
  26143. source: "./media/characters/erza-bear/dick-vertical.svg"
  26144. }
  26145. },
  26146. },
  26147. [
  26148. {
  26149. name: "Macro",
  26150. height: math.unit(100, "feet"),
  26151. default: true
  26152. },
  26153. ]
  26154. ))
  26155. characterMakers.push(() => makeCharacter(
  26156. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26157. {
  26158. front: {
  26159. height: math.unit(172, "cm"),
  26160. weight: math.unit(73, "kg"),
  26161. name: "Front",
  26162. image: {
  26163. source: "./media/characters/violet-flor/front.svg",
  26164. extra: 1474/1379,
  26165. bottom: 113/1587
  26166. }
  26167. },
  26168. back: {
  26169. height: math.unit(180, "cm"),
  26170. weight: math.unit(73, "kg"),
  26171. name: "Back",
  26172. image: {
  26173. source: "./media/characters/violet-flor/back.svg",
  26174. extra: 1660/1567,
  26175. bottom: 49/1709
  26176. }
  26177. },
  26178. },
  26179. [
  26180. {
  26181. name: "Normal",
  26182. height: math.unit(172, "cm"),
  26183. default: true
  26184. },
  26185. ]
  26186. ))
  26187. characterMakers.push(() => makeCharacter(
  26188. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26189. {
  26190. front: {
  26191. height: math.unit(6, "feet"),
  26192. weight: math.unit(220, "lb"),
  26193. name: "Front",
  26194. image: {
  26195. source: "./media/characters/lynn-rhea/front.svg",
  26196. extra: 310 / 273
  26197. }
  26198. },
  26199. back: {
  26200. height: math.unit(6, "feet"),
  26201. weight: math.unit(220, "lb"),
  26202. name: "Back",
  26203. image: {
  26204. source: "./media/characters/lynn-rhea/back.svg",
  26205. extra: 310 / 273
  26206. }
  26207. },
  26208. dicks: {
  26209. height: math.unit(0.9, "feet"),
  26210. name: "Dicks",
  26211. image: {
  26212. source: "./media/characters/lynn-rhea/dicks.svg"
  26213. }
  26214. },
  26215. slit: {
  26216. height: math.unit(0.4, "feet"),
  26217. name: "Slit",
  26218. image: {
  26219. source: "./media/characters/lynn-rhea/slit.svg"
  26220. }
  26221. },
  26222. },
  26223. [
  26224. {
  26225. name: "Micro",
  26226. height: math.unit(1, "inch")
  26227. },
  26228. {
  26229. name: "Macro",
  26230. height: math.unit(60, "feet"),
  26231. default: true
  26232. },
  26233. {
  26234. name: "Megamacro",
  26235. height: math.unit(2, "miles")
  26236. },
  26237. {
  26238. name: "Gigamacro",
  26239. height: math.unit(3, "earths")
  26240. },
  26241. {
  26242. name: "Galactic",
  26243. height: math.unit(0.8, "galaxies")
  26244. },
  26245. ]
  26246. ))
  26247. characterMakers.push(() => makeCharacter(
  26248. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26249. {
  26250. front: {
  26251. height: math.unit(1600, "feet"),
  26252. weight: math.unit(85758785169, "kg"),
  26253. name: "Front",
  26254. image: {
  26255. source: "./media/characters/valathos/front.svg",
  26256. extra: 1451 / 1339
  26257. }
  26258. },
  26259. },
  26260. [
  26261. {
  26262. name: "Macro",
  26263. height: math.unit(1600, "feet"),
  26264. default: true
  26265. },
  26266. ]
  26267. ))
  26268. characterMakers.push(() => makeCharacter(
  26269. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26270. {
  26271. front: {
  26272. height: math.unit(7 + 5 / 12, "feet"),
  26273. weight: math.unit(300, "lb"),
  26274. name: "Front",
  26275. image: {
  26276. source: "./media/characters/azula/front.svg",
  26277. extra: 3208 / 2880,
  26278. bottom: 80.2 / 3277
  26279. }
  26280. },
  26281. back: {
  26282. height: math.unit(7 + 5 / 12, "feet"),
  26283. weight: math.unit(300, "lb"),
  26284. name: "Back",
  26285. image: {
  26286. source: "./media/characters/azula/back.svg",
  26287. extra: 3169 / 2822,
  26288. bottom: 150.6 / 3321
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Normal",
  26295. height: math.unit(7 + 5 / 12, "feet"),
  26296. default: true
  26297. },
  26298. {
  26299. name: "Big",
  26300. height: math.unit(20, "feet")
  26301. },
  26302. ]
  26303. ))
  26304. characterMakers.push(() => makeCharacter(
  26305. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26306. {
  26307. front: {
  26308. height: math.unit(5 + 1 / 12, "feet"),
  26309. weight: math.unit(110, "lb"),
  26310. name: "Front",
  26311. image: {
  26312. source: "./media/characters/rupert/front.svg",
  26313. extra: 1549 / 1495,
  26314. bottom: 54.2 / 1604.4
  26315. }
  26316. },
  26317. },
  26318. [
  26319. {
  26320. name: "Normal",
  26321. height: math.unit(5 + 1 / 12, "feet"),
  26322. default: true
  26323. },
  26324. ]
  26325. ))
  26326. characterMakers.push(() => makeCharacter(
  26327. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26328. {
  26329. front: {
  26330. height: math.unit(8 + 4 / 12, "feet"),
  26331. weight: math.unit(350, "lb"),
  26332. name: "Front",
  26333. image: {
  26334. source: "./media/characters/sheera-castellar/front.svg",
  26335. extra: 1957 / 1894,
  26336. bottom: 26.97 / 1975.017
  26337. }
  26338. },
  26339. side: {
  26340. height: math.unit(8 + 4 / 12, "feet"),
  26341. weight: math.unit(350, "lb"),
  26342. name: "Side",
  26343. image: {
  26344. source: "./media/characters/sheera-castellar/side.svg",
  26345. extra: 1957 / 1894
  26346. }
  26347. },
  26348. back: {
  26349. height: math.unit(8 + 4 / 12, "feet"),
  26350. weight: math.unit(350, "lb"),
  26351. name: "Back",
  26352. image: {
  26353. source: "./media/characters/sheera-castellar/back.svg",
  26354. extra: 1957 / 1894
  26355. }
  26356. },
  26357. angled: {
  26358. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26359. weight: math.unit(350, "lb"),
  26360. name: "Angled",
  26361. image: {
  26362. source: "./media/characters/sheera-castellar/angled.svg",
  26363. extra: 1807 / 1707,
  26364. bottom: 68 / 1875
  26365. }
  26366. },
  26367. genitals: {
  26368. height: math.unit(2.2, "feet"),
  26369. name: "Genitals",
  26370. image: {
  26371. source: "./media/characters/sheera-castellar/genitals.svg"
  26372. }
  26373. },
  26374. taur: {
  26375. height: math.unit(10 + 6/12, "feet"),
  26376. name: "Taur",
  26377. image: {
  26378. source: "./media/characters/sheera-castellar/taur.svg",
  26379. extra: 2017/1909,
  26380. bottom: 185/2202
  26381. }
  26382. },
  26383. },
  26384. [
  26385. {
  26386. name: "Normal",
  26387. height: math.unit(8 + 4 / 12, "feet")
  26388. },
  26389. {
  26390. name: "Macro",
  26391. height: math.unit(150, "feet"),
  26392. default: true
  26393. },
  26394. {
  26395. name: "Macro+",
  26396. height: math.unit(800, "feet")
  26397. },
  26398. ]
  26399. ))
  26400. characterMakers.push(() => makeCharacter(
  26401. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26402. {
  26403. front: {
  26404. height: math.unit(6, "feet"),
  26405. weight: math.unit(150, "lb"),
  26406. name: "Front",
  26407. image: {
  26408. source: "./media/characters/jaipur/front.svg",
  26409. extra: 3860 / 3731,
  26410. bottom: 287 / 4140
  26411. }
  26412. },
  26413. back: {
  26414. height: math.unit(6, "feet"),
  26415. weight: math.unit(150, "lb"),
  26416. name: "Back",
  26417. image: {
  26418. source: "./media/characters/jaipur/back.svg",
  26419. extra: 1637/1561,
  26420. bottom: 154/1791
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Normal",
  26427. height: math.unit(1.85, "meters"),
  26428. default: true
  26429. },
  26430. {
  26431. name: "Macro",
  26432. height: math.unit(150, "meters")
  26433. },
  26434. {
  26435. name: "Macro+",
  26436. height: math.unit(0.5, "miles")
  26437. },
  26438. {
  26439. name: "Macro++",
  26440. height: math.unit(2.5, "miles")
  26441. },
  26442. {
  26443. name: "Macro+++",
  26444. height: math.unit(12, "miles")
  26445. },
  26446. {
  26447. name: "Macro++++",
  26448. height: math.unit(120, "miles")
  26449. },
  26450. {
  26451. name: "Macro+++++",
  26452. height: math.unit(1200, "miles")
  26453. },
  26454. ]
  26455. ))
  26456. characterMakers.push(() => makeCharacter(
  26457. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26458. {
  26459. front: {
  26460. height: math.unit(6, "feet"),
  26461. weight: math.unit(150, "lb"),
  26462. name: "Front",
  26463. image: {
  26464. source: "./media/characters/sheila-wolf/front.svg",
  26465. extra: 1931 / 1808,
  26466. bottom: 29.5 / 1960
  26467. }
  26468. },
  26469. dick: {
  26470. height: math.unit(1.464, "feet"),
  26471. name: "Dick",
  26472. image: {
  26473. source: "./media/characters/sheila-wolf/dick.svg"
  26474. }
  26475. },
  26476. muzzle: {
  26477. height: math.unit(0.513, "feet"),
  26478. name: "Muzzle",
  26479. image: {
  26480. source: "./media/characters/sheila-wolf/muzzle.svg"
  26481. }
  26482. },
  26483. },
  26484. [
  26485. {
  26486. name: "Macro",
  26487. height: math.unit(70, "feet"),
  26488. default: true
  26489. },
  26490. ]
  26491. ))
  26492. characterMakers.push(() => makeCharacter(
  26493. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26494. {
  26495. front: {
  26496. height: math.unit(32, "meters"),
  26497. weight: math.unit(300000, "kg"),
  26498. name: "Front",
  26499. image: {
  26500. source: "./media/characters/almor/front.svg",
  26501. extra: 1408 / 1322,
  26502. bottom: 94.6 / 1506.5
  26503. }
  26504. },
  26505. },
  26506. [
  26507. {
  26508. name: "Macro",
  26509. height: math.unit(32, "meters"),
  26510. default: true
  26511. },
  26512. ]
  26513. ))
  26514. characterMakers.push(() => makeCharacter(
  26515. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26516. {
  26517. front: {
  26518. height: math.unit(7, "feet"),
  26519. weight: math.unit(200, "lb"),
  26520. name: "Front",
  26521. image: {
  26522. source: "./media/characters/silver/front.svg",
  26523. extra: 472.1 / 450.5,
  26524. bottom: 26.5 / 499.424
  26525. }
  26526. },
  26527. },
  26528. [
  26529. {
  26530. name: "Normal",
  26531. height: math.unit(7, "feet"),
  26532. default: true
  26533. },
  26534. {
  26535. name: "Macro",
  26536. height: math.unit(800, "feet")
  26537. },
  26538. {
  26539. name: "Megamacro",
  26540. height: math.unit(250, "miles")
  26541. },
  26542. ]
  26543. ))
  26544. characterMakers.push(() => makeCharacter(
  26545. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26546. {
  26547. front: {
  26548. height: math.unit(6, "feet"),
  26549. weight: math.unit(150, "lb"),
  26550. name: "Front",
  26551. image: {
  26552. source: "./media/characters/pliskin/front.svg",
  26553. extra: 1469 / 1359,
  26554. bottom: 70 / 1540
  26555. }
  26556. },
  26557. },
  26558. [
  26559. {
  26560. name: "Micro",
  26561. height: math.unit(3, "inches")
  26562. },
  26563. {
  26564. name: "Normal",
  26565. height: math.unit(5 + 11 / 12, "feet"),
  26566. default: true
  26567. },
  26568. {
  26569. name: "Macro",
  26570. height: math.unit(120, "feet")
  26571. },
  26572. ]
  26573. ))
  26574. characterMakers.push(() => makeCharacter(
  26575. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26576. {
  26577. front: {
  26578. height: math.unit(6, "feet"),
  26579. weight: math.unit(150, "lb"),
  26580. name: "Front",
  26581. image: {
  26582. source: "./media/characters/sammy/front.svg",
  26583. extra: 1193 / 1089,
  26584. bottom: 30.5 / 1226
  26585. }
  26586. },
  26587. },
  26588. [
  26589. {
  26590. name: "Macro",
  26591. height: math.unit(1700, "feet"),
  26592. default: true
  26593. },
  26594. {
  26595. name: "Examacro",
  26596. height: math.unit(2.5e9, "lightyears")
  26597. },
  26598. ]
  26599. ))
  26600. characterMakers.push(() => makeCharacter(
  26601. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26602. {
  26603. front: {
  26604. height: math.unit(21, "meters"),
  26605. weight: math.unit(12, "tonnes"),
  26606. name: "Front",
  26607. image: {
  26608. source: "./media/characters/kuru/front.svg",
  26609. extra: 4301 / 3785,
  26610. bottom: 371.3 / 4691
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Macro",
  26617. height: math.unit(21, "meters"),
  26618. default: true
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26624. {
  26625. front: {
  26626. height: math.unit(23, "meters"),
  26627. weight: math.unit(12.2, "tonnes"),
  26628. name: "Front",
  26629. image: {
  26630. source: "./media/characters/rakka/front.svg",
  26631. extra: 4670 / 4169,
  26632. bottom: 301 / 4968.7
  26633. }
  26634. },
  26635. },
  26636. [
  26637. {
  26638. name: "Macro",
  26639. height: math.unit(23, "meters"),
  26640. default: true
  26641. },
  26642. ]
  26643. ))
  26644. characterMakers.push(() => makeCharacter(
  26645. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26646. {
  26647. front: {
  26648. height: math.unit(6, "feet"),
  26649. weight: math.unit(150, "lb"),
  26650. name: "Front",
  26651. image: {
  26652. source: "./media/characters/rhys-feline/front.svg",
  26653. extra: 2488 / 2308,
  26654. bottom: 35.67 / 2519.19
  26655. }
  26656. },
  26657. },
  26658. [
  26659. {
  26660. name: "Really Small",
  26661. height: math.unit(1, "nm")
  26662. },
  26663. {
  26664. name: "Micro",
  26665. height: math.unit(4, "inches")
  26666. },
  26667. {
  26668. name: "Normal",
  26669. height: math.unit(4 + 10 / 12, "feet"),
  26670. default: true
  26671. },
  26672. {
  26673. name: "Macro",
  26674. height: math.unit(100, "feet")
  26675. },
  26676. {
  26677. name: "Megamacto",
  26678. height: math.unit(50, "miles")
  26679. },
  26680. ]
  26681. ))
  26682. characterMakers.push(() => makeCharacter(
  26683. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26684. {
  26685. side: {
  26686. height: math.unit(30, "feet"),
  26687. weight: math.unit(35000, "kg"),
  26688. name: "Side",
  26689. image: {
  26690. source: "./media/characters/alydar/side.svg",
  26691. extra: 234 / 222,
  26692. bottom: 6.5 / 241
  26693. }
  26694. },
  26695. front: {
  26696. height: math.unit(30, "feet"),
  26697. weight: math.unit(35000, "kg"),
  26698. name: "Front",
  26699. image: {
  26700. source: "./media/characters/alydar/front.svg",
  26701. extra: 223.37 / 210.2,
  26702. bottom: 22.3 / 246.76
  26703. }
  26704. },
  26705. top: {
  26706. height: math.unit(64.54, "feet"),
  26707. weight: math.unit(35000, "kg"),
  26708. name: "Top",
  26709. image: {
  26710. source: "./media/characters/alydar/top.svg"
  26711. }
  26712. },
  26713. anthro: {
  26714. height: math.unit(30, "feet"),
  26715. weight: math.unit(9000, "kg"),
  26716. name: "Anthro",
  26717. image: {
  26718. source: "./media/characters/alydar/anthro.svg",
  26719. extra: 432 / 421,
  26720. bottom: 7.18 / 440
  26721. }
  26722. },
  26723. maw: {
  26724. height: math.unit(11.693, "feet"),
  26725. name: "Maw",
  26726. image: {
  26727. source: "./media/characters/alydar/maw.svg"
  26728. }
  26729. },
  26730. head: {
  26731. height: math.unit(11.693, "feet"),
  26732. name: "Head",
  26733. image: {
  26734. source: "./media/characters/alydar/head.svg"
  26735. }
  26736. },
  26737. headAlt: {
  26738. height: math.unit(12.861, "feet"),
  26739. name: "Head (Alt)",
  26740. image: {
  26741. source: "./media/characters/alydar/head-alt.svg"
  26742. }
  26743. },
  26744. wing: {
  26745. height: math.unit(20.712, "feet"),
  26746. name: "Wing",
  26747. image: {
  26748. source: "./media/characters/alydar/wing.svg"
  26749. }
  26750. },
  26751. wingFeather: {
  26752. height: math.unit(9.662, "feet"),
  26753. name: "Wing Feather",
  26754. image: {
  26755. source: "./media/characters/alydar/wing-feather.svg"
  26756. }
  26757. },
  26758. countourFeather: {
  26759. height: math.unit(4.154, "feet"),
  26760. name: "Contour Feather",
  26761. image: {
  26762. source: "./media/characters/alydar/contour-feather.svg"
  26763. }
  26764. },
  26765. },
  26766. [
  26767. {
  26768. name: "Diplomatic",
  26769. height: math.unit(13, "feet"),
  26770. default: true
  26771. },
  26772. {
  26773. name: "Small",
  26774. height: math.unit(30, "feet")
  26775. },
  26776. {
  26777. name: "Normal",
  26778. height: math.unit(95, "feet"),
  26779. default: true
  26780. },
  26781. {
  26782. name: "Large",
  26783. height: math.unit(285, "feet")
  26784. },
  26785. {
  26786. name: "Incomprehensible",
  26787. height: math.unit(450, "megameters")
  26788. },
  26789. ]
  26790. ))
  26791. characterMakers.push(() => makeCharacter(
  26792. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26793. {
  26794. side: {
  26795. height: math.unit(11, "feet"),
  26796. weight: math.unit(1750, "kg"),
  26797. name: "Side",
  26798. image: {
  26799. source: "./media/characters/selicia/side.svg",
  26800. extra: 440 / 396,
  26801. bottom: 24.8 / 465.979
  26802. }
  26803. },
  26804. maw: {
  26805. height: math.unit(4.665, "feet"),
  26806. name: "Maw",
  26807. image: {
  26808. source: "./media/characters/selicia/maw.svg"
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Normal",
  26815. height: math.unit(11, "feet"),
  26816. default: true
  26817. },
  26818. ]
  26819. ))
  26820. characterMakers.push(() => makeCharacter(
  26821. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26822. {
  26823. side: {
  26824. height: math.unit(2 + 6 / 12, "feet"),
  26825. weight: math.unit(30, "lb"),
  26826. name: "Side",
  26827. image: {
  26828. source: "./media/characters/layla/side.svg",
  26829. extra: 244 / 188,
  26830. bottom: 18.2 / 262.1
  26831. }
  26832. },
  26833. back: {
  26834. height: math.unit(2 + 6 / 12, "feet"),
  26835. weight: math.unit(30, "lb"),
  26836. name: "Back",
  26837. image: {
  26838. source: "./media/characters/layla/back.svg",
  26839. extra: 308 / 241.5,
  26840. bottom: 8.9 / 316.8
  26841. }
  26842. },
  26843. cumming: {
  26844. height: math.unit(2 + 6 / 12, "feet"),
  26845. weight: math.unit(30, "lb"),
  26846. name: "Cumming",
  26847. image: {
  26848. source: "./media/characters/layla/cumming.svg",
  26849. extra: 342 / 279,
  26850. bottom: 595 / 938
  26851. }
  26852. },
  26853. dickFlaccid: {
  26854. height: math.unit(2.595, "feet"),
  26855. name: "Flaccid Genitals",
  26856. image: {
  26857. source: "./media/characters/layla/dick-flaccid.svg"
  26858. }
  26859. },
  26860. dickErect: {
  26861. height: math.unit(2.359, "feet"),
  26862. name: "Erect Genitals",
  26863. image: {
  26864. source: "./media/characters/layla/dick-erect.svg"
  26865. }
  26866. },
  26867. dragon: {
  26868. height: math.unit(40, "feet"),
  26869. name: "Dragon",
  26870. image: {
  26871. source: "./media/characters/layla/dragon.svg",
  26872. extra: 610/535,
  26873. bottom: 367/977
  26874. }
  26875. },
  26876. taur: {
  26877. height: math.unit(30, "feet"),
  26878. name: "Taur",
  26879. image: {
  26880. source: "./media/characters/layla/taur.svg",
  26881. extra: 1268/1199,
  26882. bottom: 112/1380
  26883. }
  26884. },
  26885. },
  26886. [
  26887. {
  26888. name: "Micro",
  26889. height: math.unit(1, "inch")
  26890. },
  26891. {
  26892. name: "Small",
  26893. height: math.unit(1, "foot")
  26894. },
  26895. {
  26896. name: "Normal",
  26897. height: math.unit(2 + 6 / 12, "feet"),
  26898. default: true
  26899. },
  26900. {
  26901. name: "Macro",
  26902. height: math.unit(200, "feet")
  26903. },
  26904. {
  26905. name: "Megamacro",
  26906. height: math.unit(1000, "miles")
  26907. },
  26908. {
  26909. name: "Planetary",
  26910. height: math.unit(8000, "miles")
  26911. },
  26912. {
  26913. name: "True Layla",
  26914. height: math.unit(200000 * 7, "multiverses")
  26915. },
  26916. ]
  26917. ))
  26918. characterMakers.push(() => makeCharacter(
  26919. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26920. {
  26921. back: {
  26922. height: math.unit(10.5, "feet"),
  26923. weight: math.unit(800, "lb"),
  26924. name: "Back",
  26925. image: {
  26926. source: "./media/characters/knox/back.svg",
  26927. extra: 1486 / 1089,
  26928. bottom: 107 / 1601.4
  26929. }
  26930. },
  26931. side: {
  26932. height: math.unit(10.5, "feet"),
  26933. weight: math.unit(800, "lb"),
  26934. name: "Side",
  26935. image: {
  26936. source: "./media/characters/knox/side.svg",
  26937. extra: 244 / 218,
  26938. bottom: 14 / 260
  26939. }
  26940. },
  26941. },
  26942. [
  26943. {
  26944. name: "Compact",
  26945. height: math.unit(10.5, "feet"),
  26946. default: true
  26947. },
  26948. {
  26949. name: "Dynamax",
  26950. height: math.unit(210, "feet")
  26951. },
  26952. {
  26953. name: "Full Macro",
  26954. height: math.unit(850, "feet")
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(28, "feet"),
  26963. weight: math.unit(10500, "lb"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/kayda/front.svg",
  26967. extra: 1536 / 1428,
  26968. bottom: 68.7 / 1603
  26969. }
  26970. },
  26971. back: {
  26972. height: math.unit(28, "feet"),
  26973. weight: math.unit(10500, "lb"),
  26974. name: "Back",
  26975. image: {
  26976. source: "./media/characters/kayda/back.svg",
  26977. extra: 1557 / 1464,
  26978. bottom: 39.5 / 1597.49
  26979. }
  26980. },
  26981. dick: {
  26982. height: math.unit(3.858, "feet"),
  26983. name: "Dick",
  26984. image: {
  26985. source: "./media/characters/kayda/dick.svg"
  26986. }
  26987. },
  26988. },
  26989. [
  26990. {
  26991. name: "Macro",
  26992. height: math.unit(28, "feet"),
  26993. default: true
  26994. },
  26995. ]
  26996. ))
  26997. characterMakers.push(() => makeCharacter(
  26998. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26999. {
  27000. front: {
  27001. height: math.unit(10 + 11 / 12, "feet"),
  27002. weight: math.unit(1400, "lb"),
  27003. name: "Front",
  27004. image: {
  27005. source: "./media/characters/brian/front.svg",
  27006. extra: 737 / 692,
  27007. bottom: 55.4 / 785
  27008. }
  27009. },
  27010. },
  27011. [
  27012. {
  27013. name: "Normal",
  27014. height: math.unit(10 + 11 / 12, "feet"),
  27015. default: true
  27016. },
  27017. ]
  27018. ))
  27019. characterMakers.push(() => makeCharacter(
  27020. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  27021. {
  27022. front: {
  27023. height: math.unit(5 + 8 / 12, "feet"),
  27024. weight: math.unit(140, "lb"),
  27025. name: "Front",
  27026. image: {
  27027. source: "./media/characters/khemri/front.svg",
  27028. extra: 4780 / 4059,
  27029. bottom: 80.1 / 4859.25
  27030. }
  27031. },
  27032. },
  27033. [
  27034. {
  27035. name: "Micro",
  27036. height: math.unit(6, "inches")
  27037. },
  27038. {
  27039. name: "Normal",
  27040. height: math.unit(5 + 8 / 12, "feet"),
  27041. default: true
  27042. },
  27043. ]
  27044. ))
  27045. characterMakers.push(() => makeCharacter(
  27046. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  27047. {
  27048. front: {
  27049. height: math.unit(13, "feet"),
  27050. weight: math.unit(1700, "lb"),
  27051. name: "Front",
  27052. image: {
  27053. source: "./media/characters/felix-braveheart/front.svg",
  27054. extra: 1222 / 1157,
  27055. bottom: 53.2 / 1280
  27056. }
  27057. },
  27058. back: {
  27059. height: math.unit(13, "feet"),
  27060. weight: math.unit(1700, "lb"),
  27061. name: "Back",
  27062. image: {
  27063. source: "./media/characters/felix-braveheart/back.svg",
  27064. extra: 1277 / 1203,
  27065. bottom: 50.2 / 1327
  27066. }
  27067. },
  27068. feral: {
  27069. height: math.unit(6, "feet"),
  27070. weight: math.unit(400, "lb"),
  27071. name: "Feral",
  27072. image: {
  27073. source: "./media/characters/felix-braveheart/feral.svg",
  27074. extra: 682 / 625,
  27075. bottom: 6.9 / 688
  27076. }
  27077. },
  27078. },
  27079. [
  27080. {
  27081. name: "Normal",
  27082. height: math.unit(13, "feet"),
  27083. default: true
  27084. },
  27085. ]
  27086. ))
  27087. characterMakers.push(() => makeCharacter(
  27088. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  27089. {
  27090. side: {
  27091. height: math.unit(5 + 11 / 12, "feet"),
  27092. weight: math.unit(1400, "lb"),
  27093. name: "Side",
  27094. image: {
  27095. source: "./media/characters/shadow-blade/side.svg",
  27096. extra: 1726 / 1267,
  27097. bottom: 58.4 / 1785
  27098. }
  27099. },
  27100. },
  27101. [
  27102. {
  27103. name: "Normal",
  27104. height: math.unit(5 + 11 / 12, "feet"),
  27105. default: true
  27106. },
  27107. ]
  27108. ))
  27109. characterMakers.push(() => makeCharacter(
  27110. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  27111. {
  27112. front: {
  27113. height: math.unit(1 + 6 / 12, "feet"),
  27114. weight: math.unit(25, "lb"),
  27115. name: "Front",
  27116. image: {
  27117. source: "./media/characters/karla-halldor/front.svg",
  27118. extra: 1459 / 1383,
  27119. bottom: 12 / 1472
  27120. }
  27121. },
  27122. },
  27123. [
  27124. {
  27125. name: "Normal",
  27126. height: math.unit(1 + 6 / 12, "feet"),
  27127. default: true
  27128. },
  27129. ]
  27130. ))
  27131. characterMakers.push(() => makeCharacter(
  27132. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  27133. {
  27134. front: {
  27135. height: math.unit(6 + 2 / 12, "feet"),
  27136. weight: math.unit(160, "lb"),
  27137. name: "Front",
  27138. image: {
  27139. source: "./media/characters/ariam/front.svg",
  27140. extra: 1073/976,
  27141. bottom: 52/1125
  27142. }
  27143. },
  27144. back: {
  27145. height: math.unit(6 + 2/12, "feet"),
  27146. weight: math.unit(160, "lb"),
  27147. name: "Back",
  27148. image: {
  27149. source: "./media/characters/ariam/back.svg",
  27150. extra: 1103/1023,
  27151. bottom: 9/1112
  27152. }
  27153. },
  27154. dressed: {
  27155. height: math.unit(6 + 2/12, "feet"),
  27156. weight: math.unit(160, "lb"),
  27157. name: "Dressed",
  27158. image: {
  27159. source: "./media/characters/ariam/dressed.svg",
  27160. extra: 1099/1009,
  27161. bottom: 25/1124
  27162. }
  27163. },
  27164. squatting: {
  27165. height: math.unit(4.1, "feet"),
  27166. weight: math.unit(160, "lb"),
  27167. name: "Squatting",
  27168. image: {
  27169. source: "./media/characters/ariam/squatting.svg",
  27170. extra: 2617 / 2112,
  27171. bottom: 61.2 / 2681,
  27172. }
  27173. },
  27174. },
  27175. [
  27176. {
  27177. name: "Normal",
  27178. height: math.unit(6 + 2 / 12, "feet"),
  27179. default: true
  27180. },
  27181. {
  27182. name: "Normal+",
  27183. height: math.unit(4, "meters")
  27184. },
  27185. {
  27186. name: "Macro",
  27187. height: math.unit(50, "meters")
  27188. },
  27189. {
  27190. name: "Macro+",
  27191. height: math.unit(100, "meters")
  27192. },
  27193. {
  27194. name: "Megamacro",
  27195. height: math.unit(20, "km")
  27196. },
  27197. {
  27198. name: "Caretaker",
  27199. height: math.unit(444, "megameters")
  27200. },
  27201. ]
  27202. ))
  27203. characterMakers.push(() => makeCharacter(
  27204. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27205. {
  27206. front: {
  27207. height: math.unit(1.67, "meters"),
  27208. weight: math.unit(140, "lb"),
  27209. name: "Front",
  27210. image: {
  27211. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27212. extra: 438 / 410,
  27213. bottom: 0.75 / 439
  27214. }
  27215. },
  27216. },
  27217. [
  27218. {
  27219. name: "Shrunken",
  27220. height: math.unit(7.6, "cm")
  27221. },
  27222. {
  27223. name: "Human Scale",
  27224. height: math.unit(1.67, "meters")
  27225. },
  27226. {
  27227. name: "Wolxi Scale",
  27228. height: math.unit(36.7, "meters"),
  27229. default: true
  27230. },
  27231. ]
  27232. ))
  27233. characterMakers.push(() => makeCharacter(
  27234. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27235. {
  27236. front: {
  27237. height: math.unit(1.73, "meters"),
  27238. weight: math.unit(240, "lb"),
  27239. name: "Front",
  27240. image: {
  27241. source: "./media/characters/izue-two-mothers/front.svg",
  27242. extra: 469 / 437,
  27243. bottom: 1.24 / 470.6
  27244. }
  27245. },
  27246. },
  27247. [
  27248. {
  27249. name: "Shrunken",
  27250. height: math.unit(7.86, "cm")
  27251. },
  27252. {
  27253. name: "Human Scale",
  27254. height: math.unit(1.73, "meters")
  27255. },
  27256. {
  27257. name: "Wolxi Scale",
  27258. height: math.unit(38, "meters"),
  27259. default: true
  27260. },
  27261. ]
  27262. ))
  27263. characterMakers.push(() => makeCharacter(
  27264. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27265. {
  27266. front: {
  27267. height: math.unit(1.55, "meters"),
  27268. weight: math.unit(120, "lb"),
  27269. name: "Front",
  27270. image: {
  27271. source: "./media/characters/teeku-love-shack/front.svg",
  27272. extra: 387 / 362,
  27273. bottom: 1.51 / 388
  27274. }
  27275. },
  27276. },
  27277. [
  27278. {
  27279. name: "Shrunken",
  27280. height: math.unit(7, "cm")
  27281. },
  27282. {
  27283. name: "Human Scale",
  27284. height: math.unit(1.55, "meters")
  27285. },
  27286. {
  27287. name: "Wolxi Scale",
  27288. height: math.unit(34.1, "meters"),
  27289. default: true
  27290. },
  27291. ]
  27292. ))
  27293. characterMakers.push(() => makeCharacter(
  27294. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27295. {
  27296. front: {
  27297. height: math.unit(1.83, "meters"),
  27298. weight: math.unit(135, "lb"),
  27299. name: "Front",
  27300. image: {
  27301. source: "./media/characters/dejma-the-red/front.svg",
  27302. extra: 480 / 458,
  27303. bottom: 1.8 / 482
  27304. }
  27305. },
  27306. },
  27307. [
  27308. {
  27309. name: "Shrunken",
  27310. height: math.unit(8.3, "cm")
  27311. },
  27312. {
  27313. name: "Human Scale",
  27314. height: math.unit(1.83, "meters")
  27315. },
  27316. {
  27317. name: "Wolxi Scale",
  27318. height: math.unit(40, "meters"),
  27319. default: true
  27320. },
  27321. ]
  27322. ))
  27323. characterMakers.push(() => makeCharacter(
  27324. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27325. {
  27326. front: {
  27327. height: math.unit(1.78, "meters"),
  27328. weight: math.unit(65, "kg"),
  27329. name: "Front",
  27330. image: {
  27331. source: "./media/characters/aki/front.svg",
  27332. extra: 452 / 415
  27333. }
  27334. },
  27335. frontNsfw: {
  27336. height: math.unit(1.78, "meters"),
  27337. weight: math.unit(65, "kg"),
  27338. name: "Front (NSFW)",
  27339. image: {
  27340. source: "./media/characters/aki/front-nsfw.svg",
  27341. extra: 452 / 415
  27342. }
  27343. },
  27344. back: {
  27345. height: math.unit(1.78, "meters"),
  27346. weight: math.unit(65, "kg"),
  27347. name: "Back",
  27348. image: {
  27349. source: "./media/characters/aki/back.svg",
  27350. extra: 452 / 415
  27351. }
  27352. },
  27353. rump: {
  27354. height: math.unit(2.05, "feet"),
  27355. name: "Rump",
  27356. image: {
  27357. source: "./media/characters/aki/rump.svg"
  27358. }
  27359. },
  27360. dick: {
  27361. height: math.unit(0.95, "feet"),
  27362. name: "Dick",
  27363. image: {
  27364. source: "./media/characters/aki/dick.svg"
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Micro",
  27371. height: math.unit(15, "cm")
  27372. },
  27373. {
  27374. name: "Normal",
  27375. height: math.unit(178, "cm"),
  27376. default: true
  27377. },
  27378. {
  27379. name: "Macro",
  27380. height: math.unit(214, "m")
  27381. },
  27382. {
  27383. name: "Macro+",
  27384. height: math.unit(534, "m")
  27385. },
  27386. ]
  27387. ))
  27388. characterMakers.push(() => makeCharacter(
  27389. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27390. {
  27391. front: {
  27392. height: math.unit(5 + 5 / 12, "feet"),
  27393. weight: math.unit(120, "lb"),
  27394. name: "Front",
  27395. image: {
  27396. source: "./media/characters/ari/front.svg",
  27397. extra: 1550/1471,
  27398. bottom: 39/1589
  27399. }
  27400. },
  27401. },
  27402. [
  27403. {
  27404. name: "Normal",
  27405. height: math.unit(5 + 5 / 12, "feet")
  27406. },
  27407. {
  27408. name: "Macro",
  27409. height: math.unit(100, "feet"),
  27410. default: true
  27411. },
  27412. {
  27413. name: "Megamacro",
  27414. height: math.unit(100, "miles")
  27415. },
  27416. {
  27417. name: "Gigamacro",
  27418. height: math.unit(80000, "miles")
  27419. },
  27420. ]
  27421. ))
  27422. characterMakers.push(() => makeCharacter(
  27423. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27424. {
  27425. side: {
  27426. height: math.unit(9, "feet"),
  27427. weight: math.unit(400, "kg"),
  27428. name: "Side",
  27429. image: {
  27430. source: "./media/characters/bolt/side.svg",
  27431. extra: 1126 / 896,
  27432. bottom: 60 / 1187.3,
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Micro",
  27439. height: math.unit(5, "inches")
  27440. },
  27441. {
  27442. name: "Normal",
  27443. height: math.unit(9, "feet"),
  27444. default: true
  27445. },
  27446. {
  27447. name: "Macro",
  27448. height: math.unit(700, "feet")
  27449. },
  27450. {
  27451. name: "Max Size",
  27452. height: math.unit(1.52e22, "yottameters")
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27458. {
  27459. front: {
  27460. height: math.unit(4.3, "meters"),
  27461. weight: math.unit(3, "tons"),
  27462. name: "Front",
  27463. image: {
  27464. source: "./media/characters/draekon-sylviar/front.svg",
  27465. extra: 2072/1512,
  27466. bottom: 74/2146
  27467. }
  27468. },
  27469. back: {
  27470. height: math.unit(4.3, "meters"),
  27471. weight: math.unit(3, "tons"),
  27472. name: "Back",
  27473. image: {
  27474. source: "./media/characters/draekon-sylviar/back.svg",
  27475. extra: 1639/1483,
  27476. bottom: 41/1680
  27477. }
  27478. },
  27479. feral: {
  27480. height: math.unit(1.15, "meters"),
  27481. weight: math.unit(3, "tons"),
  27482. name: "Feral",
  27483. image: {
  27484. source: "./media/characters/draekon-sylviar/feral.svg",
  27485. extra: 1033/395,
  27486. bottom: 130/1163
  27487. }
  27488. },
  27489. maw: {
  27490. height: math.unit(1.3, "meters"),
  27491. name: "Maw",
  27492. image: {
  27493. source: "./media/characters/draekon-sylviar/maw.svg"
  27494. }
  27495. },
  27496. mawSeparated: {
  27497. height: math.unit(1.53, "meters"),
  27498. name: "Separated Maw",
  27499. image: {
  27500. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27501. }
  27502. },
  27503. tail: {
  27504. height: math.unit(1.15, "meters"),
  27505. name: "Tail",
  27506. image: {
  27507. source: "./media/characters/draekon-sylviar/tail.svg"
  27508. }
  27509. },
  27510. tailDick: {
  27511. height: math.unit(1.15, "meters"),
  27512. name: "Tail (Dick)",
  27513. image: {
  27514. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27515. }
  27516. },
  27517. tailDickSeparated: {
  27518. height: math.unit(1.19, "meters"),
  27519. name: "Tail (Separated Dick)",
  27520. image: {
  27521. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27522. }
  27523. },
  27524. slit: {
  27525. height: math.unit(1, "meters"),
  27526. name: "Slit",
  27527. image: {
  27528. source: "./media/characters/draekon-sylviar/slit.svg"
  27529. }
  27530. },
  27531. dick: {
  27532. height: math.unit(1.15, "meters"),
  27533. name: "Dick",
  27534. image: {
  27535. source: "./media/characters/draekon-sylviar/dick.svg"
  27536. }
  27537. },
  27538. dickSeparated: {
  27539. height: math.unit(1.1, "meters"),
  27540. name: "Separated Dick",
  27541. image: {
  27542. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27543. }
  27544. },
  27545. sheath: {
  27546. height: math.unit(1.15, "meters"),
  27547. name: "Sheath",
  27548. image: {
  27549. source: "./media/characters/draekon-sylviar/sheath.svg"
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Small",
  27556. height: math.unit(4.53 / 2, "meters"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Normal",
  27561. height: math.unit(4.53, "meters"),
  27562. default: true
  27563. },
  27564. {
  27565. name: "Large",
  27566. height: math.unit(4.53 * 2, "meters"),
  27567. },
  27568. ]
  27569. ))
  27570. characterMakers.push(() => makeCharacter(
  27571. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27572. {
  27573. front: {
  27574. height: math.unit(6 + 2 / 12, "feet"),
  27575. weight: math.unit(180, "lb"),
  27576. name: "Front",
  27577. image: {
  27578. source: "./media/characters/brawler/front.svg",
  27579. extra: 3301 / 3027,
  27580. bottom: 138 / 3439
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Normal",
  27587. height: math.unit(6 + 2 / 12, "feet"),
  27588. default: true
  27589. },
  27590. ]
  27591. ))
  27592. characterMakers.push(() => makeCharacter(
  27593. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27594. {
  27595. front: {
  27596. height: math.unit(11, "feet"),
  27597. weight: math.unit(1000, "lb"),
  27598. name: "Front",
  27599. image: {
  27600. source: "./media/characters/alex/front.svg",
  27601. bottom: 44.5 / 620
  27602. }
  27603. },
  27604. },
  27605. [
  27606. {
  27607. name: "Micro",
  27608. height: math.unit(5, "inches")
  27609. },
  27610. {
  27611. name: "Normal",
  27612. height: math.unit(11, "feet"),
  27613. default: true
  27614. },
  27615. {
  27616. name: "Macro",
  27617. height: math.unit(9.5e9, "feet")
  27618. },
  27619. {
  27620. name: "Max Size",
  27621. height: math.unit(1.4e283, "yottameters")
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27627. {
  27628. female: {
  27629. height: math.unit(29.9, "m"),
  27630. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27631. name: "Female",
  27632. image: {
  27633. source: "./media/characters/zenari/female.svg",
  27634. extra: 3281.6 / 3217,
  27635. bottom: 72.2 / 3353
  27636. }
  27637. },
  27638. male: {
  27639. height: math.unit(27.7, "m"),
  27640. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27641. name: "Male",
  27642. image: {
  27643. source: "./media/characters/zenari/male.svg",
  27644. extra: 3008 / 2991,
  27645. bottom: 54.6 / 3069
  27646. }
  27647. },
  27648. },
  27649. [
  27650. {
  27651. name: "Macro",
  27652. height: math.unit(29.7, "meters"),
  27653. default: true
  27654. },
  27655. ]
  27656. ))
  27657. characterMakers.push(() => makeCharacter(
  27658. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27659. {
  27660. female: {
  27661. height: math.unit(23.8, "m"),
  27662. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27663. name: "Female",
  27664. image: {
  27665. source: "./media/characters/mactarian/female.svg",
  27666. extra: 2662 / 2569,
  27667. bottom: 73 / 2736
  27668. }
  27669. },
  27670. male: {
  27671. height: math.unit(23.8, "m"),
  27672. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27673. name: "Male",
  27674. image: {
  27675. source: "./media/characters/mactarian/male.svg",
  27676. extra: 2673 / 2600,
  27677. bottom: 76 / 2750
  27678. }
  27679. },
  27680. },
  27681. [
  27682. {
  27683. name: "Macro",
  27684. height: math.unit(23.8, "meters"),
  27685. default: true
  27686. },
  27687. ]
  27688. ))
  27689. characterMakers.push(() => makeCharacter(
  27690. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27691. {
  27692. female: {
  27693. height: math.unit(19.3, "m"),
  27694. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27695. name: "Female",
  27696. image: {
  27697. source: "./media/characters/umok/female.svg",
  27698. extra: 2186 / 2078,
  27699. bottom: 87 / 2277
  27700. }
  27701. },
  27702. male: {
  27703. height: math.unit(19.5, "m"),
  27704. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27705. name: "Male",
  27706. image: {
  27707. source: "./media/characters/umok/male.svg",
  27708. extra: 2233 / 2140,
  27709. bottom: 24.4 / 2258
  27710. }
  27711. },
  27712. },
  27713. [
  27714. {
  27715. name: "Macro",
  27716. height: math.unit(19.3, "meters"),
  27717. default: true
  27718. },
  27719. ]
  27720. ))
  27721. characterMakers.push(() => makeCharacter(
  27722. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27723. {
  27724. female: {
  27725. height: math.unit(26.15, "m"),
  27726. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27727. name: "Female",
  27728. image: {
  27729. source: "./media/characters/joraxian/female.svg",
  27730. extra: 2912 / 2824,
  27731. bottom: 36 / 2956
  27732. }
  27733. },
  27734. male: {
  27735. height: math.unit(25.4, "m"),
  27736. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27737. name: "Male",
  27738. image: {
  27739. source: "./media/characters/joraxian/male.svg",
  27740. extra: 2877 / 2721,
  27741. bottom: 82 / 2967
  27742. }
  27743. },
  27744. },
  27745. [
  27746. {
  27747. name: "Macro",
  27748. height: math.unit(26.15, "meters"),
  27749. default: true
  27750. },
  27751. ]
  27752. ))
  27753. characterMakers.push(() => makeCharacter(
  27754. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27755. {
  27756. female: {
  27757. height: math.unit(21.6, "m"),
  27758. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27759. name: "Female",
  27760. image: {
  27761. source: "./media/characters/sthara/female.svg",
  27762. extra: 2516 / 2347,
  27763. bottom: 21.5 / 2537
  27764. }
  27765. },
  27766. male: {
  27767. height: math.unit(24, "m"),
  27768. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27769. name: "Male",
  27770. image: {
  27771. source: "./media/characters/sthara/male.svg",
  27772. extra: 2732 / 2607,
  27773. bottom: 23 / 2732
  27774. }
  27775. },
  27776. },
  27777. [
  27778. {
  27779. name: "Macro",
  27780. height: math.unit(21.6, "meters"),
  27781. default: true
  27782. },
  27783. ]
  27784. ))
  27785. characterMakers.push(() => makeCharacter(
  27786. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27787. {
  27788. front: {
  27789. height: math.unit(6 + 4 / 12, "feet"),
  27790. weight: math.unit(175, "lb"),
  27791. name: "Front",
  27792. image: {
  27793. source: "./media/characters/luka-bryzant/front.svg",
  27794. extra: 311 / 289,
  27795. bottom: 4 / 315
  27796. }
  27797. },
  27798. back: {
  27799. height: math.unit(6 + 4 / 12, "feet"),
  27800. weight: math.unit(175, "lb"),
  27801. name: "Back",
  27802. image: {
  27803. source: "./media/characters/luka-bryzant/back.svg",
  27804. extra: 311 / 289,
  27805. bottom: 3.8 / 313.7
  27806. }
  27807. },
  27808. },
  27809. [
  27810. {
  27811. name: "Micro",
  27812. height: math.unit(10, "inches")
  27813. },
  27814. {
  27815. name: "Normal",
  27816. height: math.unit(6 + 4 / 12, "feet"),
  27817. default: true
  27818. },
  27819. {
  27820. name: "Large",
  27821. height: math.unit(12, "feet")
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27827. {
  27828. front: {
  27829. height: math.unit(5 + 7 / 12, "feet"),
  27830. weight: math.unit(185, "lb"),
  27831. name: "Front",
  27832. image: {
  27833. source: "./media/characters/aman-aquila/front.svg",
  27834. extra: 1013 / 976,
  27835. bottom: 45.6 / 1057
  27836. }
  27837. },
  27838. side: {
  27839. height: math.unit(5 + 7 / 12, "feet"),
  27840. weight: math.unit(185, "lb"),
  27841. name: "Side",
  27842. image: {
  27843. source: "./media/characters/aman-aquila/side.svg",
  27844. extra: 1054 / 1011,
  27845. bottom: 15 / 1070
  27846. }
  27847. },
  27848. back: {
  27849. height: math.unit(5 + 7 / 12, "feet"),
  27850. weight: math.unit(185, "lb"),
  27851. name: "Back",
  27852. image: {
  27853. source: "./media/characters/aman-aquila/back.svg",
  27854. extra: 1026 / 970,
  27855. bottom: 12 / 1039
  27856. }
  27857. },
  27858. head: {
  27859. height: math.unit(1.211, "feet"),
  27860. name: "Head",
  27861. image: {
  27862. source: "./media/characters/aman-aquila/head.svg",
  27863. }
  27864. },
  27865. },
  27866. [
  27867. {
  27868. name: "Minimicro",
  27869. height: math.unit(0.057, "inches")
  27870. },
  27871. {
  27872. name: "Micro",
  27873. height: math.unit(7, "inches")
  27874. },
  27875. {
  27876. name: "Mini",
  27877. height: math.unit(3 + 7 / 12, "feet")
  27878. },
  27879. {
  27880. name: "Normal",
  27881. height: math.unit(5 + 7 / 12, "feet"),
  27882. default: true
  27883. },
  27884. {
  27885. name: "Macro",
  27886. height: math.unit(157 + 7 / 12, "feet")
  27887. },
  27888. {
  27889. name: "Megamacro",
  27890. height: math.unit(1557 + 7 / 12, "feet")
  27891. },
  27892. {
  27893. name: "Gigamacro",
  27894. height: math.unit(15557 + 7 / 12, "feet")
  27895. },
  27896. ]
  27897. ))
  27898. characterMakers.push(() => makeCharacter(
  27899. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27900. {
  27901. front: {
  27902. height: math.unit(3 + 2 / 12, "inches"),
  27903. weight: math.unit(0.3, "ounces"),
  27904. name: "Front",
  27905. image: {
  27906. source: "./media/characters/hiphae/front.svg",
  27907. extra: 1931 / 1683,
  27908. bottom: 24 / 1955
  27909. }
  27910. },
  27911. },
  27912. [
  27913. {
  27914. name: "Normal",
  27915. height: math.unit(3 + 1 / 2, "inches"),
  27916. default: true
  27917. },
  27918. ]
  27919. ))
  27920. characterMakers.push(() => makeCharacter(
  27921. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27922. {
  27923. front: {
  27924. height: math.unit(5 + 10 / 12, "feet"),
  27925. weight: math.unit(165, "lb"),
  27926. name: "Front",
  27927. image: {
  27928. source: "./media/characters/nicky/front.svg",
  27929. extra: 3144 / 2886,
  27930. bottom: 45.6 / 3192
  27931. }
  27932. },
  27933. back: {
  27934. height: math.unit(5 + 10 / 12, "feet"),
  27935. weight: math.unit(165, "lb"),
  27936. name: "Back",
  27937. image: {
  27938. source: "./media/characters/nicky/back.svg",
  27939. extra: 3055 / 2804,
  27940. bottom: 28.4 / 3087
  27941. }
  27942. },
  27943. frontclothed: {
  27944. height: math.unit(5 + 10 / 12, "feet"),
  27945. weight: math.unit(165, "lb"),
  27946. name: "Front (Clothed)",
  27947. image: {
  27948. source: "./media/characters/nicky/front-clothed.svg",
  27949. extra: 3184.9 / 2926.9,
  27950. bottom: 86.5 / 3239.9
  27951. }
  27952. },
  27953. foot: {
  27954. height: math.unit(1.16, "feet"),
  27955. name: "Foot",
  27956. image: {
  27957. source: "./media/characters/nicky/foot.svg"
  27958. }
  27959. },
  27960. feet: {
  27961. height: math.unit(1.34, "feet"),
  27962. name: "Feet",
  27963. image: {
  27964. source: "./media/characters/nicky/feet.svg"
  27965. }
  27966. },
  27967. maw: {
  27968. height: math.unit(0.9, "feet"),
  27969. name: "Maw",
  27970. image: {
  27971. source: "./media/characters/nicky/maw.svg"
  27972. }
  27973. },
  27974. },
  27975. [
  27976. {
  27977. name: "Normal",
  27978. height: math.unit(5 + 10 / 12, "feet"),
  27979. default: true
  27980. },
  27981. {
  27982. name: "Macro",
  27983. height: math.unit(60, "feet")
  27984. },
  27985. {
  27986. name: "Megamacro",
  27987. height: math.unit(1, "mile")
  27988. },
  27989. ]
  27990. ))
  27991. characterMakers.push(() => makeCharacter(
  27992. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27993. {
  27994. side: {
  27995. height: math.unit(10, "feet"),
  27996. weight: math.unit(600, "lb"),
  27997. name: "Side",
  27998. image: {
  27999. source: "./media/characters/blair/side.svg",
  28000. bottom: 16.6 / 475,
  28001. extra: 458 / 431
  28002. }
  28003. },
  28004. },
  28005. [
  28006. {
  28007. name: "Micro",
  28008. height: math.unit(8, "inches")
  28009. },
  28010. {
  28011. name: "Normal",
  28012. height: math.unit(10, "feet"),
  28013. default: true
  28014. },
  28015. {
  28016. name: "Macro",
  28017. height: math.unit(180, "feet")
  28018. },
  28019. ]
  28020. ))
  28021. characterMakers.push(() => makeCharacter(
  28022. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  28023. {
  28024. front: {
  28025. height: math.unit(5 + 4 / 12, "feet"),
  28026. weight: math.unit(125, "lb"),
  28027. name: "Front",
  28028. image: {
  28029. source: "./media/characters/fisher/front.svg",
  28030. extra: 444 / 390,
  28031. bottom: 2 / 444.8
  28032. }
  28033. },
  28034. },
  28035. [
  28036. {
  28037. name: "Micro",
  28038. height: math.unit(4, "inches")
  28039. },
  28040. {
  28041. name: "Normal",
  28042. height: math.unit(5 + 4 / 12, "feet"),
  28043. default: true
  28044. },
  28045. {
  28046. name: "Macro",
  28047. height: math.unit(100, "feet")
  28048. },
  28049. ]
  28050. ))
  28051. characterMakers.push(() => makeCharacter(
  28052. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  28053. {
  28054. front: {
  28055. height: math.unit(6.71, "feet"),
  28056. weight: math.unit(200, "lb"),
  28057. preyCapacity: math.unit(1000000, "people"),
  28058. name: "Front",
  28059. image: {
  28060. source: "./media/characters/gliss/front.svg",
  28061. extra: 2347 / 2231,
  28062. bottom: 113 / 2462
  28063. }
  28064. },
  28065. hammerspaceSize: {
  28066. height: math.unit(6.71 * 717, "feet"),
  28067. weight: math.unit(200, "lb"),
  28068. preyCapacity: math.unit(1000000, "people"),
  28069. name: "Hammerspace Size",
  28070. image: {
  28071. source: "./media/characters/gliss/front.svg",
  28072. extra: 2347 / 2231,
  28073. bottom: 113 / 2462
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(6.71, "feet"),
  28081. default: true
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  28087. {
  28088. side: {
  28089. height: math.unit(1.44, "m"),
  28090. weight: math.unit(80, "kg"),
  28091. name: "Side",
  28092. image: {
  28093. source: "./media/characters/dune-anderson/side.svg",
  28094. bottom: 49 / 1426
  28095. }
  28096. },
  28097. },
  28098. [
  28099. {
  28100. name: "Wolf-sized",
  28101. height: math.unit(1.44, "meters")
  28102. },
  28103. {
  28104. name: "Normal",
  28105. height: math.unit(5.05, "meters"),
  28106. default: true
  28107. },
  28108. {
  28109. name: "Big",
  28110. height: math.unit(14.4, "meters")
  28111. },
  28112. {
  28113. name: "Huge",
  28114. height: math.unit(144, "meters")
  28115. },
  28116. ]
  28117. ))
  28118. characterMakers.push(() => makeCharacter(
  28119. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  28120. {
  28121. front: {
  28122. height: math.unit(6, "feet"),
  28123. weight: math.unit(220, "lb"),
  28124. name: "Front",
  28125. image: {
  28126. source: "./media/characters/hind/front.svg",
  28127. extra: 1912/1787,
  28128. bottom: 52/1964
  28129. }
  28130. },
  28131. back: {
  28132. height: math.unit(6, "feet"),
  28133. weight: math.unit(220, "lb"),
  28134. name: "Back",
  28135. image: {
  28136. source: "./media/characters/hind/back.svg",
  28137. extra: 1901/1794,
  28138. bottom: 26/1927
  28139. }
  28140. },
  28141. },
  28142. [
  28143. {
  28144. name: "Normal",
  28145. height: math.unit(6, "feet"),
  28146. default: true
  28147. },
  28148. ]
  28149. ))
  28150. characterMakers.push(() => makeCharacter(
  28151. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28152. {
  28153. front: {
  28154. height: math.unit(2.1, "meters"),
  28155. weight: math.unit(150, "lb"),
  28156. name: "Front",
  28157. image: {
  28158. source: "./media/characters/tharquench-sizestealer/front.svg",
  28159. extra: 1605/1470,
  28160. bottom: 36/1641
  28161. }
  28162. },
  28163. frontAlt: {
  28164. height: math.unit(2.1, "meters"),
  28165. weight: math.unit(150, "lb"),
  28166. name: "Front (Alt)",
  28167. image: {
  28168. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28169. extra: 2318 / 2063,
  28170. bottom: 93.4 / 2410
  28171. }
  28172. },
  28173. },
  28174. [
  28175. {
  28176. name: "Nano",
  28177. height: math.unit(1, "mm")
  28178. },
  28179. {
  28180. name: "Micro",
  28181. height: math.unit(1, "cm")
  28182. },
  28183. {
  28184. name: "Normal",
  28185. height: math.unit(2.1, "meters"),
  28186. default: true
  28187. },
  28188. ]
  28189. ))
  28190. characterMakers.push(() => makeCharacter(
  28191. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28192. {
  28193. front: {
  28194. height: math.unit(7 + 5 / 12, "feet"),
  28195. weight: math.unit(357, "lb"),
  28196. name: "Front",
  28197. image: {
  28198. source: "./media/characters/solex-draconov/front.svg",
  28199. extra: 1993 / 1865,
  28200. bottom: 117 / 2111
  28201. }
  28202. },
  28203. },
  28204. [
  28205. {
  28206. name: "Natural Height",
  28207. height: math.unit(7 + 5 / 12, "feet"),
  28208. default: true
  28209. },
  28210. {
  28211. name: "Macro",
  28212. height: math.unit(350, "feet")
  28213. },
  28214. {
  28215. name: "Macro+",
  28216. height: math.unit(1000, "feet")
  28217. },
  28218. {
  28219. name: "Megamacro",
  28220. height: math.unit(20, "km")
  28221. },
  28222. {
  28223. name: "Megamacro+",
  28224. height: math.unit(1000, "km")
  28225. },
  28226. {
  28227. name: "Gigamacro",
  28228. height: math.unit(2.5, "Gm")
  28229. },
  28230. {
  28231. name: "Teramacro",
  28232. height: math.unit(15, "Tm")
  28233. },
  28234. {
  28235. name: "Galactic",
  28236. height: math.unit(30, "Zm")
  28237. },
  28238. {
  28239. name: "Universal",
  28240. height: math.unit(21000, "Ym")
  28241. },
  28242. {
  28243. name: "Omniversal",
  28244. height: math.unit(9.861e50, "Ym")
  28245. },
  28246. {
  28247. name: "Existential",
  28248. height: math.unit(1e300, "meters")
  28249. },
  28250. ]
  28251. ))
  28252. characterMakers.push(() => makeCharacter(
  28253. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28254. {
  28255. side: {
  28256. height: math.unit(25, "feet"),
  28257. weight: math.unit(90000, "lb"),
  28258. name: "Side",
  28259. image: {
  28260. source: "./media/characters/mandarax/side.svg",
  28261. extra: 614 / 332,
  28262. bottom: 55 / 630
  28263. }
  28264. },
  28265. lounging: {
  28266. height: math.unit(15.4, "feet"),
  28267. weight: math.unit(90000, "lb"),
  28268. name: "Lounging",
  28269. image: {
  28270. source: "./media/characters/mandarax/lounging.svg",
  28271. extra: 817/609,
  28272. bottom: 685/1502
  28273. }
  28274. },
  28275. head: {
  28276. height: math.unit(11.4, "feet"),
  28277. name: "Head",
  28278. image: {
  28279. source: "./media/characters/mandarax/head.svg"
  28280. }
  28281. },
  28282. belly: {
  28283. height: math.unit(33, "feet"),
  28284. name: "Belly",
  28285. preyCapacity: math.unit(500, "people"),
  28286. image: {
  28287. source: "./media/characters/mandarax/belly.svg"
  28288. }
  28289. },
  28290. dick: {
  28291. height: math.unit(8.46, "feet"),
  28292. name: "Dick",
  28293. image: {
  28294. source: "./media/characters/mandarax/dick.svg"
  28295. }
  28296. },
  28297. top: {
  28298. height: math.unit(28, "meters"),
  28299. name: "Top",
  28300. image: {
  28301. source: "./media/characters/mandarax/top.svg"
  28302. }
  28303. },
  28304. },
  28305. [
  28306. {
  28307. name: "Normal",
  28308. height: math.unit(25, "feet"),
  28309. default: true
  28310. },
  28311. ]
  28312. ))
  28313. characterMakers.push(() => makeCharacter(
  28314. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28315. {
  28316. front: {
  28317. height: math.unit(5, "feet"),
  28318. weight: math.unit(90, "lb"),
  28319. name: "Front",
  28320. image: {
  28321. source: "./media/characters/pixil/front.svg",
  28322. extra: 2000 / 1618,
  28323. bottom: 12.3 / 2011
  28324. }
  28325. },
  28326. },
  28327. [
  28328. {
  28329. name: "Normal",
  28330. height: math.unit(5, "feet"),
  28331. default: true
  28332. },
  28333. {
  28334. name: "Megamacro",
  28335. height: math.unit(10, "miles"),
  28336. },
  28337. ]
  28338. ))
  28339. characterMakers.push(() => makeCharacter(
  28340. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28341. {
  28342. front: {
  28343. height: math.unit(7 + 2 / 12, "feet"),
  28344. weight: math.unit(200, "lb"),
  28345. name: "Front",
  28346. image: {
  28347. source: "./media/characters/angel/front.svg",
  28348. extra: 1946/1840,
  28349. bottom: 30/1976
  28350. }
  28351. },
  28352. },
  28353. [
  28354. {
  28355. name: "Normal",
  28356. height: math.unit(7 + 2 / 12, "feet"),
  28357. default: true
  28358. },
  28359. {
  28360. name: "Macro",
  28361. height: math.unit(1000, "feet")
  28362. },
  28363. {
  28364. name: "Megamacro",
  28365. height: math.unit(2, "miles")
  28366. },
  28367. {
  28368. name: "Gigamacro",
  28369. height: math.unit(20, "earths")
  28370. },
  28371. ]
  28372. ))
  28373. characterMakers.push(() => makeCharacter(
  28374. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28375. {
  28376. front: {
  28377. height: math.unit(5, "feet"),
  28378. weight: math.unit(180, "lb"),
  28379. name: "Front",
  28380. image: {
  28381. source: "./media/characters/mekana/front.svg",
  28382. extra: 1671 / 1605,
  28383. bottom: 3.5 / 1691
  28384. }
  28385. },
  28386. side: {
  28387. height: math.unit(5, "feet"),
  28388. weight: math.unit(180, "lb"),
  28389. name: "Side",
  28390. image: {
  28391. source: "./media/characters/mekana/side.svg",
  28392. extra: 1671 / 1605,
  28393. bottom: 3.5 / 1691
  28394. }
  28395. },
  28396. back: {
  28397. height: math.unit(5, "feet"),
  28398. weight: math.unit(180, "lb"),
  28399. name: "Back",
  28400. image: {
  28401. source: "./media/characters/mekana/back.svg",
  28402. extra: 1671 / 1605,
  28403. bottom: 3.5 / 1691
  28404. }
  28405. },
  28406. },
  28407. [
  28408. {
  28409. name: "Normal",
  28410. height: math.unit(5, "feet"),
  28411. default: true
  28412. },
  28413. ]
  28414. ))
  28415. characterMakers.push(() => makeCharacter(
  28416. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28417. {
  28418. front: {
  28419. height: math.unit(4 + 6 / 12, "feet"),
  28420. weight: math.unit(80, "lb"),
  28421. name: "Front",
  28422. image: {
  28423. source: "./media/characters/pixie/front.svg",
  28424. extra: 1924 / 1825,
  28425. bottom: 22.4 / 1946
  28426. }
  28427. },
  28428. },
  28429. [
  28430. {
  28431. name: "Normal",
  28432. height: math.unit(4 + 6 / 12, "feet"),
  28433. default: true
  28434. },
  28435. {
  28436. name: "Macro",
  28437. height: math.unit(40, "feet")
  28438. },
  28439. ]
  28440. ))
  28441. characterMakers.push(() => makeCharacter(
  28442. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28443. {
  28444. front: {
  28445. height: math.unit(2.1, "meters"),
  28446. weight: math.unit(200, "lb"),
  28447. name: "Front",
  28448. image: {
  28449. source: "./media/characters/the-lascivious/front.svg",
  28450. extra: 1 / 0.893,
  28451. bottom: 3.5 / 573.7
  28452. }
  28453. },
  28454. },
  28455. [
  28456. {
  28457. name: "Human Scale",
  28458. height: math.unit(2.1, "meters")
  28459. },
  28460. {
  28461. name: "Wolxi Scale",
  28462. height: math.unit(46.2, "m"),
  28463. default: true
  28464. },
  28465. {
  28466. name: "Boinker of Buildings",
  28467. height: math.unit(10, "km")
  28468. },
  28469. {
  28470. name: "Shagger of Skyscrapers",
  28471. height: math.unit(40, "km")
  28472. },
  28473. {
  28474. name: "Banger of Boroughs",
  28475. height: math.unit(4000, "km")
  28476. },
  28477. {
  28478. name: "Screwer of States",
  28479. height: math.unit(100000, "km")
  28480. },
  28481. {
  28482. name: "Pounder of Planets",
  28483. height: math.unit(2000000, "km")
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28489. {
  28490. front: {
  28491. height: math.unit(6, "feet"),
  28492. weight: math.unit(150, "lb"),
  28493. name: "Front",
  28494. image: {
  28495. source: "./media/characters/aj/front.svg",
  28496. extra: 2039 / 1562,
  28497. bottom: 40 / 2079
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Normal",
  28504. height: math.unit(11 + 6 / 12, "feet"),
  28505. default: true
  28506. },
  28507. {
  28508. name: "Megamacro",
  28509. height: math.unit(60, "megameters")
  28510. },
  28511. ]
  28512. ))
  28513. characterMakers.push(() => makeCharacter(
  28514. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28515. {
  28516. side: {
  28517. height: math.unit(31 + 8 / 12, "feet"),
  28518. weight: math.unit(75000, "kg"),
  28519. name: "Side",
  28520. image: {
  28521. source: "./media/characters/koros/side.svg",
  28522. extra: 1442 / 1297,
  28523. bottom: 122.7 / 1562
  28524. }
  28525. },
  28526. dicksKingsCrown: {
  28527. height: math.unit(6, "feet"),
  28528. name: "Dicks (King's Crown)",
  28529. image: {
  28530. source: "./media/characters/koros/dicks-kings-crown.svg"
  28531. }
  28532. },
  28533. dicksTailSet: {
  28534. height: math.unit(3, "feet"),
  28535. name: "Dicks (Tail Set)",
  28536. image: {
  28537. source: "./media/characters/koros/dicks-tail-set.svg"
  28538. }
  28539. },
  28540. dickCumming: {
  28541. height: math.unit(7.98, "feet"),
  28542. name: "Dick (Cumming)",
  28543. image: {
  28544. source: "./media/characters/koros/dick-cumming.svg"
  28545. }
  28546. },
  28547. dicksBack: {
  28548. height: math.unit(5.9, "feet"),
  28549. name: "Dicks (Back)",
  28550. image: {
  28551. source: "./media/characters/koros/dicks-back.svg"
  28552. }
  28553. },
  28554. dicksFront: {
  28555. height: math.unit(3.72, "feet"),
  28556. name: "Dicks (Front)",
  28557. image: {
  28558. source: "./media/characters/koros/dicks-front.svg"
  28559. }
  28560. },
  28561. dicksPeeking: {
  28562. height: math.unit(3.0, "feet"),
  28563. name: "Dicks (Peeking)",
  28564. image: {
  28565. source: "./media/characters/koros/dicks-peeking.svg"
  28566. }
  28567. },
  28568. eye: {
  28569. height: math.unit(1.7, "feet"),
  28570. name: "Eye",
  28571. image: {
  28572. source: "./media/characters/koros/eye.svg"
  28573. }
  28574. },
  28575. headFront: {
  28576. height: math.unit(11.69, "feet"),
  28577. name: "Head (Front)",
  28578. image: {
  28579. source: "./media/characters/koros/head-front.svg"
  28580. }
  28581. },
  28582. headSide: {
  28583. height: math.unit(14, "feet"),
  28584. name: "Head (Side)",
  28585. image: {
  28586. source: "./media/characters/koros/head-side.svg"
  28587. }
  28588. },
  28589. leg: {
  28590. height: math.unit(17, "feet"),
  28591. name: "Leg",
  28592. image: {
  28593. source: "./media/characters/koros/leg.svg"
  28594. }
  28595. },
  28596. mawSide: {
  28597. height: math.unit(12.8, "feet"),
  28598. name: "Maw (Side)",
  28599. image: {
  28600. source: "./media/characters/koros/maw-side.svg"
  28601. }
  28602. },
  28603. mawSpitting: {
  28604. height: math.unit(17, "feet"),
  28605. name: "Maw (Spitting)",
  28606. image: {
  28607. source: "./media/characters/koros/maw-spitting.svg"
  28608. }
  28609. },
  28610. slit: {
  28611. height: math.unit(2.8, "feet"),
  28612. name: "Slit",
  28613. image: {
  28614. source: "./media/characters/koros/slit.svg"
  28615. }
  28616. },
  28617. stomach: {
  28618. height: math.unit(6.8, "feet"),
  28619. preyCapacity: math.unit(20, "people"),
  28620. name: "Stomach",
  28621. image: {
  28622. source: "./media/characters/koros/stomach.svg"
  28623. }
  28624. },
  28625. wingspanBottom: {
  28626. height: math.unit(114, "feet"),
  28627. name: "Wingspan (Bottom)",
  28628. image: {
  28629. source: "./media/characters/koros/wingspan-bottom.svg"
  28630. }
  28631. },
  28632. wingspanTop: {
  28633. height: math.unit(104, "feet"),
  28634. name: "Wingspan (Top)",
  28635. image: {
  28636. source: "./media/characters/koros/wingspan-top.svg"
  28637. }
  28638. },
  28639. },
  28640. [
  28641. {
  28642. name: "Normal",
  28643. height: math.unit(31 + 8 / 12, "feet"),
  28644. default: true
  28645. },
  28646. ]
  28647. ))
  28648. characterMakers.push(() => makeCharacter(
  28649. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28650. {
  28651. front: {
  28652. height: math.unit(18 + 5 / 12, "feet"),
  28653. weight: math.unit(3750, "kg"),
  28654. name: "Front",
  28655. image: {
  28656. source: "./media/characters/vexx/front.svg",
  28657. extra: 426 / 396,
  28658. bottom: 31.5 / 458
  28659. }
  28660. },
  28661. maw: {
  28662. height: math.unit(6, "feet"),
  28663. name: "Maw",
  28664. image: {
  28665. source: "./media/characters/vexx/maw.svg"
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(18 + 5 / 12, "feet"),
  28673. default: true
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28679. {
  28680. front: {
  28681. height: math.unit(17 + 6 / 12, "feet"),
  28682. weight: math.unit(150, "lb"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/baadra/front.svg",
  28686. extra: 1694/1553,
  28687. bottom: 179/1873
  28688. }
  28689. },
  28690. frontAlt: {
  28691. height: math.unit(17 + 6 / 12, "feet"),
  28692. weight: math.unit(150, "lb"),
  28693. name: "Front (Alt)",
  28694. image: {
  28695. source: "./media/characters/baadra/front-alt.svg",
  28696. extra: 3137 / 2890,
  28697. bottom: 168.4 / 3305
  28698. }
  28699. },
  28700. back: {
  28701. height: math.unit(17 + 6 / 12, "feet"),
  28702. weight: math.unit(150, "lb"),
  28703. name: "Back",
  28704. image: {
  28705. source: "./media/characters/baadra/back.svg",
  28706. extra: 3142 / 2890,
  28707. bottom: 220 / 3371
  28708. }
  28709. },
  28710. head: {
  28711. height: math.unit(5.45, "feet"),
  28712. name: "Head",
  28713. image: {
  28714. source: "./media/characters/baadra/head.svg"
  28715. }
  28716. },
  28717. headAngry: {
  28718. height: math.unit(4.95, "feet"),
  28719. name: "Head (Angry)",
  28720. image: {
  28721. source: "./media/characters/baadra/head-angry.svg"
  28722. }
  28723. },
  28724. headOpen: {
  28725. height: math.unit(6, "feet"),
  28726. name: "Head (Open)",
  28727. image: {
  28728. source: "./media/characters/baadra/head-open.svg"
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Normal",
  28735. height: math.unit(17 + 6 / 12, "feet"),
  28736. default: true
  28737. },
  28738. ]
  28739. ))
  28740. characterMakers.push(() => makeCharacter(
  28741. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28742. {
  28743. front: {
  28744. height: math.unit(7 + 3 / 12, "feet"),
  28745. weight: math.unit(180, "lb"),
  28746. name: "Front",
  28747. image: {
  28748. source: "./media/characters/juri/front.svg",
  28749. extra: 1401 / 1237,
  28750. bottom: 18.5 / 1418
  28751. }
  28752. },
  28753. side: {
  28754. height: math.unit(7 + 3 / 12, "feet"),
  28755. weight: math.unit(180, "lb"),
  28756. name: "Side",
  28757. image: {
  28758. source: "./media/characters/juri/side.svg",
  28759. extra: 1424 / 1242,
  28760. bottom: 18.5 / 1447
  28761. }
  28762. },
  28763. sitting: {
  28764. height: math.unit(6, "feet"),
  28765. weight: math.unit(180, "lb"),
  28766. name: "Sitting",
  28767. image: {
  28768. source: "./media/characters/juri/sitting.svg",
  28769. extra: 1270 / 1143,
  28770. bottom: 100 / 1343
  28771. }
  28772. },
  28773. back: {
  28774. height: math.unit(7 + 3 / 12, "feet"),
  28775. weight: math.unit(180, "lb"),
  28776. name: "Back",
  28777. image: {
  28778. source: "./media/characters/juri/back.svg",
  28779. extra: 1377 / 1240,
  28780. bottom: 23.7 / 1405
  28781. }
  28782. },
  28783. maw: {
  28784. height: math.unit(2.8, "feet"),
  28785. name: "Maw",
  28786. image: {
  28787. source: "./media/characters/juri/maw.svg"
  28788. }
  28789. },
  28790. stomach: {
  28791. height: math.unit(0.89, "feet"),
  28792. preyCapacity: math.unit(4, "liters"),
  28793. name: "Stomach",
  28794. image: {
  28795. source: "./media/characters/juri/stomach.svg"
  28796. }
  28797. },
  28798. },
  28799. [
  28800. {
  28801. name: "Normal",
  28802. height: math.unit(7 + 3 / 12, "feet"),
  28803. default: true
  28804. },
  28805. ]
  28806. ))
  28807. characterMakers.push(() => makeCharacter(
  28808. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28809. {
  28810. fox: {
  28811. height: math.unit(5 + 6 / 12, "feet"),
  28812. weight: math.unit(140, "lb"),
  28813. name: "Fox",
  28814. image: {
  28815. source: "./media/characters/maxene-sita/fox.svg",
  28816. extra: 146 / 138,
  28817. bottom: 2.1 / 148.19
  28818. }
  28819. },
  28820. foxLaying: {
  28821. height: math.unit(1.70, "feet"),
  28822. weight: math.unit(140, "lb"),
  28823. name: "Fox (Laying)",
  28824. image: {
  28825. source: "./media/characters/maxene-sita/fox-laying.svg",
  28826. extra: 910 / 572,
  28827. bottom: 71 / 981
  28828. }
  28829. },
  28830. kitsune: {
  28831. height: math.unit(10, "feet"),
  28832. weight: math.unit(800, "lb"),
  28833. name: "Kitsune",
  28834. image: {
  28835. source: "./media/characters/maxene-sita/kitsune.svg",
  28836. extra: 185 / 176,
  28837. bottom: 4.7 / 189.9
  28838. }
  28839. },
  28840. hellhound: {
  28841. height: math.unit(10, "feet"),
  28842. weight: math.unit(700, "lb"),
  28843. name: "Hellhound",
  28844. image: {
  28845. source: "./media/characters/maxene-sita/hellhound.svg",
  28846. extra: 1600 / 1545,
  28847. bottom: 81 / 1681
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Normal",
  28854. height: math.unit(5 + 6 / 12, "feet"),
  28855. default: true
  28856. },
  28857. ]
  28858. ))
  28859. characterMakers.push(() => makeCharacter(
  28860. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28861. {
  28862. front: {
  28863. height: math.unit(3 + 4 / 12, "feet"),
  28864. weight: math.unit(70, "lb"),
  28865. name: "Front",
  28866. image: {
  28867. source: "./media/characters/maia/front.svg",
  28868. extra: 227 / 219.5,
  28869. bottom: 40 / 267
  28870. }
  28871. },
  28872. back: {
  28873. height: math.unit(3 + 4 / 12, "feet"),
  28874. weight: math.unit(70, "lb"),
  28875. name: "Back",
  28876. image: {
  28877. source: "./media/characters/maia/back.svg",
  28878. extra: 237 / 225
  28879. }
  28880. },
  28881. },
  28882. [
  28883. {
  28884. name: "Normal",
  28885. height: math.unit(3 + 4 / 12, "feet"),
  28886. default: true
  28887. },
  28888. ]
  28889. ))
  28890. characterMakers.push(() => makeCharacter(
  28891. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28892. {
  28893. front: {
  28894. height: math.unit(5 + 10 / 12, "feet"),
  28895. weight: math.unit(197, "lb"),
  28896. name: "Front",
  28897. image: {
  28898. source: "./media/characters/jabaro/front.svg",
  28899. extra: 225 / 216,
  28900. bottom: 5.06 / 230
  28901. }
  28902. },
  28903. back: {
  28904. height: math.unit(5 + 10 / 12, "feet"),
  28905. weight: math.unit(197, "lb"),
  28906. name: "Back",
  28907. image: {
  28908. source: "./media/characters/jabaro/back.svg",
  28909. extra: 225 / 219,
  28910. bottom: 1.9 / 227
  28911. }
  28912. },
  28913. },
  28914. [
  28915. {
  28916. name: "Normal",
  28917. height: math.unit(5 + 10 / 12, "feet"),
  28918. default: true
  28919. },
  28920. ]
  28921. ))
  28922. characterMakers.push(() => makeCharacter(
  28923. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28924. {
  28925. front: {
  28926. height: math.unit(5 + 8 / 12, "feet"),
  28927. weight: math.unit(139, "lb"),
  28928. name: "Front",
  28929. image: {
  28930. source: "./media/characters/risa/front.svg",
  28931. extra: 270 / 260,
  28932. bottom: 11.2 / 282
  28933. }
  28934. },
  28935. back: {
  28936. height: math.unit(5 + 8 / 12, "feet"),
  28937. weight: math.unit(139, "lb"),
  28938. name: "Back",
  28939. image: {
  28940. source: "./media/characters/risa/back.svg",
  28941. extra: 264 / 255,
  28942. bottom: 4 / 268
  28943. }
  28944. },
  28945. },
  28946. [
  28947. {
  28948. name: "Normal",
  28949. height: math.unit(5 + 8 / 12, "feet"),
  28950. default: true
  28951. },
  28952. ]
  28953. ))
  28954. characterMakers.push(() => makeCharacter(
  28955. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28956. {
  28957. front: {
  28958. height: math.unit(2 + 11 / 12, "feet"),
  28959. weight: math.unit(30, "lb"),
  28960. name: "Front",
  28961. image: {
  28962. source: "./media/characters/weatley/front.svg",
  28963. bottom: 10.7 / 414,
  28964. extra: 403.5 / 362
  28965. }
  28966. },
  28967. back: {
  28968. height: math.unit(2 + 11 / 12, "feet"),
  28969. weight: math.unit(30, "lb"),
  28970. name: "Back",
  28971. image: {
  28972. source: "./media/characters/weatley/back.svg",
  28973. bottom: 10.7 / 414,
  28974. extra: 403.5 / 362
  28975. }
  28976. },
  28977. },
  28978. [
  28979. {
  28980. name: "Normal",
  28981. height: math.unit(2 + 11 / 12, "feet"),
  28982. default: true
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(5 + 2 / 12, "feet"),
  28991. weight: math.unit(50, "kg"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/mercury-crescent/front.svg",
  28995. extra: 1088 / 1033,
  28996. bottom: 18.9 / 1109
  28997. }
  28998. },
  28999. },
  29000. [
  29001. {
  29002. name: "Normal",
  29003. height: math.unit(5 + 2 / 12, "feet"),
  29004. default: true
  29005. },
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  29010. {
  29011. front: {
  29012. height: math.unit(2, "feet"),
  29013. weight: math.unit(15, "kg"),
  29014. name: "Front",
  29015. image: {
  29016. source: "./media/characters/diamond-jones/front.svg",
  29017. extra: 727/723,
  29018. bottom: 46/773
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Normal",
  29025. height: math.unit(2, "feet"),
  29026. default: true
  29027. },
  29028. ]
  29029. ))
  29030. characterMakers.push(() => makeCharacter(
  29031. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  29032. {
  29033. front: {
  29034. height: math.unit(3, "feet"),
  29035. weight: math.unit(30, "kg"),
  29036. name: "Front",
  29037. image: {
  29038. source: "./media/characters/sweet-bit/front.svg",
  29039. extra: 675 / 567,
  29040. bottom: 27.7 / 703
  29041. }
  29042. },
  29043. },
  29044. [
  29045. {
  29046. name: "Normal",
  29047. height: math.unit(3, "feet"),
  29048. default: true
  29049. },
  29050. ]
  29051. ))
  29052. characterMakers.push(() => makeCharacter(
  29053. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  29054. {
  29055. side: {
  29056. height: math.unit(9.178, "feet"),
  29057. weight: math.unit(500, "lb"),
  29058. name: "Side",
  29059. image: {
  29060. source: "./media/characters/umbrazen/side.svg",
  29061. extra: 1730 / 1473,
  29062. bottom: 34.6 / 1765
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(9.178, "feet"),
  29070. default: true
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(10, "feet"),
  29079. weight: math.unit(750, "lb"),
  29080. name: "Front",
  29081. image: {
  29082. source: "./media/characters/arlist/front.svg",
  29083. extra: 961 / 778,
  29084. bottom: 6.2 / 986
  29085. }
  29086. },
  29087. },
  29088. [
  29089. {
  29090. name: "Normal",
  29091. height: math.unit(10, "feet"),
  29092. default: true
  29093. },
  29094. ]
  29095. ))
  29096. characterMakers.push(() => makeCharacter(
  29097. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  29098. {
  29099. front: {
  29100. height: math.unit(5 + 1 / 12, "feet"),
  29101. weight: math.unit(110, "lb"),
  29102. name: "Front",
  29103. image: {
  29104. source: "./media/characters/aradel/front.svg",
  29105. extra: 324 / 303,
  29106. bottom: 3.6 / 329.4
  29107. }
  29108. },
  29109. },
  29110. [
  29111. {
  29112. name: "Normal",
  29113. height: math.unit(5 + 1 / 12, "feet"),
  29114. default: true
  29115. },
  29116. ]
  29117. ))
  29118. characterMakers.push(() => makeCharacter(
  29119. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  29120. {
  29121. dressed: {
  29122. height: math.unit(3 + 8 / 12, "feet"),
  29123. weight: math.unit(50, "lb"),
  29124. name: "Dressed",
  29125. image: {
  29126. source: "./media/characters/serryn/dressed.svg",
  29127. extra: 1792 / 1656,
  29128. bottom: 43.5 / 1840
  29129. }
  29130. },
  29131. nude: {
  29132. height: math.unit(3 + 8 / 12, "feet"),
  29133. weight: math.unit(50, "lb"),
  29134. name: "Nude",
  29135. image: {
  29136. source: "./media/characters/serryn/nude.svg",
  29137. extra: 1792 / 1656,
  29138. bottom: 43.5 / 1840
  29139. }
  29140. },
  29141. },
  29142. [
  29143. {
  29144. name: "Normal",
  29145. height: math.unit(3 + 8 / 12, "feet"),
  29146. default: true
  29147. },
  29148. ]
  29149. ))
  29150. characterMakers.push(() => makeCharacter(
  29151. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29152. {
  29153. front: {
  29154. height: math.unit(7 + 10 / 12, "feet"),
  29155. weight: math.unit(255, "lb"),
  29156. name: "Front",
  29157. image: {
  29158. source: "./media/characters/xavier-thyme/front.svg",
  29159. extra: 3733 / 3642,
  29160. bottom: 131 / 3869
  29161. }
  29162. },
  29163. frontRaven: {
  29164. height: math.unit(7 + 10 / 12, "feet"),
  29165. weight: math.unit(255, "lb"),
  29166. name: "Front (Raven)",
  29167. image: {
  29168. source: "./media/characters/xavier-thyme/front-raven.svg",
  29169. extra: 4385 / 3642,
  29170. bottom: 131 / 4517
  29171. }
  29172. },
  29173. },
  29174. [
  29175. {
  29176. name: "Normal",
  29177. height: math.unit(7 + 10 / 12, "feet"),
  29178. default: true
  29179. },
  29180. ]
  29181. ))
  29182. characterMakers.push(() => makeCharacter(
  29183. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29184. {
  29185. front: {
  29186. height: math.unit(1.6, "m"),
  29187. weight: math.unit(50, "kg"),
  29188. name: "Front",
  29189. image: {
  29190. source: "./media/characters/kiki/front.svg",
  29191. extra: 4682 / 3610,
  29192. bottom: 115 / 4777
  29193. }
  29194. },
  29195. },
  29196. [
  29197. {
  29198. name: "Normal",
  29199. height: math.unit(1.6, "meters"),
  29200. default: true
  29201. },
  29202. ]
  29203. ))
  29204. characterMakers.push(() => makeCharacter(
  29205. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29206. {
  29207. front: {
  29208. height: math.unit(50, "m"),
  29209. weight: math.unit(500, "tonnes"),
  29210. name: "Front",
  29211. image: {
  29212. source: "./media/characters/ryoko/front.svg",
  29213. extra: 4632 / 3926,
  29214. bottom: 193 / 4823
  29215. }
  29216. },
  29217. },
  29218. [
  29219. {
  29220. name: "Normal",
  29221. height: math.unit(50, "meters"),
  29222. default: true
  29223. },
  29224. ]
  29225. ))
  29226. characterMakers.push(() => makeCharacter(
  29227. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29228. {
  29229. front: {
  29230. height: math.unit(30, "m"),
  29231. weight: math.unit(22, "tonnes"),
  29232. name: "Front",
  29233. image: {
  29234. source: "./media/characters/elio/front.svg",
  29235. extra: 4582 / 3720,
  29236. bottom: 236 / 4828
  29237. }
  29238. },
  29239. },
  29240. [
  29241. {
  29242. name: "Normal",
  29243. height: math.unit(30, "meters"),
  29244. default: true
  29245. },
  29246. ]
  29247. ))
  29248. characterMakers.push(() => makeCharacter(
  29249. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29250. {
  29251. front: {
  29252. height: math.unit(6 + 3 / 12, "feet"),
  29253. weight: math.unit(120, "lb"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/azura/front.svg",
  29257. extra: 1149 / 1135,
  29258. bottom: 45 / 1194
  29259. }
  29260. },
  29261. frontClothed: {
  29262. height: math.unit(6 + 3 / 12, "feet"),
  29263. weight: math.unit(120, "lb"),
  29264. name: "Front (Clothed)",
  29265. image: {
  29266. source: "./media/characters/azura/front-clothed.svg",
  29267. extra: 1149 / 1135,
  29268. bottom: 45 / 1194
  29269. }
  29270. },
  29271. },
  29272. [
  29273. {
  29274. name: "Normal",
  29275. height: math.unit(6 + 3 / 12, "feet"),
  29276. default: true
  29277. },
  29278. {
  29279. name: "Macro",
  29280. height: math.unit(20 + 6 / 12, "feet")
  29281. },
  29282. {
  29283. name: "Megamacro",
  29284. height: math.unit(12, "miles")
  29285. },
  29286. {
  29287. name: "Gigamacro",
  29288. height: math.unit(10000, "miles")
  29289. },
  29290. {
  29291. name: "Teramacro",
  29292. height: math.unit(900000, "miles")
  29293. },
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29298. {
  29299. front: {
  29300. height: math.unit(12, "feet"),
  29301. weight: math.unit(1, "ton"),
  29302. capacity: math.unit(660000, "gallons"),
  29303. name: "Front",
  29304. image: {
  29305. source: "./media/characters/zeus/front.svg",
  29306. extra: 5005 / 4717,
  29307. bottom: 363 / 5388
  29308. }
  29309. },
  29310. },
  29311. [
  29312. {
  29313. name: "Normal",
  29314. height: math.unit(12, "feet")
  29315. },
  29316. {
  29317. name: "Preferred Size",
  29318. height: math.unit(0.5, "miles"),
  29319. default: true
  29320. },
  29321. {
  29322. name: "Giga Horse",
  29323. height: math.unit(300, "miles")
  29324. },
  29325. {
  29326. name: "Riding Planets",
  29327. height: math.unit(30, "megameters")
  29328. },
  29329. {
  29330. name: "Cosmic Giant",
  29331. height: math.unit(3, "zettameters")
  29332. },
  29333. {
  29334. name: "Breeding God",
  29335. height: math.unit(9.92e22, "yottameters")
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29341. {
  29342. side: {
  29343. height: math.unit(9, "feet"),
  29344. weight: math.unit(1500, "kg"),
  29345. name: "Side",
  29346. image: {
  29347. source: "./media/characters/fang/side.svg",
  29348. extra: 924 / 866,
  29349. bottom: 47.5 / 972.3
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(9, "feet"),
  29357. default: true
  29358. },
  29359. {
  29360. name: "Macro",
  29361. height: math.unit(75 + 6 / 12, "feet")
  29362. },
  29363. {
  29364. name: "Teramacro",
  29365. height: math.unit(50000, "miles")
  29366. },
  29367. ]
  29368. ))
  29369. characterMakers.push(() => makeCharacter(
  29370. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29371. {
  29372. front: {
  29373. height: math.unit(10, "feet"),
  29374. weight: math.unit(2, "tons"),
  29375. name: "Front",
  29376. image: {
  29377. source: "./media/characters/rekhit/front.svg",
  29378. extra: 2796 / 2590,
  29379. bottom: 225 / 3022
  29380. }
  29381. },
  29382. },
  29383. [
  29384. {
  29385. name: "Normal",
  29386. height: math.unit(10, "feet"),
  29387. default: true
  29388. },
  29389. {
  29390. name: "Macro",
  29391. height: math.unit(500, "feet")
  29392. },
  29393. ]
  29394. ))
  29395. characterMakers.push(() => makeCharacter(
  29396. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29397. {
  29398. front: {
  29399. height: math.unit(7 + 6.451 / 12, "feet"),
  29400. weight: math.unit(310, "lb"),
  29401. name: "Front",
  29402. image: {
  29403. source: "./media/characters/dahlia-verrick/front.svg",
  29404. extra: 1488 / 1365,
  29405. bottom: 6.2 / 1495
  29406. }
  29407. },
  29408. back: {
  29409. height: math.unit(7 + 6.451 / 12, "feet"),
  29410. weight: math.unit(310, "lb"),
  29411. name: "Back",
  29412. image: {
  29413. source: "./media/characters/dahlia-verrick/back.svg",
  29414. extra: 1472 / 1351,
  29415. bottom: 5.28 / 1477
  29416. }
  29417. },
  29418. frontBusiness: {
  29419. height: math.unit(7 + 6.451 / 12, "feet"),
  29420. weight: math.unit(200, "lb"),
  29421. name: "Front (Business)",
  29422. image: {
  29423. source: "./media/characters/dahlia-verrick/front-business.svg",
  29424. extra: 1478 / 1381,
  29425. bottom: 5.5 / 1484
  29426. }
  29427. },
  29428. frontCasual: {
  29429. height: math.unit(7 + 6.451 / 12, "feet"),
  29430. weight: math.unit(200, "lb"),
  29431. name: "Front (Casual)",
  29432. image: {
  29433. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29434. extra: 1478 / 1381,
  29435. bottom: 5.5 / 1484
  29436. }
  29437. },
  29438. },
  29439. [
  29440. {
  29441. name: "Travel-Sized",
  29442. height: math.unit(7.45, "inches")
  29443. },
  29444. {
  29445. name: "Normal",
  29446. height: math.unit(7 + 6.451 / 12, "feet"),
  29447. default: true
  29448. },
  29449. {
  29450. name: "Hitting the Town",
  29451. height: math.unit(37 + 8 / 12, "feet")
  29452. },
  29453. {
  29454. name: "Stomp in the Suburbs",
  29455. height: math.unit(964 + 9.728 / 12, "feet")
  29456. },
  29457. {
  29458. name: "Sit on the City",
  29459. height: math.unit(61747 + 10.592 / 12, "feet")
  29460. },
  29461. {
  29462. name: "Glomp the Globe",
  29463. height: math.unit(252919327 + 4.832 / 12, "feet")
  29464. },
  29465. ]
  29466. ))
  29467. characterMakers.push(() => makeCharacter(
  29468. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29469. {
  29470. front: {
  29471. height: math.unit(6 + 4 / 12, "feet"),
  29472. weight: math.unit(320, "lb"),
  29473. name: "Front",
  29474. image: {
  29475. source: "./media/characters/balina-mahigan/front.svg",
  29476. extra: 447 / 428,
  29477. bottom: 18 / 466
  29478. }
  29479. },
  29480. back: {
  29481. height: math.unit(6 + 4 / 12, "feet"),
  29482. weight: math.unit(320, "lb"),
  29483. name: "Back",
  29484. image: {
  29485. source: "./media/characters/balina-mahigan/back.svg",
  29486. extra: 445 / 428,
  29487. bottom: 4.07 / 448
  29488. }
  29489. },
  29490. arm: {
  29491. height: math.unit(1.88, "feet"),
  29492. name: "Arm",
  29493. image: {
  29494. source: "./media/characters/balina-mahigan/arm.svg"
  29495. }
  29496. },
  29497. backPort: {
  29498. height: math.unit(0.685, "feet"),
  29499. name: "Back Port",
  29500. image: {
  29501. source: "./media/characters/balina-mahigan/back-port.svg"
  29502. }
  29503. },
  29504. hoofpaw: {
  29505. height: math.unit(1.41, "feet"),
  29506. name: "Hoofpaw",
  29507. image: {
  29508. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29509. }
  29510. },
  29511. leftHandBack: {
  29512. height: math.unit(0.938, "feet"),
  29513. name: "Left Hand (Back)",
  29514. image: {
  29515. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29516. }
  29517. },
  29518. leftHandFront: {
  29519. height: math.unit(0.938, "feet"),
  29520. name: "Left Hand (Front)",
  29521. image: {
  29522. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29523. }
  29524. },
  29525. rightHandBack: {
  29526. height: math.unit(0.95, "feet"),
  29527. name: "Right Hand (Back)",
  29528. image: {
  29529. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29530. }
  29531. },
  29532. rightHandFront: {
  29533. height: math.unit(0.95, "feet"),
  29534. name: "Right Hand (Front)",
  29535. image: {
  29536. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Normal",
  29543. height: math.unit(6 + 4 / 12, "feet"),
  29544. default: true
  29545. },
  29546. ]
  29547. ))
  29548. characterMakers.push(() => makeCharacter(
  29549. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29550. {
  29551. front: {
  29552. height: math.unit(6, "feet"),
  29553. weight: math.unit(320, "lb"),
  29554. name: "Front",
  29555. image: {
  29556. source: "./media/characters/balina-mejeri/front.svg",
  29557. extra: 517 / 488,
  29558. bottom: 44.2 / 561
  29559. }
  29560. },
  29561. },
  29562. [
  29563. {
  29564. name: "Normal",
  29565. height: math.unit(6 + 4 / 12, "feet")
  29566. },
  29567. {
  29568. name: "Business",
  29569. height: math.unit(155, "feet"),
  29570. default: true
  29571. },
  29572. ]
  29573. ))
  29574. characterMakers.push(() => makeCharacter(
  29575. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29576. {
  29577. kneeling: {
  29578. height: math.unit(6 + 4 / 12, "feet"),
  29579. weight: math.unit(300 * 20, "lb"),
  29580. name: "Kneeling",
  29581. image: {
  29582. source: "./media/characters/balbarian/kneeling.svg",
  29583. extra: 922 / 862,
  29584. bottom: 42.4 / 965
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Normal",
  29591. height: math.unit(6 + 4 / 12, "feet")
  29592. },
  29593. {
  29594. name: "Treasured",
  29595. height: math.unit(18 + 9 / 12, "feet"),
  29596. default: true
  29597. },
  29598. {
  29599. name: "Macro",
  29600. height: math.unit(900, "feet")
  29601. },
  29602. ]
  29603. ))
  29604. characterMakers.push(() => makeCharacter(
  29605. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29606. {
  29607. front: {
  29608. height: math.unit(6 + 4 / 12, "feet"),
  29609. weight: math.unit(325, "lb"),
  29610. name: "Front",
  29611. image: {
  29612. source: "./media/characters/balina-amarini/front.svg",
  29613. extra: 415 / 403,
  29614. bottom: 19 / 433.4
  29615. }
  29616. },
  29617. back: {
  29618. height: math.unit(6 + 4 / 12, "feet"),
  29619. weight: math.unit(325, "lb"),
  29620. name: "Back",
  29621. image: {
  29622. source: "./media/characters/balina-amarini/back.svg",
  29623. extra: 415 / 403,
  29624. bottom: 13.5 / 432
  29625. }
  29626. },
  29627. overdrive: {
  29628. height: math.unit(6 + 4 / 12, "feet"),
  29629. weight: math.unit(400, "lb"),
  29630. name: "Overdrive",
  29631. image: {
  29632. source: "./media/characters/balina-amarini/overdrive.svg",
  29633. extra: 269 / 259,
  29634. bottom: 12 / 282
  29635. }
  29636. },
  29637. },
  29638. [
  29639. {
  29640. name: "Boom",
  29641. height: math.unit(9 + 10 / 12, "feet"),
  29642. default: true
  29643. },
  29644. {
  29645. name: "Macro",
  29646. height: math.unit(280, "feet")
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29652. {
  29653. goddess: {
  29654. height: math.unit(600, "feet"),
  29655. weight: math.unit(2000000, "tons"),
  29656. name: "Goddess",
  29657. image: {
  29658. source: "./media/characters/lady-kubwa/goddess.svg",
  29659. extra: 1240.5 / 1223,
  29660. bottom: 22 / 1263
  29661. }
  29662. },
  29663. goddesser: {
  29664. height: math.unit(900, "feet"),
  29665. weight: math.unit(20000000, "lb"),
  29666. name: "Goddess-er",
  29667. image: {
  29668. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29669. extra: 899 / 888,
  29670. bottom: 12.6 / 912
  29671. }
  29672. },
  29673. },
  29674. [
  29675. {
  29676. name: "Macro",
  29677. height: math.unit(600, "feet"),
  29678. default: true
  29679. },
  29680. {
  29681. name: "Megamacro",
  29682. height: math.unit(250, "miles")
  29683. },
  29684. ]
  29685. ))
  29686. characterMakers.push(() => makeCharacter(
  29687. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29688. {
  29689. front: {
  29690. height: math.unit(7 + 7 / 12, "feet"),
  29691. weight: math.unit(250, "lb"),
  29692. name: "Front",
  29693. image: {
  29694. source: "./media/characters/tala-grovehorn/front.svg",
  29695. extra: 2636 / 2525,
  29696. bottom: 147 / 2781
  29697. }
  29698. },
  29699. back: {
  29700. height: math.unit(7 + 7 / 12, "feet"),
  29701. weight: math.unit(250, "lb"),
  29702. name: "Back",
  29703. image: {
  29704. source: "./media/characters/tala-grovehorn/back.svg",
  29705. extra: 2635 / 2539,
  29706. bottom: 100 / 2732.8
  29707. }
  29708. },
  29709. mouth: {
  29710. height: math.unit(1.15, "feet"),
  29711. name: "Mouth",
  29712. image: {
  29713. source: "./media/characters/tala-grovehorn/mouth.svg"
  29714. }
  29715. },
  29716. dick: {
  29717. height: math.unit(2.36, "feet"),
  29718. name: "Dick",
  29719. image: {
  29720. source: "./media/characters/tala-grovehorn/dick.svg"
  29721. }
  29722. },
  29723. slit: {
  29724. height: math.unit(0.61, "feet"),
  29725. name: "Slit",
  29726. image: {
  29727. source: "./media/characters/tala-grovehorn/slit.svg"
  29728. }
  29729. },
  29730. },
  29731. [
  29732. ]
  29733. ))
  29734. characterMakers.push(() => makeCharacter(
  29735. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29736. {
  29737. front: {
  29738. height: math.unit(7 + 7 / 12, "feet"),
  29739. weight: math.unit(225, "lb"),
  29740. name: "Front",
  29741. image: {
  29742. source: "./media/characters/epona/front.svg",
  29743. extra: 2445 / 2290,
  29744. bottom: 251 / 2696
  29745. }
  29746. },
  29747. back: {
  29748. height: math.unit(7 + 7 / 12, "feet"),
  29749. weight: math.unit(225, "lb"),
  29750. name: "Back",
  29751. image: {
  29752. source: "./media/characters/epona/back.svg",
  29753. extra: 2546 / 2408,
  29754. bottom: 44 / 2589
  29755. }
  29756. },
  29757. genitals: {
  29758. height: math.unit(1.5, "feet"),
  29759. name: "Genitals",
  29760. image: {
  29761. source: "./media/characters/epona/genitals.svg"
  29762. }
  29763. },
  29764. },
  29765. [
  29766. {
  29767. name: "Normal",
  29768. height: math.unit(7 + 7 / 12, "feet"),
  29769. default: true
  29770. },
  29771. ]
  29772. ))
  29773. characterMakers.push(() => makeCharacter(
  29774. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29775. {
  29776. front: {
  29777. height: math.unit(7, "feet"),
  29778. weight: math.unit(518, "lb"),
  29779. name: "Front",
  29780. image: {
  29781. source: "./media/characters/avia-bloodbourn/front.svg",
  29782. extra: 1466 / 1350,
  29783. bottom: 65 / 1527
  29784. }
  29785. },
  29786. },
  29787. [
  29788. ]
  29789. ))
  29790. characterMakers.push(() => makeCharacter(
  29791. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29792. {
  29793. front: {
  29794. height: math.unit(9.35, "feet"),
  29795. weight: math.unit(600, "lb"),
  29796. name: "Front",
  29797. image: {
  29798. source: "./media/characters/amera/front.svg",
  29799. extra: 891 / 818,
  29800. bottom: 30 / 922.7
  29801. }
  29802. },
  29803. back: {
  29804. height: math.unit(9.35, "feet"),
  29805. weight: math.unit(600, "lb"),
  29806. name: "Back",
  29807. image: {
  29808. source: "./media/characters/amera/back.svg",
  29809. extra: 876 / 824,
  29810. bottom: 6.8 / 884
  29811. }
  29812. },
  29813. dick: {
  29814. height: math.unit(2.14, "feet"),
  29815. name: "Dick",
  29816. image: {
  29817. source: "./media/characters/amera/dick.svg"
  29818. }
  29819. },
  29820. },
  29821. [
  29822. {
  29823. name: "Normal",
  29824. height: math.unit(9.35, "feet"),
  29825. default: true
  29826. },
  29827. ]
  29828. ))
  29829. characterMakers.push(() => makeCharacter(
  29830. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29831. {
  29832. kneeling: {
  29833. height: math.unit(3 + 4 / 12, "feet"),
  29834. weight: math.unit(90, "lb"),
  29835. name: "Kneeling",
  29836. image: {
  29837. source: "./media/characters/rosewen/kneeling.svg",
  29838. extra: 1835 / 1571,
  29839. bottom: 27.7 / 1862
  29840. }
  29841. },
  29842. },
  29843. [
  29844. {
  29845. name: "Normal",
  29846. height: math.unit(3 + 4 / 12, "feet"),
  29847. default: true
  29848. },
  29849. ]
  29850. ))
  29851. characterMakers.push(() => makeCharacter(
  29852. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29853. {
  29854. front: {
  29855. height: math.unit(5 + 10 / 12, "feet"),
  29856. weight: math.unit(200, "lb"),
  29857. name: "Front",
  29858. image: {
  29859. source: "./media/characters/sabah/front.svg",
  29860. extra: 849 / 763,
  29861. bottom: 33.9 / 881
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(5 + 10 / 12, "feet"),
  29869. default: true
  29870. },
  29871. ]
  29872. ))
  29873. characterMakers.push(() => makeCharacter(
  29874. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29875. {
  29876. front: {
  29877. height: math.unit(3 + 5 / 12, "feet"),
  29878. weight: math.unit(40, "kg"),
  29879. name: "Front",
  29880. image: {
  29881. source: "./media/characters/purple-flame/front.svg",
  29882. extra: 1577 / 1412,
  29883. bottom: 97 / 1694
  29884. }
  29885. },
  29886. frontDressed: {
  29887. height: math.unit(3 + 5 / 12, "feet"),
  29888. weight: math.unit(40, "kg"),
  29889. name: "Front (Dressed)",
  29890. image: {
  29891. source: "./media/characters/purple-flame/front-dressed.svg",
  29892. extra: 1577 / 1412,
  29893. bottom: 97 / 1694
  29894. }
  29895. },
  29896. headphones: {
  29897. height: math.unit(0.85, "feet"),
  29898. name: "Headphones",
  29899. image: {
  29900. source: "./media/characters/purple-flame/headphones.svg"
  29901. }
  29902. },
  29903. },
  29904. [
  29905. {
  29906. name: "Really Small",
  29907. height: math.unit(5, "cm")
  29908. },
  29909. {
  29910. name: "Micro",
  29911. height: math.unit(1 + 5 / 12, "feet")
  29912. },
  29913. {
  29914. name: "Normal",
  29915. height: math.unit(3 + 5 / 12, "feet"),
  29916. default: true
  29917. },
  29918. {
  29919. name: "Minimacro",
  29920. height: math.unit(125, "feet")
  29921. },
  29922. {
  29923. name: "Macro",
  29924. height: math.unit(0.5, "miles")
  29925. },
  29926. {
  29927. name: "Megamacro",
  29928. height: math.unit(50, "miles")
  29929. },
  29930. {
  29931. name: "Gigantic",
  29932. height: math.unit(750, "miles")
  29933. },
  29934. {
  29935. name: "Planetary",
  29936. height: math.unit(15000, "miles")
  29937. },
  29938. ]
  29939. ))
  29940. characterMakers.push(() => makeCharacter(
  29941. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29942. {
  29943. front: {
  29944. height: math.unit(14, "feet"),
  29945. weight: math.unit(959, "lb"),
  29946. name: "Front",
  29947. image: {
  29948. source: "./media/characters/arsenal/front.svg",
  29949. extra: 2357 / 2157,
  29950. bottom: 93 / 2458
  29951. }
  29952. },
  29953. },
  29954. [
  29955. {
  29956. name: "Normal",
  29957. height: math.unit(14, "feet"),
  29958. default: true
  29959. },
  29960. ]
  29961. ))
  29962. characterMakers.push(() => makeCharacter(
  29963. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29964. {
  29965. front: {
  29966. height: math.unit(6, "feet"),
  29967. weight: math.unit(150, "lb"),
  29968. name: "Front",
  29969. image: {
  29970. source: "./media/characters/adira/front.svg",
  29971. extra: 2121/2013,
  29972. bottom: 206/2327
  29973. }
  29974. },
  29975. },
  29976. [
  29977. {
  29978. name: "Micro",
  29979. height: math.unit(4, "inches"),
  29980. default: true
  29981. },
  29982. {
  29983. name: "Macro",
  29984. height: math.unit(50, "feet")
  29985. },
  29986. ]
  29987. ))
  29988. characterMakers.push(() => makeCharacter(
  29989. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29990. {
  29991. front: {
  29992. height: math.unit(16, "feet"),
  29993. weight: math.unit(1000, "lb"),
  29994. name: "Front",
  29995. image: {
  29996. source: "./media/characters/grim/front.svg",
  29997. extra: 622 / 614,
  29998. bottom: 18.1 / 642
  29999. }
  30000. },
  30001. back: {
  30002. height: math.unit(16, "feet"),
  30003. weight: math.unit(1000, "lb"),
  30004. name: "Back",
  30005. image: {
  30006. source: "./media/characters/grim/back.svg",
  30007. extra: 610.6 / 602,
  30008. bottom: 40.8 / 652
  30009. }
  30010. },
  30011. hunched: {
  30012. height: math.unit(9.75, "feet"),
  30013. weight: math.unit(1000, "lb"),
  30014. name: "Hunched",
  30015. image: {
  30016. source: "./media/characters/grim/hunched.svg",
  30017. extra: 304 / 297,
  30018. bottom: 35.4 / 394
  30019. }
  30020. },
  30021. },
  30022. [
  30023. {
  30024. name: "Normal",
  30025. height: math.unit(16, "feet"),
  30026. default: true
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  30032. {
  30033. front: {
  30034. height: math.unit(2.3, "meters"),
  30035. weight: math.unit(300, "lb"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/sinja/front-sfw.svg",
  30039. extra: 1393 / 1294,
  30040. bottom: 70 / 1463
  30041. }
  30042. },
  30043. frontNsfw: {
  30044. height: math.unit(2.3, "meters"),
  30045. weight: math.unit(300, "lb"),
  30046. name: "Front (NSFW)",
  30047. image: {
  30048. source: "./media/characters/sinja/front-nsfw.svg",
  30049. extra: 1393 / 1294,
  30050. bottom: 70 / 1463
  30051. }
  30052. },
  30053. back: {
  30054. height: math.unit(2.3, "meters"),
  30055. weight: math.unit(300, "lb"),
  30056. name: "Back",
  30057. image: {
  30058. source: "./media/characters/sinja/back.svg",
  30059. extra: 1393 / 1294,
  30060. bottom: 70 / 1463
  30061. }
  30062. },
  30063. head: {
  30064. height: math.unit(1.771, "feet"),
  30065. name: "Head",
  30066. image: {
  30067. source: "./media/characters/sinja/head.svg"
  30068. }
  30069. },
  30070. slit: {
  30071. height: math.unit(0.8, "feet"),
  30072. name: "Slit",
  30073. image: {
  30074. source: "./media/characters/sinja/slit.svg"
  30075. }
  30076. },
  30077. },
  30078. [
  30079. {
  30080. name: "Normal",
  30081. height: math.unit(2.3, "meters")
  30082. },
  30083. {
  30084. name: "Macro",
  30085. height: math.unit(91, "meters"),
  30086. default: true
  30087. },
  30088. {
  30089. name: "Megamacro",
  30090. height: math.unit(91440, "meters")
  30091. },
  30092. {
  30093. name: "Gigamacro",
  30094. height: math.unit(60960000, "meters")
  30095. },
  30096. {
  30097. name: "Teramacro",
  30098. height: math.unit(9144000000, "meters")
  30099. },
  30100. ]
  30101. ))
  30102. characterMakers.push(() => makeCharacter(
  30103. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  30104. {
  30105. front: {
  30106. height: math.unit(1.7, "meters"),
  30107. weight: math.unit(130, "lb"),
  30108. name: "Front",
  30109. image: {
  30110. source: "./media/characters/kyu/front.svg",
  30111. extra: 415 / 395,
  30112. bottom: 5 / 420
  30113. }
  30114. },
  30115. head: {
  30116. height: math.unit(1.75, "feet"),
  30117. name: "Head",
  30118. image: {
  30119. source: "./media/characters/kyu/head.svg"
  30120. }
  30121. },
  30122. foot: {
  30123. height: math.unit(0.81, "feet"),
  30124. name: "Foot",
  30125. image: {
  30126. source: "./media/characters/kyu/foot.svg"
  30127. }
  30128. },
  30129. },
  30130. [
  30131. {
  30132. name: "Normal",
  30133. height: math.unit(1.7, "meters")
  30134. },
  30135. {
  30136. name: "Macro",
  30137. height: math.unit(131, "feet"),
  30138. default: true
  30139. },
  30140. {
  30141. name: "Megamacro",
  30142. height: math.unit(91440, "meters")
  30143. },
  30144. {
  30145. name: "Gigamacro",
  30146. height: math.unit(60960000, "meters")
  30147. },
  30148. {
  30149. name: "Teramacro",
  30150. height: math.unit(9144000000, "meters")
  30151. },
  30152. ]
  30153. ))
  30154. characterMakers.push(() => makeCharacter(
  30155. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30156. {
  30157. front: {
  30158. height: math.unit(7 + 1 / 12, "feet"),
  30159. weight: math.unit(250, "lb"),
  30160. name: "Front",
  30161. image: {
  30162. source: "./media/characters/joey/front.svg",
  30163. extra: 1791 / 1537,
  30164. bottom: 28 / 1816
  30165. }
  30166. },
  30167. },
  30168. [
  30169. {
  30170. name: "Micro",
  30171. height: math.unit(3, "inches")
  30172. },
  30173. {
  30174. name: "Normal",
  30175. height: math.unit(7 + 1 / 12, "feet"),
  30176. default: true
  30177. },
  30178. ]
  30179. ))
  30180. characterMakers.push(() => makeCharacter(
  30181. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30182. {
  30183. front: {
  30184. height: math.unit(165, "cm"),
  30185. weight: math.unit(140, "lb"),
  30186. name: "Front",
  30187. image: {
  30188. source: "./media/characters/sam-evans/front.svg",
  30189. extra: 3417 / 3230,
  30190. bottom: 41.3 / 3417
  30191. }
  30192. },
  30193. frontSixTails: {
  30194. height: math.unit(165, "cm"),
  30195. weight: math.unit(140, "lb"),
  30196. name: "Front-six-tails",
  30197. image: {
  30198. source: "./media/characters/sam-evans/front-six-tails.svg",
  30199. extra: 3417 / 3230,
  30200. bottom: 41.3 / 3417
  30201. }
  30202. },
  30203. back: {
  30204. height: math.unit(165, "cm"),
  30205. weight: math.unit(140, "lb"),
  30206. name: "Back",
  30207. image: {
  30208. source: "./media/characters/sam-evans/back.svg",
  30209. extra: 3227 / 3032,
  30210. bottom: 6.8 / 3234
  30211. }
  30212. },
  30213. face: {
  30214. height: math.unit(0.68, "feet"),
  30215. name: "Face",
  30216. image: {
  30217. source: "./media/characters/sam-evans/face.svg"
  30218. }
  30219. },
  30220. },
  30221. [
  30222. {
  30223. name: "Normal",
  30224. height: math.unit(165, "cm"),
  30225. default: true
  30226. },
  30227. {
  30228. name: "Macro",
  30229. height: math.unit(100, "meters")
  30230. },
  30231. {
  30232. name: "Macro+",
  30233. height: math.unit(800, "meters")
  30234. },
  30235. {
  30236. name: "Macro++",
  30237. height: math.unit(3, "km")
  30238. },
  30239. {
  30240. name: "Macro+++",
  30241. height: math.unit(30, "km")
  30242. },
  30243. ]
  30244. ))
  30245. characterMakers.push(() => makeCharacter(
  30246. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30247. {
  30248. front: {
  30249. height: math.unit(10, "feet"),
  30250. weight: math.unit(750, "lb"),
  30251. name: "Front",
  30252. image: {
  30253. source: "./media/characters/juliet-a/front.svg",
  30254. extra: 1766 / 1720,
  30255. bottom: 43 / 1809
  30256. }
  30257. },
  30258. back: {
  30259. height: math.unit(10, "feet"),
  30260. weight: math.unit(750, "lb"),
  30261. name: "Back",
  30262. image: {
  30263. source: "./media/characters/juliet-a/back.svg",
  30264. extra: 1781 / 1734,
  30265. bottom: 35 / 1810,
  30266. }
  30267. },
  30268. },
  30269. [
  30270. {
  30271. name: "Normal",
  30272. height: math.unit(10, "feet"),
  30273. default: true
  30274. },
  30275. {
  30276. name: "Dragon Form",
  30277. height: math.unit(250, "feet")
  30278. },
  30279. {
  30280. name: "Macro",
  30281. height: math.unit(1000, "feet")
  30282. },
  30283. {
  30284. name: "Megamacro",
  30285. height: math.unit(10000, "feet")
  30286. }
  30287. ]
  30288. ))
  30289. characterMakers.push(() => makeCharacter(
  30290. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30291. {
  30292. regular: {
  30293. height: math.unit(7 + 3 / 12, "feet"),
  30294. weight: math.unit(260, "lb"),
  30295. name: "Regular",
  30296. image: {
  30297. source: "./media/characters/wild/regular.svg",
  30298. extra: 97.45 / 92,
  30299. bottom: 6.8 / 104.3
  30300. }
  30301. },
  30302. biggums: {
  30303. height: math.unit(8 + 6 / 12, "feet"),
  30304. weight: math.unit(425, "lb"),
  30305. name: "Biggums",
  30306. image: {
  30307. source: "./media/characters/wild/biggums.svg",
  30308. extra: 97.45 / 92,
  30309. bottom: 7.5 / 132.34
  30310. }
  30311. },
  30312. mawRegular: {
  30313. height: math.unit(1.24, "feet"),
  30314. name: "Maw (Regular)",
  30315. image: {
  30316. source: "./media/characters/wild/maw.svg"
  30317. }
  30318. },
  30319. mawBiggums: {
  30320. height: math.unit(1.47, "feet"),
  30321. name: "Maw (Biggums)",
  30322. image: {
  30323. source: "./media/characters/wild/maw.svg"
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Normal",
  30330. height: math.unit(7 + 3 / 12, "feet"),
  30331. default: true
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30337. {
  30338. front: {
  30339. height: math.unit(2.5, "meters"),
  30340. weight: math.unit(200, "kg"),
  30341. name: "Front",
  30342. image: {
  30343. source: "./media/characters/vidar/front.svg",
  30344. extra: 2994 / 2795,
  30345. bottom: 56 / 3061
  30346. }
  30347. },
  30348. back: {
  30349. height: math.unit(2.5, "meters"),
  30350. weight: math.unit(200, "kg"),
  30351. name: "Back",
  30352. image: {
  30353. source: "./media/characters/vidar/back.svg",
  30354. extra: 3131 / 2928,
  30355. bottom: 13.5 / 3141.5
  30356. }
  30357. },
  30358. feral: {
  30359. height: math.unit(2.5, "meters"),
  30360. weight: math.unit(2000, "kg"),
  30361. name: "Feral",
  30362. image: {
  30363. source: "./media/characters/vidar/feral.svg",
  30364. extra: 2790 / 1765,
  30365. bottom: 6 / 2796
  30366. }
  30367. },
  30368. },
  30369. [
  30370. {
  30371. name: "Normal",
  30372. height: math.unit(2.5, "meters"),
  30373. default: true
  30374. },
  30375. {
  30376. name: "Macro",
  30377. height: math.unit(100, "meters")
  30378. },
  30379. ]
  30380. ))
  30381. characterMakers.push(() => makeCharacter(
  30382. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30383. {
  30384. front: {
  30385. height: math.unit(5 + 9 / 12, "feet"),
  30386. weight: math.unit(120, "lb"),
  30387. name: "Front",
  30388. image: {
  30389. source: "./media/characters/ash/front.svg",
  30390. extra: 2189 / 1961,
  30391. bottom: 5.2 / 2194
  30392. }
  30393. },
  30394. },
  30395. [
  30396. {
  30397. name: "Normal",
  30398. height: math.unit(5 + 9 / 12, "feet"),
  30399. default: true
  30400. },
  30401. ]
  30402. ))
  30403. characterMakers.push(() => makeCharacter(
  30404. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30405. {
  30406. front: {
  30407. height: math.unit(9, "feet"),
  30408. weight: math.unit(10000, "lb"),
  30409. name: "Front",
  30410. image: {
  30411. source: "./media/characters/gygabite/front.svg",
  30412. bottom: 31.7 / 537.8,
  30413. extra: 505 / 370
  30414. }
  30415. },
  30416. },
  30417. [
  30418. {
  30419. name: "Normal",
  30420. height: math.unit(9, "feet"),
  30421. default: true
  30422. },
  30423. ]
  30424. ))
  30425. characterMakers.push(() => makeCharacter(
  30426. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30427. {
  30428. front: {
  30429. height: math.unit(12, "feet"),
  30430. weight: math.unit(4000, "lb"),
  30431. name: "Front",
  30432. image: {
  30433. source: "./media/characters/p0tat0/front.svg",
  30434. extra: 1065 / 921,
  30435. bottom: 55.7 / 1121.25
  30436. }
  30437. },
  30438. },
  30439. [
  30440. {
  30441. name: "Normal",
  30442. height: math.unit(12, "feet"),
  30443. default: true
  30444. },
  30445. ]
  30446. ))
  30447. characterMakers.push(() => makeCharacter(
  30448. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30449. {
  30450. side: {
  30451. height: math.unit(6.5, "feet"),
  30452. weight: math.unit(800, "lb"),
  30453. name: "Side",
  30454. image: {
  30455. source: "./media/characters/dusk/side.svg",
  30456. extra: 615 / 373,
  30457. bottom: 53 / 664
  30458. }
  30459. },
  30460. sitting: {
  30461. height: math.unit(7, "feet"),
  30462. weight: math.unit(800, "lb"),
  30463. name: "Sitting",
  30464. image: {
  30465. source: "./media/characters/dusk/sitting.svg",
  30466. extra: 753 / 425,
  30467. bottom: 33 / 774
  30468. }
  30469. },
  30470. head: {
  30471. height: math.unit(6.1, "feet"),
  30472. name: "Head",
  30473. image: {
  30474. source: "./media/characters/dusk/head.svg"
  30475. }
  30476. },
  30477. },
  30478. [
  30479. {
  30480. name: "Normal",
  30481. height: math.unit(7, "feet"),
  30482. default: true
  30483. },
  30484. ]
  30485. ))
  30486. characterMakers.push(() => makeCharacter(
  30487. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30488. {
  30489. front: {
  30490. height: math.unit(15, "feet"),
  30491. weight: math.unit(7000, "lb"),
  30492. name: "Front",
  30493. image: {
  30494. source: "./media/characters/jay-direwolf/front.svg",
  30495. extra: 1810 / 1732,
  30496. bottom: 66 / 1892
  30497. }
  30498. },
  30499. },
  30500. [
  30501. {
  30502. name: "Normal",
  30503. height: math.unit(15, "feet"),
  30504. default: true
  30505. },
  30506. ]
  30507. ))
  30508. characterMakers.push(() => makeCharacter(
  30509. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30510. {
  30511. front: {
  30512. height: math.unit(4 + 9 / 12, "feet"),
  30513. weight: math.unit(130, "lb"),
  30514. name: "Front",
  30515. image: {
  30516. source: "./media/characters/anchovie/front.svg",
  30517. extra: 382 / 350,
  30518. bottom: 25 / 409
  30519. }
  30520. },
  30521. back: {
  30522. height: math.unit(4 + 9 / 12, "feet"),
  30523. weight: math.unit(130, "lb"),
  30524. name: "Back",
  30525. image: {
  30526. source: "./media/characters/anchovie/back.svg",
  30527. extra: 385 / 352,
  30528. bottom: 16.6 / 402
  30529. }
  30530. },
  30531. frontDressed: {
  30532. height: math.unit(4 + 9 / 12, "feet"),
  30533. weight: math.unit(130, "lb"),
  30534. name: "Front (Dressed)",
  30535. image: {
  30536. source: "./media/characters/anchovie/front-dressed.svg",
  30537. extra: 382 / 350,
  30538. bottom: 25 / 409
  30539. }
  30540. },
  30541. backDressed: {
  30542. height: math.unit(4 + 9 / 12, "feet"),
  30543. weight: math.unit(130, "lb"),
  30544. name: "Back (Dressed)",
  30545. image: {
  30546. source: "./media/characters/anchovie/back-dressed.svg",
  30547. extra: 385 / 352,
  30548. bottom: 16.6 / 402
  30549. }
  30550. },
  30551. },
  30552. [
  30553. {
  30554. name: "Micro",
  30555. height: math.unit(6.4, "inches")
  30556. },
  30557. {
  30558. name: "Normal",
  30559. height: math.unit(4 + 9 / 12, "feet"),
  30560. default: true
  30561. },
  30562. ]
  30563. ))
  30564. characterMakers.push(() => makeCharacter(
  30565. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30566. {
  30567. front: {
  30568. height: math.unit(2, "meters"),
  30569. weight: math.unit(180, "lb"),
  30570. name: "Front",
  30571. image: {
  30572. source: "./media/characters/acidrenamon/front.svg",
  30573. extra: 987 / 890,
  30574. bottom: 22.8 / 1009
  30575. }
  30576. },
  30577. back: {
  30578. height: math.unit(2, "meters"),
  30579. weight: math.unit(180, "lb"),
  30580. name: "Back",
  30581. image: {
  30582. source: "./media/characters/acidrenamon/back.svg",
  30583. extra: 983 / 891,
  30584. bottom: 8.4 / 992
  30585. }
  30586. },
  30587. head: {
  30588. height: math.unit(1.92, "feet"),
  30589. name: "Head",
  30590. image: {
  30591. source: "./media/characters/acidrenamon/head.svg"
  30592. }
  30593. },
  30594. rump: {
  30595. height: math.unit(1.72, "feet"),
  30596. name: "Rump",
  30597. image: {
  30598. source: "./media/characters/acidrenamon/rump.svg"
  30599. }
  30600. },
  30601. tail: {
  30602. height: math.unit(4.2, "feet"),
  30603. name: "Tail",
  30604. image: {
  30605. source: "./media/characters/acidrenamon/tail.svg"
  30606. }
  30607. },
  30608. },
  30609. [
  30610. {
  30611. name: "Normal",
  30612. height: math.unit(2, "meters"),
  30613. default: true
  30614. },
  30615. {
  30616. name: "Minimacro",
  30617. height: math.unit(7, "meters")
  30618. },
  30619. {
  30620. name: "Macro",
  30621. height: math.unit(200, "meters")
  30622. },
  30623. {
  30624. name: "Gigamacro",
  30625. height: math.unit(0.2, "earths")
  30626. },
  30627. ]
  30628. ))
  30629. characterMakers.push(() => makeCharacter(
  30630. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30631. {
  30632. front: {
  30633. height: math.unit(152, "feet"),
  30634. name: "Front",
  30635. image: {
  30636. source: "./media/characters/kenzie-lee/front.svg",
  30637. extra: 1869/1774,
  30638. bottom: 128/1997
  30639. }
  30640. },
  30641. side: {
  30642. height: math.unit(86, "feet"),
  30643. name: "Side",
  30644. image: {
  30645. source: "./media/characters/kenzie-lee/side.svg",
  30646. extra: 930/815,
  30647. bottom: 177/1107
  30648. }
  30649. },
  30650. paw: {
  30651. height: math.unit(15, "feet"),
  30652. name: "Paw",
  30653. image: {
  30654. source: "./media/characters/kenzie-lee/paw.svg"
  30655. }
  30656. },
  30657. },
  30658. [
  30659. {
  30660. name: "Kenzie Flea",
  30661. height: math.unit(2, "mm"),
  30662. default: true
  30663. },
  30664. {
  30665. name: "Micro",
  30666. height: math.unit(2, "inches")
  30667. },
  30668. {
  30669. name: "Normal",
  30670. height: math.unit(152, "feet")
  30671. },
  30672. {
  30673. name: "Megamacro",
  30674. height: math.unit(7, "miles")
  30675. },
  30676. {
  30677. name: "Gigamacro",
  30678. height: math.unit(8000, "miles")
  30679. },
  30680. ]
  30681. ))
  30682. characterMakers.push(() => makeCharacter(
  30683. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30684. {
  30685. front: {
  30686. height: math.unit(6, "feet"),
  30687. name: "Front",
  30688. image: {
  30689. source: "./media/characters/withers/front.svg",
  30690. extra: 1935/1760,
  30691. bottom: 72/2007
  30692. }
  30693. },
  30694. back: {
  30695. height: math.unit(6, "feet"),
  30696. name: "Back",
  30697. image: {
  30698. source: "./media/characters/withers/back.svg",
  30699. extra: 1944/1792,
  30700. bottom: 12/1956
  30701. }
  30702. },
  30703. dressed: {
  30704. height: math.unit(6, "feet"),
  30705. name: "Dressed",
  30706. image: {
  30707. source: "./media/characters/withers/dressed.svg",
  30708. extra: 1937/1765,
  30709. bottom: 73/2010
  30710. }
  30711. },
  30712. phase1: {
  30713. height: math.unit(1.1, "feet"),
  30714. name: "Phase 1",
  30715. image: {
  30716. source: "./media/characters/withers/phase-1.svg",
  30717. extra: 1885/1232,
  30718. bottom: 0/1885
  30719. }
  30720. },
  30721. phase2: {
  30722. height: math.unit(1.05, "feet"),
  30723. name: "Phase 2",
  30724. image: {
  30725. source: "./media/characters/withers/phase-2.svg",
  30726. extra: 1792/1090,
  30727. bottom: 0/1792
  30728. }
  30729. },
  30730. partyWipe: {
  30731. height: math.unit(1.1, "feet"),
  30732. name: "Party Wipe",
  30733. image: {
  30734. source: "./media/characters/withers/party-wipe.svg",
  30735. extra: 1864/1207,
  30736. bottom: 0/1864
  30737. }
  30738. },
  30739. },
  30740. [
  30741. {
  30742. name: "Macro",
  30743. height: math.unit(167, "feet"),
  30744. default: true
  30745. },
  30746. {
  30747. name: "Megamacro",
  30748. height: math.unit(15, "miles")
  30749. }
  30750. ]
  30751. ))
  30752. characterMakers.push(() => makeCharacter(
  30753. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30754. {
  30755. front: {
  30756. height: math.unit(6 + 7 / 12, "feet"),
  30757. weight: math.unit(250, "lb"),
  30758. name: "Front",
  30759. image: {
  30760. source: "./media/characters/nemoskii/front.svg",
  30761. extra: 2270 / 1734,
  30762. bottom: 86 / 2354
  30763. }
  30764. },
  30765. back: {
  30766. height: math.unit(6 + 7 / 12, "feet"),
  30767. weight: math.unit(250, "lb"),
  30768. name: "Back",
  30769. image: {
  30770. source: "./media/characters/nemoskii/back.svg",
  30771. extra: 1845 / 1788,
  30772. bottom: 10.5 / 1852
  30773. }
  30774. },
  30775. head: {
  30776. height: math.unit(1.31, "feet"),
  30777. name: "Head",
  30778. image: {
  30779. source: "./media/characters/nemoskii/head.svg"
  30780. }
  30781. },
  30782. },
  30783. [
  30784. {
  30785. name: "Micro",
  30786. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30787. },
  30788. {
  30789. name: "Normal",
  30790. height: math.unit(6 + 7 / 12, "feet"),
  30791. default: true
  30792. },
  30793. {
  30794. name: "Macro",
  30795. height: math.unit((6 + 7 / 12) * 150, "feet")
  30796. },
  30797. {
  30798. name: "Macro+",
  30799. height: math.unit((6 + 7 / 12) * 500, "feet")
  30800. },
  30801. {
  30802. name: "Megamacro",
  30803. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30804. },
  30805. ]
  30806. ))
  30807. characterMakers.push(() => makeCharacter(
  30808. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30809. {
  30810. front: {
  30811. height: math.unit(1, "mile"),
  30812. weight: math.unit(265261.9, "lb"),
  30813. name: "Front",
  30814. image: {
  30815. source: "./media/characters/shui/front.svg",
  30816. extra: 1633 / 1564,
  30817. bottom: 91.5 / 1726
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Macro",
  30824. height: math.unit(1, "mile"),
  30825. default: true
  30826. },
  30827. ]
  30828. ))
  30829. characterMakers.push(() => makeCharacter(
  30830. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30831. {
  30832. front: {
  30833. height: math.unit(12 + 6 / 12, "feet"),
  30834. weight: math.unit(1342, "lb"),
  30835. name: "Front",
  30836. image: {
  30837. source: "./media/characters/arokh-takakura/front.svg",
  30838. extra: 1089 / 1043,
  30839. bottom: 77.4 / 1176.7
  30840. }
  30841. },
  30842. back: {
  30843. height: math.unit(12 + 6 / 12, "feet"),
  30844. weight: math.unit(1342, "lb"),
  30845. name: "Back",
  30846. image: {
  30847. source: "./media/characters/arokh-takakura/back.svg",
  30848. extra: 1046 / 1019,
  30849. bottom: 102 / 1150
  30850. }
  30851. },
  30852. },
  30853. [
  30854. {
  30855. name: "Big",
  30856. height: math.unit(12 + 6 / 12, "feet"),
  30857. default: true
  30858. },
  30859. ]
  30860. ))
  30861. characterMakers.push(() => makeCharacter(
  30862. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30863. {
  30864. front: {
  30865. height: math.unit(5 + 6 / 12, "feet"),
  30866. weight: math.unit(150, "lb"),
  30867. name: "Front",
  30868. image: {
  30869. source: "./media/characters/theo/front.svg",
  30870. extra: 1184 / 1131,
  30871. bottom: 7.4 / 1191
  30872. }
  30873. },
  30874. },
  30875. [
  30876. {
  30877. name: "Micro",
  30878. height: math.unit(5, "inches")
  30879. },
  30880. {
  30881. name: "Normal",
  30882. height: math.unit(5 + 6 / 12, "feet"),
  30883. default: true
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30889. {
  30890. front: {
  30891. height: math.unit(5 + 9 / 12, "feet"),
  30892. weight: math.unit(130, "lb"),
  30893. name: "Front",
  30894. image: {
  30895. source: "./media/characters/cecelia-swift/front.svg",
  30896. extra: 502 / 484,
  30897. bottom: 23 / 523
  30898. }
  30899. },
  30900. back: {
  30901. height: math.unit(5 + 9 / 12, "feet"),
  30902. weight: math.unit(130, "lb"),
  30903. name: "Back",
  30904. image: {
  30905. source: "./media/characters/cecelia-swift/back.svg",
  30906. extra: 499 / 485,
  30907. bottom: 12 / 511
  30908. }
  30909. },
  30910. head: {
  30911. height: math.unit(0.90, "feet"),
  30912. name: "Head",
  30913. image: {
  30914. source: "./media/characters/cecelia-swift/head.svg"
  30915. }
  30916. },
  30917. rump: {
  30918. height: math.unit(1.75, "feet"),
  30919. name: "Rump",
  30920. image: {
  30921. source: "./media/characters/cecelia-swift/rump.svg"
  30922. }
  30923. },
  30924. },
  30925. [
  30926. {
  30927. name: "Normal",
  30928. height: math.unit(5 + 9 / 12, "feet"),
  30929. default: true
  30930. },
  30931. {
  30932. name: "Big",
  30933. height: math.unit(50, "feet")
  30934. },
  30935. {
  30936. name: "Macro",
  30937. height: math.unit(100, "feet")
  30938. },
  30939. {
  30940. name: "Macro+",
  30941. height: math.unit(500, "feet")
  30942. },
  30943. {
  30944. name: "Macro++",
  30945. height: math.unit(1000, "feet")
  30946. },
  30947. ]
  30948. ))
  30949. characterMakers.push(() => makeCharacter(
  30950. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30951. {
  30952. front: {
  30953. height: math.unit(6, "feet"),
  30954. weight: math.unit(150, "lb"),
  30955. name: "Front",
  30956. image: {
  30957. source: "./media/characters/kaunan/front.svg",
  30958. extra: 2890 / 2523,
  30959. bottom: 49 / 2939
  30960. }
  30961. },
  30962. },
  30963. [
  30964. {
  30965. name: "Macro",
  30966. height: math.unit(150, "feet"),
  30967. default: true
  30968. },
  30969. ]
  30970. ))
  30971. characterMakers.push(() => makeCharacter(
  30972. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30973. {
  30974. dressed: {
  30975. height: math.unit(175, "cm"),
  30976. weight: math.unit(60, "kg"),
  30977. name: "Dressed",
  30978. image: {
  30979. source: "./media/characters/fei/dressed.svg",
  30980. extra: 1402/1278,
  30981. bottom: 27/1429
  30982. }
  30983. },
  30984. nude: {
  30985. height: math.unit(175, "cm"),
  30986. weight: math.unit(60, "kg"),
  30987. name: "Nude",
  30988. image: {
  30989. source: "./media/characters/fei/nude.svg",
  30990. extra: 1402/1278,
  30991. bottom: 27/1429
  30992. }
  30993. },
  30994. heels: {
  30995. height: math.unit(0.466, "feet"),
  30996. name: "Heels",
  30997. image: {
  30998. source: "./media/characters/fei/heels.svg",
  30999. extra: 156/152,
  31000. bottom: 28/184
  31001. }
  31002. },
  31003. },
  31004. [
  31005. {
  31006. name: "Mortal",
  31007. height: math.unit(175, "cm")
  31008. },
  31009. {
  31010. name: "Normal",
  31011. height: math.unit(3500, "m")
  31012. },
  31013. {
  31014. name: "Stroll",
  31015. height: math.unit(18.4, "km"),
  31016. default: true
  31017. },
  31018. {
  31019. name: "Showoff",
  31020. height: math.unit(175, "km")
  31021. },
  31022. ]
  31023. ))
  31024. characterMakers.push(() => makeCharacter(
  31025. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  31026. {
  31027. front: {
  31028. height: math.unit(7, "feet"),
  31029. weight: math.unit(1000, "kg"),
  31030. name: "Front",
  31031. image: {
  31032. source: "./media/characters/edrax/front.svg",
  31033. extra: 2838 / 2550,
  31034. bottom: 130 / 2968
  31035. }
  31036. },
  31037. },
  31038. [
  31039. {
  31040. name: "Small",
  31041. height: math.unit(7, "feet")
  31042. },
  31043. {
  31044. name: "Normal",
  31045. height: math.unit(1500, "meters")
  31046. },
  31047. {
  31048. name: "Mega",
  31049. height: math.unit(12000000, "km"),
  31050. default: true
  31051. },
  31052. {
  31053. name: "Megamacro",
  31054. height: math.unit(10600000, "lightyears")
  31055. },
  31056. {
  31057. name: "Hypermacro",
  31058. height: math.unit(256, "yottameters")
  31059. },
  31060. ]
  31061. ))
  31062. characterMakers.push(() => makeCharacter(
  31063. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  31064. {
  31065. front: {
  31066. height: math.unit(10, "feet"),
  31067. weight: math.unit(750, "lb"),
  31068. name: "Front",
  31069. image: {
  31070. source: "./media/characters/clove/front.svg",
  31071. extra: 1918/1751,
  31072. bottom: 52/1970
  31073. }
  31074. },
  31075. back: {
  31076. height: math.unit(10, "feet"),
  31077. weight: math.unit(750, "lb"),
  31078. name: "Back",
  31079. image: {
  31080. source: "./media/characters/clove/back.svg",
  31081. extra: 1912/1747,
  31082. bottom: 50/1962
  31083. }
  31084. },
  31085. },
  31086. [
  31087. {
  31088. name: "Normal",
  31089. height: math.unit(10, "feet"),
  31090. default: true
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31096. {
  31097. front: {
  31098. height: math.unit(4, "feet"),
  31099. weight: math.unit(50, "lb"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/alex-rabbit/front.svg",
  31103. extra: 507 / 458,
  31104. bottom: 18.5 / 527
  31105. }
  31106. },
  31107. back: {
  31108. height: math.unit(4, "feet"),
  31109. weight: math.unit(50, "lb"),
  31110. name: "Back",
  31111. image: {
  31112. source: "./media/characters/alex-rabbit/back.svg",
  31113. extra: 502 / 460,
  31114. bottom: 18.9 / 521
  31115. }
  31116. },
  31117. },
  31118. [
  31119. {
  31120. name: "Normal",
  31121. height: math.unit(4, "feet"),
  31122. default: true
  31123. },
  31124. ]
  31125. ))
  31126. characterMakers.push(() => makeCharacter(
  31127. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  31128. {
  31129. front: {
  31130. height: math.unit(1 + 3 / 12, "feet"),
  31131. weight: math.unit(80, "lb"),
  31132. name: "Front",
  31133. image: {
  31134. source: "./media/characters/zander-rose/front.svg",
  31135. extra: 916 / 797,
  31136. bottom: 17 / 933
  31137. }
  31138. },
  31139. back: {
  31140. height: math.unit(1 + 3 / 12, "feet"),
  31141. weight: math.unit(80, "lb"),
  31142. name: "Back",
  31143. image: {
  31144. source: "./media/characters/zander-rose/back.svg",
  31145. extra: 903 / 779,
  31146. bottom: 31 / 934
  31147. }
  31148. },
  31149. },
  31150. [
  31151. {
  31152. name: "Normal",
  31153. height: math.unit(1 + 3 / 12, "feet"),
  31154. default: true
  31155. },
  31156. ]
  31157. ))
  31158. characterMakers.push(() => makeCharacter(
  31159. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31160. {
  31161. anthro: {
  31162. height: math.unit(6, "feet"),
  31163. weight: math.unit(150, "lb"),
  31164. name: "Anthro",
  31165. image: {
  31166. source: "./media/characters/razz/anthro.svg",
  31167. extra: 1437 / 1343,
  31168. bottom: 48 / 1485
  31169. }
  31170. },
  31171. feral: {
  31172. height: math.unit(6, "feet"),
  31173. weight: math.unit(150, "lb"),
  31174. name: "Feral",
  31175. image: {
  31176. source: "./media/characters/razz/feral.svg",
  31177. extra: 2569 / 1385,
  31178. bottom: 95 / 2664
  31179. }
  31180. },
  31181. },
  31182. [
  31183. {
  31184. name: "Normal",
  31185. height: math.unit(6, "feet"),
  31186. default: true
  31187. },
  31188. ]
  31189. ))
  31190. characterMakers.push(() => makeCharacter(
  31191. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31192. {
  31193. front: {
  31194. height: math.unit(9 + 4 / 12, "feet"),
  31195. weight: math.unit(500, "lb"),
  31196. name: "Front",
  31197. image: {
  31198. source: "./media/characters/morrigan/front.svg",
  31199. extra: 2707 / 2579,
  31200. bottom: 156 / 2863
  31201. }
  31202. },
  31203. },
  31204. [
  31205. {
  31206. name: "Normal",
  31207. height: math.unit(9 + 4 / 12, "feet"),
  31208. default: true
  31209. },
  31210. ]
  31211. ))
  31212. characterMakers.push(() => makeCharacter(
  31213. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31214. {
  31215. front: {
  31216. height: math.unit(5, "stories"),
  31217. weight: math.unit(4000, "lb"),
  31218. name: "Front",
  31219. image: {
  31220. source: "./media/characters/jenene/front.svg",
  31221. extra: 1780 / 1710,
  31222. bottom: 57 / 1837
  31223. }
  31224. },
  31225. },
  31226. [
  31227. {
  31228. name: "Normal",
  31229. height: math.unit(5, "stories"),
  31230. default: true
  31231. },
  31232. ]
  31233. ))
  31234. characterMakers.push(() => makeCharacter(
  31235. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31236. {
  31237. taurSfw: {
  31238. height: math.unit(10, "meters"),
  31239. weight: math.unit(17500, "kg"),
  31240. name: "Taur",
  31241. image: {
  31242. source: "./media/characters/faey/taur-sfw.svg",
  31243. extra: 1200 / 968,
  31244. bottom: 41 / 1241
  31245. }
  31246. },
  31247. chestmaw: {
  31248. height: math.unit(2.01, "meters"),
  31249. name: "Chestmaw",
  31250. image: {
  31251. source: "./media/characters/faey/chestmaw.svg"
  31252. }
  31253. },
  31254. foot: {
  31255. height: math.unit(2.43, "meters"),
  31256. name: "Foot",
  31257. image: {
  31258. source: "./media/characters/faey/foot.svg"
  31259. }
  31260. },
  31261. jaws: {
  31262. height: math.unit(1.66, "meters"),
  31263. name: "Jaws",
  31264. image: {
  31265. source: "./media/characters/faey/jaws.svg"
  31266. }
  31267. },
  31268. tongues: {
  31269. height: math.unit(2.01, "meters"),
  31270. name: "Tongues",
  31271. image: {
  31272. source: "./media/characters/faey/tongues.svg"
  31273. }
  31274. },
  31275. },
  31276. [
  31277. {
  31278. name: "Small",
  31279. height: math.unit(10, "meters"),
  31280. default: true
  31281. },
  31282. {
  31283. name: "Big",
  31284. height: math.unit(500000, "km")
  31285. },
  31286. ]
  31287. ))
  31288. characterMakers.push(() => makeCharacter(
  31289. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31290. {
  31291. front: {
  31292. height: math.unit(7, "feet"),
  31293. weight: math.unit(275, "lb"),
  31294. name: "Front",
  31295. image: {
  31296. source: "./media/characters/roku/front.svg",
  31297. extra: 903 / 878,
  31298. bottom: 37 / 940
  31299. }
  31300. },
  31301. },
  31302. [
  31303. {
  31304. name: "Normal",
  31305. height: math.unit(7, "feet"),
  31306. default: true
  31307. },
  31308. {
  31309. name: "Macro",
  31310. height: math.unit(500, "feet")
  31311. },
  31312. {
  31313. name: "Megamacro",
  31314. height: math.unit(200, "miles")
  31315. },
  31316. ]
  31317. ))
  31318. characterMakers.push(() => makeCharacter(
  31319. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31320. {
  31321. front: {
  31322. height: math.unit(6 + 2 / 12, "feet"),
  31323. weight: math.unit(150, "lb"),
  31324. name: "Front",
  31325. image: {
  31326. source: "./media/characters/lira/front.svg",
  31327. extra: 1727 / 1605,
  31328. bottom: 26 / 1753
  31329. }
  31330. },
  31331. back: {
  31332. height: math.unit(6 + 2 / 12, "feet"),
  31333. weight: math.unit(150, "lb"),
  31334. name: "Back",
  31335. image: {
  31336. source: "./media/characters/lira/back.svg",
  31337. extra: 1713/1621,
  31338. bottom: 20/1733
  31339. }
  31340. },
  31341. hand: {
  31342. height: math.unit(0.75, "feet"),
  31343. name: "Hand",
  31344. image: {
  31345. source: "./media/characters/lira/hand.svg"
  31346. }
  31347. },
  31348. maw: {
  31349. height: math.unit(0.65, "feet"),
  31350. name: "Maw",
  31351. image: {
  31352. source: "./media/characters/lira/maw.svg"
  31353. }
  31354. },
  31355. pawDigi: {
  31356. height: math.unit(1.6, "feet"),
  31357. name: "Paw Digi",
  31358. image: {
  31359. source: "./media/characters/lira/paw-digi.svg"
  31360. }
  31361. },
  31362. pawPlanti: {
  31363. height: math.unit(1.4, "feet"),
  31364. name: "Paw Planti",
  31365. image: {
  31366. source: "./media/characters/lira/paw-planti.svg"
  31367. }
  31368. },
  31369. },
  31370. [
  31371. {
  31372. name: "Normal",
  31373. height: math.unit(6 + 2 / 12, "feet"),
  31374. default: true
  31375. },
  31376. {
  31377. name: "Macro",
  31378. height: math.unit(100, "feet")
  31379. },
  31380. {
  31381. name: "Macro²",
  31382. height: math.unit(1600, "feet")
  31383. },
  31384. {
  31385. name: "Planetary",
  31386. height: math.unit(20, "earths")
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31392. {
  31393. front: {
  31394. height: math.unit(6, "feet"),
  31395. weight: math.unit(150, "lb"),
  31396. name: "Front",
  31397. image: {
  31398. source: "./media/characters/hadjet/front.svg",
  31399. extra: 1480 / 1346,
  31400. bottom: 26 / 1506
  31401. }
  31402. },
  31403. frontNsfw: {
  31404. height: math.unit(6, "feet"),
  31405. weight: math.unit(150, "lb"),
  31406. name: "Front (NSFW)",
  31407. image: {
  31408. source: "./media/characters/hadjet/front-nsfw.svg",
  31409. extra: 1440 / 1358,
  31410. bottom: 52 / 1492
  31411. }
  31412. },
  31413. },
  31414. [
  31415. {
  31416. name: "Macro",
  31417. height: math.unit(10, "stories"),
  31418. default: true
  31419. },
  31420. {
  31421. name: "Megamacro",
  31422. height: math.unit(1.5, "miles")
  31423. },
  31424. {
  31425. name: "Megamacro+",
  31426. height: math.unit(5, "miles")
  31427. },
  31428. ]
  31429. ))
  31430. characterMakers.push(() => makeCharacter(
  31431. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31432. {
  31433. side: {
  31434. height: math.unit(106, "feet"),
  31435. weight: math.unit(500, "tonnes"),
  31436. name: "Side",
  31437. image: {
  31438. source: "./media/characters/kodran/side.svg",
  31439. extra: 553 / 480,
  31440. bottom: 33 / 586
  31441. }
  31442. },
  31443. front: {
  31444. height: math.unit(132, "feet"),
  31445. weight: math.unit(500, "tonnes"),
  31446. name: "Front",
  31447. image: {
  31448. source: "./media/characters/kodran/front.svg",
  31449. extra: 667 / 643,
  31450. bottom: 42 / 709
  31451. }
  31452. },
  31453. flying: {
  31454. height: math.unit(350, "feet"),
  31455. weight: math.unit(500, "tonnes"),
  31456. name: "Flying",
  31457. image: {
  31458. source: "./media/characters/kodran/flying.svg"
  31459. }
  31460. },
  31461. foot: {
  31462. height: math.unit(33, "feet"),
  31463. name: "Foot",
  31464. image: {
  31465. source: "./media/characters/kodran/foot.svg"
  31466. }
  31467. },
  31468. footFront: {
  31469. height: math.unit(19, "feet"),
  31470. name: "Foot (Front)",
  31471. image: {
  31472. source: "./media/characters/kodran/foot-front.svg",
  31473. extra: 261 / 261,
  31474. bottom: 91 / 352
  31475. }
  31476. },
  31477. headFront: {
  31478. height: math.unit(53, "feet"),
  31479. name: "Head (Front)",
  31480. image: {
  31481. source: "./media/characters/kodran/head-front.svg"
  31482. }
  31483. },
  31484. headSide: {
  31485. height: math.unit(65, "feet"),
  31486. name: "Head (Side)",
  31487. image: {
  31488. source: "./media/characters/kodran/head-side.svg"
  31489. }
  31490. },
  31491. throat: {
  31492. height: math.unit(79, "feet"),
  31493. name: "Throat",
  31494. image: {
  31495. source: "./media/characters/kodran/throat.svg"
  31496. }
  31497. },
  31498. },
  31499. [
  31500. {
  31501. name: "Large",
  31502. height: math.unit(106, "feet"),
  31503. default: true
  31504. },
  31505. ]
  31506. ))
  31507. characterMakers.push(() => makeCharacter(
  31508. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31509. {
  31510. side: {
  31511. height: math.unit(11, "feet"),
  31512. weight: math.unit(150, "lb"),
  31513. name: "Side",
  31514. image: {
  31515. source: "./media/characters/pyxaron/side.svg",
  31516. extra: 305 / 195,
  31517. bottom: 17 / 322
  31518. }
  31519. },
  31520. },
  31521. [
  31522. {
  31523. name: "Normal",
  31524. height: math.unit(11, "feet"),
  31525. default: true
  31526. },
  31527. ]
  31528. ))
  31529. characterMakers.push(() => makeCharacter(
  31530. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31531. {
  31532. front: {
  31533. height: math.unit(6, "feet"),
  31534. weight: math.unit(150, "lb"),
  31535. name: "Front",
  31536. image: {
  31537. source: "./media/characters/meep/front.svg",
  31538. extra: 88 / 80,
  31539. bottom: 6 / 94
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Fun Sized",
  31546. height: math.unit(2, "inches"),
  31547. default: true
  31548. },
  31549. {
  31550. name: "Friend Sized",
  31551. height: math.unit(8, "inches")
  31552. },
  31553. ]
  31554. ))
  31555. characterMakers.push(() => makeCharacter(
  31556. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31557. {
  31558. front: {
  31559. height: math.unit(15, "feet"),
  31560. weight: math.unit(2500, "lb"),
  31561. name: "Front",
  31562. image: {
  31563. source: "./media/characters/holly-rabbit/front.svg",
  31564. extra: 1433 / 1233,
  31565. bottom: 125 / 1558
  31566. }
  31567. },
  31568. dick: {
  31569. height: math.unit(4.6, "feet"),
  31570. name: "Dick",
  31571. image: {
  31572. source: "./media/characters/holly-rabbit/dick.svg"
  31573. }
  31574. },
  31575. },
  31576. [
  31577. {
  31578. name: "Normal",
  31579. height: math.unit(15, "feet"),
  31580. default: true
  31581. },
  31582. {
  31583. name: "Macro",
  31584. height: math.unit(250, "feet")
  31585. },
  31586. {
  31587. name: "Macro+",
  31588. height: math.unit(2500, "feet")
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31594. {
  31595. front: {
  31596. height: math.unit(3.02, "meters"),
  31597. weight: math.unit(500, "kg"),
  31598. name: "Front",
  31599. image: {
  31600. source: "./media/characters/drena/front.svg",
  31601. extra: 282 / 243,
  31602. bottom: 8 / 290
  31603. }
  31604. },
  31605. side: {
  31606. height: math.unit(3.02, "meters"),
  31607. weight: math.unit(500, "kg"),
  31608. name: "Side",
  31609. image: {
  31610. source: "./media/characters/drena/side.svg",
  31611. extra: 280 / 245,
  31612. bottom: 10 / 290
  31613. }
  31614. },
  31615. back: {
  31616. height: math.unit(3.02, "meters"),
  31617. weight: math.unit(500, "kg"),
  31618. name: "Back",
  31619. image: {
  31620. source: "./media/characters/drena/back.svg",
  31621. extra: 278 / 243,
  31622. bottom: 2 / 280
  31623. }
  31624. },
  31625. foot: {
  31626. height: math.unit(0.75, "meters"),
  31627. name: "Foot",
  31628. image: {
  31629. source: "./media/characters/drena/foot.svg"
  31630. }
  31631. },
  31632. maw: {
  31633. height: math.unit(0.82, "meters"),
  31634. name: "Maw",
  31635. image: {
  31636. source: "./media/characters/drena/maw.svg"
  31637. }
  31638. },
  31639. eating: {
  31640. height: math.unit(0.75, "meters"),
  31641. name: "Eating",
  31642. image: {
  31643. source: "./media/characters/drena/eating.svg"
  31644. }
  31645. },
  31646. rump: {
  31647. height: math.unit(0.93, "meters"),
  31648. name: "Rump",
  31649. image: {
  31650. source: "./media/characters/drena/rump.svg"
  31651. }
  31652. },
  31653. },
  31654. [
  31655. {
  31656. name: "Normal",
  31657. height: math.unit(3.02, "meters"),
  31658. default: true
  31659. },
  31660. ]
  31661. ))
  31662. characterMakers.push(() => makeCharacter(
  31663. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31664. {
  31665. front: {
  31666. height: math.unit(6 + 4 / 12, "feet"),
  31667. weight: math.unit(250, "lb"),
  31668. name: "Front",
  31669. image: {
  31670. source: "./media/characters/remmyzilla/front.svg",
  31671. extra: 4033 / 3588,
  31672. bottom: 123 / 4156
  31673. }
  31674. },
  31675. back: {
  31676. height: math.unit(6 + 4 / 12, "feet"),
  31677. weight: math.unit(250, "lb"),
  31678. name: "Back",
  31679. image: {
  31680. source: "./media/characters/remmyzilla/back.svg",
  31681. extra: 1696/1602,
  31682. bottom: 63/1759
  31683. }
  31684. },
  31685. paw: {
  31686. height: math.unit(1.73, "feet"),
  31687. name: "Paw",
  31688. image: {
  31689. source: "./media/characters/remmyzilla/paw.svg"
  31690. },
  31691. extraAttributes: {
  31692. "toeSize": {
  31693. name: "Toe Size",
  31694. power: 2,
  31695. type: "area",
  31696. base: math.unit(0.0035, "m^2")
  31697. },
  31698. "padSize": {
  31699. name: "Pad Size",
  31700. power: 2,
  31701. type: "area",
  31702. base: math.unit(0.015, "m^2")
  31703. },
  31704. "pawsize": {
  31705. name: "Paw Size",
  31706. power: 2,
  31707. type: "area",
  31708. base: math.unit(0.072, "m^2")
  31709. },
  31710. }
  31711. },
  31712. maw: {
  31713. height: math.unit(1.73, "feet"),
  31714. name: "Maw",
  31715. image: {
  31716. source: "./media/characters/remmyzilla/maw.svg"
  31717. }
  31718. },
  31719. },
  31720. [
  31721. {
  31722. name: "Normal",
  31723. height: math.unit(6 + 4 / 12, "feet")
  31724. },
  31725. {
  31726. name: "Minimacro",
  31727. height: math.unit(12 + 8 / 12, "feet")
  31728. },
  31729. {
  31730. name: "Normal",
  31731. height: math.unit(640, "feet"),
  31732. default: true
  31733. },
  31734. {
  31735. name: "Megamacro",
  31736. height: math.unit(6400, "feet")
  31737. },
  31738. {
  31739. name: "Gigamacro",
  31740. height: math.unit(64000, "miles")
  31741. },
  31742. ]
  31743. ))
  31744. characterMakers.push(() => makeCharacter(
  31745. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31746. {
  31747. front: {
  31748. height: math.unit(2.5, "meters"),
  31749. weight: math.unit(300, "lb"),
  31750. name: "Front",
  31751. image: {
  31752. source: "./media/characters/lawrence/front.svg",
  31753. extra: 357 / 335,
  31754. bottom: 30 / 387
  31755. }
  31756. },
  31757. back: {
  31758. height: math.unit(2.5, "meters"),
  31759. weight: math.unit(300, "lb"),
  31760. name: "Back",
  31761. image: {
  31762. source: "./media/characters/lawrence/back.svg",
  31763. extra: 357 / 338,
  31764. bottom: 16 / 373
  31765. }
  31766. },
  31767. head: {
  31768. height: math.unit(0.9, "meter"),
  31769. name: "Head",
  31770. image: {
  31771. source: "./media/characters/lawrence/head.svg"
  31772. }
  31773. },
  31774. maw: {
  31775. height: math.unit(0.7, "meter"),
  31776. name: "Maw",
  31777. image: {
  31778. source: "./media/characters/lawrence/maw.svg"
  31779. }
  31780. },
  31781. footBottom: {
  31782. height: math.unit(0.5, "meter"),
  31783. name: "Foot (Bottom)",
  31784. image: {
  31785. source: "./media/characters/lawrence/foot-bottom.svg"
  31786. }
  31787. },
  31788. footTop: {
  31789. height: math.unit(0.5, "meter"),
  31790. name: "Foot (Top)",
  31791. image: {
  31792. source: "./media/characters/lawrence/foot-top.svg"
  31793. }
  31794. },
  31795. },
  31796. [
  31797. {
  31798. name: "Normal",
  31799. height: math.unit(2.5, "meters"),
  31800. default: true
  31801. },
  31802. {
  31803. name: "Macro",
  31804. height: math.unit(95, "meters")
  31805. },
  31806. {
  31807. name: "Megamacro",
  31808. height: math.unit(150, "km")
  31809. },
  31810. ]
  31811. ))
  31812. characterMakers.push(() => makeCharacter(
  31813. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31814. {
  31815. front: {
  31816. height: math.unit(4.2, "meters"),
  31817. preyCapacity: math.unit(50, "m^3"),
  31818. weight: math.unit(30, "tonnes"),
  31819. name: "Front",
  31820. image: {
  31821. source: "./media/characters/sydney/front.svg",
  31822. extra: 1177/1129,
  31823. bottom: 197/1374
  31824. },
  31825. extraAttributes: {
  31826. "length": {
  31827. name: "Length",
  31828. power: 1,
  31829. type: "length",
  31830. base: math.unit(21, "meters")
  31831. },
  31832. }
  31833. },
  31834. },
  31835. [
  31836. {
  31837. name: "Normal",
  31838. height: math.unit(4.2, "meters"),
  31839. default: true
  31840. },
  31841. ]
  31842. ))
  31843. characterMakers.push(() => makeCharacter(
  31844. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31845. {
  31846. back: {
  31847. height: math.unit(201, "feet"),
  31848. name: "Back",
  31849. image: {
  31850. source: "./media/characters/jessica/back.svg",
  31851. extra: 273 / 259,
  31852. bottom: 7 / 280
  31853. }
  31854. },
  31855. },
  31856. [
  31857. {
  31858. name: "Normal",
  31859. height: math.unit(201, "feet"),
  31860. default: true
  31861. },
  31862. {
  31863. name: "Megamacro",
  31864. height: math.unit(8, "miles")
  31865. },
  31866. ]
  31867. ))
  31868. characterMakers.push(() => makeCharacter(
  31869. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31870. {
  31871. side: {
  31872. height: math.unit(5.6, "m"),
  31873. weight: math.unit(8000, "kg"),
  31874. name: "Side",
  31875. image: {
  31876. source: "./media/characters/victoria/side.svg",
  31877. extra: 1542/1229,
  31878. bottom: 124/1666
  31879. }
  31880. },
  31881. maw: {
  31882. height: math.unit(7.14, "feet"),
  31883. name: "Maw",
  31884. image: {
  31885. source: "./media/characters/victoria/maw.svg"
  31886. }
  31887. },
  31888. },
  31889. [
  31890. {
  31891. name: "Normal",
  31892. height: math.unit(5.6, "m"),
  31893. default: true
  31894. },
  31895. ]
  31896. ))
  31897. characterMakers.push(() => makeCharacter(
  31898. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31899. {
  31900. front: {
  31901. height: math.unit(5 + 6 / 12, "feet"),
  31902. name: "Front",
  31903. image: {
  31904. source: "./media/characters/cat/cat-front.svg",
  31905. extra: 1422/1262,
  31906. bottom: 61/1483
  31907. },
  31908. form: "cat",
  31909. default: true
  31910. },
  31911. back: {
  31912. height: math.unit(5 + 6 / 12, "feet"),
  31913. name: "Back",
  31914. image: {
  31915. source: "./media/characters/cat/cat-back.svg",
  31916. extra: 1466/1301,
  31917. bottom: 19/1485
  31918. },
  31919. form: "cat"
  31920. },
  31921. taur: {
  31922. height: math.unit(7, "feet"),
  31923. name: "Side",
  31924. image: {
  31925. source: "./media/characters/cat/taur-side.svg",
  31926. extra: 1389/1233,
  31927. bottom: 83/1472
  31928. },
  31929. form: "taur",
  31930. default: true
  31931. },
  31932. lucarioFront: {
  31933. height: math.unit(4, "feet"),
  31934. name: "Front",
  31935. image: {
  31936. source: "./media/characters/cat/lucario-front.svg",
  31937. extra: 1149/1019,
  31938. bottom: 84/1233
  31939. },
  31940. form: "lucario",
  31941. default: true
  31942. },
  31943. lucarioBack: {
  31944. height: math.unit(4, "feet"),
  31945. name: "Back",
  31946. image: {
  31947. source: "./media/characters/cat/lucario-back.svg",
  31948. extra: 1190/1059,
  31949. bottom: 33/1223
  31950. },
  31951. form: "lucario"
  31952. },
  31953. riolu_front: {
  31954. height: math.unit(2 + 4/12, "feet"),
  31955. name: "Front",
  31956. image: {
  31957. source: "./media/characters/cat/riolu-front.svg",
  31958. extra: 1104/956,
  31959. bottom: 70/1174
  31960. },
  31961. form: "riolu",
  31962. default: true
  31963. },
  31964. nickit: {
  31965. height: math.unit(2, "feet"),
  31966. name: "Side",
  31967. image: {
  31968. source: "./media/characters/cat/nickit-side.svg",
  31969. extra: 1087/852,
  31970. bottom: 67/1154
  31971. },
  31972. form: "nickit",
  31973. default: true
  31974. },
  31975. lopunnyFront: {
  31976. height: math.unit(5, "feet"),
  31977. name: "Front",
  31978. image: {
  31979. source: "./media/characters/cat/lopunny-front.svg",
  31980. extra: 1217/1078,
  31981. bottom: 23/1240
  31982. },
  31983. form: "lopunny",
  31984. default: true
  31985. },
  31986. lopunnyBack: {
  31987. height: math.unit(5, "feet"),
  31988. name: "Back",
  31989. image: {
  31990. source: "./media/characters/cat/lopunny-back.svg",
  31991. extra: 1205/1057,
  31992. bottom: 33/1238
  31993. },
  31994. form: "lopunny"
  31995. },
  31996. dog_front: {
  31997. height: math.unit(5 + 9/12, "feet"),
  31998. name: "Front",
  31999. image: {
  32000. source: "./media/characters/cat/dog-front.svg",
  32001. extra: 1403/1309,
  32002. bottom: 31/1434
  32003. },
  32004. form: "dog",
  32005. default: true
  32006. },
  32007. dog_back: {
  32008. height: math.unit(5 + 9/12, "feet"),
  32009. name: "Back",
  32010. image: {
  32011. source: "./media/characters/cat/dog-back.svg",
  32012. extra: 1393/1297,
  32013. bottom: 38/1431
  32014. },
  32015. form: "dog",
  32016. },
  32017. pikachu_front: {
  32018. height: math.unit(2.64, "feet"),
  32019. name: "Front",
  32020. image: {
  32021. source: "./media/characters/cat/pikachu-front.svg",
  32022. extra: 1224/958,
  32023. bottom: 34/1258
  32024. },
  32025. form: "pikachu",
  32026. default: true
  32027. },
  32028. pikachu_back: {
  32029. height: math.unit(2.64, "feet"),
  32030. name: "Back",
  32031. image: {
  32032. source: "./media/characters/cat/pikachu-back.svg",
  32033. extra: 1228/958,
  32034. bottom: 16/1244
  32035. },
  32036. form: "pikachu",
  32037. },
  32038. gigachuFront: {
  32039. height: math.unit(75, "feet"),
  32040. name: "Front",
  32041. image: {
  32042. source: "./media/characters/cat/gigachu-front.svg",
  32043. extra: 1239/1027,
  32044. bottom: 32/1271
  32045. },
  32046. form: "gigachu",
  32047. default: true
  32048. },
  32049. gigachuBack: {
  32050. height: math.unit(75, "feet"),
  32051. name: "Back",
  32052. image: {
  32053. source: "./media/characters/cat/gigachu-back.svg",
  32054. extra: 1229/1030,
  32055. bottom: 9/1238
  32056. },
  32057. form: "gigachu"
  32058. },
  32059. },
  32060. [
  32061. {
  32062. name: "Really small",
  32063. height: math.unit(1, "nm"),
  32064. allForms: true
  32065. },
  32066. {
  32067. name: "Micro",
  32068. height: math.unit(5, "inches"),
  32069. allForms: true
  32070. },
  32071. {
  32072. name: "Normal",
  32073. height: math.unit(5 + 6 / 12, "feet"),
  32074. default: true,
  32075. form: "cat"
  32076. },
  32077. {
  32078. name: "Normal",
  32079. height: math.unit(7, "feet"),
  32080. default: true,
  32081. form: "taur"
  32082. },
  32083. {
  32084. name: "Normal",
  32085. height: math.unit(4, "feet"),
  32086. default: true,
  32087. form: "lucario"
  32088. },
  32089. {
  32090. name: "Normal",
  32091. height: math.unit(2, "feet"),
  32092. default: true,
  32093. form: "nickit"
  32094. },
  32095. {
  32096. name: "Normal",
  32097. height: math.unit(5, "feet"),
  32098. default: true,
  32099. form: "lopunny"
  32100. },
  32101. {
  32102. name: "Normal",
  32103. height: math.unit(2 + 4/12, "feet"),
  32104. default: true,
  32105. form: "riolu"
  32106. },
  32107. {
  32108. name: "Normal",
  32109. height: math.unit(5 + 6 / 12, "feet"),
  32110. default: true,
  32111. form: "dog"
  32112. },
  32113. {
  32114. name: "Macro",
  32115. height: math.unit(50, "feet"),
  32116. allForms: true
  32117. },
  32118. {
  32119. name: "Normal",
  32120. height: math.unit(2.64, "feet"),
  32121. default: true,
  32122. form: "pikachu"
  32123. },
  32124. {
  32125. name: "Dynamax",
  32126. height: math.unit(75, "feet"),
  32127. form: "gigachu",
  32128. default: true
  32129. },
  32130. {
  32131. name: "Macro+",
  32132. height: math.unit(150, "feet"),
  32133. allForms: true
  32134. },
  32135. {
  32136. name: "Megamacro",
  32137. height: math.unit(100, "miles"),
  32138. allForms: true
  32139. },
  32140. ],
  32141. {
  32142. "cat": {
  32143. name: "Cat",
  32144. default: true
  32145. },
  32146. "taur": {
  32147. name: "Taur",
  32148. },
  32149. "lucario": {
  32150. name: "Lucario",
  32151. },
  32152. "riolu": {
  32153. name: "Riolu",
  32154. },
  32155. "nickit": {
  32156. name: "Nickit",
  32157. },
  32158. "lopunny": {
  32159. name: "Lopunny",
  32160. },
  32161. "dog": {
  32162. name: "Dog",
  32163. },
  32164. "pikachu": {
  32165. name: "Pikachu",
  32166. },
  32167. "gigachu": {
  32168. name: "Gigachu",
  32169. ignoreAllFormSizes: true
  32170. }
  32171. }
  32172. ))
  32173. characterMakers.push(() => makeCharacter(
  32174. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32175. {
  32176. front: {
  32177. height: math.unit(63.4, "meters"),
  32178. weight: math.unit(3.28349e+6, "kilograms"),
  32179. name: "Front",
  32180. image: {
  32181. source: "./media/characters/kirina-violet/front.svg",
  32182. extra: 2812 / 2725,
  32183. bottom: 0 / 2812
  32184. }
  32185. },
  32186. back: {
  32187. height: math.unit(63.4, "meters"),
  32188. weight: math.unit(3.28349e+6, "kilograms"),
  32189. name: "Back",
  32190. image: {
  32191. source: "./media/characters/kirina-violet/back.svg",
  32192. extra: 2812 / 2725,
  32193. bottom: 0 / 2812
  32194. }
  32195. },
  32196. mouth: {
  32197. height: math.unit(4.35, "meters"),
  32198. name: "Mouth",
  32199. image: {
  32200. source: "./media/characters/kirina-violet/mouth.svg"
  32201. }
  32202. },
  32203. paw: {
  32204. height: math.unit(5.6, "meters"),
  32205. name: "Paw",
  32206. image: {
  32207. source: "./media/characters/kirina-violet/paw.svg"
  32208. }
  32209. },
  32210. tail: {
  32211. height: math.unit(18, "meters"),
  32212. name: "Tail",
  32213. image: {
  32214. source: "./media/characters/kirina-violet/tail.svg"
  32215. }
  32216. },
  32217. },
  32218. [
  32219. {
  32220. name: "Macro",
  32221. height: math.unit(63.4, "meters"),
  32222. default: true
  32223. },
  32224. ]
  32225. ))
  32226. characterMakers.push(() => makeCharacter(
  32227. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32228. {
  32229. front: {
  32230. height: math.unit(6, "feet"),
  32231. weight: math.unit(150, "lb"),
  32232. name: "Front",
  32233. image: {
  32234. source: "./media/characters/sfaiyan/front.svg",
  32235. extra: 999 / 978,
  32236. bottom: 5 / 1004
  32237. }
  32238. },
  32239. },
  32240. [
  32241. {
  32242. name: "Normal",
  32243. height: math.unit(1.82, "meters")
  32244. },
  32245. {
  32246. name: "Giant",
  32247. height: math.unit(2.27, "km"),
  32248. default: true
  32249. },
  32250. ]
  32251. ))
  32252. characterMakers.push(() => makeCharacter(
  32253. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32254. {
  32255. front: {
  32256. height: math.unit(179, "cm"),
  32257. weight: math.unit(100, "kg"),
  32258. name: "Front",
  32259. image: {
  32260. source: "./media/characters/raunehkeli/front.svg",
  32261. extra: 1934 / 1926,
  32262. bottom: 0 / 1934
  32263. }
  32264. },
  32265. },
  32266. [
  32267. {
  32268. name: "Normal",
  32269. height: math.unit(179, "cm")
  32270. },
  32271. {
  32272. name: "Maximum",
  32273. height: math.unit(575, "meters"),
  32274. default: true
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32280. {
  32281. dressed: {
  32282. height: math.unit(6 + 2/12, "feet"),
  32283. weight: math.unit(150, "lb"),
  32284. name: "Dressed",
  32285. image: {
  32286. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32287. extra: 2620/2496,
  32288. bottom: 66/2686
  32289. }
  32290. },
  32291. nude: {
  32292. height: math.unit(6 + 2/12, "feet"),
  32293. weight: math.unit(150, "lb"),
  32294. name: "Nude",
  32295. image: {
  32296. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32297. extra: 2620/2496,
  32298. bottom: 66/2686
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Normal",
  32305. height: math.unit(6 + 2 / 12, "feet")
  32306. },
  32307. {
  32308. name: "Max Height",
  32309. height: math.unit(1181, "feet"),
  32310. default: true
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32316. {
  32317. front: {
  32318. height: math.unit(5 + 6 / 12, "feet"),
  32319. weight: math.unit(108, "lb"),
  32320. name: "Front",
  32321. image: {
  32322. source: "./media/characters/lilith-zott/front.svg",
  32323. extra: 2415/2133,
  32324. bottom: 193/2608
  32325. }
  32326. },
  32327. },
  32328. [
  32329. {
  32330. name: "Base Height",
  32331. height: math.unit(5 + 6 / 12, "feet")
  32332. },
  32333. {
  32334. name: "Preferred Height",
  32335. height: math.unit(200, "feet")
  32336. },
  32337. {
  32338. name: "Max Height",
  32339. height: math.unit(1030, "feet"),
  32340. default: true
  32341. },
  32342. ]
  32343. ))
  32344. characterMakers.push(() => makeCharacter(
  32345. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32346. {
  32347. super: {
  32348. height: math.unit(6 + 2/12, "feet"),
  32349. weight: math.unit(150, "lb"),
  32350. name: "Super",
  32351. image: {
  32352. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32353. extra: 2555/2387,
  32354. bottom: 50/2605
  32355. }
  32356. },
  32357. casual: {
  32358. height: math.unit(6 + 2/12, "feet"),
  32359. weight: math.unit(150, "lb"),
  32360. name: "Casual",
  32361. image: {
  32362. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32363. extra: 2555/2387,
  32364. bottom: 50/2605
  32365. }
  32366. },
  32367. hand: {
  32368. height: math.unit(1.08, "feet"),
  32369. name: "Hand",
  32370. image: {
  32371. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32372. }
  32373. },
  32374. paw: {
  32375. height: math.unit(1.33, "feet"),
  32376. name: "Paw",
  32377. image: {
  32378. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32379. }
  32380. },
  32381. },
  32382. [
  32383. {
  32384. name: "Normal",
  32385. height: math.unit(6 + 2/12, "feet")
  32386. },
  32387. {
  32388. name: "Preferred Height",
  32389. height: math.unit(220, "feet")
  32390. },
  32391. {
  32392. name: "Max Height",
  32393. height: math.unit(1100, "feet"),
  32394. default: true
  32395. },
  32396. ]
  32397. ))
  32398. characterMakers.push(() => makeCharacter(
  32399. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32400. {
  32401. front: {
  32402. height: math.unit(100, "miles"),
  32403. name: "Front",
  32404. image: {
  32405. source: "./media/characters/sona/front.svg",
  32406. extra: 2433 / 2201,
  32407. bottom: 53 / 2486
  32408. }
  32409. },
  32410. foot: {
  32411. height: math.unit(16.1, "miles"),
  32412. name: "Foot",
  32413. image: {
  32414. source: "./media/characters/sona/foot.svg"
  32415. }
  32416. },
  32417. },
  32418. [
  32419. {
  32420. name: "Macro",
  32421. height: math.unit(100, "miles"),
  32422. default: true
  32423. },
  32424. ]
  32425. ))
  32426. characterMakers.push(() => makeCharacter(
  32427. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32428. {
  32429. front: {
  32430. height: math.unit(6, "feet"),
  32431. weight: math.unit(150, "lb"),
  32432. name: "Front",
  32433. image: {
  32434. source: "./media/characters/bailey/front.svg",
  32435. extra: 1778 / 1724,
  32436. bottom: 30 / 1808
  32437. }
  32438. },
  32439. },
  32440. [
  32441. {
  32442. name: "Micro",
  32443. height: math.unit(4, "inches")
  32444. },
  32445. {
  32446. name: "Normal",
  32447. height: math.unit(5 + 5 / 12, "feet"),
  32448. default: true
  32449. },
  32450. {
  32451. name: "Macro",
  32452. height: math.unit(250, "feet")
  32453. },
  32454. {
  32455. name: "Megamacro",
  32456. height: math.unit(100, "miles")
  32457. },
  32458. ]
  32459. ))
  32460. characterMakers.push(() => makeCharacter(
  32461. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32462. {
  32463. front: {
  32464. height: math.unit(5 + 2 / 12, "feet"),
  32465. weight: math.unit(120, "lb"),
  32466. name: "Front",
  32467. image: {
  32468. source: "./media/characters/snaps/front.svg",
  32469. extra: 2370 / 2177,
  32470. bottom: 48 / 2418
  32471. }
  32472. },
  32473. back: {
  32474. height: math.unit(5 + 2 / 12, "feet"),
  32475. weight: math.unit(120, "lb"),
  32476. name: "Back",
  32477. image: {
  32478. source: "./media/characters/snaps/back.svg",
  32479. extra: 2408 / 2258,
  32480. bottom: 15 / 2423
  32481. }
  32482. },
  32483. },
  32484. [
  32485. {
  32486. name: "Micro",
  32487. height: math.unit(9, "inches")
  32488. },
  32489. {
  32490. name: "Normal",
  32491. height: math.unit(5 + 2 / 12, "feet"),
  32492. default: true
  32493. },
  32494. {
  32495. name: "Mini Macro",
  32496. height: math.unit(10, "feet")
  32497. },
  32498. ]
  32499. ))
  32500. characterMakers.push(() => makeCharacter(
  32501. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32502. {
  32503. front: {
  32504. height: math.unit(1.8, "meters"),
  32505. weight: math.unit(85, "kg"),
  32506. name: "Front",
  32507. image: {
  32508. source: "./media/characters/azteck/front.svg",
  32509. extra: 2815 / 2625,
  32510. bottom: 89 / 2904
  32511. }
  32512. },
  32513. back: {
  32514. height: math.unit(1.8, "meters"),
  32515. weight: math.unit(85, "kg"),
  32516. name: "Back",
  32517. image: {
  32518. source: "./media/characters/azteck/back.svg",
  32519. extra: 2856 / 2648,
  32520. bottom: 85 / 2941
  32521. }
  32522. },
  32523. frontDressed: {
  32524. height: math.unit(1.8, "meters"),
  32525. weight: math.unit(85, "kg"),
  32526. name: "Front (Dressed)",
  32527. image: {
  32528. source: "./media/characters/azteck/front-dressed.svg",
  32529. extra: 2147 / 2003,
  32530. bottom: 68 / 2215
  32531. }
  32532. },
  32533. head: {
  32534. height: math.unit(0.47, "meters"),
  32535. weight: math.unit(85, "kg"),
  32536. name: "Head",
  32537. image: {
  32538. source: "./media/characters/azteck/head.svg"
  32539. }
  32540. },
  32541. },
  32542. [
  32543. {
  32544. name: "Bite sized",
  32545. height: math.unit(16, "cm")
  32546. },
  32547. {
  32548. name: "Normal",
  32549. height: math.unit(1.8, "meters"),
  32550. default: true
  32551. },
  32552. ]
  32553. ))
  32554. characterMakers.push(() => makeCharacter(
  32555. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32556. {
  32557. front: {
  32558. height: math.unit(6, "feet"),
  32559. weight: math.unit(150, "lb"),
  32560. name: "Front",
  32561. image: {
  32562. source: "./media/characters/pidge/front.svg",
  32563. extra: 1936/1820,
  32564. bottom: 0/1936
  32565. }
  32566. },
  32567. back: {
  32568. height: math.unit(6, "feet"),
  32569. weight: math.unit(150, "lb"),
  32570. name: "Back",
  32571. image: {
  32572. source: "./media/characters/pidge/back.svg",
  32573. extra: 1938/1843,
  32574. bottom: 0/1938
  32575. }
  32576. },
  32577. casual: {
  32578. height: math.unit(6, "feet"),
  32579. weight: math.unit(150, "lb"),
  32580. name: "Casual",
  32581. image: {
  32582. source: "./media/characters/pidge/casual.svg",
  32583. extra: 1936/1820,
  32584. bottom: 0/1936
  32585. }
  32586. },
  32587. tech: {
  32588. height: math.unit(6, "feet"),
  32589. weight: math.unit(150, "lb"),
  32590. name: "Tech",
  32591. image: {
  32592. source: "./media/characters/pidge/tech.svg",
  32593. extra: 1802/1682,
  32594. bottom: 0/1802
  32595. }
  32596. },
  32597. head: {
  32598. height: math.unit(1.61, "feet"),
  32599. name: "Head",
  32600. image: {
  32601. source: "./media/characters/pidge/head.svg"
  32602. }
  32603. },
  32604. collar: {
  32605. height: math.unit(0.82, "feet"),
  32606. name: "Collar",
  32607. image: {
  32608. source: "./media/characters/pidge/collar.svg"
  32609. }
  32610. },
  32611. },
  32612. [
  32613. {
  32614. name: "Macro",
  32615. height: math.unit(2, "mile"),
  32616. default: true
  32617. },
  32618. {
  32619. name: "PUPPY",
  32620. height: math.unit(20, "miles")
  32621. },
  32622. ]
  32623. ))
  32624. characterMakers.push(() => makeCharacter(
  32625. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32626. {
  32627. front: {
  32628. height: math.unit(6, "feet"),
  32629. weight: math.unit(150, "lb"),
  32630. name: "Front",
  32631. image: {
  32632. source: "./media/characters/en/front.svg",
  32633. extra: 1697 / 1563,
  32634. bottom: 103 / 1800
  32635. }
  32636. },
  32637. back: {
  32638. height: math.unit(6, "feet"),
  32639. weight: math.unit(150, "lb"),
  32640. name: "Back",
  32641. image: {
  32642. source: "./media/characters/en/back.svg",
  32643. extra: 1700 / 1570,
  32644. bottom: 51 / 1751
  32645. }
  32646. },
  32647. frontDressed: {
  32648. height: math.unit(6, "feet"),
  32649. weight: math.unit(150, "lb"),
  32650. name: "Front (Dressed)",
  32651. image: {
  32652. source: "./media/characters/en/front-dressed.svg",
  32653. extra: 1697 / 1563,
  32654. bottom: 103 / 1800
  32655. }
  32656. },
  32657. backDressed: {
  32658. height: math.unit(6, "feet"),
  32659. weight: math.unit(150, "lb"),
  32660. name: "Back (Dressed)",
  32661. image: {
  32662. source: "./media/characters/en/back-dressed.svg",
  32663. extra: 1700 / 1570,
  32664. bottom: 51 / 1751
  32665. }
  32666. },
  32667. },
  32668. [
  32669. {
  32670. name: "Macro",
  32671. height: math.unit(210, "feet"),
  32672. default: true
  32673. },
  32674. ]
  32675. ))
  32676. characterMakers.push(() => makeCharacter(
  32677. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32678. {
  32679. front: {
  32680. height: math.unit(6, "feet"),
  32681. weight: math.unit(150, "lb"),
  32682. name: "Front",
  32683. image: {
  32684. source: "./media/characters/haze-orris/front.svg",
  32685. extra: 3975 / 3525,
  32686. bottom: 137 / 4112
  32687. }
  32688. },
  32689. },
  32690. [
  32691. {
  32692. name: "Micro",
  32693. height: math.unit(150, "mm"),
  32694. default: true
  32695. },
  32696. ]
  32697. ))
  32698. characterMakers.push(() => makeCharacter(
  32699. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32700. {
  32701. front: {
  32702. height: math.unit(6, "feet"),
  32703. weight: math.unit(150, "lb"),
  32704. name: "Front",
  32705. image: {
  32706. source: "./media/characters/casselene-yaro/front.svg",
  32707. extra: 4721 / 4541,
  32708. bottom: 82 / 4803
  32709. }
  32710. },
  32711. back: {
  32712. height: math.unit(6, "feet"),
  32713. weight: math.unit(150, "lb"),
  32714. name: "Back",
  32715. image: {
  32716. source: "./media/characters/casselene-yaro/back.svg",
  32717. extra: 4569 / 4377,
  32718. bottom: 69 / 4638
  32719. }
  32720. },
  32721. dressed: {
  32722. height: math.unit(6, "feet"),
  32723. weight: math.unit(150, "lb"),
  32724. name: "Dressed",
  32725. image: {
  32726. source: "./media/characters/casselene-yaro/dressed.svg",
  32727. extra: 4721 / 4541,
  32728. bottom: 82 / 4803
  32729. }
  32730. },
  32731. maw: {
  32732. height: math.unit(1, "feet"),
  32733. name: "Maw",
  32734. image: {
  32735. source: "./media/characters/casselene-yaro/maw.svg"
  32736. }
  32737. },
  32738. },
  32739. [
  32740. {
  32741. name: "Macro",
  32742. height: math.unit(190, "feet"),
  32743. default: true
  32744. },
  32745. ]
  32746. ))
  32747. characterMakers.push(() => makeCharacter(
  32748. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32749. {
  32750. front: {
  32751. height: math.unit(10, "feet"),
  32752. weight: math.unit(15015, "lb"),
  32753. name: "Front",
  32754. image: {
  32755. source: "./media/characters/platine/front.svg",
  32756. extra: 1741/1650,
  32757. bottom: 84/1825
  32758. }
  32759. },
  32760. side: {
  32761. height: math.unit(10, "feet"),
  32762. weight: math.unit(15015, "lb"),
  32763. name: "Side",
  32764. image: {
  32765. source: "./media/characters/platine/side.svg",
  32766. extra: 1790/1705,
  32767. bottom: 29/1819
  32768. }
  32769. },
  32770. },
  32771. [
  32772. {
  32773. name: "Normal",
  32774. height: math.unit(10, "feet"),
  32775. default: true
  32776. },
  32777. {
  32778. name: "Macro",
  32779. height: math.unit(100, "feet")
  32780. },
  32781. {
  32782. name: "Megamacro",
  32783. height: math.unit(1000, "feet")
  32784. },
  32785. ]
  32786. ))
  32787. characterMakers.push(() => makeCharacter(
  32788. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32789. {
  32790. front: {
  32791. height: math.unit(15 + 5 / 12, "feet"),
  32792. weight: math.unit(4600, "lb"),
  32793. name: "Front",
  32794. image: {
  32795. source: "./media/characters/neapolitan-ananassa/front.svg",
  32796. extra: 2903 / 2736,
  32797. bottom: 0 / 2903
  32798. }
  32799. },
  32800. side: {
  32801. height: math.unit(15 + 5 / 12, "feet"),
  32802. weight: math.unit(4600, "lb"),
  32803. name: "Side",
  32804. image: {
  32805. source: "./media/characters/neapolitan-ananassa/side.svg",
  32806. extra: 2925 / 2719,
  32807. bottom: 0 / 2925
  32808. }
  32809. },
  32810. back: {
  32811. height: math.unit(15 + 5 / 12, "feet"),
  32812. weight: math.unit(4600, "lb"),
  32813. name: "Back",
  32814. image: {
  32815. source: "./media/characters/neapolitan-ananassa/back.svg",
  32816. extra: 2903 / 2736,
  32817. bottom: 0 / 2903
  32818. }
  32819. },
  32820. },
  32821. [
  32822. {
  32823. name: "Normal",
  32824. height: math.unit(15 + 5 / 12, "feet"),
  32825. default: true
  32826. },
  32827. {
  32828. name: "Post-Millenium",
  32829. height: math.unit(35 + 5 / 12, "feet")
  32830. },
  32831. {
  32832. name: "Post-Era",
  32833. height: math.unit(450 + 5 / 12, "feet")
  32834. },
  32835. ]
  32836. ))
  32837. characterMakers.push(() => makeCharacter(
  32838. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32839. {
  32840. front: {
  32841. height: math.unit(300, "meters"),
  32842. weight: math.unit(125000, "tonnes"),
  32843. name: "Front",
  32844. image: {
  32845. source: "./media/characters/pazuzu/front.svg",
  32846. extra: 877 / 794,
  32847. bottom: 47 / 924
  32848. }
  32849. },
  32850. },
  32851. [
  32852. {
  32853. name: "Macro",
  32854. height: math.unit(300, "meters"),
  32855. default: true
  32856. },
  32857. ]
  32858. ))
  32859. characterMakers.push(() => makeCharacter(
  32860. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32861. {
  32862. side: {
  32863. height: math.unit(10 + 7 / 12, "feet"),
  32864. weight: math.unit(2.5, "tons"),
  32865. name: "Side",
  32866. image: {
  32867. source: "./media/characters/aasha/side.svg",
  32868. extra: 1345 / 1245,
  32869. bottom: 111 / 1456
  32870. }
  32871. },
  32872. back: {
  32873. height: math.unit(10 + 7 / 12, "feet"),
  32874. weight: math.unit(2.5, "tons"),
  32875. name: "Back",
  32876. image: {
  32877. source: "./media/characters/aasha/back.svg",
  32878. extra: 1133 / 1057,
  32879. bottom: 257 / 1390
  32880. }
  32881. },
  32882. },
  32883. [
  32884. {
  32885. name: "Normal",
  32886. height: math.unit(10 + 7 / 12, "feet"),
  32887. default: true
  32888. },
  32889. ]
  32890. ))
  32891. characterMakers.push(() => makeCharacter(
  32892. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32893. {
  32894. front: {
  32895. height: math.unit(6 + 3 / 12, "feet"),
  32896. name: "Front",
  32897. image: {
  32898. source: "./media/characters/nevan/front.svg",
  32899. extra: 704 / 704,
  32900. bottom: 28 / 732
  32901. }
  32902. },
  32903. back: {
  32904. height: math.unit(6 + 3 / 12, "feet"),
  32905. name: "Back",
  32906. image: {
  32907. source: "./media/characters/nevan/back.svg",
  32908. extra: 714 / 714,
  32909. bottom: 21 / 735
  32910. }
  32911. },
  32912. frontFlaccid: {
  32913. height: math.unit(6 + 3 / 12, "feet"),
  32914. name: "Front (Flaccid)",
  32915. image: {
  32916. source: "./media/characters/nevan/front-flaccid.svg",
  32917. extra: 704 / 704,
  32918. bottom: 28 / 732
  32919. }
  32920. },
  32921. frontErect: {
  32922. height: math.unit(6 + 3 / 12, "feet"),
  32923. name: "Front (Erect)",
  32924. image: {
  32925. source: "./media/characters/nevan/front-erect.svg",
  32926. extra: 704 / 704,
  32927. bottom: 28 / 732
  32928. }
  32929. },
  32930. backFlaccid: {
  32931. height: math.unit(6 + 3 / 12, "feet"),
  32932. name: "Back (Flaccid)",
  32933. image: {
  32934. source: "./media/characters/nevan/back-flaccid.svg",
  32935. extra: 714 / 714,
  32936. bottom: 21 / 735
  32937. }
  32938. },
  32939. },
  32940. [
  32941. {
  32942. name: "Normal",
  32943. height: math.unit(6 + 3 / 12, "feet"),
  32944. default: true
  32945. },
  32946. ]
  32947. ))
  32948. characterMakers.push(() => makeCharacter(
  32949. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32950. {
  32951. front: {
  32952. height: math.unit(4, "feet"),
  32953. name: "Front",
  32954. image: {
  32955. source: "./media/characters/arhan/front.svg",
  32956. extra: 3368 / 3133,
  32957. bottom: 0 / 3368
  32958. }
  32959. },
  32960. side: {
  32961. height: math.unit(4, "feet"),
  32962. name: "Side",
  32963. image: {
  32964. source: "./media/characters/arhan/side.svg",
  32965. extra: 3347 / 3105,
  32966. bottom: 0 / 3347
  32967. }
  32968. },
  32969. tongue: {
  32970. height: math.unit(1.42, "feet"),
  32971. name: "Tongue",
  32972. image: {
  32973. source: "./media/characters/arhan/tongue.svg"
  32974. }
  32975. },
  32976. head: {
  32977. height: math.unit(0.85, "feet"),
  32978. name: "Head",
  32979. image: {
  32980. source: "./media/characters/arhan/head.svg"
  32981. }
  32982. },
  32983. },
  32984. [
  32985. {
  32986. name: "Normal",
  32987. height: math.unit(4, "feet"),
  32988. default: true
  32989. },
  32990. ]
  32991. ))
  32992. characterMakers.push(() => makeCharacter(
  32993. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32994. {
  32995. front: {
  32996. height: math.unit(5 + 7.5 / 12, "feet"),
  32997. weight: math.unit(120, "lb"),
  32998. name: "Front",
  32999. image: {
  33000. source: "./media/characters/digi-duncan/front.svg",
  33001. extra: 330 / 326,
  33002. bottom: 16 / 346
  33003. }
  33004. },
  33005. side: {
  33006. height: math.unit(5 + 7.5 / 12, "feet"),
  33007. weight: math.unit(120, "lb"),
  33008. name: "Side",
  33009. image: {
  33010. source: "./media/characters/digi-duncan/side.svg",
  33011. extra: 341 / 337,
  33012. bottom: 1 / 342
  33013. }
  33014. },
  33015. back: {
  33016. height: math.unit(5 + 7.5 / 12, "feet"),
  33017. weight: math.unit(120, "lb"),
  33018. name: "Back",
  33019. image: {
  33020. source: "./media/characters/digi-duncan/back.svg",
  33021. extra: 330 / 326,
  33022. bottom: 12 / 342
  33023. }
  33024. },
  33025. },
  33026. [
  33027. {
  33028. name: "Speck",
  33029. height: math.unit(0.25, "mm")
  33030. },
  33031. {
  33032. name: "Micro",
  33033. height: math.unit(5, "mm")
  33034. },
  33035. {
  33036. name: "Tiny",
  33037. height: math.unit(0.5, "inches"),
  33038. default: true
  33039. },
  33040. {
  33041. name: "Human",
  33042. height: math.unit(5 + 7.5 / 12, "feet")
  33043. },
  33044. {
  33045. name: "Minigiant",
  33046. height: math.unit(8 + 5.25, "feet")
  33047. },
  33048. {
  33049. name: "Giant",
  33050. height: math.unit(2000, "feet")
  33051. },
  33052. {
  33053. name: "Mega",
  33054. height: math.unit(371.1, "miles")
  33055. },
  33056. ]
  33057. ))
  33058. characterMakers.push(() => makeCharacter(
  33059. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  33060. {
  33061. front: {
  33062. height: math.unit(2, "meters"),
  33063. weight: math.unit(350, "kg"),
  33064. name: "Front",
  33065. image: {
  33066. source: "./media/characters/jagaz-soulbreaker/front.svg",
  33067. extra: 898 / 838,
  33068. bottom: 9 / 907
  33069. }
  33070. },
  33071. },
  33072. [
  33073. {
  33074. name: "Micro",
  33075. height: math.unit(8, "meters")
  33076. },
  33077. {
  33078. name: "Normal",
  33079. height: math.unit(50, "meters"),
  33080. default: true
  33081. },
  33082. {
  33083. name: "Macro",
  33084. height: math.unit(500, "meters")
  33085. },
  33086. ]
  33087. ))
  33088. characterMakers.push(() => makeCharacter(
  33089. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  33090. {
  33091. front: {
  33092. height: math.unit(6 + 6 / 12, "feet"),
  33093. name: "Front",
  33094. image: {
  33095. source: "./media/characters/khardesh/front.svg",
  33096. extra: 1788/1596,
  33097. bottom: 66/1854
  33098. }
  33099. },
  33100. back: {
  33101. height: math.unit(6 + 6 / 12, "feet"),
  33102. name: "Back",
  33103. image: {
  33104. source: "./media/characters/khardesh/back.svg",
  33105. extra: 1781/1584,
  33106. bottom: 68/1849
  33107. }
  33108. },
  33109. },
  33110. [
  33111. {
  33112. name: "Normal",
  33113. height: math.unit(6 + 6 / 12, "feet"),
  33114. default: true
  33115. },
  33116. {
  33117. name: "Normal+",
  33118. height: math.unit(4, "meters")
  33119. },
  33120. {
  33121. name: "Macro",
  33122. height: math.unit(50, "meters")
  33123. },
  33124. {
  33125. name: "Macro+",
  33126. height: math.unit(100, "meters")
  33127. },
  33128. {
  33129. name: "Megamacro",
  33130. height: math.unit(20, "km")
  33131. },
  33132. ]
  33133. ))
  33134. characterMakers.push(() => makeCharacter(
  33135. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  33136. {
  33137. front: {
  33138. height: math.unit(6, "feet"),
  33139. weight: math.unit(150, "lb"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/kosho/front.svg",
  33143. extra: 1847 / 1847,
  33144. bottom: 86 / 1933
  33145. }
  33146. },
  33147. },
  33148. [
  33149. {
  33150. name: "Second-stage micro",
  33151. height: math.unit(0.5, "inches")
  33152. },
  33153. {
  33154. name: "First-stage micro",
  33155. height: math.unit(6, "inches")
  33156. },
  33157. {
  33158. name: "Normal",
  33159. height: math.unit(6, "feet"),
  33160. default: true
  33161. },
  33162. {
  33163. name: "First-stage macro",
  33164. height: math.unit(72, "feet")
  33165. },
  33166. {
  33167. name: "Second-stage macro",
  33168. height: math.unit(864, "feet")
  33169. },
  33170. ]
  33171. ))
  33172. characterMakers.push(() => makeCharacter(
  33173. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33174. {
  33175. normal: {
  33176. height: math.unit(4 + 6 / 12, "feet"),
  33177. name: "Normal",
  33178. image: {
  33179. source: "./media/characters/hydra/normal.svg",
  33180. extra: 2833 / 2634,
  33181. bottom: 68 / 2901
  33182. }
  33183. },
  33184. smol: {
  33185. height: math.unit(0.705, "inches"),
  33186. name: "Smol",
  33187. image: {
  33188. source: "./media/characters/hydra/smol.svg",
  33189. extra: 2715 / 2540,
  33190. bottom: 0 / 2715
  33191. }
  33192. },
  33193. },
  33194. [
  33195. {
  33196. name: "Normal",
  33197. height: math.unit(4 + 6 / 12, "feet"),
  33198. default: true
  33199. }
  33200. ]
  33201. ))
  33202. characterMakers.push(() => makeCharacter(
  33203. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33204. {
  33205. front: {
  33206. height: math.unit(0.6, "cm"),
  33207. name: "Front",
  33208. image: {
  33209. source: "./media/characters/daz/front.svg",
  33210. extra: 1682 / 1164,
  33211. bottom: 42 / 1724
  33212. }
  33213. },
  33214. },
  33215. [
  33216. {
  33217. name: "Normal",
  33218. height: math.unit(0.6, "cm"),
  33219. default: true
  33220. },
  33221. ]
  33222. ))
  33223. characterMakers.push(() => makeCharacter(
  33224. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33225. {
  33226. front: {
  33227. height: math.unit(6, "feet"),
  33228. weight: math.unit(235, "lb"),
  33229. name: "Front",
  33230. image: {
  33231. source: "./media/characters/theo-pangolin/front.svg",
  33232. extra: 1996 / 1969,
  33233. bottom: 115 / 2111
  33234. }
  33235. },
  33236. back: {
  33237. height: math.unit(6, "feet"),
  33238. weight: math.unit(235, "lb"),
  33239. name: "Back",
  33240. image: {
  33241. source: "./media/characters/theo-pangolin/back.svg",
  33242. extra: 1979 / 1979,
  33243. bottom: 40 / 2019
  33244. }
  33245. },
  33246. feral: {
  33247. height: math.unit(2, "feet"),
  33248. weight: math.unit(30, "lb"),
  33249. name: "Feral",
  33250. image: {
  33251. source: "./media/characters/theo-pangolin/feral.svg",
  33252. extra: 803 / 791,
  33253. bottom: 181 / 984
  33254. }
  33255. },
  33256. footFive: {
  33257. height: math.unit(1.43, "feet"),
  33258. name: "Foot (Five Toes)",
  33259. image: {
  33260. source: "./media/characters/theo-pangolin/foot-five.svg"
  33261. }
  33262. },
  33263. footFour: {
  33264. height: math.unit(1.43, "feet"),
  33265. name: "Foot (Four Toes)",
  33266. image: {
  33267. source: "./media/characters/theo-pangolin/foot-four.svg"
  33268. }
  33269. },
  33270. handFour: {
  33271. height: math.unit(0.81, "feet"),
  33272. name: "Hand (Four Fingers)",
  33273. image: {
  33274. source: "./media/characters/theo-pangolin/hand-four.svg"
  33275. }
  33276. },
  33277. handThree: {
  33278. height: math.unit(0.81, "feet"),
  33279. name: "Hand (Three Fingers)",
  33280. image: {
  33281. source: "./media/characters/theo-pangolin/hand-three.svg"
  33282. }
  33283. },
  33284. headFront: {
  33285. height: math.unit(1.37, "feet"),
  33286. name: "Head (Front)",
  33287. image: {
  33288. source: "./media/characters/theo-pangolin/head-front.svg"
  33289. }
  33290. },
  33291. headSide: {
  33292. height: math.unit(1.43, "feet"),
  33293. name: "Head (Side)",
  33294. image: {
  33295. source: "./media/characters/theo-pangolin/head-side.svg"
  33296. }
  33297. },
  33298. tongue: {
  33299. height: math.unit(2.29, "feet"),
  33300. name: "Tongue",
  33301. image: {
  33302. source: "./media/characters/theo-pangolin/tongue.svg"
  33303. }
  33304. },
  33305. },
  33306. [
  33307. {
  33308. name: "Normal",
  33309. height: math.unit(6, "feet")
  33310. },
  33311. {
  33312. name: "Macro",
  33313. height: math.unit(400, "feet"),
  33314. default: true
  33315. },
  33316. ]
  33317. ))
  33318. characterMakers.push(() => makeCharacter(
  33319. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33320. {
  33321. front: {
  33322. height: math.unit(6, "inches"),
  33323. weight: math.unit(0.036, "kg"),
  33324. name: "Front",
  33325. image: {
  33326. source: "./media/characters/renée/front.svg",
  33327. extra: 900 / 886,
  33328. bottom: 8 / 908
  33329. }
  33330. },
  33331. },
  33332. [
  33333. {
  33334. name: "Nano",
  33335. height: math.unit(1, "nm")
  33336. },
  33337. {
  33338. name: "Micro",
  33339. height: math.unit(1, "mm")
  33340. },
  33341. {
  33342. name: "Normal",
  33343. height: math.unit(6, "inches")
  33344. },
  33345. {
  33346. name: "Macro",
  33347. height: math.unit(2000, "feet"),
  33348. default: true
  33349. },
  33350. {
  33351. name: "Megamacro",
  33352. height: math.unit(2, "km")
  33353. },
  33354. {
  33355. name: "Gigamacro",
  33356. height: math.unit(2000, "km")
  33357. },
  33358. {
  33359. name: "Teramacro",
  33360. height: math.unit(250000, "km")
  33361. },
  33362. ]
  33363. ))
  33364. characterMakers.push(() => makeCharacter(
  33365. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33366. {
  33367. front: {
  33368. height: math.unit(4, "meters"),
  33369. weight: math.unit(150, "kg"),
  33370. name: "Front",
  33371. image: {
  33372. source: "./media/characters/caledvwlch/front.svg",
  33373. extra: 1757/1537,
  33374. bottom: 31/1788
  33375. }
  33376. },
  33377. side: {
  33378. height: math.unit(4, "meters"),
  33379. weight: math.unit(150, "kg"),
  33380. name: "Side",
  33381. image: {
  33382. source: "./media/characters/caledvwlch/side.svg",
  33383. extra: 1605 / 1536,
  33384. bottom: 31 / 1636
  33385. }
  33386. },
  33387. back: {
  33388. height: math.unit(4, "meters"),
  33389. weight: math.unit(150, "kg"),
  33390. name: "Back",
  33391. image: {
  33392. source: "./media/characters/caledvwlch/back.svg",
  33393. extra: 1635 / 1565,
  33394. bottom: 27 / 1662
  33395. }
  33396. },
  33397. },
  33398. [
  33399. {
  33400. name: "\"Incognito\"",
  33401. height: math.unit(4, "meters")
  33402. },
  33403. {
  33404. name: "Small rampage",
  33405. height: math.unit(600, "meters")
  33406. },
  33407. {
  33408. name: "Mega",
  33409. height: math.unit(30, "km")
  33410. },
  33411. {
  33412. name: "Home-size",
  33413. height: math.unit(50, "km"),
  33414. default: true
  33415. },
  33416. {
  33417. name: "Giga",
  33418. height: math.unit(300, "km")
  33419. },
  33420. {
  33421. name: "Lounging",
  33422. height: math.unit(11000, "km")
  33423. },
  33424. {
  33425. name: "Planet snacking",
  33426. height: math.unit(2000000, "km")
  33427. },
  33428. ]
  33429. ))
  33430. characterMakers.push(() => makeCharacter(
  33431. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33432. {
  33433. front: {
  33434. height: math.unit(6, "feet"),
  33435. weight: math.unit(215, "lb"),
  33436. name: "Front",
  33437. image: {
  33438. source: "./media/characters/sapphire-svell/front.svg",
  33439. extra: 495 / 455,
  33440. bottom: 20 / 515
  33441. }
  33442. },
  33443. back: {
  33444. height: math.unit(6, "feet"),
  33445. weight: math.unit(216, "lb"),
  33446. name: "Back",
  33447. image: {
  33448. source: "./media/characters/sapphire-svell/back.svg",
  33449. extra: 497 / 477,
  33450. bottom: 7 / 504
  33451. }
  33452. },
  33453. maw: {
  33454. height: math.unit(1.57, "feet"),
  33455. name: "Maw",
  33456. image: {
  33457. source: "./media/characters/sapphire-svell/maw.svg"
  33458. }
  33459. },
  33460. foot: {
  33461. height: math.unit(1.07, "feet"),
  33462. name: "Foot",
  33463. image: {
  33464. source: "./media/characters/sapphire-svell/foot.svg"
  33465. }
  33466. },
  33467. toering: {
  33468. height: math.unit(1.7, "inch"),
  33469. name: "Toering",
  33470. image: {
  33471. source: "./media/characters/sapphire-svell/toering.svg"
  33472. }
  33473. },
  33474. },
  33475. [
  33476. {
  33477. name: "Normal",
  33478. height: math.unit(300, "feet"),
  33479. default: true
  33480. },
  33481. {
  33482. name: "Augmented",
  33483. height: math.unit(1250, "feet")
  33484. },
  33485. {
  33486. name: "Unleashed",
  33487. height: math.unit(3000, "feet")
  33488. },
  33489. ]
  33490. ))
  33491. characterMakers.push(() => makeCharacter(
  33492. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33493. {
  33494. side: {
  33495. height: math.unit(2 + 3 / 12, "feet"),
  33496. weight: math.unit(110, "lb"),
  33497. name: "Side",
  33498. image: {
  33499. source: "./media/characters/glitch-flux/side.svg",
  33500. extra: 997 / 805,
  33501. bottom: 20 / 1017
  33502. }
  33503. },
  33504. },
  33505. [
  33506. {
  33507. name: "Normal",
  33508. height: math.unit(2 + 3 / 12, "feet"),
  33509. default: true
  33510. },
  33511. ]
  33512. ))
  33513. characterMakers.push(() => makeCharacter(
  33514. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33515. {
  33516. front: {
  33517. height: math.unit(4, "meters"),
  33518. name: "Front",
  33519. image: {
  33520. source: "./media/characters/mid/front.svg",
  33521. extra: 507 / 476,
  33522. bottom: 17 / 524
  33523. }
  33524. },
  33525. back: {
  33526. height: math.unit(4, "meters"),
  33527. name: "Back",
  33528. image: {
  33529. source: "./media/characters/mid/back.svg",
  33530. extra: 519 / 487,
  33531. bottom: 7 / 526
  33532. }
  33533. },
  33534. stuck: {
  33535. height: math.unit(2.2, "meters"),
  33536. name: "Stuck",
  33537. image: {
  33538. source: "./media/characters/mid/stuck.svg",
  33539. extra: 1951 / 1869,
  33540. bottom: 88 / 2039
  33541. }
  33542. }
  33543. },
  33544. [
  33545. {
  33546. name: "Normal",
  33547. height: math.unit(4, "meters"),
  33548. default: true
  33549. },
  33550. {
  33551. name: "Big",
  33552. height: math.unit(10, "meters")
  33553. },
  33554. {
  33555. name: "Macro",
  33556. height: math.unit(800, "meters")
  33557. },
  33558. {
  33559. name: "Megamacro",
  33560. height: math.unit(100, "km")
  33561. },
  33562. {
  33563. name: "Overgrown",
  33564. height: math.unit(1, "parsec")
  33565. },
  33566. ]
  33567. ))
  33568. characterMakers.push(() => makeCharacter(
  33569. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33570. {
  33571. front: {
  33572. height: math.unit(2.5, "meters"),
  33573. weight: math.unit(225, "kg"),
  33574. name: "Front",
  33575. image: {
  33576. source: "./media/characters/iris/front.svg",
  33577. extra: 3348 / 3251,
  33578. bottom: 205 / 3553
  33579. }
  33580. },
  33581. maw: {
  33582. height: math.unit(0.56, "meter"),
  33583. name: "Maw",
  33584. image: {
  33585. source: "./media/characters/iris/maw.svg"
  33586. }
  33587. },
  33588. },
  33589. [
  33590. {
  33591. name: "Mewter cat",
  33592. height: math.unit(1.2, "meters")
  33593. },
  33594. {
  33595. name: "Normal",
  33596. height: math.unit(2.5, "meters"),
  33597. default: true
  33598. },
  33599. {
  33600. name: "Minimacro",
  33601. height: math.unit(18, "feet")
  33602. },
  33603. {
  33604. name: "Macro",
  33605. height: math.unit(140, "feet")
  33606. },
  33607. {
  33608. name: "Macro+",
  33609. height: math.unit(180, "meters")
  33610. },
  33611. {
  33612. name: "Megamacro",
  33613. height: math.unit(2746, "meters")
  33614. },
  33615. ]
  33616. ))
  33617. characterMakers.push(() => makeCharacter(
  33618. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33619. {
  33620. front: {
  33621. height: math.unit(6, "feet"),
  33622. weight: math.unit(135, "lb"),
  33623. name: "Front",
  33624. image: {
  33625. source: "./media/characters/axel/front.svg",
  33626. extra: 908 / 908,
  33627. bottom: 58 / 966
  33628. }
  33629. },
  33630. side: {
  33631. height: math.unit(6, "feet"),
  33632. weight: math.unit(135, "lb"),
  33633. name: "Side",
  33634. image: {
  33635. source: "./media/characters/axel/side.svg",
  33636. extra: 958 / 958,
  33637. bottom: 11 / 969
  33638. }
  33639. },
  33640. back: {
  33641. height: math.unit(6, "feet"),
  33642. weight: math.unit(135, "lb"),
  33643. name: "Back",
  33644. image: {
  33645. source: "./media/characters/axel/back.svg",
  33646. extra: 887 / 887,
  33647. bottom: 34 / 921
  33648. }
  33649. },
  33650. head: {
  33651. height: math.unit(1.07, "feet"),
  33652. name: "Head",
  33653. image: {
  33654. source: "./media/characters/axel/head.svg"
  33655. }
  33656. },
  33657. beak: {
  33658. height: math.unit(1.4, "feet"),
  33659. name: "Beak",
  33660. image: {
  33661. source: "./media/characters/axel/beak.svg"
  33662. }
  33663. },
  33664. beakSide: {
  33665. height: math.unit(1.4, "feet"),
  33666. name: "Beak Side",
  33667. image: {
  33668. source: "./media/characters/axel/beak-side.svg"
  33669. }
  33670. },
  33671. sheath: {
  33672. height: math.unit(0.5, "feet"),
  33673. name: "Sheath",
  33674. image: {
  33675. source: "./media/characters/axel/sheath.svg"
  33676. }
  33677. },
  33678. dick: {
  33679. height: math.unit(0.98, "feet"),
  33680. name: "Dick",
  33681. image: {
  33682. source: "./media/characters/axel/dick.svg"
  33683. }
  33684. },
  33685. },
  33686. [
  33687. {
  33688. name: "Macro",
  33689. height: math.unit(68, "meters"),
  33690. default: true
  33691. },
  33692. ]
  33693. ))
  33694. characterMakers.push(() => makeCharacter(
  33695. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33696. {
  33697. front: {
  33698. height: math.unit(3.5, "meters"),
  33699. weight: math.unit(1200, "kg"),
  33700. name: "Front",
  33701. image: {
  33702. source: "./media/characters/joanna/front.svg",
  33703. extra: 1596 / 1488,
  33704. bottom: 29 / 1625
  33705. }
  33706. },
  33707. back: {
  33708. height: math.unit(3.5, "meters"),
  33709. weight: math.unit(1200, "kg"),
  33710. name: "Back",
  33711. image: {
  33712. source: "./media/characters/joanna/back.svg",
  33713. extra: 1594 / 1495,
  33714. bottom: 26 / 1620
  33715. }
  33716. },
  33717. frontShorts: {
  33718. height: math.unit(3.5, "meters"),
  33719. weight: math.unit(1200, "kg"),
  33720. name: "Front (Shorts)",
  33721. image: {
  33722. source: "./media/characters/joanna/front-shorts.svg",
  33723. extra: 1596 / 1488,
  33724. bottom: 29 / 1625
  33725. }
  33726. },
  33727. frontBiker: {
  33728. height: math.unit(3.5, "meters"),
  33729. weight: math.unit(1200, "kg"),
  33730. name: "Front (Biker)",
  33731. image: {
  33732. source: "./media/characters/joanna/front-biker.svg",
  33733. extra: 1596 / 1488,
  33734. bottom: 29 / 1625
  33735. }
  33736. },
  33737. backBiker: {
  33738. height: math.unit(3.5, "meters"),
  33739. weight: math.unit(1200, "kg"),
  33740. name: "Back (Biker)",
  33741. image: {
  33742. source: "./media/characters/joanna/back-biker.svg",
  33743. extra: 1594 / 1495,
  33744. bottom: 88 / 1682
  33745. }
  33746. },
  33747. bikeLeft: {
  33748. height: math.unit(2.4, "meters"),
  33749. weight: math.unit(1600, "kg"),
  33750. name: "Bike (Left)",
  33751. image: {
  33752. source: "./media/characters/joanna/bike-left.svg",
  33753. extra: 720 / 720,
  33754. bottom: 8 / 728
  33755. }
  33756. },
  33757. bikeRight: {
  33758. height: math.unit(2.4, "meters"),
  33759. weight: math.unit(1600, "kg"),
  33760. name: "Bike (Right)",
  33761. image: {
  33762. source: "./media/characters/joanna/bike-right.svg",
  33763. extra: 720 / 720,
  33764. bottom: 8 / 728
  33765. }
  33766. },
  33767. },
  33768. [
  33769. {
  33770. name: "Incognito",
  33771. height: math.unit(3.5, "meters")
  33772. },
  33773. {
  33774. name: "Casual Big",
  33775. height: math.unit(200, "meters")
  33776. },
  33777. {
  33778. name: "Macro",
  33779. height: math.unit(600, "meters")
  33780. },
  33781. {
  33782. name: "Original",
  33783. height: math.unit(20, "km"),
  33784. default: true
  33785. },
  33786. {
  33787. name: "Giga",
  33788. height: math.unit(400, "km")
  33789. },
  33790. {
  33791. name: "Lounging",
  33792. height: math.unit(1500, "km")
  33793. },
  33794. {
  33795. name: "Planetary",
  33796. height: math.unit(200000, "km")
  33797. },
  33798. ]
  33799. ))
  33800. characterMakers.push(() => makeCharacter(
  33801. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33802. {
  33803. front: {
  33804. height: math.unit(6, "feet"),
  33805. weight: math.unit(150, "lb"),
  33806. name: "Front",
  33807. image: {
  33808. source: "./media/characters/hugo-sigil/front.svg",
  33809. extra: 522 / 500,
  33810. bottom: 2 / 524
  33811. }
  33812. },
  33813. back: {
  33814. height: math.unit(6, "feet"),
  33815. weight: math.unit(150, "lb"),
  33816. name: "Back",
  33817. image: {
  33818. source: "./media/characters/hugo-sigil/back.svg",
  33819. extra: 519 / 495,
  33820. bottom: 5 / 524
  33821. }
  33822. },
  33823. maw: {
  33824. height: math.unit(1.4, "feet"),
  33825. weight: math.unit(150, "lb"),
  33826. name: "Maw",
  33827. image: {
  33828. source: "./media/characters/hugo-sigil/maw.svg"
  33829. }
  33830. },
  33831. feet: {
  33832. height: math.unit(1.56, "feet"),
  33833. weight: math.unit(150, "lb"),
  33834. name: "Feet",
  33835. image: {
  33836. source: "./media/characters/hugo-sigil/feet.svg",
  33837. extra: 177 / 177,
  33838. bottom: 12 / 189
  33839. }
  33840. },
  33841. },
  33842. [
  33843. {
  33844. name: "Normal",
  33845. height: math.unit(6, "feet")
  33846. },
  33847. {
  33848. name: "Macro",
  33849. height: math.unit(200, "feet"),
  33850. default: true
  33851. },
  33852. ]
  33853. ))
  33854. characterMakers.push(() => makeCharacter(
  33855. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33856. {
  33857. front: {
  33858. height: math.unit(6, "feet"),
  33859. weight: math.unit(150, "lb"),
  33860. name: "Front",
  33861. image: {
  33862. source: "./media/characters/peri/front.svg",
  33863. extra: 2354 / 2233,
  33864. bottom: 49 / 2403
  33865. }
  33866. },
  33867. },
  33868. [
  33869. {
  33870. name: "Really Small",
  33871. height: math.unit(1, "nm")
  33872. },
  33873. {
  33874. name: "Micro",
  33875. height: math.unit(4, "inches")
  33876. },
  33877. {
  33878. name: "Normal",
  33879. height: math.unit(7, "inches"),
  33880. default: true
  33881. },
  33882. {
  33883. name: "Macro",
  33884. height: math.unit(400, "feet")
  33885. },
  33886. {
  33887. name: "Megamacro",
  33888. height: math.unit(100, "miles")
  33889. },
  33890. ]
  33891. ))
  33892. characterMakers.push(() => makeCharacter(
  33893. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33894. {
  33895. frontSlim: {
  33896. height: math.unit(7, "feet"),
  33897. name: "Front (Slim)",
  33898. image: {
  33899. source: "./media/characters/issilora/front-slim.svg",
  33900. extra: 529 / 449,
  33901. bottom: 53 / 582
  33902. }
  33903. },
  33904. sideSlim: {
  33905. height: math.unit(7, "feet"),
  33906. name: "Side (Slim)",
  33907. image: {
  33908. source: "./media/characters/issilora/side-slim.svg",
  33909. extra: 570 / 480,
  33910. bottom: 30 / 600
  33911. }
  33912. },
  33913. backSlim: {
  33914. height: math.unit(7, "feet"),
  33915. name: "Back (Slim)",
  33916. image: {
  33917. source: "./media/characters/issilora/back-slim.svg",
  33918. extra: 537 / 455,
  33919. bottom: 46 / 583
  33920. }
  33921. },
  33922. frontBuff: {
  33923. height: math.unit(7, "feet"),
  33924. name: "Front (Buff)",
  33925. image: {
  33926. source: "./media/characters/issilora/front-buff.svg",
  33927. extra: 2310 / 2035,
  33928. bottom: 335 / 2645
  33929. }
  33930. },
  33931. head: {
  33932. height: math.unit(1.94, "feet"),
  33933. name: "Head",
  33934. image: {
  33935. source: "./media/characters/issilora/head.svg"
  33936. }
  33937. },
  33938. },
  33939. [
  33940. {
  33941. name: "Minimum",
  33942. height: math.unit(7, "feet")
  33943. },
  33944. {
  33945. name: "Comfortable",
  33946. height: math.unit(17, "feet")
  33947. },
  33948. {
  33949. name: "Fun Size",
  33950. height: math.unit(47, "feet")
  33951. },
  33952. {
  33953. name: "Natural Macro",
  33954. height: math.unit(137, "feet"),
  33955. default: true
  33956. },
  33957. {
  33958. name: "Maximum Kaiju",
  33959. height: math.unit(397, "feet")
  33960. },
  33961. ]
  33962. ))
  33963. characterMakers.push(() => makeCharacter(
  33964. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33965. {
  33966. front: {
  33967. height: math.unit(50 + 9/12, "feet"),
  33968. weight: math.unit(32.8, "tons"),
  33969. name: "Front",
  33970. image: {
  33971. source: "./media/characters/irb'iiritaahn/front.svg",
  33972. extra: 1878/1826,
  33973. bottom: 326/2204
  33974. }
  33975. },
  33976. back: {
  33977. height: math.unit(50 + 9/12, "feet"),
  33978. weight: math.unit(32.8, "tons"),
  33979. name: "Back",
  33980. image: {
  33981. source: "./media/characters/irb'iiritaahn/back.svg",
  33982. extra: 2052/2018,
  33983. bottom: 152/2204
  33984. }
  33985. },
  33986. head: {
  33987. height: math.unit(12.86, "feet"),
  33988. name: "Head",
  33989. image: {
  33990. source: "./media/characters/irb'iiritaahn/head.svg"
  33991. }
  33992. },
  33993. maw: {
  33994. height: math.unit(9.66, "feet"),
  33995. name: "Maw",
  33996. image: {
  33997. source: "./media/characters/irb'iiritaahn/maw.svg"
  33998. }
  33999. },
  34000. frontDick: {
  34001. height: math.unit(8.78461, "feet"),
  34002. name: "Front Dick",
  34003. image: {
  34004. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  34005. }
  34006. },
  34007. rearDick: {
  34008. height: math.unit(8.78461, "feet"),
  34009. name: "Rear Dick",
  34010. image: {
  34011. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  34012. }
  34013. },
  34014. rearDickUnfolded: {
  34015. height: math.unit(8.78, "feet"),
  34016. name: "Rear Dick (Unfolded)",
  34017. image: {
  34018. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  34019. }
  34020. },
  34021. wings: {
  34022. height: math.unit(43, "feet"),
  34023. name: "Wings",
  34024. image: {
  34025. source: "./media/characters/irb'iiritaahn/wings.svg"
  34026. }
  34027. },
  34028. },
  34029. [
  34030. {
  34031. name: "Macro",
  34032. height: math.unit(50 + 9/12, "feet"),
  34033. default: true
  34034. },
  34035. ]
  34036. ))
  34037. characterMakers.push(() => makeCharacter(
  34038. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  34039. {
  34040. front: {
  34041. height: math.unit(205, "cm"),
  34042. weight: math.unit(102, "kg"),
  34043. name: "Front",
  34044. image: {
  34045. source: "./media/characters/irbisgreif/front.svg",
  34046. extra: 785/706,
  34047. bottom: 13/798
  34048. }
  34049. },
  34050. back: {
  34051. height: math.unit(205, "cm"),
  34052. weight: math.unit(102, "kg"),
  34053. name: "Back",
  34054. image: {
  34055. source: "./media/characters/irbisgreif/back.svg",
  34056. extra: 713/701,
  34057. bottom: 26/739
  34058. }
  34059. },
  34060. frontDressed: {
  34061. height: math.unit(216, "cm"),
  34062. weight: math.unit(102, "kg"),
  34063. name: "Front (Dressed)",
  34064. image: {
  34065. source: "./media/characters/irbisgreif/front-dressed.svg",
  34066. extra: 902/776,
  34067. bottom: 14/916
  34068. }
  34069. },
  34070. sideDressed: {
  34071. height: math.unit(195, "cm"),
  34072. weight: math.unit(102, "kg"),
  34073. name: "Side (Dressed)",
  34074. image: {
  34075. source: "./media/characters/irbisgreif/side-dressed.svg",
  34076. extra: 788/688,
  34077. bottom: 21/809
  34078. }
  34079. },
  34080. backDressed: {
  34081. height: math.unit(216, "cm"),
  34082. weight: math.unit(102, "kg"),
  34083. name: "Back (Dressed)",
  34084. image: {
  34085. source: "./media/characters/irbisgreif/back-dressed.svg",
  34086. extra: 901/783,
  34087. bottom: 10/911
  34088. }
  34089. },
  34090. dick: {
  34091. height: math.unit(0.49, "feet"),
  34092. name: "Dick",
  34093. image: {
  34094. source: "./media/characters/irbisgreif/dick.svg"
  34095. }
  34096. },
  34097. wingTop: {
  34098. height: math.unit(1.93 , "feet"),
  34099. name: "Wing (Top)",
  34100. image: {
  34101. source: "./media/characters/irbisgreif/wing-top.svg"
  34102. }
  34103. },
  34104. wingBottom: {
  34105. height: math.unit(1.93 , "feet"),
  34106. name: "Wing (Bottom)",
  34107. image: {
  34108. source: "./media/characters/irbisgreif/wing-bottom.svg"
  34109. }
  34110. },
  34111. },
  34112. [
  34113. {
  34114. name: "Normal",
  34115. height: math.unit(216, "cm"),
  34116. default: true
  34117. },
  34118. ]
  34119. ))
  34120. characterMakers.push(() => makeCharacter(
  34121. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  34122. {
  34123. front: {
  34124. height: math.unit(6, "feet"),
  34125. weight: math.unit(150, "lb"),
  34126. name: "Front",
  34127. image: {
  34128. source: "./media/characters/pride/front.svg",
  34129. extra: 1299/1230,
  34130. bottom: 18/1317
  34131. }
  34132. },
  34133. },
  34134. [
  34135. {
  34136. name: "Normal",
  34137. height: math.unit(7, "feet")
  34138. },
  34139. {
  34140. name: "Mini-macro",
  34141. height: math.unit(11, "feet")
  34142. },
  34143. {
  34144. name: "Macro",
  34145. height: math.unit(15, "meters"),
  34146. default: true
  34147. },
  34148. {
  34149. name: "Macro+",
  34150. height: math.unit(40, "meters")
  34151. },
  34152. ]
  34153. ))
  34154. characterMakers.push(() => makeCharacter(
  34155. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34156. {
  34157. front: {
  34158. height: math.unit(4 + 2 / 12, "feet"),
  34159. weight: math.unit(95, "lb"),
  34160. name: "Front",
  34161. image: {
  34162. source: "./media/characters/vaelophis-nyx/front.svg",
  34163. extra: 2532/2330,
  34164. bottom: 0/2532
  34165. }
  34166. },
  34167. back: {
  34168. height: math.unit(4 + 2 / 12, "feet"),
  34169. weight: math.unit(95, "lb"),
  34170. name: "Back",
  34171. image: {
  34172. source: "./media/characters/vaelophis-nyx/back.svg",
  34173. extra: 2484/2361,
  34174. bottom: 0/2484
  34175. }
  34176. },
  34177. feralSide: {
  34178. height: math.unit(2 + 1/12, "feet"),
  34179. weight: math.unit(20, "lb"),
  34180. name: "Feral (Side)",
  34181. image: {
  34182. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34183. extra: 1721/1581,
  34184. bottom: 70/1791
  34185. }
  34186. },
  34187. feralLazing: {
  34188. height: math.unit(1.08, "feet"),
  34189. weight: math.unit(20, "lb"),
  34190. name: "Feral (Lazing)",
  34191. image: {
  34192. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34193. extra: 822/822,
  34194. bottom: 248/1070
  34195. }
  34196. },
  34197. ear: {
  34198. height: math.unit(0.416, "feet"),
  34199. name: "Ear",
  34200. image: {
  34201. source: "./media/characters/vaelophis-nyx/ear.svg"
  34202. }
  34203. },
  34204. eye: {
  34205. height: math.unit(0.0748, "feet"),
  34206. name: "Eye",
  34207. image: {
  34208. source: "./media/characters/vaelophis-nyx/eye.svg"
  34209. }
  34210. },
  34211. mouth: {
  34212. height: math.unit(0.378, "feet"),
  34213. name: "Mouth",
  34214. image: {
  34215. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34216. }
  34217. },
  34218. spade: {
  34219. height: math.unit(0.55, "feet"),
  34220. name: "Spade",
  34221. image: {
  34222. source: "./media/characters/vaelophis-nyx/spade.svg"
  34223. }
  34224. },
  34225. },
  34226. [
  34227. {
  34228. name: "Normal",
  34229. height: math.unit(4 + 2/12, "feet"),
  34230. default: true
  34231. },
  34232. ]
  34233. ))
  34234. characterMakers.push(() => makeCharacter(
  34235. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34236. {
  34237. front: {
  34238. height: math.unit(7, "feet"),
  34239. weight: math.unit(231, "lb"),
  34240. name: "Front",
  34241. image: {
  34242. source: "./media/characters/flux/front.svg",
  34243. extra: 919/871,
  34244. bottom: 0/919
  34245. }
  34246. },
  34247. back: {
  34248. height: math.unit(7, "feet"),
  34249. weight: math.unit(231, "lb"),
  34250. name: "Back",
  34251. image: {
  34252. source: "./media/characters/flux/back.svg",
  34253. extra: 1040/992,
  34254. bottom: 0/1040
  34255. }
  34256. },
  34257. frontDressed: {
  34258. height: math.unit(7, "feet"),
  34259. weight: math.unit(231, "lb"),
  34260. name: "Front (Dressed)",
  34261. image: {
  34262. source: "./media/characters/flux/front-dressed.svg",
  34263. extra: 919/871,
  34264. bottom: 0/919
  34265. }
  34266. },
  34267. feralSide: {
  34268. height: math.unit(5, "feet"),
  34269. weight: math.unit(150, "lb"),
  34270. name: "Feral (Side)",
  34271. image: {
  34272. source: "./media/characters/flux/feral-side.svg",
  34273. extra: 598/528,
  34274. bottom: 28/626
  34275. }
  34276. },
  34277. head: {
  34278. height: math.unit(1.585, "feet"),
  34279. name: "Head",
  34280. image: {
  34281. source: "./media/characters/flux/head.svg"
  34282. }
  34283. },
  34284. headSide: {
  34285. height: math.unit(1.74, "feet"),
  34286. name: "Head (Side)",
  34287. image: {
  34288. source: "./media/characters/flux/head-side.svg"
  34289. }
  34290. },
  34291. headSideFire: {
  34292. height: math.unit(1.76, "feet"),
  34293. name: "Head (Side, Fire)",
  34294. image: {
  34295. source: "./media/characters/flux/head-side-fire.svg"
  34296. }
  34297. },
  34298. },
  34299. [
  34300. {
  34301. name: "Normal",
  34302. height: math.unit(7, "feet"),
  34303. default: true
  34304. },
  34305. ]
  34306. ))
  34307. characterMakers.push(() => makeCharacter(
  34308. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34309. {
  34310. front: {
  34311. height: math.unit(9, "feet"),
  34312. weight: math.unit(1012, "lb"),
  34313. name: "Front",
  34314. image: {
  34315. source: "./media/characters/ulfra-lupae/front.svg",
  34316. extra: 1083/1011,
  34317. bottom: 67/1150
  34318. }
  34319. },
  34320. },
  34321. [
  34322. {
  34323. name: "Micro",
  34324. height: math.unit(6, "inches")
  34325. },
  34326. {
  34327. name: "Socializing",
  34328. height: math.unit(6 + 5/12, "feet")
  34329. },
  34330. {
  34331. name: "Normal",
  34332. height: math.unit(9, "feet"),
  34333. default: true
  34334. },
  34335. {
  34336. name: "Macro",
  34337. height: math.unit(150, "feet")
  34338. },
  34339. ]
  34340. ))
  34341. characterMakers.push(() => makeCharacter(
  34342. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34343. {
  34344. front: {
  34345. height: math.unit(5 + 2/12, "feet"),
  34346. weight: math.unit(120, "lb"),
  34347. name: "Front",
  34348. image: {
  34349. source: "./media/characters/timber/front.svg",
  34350. extra: 2814/2705,
  34351. bottom: 181/2995
  34352. }
  34353. },
  34354. },
  34355. [
  34356. {
  34357. name: "Normal",
  34358. height: math.unit(5 + 2/12, "feet"),
  34359. default: true
  34360. },
  34361. ]
  34362. ))
  34363. characterMakers.push(() => makeCharacter(
  34364. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34365. {
  34366. front: {
  34367. height: math.unit(9, "feet"),
  34368. name: "Front",
  34369. image: {
  34370. source: "./media/characters/nicki/front.svg",
  34371. extra: 1240/990,
  34372. bottom: 45/1285
  34373. },
  34374. form: "anthro",
  34375. default: true
  34376. },
  34377. side: {
  34378. height: math.unit(9, "feet"),
  34379. name: "Side",
  34380. image: {
  34381. source: "./media/characters/nicki/side.svg",
  34382. extra: 1047/973,
  34383. bottom: 61/1108
  34384. },
  34385. form: "anthro"
  34386. },
  34387. back: {
  34388. height: math.unit(9, "feet"),
  34389. name: "Back",
  34390. image: {
  34391. source: "./media/characters/nicki/back.svg",
  34392. extra: 1006/965,
  34393. bottom: 39/1045
  34394. },
  34395. form: "anthro"
  34396. },
  34397. taur: {
  34398. height: math.unit(15, "feet"),
  34399. name: "Taur",
  34400. image: {
  34401. source: "./media/characters/nicki/taur.svg",
  34402. extra: 1592/1347,
  34403. bottom: 0/1592
  34404. },
  34405. form: "taur",
  34406. default: true
  34407. },
  34408. },
  34409. [
  34410. {
  34411. name: "Normal",
  34412. height: math.unit(9, "feet"),
  34413. form: "anthro",
  34414. default: true
  34415. },
  34416. {
  34417. name: "Normal",
  34418. height: math.unit(15, "feet"),
  34419. form: "taur",
  34420. default: true
  34421. }
  34422. ],
  34423. {
  34424. "anthro": {
  34425. name: "Anthro",
  34426. default: true
  34427. },
  34428. "taur": {
  34429. name: "Taur"
  34430. }
  34431. }
  34432. ))
  34433. characterMakers.push(() => makeCharacter(
  34434. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34435. {
  34436. front: {
  34437. height: math.unit(7 + 10/12, "feet"),
  34438. weight: math.unit(3.5, "tons"),
  34439. name: "Front",
  34440. image: {
  34441. source: "./media/characters/lee/front.svg",
  34442. extra: 1773/1615,
  34443. bottom: 86/1859
  34444. }
  34445. },
  34446. hand: {
  34447. height: math.unit(1.78, "feet"),
  34448. name: "Hand",
  34449. image: {
  34450. source: "./media/characters/lee/hand.svg"
  34451. }
  34452. },
  34453. maw: {
  34454. height: math.unit(1.18, "feet"),
  34455. name: "Maw",
  34456. image: {
  34457. source: "./media/characters/lee/maw.svg"
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Normal",
  34464. height: math.unit(7 + 10/12, "feet"),
  34465. default: true
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34471. {
  34472. front: {
  34473. height: math.unit(9, "feet"),
  34474. name: "Front",
  34475. image: {
  34476. source: "./media/characters/guti/front.svg",
  34477. extra: 4551/4355,
  34478. bottom: 123/4674
  34479. }
  34480. },
  34481. tongue: {
  34482. height: math.unit(1, "feet"),
  34483. name: "Tongue",
  34484. image: {
  34485. source: "./media/characters/guti/tongue.svg"
  34486. }
  34487. },
  34488. paw: {
  34489. height: math.unit(1.18, "feet"),
  34490. name: "Paw",
  34491. image: {
  34492. source: "./media/characters/guti/paw.svg"
  34493. }
  34494. },
  34495. },
  34496. [
  34497. {
  34498. name: "Normal",
  34499. height: math.unit(9, "feet"),
  34500. default: true
  34501. },
  34502. ]
  34503. ))
  34504. characterMakers.push(() => makeCharacter(
  34505. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34506. {
  34507. side: {
  34508. height: math.unit(5, "meters"),
  34509. name: "Side",
  34510. image: {
  34511. source: "./media/characters/vesper/side.svg",
  34512. extra: 1605/1518,
  34513. bottom: 0/1605
  34514. }
  34515. },
  34516. },
  34517. [
  34518. {
  34519. name: "Small",
  34520. height: math.unit(5, "meters")
  34521. },
  34522. {
  34523. name: "Sage",
  34524. height: math.unit(100, "meters"),
  34525. default: true
  34526. },
  34527. {
  34528. name: "Fun Size",
  34529. height: math.unit(600, "meters")
  34530. },
  34531. {
  34532. name: "Goddess",
  34533. height: math.unit(20000, "km")
  34534. },
  34535. {
  34536. name: "Maximum",
  34537. height: math.unit(5, "galaxies")
  34538. },
  34539. ]
  34540. ))
  34541. characterMakers.push(() => makeCharacter(
  34542. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34543. {
  34544. front: {
  34545. height: math.unit(6 + 3/12, "feet"),
  34546. weight: math.unit(190, "lb"),
  34547. name: "Front",
  34548. image: {
  34549. source: "./media/characters/gawain/front.svg",
  34550. extra: 2222/2139,
  34551. bottom: 90/2312
  34552. }
  34553. },
  34554. back: {
  34555. height: math.unit(6 + 3/12, "feet"),
  34556. weight: math.unit(190, "lb"),
  34557. name: "Back",
  34558. image: {
  34559. source: "./media/characters/gawain/back.svg",
  34560. extra: 2199/2111,
  34561. bottom: 73/2272
  34562. }
  34563. },
  34564. },
  34565. [
  34566. {
  34567. name: "Normal",
  34568. height: math.unit(6 + 3/12, "feet"),
  34569. default: true
  34570. },
  34571. ]
  34572. ))
  34573. characterMakers.push(() => makeCharacter(
  34574. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34575. {
  34576. side: {
  34577. height: math.unit(3.5, "meters"),
  34578. weight: math.unit(16000, "lb"),
  34579. name: "Side",
  34580. image: {
  34581. source: "./media/characters/dascalti/side.svg",
  34582. extra: 392/273,
  34583. bottom: 47/439
  34584. }
  34585. },
  34586. breath: {
  34587. height: math.unit(7.4, "feet"),
  34588. name: "Breath",
  34589. image: {
  34590. source: "./media/characters/dascalti/breath.svg"
  34591. }
  34592. },
  34593. fed: {
  34594. height: math.unit(3.6, "meters"),
  34595. weight: math.unit(16000, "lb"),
  34596. name: "Fed",
  34597. image: {
  34598. source: "./media/characters/dascalti/fed.svg",
  34599. extra: 1419/820,
  34600. bottom: 95/1514
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Normal",
  34607. height: math.unit(3.5, "meters"),
  34608. default: true
  34609. },
  34610. ]
  34611. ))
  34612. characterMakers.push(() => makeCharacter(
  34613. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34614. {
  34615. front: {
  34616. height: math.unit(3 + 5/12, "feet"),
  34617. name: "Front",
  34618. image: {
  34619. source: "./media/characters/mauve/front.svg",
  34620. extra: 1126/1033,
  34621. bottom: 65/1191
  34622. }
  34623. },
  34624. side: {
  34625. height: math.unit(3 + 5/12, "feet"),
  34626. name: "Side",
  34627. image: {
  34628. source: "./media/characters/mauve/side.svg",
  34629. extra: 1089/1001,
  34630. bottom: 29/1118
  34631. }
  34632. },
  34633. back: {
  34634. height: math.unit(3 + 5/12, "feet"),
  34635. name: "Back",
  34636. image: {
  34637. source: "./media/characters/mauve/back.svg",
  34638. extra: 1173/1053,
  34639. bottom: 109/1282
  34640. }
  34641. },
  34642. },
  34643. [
  34644. {
  34645. name: "Normal",
  34646. height: math.unit(3 + 5/12, "feet"),
  34647. default: true
  34648. },
  34649. ]
  34650. ))
  34651. characterMakers.push(() => makeCharacter(
  34652. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34653. {
  34654. front: {
  34655. height: math.unit(6 + 3/12, "feet"),
  34656. weight: math.unit(450, "lb"),
  34657. name: "Front",
  34658. image: {
  34659. source: "./media/characters/carlos/front.svg",
  34660. extra: 444/423,
  34661. bottom: 27/471
  34662. }
  34663. },
  34664. },
  34665. [
  34666. {
  34667. name: "Normal",
  34668. height: math.unit(6 + 3/12, "feet"),
  34669. default: true
  34670. },
  34671. ]
  34672. ))
  34673. characterMakers.push(() => makeCharacter(
  34674. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34675. {
  34676. back: {
  34677. height: math.unit(5 + 10/12, "feet"),
  34678. weight: math.unit(200, "lb"),
  34679. name: "Back",
  34680. image: {
  34681. source: "./media/characters/jax/back.svg",
  34682. extra: 764/739,
  34683. bottom: 25/789
  34684. }
  34685. },
  34686. },
  34687. [
  34688. {
  34689. name: "Normal",
  34690. height: math.unit(5 + 10/12, "feet"),
  34691. default: true
  34692. },
  34693. ]
  34694. ))
  34695. characterMakers.push(() => makeCharacter(
  34696. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34697. {
  34698. front: {
  34699. height: math.unit(8, "feet"),
  34700. weight: math.unit(250, "lb"),
  34701. name: "Front",
  34702. image: {
  34703. source: "./media/characters/eikthynir/front.svg",
  34704. extra: 1332/1166,
  34705. bottom: 82/1414
  34706. }
  34707. },
  34708. back: {
  34709. height: math.unit(8, "feet"),
  34710. weight: math.unit(250, "lb"),
  34711. name: "Back",
  34712. image: {
  34713. source: "./media/characters/eikthynir/back.svg",
  34714. extra: 1342/1190,
  34715. bottom: 19/1361
  34716. }
  34717. },
  34718. dick: {
  34719. height: math.unit(2.35, "feet"),
  34720. name: "Dick",
  34721. image: {
  34722. source: "./media/characters/eikthynir/dick.svg"
  34723. }
  34724. },
  34725. },
  34726. [
  34727. {
  34728. name: "Normal",
  34729. height: math.unit(8, "feet"),
  34730. default: true
  34731. },
  34732. ]
  34733. ))
  34734. characterMakers.push(() => makeCharacter(
  34735. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34736. {
  34737. front: {
  34738. height: math.unit(99, "meters"),
  34739. weight: math.unit(13000, "tons"),
  34740. name: "Front",
  34741. image: {
  34742. source: "./media/characters/zlmos/front.svg",
  34743. extra: 2202/1992,
  34744. bottom: 315/2517
  34745. }
  34746. },
  34747. },
  34748. [
  34749. {
  34750. name: "Macro",
  34751. height: math.unit(99, "meters"),
  34752. default: true
  34753. },
  34754. ]
  34755. ))
  34756. characterMakers.push(() => makeCharacter(
  34757. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34758. {
  34759. front: {
  34760. height: math.unit(6 + 5/12, "feet"),
  34761. name: "Front",
  34762. image: {
  34763. source: "./media/characters/purri/front.svg",
  34764. extra: 1698/1610,
  34765. bottom: 32/1730
  34766. }
  34767. },
  34768. frontAlt: {
  34769. height: math.unit(6 + 5/12, "feet"),
  34770. name: "Front (Alt)",
  34771. image: {
  34772. source: "./media/characters/purri/front-alt.svg",
  34773. extra: 450/420,
  34774. bottom: 26/476
  34775. }
  34776. },
  34777. boots: {
  34778. height: math.unit(5.5, "feet"),
  34779. name: "Boots",
  34780. image: {
  34781. source: "./media/characters/purri/boots.svg",
  34782. extra: 905/853,
  34783. bottom: 18/923
  34784. },
  34785. extraAttributes: {
  34786. "shoeSize": {
  34787. name: "Shoe Size",
  34788. power: 1,
  34789. type: "length",
  34790. base: math.unit(12, "ShoeSizeMensUS")
  34791. },
  34792. "platformHeight": {
  34793. name: "Platform Height",
  34794. power: 1,
  34795. type: "length",
  34796. base: math.unit(2, "inches")
  34797. },
  34798. }
  34799. },
  34800. lying: {
  34801. height: math.unit(2, "feet"),
  34802. name: "Lying",
  34803. image: {
  34804. source: "./media/characters/purri/lying.svg",
  34805. extra: 940/843,
  34806. bottom: 146/1086
  34807. }
  34808. },
  34809. devious: {
  34810. height: math.unit(1.77, "feet"),
  34811. name: "Devious",
  34812. image: {
  34813. source: "./media/characters/purri/devious.svg",
  34814. extra: 1440/1155,
  34815. bottom: 147/1587
  34816. }
  34817. },
  34818. bean: {
  34819. height: math.unit(1.94, "feet"),
  34820. name: "Bean",
  34821. image: {
  34822. source: "./media/characters/purri/bean.svg"
  34823. }
  34824. },
  34825. },
  34826. [
  34827. {
  34828. name: "Micro",
  34829. height: math.unit(1, "mm")
  34830. },
  34831. {
  34832. name: "Normal",
  34833. height: math.unit(6 + 5/12, "feet"),
  34834. default: true
  34835. },
  34836. {
  34837. name: "Macro :3c",
  34838. height: math.unit(2, "miles")
  34839. },
  34840. ]
  34841. ))
  34842. characterMakers.push(() => makeCharacter(
  34843. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34844. {
  34845. front: {
  34846. height: math.unit(6 + 2/12, "feet"),
  34847. weight: math.unit(250, "lb"),
  34848. name: "Front",
  34849. image: {
  34850. source: "./media/characters/moonlight/front.svg",
  34851. extra: 1044/908,
  34852. bottom: 56/1100
  34853. }
  34854. },
  34855. feral: {
  34856. height: math.unit(3 + 1/12, "feet"),
  34857. weight: math.unit(50, "kg"),
  34858. name: "Feral",
  34859. image: {
  34860. source: "./media/characters/moonlight/feral.svg",
  34861. extra: 3705/2791,
  34862. bottom: 145/3850
  34863. }
  34864. },
  34865. paw: {
  34866. height: math.unit(1, "feet"),
  34867. name: "Paw",
  34868. image: {
  34869. source: "./media/characters/moonlight/paw.svg"
  34870. }
  34871. },
  34872. paws: {
  34873. height: math.unit(0.98, "feet"),
  34874. name: "Paws",
  34875. image: {
  34876. source: "./media/characters/moonlight/paws.svg",
  34877. extra: 939/939,
  34878. bottom: 50/989
  34879. }
  34880. },
  34881. mouth: {
  34882. height: math.unit(0.48, "feet"),
  34883. name: "Mouth",
  34884. image: {
  34885. source: "./media/characters/moonlight/mouth.svg"
  34886. }
  34887. },
  34888. dick: {
  34889. height: math.unit(1.46, "feet"),
  34890. name: "Dick",
  34891. image: {
  34892. source: "./media/characters/moonlight/dick.svg"
  34893. }
  34894. },
  34895. },
  34896. [
  34897. {
  34898. name: "Normal",
  34899. height: math.unit(6 + 2/12, "feet"),
  34900. default: true
  34901. },
  34902. {
  34903. name: "Macro",
  34904. height: math.unit(300, "feet")
  34905. },
  34906. {
  34907. name: "Macro+",
  34908. height: math.unit(1, "mile")
  34909. },
  34910. {
  34911. name: "Mt. Moon",
  34912. height: math.unit(5, "miles")
  34913. },
  34914. {
  34915. name: "Megamacro",
  34916. height: math.unit(15, "miles")
  34917. },
  34918. ]
  34919. ))
  34920. characterMakers.push(() => makeCharacter(
  34921. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34922. {
  34923. back: {
  34924. height: math.unit(6, "feet"),
  34925. weight: math.unit(150, "lb"),
  34926. name: "Back",
  34927. image: {
  34928. source: "./media/characters/sylen/back.svg",
  34929. extra: 1335/1273,
  34930. bottom: 107/1442
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Normal",
  34937. height: math.unit(5 + 5/12, "feet")
  34938. },
  34939. {
  34940. name: "Megamacro",
  34941. height: math.unit(3, "miles"),
  34942. default: true
  34943. },
  34944. ]
  34945. ))
  34946. characterMakers.push(() => makeCharacter(
  34947. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34948. {
  34949. front: {
  34950. height: math.unit(6, "feet"),
  34951. weight: math.unit(190, "lb"),
  34952. name: "Front",
  34953. image: {
  34954. source: "./media/characters/huttser/front.svg",
  34955. extra: 1152/1058,
  34956. bottom: 23/1175
  34957. }
  34958. },
  34959. side: {
  34960. height: math.unit(6, "feet"),
  34961. weight: math.unit(190, "lb"),
  34962. name: "Side",
  34963. image: {
  34964. source: "./media/characters/huttser/side.svg",
  34965. extra: 1174/1065,
  34966. bottom: 18/1192
  34967. }
  34968. },
  34969. back: {
  34970. height: math.unit(6, "feet"),
  34971. weight: math.unit(190, "lb"),
  34972. name: "Back",
  34973. image: {
  34974. source: "./media/characters/huttser/back.svg",
  34975. extra: 1158/1056,
  34976. bottom: 12/1170
  34977. }
  34978. },
  34979. },
  34980. [
  34981. ]
  34982. ))
  34983. characterMakers.push(() => makeCharacter(
  34984. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34985. {
  34986. side: {
  34987. height: math.unit(12 + 9/12, "feet"),
  34988. weight: math.unit(15000, "lb"),
  34989. name: "Side",
  34990. image: {
  34991. source: "./media/characters/faan/side.svg",
  34992. extra: 2747/2697,
  34993. bottom: 0/2747
  34994. }
  34995. },
  34996. front: {
  34997. height: math.unit(12 + 9/12, "feet"),
  34998. weight: math.unit(15000, "lb"),
  34999. name: "Front",
  35000. image: {
  35001. source: "./media/characters/faan/front.svg",
  35002. extra: 607/571,
  35003. bottom: 24/631
  35004. }
  35005. },
  35006. head: {
  35007. height: math.unit(2.85, "feet"),
  35008. name: "Head",
  35009. image: {
  35010. source: "./media/characters/faan/head.svg"
  35011. }
  35012. },
  35013. headAlt: {
  35014. height: math.unit(3.13, "feet"),
  35015. name: "Head (Alt)",
  35016. image: {
  35017. source: "./media/characters/faan/head-alt.svg"
  35018. }
  35019. },
  35020. },
  35021. [
  35022. {
  35023. name: "Normal",
  35024. height: math.unit(12 + 9/12, "feet"),
  35025. default: true
  35026. },
  35027. ]
  35028. ))
  35029. characterMakers.push(() => makeCharacter(
  35030. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  35031. {
  35032. front: {
  35033. height: math.unit(6, "feet"),
  35034. weight: math.unit(300, "lb"),
  35035. name: "Front",
  35036. image: {
  35037. source: "./media/characters/tanio/front.svg",
  35038. extra: 711/673,
  35039. bottom: 25/736
  35040. }
  35041. },
  35042. },
  35043. [
  35044. {
  35045. name: "Normal",
  35046. height: math.unit(6, "feet"),
  35047. default: true
  35048. },
  35049. ]
  35050. ))
  35051. characterMakers.push(() => makeCharacter(
  35052. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  35053. {
  35054. front: {
  35055. height: math.unit(3, "inches"),
  35056. name: "Front",
  35057. image: {
  35058. source: "./media/characters/noboru/front.svg",
  35059. extra: 1039/932,
  35060. bottom: 18/1057
  35061. }
  35062. },
  35063. },
  35064. [
  35065. {
  35066. name: "Micro",
  35067. height: math.unit(3, "inches"),
  35068. default: true
  35069. },
  35070. ]
  35071. ))
  35072. characterMakers.push(() => makeCharacter(
  35073. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  35074. {
  35075. front: {
  35076. height: math.unit(1.85, "meters"),
  35077. weight: math.unit(80, "kg"),
  35078. name: "Front",
  35079. image: {
  35080. source: "./media/characters/daniel-barrett/front.svg",
  35081. extra: 355/337,
  35082. bottom: 9/364
  35083. }
  35084. },
  35085. },
  35086. [
  35087. {
  35088. name: "Pico",
  35089. height: math.unit(0.0433, "mm")
  35090. },
  35091. {
  35092. name: "Nano",
  35093. height: math.unit(1.5, "mm")
  35094. },
  35095. {
  35096. name: "Micro",
  35097. height: math.unit(5.3, "cm"),
  35098. default: true
  35099. },
  35100. {
  35101. name: "Normal",
  35102. height: math.unit(1.85, "meters")
  35103. },
  35104. {
  35105. name: "Macro",
  35106. height: math.unit(64.7, "meters")
  35107. },
  35108. {
  35109. name: "Megamacro",
  35110. height: math.unit(2.26, "km")
  35111. },
  35112. {
  35113. name: "Gigamacro",
  35114. height: math.unit(79, "km")
  35115. },
  35116. {
  35117. name: "Teramacro",
  35118. height: math.unit(2765, "km")
  35119. },
  35120. {
  35121. name: "Petamacro",
  35122. height: math.unit(96678, "km")
  35123. },
  35124. ]
  35125. ))
  35126. characterMakers.push(() => makeCharacter(
  35127. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  35128. {
  35129. front: {
  35130. height: math.unit(30, "meters"),
  35131. weight: math.unit(400, "tons"),
  35132. name: "Front",
  35133. image: {
  35134. source: "./media/characters/zeel/front.svg",
  35135. extra: 2599/2599,
  35136. bottom: 226/2825
  35137. }
  35138. },
  35139. },
  35140. [
  35141. {
  35142. name: "Macro",
  35143. height: math.unit(30, "meters"),
  35144. default: true
  35145. },
  35146. ]
  35147. ))
  35148. characterMakers.push(() => makeCharacter(
  35149. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35150. {
  35151. front: {
  35152. height: math.unit(6 + 7/12, "feet"),
  35153. weight: math.unit(210, "lb"),
  35154. name: "Front",
  35155. image: {
  35156. source: "./media/characters/tarn/front.svg",
  35157. extra: 3517/3220,
  35158. bottom: 91/3608
  35159. }
  35160. },
  35161. back: {
  35162. height: math.unit(6 + 7/12, "feet"),
  35163. weight: math.unit(210, "lb"),
  35164. name: "Back",
  35165. image: {
  35166. source: "./media/characters/tarn/back.svg",
  35167. extra: 3566/3241,
  35168. bottom: 34/3600
  35169. }
  35170. },
  35171. dick: {
  35172. height: math.unit(1.65, "feet"),
  35173. name: "Dick",
  35174. image: {
  35175. source: "./media/characters/tarn/dick.svg"
  35176. }
  35177. },
  35178. paw: {
  35179. height: math.unit(1.80, "feet"),
  35180. name: "Paw",
  35181. image: {
  35182. source: "./media/characters/tarn/paw.svg"
  35183. }
  35184. },
  35185. tongue: {
  35186. height: math.unit(0.97, "feet"),
  35187. name: "Tongue",
  35188. image: {
  35189. source: "./media/characters/tarn/tongue.svg"
  35190. }
  35191. },
  35192. },
  35193. [
  35194. {
  35195. name: "Micro",
  35196. height: math.unit(4, "inches")
  35197. },
  35198. {
  35199. name: "Normal",
  35200. height: math.unit(6 + 7/12, "feet"),
  35201. default: true
  35202. },
  35203. {
  35204. name: "Macro",
  35205. height: math.unit(300, "feet")
  35206. },
  35207. ]
  35208. ))
  35209. characterMakers.push(() => makeCharacter(
  35210. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35211. {
  35212. front: {
  35213. height: math.unit(5 + 7/12, "feet"),
  35214. weight: math.unit(80, "kg"),
  35215. name: "Front",
  35216. image: {
  35217. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35218. extra: 3023/2865,
  35219. bottom: 33/3056
  35220. }
  35221. },
  35222. back: {
  35223. height: math.unit(5 + 7/12, "feet"),
  35224. weight: math.unit(80, "kg"),
  35225. name: "Back",
  35226. image: {
  35227. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35228. extra: 3020/2886,
  35229. bottom: 30/3050
  35230. }
  35231. },
  35232. dick: {
  35233. height: math.unit(0.98, "feet"),
  35234. name: "Dick",
  35235. image: {
  35236. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35237. }
  35238. },
  35239. anatomy: {
  35240. height: math.unit(2.86, "feet"),
  35241. name: "Anatomy",
  35242. image: {
  35243. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35244. }
  35245. },
  35246. },
  35247. [
  35248. {
  35249. name: "Really Small",
  35250. height: math.unit(2, "inches")
  35251. },
  35252. {
  35253. name: "Micro",
  35254. height: math.unit(5.583, "inches")
  35255. },
  35256. {
  35257. name: "Normal",
  35258. height: math.unit(5 + 7/12, "feet"),
  35259. default: true
  35260. },
  35261. {
  35262. name: "Macro",
  35263. height: math.unit(67, "feet")
  35264. },
  35265. {
  35266. name: "Megamacro",
  35267. height: math.unit(134, "feet")
  35268. },
  35269. ]
  35270. ))
  35271. characterMakers.push(() => makeCharacter(
  35272. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35273. {
  35274. front: {
  35275. height: math.unit(9, "feet"),
  35276. weight: math.unit(120, "lb"),
  35277. name: "Front",
  35278. image: {
  35279. source: "./media/characters/sally/front.svg",
  35280. extra: 1506/1349,
  35281. bottom: 66/1572
  35282. }
  35283. },
  35284. },
  35285. [
  35286. {
  35287. name: "Normal",
  35288. height: math.unit(9, "feet"),
  35289. default: true
  35290. },
  35291. ]
  35292. ))
  35293. characterMakers.push(() => makeCharacter(
  35294. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35295. {
  35296. front: {
  35297. height: math.unit(8, "feet"),
  35298. weight: math.unit(900, "lb"),
  35299. name: "Front",
  35300. image: {
  35301. source: "./media/characters/owen/front.svg",
  35302. extra: 1761/1657,
  35303. bottom: 74/1835
  35304. }
  35305. },
  35306. side: {
  35307. height: math.unit(8, "feet"),
  35308. weight: math.unit(900, "lb"),
  35309. name: "Side",
  35310. image: {
  35311. source: "./media/characters/owen/side.svg",
  35312. extra: 1797/1734,
  35313. bottom: 30/1827
  35314. }
  35315. },
  35316. back: {
  35317. height: math.unit(8, "feet"),
  35318. weight: math.unit(900, "lb"),
  35319. name: "Back",
  35320. image: {
  35321. source: "./media/characters/owen/back.svg",
  35322. extra: 1796/1706,
  35323. bottom: 59/1855
  35324. }
  35325. },
  35326. maw: {
  35327. height: math.unit(1.76, "feet"),
  35328. name: "Maw",
  35329. image: {
  35330. source: "./media/characters/owen/maw.svg"
  35331. }
  35332. },
  35333. },
  35334. [
  35335. {
  35336. name: "Normal",
  35337. height: math.unit(8, "feet"),
  35338. default: true
  35339. },
  35340. ]
  35341. ))
  35342. characterMakers.push(() => makeCharacter(
  35343. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35344. {
  35345. front: {
  35346. height: math.unit(4, "feet"),
  35347. weight: math.unit(400, "lb"),
  35348. name: "Front",
  35349. image: {
  35350. source: "./media/characters/ryth/front.svg",
  35351. extra: 1920/1748,
  35352. bottom: 42/1962
  35353. }
  35354. },
  35355. back: {
  35356. height: math.unit(4, "feet"),
  35357. weight: math.unit(400, "lb"),
  35358. name: "Back",
  35359. image: {
  35360. source: "./media/characters/ryth/back.svg",
  35361. extra: 1897/1690,
  35362. bottom: 89/1986
  35363. }
  35364. },
  35365. mouth: {
  35366. height: math.unit(1.39, "feet"),
  35367. name: "Mouth",
  35368. image: {
  35369. source: "./media/characters/ryth/mouth.svg"
  35370. }
  35371. },
  35372. tailmaw: {
  35373. height: math.unit(1.23, "feet"),
  35374. name: "Tailmaw",
  35375. image: {
  35376. source: "./media/characters/ryth/tailmaw.svg"
  35377. }
  35378. },
  35379. goia: {
  35380. height: math.unit(4, "meters"),
  35381. weight: math.unit(10800, "lb"),
  35382. name: "Goia",
  35383. image: {
  35384. source: "./media/characters/ryth/goia.svg",
  35385. extra: 745/640,
  35386. bottom: 107/852
  35387. }
  35388. },
  35389. goiaFront: {
  35390. height: math.unit(4, "meters"),
  35391. weight: math.unit(10800, "lb"),
  35392. name: "Goia (Front)",
  35393. image: {
  35394. source: "./media/characters/ryth/goia-front.svg",
  35395. extra: 750/586,
  35396. bottom: 114/864
  35397. }
  35398. },
  35399. goiaMaw: {
  35400. height: math.unit(5.55, "feet"),
  35401. name: "Goia Maw",
  35402. image: {
  35403. source: "./media/characters/ryth/goia-maw.svg"
  35404. }
  35405. },
  35406. goiaForepaw: {
  35407. height: math.unit(3.5, "feet"),
  35408. name: "Goia Forepaw",
  35409. image: {
  35410. source: "./media/characters/ryth/goia-forepaw.svg"
  35411. }
  35412. },
  35413. goiaHindpaw: {
  35414. height: math.unit(5.55, "feet"),
  35415. name: "Goia Hindpaw",
  35416. image: {
  35417. source: "./media/characters/ryth/goia-hindpaw.svg"
  35418. }
  35419. },
  35420. },
  35421. [
  35422. {
  35423. name: "Normal",
  35424. height: math.unit(4, "feet"),
  35425. default: true
  35426. },
  35427. ]
  35428. ))
  35429. characterMakers.push(() => makeCharacter(
  35430. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35431. {
  35432. front: {
  35433. height: math.unit(7, "feet"),
  35434. weight: math.unit(180, "lb"),
  35435. name: "Front",
  35436. image: {
  35437. source: "./media/characters/necrolance/front.svg",
  35438. extra: 1062/947,
  35439. bottom: 41/1103
  35440. }
  35441. },
  35442. back: {
  35443. height: math.unit(7, "feet"),
  35444. weight: math.unit(180, "lb"),
  35445. name: "Back",
  35446. image: {
  35447. source: "./media/characters/necrolance/back.svg",
  35448. extra: 1045/984,
  35449. bottom: 14/1059
  35450. }
  35451. },
  35452. wing: {
  35453. height: math.unit(2.67, "feet"),
  35454. name: "Wing",
  35455. image: {
  35456. source: "./media/characters/necrolance/wing.svg"
  35457. }
  35458. },
  35459. },
  35460. [
  35461. {
  35462. name: "Normal",
  35463. height: math.unit(7, "feet"),
  35464. default: true
  35465. },
  35466. ]
  35467. ))
  35468. characterMakers.push(() => makeCharacter(
  35469. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35470. {
  35471. front: {
  35472. height: math.unit(76, "meters"),
  35473. weight: math.unit(30000, "tons"),
  35474. name: "Front",
  35475. image: {
  35476. source: "./media/characters/tyler/front.svg",
  35477. extra: 1640/1640,
  35478. bottom: 114/1754
  35479. }
  35480. },
  35481. },
  35482. [
  35483. {
  35484. name: "Macro",
  35485. height: math.unit(76, "meters"),
  35486. default: true
  35487. },
  35488. ]
  35489. ))
  35490. characterMakers.push(() => makeCharacter(
  35491. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35492. {
  35493. front: {
  35494. height: math.unit(4 + 11/12, "feet"),
  35495. weight: math.unit(132, "lb"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/icey/front.svg",
  35499. extra: 2750/2550,
  35500. bottom: 33/2783
  35501. }
  35502. },
  35503. back: {
  35504. height: math.unit(4 + 11/12, "feet"),
  35505. weight: math.unit(132, "lb"),
  35506. name: "Back",
  35507. image: {
  35508. source: "./media/characters/icey/back.svg",
  35509. extra: 2624/2481,
  35510. bottom: 35/2659
  35511. }
  35512. },
  35513. },
  35514. [
  35515. {
  35516. name: "Normal",
  35517. height: math.unit(4 + 11/12, "feet"),
  35518. default: true
  35519. },
  35520. ]
  35521. ))
  35522. characterMakers.push(() => makeCharacter(
  35523. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35524. {
  35525. front: {
  35526. height: math.unit(100, "feet"),
  35527. weight: math.unit(0, "lb"),
  35528. name: "Front",
  35529. image: {
  35530. source: "./media/characters/smile/front.svg",
  35531. extra: 2983/2912,
  35532. bottom: 162/3145
  35533. }
  35534. },
  35535. back: {
  35536. height: math.unit(100, "feet"),
  35537. weight: math.unit(0, "lb"),
  35538. name: "Back",
  35539. image: {
  35540. source: "./media/characters/smile/back.svg",
  35541. extra: 3143/3031,
  35542. bottom: 91/3234
  35543. }
  35544. },
  35545. head: {
  35546. height: math.unit(26.3, "feet"),
  35547. weight: math.unit(0, "lb"),
  35548. name: "Head",
  35549. image: {
  35550. source: "./media/characters/smile/head.svg"
  35551. }
  35552. },
  35553. collar: {
  35554. height: math.unit(5.3, "feet"),
  35555. weight: math.unit(0, "lb"),
  35556. name: "Collar",
  35557. image: {
  35558. source: "./media/characters/smile/collar.svg"
  35559. }
  35560. },
  35561. },
  35562. [
  35563. {
  35564. name: "Macro",
  35565. height: math.unit(100, "feet"),
  35566. default: true
  35567. },
  35568. ]
  35569. ))
  35570. characterMakers.push(() => makeCharacter(
  35571. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35572. {
  35573. dragon: {
  35574. height: math.unit(26, "feet"),
  35575. weight: math.unit(36, "tons"),
  35576. name: "Dragon",
  35577. image: {
  35578. source: "./media/characters/arimphae/dragon.svg",
  35579. extra: 1574/983,
  35580. bottom: 357/1931
  35581. }
  35582. },
  35583. drake: {
  35584. height: math.unit(9, "feet"),
  35585. weight: math.unit(1.5, "tons"),
  35586. name: "Drake",
  35587. image: {
  35588. source: "./media/characters/arimphae/drake.svg",
  35589. extra: 1120/925,
  35590. bottom: 435/1555
  35591. }
  35592. },
  35593. },
  35594. [
  35595. {
  35596. name: "Small",
  35597. height: math.unit(26*5/9, "feet")
  35598. },
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(26, "feet"),
  35602. default: true
  35603. },
  35604. ]
  35605. ))
  35606. characterMakers.push(() => makeCharacter(
  35607. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35608. {
  35609. front: {
  35610. height: math.unit(8 + 9/12, "feet"),
  35611. name: "Front",
  35612. image: {
  35613. source: "./media/characters/xander/front.svg",
  35614. extra: 1237/974,
  35615. bottom: 94/1331
  35616. }
  35617. },
  35618. },
  35619. [
  35620. {
  35621. name: "Normal",
  35622. height: math.unit(8 + 9/12, "feet"),
  35623. default: true
  35624. },
  35625. {
  35626. name: "Gaze Grabber",
  35627. height: math.unit(13 + 8/12, "feet")
  35628. },
  35629. {
  35630. name: "Jaw Dropper",
  35631. height: math.unit(27, "feet")
  35632. },
  35633. {
  35634. name: "Show Stopper",
  35635. height: math.unit(136, "feet")
  35636. },
  35637. {
  35638. name: "Superstar",
  35639. height: math.unit(1.9e6, "miles")
  35640. },
  35641. ]
  35642. ))
  35643. characterMakers.push(() => makeCharacter(
  35644. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35645. {
  35646. side: {
  35647. height: math.unit(2100, "feet"),
  35648. name: "Side",
  35649. image: {
  35650. source: "./media/characters/osiris/side.svg",
  35651. extra: 1105/939,
  35652. bottom: 167/1272
  35653. }
  35654. },
  35655. },
  35656. [
  35657. {
  35658. name: "Macro",
  35659. height: math.unit(2100, "feet"),
  35660. default: true
  35661. },
  35662. ]
  35663. ))
  35664. characterMakers.push(() => makeCharacter(
  35665. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35666. {
  35667. front: {
  35668. height: math.unit(6 + 8/12, "feet"),
  35669. weight: math.unit(225, "lb"),
  35670. name: "Front",
  35671. image: {
  35672. source: "./media/characters/rhys-londe/front.svg",
  35673. extra: 2258/2141,
  35674. bottom: 188/2446
  35675. }
  35676. },
  35677. back: {
  35678. height: math.unit(6 + 8/12, "feet"),
  35679. weight: math.unit(225, "lb"),
  35680. name: "Back",
  35681. image: {
  35682. source: "./media/characters/rhys-londe/back.svg",
  35683. extra: 2237/2137,
  35684. bottom: 63/2300
  35685. }
  35686. },
  35687. frontNsfw: {
  35688. height: math.unit(6 + 8/12, "feet"),
  35689. weight: math.unit(225, "lb"),
  35690. name: "Front (NSFW)",
  35691. image: {
  35692. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35693. extra: 2258/2141,
  35694. bottom: 188/2446
  35695. }
  35696. },
  35697. backNsfw: {
  35698. height: math.unit(6 + 8/12, "feet"),
  35699. weight: math.unit(225, "lb"),
  35700. name: "Back (NSFW)",
  35701. image: {
  35702. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35703. extra: 2237/2137,
  35704. bottom: 63/2300
  35705. }
  35706. },
  35707. dick: {
  35708. height: math.unit(30, "inches"),
  35709. name: "Dick",
  35710. image: {
  35711. source: "./media/characters/rhys-londe/dick.svg"
  35712. }
  35713. },
  35714. maw: {
  35715. height: math.unit(1.6, "feet"),
  35716. name: "Maw",
  35717. image: {
  35718. source: "./media/characters/rhys-londe/maw.svg"
  35719. }
  35720. },
  35721. },
  35722. [
  35723. {
  35724. name: "Normal",
  35725. height: math.unit(6 + 8/12, "feet"),
  35726. default: true
  35727. },
  35728. ]
  35729. ))
  35730. characterMakers.push(() => makeCharacter(
  35731. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35732. {
  35733. front: {
  35734. height: math.unit(3 + 10/12, "feet"),
  35735. weight: math.unit(90, "lb"),
  35736. name: "Front",
  35737. image: {
  35738. source: "./media/characters/taivas-ensim/front.svg",
  35739. extra: 1327/1216,
  35740. bottom: 96/1423
  35741. }
  35742. },
  35743. back: {
  35744. height: math.unit(3 + 10/12, "feet"),
  35745. weight: math.unit(90, "lb"),
  35746. name: "Back",
  35747. image: {
  35748. source: "./media/characters/taivas-ensim/back.svg",
  35749. extra: 1355/1247,
  35750. bottom: 11/1366
  35751. }
  35752. },
  35753. frontNsfw: {
  35754. height: math.unit(3 + 10/12, "feet"),
  35755. weight: math.unit(90, "lb"),
  35756. name: "Front (NSFW)",
  35757. image: {
  35758. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35759. extra: 1327/1216,
  35760. bottom: 96/1423
  35761. }
  35762. },
  35763. backNsfw: {
  35764. height: math.unit(3 + 10/12, "feet"),
  35765. weight: math.unit(90, "lb"),
  35766. name: "Back (NSFW)",
  35767. image: {
  35768. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35769. extra: 1355/1247,
  35770. bottom: 11/1366
  35771. }
  35772. },
  35773. },
  35774. [
  35775. {
  35776. name: "Normal",
  35777. height: math.unit(3 + 10/12, "feet"),
  35778. default: true
  35779. },
  35780. ]
  35781. ))
  35782. characterMakers.push(() => makeCharacter(
  35783. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35784. {
  35785. front: {
  35786. height: math.unit(9 + 6/12, "feet"),
  35787. weight: math.unit(940, "lb"),
  35788. name: "Front",
  35789. image: {
  35790. source: "./media/characters/byliss/front.svg",
  35791. extra: 1327/1290,
  35792. bottom: 82/1409
  35793. }
  35794. },
  35795. back: {
  35796. height: math.unit(9 + 6/12, "feet"),
  35797. weight: math.unit(940, "lb"),
  35798. name: "Back",
  35799. image: {
  35800. source: "./media/characters/byliss/back.svg",
  35801. extra: 1376/1349,
  35802. bottom: 9/1385
  35803. }
  35804. },
  35805. frontNsfw: {
  35806. height: math.unit(9 + 6/12, "feet"),
  35807. weight: math.unit(940, "lb"),
  35808. name: "Front (NSFW)",
  35809. image: {
  35810. source: "./media/characters/byliss/front-nsfw.svg",
  35811. extra: 1327/1290,
  35812. bottom: 82/1409
  35813. }
  35814. },
  35815. backNsfw: {
  35816. height: math.unit(9 + 6/12, "feet"),
  35817. weight: math.unit(940, "lb"),
  35818. name: "Back (NSFW)",
  35819. image: {
  35820. source: "./media/characters/byliss/back-nsfw.svg",
  35821. extra: 1376/1349,
  35822. bottom: 9/1385
  35823. }
  35824. },
  35825. },
  35826. [
  35827. {
  35828. name: "Normal",
  35829. height: math.unit(9 + 6/12, "feet"),
  35830. default: true
  35831. },
  35832. ]
  35833. ))
  35834. characterMakers.push(() => makeCharacter(
  35835. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35836. {
  35837. front: {
  35838. height: math.unit(5 + 2/12, "feet"),
  35839. weight: math.unit(200, "lb"),
  35840. name: "Front",
  35841. image: {
  35842. source: "./media/characters/noraly/front.svg",
  35843. extra: 4985/4773,
  35844. bottom: 150/5135
  35845. }
  35846. },
  35847. full: {
  35848. height: math.unit(5 + 2/12, "feet"),
  35849. weight: math.unit(164, "lb"),
  35850. name: "Full",
  35851. image: {
  35852. source: "./media/characters/noraly/full.svg",
  35853. extra: 1114/1059,
  35854. bottom: 35/1149
  35855. }
  35856. },
  35857. fuller: {
  35858. height: math.unit(5 + 2/12, "feet"),
  35859. weight: math.unit(230, "lb"),
  35860. name: "Fuller",
  35861. image: {
  35862. source: "./media/characters/noraly/fuller.svg",
  35863. extra: 1114/1059,
  35864. bottom: 35/1149
  35865. }
  35866. },
  35867. fullest: {
  35868. height: math.unit(5 + 2/12, "feet"),
  35869. weight: math.unit(300, "lb"),
  35870. name: "Fullest",
  35871. image: {
  35872. source: "./media/characters/noraly/fullest.svg",
  35873. extra: 1114/1059,
  35874. bottom: 35/1149
  35875. }
  35876. },
  35877. },
  35878. [
  35879. {
  35880. name: "Normal",
  35881. height: math.unit(5 + 2/12, "feet"),
  35882. default: true
  35883. },
  35884. ]
  35885. ))
  35886. characterMakers.push(() => makeCharacter(
  35887. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35888. {
  35889. front: {
  35890. height: math.unit(5 + 2/12, "feet"),
  35891. weight: math.unit(210, "lb"),
  35892. name: "Front",
  35893. image: {
  35894. source: "./media/characters/pera/front.svg",
  35895. extra: 1560/1531,
  35896. bottom: 165/1725
  35897. }
  35898. },
  35899. back: {
  35900. height: math.unit(5 + 2/12, "feet"),
  35901. weight: math.unit(210, "lb"),
  35902. name: "Back",
  35903. image: {
  35904. source: "./media/characters/pera/back.svg",
  35905. extra: 1523/1493,
  35906. bottom: 152/1675
  35907. }
  35908. },
  35909. dick: {
  35910. height: math.unit(2.4, "feet"),
  35911. name: "Dick",
  35912. image: {
  35913. source: "./media/characters/pera/dick.svg"
  35914. }
  35915. },
  35916. },
  35917. [
  35918. {
  35919. name: "Normal",
  35920. height: math.unit(5 + 2/12, "feet"),
  35921. default: true
  35922. },
  35923. ]
  35924. ))
  35925. characterMakers.push(() => makeCharacter(
  35926. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35927. {
  35928. front: {
  35929. height: math.unit(12, "feet"),
  35930. weight: math.unit(3200, "lb"),
  35931. name: "Front",
  35932. image: {
  35933. source: "./media/characters/julian/front.svg",
  35934. extra: 2962/2701,
  35935. bottom: 184/3146
  35936. }
  35937. },
  35938. maw: {
  35939. height: math.unit(5.35, "feet"),
  35940. name: "Maw",
  35941. image: {
  35942. source: "./media/characters/julian/maw.svg"
  35943. }
  35944. },
  35945. paw: {
  35946. height: math.unit(3.07, "feet"),
  35947. name: "Paw",
  35948. image: {
  35949. source: "./media/characters/julian/paw.svg"
  35950. }
  35951. },
  35952. },
  35953. [
  35954. {
  35955. name: "Default",
  35956. height: math.unit(12, "feet"),
  35957. default: true
  35958. },
  35959. {
  35960. name: "Big",
  35961. height: math.unit(50, "feet")
  35962. },
  35963. {
  35964. name: "Really Big",
  35965. height: math.unit(1, "mile")
  35966. },
  35967. {
  35968. name: "Extremely Big",
  35969. height: math.unit(100, "miles")
  35970. },
  35971. {
  35972. name: "Planet Hugger",
  35973. height: math.unit(200, "megameters")
  35974. },
  35975. {
  35976. name: "Unreasonably Big",
  35977. height: math.unit(1e300, "meters")
  35978. },
  35979. ]
  35980. ))
  35981. characterMakers.push(() => makeCharacter(
  35982. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35983. {
  35984. solgooleo: {
  35985. height: math.unit(4, "meters"),
  35986. weight: math.unit(6000*1.5, "kg"),
  35987. volume: math.unit(6000, "liters"),
  35988. name: "Solgooleo",
  35989. image: {
  35990. source: "./media/characters/pi/solgooleo.svg",
  35991. extra: 388/331,
  35992. bottom: 29/417
  35993. }
  35994. },
  35995. },
  35996. [
  35997. {
  35998. name: "Normal",
  35999. height: math.unit(4, "meters"),
  36000. default: true
  36001. },
  36002. ]
  36003. ))
  36004. characterMakers.push(() => makeCharacter(
  36005. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  36006. {
  36007. front: {
  36008. height: math.unit(8, "feet"),
  36009. weight: math.unit(4, "tons"),
  36010. name: "Front",
  36011. image: {
  36012. source: "./media/characters/shaun/front.svg",
  36013. extra: 503/495,
  36014. bottom: 20/523
  36015. }
  36016. },
  36017. back: {
  36018. height: math.unit(8, "feet"),
  36019. weight: math.unit(4, "tons"),
  36020. name: "Back",
  36021. image: {
  36022. source: "./media/characters/shaun/back.svg",
  36023. extra: 487/480,
  36024. bottom: 20/507
  36025. }
  36026. },
  36027. },
  36028. [
  36029. {
  36030. name: "Lorg",
  36031. height: math.unit(8, "feet"),
  36032. default: true
  36033. },
  36034. ]
  36035. ))
  36036. characterMakers.push(() => makeCharacter(
  36037. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  36038. {
  36039. frontAnthro: {
  36040. height: math.unit(7, "feet"),
  36041. name: "Front",
  36042. image: {
  36043. source: "./media/characters/sini/front-anthro.svg",
  36044. extra: 726/678,
  36045. bottom: 35/761
  36046. },
  36047. form: "anthro",
  36048. default: true
  36049. },
  36050. backAnthro: {
  36051. height: math.unit(7, "feet"),
  36052. name: "Back",
  36053. image: {
  36054. source: "./media/characters/sini/back-anthro.svg",
  36055. extra: 743/701,
  36056. bottom: 12/755
  36057. },
  36058. form: "anthro",
  36059. },
  36060. frontAnthroNsfw: {
  36061. height: math.unit(7, "feet"),
  36062. name: "Front (NSFW)",
  36063. image: {
  36064. source: "./media/characters/sini/front-anthro-nsfw.svg",
  36065. extra: 726/678,
  36066. bottom: 35/761
  36067. },
  36068. form: "anthro"
  36069. },
  36070. backAnthroNsfw: {
  36071. height: math.unit(7, "feet"),
  36072. name: "Back (NSFW)",
  36073. image: {
  36074. source: "./media/characters/sini/back-anthro-nsfw.svg",
  36075. extra: 743/701,
  36076. bottom: 12/755
  36077. },
  36078. form: "anthro",
  36079. },
  36080. mawAnthro: {
  36081. height: math.unit(2.14, "feet"),
  36082. name: "Maw",
  36083. image: {
  36084. source: "./media/characters/sini/maw-anthro.svg"
  36085. },
  36086. form: "anthro"
  36087. },
  36088. dick: {
  36089. height: math.unit(1.45, "feet"),
  36090. name: "Dick",
  36091. image: {
  36092. source: "./media/characters/sini/dick-anthro.svg"
  36093. },
  36094. form: "anthro"
  36095. },
  36096. feral: {
  36097. height: math.unit(16, "feet"),
  36098. name: "Feral",
  36099. image: {
  36100. source: "./media/characters/sini/feral.svg",
  36101. extra: 814/605,
  36102. bottom: 11/825
  36103. },
  36104. form: "feral",
  36105. default: true
  36106. },
  36107. feralNsfw: {
  36108. height: math.unit(16, "feet"),
  36109. name: "Feral (NSFW)",
  36110. image: {
  36111. source: "./media/characters/sini/feral-nsfw.svg",
  36112. extra: 814/605,
  36113. bottom: 11/825
  36114. },
  36115. form: "feral"
  36116. },
  36117. mawFeral: {
  36118. height: math.unit(5.66, "feet"),
  36119. name: "Maw",
  36120. image: {
  36121. source: "./media/characters/sini/maw-feral.svg"
  36122. },
  36123. form: "feral",
  36124. },
  36125. pawFeral: {
  36126. height: math.unit(5.17, "feet"),
  36127. name: "Paw",
  36128. image: {
  36129. source: "./media/characters/sini/paw-feral.svg"
  36130. },
  36131. form: "feral",
  36132. },
  36133. rumpFeral: {
  36134. height: math.unit(13.11, "feet"),
  36135. name: "Rump",
  36136. image: {
  36137. source: "./media/characters/sini/rump-feral.svg"
  36138. },
  36139. form: "feral",
  36140. },
  36141. dickFeral: {
  36142. height: math.unit(1, "feet"),
  36143. name: "Dick",
  36144. image: {
  36145. source: "./media/characters/sini/dick-feral.svg"
  36146. },
  36147. form: "feral",
  36148. },
  36149. eyeFeral: {
  36150. height: math.unit(1.23, "feet"),
  36151. name: "Eye",
  36152. image: {
  36153. source: "./media/characters/sini/eye-feral.svg"
  36154. },
  36155. form: "feral",
  36156. },
  36157. },
  36158. [
  36159. {
  36160. name: "Normal",
  36161. height: math.unit(7, "feet"),
  36162. default: true,
  36163. form: "anthro"
  36164. },
  36165. {
  36166. name: "Normal",
  36167. height: math.unit(16, "feet"),
  36168. default: true,
  36169. form: "feral"
  36170. },
  36171. ],
  36172. {
  36173. "anthro": {
  36174. name: "Anthro",
  36175. default: true
  36176. },
  36177. "feral": {
  36178. name: "Feral",
  36179. }
  36180. }
  36181. ))
  36182. characterMakers.push(() => makeCharacter(
  36183. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36184. {
  36185. side: {
  36186. height: math.unit(47.2, "meters"),
  36187. weight: math.unit(10000, "tons"),
  36188. name: "Side",
  36189. image: {
  36190. source: "./media/characters/raylldo/side.svg",
  36191. extra: 2363/642,
  36192. bottom: 221/2584
  36193. }
  36194. },
  36195. top: {
  36196. height: math.unit(240, "meters"),
  36197. weight: math.unit(10000, "tons"),
  36198. name: "Top",
  36199. image: {
  36200. source: "./media/characters/raylldo/top.svg"
  36201. }
  36202. },
  36203. bottom: {
  36204. height: math.unit(240, "meters"),
  36205. weight: math.unit(10000, "tons"),
  36206. name: "Bottom",
  36207. image: {
  36208. source: "./media/characters/raylldo/bottom.svg"
  36209. }
  36210. },
  36211. head: {
  36212. height: math.unit(38.6, "meters"),
  36213. name: "Head",
  36214. image: {
  36215. source: "./media/characters/raylldo/head.svg",
  36216. extra: 1335/1112,
  36217. bottom: 0/1335
  36218. }
  36219. },
  36220. maw: {
  36221. height: math.unit(16.37, "meters"),
  36222. name: "Maw",
  36223. image: {
  36224. source: "./media/characters/raylldo/maw.svg",
  36225. extra: 883/660,
  36226. bottom: 0/883
  36227. },
  36228. extraAttributes: {
  36229. preyCapacity: {
  36230. name: "Capacity",
  36231. power: 3,
  36232. type: "volume",
  36233. base: math.unit(1000, "people")
  36234. },
  36235. tongueSize: {
  36236. name: "Tongue Size",
  36237. power: 2,
  36238. type: "area",
  36239. base: math.unit(21, "m^2")
  36240. }
  36241. }
  36242. },
  36243. forepaw: {
  36244. height: math.unit(18, "meters"),
  36245. name: "Forepaw",
  36246. image: {
  36247. source: "./media/characters/raylldo/forepaw.svg"
  36248. }
  36249. },
  36250. hindpaw: {
  36251. height: math.unit(23, "meters"),
  36252. name: "Hindpaw",
  36253. image: {
  36254. source: "./media/characters/raylldo/hindpaw.svg"
  36255. }
  36256. },
  36257. genitals: {
  36258. height: math.unit(42, "meters"),
  36259. name: "Genitals",
  36260. image: {
  36261. source: "./media/characters/raylldo/genitals.svg"
  36262. }
  36263. },
  36264. },
  36265. [
  36266. {
  36267. name: "Normal",
  36268. height: math.unit(47.2, "meters"),
  36269. default: true
  36270. },
  36271. ]
  36272. ))
  36273. characterMakers.push(() => makeCharacter(
  36274. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36275. {
  36276. anthroFront: {
  36277. height: math.unit(9, "feet"),
  36278. weight: math.unit(600, "lb"),
  36279. name: "Anthro (Front)",
  36280. image: {
  36281. source: "./media/characters/glint/anthro-front.svg",
  36282. extra: 1097/1018,
  36283. bottom: 28/1125
  36284. }
  36285. },
  36286. anthroBack: {
  36287. height: math.unit(9, "feet"),
  36288. weight: math.unit(600, "lb"),
  36289. name: "Anthro (Back)",
  36290. image: {
  36291. source: "./media/characters/glint/anthro-back.svg",
  36292. extra: 1154/997,
  36293. bottom: 36/1190
  36294. }
  36295. },
  36296. feral: {
  36297. height: math.unit(11, "feet"),
  36298. weight: math.unit(50000, "lb"),
  36299. name: "Feral",
  36300. image: {
  36301. source: "./media/characters/glint/feral.svg",
  36302. extra: 3035/1585,
  36303. bottom: 1169/4204
  36304. }
  36305. },
  36306. dickAnthro: {
  36307. height: math.unit(0.7, "meters"),
  36308. name: "Dick (Anthro)",
  36309. image: {
  36310. source: "./media/characters/glint/dick-anthro.svg"
  36311. }
  36312. },
  36313. dickFeral: {
  36314. height: math.unit(2.65, "meters"),
  36315. name: "Dick (Feral)",
  36316. image: {
  36317. source: "./media/characters/glint/dick-feral.svg"
  36318. }
  36319. },
  36320. slitHidden: {
  36321. height: math.unit(5.85, "meters"),
  36322. name: "Slit (Hidden)",
  36323. image: {
  36324. source: "./media/characters/glint/slit-hidden.svg"
  36325. }
  36326. },
  36327. slitErect: {
  36328. height: math.unit(5.85, "meters"),
  36329. name: "Slit (Erect)",
  36330. image: {
  36331. source: "./media/characters/glint/slit-erect.svg"
  36332. }
  36333. },
  36334. mawAnthro: {
  36335. height: math.unit(0.63, "meters"),
  36336. name: "Maw (Anthro)",
  36337. image: {
  36338. source: "./media/characters/glint/maw.svg"
  36339. }
  36340. },
  36341. mawFeral: {
  36342. height: math.unit(2.89, "meters"),
  36343. name: "Maw (Feral)",
  36344. image: {
  36345. source: "./media/characters/glint/maw.svg"
  36346. }
  36347. },
  36348. },
  36349. [
  36350. {
  36351. name: "Normal",
  36352. height: math.unit(9, "feet"),
  36353. default: true
  36354. },
  36355. ]
  36356. ))
  36357. characterMakers.push(() => makeCharacter(
  36358. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36359. {
  36360. side: {
  36361. height: math.unit(15, "feet"),
  36362. weight: math.unit(5000, "kg"),
  36363. name: "Side",
  36364. image: {
  36365. source: "./media/characters/kairne/side.svg",
  36366. extra: 979/811,
  36367. bottom: 13/992
  36368. }
  36369. },
  36370. front: {
  36371. height: math.unit(15, "feet"),
  36372. weight: math.unit(5000, "kg"),
  36373. name: "Front",
  36374. image: {
  36375. source: "./media/characters/kairne/front.svg",
  36376. extra: 908/814,
  36377. bottom: 26/934
  36378. }
  36379. },
  36380. sideNsfw: {
  36381. height: math.unit(15, "feet"),
  36382. weight: math.unit(5000, "kg"),
  36383. name: "Side (NSFW)",
  36384. image: {
  36385. source: "./media/characters/kairne/side-nsfw.svg",
  36386. extra: 979/811,
  36387. bottom: 13/992
  36388. }
  36389. },
  36390. frontNsfw: {
  36391. height: math.unit(15, "feet"),
  36392. weight: math.unit(5000, "kg"),
  36393. name: "Front (NSFW)",
  36394. image: {
  36395. source: "./media/characters/kairne/front-nsfw.svg",
  36396. extra: 908/814,
  36397. bottom: 26/934
  36398. }
  36399. },
  36400. dickCaged: {
  36401. height: math.unit(0.65, "meters"),
  36402. name: "Dick (Caged)",
  36403. image: {
  36404. source: "./media/characters/kairne/dick-caged.svg"
  36405. }
  36406. },
  36407. dick: {
  36408. height: math.unit(0.79, "meters"),
  36409. name: "Dick",
  36410. image: {
  36411. source: "./media/characters/kairne/dick.svg"
  36412. }
  36413. },
  36414. genitals: {
  36415. height: math.unit(1.29, "meters"),
  36416. name: "Genitals",
  36417. image: {
  36418. source: "./media/characters/kairne/genitals.svg"
  36419. }
  36420. },
  36421. maw: {
  36422. height: math.unit(1.73, "meters"),
  36423. name: "Maw",
  36424. image: {
  36425. source: "./media/characters/kairne/maw.svg"
  36426. }
  36427. },
  36428. },
  36429. [
  36430. {
  36431. name: "Normal",
  36432. height: math.unit(15, "feet"),
  36433. default: true
  36434. },
  36435. ]
  36436. ))
  36437. characterMakers.push(() => makeCharacter(
  36438. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36439. {
  36440. front: {
  36441. height: math.unit(5 + 8/12, "feet"),
  36442. weight: math.unit(139, "lb"),
  36443. name: "Front",
  36444. image: {
  36445. source: "./media/characters/biscuit-jackal/front.svg",
  36446. extra: 2106/1961,
  36447. bottom: 58/2164
  36448. }
  36449. },
  36450. back: {
  36451. height: math.unit(5 + 8/12, "feet"),
  36452. weight: math.unit(139, "lb"),
  36453. name: "Back",
  36454. image: {
  36455. source: "./media/characters/biscuit-jackal/back.svg",
  36456. extra: 2132/1976,
  36457. bottom: 57/2189
  36458. }
  36459. },
  36460. werejackal: {
  36461. height: math.unit(6 + 3/12, "feet"),
  36462. weight: math.unit(188, "lb"),
  36463. name: "Werejackal",
  36464. image: {
  36465. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36466. extra: 2373/2178,
  36467. bottom: 53/2426
  36468. }
  36469. },
  36470. },
  36471. [
  36472. {
  36473. name: "Normal",
  36474. height: math.unit(5 + 8/12, "feet"),
  36475. default: true
  36476. },
  36477. ]
  36478. ))
  36479. characterMakers.push(() => makeCharacter(
  36480. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36481. {
  36482. front: {
  36483. height: math.unit(140, "cm"),
  36484. weight: math.unit(45, "kg"),
  36485. name: "Front",
  36486. image: {
  36487. source: "./media/characters/tayra-white/front.svg",
  36488. extra: 2229/2192,
  36489. bottom: 75/2304
  36490. }
  36491. },
  36492. },
  36493. [
  36494. {
  36495. name: "Normal",
  36496. height: math.unit(140, "cm"),
  36497. default: true
  36498. },
  36499. ]
  36500. ))
  36501. characterMakers.push(() => makeCharacter(
  36502. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36503. {
  36504. front: {
  36505. height: math.unit(4 + 5/12, "feet"),
  36506. name: "Front",
  36507. image: {
  36508. source: "./media/characters/scoop/front.svg",
  36509. extra: 1257/1136,
  36510. bottom: 69/1326
  36511. }
  36512. },
  36513. back: {
  36514. height: math.unit(4 + 5/12, "feet"),
  36515. name: "Back",
  36516. image: {
  36517. source: "./media/characters/scoop/back.svg",
  36518. extra: 1321/1152,
  36519. bottom: 32/1353
  36520. }
  36521. },
  36522. maw: {
  36523. height: math.unit(0.68, "feet"),
  36524. name: "Maw",
  36525. image: {
  36526. source: "./media/characters/scoop/maw.svg"
  36527. }
  36528. },
  36529. },
  36530. [
  36531. {
  36532. name: "Really Small",
  36533. height: math.unit(1, "mm")
  36534. },
  36535. {
  36536. name: "Micro",
  36537. height: math.unit(1, "inch")
  36538. },
  36539. {
  36540. name: "Normal",
  36541. height: math.unit(4 + 5/12, "feet"),
  36542. default: true
  36543. },
  36544. {
  36545. name: "Macro",
  36546. height: math.unit(200, "feet")
  36547. },
  36548. {
  36549. name: "Megamacro",
  36550. height: math.unit(3240, "feet")
  36551. },
  36552. {
  36553. name: "Teramacro",
  36554. height: math.unit(2500, "miles")
  36555. },
  36556. ]
  36557. ))
  36558. characterMakers.push(() => makeCharacter(
  36559. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36560. {
  36561. front: {
  36562. height: math.unit(15 + 7/12, "feet"),
  36563. weight: math.unit(1150, "tons"),
  36564. name: "Front",
  36565. image: {
  36566. source: "./media/characters/saphinara/front.svg",
  36567. extra: 1837/1643,
  36568. bottom: 84/1921
  36569. },
  36570. form: "normal",
  36571. default: true
  36572. },
  36573. side: {
  36574. height: math.unit(15 + 7/12, "feet"),
  36575. weight: math.unit(1150, "tons"),
  36576. name: "Side",
  36577. image: {
  36578. source: "./media/characters/saphinara/side.svg",
  36579. extra: 605/547,
  36580. bottom: 6/611
  36581. },
  36582. form: "normal"
  36583. },
  36584. back: {
  36585. height: math.unit(15 + 7/12, "feet"),
  36586. weight: math.unit(1150, "tons"),
  36587. name: "Back",
  36588. image: {
  36589. source: "./media/characters/saphinara/back.svg",
  36590. extra: 591/531,
  36591. bottom: 13/604
  36592. },
  36593. form: "normal"
  36594. },
  36595. frontTail: {
  36596. height: math.unit(15 + 7/12, "feet"),
  36597. weight: math.unit(1150, "tons"),
  36598. name: "Front (Full Tail)",
  36599. image: {
  36600. source: "./media/characters/saphinara/front-tail.svg",
  36601. extra: 2256/1630,
  36602. bottom: 261/2517
  36603. },
  36604. form: "normal"
  36605. },
  36606. insides: {
  36607. height: math.unit(11.92, "feet"),
  36608. name: "Insides",
  36609. image: {
  36610. source: "./media/characters/saphinara/insides.svg"
  36611. },
  36612. form: "normal"
  36613. },
  36614. head: {
  36615. height: math.unit(4.17, "feet"),
  36616. name: "Head",
  36617. image: {
  36618. source: "./media/characters/saphinara/head.svg"
  36619. },
  36620. form: "normal"
  36621. },
  36622. tongue: {
  36623. height: math.unit(4.60, "feet"),
  36624. name: "Tongue",
  36625. image: {
  36626. source: "./media/characters/saphinara/tongue.svg"
  36627. },
  36628. form: "normal"
  36629. },
  36630. headEnraged: {
  36631. height: math.unit(5.55, "feet"),
  36632. name: "Head (Enraged)",
  36633. image: {
  36634. source: "./media/characters/saphinara/head-enraged.svg"
  36635. },
  36636. form: "normal"
  36637. },
  36638. wings: {
  36639. height: math.unit(11.95, "feet"),
  36640. name: "Wings",
  36641. image: {
  36642. source: "./media/characters/saphinara/wings.svg"
  36643. },
  36644. form: "normal"
  36645. },
  36646. feathers: {
  36647. height: math.unit(8.92, "feet"),
  36648. name: "Feathers",
  36649. image: {
  36650. source: "./media/characters/saphinara/feathers.svg"
  36651. },
  36652. form: "normal"
  36653. },
  36654. shackles: {
  36655. height: math.unit(2, "feet"),
  36656. name: "Shackles",
  36657. image: {
  36658. source: "./media/characters/saphinara/shackles.svg"
  36659. },
  36660. form: "normal"
  36661. },
  36662. eyes: {
  36663. height: math.unit(1.331, "feet"),
  36664. name: "Eyes",
  36665. image: {
  36666. source: "./media/characters/saphinara/eyes.svg"
  36667. },
  36668. form: "normal"
  36669. },
  36670. eyesEnraged: {
  36671. height: math.unit(1.331, "feet"),
  36672. name: "Eyes (Enraged)",
  36673. image: {
  36674. source: "./media/characters/saphinara/eyes-enraged.svg"
  36675. },
  36676. form: "normal"
  36677. },
  36678. trueFormSide: {
  36679. height: math.unit(200, "feet"),
  36680. weight: math.unit(1e7, "tons"),
  36681. name: "Side",
  36682. image: {
  36683. source: "./media/characters/saphinara/true-form-side.svg",
  36684. extra: 1399/770,
  36685. bottom: 97/1496
  36686. },
  36687. form: "true-form",
  36688. default: true
  36689. },
  36690. trueFormMaw: {
  36691. height: math.unit(71.5, "feet"),
  36692. name: "Maw",
  36693. image: {
  36694. source: "./media/characters/saphinara/true-form-maw.svg",
  36695. extra: 2302/1453,
  36696. bottom: 0/2302
  36697. },
  36698. form: "true-form"
  36699. },
  36700. meowberusSide: {
  36701. height: math.unit(75, "feet"),
  36702. weight: math.unit(180000, "kg"),
  36703. preyCapacity: math.unit(50000, "people"),
  36704. name: "Side",
  36705. image: {
  36706. source: "./media/characters/saphinara/meowberus-side.svg",
  36707. extra: 1400/711,
  36708. bottom: 126/1526
  36709. },
  36710. form: "meowberus",
  36711. extraAttributes: {
  36712. "pawArea": {
  36713. name: "Paw Size",
  36714. power: 2,
  36715. type: "area",
  36716. base: math.unit(35, "m^2")
  36717. }
  36718. }
  36719. },
  36720. },
  36721. [
  36722. {
  36723. name: "Normal",
  36724. height: math.unit(15 + 7/12, "feet"),
  36725. default: true,
  36726. form: "normal"
  36727. },
  36728. {
  36729. name: "Angry",
  36730. height: math.unit(30 + 6/12, "feet"),
  36731. form: "normal"
  36732. },
  36733. {
  36734. name: "Enraged",
  36735. height: math.unit(102 + 1/12, "feet"),
  36736. form: "normal"
  36737. },
  36738. {
  36739. name: "True",
  36740. height: math.unit(200, "feet"),
  36741. default: true,
  36742. form: "true-form"
  36743. },
  36744. {
  36745. name: "Normal",
  36746. height: math.unit(75, "feet"),
  36747. default: true,
  36748. form: "meowberus"
  36749. },
  36750. ],
  36751. {
  36752. "normal": {
  36753. name: "Normal",
  36754. default: true
  36755. },
  36756. "true-form": {
  36757. name: "True Form"
  36758. },
  36759. "meowberus": {
  36760. name: "Meowberus",
  36761. },
  36762. }
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(6 + 8/12, "feet"),
  36769. weight: math.unit(300, "lb"),
  36770. name: "Front",
  36771. image: {
  36772. source: "./media/characters/jrain/front.svg",
  36773. extra: 3039/2865,
  36774. bottom: 399/3438
  36775. }
  36776. },
  36777. back: {
  36778. height: math.unit(6 + 8/12, "feet"),
  36779. weight: math.unit(300, "lb"),
  36780. name: "Back",
  36781. image: {
  36782. source: "./media/characters/jrain/back.svg",
  36783. extra: 3089/2938,
  36784. bottom: 172/3261
  36785. }
  36786. },
  36787. head: {
  36788. height: math.unit(2.14, "feet"),
  36789. name: "Head",
  36790. image: {
  36791. source: "./media/characters/jrain/head.svg"
  36792. }
  36793. },
  36794. maw: {
  36795. height: math.unit(1.77, "feet"),
  36796. name: "Maw",
  36797. image: {
  36798. source: "./media/characters/jrain/maw.svg"
  36799. }
  36800. },
  36801. leftHand: {
  36802. height: math.unit(1.1, "feet"),
  36803. name: "Left Hand",
  36804. image: {
  36805. source: "./media/characters/jrain/left-hand.svg"
  36806. }
  36807. },
  36808. rightHand: {
  36809. height: math.unit(1.1, "feet"),
  36810. name: "Right Hand",
  36811. image: {
  36812. source: "./media/characters/jrain/right-hand.svg"
  36813. }
  36814. },
  36815. eye: {
  36816. height: math.unit(0.35, "feet"),
  36817. name: "Eye",
  36818. image: {
  36819. source: "./media/characters/jrain/eye.svg"
  36820. }
  36821. },
  36822. },
  36823. [
  36824. {
  36825. name: "Normal",
  36826. height: math.unit(6 + 8/12, "feet"),
  36827. default: true
  36828. },
  36829. {
  36830. name: "Casually Large",
  36831. height: math.unit(25, "feet")
  36832. },
  36833. {
  36834. name: "Giant",
  36835. height: math.unit(100, "feet")
  36836. },
  36837. {
  36838. name: "Kaiju",
  36839. height: math.unit(300, "feet")
  36840. },
  36841. ]
  36842. ))
  36843. characterMakers.push(() => makeCharacter(
  36844. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36845. {
  36846. dragon: {
  36847. height: math.unit(5, "meters"),
  36848. name: "Dragon",
  36849. image: {
  36850. source: "./media/characters/sabrina/dragon.svg",
  36851. extra: 3670 / 2365,
  36852. bottom: 333 / 4003
  36853. }
  36854. },
  36855. gryphon: {
  36856. height: math.unit(3, "meters"),
  36857. name: "Gryphon",
  36858. image: {
  36859. source: "./media/characters/sabrina/gryphon.svg",
  36860. extra: 1576 / 945,
  36861. bottom: 71 / 1647
  36862. }
  36863. },
  36864. snake: {
  36865. height: math.unit(12, "meters"),
  36866. name: "Snake",
  36867. image: {
  36868. source: "./media/characters/sabrina/snake.svg",
  36869. extra: 1758 / 1320,
  36870. bottom: 186 / 1944
  36871. }
  36872. },
  36873. collar: {
  36874. height: math.unit(1.86, "meters"),
  36875. name: "Collar",
  36876. image: {
  36877. source: "./media/characters/sabrina/collar.svg"
  36878. }
  36879. },
  36880. eye: {
  36881. height: math.unit(0.53, "meters"),
  36882. name: "Eye",
  36883. image: {
  36884. source: "./media/characters/sabrina/eye.svg"
  36885. }
  36886. },
  36887. foot: {
  36888. height: math.unit(1.86, "meters"),
  36889. name: "Foot",
  36890. image: {
  36891. source: "./media/characters/sabrina/foot.svg"
  36892. }
  36893. },
  36894. hand: {
  36895. height: math.unit(1.32, "meters"),
  36896. name: "Hand",
  36897. image: {
  36898. source: "./media/characters/sabrina/hand.svg"
  36899. }
  36900. },
  36901. head: {
  36902. height: math.unit(2.44, "meters"),
  36903. name: "Head",
  36904. image: {
  36905. source: "./media/characters/sabrina/head.svg"
  36906. }
  36907. },
  36908. headAngry: {
  36909. height: math.unit(2.44, "meters"),
  36910. name: "Head (Angry))",
  36911. image: {
  36912. source: "./media/characters/sabrina/head-angry.svg"
  36913. }
  36914. },
  36915. maw: {
  36916. height: math.unit(1.65, "meters"),
  36917. name: "Maw",
  36918. image: {
  36919. source: "./media/characters/sabrina/maw.svg"
  36920. }
  36921. },
  36922. spikes: {
  36923. height: math.unit(1.69, "meters"),
  36924. name: "Spikes",
  36925. image: {
  36926. source: "./media/characters/sabrina/spikes.svg"
  36927. }
  36928. },
  36929. stomach: {
  36930. height: math.unit(1.15, "meters"),
  36931. name: "Stomach",
  36932. image: {
  36933. source: "./media/characters/sabrina/stomach.svg"
  36934. }
  36935. },
  36936. tongue: {
  36937. height: math.unit(1.27, "meters"),
  36938. name: "Tongue",
  36939. image: {
  36940. source: "./media/characters/sabrina/tongue.svg"
  36941. }
  36942. },
  36943. wingDorsal: {
  36944. height: math.unit(4.85, "meters"),
  36945. name: "Wing (Dorsal)",
  36946. image: {
  36947. source: "./media/characters/sabrina/wing-dorsal.svg"
  36948. }
  36949. },
  36950. wingVentral: {
  36951. height: math.unit(4.85, "meters"),
  36952. name: "Wing (Ventral)",
  36953. image: {
  36954. source: "./media/characters/sabrina/wing-ventral.svg"
  36955. }
  36956. },
  36957. },
  36958. [
  36959. {
  36960. name: "Normal",
  36961. height: math.unit(5, "meters"),
  36962. default: true
  36963. },
  36964. ]
  36965. ))
  36966. characterMakers.push(() => makeCharacter(
  36967. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36968. {
  36969. frontMaid: {
  36970. height: math.unit(5 + 5/12, "feet"),
  36971. weight: math.unit(130, "lb"),
  36972. name: "Front (Maid)",
  36973. image: {
  36974. source: "./media/characters/midnight-tales/front-maid.svg",
  36975. extra: 489/454,
  36976. bottom: 61/550
  36977. }
  36978. },
  36979. frontFormal: {
  36980. height: math.unit(5 + 5/12, "feet"),
  36981. weight: math.unit(130, "lb"),
  36982. name: "Front (Formal)",
  36983. image: {
  36984. source: "./media/characters/midnight-tales/front-formal.svg",
  36985. extra: 489/454,
  36986. bottom: 61/550
  36987. }
  36988. },
  36989. back: {
  36990. height: math.unit(5 + 5/12, "feet"),
  36991. weight: math.unit(130, "lb"),
  36992. name: "Back",
  36993. image: {
  36994. source: "./media/characters/midnight-tales/back.svg",
  36995. extra: 498/456,
  36996. bottom: 33/531
  36997. }
  36998. },
  36999. frontBeast: {
  37000. height: math.unit(40, "feet"),
  37001. weight: math.unit(64000, "lb"),
  37002. name: "Front (Beast)",
  37003. image: {
  37004. source: "./media/characters/midnight-tales/front-beast.svg",
  37005. extra: 927/860,
  37006. bottom: 53/980
  37007. }
  37008. },
  37009. backBeast: {
  37010. height: math.unit(40, "feet"),
  37011. weight: math.unit(64000, "lb"),
  37012. name: "Back (Beast)",
  37013. image: {
  37014. source: "./media/characters/midnight-tales/back-beast.svg",
  37015. extra: 929/855,
  37016. bottom: 16/945
  37017. }
  37018. },
  37019. footBeast: {
  37020. height: math.unit(6.7, "feet"),
  37021. name: "Foot (Beast)",
  37022. image: {
  37023. source: "./media/characters/midnight-tales/foot-beast.svg"
  37024. }
  37025. },
  37026. headBeast: {
  37027. height: math.unit(8, "feet"),
  37028. name: "Head (Beast)",
  37029. image: {
  37030. source: "./media/characters/midnight-tales/head-beast.svg"
  37031. }
  37032. },
  37033. },
  37034. [
  37035. {
  37036. name: "Normal",
  37037. height: math.unit(5 + 5 / 12, "feet"),
  37038. default: true
  37039. },
  37040. {
  37041. name: "Macro",
  37042. height: math.unit(25, "feet")
  37043. },
  37044. ]
  37045. ))
  37046. characterMakers.push(() => makeCharacter(
  37047. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  37048. {
  37049. front: {
  37050. height: math.unit(6 + 2/12, "feet"),
  37051. weight: math.unit(115, "kg"),
  37052. preyCapacity: math.unit(3, "people"),
  37053. name: "Front",
  37054. image: {
  37055. source: "./media/characters/argon/front.svg",
  37056. extra: 2009/1935,
  37057. bottom: 118/2127
  37058. },
  37059. extraAttributes: {
  37060. "tailLength": {
  37061. name: "Tail Length",
  37062. power: 1,
  37063. type: "length",
  37064. base: math.unit(6, "feet")
  37065. },
  37066. "tailWeight": {
  37067. name: "Tail Weight",
  37068. power: 3,
  37069. type: "mass",
  37070. base: math.unit(40, "kg")
  37071. },
  37072. }
  37073. },
  37074. back: {
  37075. height: math.unit(6 + 2/12, "feet"),
  37076. weight: math.unit(115, "kg"),
  37077. preyCapacity: math.unit(3, "people"),
  37078. name: "Back",
  37079. image: {
  37080. source: "./media/characters/argon/back.svg",
  37081. extra: 2047/1992,
  37082. bottom: 20/2067
  37083. },
  37084. extraAttributes: {
  37085. "tailLength": {
  37086. name: "Tail Length",
  37087. power: 1,
  37088. type: "length",
  37089. base: math.unit(6, "feet")
  37090. },
  37091. "tailWeight": {
  37092. name: "Tail Weight",
  37093. power: 3,
  37094. type: "mass",
  37095. base: math.unit(40, "kg")
  37096. },
  37097. }
  37098. },
  37099. frontDressed: {
  37100. height: math.unit(6 + 2/12, "feet"),
  37101. weight: math.unit(115, "kg"),
  37102. preyCapacity: math.unit(3, "people"),
  37103. name: "Front (Dressed)",
  37104. image: {
  37105. source: "./media/characters/argon/front-dressed.svg",
  37106. extra: 2009/1935,
  37107. bottom: 118/2127
  37108. },
  37109. extraAttributes: {
  37110. "tailLength": {
  37111. name: "Tail Length",
  37112. power: 1,
  37113. type: "length",
  37114. base: math.unit(6, "feet")
  37115. },
  37116. "tailWeight": {
  37117. name: "Tail Weight",
  37118. power: 3,
  37119. type: "mass",
  37120. base: math.unit(40, "kg")
  37121. },
  37122. }
  37123. },
  37124. },
  37125. [
  37126. {
  37127. name: "Minimum",
  37128. height: math.unit(2 + 8/12, "feet")
  37129. },
  37130. {
  37131. name: "Normal",
  37132. height: math.unit(6 + 2/12, "feet"),
  37133. default: true
  37134. },
  37135. {
  37136. name: "Maximum",
  37137. height: math.unit(20, "feet")
  37138. },
  37139. ]
  37140. ))
  37141. characterMakers.push(() => makeCharacter(
  37142. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  37143. {
  37144. front: {
  37145. height: math.unit(8 + 6/12, "feet"),
  37146. weight: math.unit(1150, "lb"),
  37147. name: "Front",
  37148. image: {
  37149. source: "./media/characters/kichi/front.svg",
  37150. extra: 1267/1164,
  37151. bottom: 61/1328
  37152. }
  37153. },
  37154. back: {
  37155. height: math.unit(8 + 6/12, "feet"),
  37156. weight: math.unit(1150, "lb"),
  37157. name: "Back",
  37158. image: {
  37159. source: "./media/characters/kichi/back.svg",
  37160. extra: 1273/1166,
  37161. bottom: 33/1306
  37162. }
  37163. },
  37164. },
  37165. [
  37166. {
  37167. name: "Normal",
  37168. height: math.unit(8 + 6/12, "feet"),
  37169. default: true
  37170. },
  37171. ]
  37172. ))
  37173. characterMakers.push(() => makeCharacter(
  37174. { name: "Manetel Greyscale", species: ["dragoyle"], tags: ["anthro"] },
  37175. {
  37176. front: {
  37177. height: math.unit(6, "feet"),
  37178. weight: math.unit(210, "lb"),
  37179. name: "Front",
  37180. image: {
  37181. source: "./media/characters/manetel-greyscale/front.svg",
  37182. extra: 483/444,
  37183. bottom: 22/505
  37184. },
  37185. extraAttributes: {
  37186. "tailLength": {
  37187. name: "Tail Length",
  37188. power: 1,
  37189. type: "length",
  37190. base: math.unit(6.5, "feet")
  37191. },
  37192. }
  37193. },
  37194. side: {
  37195. height: math.unit(6, "feet"),
  37196. weight: math.unit(210, "lb"),
  37197. name: "Side",
  37198. image: {
  37199. source: "./media/characters/manetel-greyscale/side.svg",
  37200. extra: 478/426,
  37201. bottom: 20/498
  37202. },
  37203. extraAttributes: {
  37204. "tailLength": {
  37205. name: "Tail Length",
  37206. power: 1,
  37207. type: "length",
  37208. base: math.unit(6.5, "feet")
  37209. },
  37210. }
  37211. },
  37212. back: {
  37213. height: math.unit(6, "feet"),
  37214. weight: math.unit(210, "lb"),
  37215. name: "Back",
  37216. image: {
  37217. source: "./media/characters/manetel-greyscale/back.svg",
  37218. extra: 482/445,
  37219. bottom: 12/494
  37220. },
  37221. extraAttributes: {
  37222. "tailLength": {
  37223. name: "Tail Length",
  37224. power: 1,
  37225. type: "length",
  37226. base: math.unit(6.5, "feet")
  37227. },
  37228. }
  37229. },
  37230. },
  37231. [
  37232. {
  37233. name: "Micro",
  37234. height: math.unit(2, "inches")
  37235. },
  37236. {
  37237. name: "Normal",
  37238. height: math.unit(6, "feet"),
  37239. default: true
  37240. },
  37241. {
  37242. name: "Macro",
  37243. height: math.unit(117, "feet")
  37244. },
  37245. ]
  37246. ))
  37247. characterMakers.push(() => makeCharacter(
  37248. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37249. {
  37250. side: {
  37251. height: math.unit(5 + 1/12, "feet"),
  37252. weight: math.unit(418, "lb"),
  37253. name: "Side",
  37254. image: {
  37255. source: "./media/characters/softpurr/side.svg",
  37256. extra: 1993/1945,
  37257. bottom: 134/2127
  37258. }
  37259. },
  37260. front: {
  37261. height: math.unit(5 + 1/12, "feet"),
  37262. weight: math.unit(418, "lb"),
  37263. name: "Front",
  37264. image: {
  37265. source: "./media/characters/softpurr/front.svg",
  37266. extra: 1950/1856,
  37267. bottom: 174/2124
  37268. }
  37269. },
  37270. paw: {
  37271. height: math.unit(1, "feet"),
  37272. name: "Paw",
  37273. image: {
  37274. source: "./media/characters/softpurr/paw.svg"
  37275. }
  37276. },
  37277. },
  37278. [
  37279. {
  37280. name: "Normal",
  37281. height: math.unit(5 + 1/12, "feet"),
  37282. default: true
  37283. },
  37284. ]
  37285. ))
  37286. characterMakers.push(() => makeCharacter(
  37287. { name: "Anahita", species: ["sea-serpent"], tags: ["anthro"] },
  37288. {
  37289. front: {
  37290. height: math.unit(300, "meters"),
  37291. name: "Front",
  37292. image: {
  37293. source: "./media/characters/anahita/front.svg",
  37294. extra: 609/576,
  37295. bottom: 51/660
  37296. }
  37297. },
  37298. },
  37299. [
  37300. {
  37301. name: "Macro",
  37302. height: math.unit(300, "meters"),
  37303. default: true
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37309. {
  37310. front: {
  37311. height: math.unit(4 + 10/12, "feet"),
  37312. weight: math.unit(160, "lb"),
  37313. name: "Front",
  37314. image: {
  37315. source: "./media/characters/chip-mouse/front.svg",
  37316. extra: 3528/3408,
  37317. bottom: 0/3528
  37318. }
  37319. },
  37320. frontNsfw: {
  37321. height: math.unit(4 + 10/12, "feet"),
  37322. weight: math.unit(160, "lb"),
  37323. name: "Front (NSFW)",
  37324. image: {
  37325. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37326. extra: 3528/3408,
  37327. bottom: 0/3528
  37328. }
  37329. },
  37330. },
  37331. [
  37332. {
  37333. name: "Normal",
  37334. height: math.unit(4 + 10/12, "feet"),
  37335. default: true
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37341. {
  37342. side: {
  37343. height: math.unit(10, "feet"),
  37344. weight: math.unit(14000, "lb"),
  37345. name: "Side",
  37346. image: {
  37347. source: "./media/characters/kremm/side.svg",
  37348. extra: 1390/1053,
  37349. bottom: 90/1480
  37350. }
  37351. },
  37352. gut: {
  37353. height: math.unit(5.8, "feet"),
  37354. name: "Gut",
  37355. image: {
  37356. source: "./media/characters/kremm/gut.svg"
  37357. }
  37358. },
  37359. ass: {
  37360. height: math.unit(6.1, "feet"),
  37361. name: "Ass",
  37362. image: {
  37363. source: "./media/characters/kremm/ass.svg"
  37364. }
  37365. },
  37366. jaws: {
  37367. height: math.unit(2.2, "feet"),
  37368. name: "Jaws",
  37369. image: {
  37370. source: "./media/characters/kremm/jaws.svg"
  37371. }
  37372. },
  37373. dick: {
  37374. height: math.unit(4.26, "feet"),
  37375. name: "Dick",
  37376. image: {
  37377. source: "./media/characters/kremm/dick.svg"
  37378. }
  37379. },
  37380. },
  37381. [
  37382. {
  37383. name: "Normal",
  37384. height: math.unit(10, "feet"),
  37385. default: true
  37386. },
  37387. ]
  37388. ))
  37389. characterMakers.push(() => makeCharacter(
  37390. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37391. {
  37392. front: {
  37393. height: math.unit(30, "stories"),
  37394. name: "Front",
  37395. image: {
  37396. source: "./media/characters/kai/front.svg",
  37397. extra: 1892/1718,
  37398. bottom: 162/2054
  37399. }
  37400. },
  37401. },
  37402. [
  37403. {
  37404. name: "Macro",
  37405. height: math.unit(30, "stories"),
  37406. default: true
  37407. },
  37408. ]
  37409. ))
  37410. characterMakers.push(() => makeCharacter(
  37411. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37412. {
  37413. front: {
  37414. height: math.unit(6 + 4/12, "feet"),
  37415. weight: math.unit(145, "lb"),
  37416. name: "Front",
  37417. image: {
  37418. source: "./media/characters/sykes/front.svg",
  37419. extra: 1321 / 1187,
  37420. bottom: 66 / 1387
  37421. }
  37422. },
  37423. back: {
  37424. height: math.unit(6 + 4/12, "feet"),
  37425. weight: math.unit(145, "lb"),
  37426. name: "Back",
  37427. image: {
  37428. source: "./media/characters/sykes/back.svg",
  37429. extra: 1326/1181,
  37430. bottom: 31/1357
  37431. }
  37432. },
  37433. traditionalOutfit: {
  37434. height: math.unit(6 + 4/12, "feet"),
  37435. weight: math.unit(145, "lb"),
  37436. name: "Traditional Outfit",
  37437. image: {
  37438. source: "./media/characters/sykes/traditional-outfit.svg",
  37439. extra: 1321 / 1187,
  37440. bottom: 66 / 1387
  37441. }
  37442. },
  37443. adventureOutfit: {
  37444. height: math.unit(6 + 4/12, "feet"),
  37445. weight: math.unit(145, "lb"),
  37446. name: "Adventure Outfit",
  37447. image: {
  37448. source: "./media/characters/sykes/adventure-outfit.svg",
  37449. extra: 1321 / 1187,
  37450. bottom: 66 / 1387
  37451. }
  37452. },
  37453. handLeft: {
  37454. height: math.unit(0.9, "feet"),
  37455. name: "Hand (Left)",
  37456. image: {
  37457. source: "./media/characters/sykes/hand-left.svg"
  37458. }
  37459. },
  37460. handRight: {
  37461. height: math.unit(0.839, "feet"),
  37462. name: "Hand (Right)",
  37463. image: {
  37464. source: "./media/characters/sykes/hand-right.svg"
  37465. }
  37466. },
  37467. leftFoot: {
  37468. height: math.unit(1.2, "feet"),
  37469. name: "Foot (Left)",
  37470. image: {
  37471. source: "./media/characters/sykes/foot-left.svg"
  37472. }
  37473. },
  37474. rightFoot: {
  37475. height: math.unit(1.2, "feet"),
  37476. name: "Foot (Right)",
  37477. image: {
  37478. source: "./media/characters/sykes/foot-right.svg"
  37479. }
  37480. },
  37481. maw: {
  37482. height: math.unit(1.93, "feet"),
  37483. name: "Maw",
  37484. image: {
  37485. source: "./media/characters/sykes/maw.svg"
  37486. }
  37487. },
  37488. teeth: {
  37489. height: math.unit(0.51, "feet"),
  37490. name: "Teeth",
  37491. image: {
  37492. source: "./media/characters/sykes/teeth.svg"
  37493. }
  37494. },
  37495. tongue: {
  37496. height: math.unit(2.13, "feet"),
  37497. name: "Tongue",
  37498. image: {
  37499. source: "./media/characters/sykes/tongue.svg"
  37500. }
  37501. },
  37502. uvula: {
  37503. height: math.unit(0.16, "feet"),
  37504. name: "Uvula",
  37505. image: {
  37506. source: "./media/characters/sykes/uvula.svg"
  37507. }
  37508. },
  37509. collar: {
  37510. height: math.unit(0.287, "feet"),
  37511. name: "Collar",
  37512. image: {
  37513. source: "./media/characters/sykes/collar.svg"
  37514. }
  37515. },
  37516. tail: {
  37517. height: math.unit(3.8, "feet"),
  37518. name: "Tail",
  37519. image: {
  37520. source: "./media/characters/sykes/tail.svg"
  37521. }
  37522. },
  37523. },
  37524. [
  37525. {
  37526. name: "Shrunken",
  37527. height: math.unit(5, "inches")
  37528. },
  37529. {
  37530. name: "Normal",
  37531. height: math.unit(6 + 4 / 12, "feet"),
  37532. default: true
  37533. },
  37534. {
  37535. name: "Big",
  37536. height: math.unit(15, "feet")
  37537. },
  37538. ]
  37539. ))
  37540. characterMakers.push(() => makeCharacter(
  37541. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37542. {
  37543. front: {
  37544. height: math.unit(5 + 8/12, "feet"),
  37545. weight: math.unit(190, "lb"),
  37546. name: "Front",
  37547. image: {
  37548. source: "./media/characters/oven-otter/front.svg",
  37549. extra: 1809/1740,
  37550. bottom: 181/1990
  37551. }
  37552. },
  37553. back: {
  37554. height: math.unit(5 + 8/12, "feet"),
  37555. weight: math.unit(190, "lb"),
  37556. name: "Back",
  37557. image: {
  37558. source: "./media/characters/oven-otter/back.svg",
  37559. extra: 1709/1635,
  37560. bottom: 118/1827
  37561. }
  37562. },
  37563. hand: {
  37564. height: math.unit(1.07, "feet"),
  37565. name: "Hand",
  37566. image: {
  37567. source: "./media/characters/oven-otter/hand.svg"
  37568. }
  37569. },
  37570. beans: {
  37571. height: math.unit(1.74, "feet"),
  37572. name: "Beans",
  37573. image: {
  37574. source: "./media/characters/oven-otter/beans.svg"
  37575. }
  37576. },
  37577. },
  37578. [
  37579. {
  37580. name: "Micro",
  37581. height: math.unit(0.5, "inches")
  37582. },
  37583. {
  37584. name: "Normal",
  37585. height: math.unit(5 + 8/12, "feet"),
  37586. default: true
  37587. },
  37588. {
  37589. name: "Macro",
  37590. height: math.unit(250, "feet")
  37591. },
  37592. {
  37593. name: "Really High",
  37594. height: math.unit(420, "feet")
  37595. },
  37596. ]
  37597. ))
  37598. characterMakers.push(() => makeCharacter(
  37599. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37600. {
  37601. front: {
  37602. height: math.unit(5, "meters"),
  37603. weight: math.unit(292000000000000, "kg"),
  37604. name: "Front",
  37605. image: {
  37606. source: "./media/characters/devourer/front.svg",
  37607. extra: 1800/1733,
  37608. bottom: 211/2011
  37609. }
  37610. },
  37611. maw: {
  37612. height: math.unit(1.1, "meter"),
  37613. name: "Maw",
  37614. image: {
  37615. source: "./media/characters/devourer/maw.svg"
  37616. }
  37617. },
  37618. },
  37619. [
  37620. {
  37621. name: "Small",
  37622. height: math.unit(3, "meters")
  37623. },
  37624. {
  37625. name: "Large",
  37626. height: math.unit(5, "meters"),
  37627. default: true
  37628. },
  37629. {
  37630. name: "Macro",
  37631. height: math.unit(20, "meters")
  37632. },
  37633. ]
  37634. ))
  37635. characterMakers.push(() => makeCharacter(
  37636. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37637. {
  37638. front: {
  37639. height: math.unit(6, "feet"),
  37640. weight: math.unit(400, "lb"),
  37641. name: "Front",
  37642. image: {
  37643. source: "./media/characters/ellarby/front.svg",
  37644. extra: 1909/1763,
  37645. bottom: 80/1989
  37646. }
  37647. },
  37648. back: {
  37649. height: math.unit(6, "feet"),
  37650. weight: math.unit(400, "lb"),
  37651. name: "Back",
  37652. image: {
  37653. source: "./media/characters/ellarby/back.svg",
  37654. extra: 1914/1784,
  37655. bottom: 172/2086
  37656. }
  37657. },
  37658. },
  37659. [
  37660. {
  37661. name: "Mischief",
  37662. height: math.unit(18, "inches")
  37663. },
  37664. {
  37665. name: "Trouble",
  37666. height: math.unit(12, "feet")
  37667. },
  37668. {
  37669. name: "Havoc",
  37670. height: math.unit(200, "feet"),
  37671. default: true
  37672. },
  37673. {
  37674. name: "Pandemonium",
  37675. height: math.unit(1, "mile")
  37676. },
  37677. {
  37678. name: "Catastrophe",
  37679. height: math.unit(100, "miles")
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37685. {
  37686. front: {
  37687. height: math.unit(4.7, "meters"),
  37688. weight: math.unit(6500, "kg"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/vex/front.svg",
  37692. extra: 1288/1140,
  37693. bottom: 100/1388
  37694. }
  37695. },
  37696. },
  37697. [
  37698. {
  37699. name: "Normal",
  37700. height: math.unit(4.7, "meters"),
  37701. default: true
  37702. },
  37703. ]
  37704. ))
  37705. characterMakers.push(() => makeCharacter(
  37706. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37707. {
  37708. normal: {
  37709. height: math.unit(6, "feet"),
  37710. weight: math.unit(350, "lb"),
  37711. name: "Normal",
  37712. image: {
  37713. source: "./media/characters/teshy/normal.svg",
  37714. extra: 1795/1735,
  37715. bottom: 16/1811
  37716. }
  37717. },
  37718. monsterFront: {
  37719. height: math.unit(12, "feet"),
  37720. weight: math.unit(4700, "lb"),
  37721. name: "Monster (Front)",
  37722. image: {
  37723. source: "./media/characters/teshy/monster-front.svg",
  37724. extra: 2042/2034,
  37725. bottom: 128/2170
  37726. }
  37727. },
  37728. monsterSide: {
  37729. height: math.unit(12, "feet"),
  37730. weight: math.unit(4700, "lb"),
  37731. name: "Monster (Side)",
  37732. image: {
  37733. source: "./media/characters/teshy/monster-side.svg",
  37734. extra: 2067/2056,
  37735. bottom: 70/2137
  37736. }
  37737. },
  37738. monsterBack: {
  37739. height: math.unit(12, "feet"),
  37740. weight: math.unit(4700, "lb"),
  37741. name: "Monster (Back)",
  37742. image: {
  37743. source: "./media/characters/teshy/monster-back.svg",
  37744. extra: 1921/1914,
  37745. bottom: 171/2092
  37746. }
  37747. },
  37748. },
  37749. [
  37750. {
  37751. name: "Normal",
  37752. height: math.unit(6, "feet"),
  37753. default: true
  37754. },
  37755. ]
  37756. ))
  37757. characterMakers.push(() => makeCharacter(
  37758. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37759. {
  37760. front: {
  37761. height: math.unit(6, "feet"),
  37762. name: "Front",
  37763. image: {
  37764. source: "./media/characters/ramey/front.svg",
  37765. extra: 790/787,
  37766. bottom: 27/817
  37767. }
  37768. },
  37769. },
  37770. [
  37771. {
  37772. name: "Normal",
  37773. height: math.unit(6, "feet"),
  37774. default: true
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37780. {
  37781. front: {
  37782. height: math.unit(5 + 5/12, "feet"),
  37783. weight: math.unit(120, "lb"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/phirae/front.svg",
  37787. extra: 2491/2436,
  37788. bottom: 38/2529
  37789. }
  37790. },
  37791. },
  37792. [
  37793. {
  37794. name: "Normal",
  37795. height: math.unit(5 + 5/12, "feet"),
  37796. default: true
  37797. },
  37798. ]
  37799. ))
  37800. characterMakers.push(() => makeCharacter(
  37801. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37802. {
  37803. front: {
  37804. height: math.unit(5 + 3/12, "feet"),
  37805. name: "Front",
  37806. image: {
  37807. source: "./media/characters/stagglas/front.svg",
  37808. extra: 962/882,
  37809. bottom: 53/1015
  37810. }
  37811. },
  37812. feral: {
  37813. height: math.unit(335, "cm"),
  37814. name: "Feral",
  37815. image: {
  37816. source: "./media/characters/stagglas/feral.svg",
  37817. extra: 1732/1090,
  37818. bottom: 48/1780
  37819. }
  37820. },
  37821. },
  37822. [
  37823. {
  37824. name: "Normal",
  37825. height: math.unit(5 + 3/12, "feet"),
  37826. default: true
  37827. },
  37828. ]
  37829. ))
  37830. characterMakers.push(() => makeCharacter(
  37831. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37832. {
  37833. front: {
  37834. height: math.unit(5 + 4/12, "feet"),
  37835. weight: math.unit(145, "lb"),
  37836. name: "Front",
  37837. image: {
  37838. source: "./media/characters/starra/front.svg",
  37839. extra: 1790/1691,
  37840. bottom: 91/1881
  37841. }
  37842. },
  37843. },
  37844. [
  37845. {
  37846. name: "Normal",
  37847. height: math.unit(5 + 4/12, "feet"),
  37848. default: true
  37849. },
  37850. ]
  37851. ))
  37852. characterMakers.push(() => makeCharacter(
  37853. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37854. {
  37855. front: {
  37856. height: math.unit(3.5, "meters"),
  37857. name: "Front",
  37858. image: {
  37859. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37860. extra: 1248/972,
  37861. bottom: 38/1286
  37862. }
  37863. },
  37864. },
  37865. [
  37866. {
  37867. name: "Normal",
  37868. height: math.unit(3.5, "meters"),
  37869. default: true
  37870. },
  37871. ]
  37872. ))
  37873. characterMakers.push(() => makeCharacter(
  37874. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37875. {
  37876. side: {
  37877. height: math.unit(8 + 2/12, "feet"),
  37878. weight: math.unit(1240, "lb"),
  37879. name: "Side",
  37880. image: {
  37881. source: "./media/characters/mika-valentine/side.svg",
  37882. extra: 2670/2501,
  37883. bottom: 250/2920
  37884. }
  37885. },
  37886. },
  37887. [
  37888. {
  37889. name: "Normal",
  37890. height: math.unit(8 + 2/12, "feet"),
  37891. default: true
  37892. },
  37893. ]
  37894. ))
  37895. characterMakers.push(() => makeCharacter(
  37896. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37897. {
  37898. front: {
  37899. height: math.unit(7 + 2/12, "feet"),
  37900. name: "Front",
  37901. image: {
  37902. source: "./media/characters/xoltol/front.svg",
  37903. extra: 2212/2124,
  37904. bottom: 84/2296
  37905. }
  37906. },
  37907. side: {
  37908. height: math.unit(7 + 2/12, "feet"),
  37909. name: "Side",
  37910. image: {
  37911. source: "./media/characters/xoltol/side.svg",
  37912. extra: 2273/2197,
  37913. bottom: 26/2299
  37914. }
  37915. },
  37916. hand: {
  37917. height: math.unit(2.5, "feet"),
  37918. name: "Hand",
  37919. image: {
  37920. source: "./media/characters/xoltol/hand.svg"
  37921. }
  37922. },
  37923. },
  37924. [
  37925. {
  37926. name: "Small-ish",
  37927. height: math.unit(5 + 11/12, "feet")
  37928. },
  37929. {
  37930. name: "Normal",
  37931. height: math.unit(7 + 2/12, "feet")
  37932. },
  37933. {
  37934. name: "\"Macro\"",
  37935. height: math.unit(14 + 9/12, "feet"),
  37936. default: true
  37937. },
  37938. {
  37939. name: "Alternate Height",
  37940. height: math.unit(20, "feet")
  37941. },
  37942. {
  37943. name: "Actually Macro",
  37944. height: math.unit(100, "feet")
  37945. },
  37946. ]
  37947. ))
  37948. characterMakers.push(() => makeCharacter(
  37949. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37950. {
  37951. front: {
  37952. height: math.unit(5 + 2/12, "feet"),
  37953. weight: math.unit(75, "kg"),
  37954. name: "Front",
  37955. image: {
  37956. source: "./media/characters/kotetsu-redwood/front.svg",
  37957. extra: 1053/942,
  37958. bottom: 60/1113
  37959. }
  37960. },
  37961. },
  37962. [
  37963. {
  37964. name: "Normal",
  37965. height: math.unit(5 + 2/12, "feet"),
  37966. default: true
  37967. },
  37968. ]
  37969. ))
  37970. characterMakers.push(() => makeCharacter(
  37971. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37972. {
  37973. front: {
  37974. height: math.unit(2.4, "meters"),
  37975. weight: math.unit(125, "kg"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/lilith/front.svg",
  37979. extra: 1590/1513,
  37980. bottom: 203/1793
  37981. }
  37982. },
  37983. },
  37984. [
  37985. {
  37986. name: "Humanoid",
  37987. height: math.unit(2.4, "meters")
  37988. },
  37989. {
  37990. name: "Normal",
  37991. height: math.unit(6, "meters"),
  37992. default: true
  37993. },
  37994. {
  37995. name: "Largest",
  37996. height: math.unit(55, "meters")
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  38002. {
  38003. front: {
  38004. height: math.unit(8 + 4/12, "feet"),
  38005. weight: math.unit(535, "lb"),
  38006. name: "Front",
  38007. image: {
  38008. source: "./media/characters/beh'kah-bolger/front.svg",
  38009. extra: 1660/1603,
  38010. bottom: 37/1697
  38011. }
  38012. },
  38013. },
  38014. [
  38015. {
  38016. name: "Normal",
  38017. height: math.unit(8 + 4/12, "feet"),
  38018. default: true
  38019. },
  38020. {
  38021. name: "Kaiju",
  38022. height: math.unit(250, "feet")
  38023. },
  38024. {
  38025. name: "Still Growing",
  38026. height: math.unit(10, "miles")
  38027. },
  38028. {
  38029. name: "Continental",
  38030. height: math.unit(5000, "miles")
  38031. },
  38032. {
  38033. name: "Final Form",
  38034. height: math.unit(2500000, "miles")
  38035. },
  38036. ]
  38037. ))
  38038. characterMakers.push(() => makeCharacter(
  38039. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  38040. {
  38041. front: {
  38042. height: math.unit(7 + 2/12, "feet"),
  38043. weight: math.unit(230, "kg"),
  38044. name: "Front",
  38045. image: {
  38046. source: "./media/characters/tatyana-milewska/front.svg",
  38047. extra: 1199/1150,
  38048. bottom: 86/1285
  38049. }
  38050. },
  38051. },
  38052. [
  38053. {
  38054. name: "Normal",
  38055. height: math.unit(7 + 2/12, "feet"),
  38056. default: true
  38057. },
  38058. {
  38059. name: "Big",
  38060. height: math.unit(12, "feet")
  38061. },
  38062. {
  38063. name: "Minimacro",
  38064. height: math.unit(20, "feet")
  38065. },
  38066. {
  38067. name: "Macro",
  38068. height: math.unit(120, "feet")
  38069. },
  38070. ]
  38071. ))
  38072. characterMakers.push(() => makeCharacter(
  38073. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  38074. {
  38075. front: {
  38076. height: math.unit(7 + 8/12, "feet"),
  38077. weight: math.unit(152, "kg"),
  38078. name: "Front",
  38079. image: {
  38080. source: "./media/characters/helen-arri/front.svg",
  38081. extra: 440/423,
  38082. bottom: 14/454
  38083. }
  38084. },
  38085. back: {
  38086. height: math.unit(7 + 8/12, "feet"),
  38087. weight: math.unit(152, "kg"),
  38088. name: "Back",
  38089. image: {
  38090. source: "./media/characters/helen-arri/back.svg",
  38091. extra: 443/426,
  38092. bottom: 8/451
  38093. }
  38094. },
  38095. },
  38096. [
  38097. {
  38098. name: "Normal",
  38099. height: math.unit(7 + 8/12, "feet"),
  38100. default: true
  38101. },
  38102. {
  38103. name: "Big",
  38104. height: math.unit(14, "feet")
  38105. },
  38106. {
  38107. name: "Minimacro",
  38108. height: math.unit(24, "feet")
  38109. },
  38110. {
  38111. name: "Macro",
  38112. height: math.unit(140, "feet")
  38113. },
  38114. ]
  38115. ))
  38116. characterMakers.push(() => makeCharacter(
  38117. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  38118. {
  38119. front: {
  38120. height: math.unit(6, "meters"),
  38121. name: "Front",
  38122. image: {
  38123. source: "./media/characters/ehanu-rehu/front.svg",
  38124. extra: 1800/1800,
  38125. bottom: 59/1859
  38126. }
  38127. },
  38128. },
  38129. [
  38130. {
  38131. name: "Normal",
  38132. height: math.unit(6, "meters"),
  38133. default: true
  38134. },
  38135. ]
  38136. ))
  38137. characterMakers.push(() => makeCharacter(
  38138. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  38139. {
  38140. front: {
  38141. height: math.unit(7 + 3/12, "feet"),
  38142. name: "Front",
  38143. image: {
  38144. source: "./media/characters/renholder/front.svg",
  38145. extra: 3096/2960,
  38146. bottom: 250/3346
  38147. }
  38148. },
  38149. },
  38150. [
  38151. {
  38152. name: "Normal Bat",
  38153. height: math.unit(7 + 3/12, "feet"),
  38154. default: true
  38155. },
  38156. {
  38157. name: "Slightly Tall Bat",
  38158. height: math.unit(100, "feet")
  38159. },
  38160. {
  38161. name: "Big Bat",
  38162. height: math.unit(1000, "feet")
  38163. },
  38164. {
  38165. name: "City-Sized Bat",
  38166. height: math.unit(200000, "feet")
  38167. },
  38168. {
  38169. name: "Bigger Bat",
  38170. height: math.unit(10000, "miles")
  38171. },
  38172. {
  38173. name: "Solar Sized Bat",
  38174. height: math.unit(100, "AU")
  38175. },
  38176. {
  38177. name: "Galactic Bat",
  38178. height: math.unit(200000, "lightyears")
  38179. },
  38180. {
  38181. name: "Universally Known Bat",
  38182. height: math.unit(1, "universe")
  38183. },
  38184. ]
  38185. ))
  38186. characterMakers.push(() => makeCharacter(
  38187. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  38188. {
  38189. front: {
  38190. height: math.unit(6 + 11/12, "feet"),
  38191. weight: math.unit(250, "lb"),
  38192. name: "Front",
  38193. image: {
  38194. source: "./media/characters/cookiecat/front.svg",
  38195. extra: 893/827,
  38196. bottom: 14/907
  38197. }
  38198. },
  38199. },
  38200. [
  38201. {
  38202. name: "Micro",
  38203. height: math.unit(3, "inches")
  38204. },
  38205. {
  38206. name: "Normal",
  38207. height: math.unit(6 + 11/12, "feet"),
  38208. default: true
  38209. },
  38210. {
  38211. name: "Macro",
  38212. height: math.unit(100, "feet")
  38213. },
  38214. {
  38215. name: "Macro+",
  38216. height: math.unit(404, "feet")
  38217. },
  38218. {
  38219. name: "Megamacro",
  38220. height: math.unit(165, "miles")
  38221. },
  38222. {
  38223. name: "Planetary",
  38224. height: math.unit(4600, "miles")
  38225. },
  38226. ]
  38227. ))
  38228. characterMakers.push(() => makeCharacter(
  38229. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38230. {
  38231. front: {
  38232. height: math.unit(10 + 3/12, "feet"),
  38233. weight: math.unit(1500, "lb"),
  38234. name: "Front",
  38235. image: {
  38236. source: "./media/characters/tux-kusanagi/front.svg",
  38237. extra: 944/840,
  38238. bottom: 39/983
  38239. }
  38240. },
  38241. back: {
  38242. height: math.unit(10 + 3/12, "feet"),
  38243. weight: math.unit(1500, "lb"),
  38244. name: "Back",
  38245. image: {
  38246. source: "./media/characters/tux-kusanagi/back.svg",
  38247. extra: 941/842,
  38248. bottom: 28/969
  38249. }
  38250. },
  38251. rump: {
  38252. height: math.unit(5.25, "feet"),
  38253. name: "Rump",
  38254. image: {
  38255. source: "./media/characters/tux-kusanagi/rump.svg"
  38256. }
  38257. },
  38258. beak: {
  38259. height: math.unit(1.54, "feet"),
  38260. name: "Beak",
  38261. image: {
  38262. source: "./media/characters/tux-kusanagi/beak.svg"
  38263. }
  38264. },
  38265. },
  38266. [
  38267. {
  38268. name: "Normal",
  38269. height: math.unit(10 + 3/12, "feet"),
  38270. default: true
  38271. },
  38272. ]
  38273. ))
  38274. characterMakers.push(() => makeCharacter(
  38275. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38276. {
  38277. front: {
  38278. height: math.unit(58, "feet"),
  38279. weight: math.unit(200, "tons"),
  38280. name: "Front",
  38281. image: {
  38282. source: "./media/characters/uzarmazari/front.svg",
  38283. extra: 1575/1455,
  38284. bottom: 152/1727
  38285. }
  38286. },
  38287. back: {
  38288. height: math.unit(58, "feet"),
  38289. weight: math.unit(200, "tons"),
  38290. name: "Back",
  38291. image: {
  38292. source: "./media/characters/uzarmazari/back.svg",
  38293. extra: 1585/1510,
  38294. bottom: 157/1742
  38295. }
  38296. },
  38297. head: {
  38298. height: math.unit(26, "feet"),
  38299. name: "Head",
  38300. image: {
  38301. source: "./media/characters/uzarmazari/head.svg"
  38302. }
  38303. },
  38304. },
  38305. [
  38306. {
  38307. name: "Normal",
  38308. height: math.unit(58, "feet"),
  38309. default: true
  38310. },
  38311. ]
  38312. ))
  38313. characterMakers.push(() => makeCharacter(
  38314. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38315. {
  38316. side: {
  38317. height: math.unit(15, "feet"),
  38318. name: "Side",
  38319. image: {
  38320. source: "./media/characters/akitu/side.svg",
  38321. extra: 1421/1321,
  38322. bottom: 157/1578
  38323. }
  38324. },
  38325. front: {
  38326. height: math.unit(15, "feet"),
  38327. name: "Front",
  38328. image: {
  38329. source: "./media/characters/akitu/front.svg",
  38330. extra: 1435/1326,
  38331. bottom: 232/1667
  38332. }
  38333. },
  38334. },
  38335. [
  38336. {
  38337. name: "Normal",
  38338. height: math.unit(15, "feet"),
  38339. default: true
  38340. },
  38341. ]
  38342. ))
  38343. characterMakers.push(() => makeCharacter(
  38344. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38345. {
  38346. front: {
  38347. height: math.unit(10 + 8/12, "feet"),
  38348. name: "Front",
  38349. image: {
  38350. source: "./media/characters/azalie-croixland/front.svg",
  38351. extra: 1972/1856,
  38352. bottom: 31/2003
  38353. }
  38354. },
  38355. },
  38356. [
  38357. {
  38358. name: "Original Height",
  38359. height: math.unit(5 + 4/12, "feet")
  38360. },
  38361. {
  38362. name: "Normal Height",
  38363. height: math.unit(10 + 8/12, "feet"),
  38364. default: true
  38365. },
  38366. ]
  38367. ))
  38368. characterMakers.push(() => makeCharacter(
  38369. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38370. {
  38371. side: {
  38372. height: math.unit(7 + 1/12, "feet"),
  38373. weight: math.unit(245, "lb"),
  38374. name: "Side",
  38375. image: {
  38376. source: "./media/characters/kavus-kazian/side.svg",
  38377. extra: 349/342,
  38378. bottom: 15/364
  38379. }
  38380. },
  38381. },
  38382. [
  38383. {
  38384. name: "Normal",
  38385. height: math.unit(7 + 1/12, "feet"),
  38386. default: true
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38392. {
  38393. normalFront: {
  38394. height: math.unit(5 + 11/12, "feet"),
  38395. name: "Front",
  38396. image: {
  38397. source: "./media/characters/moonlight-rose/normal-front.svg",
  38398. extra: 1980/1825,
  38399. bottom: 18/1998
  38400. },
  38401. form: "normal",
  38402. default: true
  38403. },
  38404. normalBack: {
  38405. height: math.unit(5 + 11/12, "feet"),
  38406. name: "Back",
  38407. image: {
  38408. source: "./media/characters/moonlight-rose/normal-back.svg",
  38409. extra: 2010/1839,
  38410. bottom: 10/2020
  38411. },
  38412. form: "normal"
  38413. },
  38414. demonFront: {
  38415. height: math.unit(1.5, "earths"),
  38416. name: "Front",
  38417. image: {
  38418. source: "./media/characters/moonlight-rose/demon.svg",
  38419. extra: 1400/1294,
  38420. bottom: 45/1445
  38421. },
  38422. form: "demon",
  38423. default: true
  38424. },
  38425. terraFront: {
  38426. height: math.unit(1.5, "earths"),
  38427. name: "Front",
  38428. image: {
  38429. source: "./media/characters/moonlight-rose/terra.svg"
  38430. },
  38431. form: "terra",
  38432. default: true
  38433. },
  38434. jupiterFront: {
  38435. height: math.unit(69911*2, "km"),
  38436. name: "Front",
  38437. image: {
  38438. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38439. extra: 1367/1286,
  38440. bottom: 55/1422
  38441. },
  38442. form: "jupiter",
  38443. default: true
  38444. },
  38445. neptuneFront: {
  38446. height: math.unit(24622*2, "feet"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38450. extra: 1851/1712,
  38451. bottom: 0/1851
  38452. },
  38453. form: "neptune",
  38454. default: true
  38455. },
  38456. },
  38457. [
  38458. {
  38459. name: "\"Natural\" Height",
  38460. height: math.unit(5 + 11/12, "feet"),
  38461. form: "normal"
  38462. },
  38463. {
  38464. name: "Smallest comfortable size",
  38465. height: math.unit(40, "meters"),
  38466. form: "normal"
  38467. },
  38468. {
  38469. name: "Common size",
  38470. height: math.unit(50, "km"),
  38471. form: "normal",
  38472. default: true
  38473. },
  38474. {
  38475. name: "Normal",
  38476. height: math.unit(1.5, "earths"),
  38477. form: "demon",
  38478. default: true
  38479. },
  38480. {
  38481. name: "Universal",
  38482. height: math.unit(15, "universes"),
  38483. form: "demon"
  38484. },
  38485. {
  38486. name: "Earth",
  38487. height: math.unit(1.5, "earths"),
  38488. form: "terra",
  38489. default: true
  38490. },
  38491. {
  38492. name: "Super Earth",
  38493. height: math.unit(67.5, "earths"),
  38494. form: "terra"
  38495. },
  38496. {
  38497. name: "Doesn't fit in a solar system...",
  38498. height: math.unit(1, "galaxy"),
  38499. form: "terra"
  38500. },
  38501. {
  38502. name: "Saturn",
  38503. height: math.unit(58232*2, "km"),
  38504. form: "jupiter"
  38505. },
  38506. {
  38507. name: "Jupiter",
  38508. height: math.unit(69911*2, "km"),
  38509. form: "jupiter",
  38510. default: true
  38511. },
  38512. {
  38513. name: "HD 100546 b",
  38514. height: math.unit(482938, "km"),
  38515. form: "jupiter"
  38516. },
  38517. {
  38518. name: "Enceladus",
  38519. height: math.unit(513*2, "km"),
  38520. form: "neptune"
  38521. },
  38522. {
  38523. name: "Europe",
  38524. height: math.unit(1560*2, "km"),
  38525. form: "neptune"
  38526. },
  38527. {
  38528. name: "Neptune",
  38529. height: math.unit(24622*2, "km"),
  38530. form: "neptune",
  38531. default: true
  38532. },
  38533. {
  38534. name: "CoRoT-9b",
  38535. height: math.unit(75067*2, "km"),
  38536. form: "neptune"
  38537. },
  38538. ],
  38539. {
  38540. "normal": {
  38541. name: "Normal",
  38542. default: true
  38543. },
  38544. "demon": {
  38545. name: "Demon"
  38546. },
  38547. "terra": {
  38548. name: "Terra"
  38549. },
  38550. "jupiter": {
  38551. name: "Jupiter"
  38552. },
  38553. "neptune": {
  38554. name: "Neptune"
  38555. }
  38556. }
  38557. ))
  38558. characterMakers.push(() => makeCharacter(
  38559. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38560. {
  38561. front: {
  38562. height: math.unit(16, "feet"),
  38563. weight: math.unit(610, "kg"),
  38564. name: "Front",
  38565. image: {
  38566. source: "./media/characters/huckle/front.svg",
  38567. extra: 1731/1625,
  38568. bottom: 33/1764
  38569. }
  38570. },
  38571. back: {
  38572. height: math.unit(16, "feet"),
  38573. weight: math.unit(610, "kg"),
  38574. name: "Back",
  38575. image: {
  38576. source: "./media/characters/huckle/back.svg",
  38577. extra: 1738/1651,
  38578. bottom: 37/1775
  38579. }
  38580. },
  38581. laughing: {
  38582. height: math.unit(3.75, "feet"),
  38583. name: "Laughing",
  38584. image: {
  38585. source: "./media/characters/huckle/laughing.svg"
  38586. }
  38587. },
  38588. angry: {
  38589. height: math.unit(4.15, "feet"),
  38590. name: "Angry",
  38591. image: {
  38592. source: "./media/characters/huckle/angry.svg"
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Normal",
  38599. height: math.unit(16, "feet"),
  38600. default: true
  38601. },
  38602. {
  38603. name: "Mini Macro",
  38604. height: math.unit(463, "feet")
  38605. },
  38606. {
  38607. name: "Macro",
  38608. height: math.unit(1680, "meters")
  38609. },
  38610. {
  38611. name: "Mega Macro",
  38612. height: math.unit(175, "km")
  38613. },
  38614. {
  38615. name: "Terra Macro",
  38616. height: math.unit(32, "gigameters")
  38617. },
  38618. {
  38619. name: "Multiverse+",
  38620. height: math.unit(2.56e23, "yottameters")
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38626. {
  38627. front: {
  38628. height: math.unit(6 + 9/12, "feet"),
  38629. weight: math.unit(280, "lb"),
  38630. name: "Front",
  38631. image: {
  38632. source: "./media/characters/candy/front.svg",
  38633. extra: 234/217,
  38634. bottom: 11/245
  38635. }
  38636. },
  38637. },
  38638. [
  38639. {
  38640. name: "Really Small",
  38641. height: math.unit(0.1, "nm")
  38642. },
  38643. {
  38644. name: "Micro",
  38645. height: math.unit(2, "inches")
  38646. },
  38647. {
  38648. name: "Normal",
  38649. height: math.unit(6 + 9/12, "feet"),
  38650. default: true
  38651. },
  38652. {
  38653. name: "Small Macro",
  38654. height: math.unit(69, "feet")
  38655. },
  38656. {
  38657. name: "Macro",
  38658. height: math.unit(160, "feet")
  38659. },
  38660. {
  38661. name: "Megamacro",
  38662. height: math.unit(22000, "miles")
  38663. },
  38664. {
  38665. name: "Gigamacro",
  38666. height: math.unit(50000, "miles")
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(4, "feet"),
  38675. weight: math.unit(90, "lb"),
  38676. name: "Front",
  38677. image: {
  38678. source: "./media/characters/joey-mcdonald/front.svg",
  38679. extra: 1059/852,
  38680. bottom: 33/1092
  38681. }
  38682. },
  38683. back: {
  38684. height: math.unit(4, "feet"),
  38685. weight: math.unit(90, "lb"),
  38686. name: "Back",
  38687. image: {
  38688. source: "./media/characters/joey-mcdonald/back.svg",
  38689. extra: 1077/879,
  38690. bottom: 5/1082
  38691. }
  38692. },
  38693. frontKobold: {
  38694. height: math.unit(4, "feet"),
  38695. weight: math.unit(100, "lb"),
  38696. name: "Front (Kobold)",
  38697. image: {
  38698. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38699. extra: 1480/1367,
  38700. bottom: 0/1480
  38701. }
  38702. },
  38703. backKobold: {
  38704. height: math.unit(4, "feet"),
  38705. weight: math.unit(100, "lb"),
  38706. name: "Back (Kobold)",
  38707. image: {
  38708. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38709. extra: 1449/1361,
  38710. bottom: 0/1449
  38711. }
  38712. },
  38713. },
  38714. [
  38715. {
  38716. name: "Normal",
  38717. height: math.unit(4, "feet"),
  38718. default: true
  38719. },
  38720. ]
  38721. ))
  38722. characterMakers.push(() => makeCharacter(
  38723. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38724. {
  38725. front: {
  38726. height: math.unit(12 + 6/12, "feet"),
  38727. name: "Front",
  38728. image: {
  38729. source: "./media/characters/kass-lockheed/front.svg",
  38730. extra: 354/343,
  38731. bottom: 9/363
  38732. }
  38733. },
  38734. back: {
  38735. height: math.unit(12 + 6/12, "feet"),
  38736. name: "Back",
  38737. image: {
  38738. source: "./media/characters/kass-lockheed/back.svg",
  38739. extra: 364/352,
  38740. bottom: 3/367
  38741. }
  38742. },
  38743. dick: {
  38744. height: math.unit(3.12, "feet"),
  38745. name: "Dick",
  38746. image: {
  38747. source: "./media/characters/kass-lockheed/dick.svg"
  38748. }
  38749. },
  38750. head: {
  38751. height: math.unit(2.6, "feet"),
  38752. name: "Head",
  38753. image: {
  38754. source: "./media/characters/kass-lockheed/head.svg"
  38755. }
  38756. },
  38757. bleh: {
  38758. height: math.unit(2.85, "feet"),
  38759. name: "Bleh",
  38760. image: {
  38761. source: "./media/characters/kass-lockheed/bleh.svg"
  38762. }
  38763. },
  38764. smug: {
  38765. height: math.unit(2.85, "feet"),
  38766. name: "Smug",
  38767. image: {
  38768. source: "./media/characters/kass-lockheed/smug.svg"
  38769. }
  38770. },
  38771. },
  38772. [
  38773. {
  38774. name: "Normal",
  38775. height: math.unit(12 + 6/12, "feet"),
  38776. default: true
  38777. },
  38778. ]
  38779. ))
  38780. characterMakers.push(() => makeCharacter(
  38781. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38782. {
  38783. front: {
  38784. height: math.unit(6 + 2/12, "feet"),
  38785. name: "Front",
  38786. image: {
  38787. source: "./media/characters/taylor/front.svg",
  38788. extra: 639/495,
  38789. bottom: 12/651
  38790. }
  38791. },
  38792. },
  38793. [
  38794. {
  38795. name: "Normal",
  38796. height: math.unit(6 + 2/12, "feet"),
  38797. default: true
  38798. },
  38799. {
  38800. name: "Big",
  38801. height: math.unit(15, "feet")
  38802. },
  38803. {
  38804. name: "Lorg",
  38805. height: math.unit(80, "feet")
  38806. },
  38807. {
  38808. name: "Too Lorg",
  38809. height: math.unit(120, "feet")
  38810. },
  38811. ]
  38812. ))
  38813. characterMakers.push(() => makeCharacter(
  38814. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38815. {
  38816. front: {
  38817. height: math.unit(15, "feet"),
  38818. name: "Front",
  38819. image: {
  38820. source: "./media/characters/kaizer/front.svg",
  38821. extra: 1612/1436,
  38822. bottom: 43/1655
  38823. }
  38824. },
  38825. },
  38826. [
  38827. {
  38828. name: "Normal",
  38829. height: math.unit(15, "feet"),
  38830. default: true
  38831. },
  38832. ]
  38833. ))
  38834. characterMakers.push(() => makeCharacter(
  38835. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38836. {
  38837. front: {
  38838. height: math.unit(2, "feet"),
  38839. weight: math.unit(30, "lb"),
  38840. name: "Front",
  38841. image: {
  38842. source: "./media/characters/sandy/front.svg",
  38843. extra: 1439/1307,
  38844. bottom: 194/1633
  38845. }
  38846. },
  38847. },
  38848. [
  38849. {
  38850. name: "Normal",
  38851. height: math.unit(2, "feet"),
  38852. default: true
  38853. },
  38854. ]
  38855. ))
  38856. characterMakers.push(() => makeCharacter(
  38857. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38858. {
  38859. front: {
  38860. height: math.unit(3, "feet"),
  38861. name: "Front",
  38862. image: {
  38863. source: "./media/characters/mellvi/front.svg",
  38864. extra: 1831/1630,
  38865. bottom: 58/1889
  38866. }
  38867. },
  38868. },
  38869. [
  38870. {
  38871. name: "Normal",
  38872. height: math.unit(3, "feet"),
  38873. default: true
  38874. },
  38875. ]
  38876. ))
  38877. characterMakers.push(() => makeCharacter(
  38878. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38879. {
  38880. front: {
  38881. height: math.unit(5 + 11/12, "feet"),
  38882. weight: math.unit(200, "lb"),
  38883. name: "Front",
  38884. image: {
  38885. source: "./media/characters/shirou/front.svg",
  38886. extra: 2491/2383,
  38887. bottom: 189/2680
  38888. }
  38889. },
  38890. back: {
  38891. height: math.unit(5 + 11/12, "feet"),
  38892. weight: math.unit(200, "lb"),
  38893. name: "Back",
  38894. image: {
  38895. source: "./media/characters/shirou/back.svg",
  38896. extra: 2554/2450,
  38897. bottom: 76/2630
  38898. }
  38899. },
  38900. },
  38901. [
  38902. {
  38903. name: "Normal",
  38904. height: math.unit(5 + 11/12, "feet"),
  38905. default: true
  38906. },
  38907. ]
  38908. ))
  38909. characterMakers.push(() => makeCharacter(
  38910. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38911. {
  38912. front: {
  38913. height: math.unit(6 + 3/12, "feet"),
  38914. weight: math.unit(177, "lb"),
  38915. name: "Front",
  38916. image: {
  38917. source: "./media/characters/noryu/front.svg",
  38918. extra: 973/885,
  38919. bottom: 10/983
  38920. }
  38921. },
  38922. },
  38923. [
  38924. {
  38925. name: "Normal",
  38926. height: math.unit(6 + 3/12, "feet"),
  38927. default: true
  38928. },
  38929. ]
  38930. ))
  38931. characterMakers.push(() => makeCharacter(
  38932. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38933. {
  38934. front: {
  38935. height: math.unit(5 + 6/12, "feet"),
  38936. weight: math.unit(170, "lb"),
  38937. name: "Front",
  38938. image: {
  38939. source: "./media/characters/mevolas-rubenido/front.svg",
  38940. extra: 2109/1901,
  38941. bottom: 96/2205
  38942. }
  38943. },
  38944. },
  38945. [
  38946. {
  38947. name: "Normal",
  38948. height: math.unit(5 + 6/12, "feet"),
  38949. default: true
  38950. },
  38951. ]
  38952. ))
  38953. characterMakers.push(() => makeCharacter(
  38954. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38955. {
  38956. front: {
  38957. height: math.unit(100, "feet"),
  38958. name: "Front",
  38959. image: {
  38960. source: "./media/characters/dee/front.svg",
  38961. extra: 2153/2036,
  38962. bottom: 59/2212
  38963. }
  38964. },
  38965. back: {
  38966. height: math.unit(100, "feet"),
  38967. name: "Back",
  38968. image: {
  38969. source: "./media/characters/dee/back.svg",
  38970. extra: 2183/2058,
  38971. bottom: 75/2258
  38972. }
  38973. },
  38974. foot: {
  38975. height: math.unit(19.43, "feet"),
  38976. name: "Foot",
  38977. image: {
  38978. source: "./media/characters/dee/foot.svg"
  38979. }
  38980. },
  38981. hoof: {
  38982. height: math.unit(20.6, "feet"),
  38983. name: "Hoof",
  38984. image: {
  38985. source: "./media/characters/dee/hoof.svg"
  38986. }
  38987. },
  38988. },
  38989. [
  38990. {
  38991. name: "Macro",
  38992. height: math.unit(100, "feet"),
  38993. default: true
  38994. },
  38995. ]
  38996. ))
  38997. characterMakers.push(() => makeCharacter(
  38998. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38999. {
  39000. front: {
  39001. height: math.unit(5 + 6/12, "feet"),
  39002. name: "Front",
  39003. image: {
  39004. source: "./media/characters/teh/front.svg",
  39005. extra: 1002/847,
  39006. bottom: 62/1064
  39007. }
  39008. },
  39009. },
  39010. [
  39011. {
  39012. name: "Normal",
  39013. height: math.unit(5 + 6/12, "feet"),
  39014. default: true
  39015. },
  39016. ]
  39017. ))
  39018. characterMakers.push(() => makeCharacter(
  39019. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  39020. {
  39021. side: {
  39022. height: math.unit(6 + 1/12, "feet"),
  39023. weight: math.unit(204, "lb"),
  39024. name: "Side",
  39025. image: {
  39026. source: "./media/characters/quicksilver-ayukoti/side.svg",
  39027. extra: 974/775,
  39028. bottom: 169/1143
  39029. }
  39030. },
  39031. sitting: {
  39032. height: math.unit(6 + 2/12, "feet"),
  39033. weight: math.unit(204, "lb"),
  39034. name: "Sitting",
  39035. image: {
  39036. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  39037. extra: 1175/964,
  39038. bottom: 378/1553
  39039. }
  39040. },
  39041. },
  39042. [
  39043. {
  39044. name: "Normal",
  39045. height: math.unit(6 + 1/12, "feet"),
  39046. default: true
  39047. },
  39048. ]
  39049. ))
  39050. characterMakers.push(() => makeCharacter(
  39051. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  39052. {
  39053. front: {
  39054. height: math.unit(6, "inches"),
  39055. name: "Front",
  39056. image: {
  39057. source: "./media/characters/tululi/front.svg",
  39058. extra: 1997/1876,
  39059. bottom: 20/2017
  39060. }
  39061. },
  39062. },
  39063. [
  39064. {
  39065. name: "Normal",
  39066. height: math.unit(6, "inches"),
  39067. default: true
  39068. },
  39069. ]
  39070. ))
  39071. characterMakers.push(() => makeCharacter(
  39072. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  39073. {
  39074. front: {
  39075. height: math.unit(4 + 1/12, "feet"),
  39076. name: "Front",
  39077. image: {
  39078. source: "./media/characters/star/front.svg",
  39079. extra: 1493/1189,
  39080. bottom: 48/1541
  39081. }
  39082. },
  39083. },
  39084. [
  39085. {
  39086. name: "Normal",
  39087. height: math.unit(4 + 1/12, "feet"),
  39088. default: true
  39089. },
  39090. ]
  39091. ))
  39092. characterMakers.push(() => makeCharacter(
  39093. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  39094. {
  39095. front: {
  39096. height: math.unit(6 + 3/12, "feet"),
  39097. name: "Front",
  39098. image: {
  39099. source: "./media/characters/comet/front.svg",
  39100. extra: 1681/1462,
  39101. bottom: 26/1707
  39102. }
  39103. },
  39104. },
  39105. [
  39106. {
  39107. name: "Normal",
  39108. height: math.unit(6 + 3/12, "feet"),
  39109. default: true
  39110. },
  39111. ]
  39112. ))
  39113. characterMakers.push(() => makeCharacter(
  39114. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  39115. {
  39116. front: {
  39117. height: math.unit(950, "feet"),
  39118. name: "Front",
  39119. image: {
  39120. source: "./media/characters/vortex/front.svg",
  39121. extra: 1497/1434,
  39122. bottom: 56/1553
  39123. }
  39124. },
  39125. maw: {
  39126. height: math.unit(285, "feet"),
  39127. name: "Maw",
  39128. image: {
  39129. source: "./media/characters/vortex/maw.svg"
  39130. }
  39131. },
  39132. },
  39133. [
  39134. {
  39135. name: "Macro",
  39136. height: math.unit(950, "feet"),
  39137. default: true
  39138. },
  39139. ]
  39140. ))
  39141. characterMakers.push(() => makeCharacter(
  39142. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  39143. {
  39144. front: {
  39145. height: math.unit(600, "feet"),
  39146. weight: math.unit(0.02, "grams"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/doodle/front.svg",
  39150. extra: 1578/1413,
  39151. bottom: 37/1615
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Macro",
  39158. height: math.unit(600, "feet"),
  39159. default: true
  39160. },
  39161. ]
  39162. ))
  39163. characterMakers.push(() => makeCharacter(
  39164. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  39165. {
  39166. front: {
  39167. height: math.unit(6 + 6/12, "feet"),
  39168. name: "Front",
  39169. image: {
  39170. source: "./media/characters/jai/front.svg",
  39171. extra: 1645/1534,
  39172. bottom: 115/1760
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Normal",
  39179. height: math.unit(6 + 6/12, "feet"),
  39180. default: true
  39181. },
  39182. ]
  39183. ))
  39184. characterMakers.push(() => makeCharacter(
  39185. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  39186. {
  39187. front: {
  39188. height: math.unit(6 + 8/12, "feet"),
  39189. name: "Front",
  39190. image: {
  39191. source: "./media/characters/pixel/front.svg",
  39192. extra: 1900/1735,
  39193. bottom: 63/1963
  39194. }
  39195. },
  39196. },
  39197. [
  39198. {
  39199. name: "Normal",
  39200. height: math.unit(6 + 8/12, "feet"),
  39201. default: true
  39202. },
  39203. ]
  39204. ))
  39205. characterMakers.push(() => makeCharacter(
  39206. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39207. {
  39208. back: {
  39209. height: math.unit(4 + 1/12, "feet"),
  39210. weight: math.unit(75, "lb"),
  39211. name: "Back",
  39212. image: {
  39213. source: "./media/characters/rhett/back.svg",
  39214. extra: 930/878,
  39215. bottom: 25/955
  39216. }
  39217. },
  39218. front: {
  39219. height: math.unit(4 + 1/12, "feet"),
  39220. weight: math.unit(75, "lb"),
  39221. name: "Front",
  39222. image: {
  39223. source: "./media/characters/rhett/front.svg",
  39224. extra: 1682/1586,
  39225. bottom: 92/1774
  39226. }
  39227. },
  39228. },
  39229. [
  39230. {
  39231. name: "Micro",
  39232. height: math.unit(8, "inches")
  39233. },
  39234. {
  39235. name: "Tiny",
  39236. height: math.unit(2, "feet")
  39237. },
  39238. {
  39239. name: "Normal",
  39240. height: math.unit(4 + 1/12, "feet"),
  39241. default: true
  39242. },
  39243. ]
  39244. ))
  39245. characterMakers.push(() => makeCharacter(
  39246. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39247. {
  39248. front: {
  39249. height: math.unit(3 + 3/12, "feet"),
  39250. name: "Front",
  39251. image: {
  39252. source: "./media/characters/penny/front.svg",
  39253. extra: 1406/1311,
  39254. bottom: 26/1432
  39255. }
  39256. },
  39257. },
  39258. [
  39259. {
  39260. name: "Normal",
  39261. height: math.unit(3 + 3/12, "feet"),
  39262. default: true
  39263. },
  39264. ]
  39265. ))
  39266. characterMakers.push(() => makeCharacter(
  39267. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39268. {
  39269. front: {
  39270. height: math.unit(4 + 11/12, "feet"),
  39271. name: "Front",
  39272. image: {
  39273. source: "./media/characters/monty/front.svg",
  39274. extra: 1479/1209,
  39275. bottom: 0/1479
  39276. }
  39277. },
  39278. },
  39279. [
  39280. {
  39281. name: "Normal",
  39282. height: math.unit(4 + 11/12, "feet"),
  39283. default: true
  39284. },
  39285. ]
  39286. ))
  39287. characterMakers.push(() => makeCharacter(
  39288. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39289. {
  39290. front: {
  39291. height: math.unit(8 + 4/12, "feet"),
  39292. name: "Front",
  39293. image: {
  39294. source: "./media/characters/sterling/front.svg",
  39295. extra: 1420/1236,
  39296. bottom: 27/1447
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Normal",
  39303. height: math.unit(8 + 4/12, "feet"),
  39304. default: true
  39305. },
  39306. ]
  39307. ))
  39308. characterMakers.push(() => makeCharacter(
  39309. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39310. {
  39311. front: {
  39312. height: math.unit(15, "feet"),
  39313. name: "Front",
  39314. image: {
  39315. source: "./media/characters/marble/front.svg",
  39316. extra: 973/937,
  39317. bottom: 32/1005
  39318. }
  39319. },
  39320. },
  39321. [
  39322. {
  39323. name: "Normal",
  39324. height: math.unit(15, "feet"),
  39325. default: true
  39326. },
  39327. ]
  39328. ))
  39329. characterMakers.push(() => makeCharacter(
  39330. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39331. {
  39332. front: {
  39333. height: math.unit(3, "inches"),
  39334. name: "Front",
  39335. image: {
  39336. source: "./media/characters/powder/front.svg",
  39337. extra: 1504/1334,
  39338. bottom: 518/2022
  39339. }
  39340. },
  39341. },
  39342. [
  39343. {
  39344. name: "Normal",
  39345. height: math.unit(3, "inches"),
  39346. default: true
  39347. },
  39348. ]
  39349. ))
  39350. characterMakers.push(() => makeCharacter(
  39351. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39352. {
  39353. front: {
  39354. height: math.unit(4 + 5/12, "feet"),
  39355. name: "Front",
  39356. image: {
  39357. source: "./media/characters/joey-raccoon/front.svg",
  39358. extra: 1273/1197,
  39359. bottom: 0/1273
  39360. }
  39361. },
  39362. },
  39363. [
  39364. {
  39365. name: "Normal",
  39366. height: math.unit(4 + 5/12, "feet"),
  39367. default: true
  39368. },
  39369. ]
  39370. ))
  39371. characterMakers.push(() => makeCharacter(
  39372. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39373. {
  39374. front: {
  39375. height: math.unit(8 + 4/12, "feet"),
  39376. name: "Front",
  39377. image: {
  39378. source: "./media/characters/vick/front.svg",
  39379. extra: 2187/2118,
  39380. bottom: 47/2234
  39381. }
  39382. },
  39383. },
  39384. [
  39385. {
  39386. name: "Normal",
  39387. height: math.unit(8 + 4/12, "feet"),
  39388. default: true
  39389. },
  39390. ]
  39391. ))
  39392. characterMakers.push(() => makeCharacter(
  39393. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39394. {
  39395. front: {
  39396. height: math.unit(5 + 5/12, "feet"),
  39397. name: "Front",
  39398. image: {
  39399. source: "./media/characters/mitsy/front.svg",
  39400. extra: 1842/1695,
  39401. bottom: 0/1842
  39402. }
  39403. },
  39404. },
  39405. [
  39406. {
  39407. name: "Normal",
  39408. height: math.unit(5 + 5/12, "feet"),
  39409. default: true
  39410. },
  39411. ]
  39412. ))
  39413. characterMakers.push(() => makeCharacter(
  39414. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39415. {
  39416. front: {
  39417. height: math.unit(6 + 3/12, "feet"),
  39418. name: "Front",
  39419. image: {
  39420. source: "./media/characters/silvy/front.svg",
  39421. extra: 1995/1836,
  39422. bottom: 225/2220
  39423. }
  39424. },
  39425. },
  39426. [
  39427. {
  39428. name: "Normal",
  39429. height: math.unit(6 + 3/12, "feet"),
  39430. default: true
  39431. },
  39432. ]
  39433. ))
  39434. characterMakers.push(() => makeCharacter(
  39435. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39436. {
  39437. front: {
  39438. height: math.unit(3 + 8/12, "feet"),
  39439. name: "Front",
  39440. image: {
  39441. source: "./media/characters/rodney/front.svg",
  39442. extra: 1956/1747,
  39443. bottom: 31/1987
  39444. }
  39445. },
  39446. frontDressed: {
  39447. height: math.unit(2.9, "feet"),
  39448. name: "Front (Dressed)",
  39449. image: {
  39450. source: "./media/characters/rodney/front-dressed.svg",
  39451. extra: 1382/1241,
  39452. bottom: 385/1767
  39453. }
  39454. },
  39455. },
  39456. [
  39457. {
  39458. name: "Normal",
  39459. height: math.unit(3 + 8/12, "feet"),
  39460. default: true
  39461. },
  39462. ]
  39463. ))
  39464. characterMakers.push(() => makeCharacter(
  39465. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39466. {
  39467. front: {
  39468. height: math.unit(5 + 9/12, "feet"),
  39469. weight: math.unit(194, "lbs"),
  39470. name: "Front",
  39471. image: {
  39472. source: "./media/characters/zakail-sudekai/front.svg",
  39473. extra: 2696/2533,
  39474. bottom: 248/2944
  39475. }
  39476. },
  39477. maw: {
  39478. height: math.unit(1.35, "feet"),
  39479. name: "Maw",
  39480. image: {
  39481. source: "./media/characters/zakail-sudekai/maw.svg"
  39482. }
  39483. },
  39484. },
  39485. [
  39486. {
  39487. name: "Normal",
  39488. height: math.unit(5 + 9/12, "feet"),
  39489. default: true
  39490. },
  39491. ]
  39492. ))
  39493. characterMakers.push(() => makeCharacter(
  39494. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39495. {
  39496. front: {
  39497. height: math.unit(8 + 4/12, "feet"),
  39498. weight: math.unit(1200, "lb"),
  39499. name: "Front",
  39500. image: {
  39501. source: "./media/characters/eleanor/front.svg",
  39502. extra: 1226/1192,
  39503. bottom: 52/1278
  39504. }
  39505. },
  39506. back: {
  39507. height: math.unit(8 + 4/12, "feet"),
  39508. weight: math.unit(1200, "lb"),
  39509. name: "Back",
  39510. image: {
  39511. source: "./media/characters/eleanor/back.svg",
  39512. extra: 1242/1184,
  39513. bottom: 60/1302
  39514. }
  39515. },
  39516. head: {
  39517. height: math.unit(2.62, "feet"),
  39518. name: "Head",
  39519. image: {
  39520. source: "./media/characters/eleanor/head.svg"
  39521. }
  39522. },
  39523. },
  39524. [
  39525. {
  39526. name: "Normal",
  39527. height: math.unit(8 + 4/12, "feet"),
  39528. default: true
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39534. {
  39535. front: {
  39536. height: math.unit(8 + 4/12, "feet"),
  39537. weight: math.unit(750, "lb"),
  39538. name: "Front",
  39539. image: {
  39540. source: "./media/characters/tanya/front.svg",
  39541. extra: 1749/1615,
  39542. bottom: 33/1782
  39543. }
  39544. },
  39545. },
  39546. [
  39547. {
  39548. name: "Normal",
  39549. height: math.unit(8 + 4/12, "feet"),
  39550. default: true
  39551. },
  39552. ]
  39553. ))
  39554. characterMakers.push(() => makeCharacter(
  39555. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39556. {
  39557. front: {
  39558. height: math.unit(5, "feet"),
  39559. weight: math.unit(225, "lb"),
  39560. name: "Front",
  39561. image: {
  39562. source: "./media/characters/cindy/front.svg",
  39563. extra: 1320/1250,
  39564. bottom: 42/1362
  39565. }
  39566. },
  39567. frontDressed: {
  39568. height: math.unit(5, "feet"),
  39569. weight: math.unit(225, "lb"),
  39570. name: "Front (Dressed)",
  39571. image: {
  39572. source: "./media/characters/cindy/front-dressed.svg",
  39573. extra: 1320/1250,
  39574. bottom: 42/1362
  39575. }
  39576. },
  39577. back: {
  39578. height: math.unit(5, "feet"),
  39579. weight: math.unit(225, "lb"),
  39580. name: "Back",
  39581. image: {
  39582. source: "./media/characters/cindy/back.svg",
  39583. extra: 1384/1346,
  39584. bottom: 14/1398
  39585. }
  39586. },
  39587. },
  39588. [
  39589. {
  39590. name: "Normal",
  39591. height: math.unit(5, "feet"),
  39592. default: true
  39593. },
  39594. ]
  39595. ))
  39596. characterMakers.push(() => makeCharacter(
  39597. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39598. {
  39599. front: {
  39600. height: math.unit(6 + 9/12, "feet"),
  39601. weight: math.unit(440, "lb"),
  39602. name: "Front",
  39603. image: {
  39604. source: "./media/characters/wilbur-owen/front.svg",
  39605. extra: 1575/1448,
  39606. bottom: 72/1647
  39607. }
  39608. },
  39609. back: {
  39610. height: math.unit(6 + 9/12, "feet"),
  39611. weight: math.unit(440, "lb"),
  39612. name: "Back",
  39613. image: {
  39614. source: "./media/characters/wilbur-owen/back.svg",
  39615. extra: 1578/1445,
  39616. bottom: 36/1614
  39617. }
  39618. },
  39619. },
  39620. [
  39621. {
  39622. name: "Normal",
  39623. height: math.unit(6 + 9/12, "feet"),
  39624. default: true
  39625. },
  39626. ]
  39627. ))
  39628. characterMakers.push(() => makeCharacter(
  39629. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39630. {
  39631. front: {
  39632. height: math.unit(6 + 5/12, "feet"),
  39633. weight: math.unit(650, "lb"),
  39634. name: "Front",
  39635. image: {
  39636. source: "./media/characters/keegan/front.svg",
  39637. extra: 2387/2198,
  39638. bottom: 33/2420
  39639. }
  39640. },
  39641. side: {
  39642. height: math.unit(6 + 5/12, "feet"),
  39643. weight: math.unit(650, "lb"),
  39644. name: "Side",
  39645. image: {
  39646. source: "./media/characters/keegan/side.svg",
  39647. extra: 2390/2202,
  39648. bottom: 47/2437
  39649. }
  39650. },
  39651. back: {
  39652. height: math.unit(6 + 5/12, "feet"),
  39653. weight: math.unit(650, "lb"),
  39654. name: "Back",
  39655. image: {
  39656. source: "./media/characters/keegan/back.svg",
  39657. extra: 2418/2268,
  39658. bottom: 15/2433
  39659. }
  39660. },
  39661. frontSfw: {
  39662. height: math.unit(6 + 5/12, "feet"),
  39663. weight: math.unit(650, "lb"),
  39664. name: "Front (SFW)",
  39665. image: {
  39666. source: "./media/characters/keegan/front-sfw.svg",
  39667. extra: 2387/2198,
  39668. bottom: 33/2420
  39669. }
  39670. },
  39671. beans: {
  39672. height: math.unit(1.85, "feet"),
  39673. name: "Beans",
  39674. image: {
  39675. source: "./media/characters/keegan/beans.svg"
  39676. }
  39677. },
  39678. },
  39679. [
  39680. {
  39681. name: "Normal",
  39682. height: math.unit(6 + 5/12, "feet"),
  39683. default: true
  39684. },
  39685. ]
  39686. ))
  39687. characterMakers.push(() => makeCharacter(
  39688. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39689. {
  39690. front: {
  39691. height: math.unit(9, "feet"),
  39692. name: "Front",
  39693. image: {
  39694. source: "./media/characters/colton/front.svg",
  39695. extra: 1589/1326,
  39696. bottom: 139/1728
  39697. }
  39698. },
  39699. },
  39700. [
  39701. {
  39702. name: "Normal",
  39703. height: math.unit(9, "feet"),
  39704. default: true
  39705. },
  39706. ]
  39707. ))
  39708. characterMakers.push(() => makeCharacter(
  39709. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39710. {
  39711. front: {
  39712. height: math.unit(2 + 9/12, "feet"),
  39713. name: "Front",
  39714. image: {
  39715. source: "./media/characters/bora/front.svg",
  39716. extra: 1265/1250,
  39717. bottom: 24/1289
  39718. }
  39719. },
  39720. },
  39721. [
  39722. {
  39723. name: "Normal",
  39724. height: math.unit(2 + 9/12, "feet"),
  39725. default: true
  39726. },
  39727. ]
  39728. ))
  39729. characterMakers.push(() => makeCharacter(
  39730. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39731. {
  39732. front: {
  39733. height: math.unit(8, "feet"),
  39734. name: "Front",
  39735. image: {
  39736. source: "./media/characters/myu-myu/front.svg",
  39737. extra: 1949/1857,
  39738. bottom: 90/2039
  39739. }
  39740. },
  39741. },
  39742. [
  39743. {
  39744. name: "Normal",
  39745. height: math.unit(8, "feet"),
  39746. default: true
  39747. },
  39748. {
  39749. name: "Big",
  39750. height: math.unit(15, "feet")
  39751. },
  39752. {
  39753. name: "BIG",
  39754. height: math.unit(25, "feet")
  39755. },
  39756. ]
  39757. ))
  39758. characterMakers.push(() => makeCharacter(
  39759. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39760. {
  39761. side: {
  39762. height: math.unit(7 + 5/12, "feet"),
  39763. weight: math.unit(2800, "lb"),
  39764. name: "Side",
  39765. image: {
  39766. source: "./media/characters/haloren/side.svg",
  39767. extra: 1793/409,
  39768. bottom: 59/1852
  39769. }
  39770. },
  39771. frontPaw: {
  39772. height: math.unit(2.36, "feet"),
  39773. name: "Front paw",
  39774. image: {
  39775. source: "./media/characters/haloren/front-paw.svg"
  39776. }
  39777. },
  39778. hindPaw: {
  39779. height: math.unit(3.18, "feet"),
  39780. name: "Hind paw",
  39781. image: {
  39782. source: "./media/characters/haloren/hind-paw.svg"
  39783. }
  39784. },
  39785. maw: {
  39786. height: math.unit(5.05, "feet"),
  39787. name: "Maw",
  39788. image: {
  39789. source: "./media/characters/haloren/maw.svg"
  39790. }
  39791. },
  39792. dick: {
  39793. height: math.unit(2.90, "feet"),
  39794. name: "Dick",
  39795. image: {
  39796. source: "./media/characters/haloren/dick.svg"
  39797. }
  39798. },
  39799. },
  39800. [
  39801. {
  39802. name: "Normal",
  39803. height: math.unit(7 + 5/12, "feet"),
  39804. default: true
  39805. },
  39806. {
  39807. name: "Enhanced",
  39808. height: math.unit(14 + 3/12, "feet")
  39809. },
  39810. ]
  39811. ))
  39812. characterMakers.push(() => makeCharacter(
  39813. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39814. {
  39815. front: {
  39816. height: math.unit(171, "cm"),
  39817. name: "Front",
  39818. image: {
  39819. source: "./media/characters/kimmy/front.svg",
  39820. extra: 1491/1435,
  39821. bottom: 53/1544
  39822. }
  39823. },
  39824. },
  39825. [
  39826. {
  39827. name: "Small",
  39828. height: math.unit(9, "cm")
  39829. },
  39830. {
  39831. name: "Normal",
  39832. height: math.unit(171, "cm"),
  39833. default: true
  39834. },
  39835. ]
  39836. ))
  39837. characterMakers.push(() => makeCharacter(
  39838. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39839. {
  39840. front: {
  39841. height: math.unit(8, "feet"),
  39842. weight: math.unit(300, "lb"),
  39843. name: "Front",
  39844. image: {
  39845. source: "./media/characters/galeboomer/front.svg",
  39846. extra: 4651/4415,
  39847. bottom: 162/4813
  39848. }
  39849. },
  39850. back: {
  39851. height: math.unit(8, "feet"),
  39852. weight: math.unit(300, "lb"),
  39853. name: "Back",
  39854. image: {
  39855. source: "./media/characters/galeboomer/back.svg",
  39856. extra: 4544/4314,
  39857. bottom: 16/4560
  39858. }
  39859. },
  39860. frontAlt: {
  39861. height: math.unit(8, "feet"),
  39862. weight: math.unit(300, "lb"),
  39863. name: "Front (Alt)",
  39864. image: {
  39865. source: "./media/characters/galeboomer/front-alt.svg",
  39866. extra: 4458/4228,
  39867. bottom: 68/4526
  39868. }
  39869. },
  39870. maw: {
  39871. height: math.unit(1.2, "feet"),
  39872. name: "Maw",
  39873. image: {
  39874. source: "./media/characters/galeboomer/maw.svg"
  39875. }
  39876. },
  39877. },
  39878. [
  39879. {
  39880. name: "Normal",
  39881. height: math.unit(8, "feet"),
  39882. default: true
  39883. },
  39884. ]
  39885. ))
  39886. characterMakers.push(() => makeCharacter(
  39887. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39888. {
  39889. front: {
  39890. height: math.unit(5 + 9/12, "feet"),
  39891. weight: math.unit(120, "lb"),
  39892. name: "Front",
  39893. image: {
  39894. source: "./media/characters/chyr/front.svg",
  39895. extra: 1323/1254,
  39896. bottom: 63/1386
  39897. }
  39898. },
  39899. back: {
  39900. height: math.unit(5 + 9/12, "feet"),
  39901. weight: math.unit(120, "lb"),
  39902. name: "Back",
  39903. image: {
  39904. source: "./media/characters/chyr/back.svg",
  39905. extra: 1323/1252,
  39906. bottom: 48/1371
  39907. }
  39908. },
  39909. },
  39910. [
  39911. {
  39912. name: "Normal",
  39913. height: math.unit(5 + 9/12, "feet"),
  39914. default: true
  39915. },
  39916. ]
  39917. ))
  39918. characterMakers.push(() => makeCharacter(
  39919. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39920. {
  39921. front: {
  39922. height: math.unit(7, "feet"),
  39923. weight: math.unit(310, "lb"),
  39924. name: "Front",
  39925. image: {
  39926. source: "./media/characters/solarus/front.svg",
  39927. extra: 2415/2021,
  39928. bottom: 103/2518
  39929. }
  39930. },
  39931. back: {
  39932. height: math.unit(7, "feet"),
  39933. weight: math.unit(310, "lb"),
  39934. name: "Back",
  39935. image: {
  39936. source: "./media/characters/solarus/back.svg",
  39937. extra: 2463/2089,
  39938. bottom: 79/2542
  39939. }
  39940. },
  39941. },
  39942. [
  39943. {
  39944. name: "Normal",
  39945. height: math.unit(7, "feet"),
  39946. default: true
  39947. },
  39948. ]
  39949. ))
  39950. characterMakers.push(() => makeCharacter(
  39951. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39952. {
  39953. front: {
  39954. height: math.unit(16, "feet"),
  39955. name: "Front",
  39956. image: {
  39957. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39958. extra: 1844/1780,
  39959. bottom: 58/1902
  39960. }
  39961. },
  39962. winterCoat: {
  39963. height: math.unit(16, "feet"),
  39964. name: "Winter Coat",
  39965. image: {
  39966. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39967. extra: 1807/1775,
  39968. bottom: 69/1876
  39969. }
  39970. },
  39971. },
  39972. [
  39973. {
  39974. name: "Normal",
  39975. height: math.unit(16, "feet"),
  39976. default: true
  39977. },
  39978. {
  39979. name: "Chicago Size",
  39980. height: math.unit(560, "feet")
  39981. },
  39982. ]
  39983. ))
  39984. characterMakers.push(() => makeCharacter(
  39985. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39986. {
  39987. front: {
  39988. height: math.unit(11 + 6/12, "feet"),
  39989. weight: math.unit(1366, "lb"),
  39990. name: "Front",
  39991. image: {
  39992. source: "./media/characters/lexor/front.svg",
  39993. extra: 1560/1481,
  39994. bottom: 211/1771
  39995. }
  39996. },
  39997. back: {
  39998. height: math.unit(11 + 6/12, "feet"),
  39999. weight: math.unit(1366, "lb"),
  40000. name: "Back",
  40001. image: {
  40002. source: "./media/characters/lexor/back.svg",
  40003. extra: 1614/1533,
  40004. bottom: 76/1690
  40005. }
  40006. },
  40007. maw: {
  40008. height: math.unit(3, "feet"),
  40009. name: "Maw",
  40010. image: {
  40011. source: "./media/characters/lexor/maw.svg"
  40012. }
  40013. },
  40014. dick: {
  40015. height: math.unit(2.59, "feet"),
  40016. name: "Dick",
  40017. image: {
  40018. source: "./media/characters/lexor/dick.svg"
  40019. }
  40020. },
  40021. },
  40022. [
  40023. {
  40024. name: "Normal",
  40025. height: math.unit(11 + 6/12, "feet"),
  40026. default: true
  40027. },
  40028. ]
  40029. ))
  40030. characterMakers.push(() => makeCharacter(
  40031. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  40032. {
  40033. front: {
  40034. height: math.unit(5 + 8/12, "feet"),
  40035. name: "Front",
  40036. image: {
  40037. source: "./media/characters/magnum/front.svg",
  40038. extra: 942/855,
  40039. bottom: 26/968
  40040. }
  40041. },
  40042. },
  40043. [
  40044. {
  40045. name: "Normal",
  40046. height: math.unit(5 + 8/12, "feet"),
  40047. default: true
  40048. },
  40049. ]
  40050. ))
  40051. characterMakers.push(() => makeCharacter(
  40052. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  40053. {
  40054. front: {
  40055. height: math.unit(18 + 4/12, "feet"),
  40056. weight: math.unit(1500, "kg"),
  40057. name: "Front",
  40058. image: {
  40059. source: "./media/characters/solas-sharpsman/front.svg",
  40060. extra: 1698/1589,
  40061. bottom: 0/1698
  40062. }
  40063. },
  40064. },
  40065. [
  40066. {
  40067. name: "Normal",
  40068. height: math.unit(18 + 4/12, "feet"),
  40069. default: true
  40070. },
  40071. ]
  40072. ))
  40073. characterMakers.push(() => makeCharacter(
  40074. { name: "October", species: ["tiger"], tags: ["anthro"] },
  40075. {
  40076. front: {
  40077. height: math.unit(5 + 5/12, "feet"),
  40078. weight: math.unit(180, "lb"),
  40079. name: "Front",
  40080. image: {
  40081. source: "./media/characters/october/front.svg",
  40082. extra: 1800/1650,
  40083. bottom: 0/1800
  40084. }
  40085. },
  40086. frontNsfw: {
  40087. height: math.unit(5 + 5/12, "feet"),
  40088. weight: math.unit(180, "lb"),
  40089. name: "Front (NSFW)",
  40090. image: {
  40091. source: "./media/characters/october/front-nsfw.svg",
  40092. extra: 1392/1307,
  40093. bottom: 42/1434
  40094. }
  40095. },
  40096. },
  40097. [
  40098. {
  40099. name: "Normal",
  40100. height: math.unit(5 + 5/12, "feet"),
  40101. default: true
  40102. },
  40103. ]
  40104. ))
  40105. characterMakers.push(() => makeCharacter(
  40106. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  40107. {
  40108. front: {
  40109. height: math.unit(8 + 6/12, "feet"),
  40110. name: "Front",
  40111. image: {
  40112. source: "./media/characters/essynkardi/front.svg",
  40113. extra: 1541/1457,
  40114. bottom: 47/1588
  40115. }
  40116. },
  40117. },
  40118. [
  40119. {
  40120. name: "Normal",
  40121. height: math.unit(8 + 6/12, "feet"),
  40122. default: true
  40123. },
  40124. ]
  40125. ))
  40126. characterMakers.push(() => makeCharacter(
  40127. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  40128. {
  40129. front: {
  40130. height: math.unit(6 + 6/12, "feet"),
  40131. weight: math.unit(7, "lb"),
  40132. name: "Front",
  40133. image: {
  40134. source: "./media/characters/icky/front.svg",
  40135. extra: 813/782,
  40136. bottom: 66/879
  40137. }
  40138. },
  40139. back: {
  40140. height: math.unit(6 + 6/12, "feet"),
  40141. weight: math.unit(7, "lb"),
  40142. name: "Back",
  40143. image: {
  40144. source: "./media/characters/icky/back.svg",
  40145. extra: 754/735,
  40146. bottom: 56/810
  40147. }
  40148. },
  40149. },
  40150. [
  40151. {
  40152. name: "Normal",
  40153. height: math.unit(6 + 6/12, "feet"),
  40154. default: true
  40155. },
  40156. ]
  40157. ))
  40158. characterMakers.push(() => makeCharacter(
  40159. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  40160. {
  40161. front: {
  40162. height: math.unit(15, "feet"),
  40163. name: "Front",
  40164. image: {
  40165. source: "./media/characters/rojas/front.svg",
  40166. extra: 1462/1408,
  40167. bottom: 95/1557
  40168. }
  40169. },
  40170. back: {
  40171. height: math.unit(15, "feet"),
  40172. name: "Back",
  40173. image: {
  40174. source: "./media/characters/rojas/back.svg",
  40175. extra: 1023/954,
  40176. bottom: 28/1051
  40177. }
  40178. },
  40179. },
  40180. [
  40181. {
  40182. name: "Normal",
  40183. height: math.unit(15, "feet"),
  40184. default: true
  40185. },
  40186. ]
  40187. ))
  40188. characterMakers.push(() => makeCharacter(
  40189. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40190. {
  40191. frontHuman: {
  40192. height: math.unit(5 + 7/12, "feet"),
  40193. name: "Front (Human)",
  40194. image: {
  40195. source: "./media/characters/alek-dryagan/front-human.svg",
  40196. extra: 1687/1667,
  40197. bottom: 69/1756
  40198. }
  40199. },
  40200. backHuman: {
  40201. height: math.unit(5 + 7/12, "feet"),
  40202. name: "Back (Human)",
  40203. image: {
  40204. source: "./media/characters/alek-dryagan/back-human.svg",
  40205. extra: 1670/1649,
  40206. bottom: 65/1735
  40207. }
  40208. },
  40209. frontDemi: {
  40210. height: math.unit(65, "feet"),
  40211. name: "Front (Demi)",
  40212. image: {
  40213. source: "./media/characters/alek-dryagan/front-demi.svg",
  40214. extra: 1669/1642,
  40215. bottom: 49/1718
  40216. }
  40217. },
  40218. backDemi: {
  40219. height: math.unit(65, "feet"),
  40220. name: "Back (Demi)",
  40221. image: {
  40222. source: "./media/characters/alek-dryagan/back-demi.svg",
  40223. extra: 1658/1637,
  40224. bottom: 40/1698
  40225. }
  40226. },
  40227. mawHuman: {
  40228. height: math.unit(0.3, "feet"),
  40229. name: "Maw (Human)",
  40230. image: {
  40231. source: "./media/characters/alek-dryagan/maw-human.svg"
  40232. }
  40233. },
  40234. mawDemi: {
  40235. height: math.unit(3.8, "feet"),
  40236. name: "Maw (Demi)",
  40237. image: {
  40238. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40239. }
  40240. },
  40241. },
  40242. [
  40243. {
  40244. name: "Normal",
  40245. height: math.unit(5 + 7/12, "feet"),
  40246. default: true
  40247. },
  40248. ]
  40249. ))
  40250. characterMakers.push(() => makeCharacter(
  40251. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40252. {
  40253. frontHuman: {
  40254. height: math.unit(5 + 2/12, "feet"),
  40255. name: "Front (Human)",
  40256. image: {
  40257. source: "./media/characters/gen/front-human.svg",
  40258. extra: 1627/1538,
  40259. bottom: 71/1698
  40260. }
  40261. },
  40262. backHuman: {
  40263. height: math.unit(5 + 2/12, "feet"),
  40264. name: "Back (Human)",
  40265. image: {
  40266. source: "./media/characters/gen/back-human.svg",
  40267. extra: 1638/1548,
  40268. bottom: 69/1707
  40269. }
  40270. },
  40271. frontDemi: {
  40272. height: math.unit(5 + 2/12, "feet"),
  40273. name: "Front (Demi)",
  40274. image: {
  40275. source: "./media/characters/gen/front-demi.svg",
  40276. extra: 1627/1538,
  40277. bottom: 71/1698
  40278. }
  40279. },
  40280. backDemi: {
  40281. height: math.unit(5 + 2/12, "feet"),
  40282. name: "Back (Demi)",
  40283. image: {
  40284. source: "./media/characters/gen/back-demi.svg",
  40285. extra: 1638/1548,
  40286. bottom: 69/1707
  40287. }
  40288. },
  40289. },
  40290. [
  40291. {
  40292. name: "Normal",
  40293. height: math.unit(5 + 2/12, "feet"),
  40294. default: true
  40295. },
  40296. ]
  40297. ))
  40298. characterMakers.push(() => makeCharacter(
  40299. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40300. {
  40301. frontImp: {
  40302. height: math.unit(1 + 11/12, "feet"),
  40303. name: "Front (Imp)",
  40304. image: {
  40305. source: "./media/characters/max-kobold/front-imp.svg",
  40306. extra: 1238/1134,
  40307. bottom: 81/1319
  40308. }
  40309. },
  40310. backImp: {
  40311. height: math.unit(1 + 11/12, "feet"),
  40312. name: "Back (Imp)",
  40313. image: {
  40314. source: "./media/characters/max-kobold/back-imp.svg",
  40315. extra: 1334/1175,
  40316. bottom: 34/1368
  40317. }
  40318. },
  40319. frontDemi: {
  40320. height: math.unit(5 + 9/12, "feet"),
  40321. name: "Front (Demi)",
  40322. image: {
  40323. source: "./media/characters/max-kobold/front-demi.svg",
  40324. extra: 1715/1685,
  40325. bottom: 54/1769
  40326. }
  40327. },
  40328. backDemi: {
  40329. height: math.unit(5 + 9/12, "feet"),
  40330. name: "Back (Demi)",
  40331. image: {
  40332. source: "./media/characters/max-kobold/back-demi.svg",
  40333. extra: 1752/1729,
  40334. bottom: 41/1793
  40335. }
  40336. },
  40337. handImp: {
  40338. height: math.unit(0.45, "feet"),
  40339. name: "Hand (Imp)",
  40340. image: {
  40341. source: "./media/characters/max-kobold/hand.svg"
  40342. }
  40343. },
  40344. pawImp: {
  40345. height: math.unit(0.46, "feet"),
  40346. name: "Paw (Imp)",
  40347. image: {
  40348. source: "./media/characters/max-kobold/paw.svg"
  40349. }
  40350. },
  40351. handDemi: {
  40352. height: math.unit(0.80, "feet"),
  40353. name: "Hand (Demi)",
  40354. image: {
  40355. source: "./media/characters/max-kobold/hand.svg"
  40356. }
  40357. },
  40358. pawDemi: {
  40359. height: math.unit(1.1, "feet"),
  40360. name: "Paw (Demi)",
  40361. image: {
  40362. source: "./media/characters/max-kobold/paw.svg"
  40363. }
  40364. },
  40365. headImp: {
  40366. height: math.unit(1.33, "feet"),
  40367. name: "Head (Imp)",
  40368. image: {
  40369. source: "./media/characters/max-kobold/head-imp.svg"
  40370. }
  40371. },
  40372. mawImp: {
  40373. height: math.unit(0.75, "feet"),
  40374. name: "Maw (Imp)",
  40375. image: {
  40376. source: "./media/characters/max-kobold/maw-imp.svg"
  40377. }
  40378. },
  40379. mawDemi: {
  40380. height: math.unit(0.42, "feet"),
  40381. name: "Maw (Demi)",
  40382. image: {
  40383. source: "./media/characters/max-kobold/maw-demi.svg"
  40384. }
  40385. },
  40386. },
  40387. [
  40388. {
  40389. name: "Normal",
  40390. height: math.unit(1 + 11/12, "feet"),
  40391. default: true
  40392. },
  40393. ]
  40394. ))
  40395. characterMakers.push(() => makeCharacter(
  40396. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40397. {
  40398. front: {
  40399. height: math.unit(7 + 5/12, "feet"),
  40400. name: "Front",
  40401. image: {
  40402. source: "./media/characters/carbon/front.svg",
  40403. extra: 1754/1689,
  40404. bottom: 65/1819
  40405. }
  40406. },
  40407. back: {
  40408. height: math.unit(7 + 5/12, "feet"),
  40409. name: "Back",
  40410. image: {
  40411. source: "./media/characters/carbon/back.svg",
  40412. extra: 1762/1695,
  40413. bottom: 24/1786
  40414. }
  40415. },
  40416. frontGigantamax: {
  40417. height: math.unit(150, "feet"),
  40418. name: "Front (Gigantamax)",
  40419. image: {
  40420. source: "./media/characters/carbon/front-gigantamax.svg",
  40421. extra: 1826/1669,
  40422. bottom: 59/1885
  40423. }
  40424. },
  40425. backGigantamax: {
  40426. height: math.unit(150, "feet"),
  40427. name: "Back (Gigantamax)",
  40428. image: {
  40429. source: "./media/characters/carbon/back-gigantamax.svg",
  40430. extra: 1796/1653,
  40431. bottom: 53/1849
  40432. }
  40433. },
  40434. maw: {
  40435. height: math.unit(0.48, "feet"),
  40436. name: "Maw",
  40437. image: {
  40438. source: "./media/characters/carbon/maw.svg"
  40439. }
  40440. },
  40441. mawGigantamax: {
  40442. height: math.unit(7.5, "feet"),
  40443. name: "Maw (Gigantamax)",
  40444. image: {
  40445. source: "./media/characters/carbon/maw-gigantamax.svg"
  40446. }
  40447. },
  40448. },
  40449. [
  40450. {
  40451. name: "Normal",
  40452. height: math.unit(7 + 5/12, "feet"),
  40453. default: true
  40454. },
  40455. ]
  40456. ))
  40457. characterMakers.push(() => makeCharacter(
  40458. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40459. {
  40460. front: {
  40461. height: math.unit(6, "feet"),
  40462. name: "Front",
  40463. image: {
  40464. source: "./media/characters/maverick/front.svg",
  40465. extra: 1672/1661,
  40466. bottom: 85/1757
  40467. }
  40468. },
  40469. back: {
  40470. height: math.unit(6, "feet"),
  40471. name: "Back",
  40472. image: {
  40473. source: "./media/characters/maverick/back.svg",
  40474. extra: 1642/1631,
  40475. bottom: 38/1680
  40476. }
  40477. },
  40478. },
  40479. [
  40480. {
  40481. name: "Normal",
  40482. height: math.unit(6, "feet"),
  40483. default: true
  40484. },
  40485. ]
  40486. ))
  40487. characterMakers.push(() => makeCharacter(
  40488. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40489. {
  40490. front: {
  40491. height: math.unit(15, "feet"),
  40492. weight: math.unit(615, "lb"),
  40493. name: "Front",
  40494. image: {
  40495. source: "./media/characters/grockle/front.svg",
  40496. extra: 1535/1427,
  40497. bottom: 56/1591
  40498. }
  40499. },
  40500. },
  40501. [
  40502. {
  40503. name: "Normal",
  40504. height: math.unit(15, "feet"),
  40505. default: true
  40506. },
  40507. {
  40508. name: "Large",
  40509. height: math.unit(150, "feet")
  40510. },
  40511. {
  40512. name: "Macro",
  40513. height: math.unit(1876, "feet")
  40514. },
  40515. {
  40516. name: "Mega Macro",
  40517. height: math.unit(121940, "feet")
  40518. },
  40519. {
  40520. name: "Giga Macro",
  40521. height: math.unit(750, "km")
  40522. },
  40523. {
  40524. name: "Tera Macro",
  40525. height: math.unit(750000, "km")
  40526. },
  40527. {
  40528. name: "Galactic",
  40529. height: math.unit(1.4e5, "km")
  40530. },
  40531. {
  40532. name: "Godlike",
  40533. height: math.unit(9.8e280, "galaxies")
  40534. },
  40535. ]
  40536. ))
  40537. characterMakers.push(() => makeCharacter(
  40538. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40539. {
  40540. front: {
  40541. height: math.unit(11, "meters"),
  40542. weight: math.unit(20, "tonnes"),
  40543. name: "Front",
  40544. image: {
  40545. source: "./media/characters/alistair/front.svg",
  40546. extra: 1265/1009,
  40547. bottom: 93/1358
  40548. }
  40549. },
  40550. },
  40551. [
  40552. {
  40553. name: "Normal",
  40554. height: math.unit(11, "meters"),
  40555. default: true
  40556. },
  40557. ]
  40558. ))
  40559. characterMakers.push(() => makeCharacter(
  40560. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40561. {
  40562. front: {
  40563. height: math.unit(5 + 8/12, "feet"),
  40564. name: "Front",
  40565. image: {
  40566. source: "./media/characters/haruka/front.svg",
  40567. extra: 2012/1952,
  40568. bottom: 0/2012
  40569. }
  40570. },
  40571. },
  40572. [
  40573. {
  40574. name: "Normal",
  40575. height: math.unit(5 + 8/12, "feet"),
  40576. default: true
  40577. },
  40578. ]
  40579. ))
  40580. characterMakers.push(() => makeCharacter(
  40581. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40582. {
  40583. back: {
  40584. height: math.unit(9, "feet"),
  40585. name: "Back",
  40586. image: {
  40587. source: "./media/characters/vivian-sylveon/back.svg",
  40588. extra: 1853/1714,
  40589. bottom: 0/1853
  40590. }
  40591. },
  40592. hyper: {
  40593. height: math.unit(5.58, "feet"),
  40594. name: "Hyper",
  40595. preyCapacity: math.unit(2.80616218797, "m^3"),
  40596. image: {
  40597. source: "./media/characters/vivian-sylveon/hyper.svg",
  40598. extra: 999/676,
  40599. bottom: 697/1696
  40600. },
  40601. },
  40602. paw: {
  40603. height: math.unit(1.8, "feet"),
  40604. name: "Paw",
  40605. image: {
  40606. source: "./media/characters/vivian-sylveon/paw.svg"
  40607. }
  40608. },
  40609. danger: {
  40610. height: math.unit(7.5, "feet"),
  40611. name: "DANGER",
  40612. image: {
  40613. source: "./media/characters/vivian-sylveon/danger.svg"
  40614. }
  40615. },
  40616. },
  40617. [
  40618. {
  40619. name: "Normal",
  40620. height: math.unit(10, "feet"),
  40621. default: true
  40622. },
  40623. {
  40624. name: "Macro",
  40625. height: math.unit(500, "feet")
  40626. },
  40627. {
  40628. name: "Megamacro",
  40629. height: math.unit(600, "miles")
  40630. },
  40631. {
  40632. name: "Gigamacro",
  40633. height: math.unit(30000, "miles")
  40634. },
  40635. ]
  40636. ))
  40637. characterMakers.push(() => makeCharacter(
  40638. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40639. {
  40640. anthro: {
  40641. height: math.unit(5 + 10/12, "feet"),
  40642. weight: math.unit(100, "lb"),
  40643. name: "Anthro",
  40644. image: {
  40645. source: "./media/characters/daiki/anthro.svg",
  40646. extra: 1115/1027,
  40647. bottom: 69/1184
  40648. }
  40649. },
  40650. feral: {
  40651. height: math.unit(200, "feet"),
  40652. name: "Feral",
  40653. image: {
  40654. source: "./media/characters/daiki/feral.svg",
  40655. extra: 1256/313,
  40656. bottom: 39/1295
  40657. }
  40658. },
  40659. feralHead: {
  40660. height: math.unit(171, "feet"),
  40661. name: "Feral Head",
  40662. image: {
  40663. source: "./media/characters/daiki/feral-head.svg"
  40664. }
  40665. },
  40666. manaDragon: {
  40667. height: math.unit(170, "meters"),
  40668. name: "Mana Dragon",
  40669. image: {
  40670. source: "./media/characters/daiki/mana-dragon.svg",
  40671. extra: 763/420,
  40672. bottom: 97/860
  40673. }
  40674. },
  40675. },
  40676. [
  40677. {
  40678. name: "Normal",
  40679. height: math.unit(5 + 10/12, "feet"),
  40680. default: true
  40681. },
  40682. ]
  40683. ))
  40684. characterMakers.push(() => makeCharacter(
  40685. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40686. {
  40687. fullyEquippedFront: {
  40688. height: math.unit(3 + 1/12, "feet"),
  40689. weight: math.unit(24, "lb"),
  40690. name: "Fully Equipped (Front)",
  40691. image: {
  40692. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40693. extra: 687/605,
  40694. bottom: 18/705
  40695. }
  40696. },
  40697. fullyEquippedBack: {
  40698. height: math.unit(3 + 1/12, "feet"),
  40699. weight: math.unit(24, "lb"),
  40700. name: "Fully Equipped (Back)",
  40701. image: {
  40702. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40703. extra: 689/590,
  40704. bottom: 18/707
  40705. }
  40706. },
  40707. dailyWear: {
  40708. height: math.unit(3 + 1/12, "feet"),
  40709. weight: math.unit(24, "lb"),
  40710. name: "Daily Wear",
  40711. image: {
  40712. source: "./media/characters/tea-spot/daily-wear.svg",
  40713. extra: 701/620,
  40714. bottom: 21/722
  40715. }
  40716. },
  40717. maidWork: {
  40718. height: math.unit(3 + 1/12, "feet"),
  40719. weight: math.unit(24, "lb"),
  40720. name: "Maid Work",
  40721. image: {
  40722. source: "./media/characters/tea-spot/maid-work.svg",
  40723. extra: 693/609,
  40724. bottom: 15/708
  40725. }
  40726. },
  40727. },
  40728. [
  40729. {
  40730. name: "Normal",
  40731. height: math.unit(3 + 1/12, "feet"),
  40732. default: true
  40733. },
  40734. ]
  40735. ))
  40736. characterMakers.push(() => makeCharacter(
  40737. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40738. {
  40739. front: {
  40740. height: math.unit(175, "cm"),
  40741. weight: math.unit(75, "kg"),
  40742. name: "Front",
  40743. image: {
  40744. source: "./media/characters/chee/front.svg",
  40745. extra: 1796/1740,
  40746. bottom: 40/1836
  40747. }
  40748. },
  40749. },
  40750. [
  40751. {
  40752. name: "Micro-Micro",
  40753. height: math.unit(1, "nm")
  40754. },
  40755. {
  40756. name: "Micro-erst",
  40757. height: math.unit(1, "micrometer")
  40758. },
  40759. {
  40760. name: "Micro-er",
  40761. height: math.unit(1, "cm")
  40762. },
  40763. {
  40764. name: "Normal",
  40765. height: math.unit(175, "cm"),
  40766. default: true
  40767. },
  40768. {
  40769. name: "Macro",
  40770. height: math.unit(100, "m")
  40771. },
  40772. {
  40773. name: "Macro-er",
  40774. height: math.unit(1, "km")
  40775. },
  40776. {
  40777. name: "Macro-erst",
  40778. height: math.unit(10, "km")
  40779. },
  40780. {
  40781. name: "Macro-Macro",
  40782. height: math.unit(100, "km")
  40783. },
  40784. ]
  40785. ))
  40786. characterMakers.push(() => makeCharacter(
  40787. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40788. {
  40789. front: {
  40790. height: math.unit(11 + 9/12, "feet"),
  40791. weight: math.unit(935, "lb"),
  40792. name: "Front",
  40793. image: {
  40794. source: "./media/characters/kingsley/front.svg",
  40795. extra: 1803/1674,
  40796. bottom: 127/1930
  40797. }
  40798. },
  40799. frontNude: {
  40800. height: math.unit(11 + 9/12, "feet"),
  40801. weight: math.unit(935, "lb"),
  40802. name: "Front (Nude)",
  40803. image: {
  40804. source: "./media/characters/kingsley/front-nude.svg",
  40805. extra: 1803/1674,
  40806. bottom: 127/1930
  40807. }
  40808. },
  40809. },
  40810. [
  40811. {
  40812. name: "Normal",
  40813. height: math.unit(11 + 9/12, "feet"),
  40814. default: true
  40815. },
  40816. ]
  40817. ))
  40818. characterMakers.push(() => makeCharacter(
  40819. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40820. {
  40821. side: {
  40822. height: math.unit(9, "feet"),
  40823. name: "Side",
  40824. image: {
  40825. source: "./media/characters/rymel/side.svg",
  40826. extra: 792/469,
  40827. bottom: 121/913
  40828. }
  40829. },
  40830. maw: {
  40831. height: math.unit(2.4, "meters"),
  40832. name: "Maw",
  40833. image: {
  40834. source: "./media/characters/rymel/maw.svg"
  40835. }
  40836. },
  40837. },
  40838. [
  40839. {
  40840. name: "House Drake",
  40841. height: math.unit(2, "feet")
  40842. },
  40843. {
  40844. name: "Reduced",
  40845. height: math.unit(4.5, "feet")
  40846. },
  40847. {
  40848. name: "Normal",
  40849. height: math.unit(9, "feet"),
  40850. default: true
  40851. },
  40852. ]
  40853. ))
  40854. characterMakers.push(() => makeCharacter(
  40855. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40856. {
  40857. front: {
  40858. height: math.unit(1.74, "meters"),
  40859. weight: math.unit(55, "kg"),
  40860. name: "Front",
  40861. image: {
  40862. source: "./media/characters/rubus/front.svg",
  40863. extra: 1894/1742,
  40864. bottom: 44/1938
  40865. }
  40866. },
  40867. },
  40868. [
  40869. {
  40870. name: "Normal",
  40871. height: math.unit(1.74, "meters"),
  40872. default: true
  40873. },
  40874. ]
  40875. ))
  40876. characterMakers.push(() => makeCharacter(
  40877. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40878. {
  40879. front: {
  40880. height: math.unit(5 + 2/12, "feet"),
  40881. weight: math.unit(112, "lb"),
  40882. name: "Front",
  40883. image: {
  40884. source: "./media/characters/cassie-kingston/front.svg",
  40885. extra: 1438/1390,
  40886. bottom: 47/1485
  40887. }
  40888. },
  40889. },
  40890. [
  40891. {
  40892. name: "Normal",
  40893. height: math.unit(5 + 2/12, "feet"),
  40894. default: true
  40895. },
  40896. {
  40897. name: "Macro",
  40898. height: math.unit(128, "feet")
  40899. },
  40900. {
  40901. name: "Megamacro",
  40902. height: math.unit(2.56, "miles")
  40903. },
  40904. ]
  40905. ))
  40906. characterMakers.push(() => makeCharacter(
  40907. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40908. {
  40909. front: {
  40910. height: math.unit(7, "feet"),
  40911. name: "Front",
  40912. image: {
  40913. source: "./media/characters/fox/front.svg",
  40914. extra: 1798/1703,
  40915. bottom: 55/1853
  40916. }
  40917. },
  40918. back: {
  40919. height: math.unit(7, "feet"),
  40920. name: "Back",
  40921. image: {
  40922. source: "./media/characters/fox/back.svg",
  40923. extra: 1748/1649,
  40924. bottom: 32/1780
  40925. }
  40926. },
  40927. head: {
  40928. height: math.unit(1.95, "feet"),
  40929. name: "Head",
  40930. image: {
  40931. source: "./media/characters/fox/head.svg"
  40932. }
  40933. },
  40934. dick: {
  40935. height: math.unit(1.33, "feet"),
  40936. name: "Dick",
  40937. image: {
  40938. source: "./media/characters/fox/dick.svg"
  40939. }
  40940. },
  40941. foot: {
  40942. height: math.unit(1, "feet"),
  40943. name: "Foot",
  40944. image: {
  40945. source: "./media/characters/fox/foot.svg"
  40946. }
  40947. },
  40948. paw: {
  40949. height: math.unit(0.92, "feet"),
  40950. name: "Paw",
  40951. image: {
  40952. source: "./media/characters/fox/paw.svg"
  40953. }
  40954. },
  40955. },
  40956. [
  40957. {
  40958. name: "Small",
  40959. height: math.unit(3, "inches")
  40960. },
  40961. {
  40962. name: "\"Realistic\"",
  40963. height: math.unit(7, "feet")
  40964. },
  40965. {
  40966. name: "Normal",
  40967. height: math.unit(150, "feet"),
  40968. default: true
  40969. },
  40970. {
  40971. name: "BIG",
  40972. height: math.unit(1200, "feet")
  40973. },
  40974. {
  40975. name: "👀",
  40976. height: math.unit(5, "miles")
  40977. },
  40978. {
  40979. name: "👀👀👀",
  40980. height: math.unit(64, "miles")
  40981. },
  40982. ]
  40983. ))
  40984. characterMakers.push(() => makeCharacter(
  40985. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40986. {
  40987. front: {
  40988. height: math.unit(625, "feet"),
  40989. name: "Front",
  40990. image: {
  40991. source: "./media/characters/asonja-rossa/front.svg",
  40992. extra: 1833/1686,
  40993. bottom: 24/1857
  40994. }
  40995. },
  40996. back: {
  40997. height: math.unit(625, "feet"),
  40998. name: "Back",
  40999. image: {
  41000. source: "./media/characters/asonja-rossa/back.svg",
  41001. extra: 1852/1753,
  41002. bottom: 26/1878
  41003. }
  41004. },
  41005. },
  41006. [
  41007. {
  41008. name: "Macro",
  41009. height: math.unit(625, "feet"),
  41010. default: true
  41011. },
  41012. ]
  41013. ))
  41014. characterMakers.push(() => makeCharacter(
  41015. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  41016. {
  41017. side: {
  41018. height: math.unit(8, "feet"),
  41019. name: "Side",
  41020. image: {
  41021. source: "./media/characters/rezukii/side.svg",
  41022. extra: 979/542,
  41023. bottom: 87/1066
  41024. }
  41025. },
  41026. sitting: {
  41027. height: math.unit(14.6, "feet"),
  41028. name: "Sitting",
  41029. image: {
  41030. source: "./media/characters/rezukii/sitting.svg",
  41031. extra: 1023/813,
  41032. bottom: 45/1068
  41033. }
  41034. },
  41035. },
  41036. [
  41037. {
  41038. name: "Tiny",
  41039. height: math.unit(2, "feet")
  41040. },
  41041. {
  41042. name: "Smol",
  41043. height: math.unit(4, "feet")
  41044. },
  41045. {
  41046. name: "Normal",
  41047. height: math.unit(8, "feet"),
  41048. default: true
  41049. },
  41050. {
  41051. name: "Big",
  41052. height: math.unit(12, "feet")
  41053. },
  41054. {
  41055. name: "Macro",
  41056. height: math.unit(30, "feet")
  41057. },
  41058. ]
  41059. ))
  41060. characterMakers.push(() => makeCharacter(
  41061. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  41062. {
  41063. front: {
  41064. height: math.unit(14, "feet"),
  41065. weight: math.unit(9.5, "tonnes"),
  41066. name: "Front",
  41067. image: {
  41068. source: "./media/characters/dawnheart/front.svg",
  41069. extra: 2792/2675,
  41070. bottom: 64/2856
  41071. }
  41072. },
  41073. },
  41074. [
  41075. {
  41076. name: "Normal",
  41077. height: math.unit(14, "feet"),
  41078. default: true
  41079. },
  41080. ]
  41081. ))
  41082. characterMakers.push(() => makeCharacter(
  41083. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  41084. {
  41085. front: {
  41086. height: math.unit(1.7, "m"),
  41087. name: "Front",
  41088. image: {
  41089. source: "./media/characters/gladi/front.svg",
  41090. extra: 1460/1362,
  41091. bottom: 19/1479
  41092. }
  41093. },
  41094. back: {
  41095. height: math.unit(1.7, "m"),
  41096. name: "Back",
  41097. image: {
  41098. source: "./media/characters/gladi/back.svg",
  41099. extra: 1459/1357,
  41100. bottom: 12/1471
  41101. }
  41102. },
  41103. feral: {
  41104. height: math.unit(2.05, "m"),
  41105. name: "Feral",
  41106. image: {
  41107. source: "./media/characters/gladi/feral.svg",
  41108. extra: 821/557,
  41109. bottom: 91/912
  41110. }
  41111. },
  41112. },
  41113. [
  41114. {
  41115. name: "Shortest",
  41116. height: math.unit(70, "cm")
  41117. },
  41118. {
  41119. name: "Normal",
  41120. height: math.unit(1.7, "m")
  41121. },
  41122. {
  41123. name: "Macro",
  41124. height: math.unit(10, "m"),
  41125. default: true
  41126. },
  41127. {
  41128. name: "Tallest",
  41129. height: math.unit(200, "m")
  41130. },
  41131. ]
  41132. ))
  41133. characterMakers.push(() => makeCharacter(
  41134. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  41135. {
  41136. front: {
  41137. height: math.unit(5 + 7/12, "feet"),
  41138. weight: math.unit(2, "tons"),
  41139. name: "Front",
  41140. image: {
  41141. source: "./media/characters/erdno/front.svg",
  41142. extra: 1234/1129,
  41143. bottom: 35/1269
  41144. }
  41145. },
  41146. angled: {
  41147. height: math.unit(5 + 7/12, "feet"),
  41148. weight: math.unit(2, "tons"),
  41149. name: "Angled",
  41150. image: {
  41151. source: "./media/characters/erdno/angled.svg",
  41152. extra: 1185/1139,
  41153. bottom: 36/1221
  41154. }
  41155. },
  41156. side: {
  41157. height: math.unit(5 + 7/12, "feet"),
  41158. weight: math.unit(2, "tons"),
  41159. name: "Side",
  41160. image: {
  41161. source: "./media/characters/erdno/side.svg",
  41162. extra: 1191/1144,
  41163. bottom: 40/1231
  41164. }
  41165. },
  41166. back: {
  41167. height: math.unit(5 + 7/12, "feet"),
  41168. weight: math.unit(2, "tons"),
  41169. name: "Back",
  41170. image: {
  41171. source: "./media/characters/erdno/back.svg",
  41172. extra: 1202/1146,
  41173. bottom: 17/1219
  41174. }
  41175. },
  41176. frontNsfw: {
  41177. height: math.unit(5 + 7/12, "feet"),
  41178. weight: math.unit(2, "tons"),
  41179. name: "Front (NSFW)",
  41180. image: {
  41181. source: "./media/characters/erdno/front-nsfw.svg",
  41182. extra: 1234/1129,
  41183. bottom: 35/1269
  41184. }
  41185. },
  41186. angledNsfw: {
  41187. height: math.unit(5 + 7/12, "feet"),
  41188. weight: math.unit(2, "tons"),
  41189. name: "Angled (NSFW)",
  41190. image: {
  41191. source: "./media/characters/erdno/angled-nsfw.svg",
  41192. extra: 1185/1139,
  41193. bottom: 36/1221
  41194. }
  41195. },
  41196. sideNsfw: {
  41197. height: math.unit(5 + 7/12, "feet"),
  41198. weight: math.unit(2, "tons"),
  41199. name: "Side (NSFW)",
  41200. image: {
  41201. source: "./media/characters/erdno/side-nsfw.svg",
  41202. extra: 1191/1144,
  41203. bottom: 40/1231
  41204. }
  41205. },
  41206. backNsfw: {
  41207. height: math.unit(5 + 7/12, "feet"),
  41208. weight: math.unit(2, "tons"),
  41209. name: "Back (NSFW)",
  41210. image: {
  41211. source: "./media/characters/erdno/back-nsfw.svg",
  41212. extra: 1202/1146,
  41213. bottom: 17/1219
  41214. }
  41215. },
  41216. frontHyper: {
  41217. height: math.unit(5 + 7/12, "feet"),
  41218. weight: math.unit(2, "tons"),
  41219. name: "Front (Hyper)",
  41220. image: {
  41221. source: "./media/characters/erdno/front-hyper.svg",
  41222. extra: 1298/1136,
  41223. bottom: 35/1333
  41224. }
  41225. },
  41226. },
  41227. [
  41228. {
  41229. name: "Normal",
  41230. height: math.unit(5 + 7/12, "feet"),
  41231. default: true
  41232. },
  41233. {
  41234. name: "Big",
  41235. height: math.unit(5.7, "meters")
  41236. },
  41237. {
  41238. name: "Macro",
  41239. height: math.unit(5.7, "kilometers")
  41240. },
  41241. {
  41242. name: "Megamacro",
  41243. height: math.unit(5.7, "earths")
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41249. {
  41250. front: {
  41251. height: math.unit(5 + 10/12, "feet"),
  41252. weight: math.unit(150, "lb"),
  41253. name: "Front",
  41254. image: {
  41255. source: "./media/characters/jamie/front.svg",
  41256. extra: 1908/1768,
  41257. bottom: 19/1927
  41258. }
  41259. },
  41260. },
  41261. [
  41262. {
  41263. name: "Minimum",
  41264. height: math.unit(2, "cm")
  41265. },
  41266. {
  41267. name: "Micro",
  41268. height: math.unit(3, "inches")
  41269. },
  41270. {
  41271. name: "Normal",
  41272. height: math.unit(5 + 10/12, "feet"),
  41273. default: true
  41274. },
  41275. {
  41276. name: "Macro",
  41277. height: math.unit(150, "feet")
  41278. },
  41279. {
  41280. name: "Megamacro",
  41281. height: math.unit(10000, "m")
  41282. },
  41283. ]
  41284. ))
  41285. characterMakers.push(() => makeCharacter(
  41286. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41287. {
  41288. front: {
  41289. height: math.unit(2, "meters"),
  41290. weight: math.unit(100, "kg"),
  41291. name: "Front",
  41292. image: {
  41293. source: "./media/characters/shiron/front.svg",
  41294. extra: 2103/1985,
  41295. bottom: 98/2201
  41296. }
  41297. },
  41298. back: {
  41299. height: math.unit(2, "meters"),
  41300. weight: math.unit(100, "kg"),
  41301. name: "Back",
  41302. image: {
  41303. source: "./media/characters/shiron/back.svg",
  41304. extra: 2110/2015,
  41305. bottom: 89/2199
  41306. }
  41307. },
  41308. hand: {
  41309. height: math.unit(0.96, "feet"),
  41310. name: "Hand",
  41311. image: {
  41312. source: "./media/characters/shiron/hand.svg"
  41313. }
  41314. },
  41315. foot: {
  41316. height: math.unit(1.464, "feet"),
  41317. name: "Foot",
  41318. image: {
  41319. source: "./media/characters/shiron/foot.svg"
  41320. }
  41321. },
  41322. },
  41323. [
  41324. {
  41325. name: "Normal",
  41326. height: math.unit(2, "meters")
  41327. },
  41328. {
  41329. name: "Macro",
  41330. height: math.unit(500, "meters"),
  41331. default: true
  41332. },
  41333. {
  41334. name: "Megamacro",
  41335. height: math.unit(20, "km")
  41336. },
  41337. ]
  41338. ))
  41339. characterMakers.push(() => makeCharacter(
  41340. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41341. {
  41342. front: {
  41343. height: math.unit(6, "feet"),
  41344. name: "Front",
  41345. image: {
  41346. source: "./media/characters/sam/front.svg",
  41347. extra: 849/826,
  41348. bottom: 19/868
  41349. }
  41350. },
  41351. },
  41352. [
  41353. {
  41354. name: "Normal",
  41355. height: math.unit(6, "feet"),
  41356. default: true
  41357. },
  41358. ]
  41359. ))
  41360. characterMakers.push(() => makeCharacter(
  41361. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41362. {
  41363. front: {
  41364. height: math.unit(8 + 4/12, "feet"),
  41365. weight: math.unit(122, "kg"),
  41366. name: "Front",
  41367. image: {
  41368. source: "./media/characters/namori-kurogawa/front.svg",
  41369. extra: 1894/1576,
  41370. bottom: 34/1928
  41371. }
  41372. },
  41373. },
  41374. [
  41375. {
  41376. name: "Normal",
  41377. height: math.unit(8 + 4/12, "feet"),
  41378. default: true
  41379. },
  41380. ]
  41381. ))
  41382. characterMakers.push(() => makeCharacter(
  41383. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41384. {
  41385. front: {
  41386. height: math.unit(9, "feet"),
  41387. weight: math.unit(621, "lb"),
  41388. name: "Front",
  41389. image: {
  41390. source: "./media/characters/unmru/front.svg",
  41391. extra: 1853/1747,
  41392. bottom: 73/1926
  41393. }
  41394. },
  41395. side: {
  41396. height: math.unit(9, "feet"),
  41397. weight: math.unit(621, "lb"),
  41398. name: "Side",
  41399. image: {
  41400. source: "./media/characters/unmru/side.svg",
  41401. extra: 1781/1671,
  41402. bottom: 127/1908
  41403. }
  41404. },
  41405. back: {
  41406. height: math.unit(9, "feet"),
  41407. weight: math.unit(621, "lb"),
  41408. name: "Back",
  41409. image: {
  41410. source: "./media/characters/unmru/back.svg",
  41411. extra: 1894/1765,
  41412. bottom: 75/1969
  41413. }
  41414. },
  41415. dick: {
  41416. height: math.unit(3, "feet"),
  41417. weight: math.unit(35, "lb"),
  41418. name: "Dick",
  41419. image: {
  41420. source: "./media/characters/unmru/dick.svg"
  41421. }
  41422. },
  41423. },
  41424. [
  41425. {
  41426. name: "Normal",
  41427. height: math.unit(9, "feet")
  41428. },
  41429. {
  41430. name: "Natural",
  41431. height: math.unit(27, "feet"),
  41432. default: true
  41433. },
  41434. {
  41435. name: "Giant",
  41436. height: math.unit(90, "feet")
  41437. },
  41438. {
  41439. name: "Kaiju",
  41440. height: math.unit(270, "feet")
  41441. },
  41442. {
  41443. name: "Macro",
  41444. height: math.unit(900, "feet")
  41445. },
  41446. {
  41447. name: "Macro+",
  41448. height: math.unit(2700, "feet")
  41449. },
  41450. {
  41451. name: "Megamacro",
  41452. height: math.unit(9000, "feet")
  41453. },
  41454. {
  41455. name: "City-Crushing",
  41456. height: math.unit(27000, "feet")
  41457. },
  41458. {
  41459. name: "Mountain-Mashing",
  41460. height: math.unit(90000, "feet")
  41461. },
  41462. {
  41463. name: "Earth-Eclipsing",
  41464. height: math.unit(2.7e8, "feet")
  41465. },
  41466. {
  41467. name: "Sol-Swallowing",
  41468. height: math.unit(9e10, "feet")
  41469. },
  41470. {
  41471. name: "Majoris-Munching",
  41472. height: math.unit(2.7e13, "feet")
  41473. },
  41474. ]
  41475. ))
  41476. characterMakers.push(() => makeCharacter(
  41477. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41478. {
  41479. front: {
  41480. height: math.unit(1, "inch"),
  41481. name: "Front",
  41482. image: {
  41483. source: "./media/characters/squeaks-mouse/front.svg",
  41484. extra: 352/308,
  41485. bottom: 25/377
  41486. }
  41487. },
  41488. },
  41489. [
  41490. {
  41491. name: "Micro",
  41492. height: math.unit(1, "inch"),
  41493. default: true
  41494. },
  41495. ]
  41496. ))
  41497. characterMakers.push(() => makeCharacter(
  41498. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41499. {
  41500. side: {
  41501. height: math.unit(35, "feet"),
  41502. name: "Side",
  41503. image: {
  41504. source: "./media/characters/sayko/side.svg",
  41505. extra: 1697/1021,
  41506. bottom: 82/1779
  41507. }
  41508. },
  41509. head: {
  41510. height: math.unit(16, "feet"),
  41511. name: "Head",
  41512. image: {
  41513. source: "./media/characters/sayko/head.svg"
  41514. }
  41515. },
  41516. forepaw: {
  41517. height: math.unit(7.85, "feet"),
  41518. name: "Forepaw",
  41519. image: {
  41520. source: "./media/characters/sayko/forepaw.svg"
  41521. }
  41522. },
  41523. hindpaw: {
  41524. height: math.unit(8.8, "feet"),
  41525. name: "Hindpaw",
  41526. image: {
  41527. source: "./media/characters/sayko/hindpaw.svg"
  41528. }
  41529. },
  41530. },
  41531. [
  41532. {
  41533. name: "Normal",
  41534. height: math.unit(35, "feet"),
  41535. default: true
  41536. },
  41537. {
  41538. name: "Colossus",
  41539. height: math.unit(100, "meters")
  41540. },
  41541. {
  41542. name: "\"Small\" Deity",
  41543. height: math.unit(1, "km")
  41544. },
  41545. {
  41546. name: "\"Large\" Deity",
  41547. height: math.unit(15, "km")
  41548. },
  41549. ]
  41550. ))
  41551. characterMakers.push(() => makeCharacter(
  41552. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41553. {
  41554. front: {
  41555. height: math.unit(6, "feet"),
  41556. weight: math.unit(250, "lb"),
  41557. name: "Front",
  41558. image: {
  41559. source: "./media/characters/mukiro/front.svg",
  41560. extra: 1368/1310,
  41561. bottom: 34/1402
  41562. }
  41563. },
  41564. },
  41565. [
  41566. {
  41567. name: "Normal",
  41568. height: math.unit(6, "feet"),
  41569. default: true
  41570. },
  41571. ]
  41572. ))
  41573. characterMakers.push(() => makeCharacter(
  41574. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41575. {
  41576. front: {
  41577. height: math.unit(12 + 4/12, "feet"),
  41578. name: "Front",
  41579. image: {
  41580. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41581. extra: 1346/1311,
  41582. bottom: 65/1411
  41583. }
  41584. },
  41585. },
  41586. [
  41587. {
  41588. name: "Base",
  41589. height: math.unit(12 + 4/12, "feet"),
  41590. default: true
  41591. },
  41592. {
  41593. name: "Macro",
  41594. height: math.unit(150, "feet")
  41595. },
  41596. {
  41597. name: "Mega",
  41598. height: math.unit(2, "miles")
  41599. },
  41600. {
  41601. name: "Demi God",
  41602. height: math.unit(4, "AU")
  41603. },
  41604. {
  41605. name: "God Size",
  41606. height: math.unit(1, "universe")
  41607. },
  41608. ]
  41609. ))
  41610. characterMakers.push(() => makeCharacter(
  41611. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41612. {
  41613. front: {
  41614. height: math.unit(3 + 3/12, "feet"),
  41615. weight: math.unit(88, "lb"),
  41616. name: "Front",
  41617. image: {
  41618. source: "./media/characters/trey/front.svg",
  41619. extra: 1815/1509,
  41620. bottom: 60/1875
  41621. }
  41622. },
  41623. },
  41624. [
  41625. {
  41626. name: "Normal",
  41627. height: math.unit(3 + 3/12, "feet"),
  41628. default: true
  41629. },
  41630. ]
  41631. ))
  41632. characterMakers.push(() => makeCharacter(
  41633. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41634. {
  41635. front: {
  41636. height: math.unit(4, "meters"),
  41637. name: "Front",
  41638. image: {
  41639. source: "./media/characters/adelonda/front.svg",
  41640. extra: 1077/982,
  41641. bottom: 39/1116
  41642. }
  41643. },
  41644. back: {
  41645. height: math.unit(4, "meters"),
  41646. name: "Back",
  41647. image: {
  41648. source: "./media/characters/adelonda/back.svg",
  41649. extra: 1105/1003,
  41650. bottom: 25/1130
  41651. }
  41652. },
  41653. feral: {
  41654. height: math.unit(40/1.5, "meters"),
  41655. name: "Feral",
  41656. image: {
  41657. source: "./media/characters/adelonda/feral.svg",
  41658. extra: 597/271,
  41659. bottom: 387/984
  41660. }
  41661. },
  41662. },
  41663. [
  41664. {
  41665. name: "Normal",
  41666. height: math.unit(4, "meters"),
  41667. default: true
  41668. },
  41669. ]
  41670. ))
  41671. characterMakers.push(() => makeCharacter(
  41672. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41673. {
  41674. front: {
  41675. height: math.unit(8 + 4/12, "feet"),
  41676. weight: math.unit(670, "lb"),
  41677. name: "Front",
  41678. image: {
  41679. source: "./media/characters/acadiel/front.svg",
  41680. extra: 1901/1595,
  41681. bottom: 142/2043
  41682. }
  41683. },
  41684. },
  41685. [
  41686. {
  41687. name: "Normal",
  41688. height: math.unit(8 + 4/12, "feet"),
  41689. default: true
  41690. },
  41691. {
  41692. name: "Macro",
  41693. height: math.unit(200, "feet")
  41694. },
  41695. ]
  41696. ))
  41697. characterMakers.push(() => makeCharacter(
  41698. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41699. {
  41700. front: {
  41701. height: math.unit(6 + 2/12, "feet"),
  41702. weight: math.unit(185, "lb"),
  41703. name: "Front",
  41704. image: {
  41705. source: "./media/characters/kayne-ein/front.svg",
  41706. extra: 1780/1560,
  41707. bottom: 81/1861
  41708. }
  41709. },
  41710. },
  41711. [
  41712. {
  41713. name: "Normal",
  41714. height: math.unit(6 + 2/12, "feet"),
  41715. default: true
  41716. },
  41717. {
  41718. name: "Transformation Stage",
  41719. height: math.unit(15, "feet")
  41720. },
  41721. {
  41722. name: "Macro",
  41723. height: math.unit(150, "feet")
  41724. },
  41725. {
  41726. name: "Earth's Shadow",
  41727. height: math.unit(6200, "miles")
  41728. },
  41729. {
  41730. name: "Universal Demon",
  41731. height: math.unit(28e9, "parsecs")
  41732. },
  41733. {
  41734. name: "Multiverse God",
  41735. height: math.unit(3, "multiverses")
  41736. },
  41737. ]
  41738. ))
  41739. characterMakers.push(() => makeCharacter(
  41740. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41741. {
  41742. front: {
  41743. height: math.unit(5 + 5/12, "feet"),
  41744. name: "Front",
  41745. image: {
  41746. source: "./media/characters/fawn/front.svg",
  41747. extra: 1873/1731,
  41748. bottom: 95/1968
  41749. }
  41750. },
  41751. back: {
  41752. height: math.unit(5 + 5/12, "feet"),
  41753. name: "Back",
  41754. image: {
  41755. source: "./media/characters/fawn/back.svg",
  41756. extra: 1813/1700,
  41757. bottom: 14/1827
  41758. }
  41759. },
  41760. hoof: {
  41761. height: math.unit(1.45, "feet"),
  41762. name: "Hoof",
  41763. image: {
  41764. source: "./media/characters/fawn/hoof.svg"
  41765. }
  41766. },
  41767. },
  41768. [
  41769. {
  41770. name: "Normal",
  41771. height: math.unit(5 + 5/12, "feet"),
  41772. default: true
  41773. },
  41774. ]
  41775. ))
  41776. characterMakers.push(() => makeCharacter(
  41777. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41778. {
  41779. front: {
  41780. height: math.unit(2 + 5/12, "feet"),
  41781. name: "Front",
  41782. image: {
  41783. source: "./media/characters/orion/front.svg",
  41784. extra: 1366/1304,
  41785. bottom: 43/1409
  41786. }
  41787. },
  41788. paw: {
  41789. height: math.unit(0.52, "feet"),
  41790. name: "Paw",
  41791. image: {
  41792. source: "./media/characters/orion/paw.svg"
  41793. }
  41794. },
  41795. },
  41796. [
  41797. {
  41798. name: "Normal",
  41799. height: math.unit(2 + 5/12, "feet"),
  41800. default: true
  41801. },
  41802. ]
  41803. ))
  41804. characterMakers.push(() => makeCharacter(
  41805. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41806. {
  41807. front: {
  41808. height: math.unit(5 + 10/12, "feet"),
  41809. name: "Front",
  41810. image: {
  41811. source: "./media/characters/vera/front.svg",
  41812. extra: 1680/1575,
  41813. bottom: 49/1729
  41814. }
  41815. },
  41816. back: {
  41817. height: math.unit(5 + 10/12, "feet"),
  41818. name: "Back",
  41819. image: {
  41820. source: "./media/characters/vera/back.svg",
  41821. extra: 1700/1588,
  41822. bottom: 18/1718
  41823. }
  41824. },
  41825. arcanine: {
  41826. height: math.unit(6 + 8/12, "feet"),
  41827. name: "Arcanine",
  41828. image: {
  41829. source: "./media/characters/vera/arcanine.svg",
  41830. extra: 1590/1511,
  41831. bottom: 71/1661
  41832. }
  41833. },
  41834. maw: {
  41835. height: math.unit(0.82, "feet"),
  41836. name: "Maw",
  41837. image: {
  41838. source: "./media/characters/vera/maw.svg"
  41839. }
  41840. },
  41841. mawArcanine: {
  41842. height: math.unit(0.97, "feet"),
  41843. name: "Maw (Arcanine)",
  41844. image: {
  41845. source: "./media/characters/vera/maw-arcanine.svg"
  41846. }
  41847. },
  41848. paw: {
  41849. height: math.unit(0.75, "feet"),
  41850. name: "Paw",
  41851. image: {
  41852. source: "./media/characters/vera/paw.svg"
  41853. }
  41854. },
  41855. pawprint: {
  41856. height: math.unit(0.52, "feet"),
  41857. name: "Pawprint",
  41858. image: {
  41859. source: "./media/characters/vera/pawprint.svg"
  41860. }
  41861. },
  41862. },
  41863. [
  41864. {
  41865. name: "Normal",
  41866. height: math.unit(5 + 10/12, "feet"),
  41867. default: true
  41868. },
  41869. {
  41870. name: "Macro",
  41871. height: math.unit(75, "feet")
  41872. },
  41873. ]
  41874. ))
  41875. characterMakers.push(() => makeCharacter(
  41876. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41877. {
  41878. front: {
  41879. height: math.unit(4, "feet"),
  41880. weight: math.unit(40, "lb"),
  41881. name: "Front",
  41882. image: {
  41883. source: "./media/characters/orvan-rabbit/front.svg",
  41884. extra: 1896/1642,
  41885. bottom: 29/1925
  41886. }
  41887. },
  41888. },
  41889. [
  41890. {
  41891. name: "Normal",
  41892. height: math.unit(4, "feet"),
  41893. default: true
  41894. },
  41895. ]
  41896. ))
  41897. characterMakers.push(() => makeCharacter(
  41898. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41899. {
  41900. front: {
  41901. height: math.unit(6, "feet"),
  41902. weight: math.unit(168, "lb"),
  41903. name: "Front",
  41904. image: {
  41905. source: "./media/characters/lisa/front.svg",
  41906. extra: 2065/1867,
  41907. bottom: 46/2111
  41908. }
  41909. },
  41910. back: {
  41911. height: math.unit(6, "feet"),
  41912. weight: math.unit(168, "lb"),
  41913. name: "Back",
  41914. image: {
  41915. source: "./media/characters/lisa/back.svg",
  41916. extra: 1982/1838,
  41917. bottom: 29/2011
  41918. }
  41919. },
  41920. maw: {
  41921. height: math.unit(0.81, "feet"),
  41922. name: "Maw",
  41923. image: {
  41924. source: "./media/characters/lisa/maw.svg"
  41925. }
  41926. },
  41927. paw: {
  41928. height: math.unit(0.9, "feet"),
  41929. name: "Paw",
  41930. image: {
  41931. source: "./media/characters/lisa/paw.svg"
  41932. }
  41933. },
  41934. caribousune: {
  41935. height: math.unit(7 + 2/12, "feet"),
  41936. weight: math.unit(268, "lb"),
  41937. name: "Caribousune",
  41938. image: {
  41939. source: "./media/characters/lisa/caribousune.svg",
  41940. extra: 1843/1633,
  41941. bottom: 29/1872
  41942. }
  41943. },
  41944. frontCaribousune: {
  41945. height: math.unit(7 + 2/12, "feet"),
  41946. weight: math.unit(268, "lb"),
  41947. name: "Front (Caribousune)",
  41948. image: {
  41949. source: "./media/characters/lisa/front-caribousune.svg",
  41950. extra: 1818/1638,
  41951. bottom: 52/1870
  41952. }
  41953. },
  41954. sideCaribousune: {
  41955. height: math.unit(7 + 2/12, "feet"),
  41956. weight: math.unit(268, "lb"),
  41957. name: "Side (Caribousune)",
  41958. image: {
  41959. source: "./media/characters/lisa/side-caribousune.svg",
  41960. extra: 1851/1635,
  41961. bottom: 16/1867
  41962. }
  41963. },
  41964. backCaribousune: {
  41965. height: math.unit(7 + 2/12, "feet"),
  41966. weight: math.unit(268, "lb"),
  41967. name: "Back (Caribousune)",
  41968. image: {
  41969. source: "./media/characters/lisa/back-caribousune.svg",
  41970. extra: 1801/1604,
  41971. bottom: 44/1845
  41972. }
  41973. },
  41974. caribou: {
  41975. height: math.unit(7 + 2/12, "feet"),
  41976. weight: math.unit(268, "lb"),
  41977. name: "Caribou",
  41978. image: {
  41979. source: "./media/characters/lisa/caribou.svg",
  41980. extra: 1843/1633,
  41981. bottom: 29/1872
  41982. }
  41983. },
  41984. frontCaribou: {
  41985. height: math.unit(7 + 2/12, "feet"),
  41986. weight: math.unit(268, "lb"),
  41987. name: "Front (Caribou)",
  41988. image: {
  41989. source: "./media/characters/lisa/front-caribou.svg",
  41990. extra: 1818/1638,
  41991. bottom: 52/1870
  41992. }
  41993. },
  41994. sideCaribou: {
  41995. height: math.unit(7 + 2/12, "feet"),
  41996. weight: math.unit(268, "lb"),
  41997. name: "Side (Caribou)",
  41998. image: {
  41999. source: "./media/characters/lisa/side-caribou.svg",
  42000. extra: 1851/1635,
  42001. bottom: 16/1867
  42002. }
  42003. },
  42004. backCaribou: {
  42005. height: math.unit(7 + 2/12, "feet"),
  42006. weight: math.unit(268, "lb"),
  42007. name: "Back (Caribou)",
  42008. image: {
  42009. source: "./media/characters/lisa/back-caribou.svg",
  42010. extra: 1801/1604,
  42011. bottom: 44/1845
  42012. }
  42013. },
  42014. mawCaribou: {
  42015. height: math.unit(1.45, "feet"),
  42016. name: "Maw (Caribou)",
  42017. image: {
  42018. source: "./media/characters/lisa/maw-caribou.svg"
  42019. }
  42020. },
  42021. mawCaribousune: {
  42022. height: math.unit(1.45, "feet"),
  42023. name: "Maw (Caribousune)",
  42024. image: {
  42025. source: "./media/characters/lisa/maw-caribousune.svg"
  42026. }
  42027. },
  42028. pawCaribousune: {
  42029. height: math.unit(1.61, "feet"),
  42030. name: "Paw (Caribou)",
  42031. image: {
  42032. source: "./media/characters/lisa/paw-caribousune.svg"
  42033. }
  42034. },
  42035. },
  42036. [
  42037. {
  42038. name: "Normal",
  42039. height: math.unit(6, "feet")
  42040. },
  42041. {
  42042. name: "God Size",
  42043. height: math.unit(72, "feet"),
  42044. default: true
  42045. },
  42046. {
  42047. name: "Towering",
  42048. height: math.unit(288, "feet")
  42049. },
  42050. {
  42051. name: "City Size",
  42052. height: math.unit(48384, "feet")
  42053. },
  42054. {
  42055. name: "Continental",
  42056. height: math.unit(4200, "miles")
  42057. },
  42058. {
  42059. name: "Planet Eater",
  42060. height: math.unit(42, "earths")
  42061. },
  42062. {
  42063. name: "Star Swallower",
  42064. height: math.unit(42, "solarradii")
  42065. },
  42066. {
  42067. name: "System Swallower",
  42068. height: math.unit(84000, "AU")
  42069. },
  42070. {
  42071. name: "Galaxy Gobbler",
  42072. height: math.unit(42, "galaxies")
  42073. },
  42074. {
  42075. name: "Universe Devourer",
  42076. height: math.unit(42, "universes")
  42077. },
  42078. {
  42079. name: "Multiverse Muncher",
  42080. height: math.unit(42, "multiverses")
  42081. },
  42082. ]
  42083. ))
  42084. characterMakers.push(() => makeCharacter(
  42085. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  42086. {
  42087. front: {
  42088. height: math.unit(36, "feet"),
  42089. name: "Front",
  42090. image: {
  42091. source: "./media/characters/shadow-rat/front.svg",
  42092. extra: 1845/1758,
  42093. bottom: 83/1928
  42094. }
  42095. },
  42096. },
  42097. [
  42098. {
  42099. name: "Macro",
  42100. height: math.unit(36, "feet"),
  42101. default: true
  42102. },
  42103. ]
  42104. ))
  42105. characterMakers.push(() => makeCharacter(
  42106. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  42107. {
  42108. side: {
  42109. height: math.unit(8, "feet"),
  42110. weight: math.unit(2630, "lb"),
  42111. name: "Side",
  42112. image: {
  42113. source: "./media/characters/torallia/side.svg",
  42114. extra: 2164/2021,
  42115. bottom: 371/2535
  42116. }
  42117. },
  42118. },
  42119. [
  42120. {
  42121. name: "Mortal Interaction",
  42122. height: math.unit(8, "feet")
  42123. },
  42124. {
  42125. name: "Natural",
  42126. height: math.unit(24, "feet"),
  42127. default: true
  42128. },
  42129. {
  42130. name: "Giant",
  42131. height: math.unit(80, "feet")
  42132. },
  42133. {
  42134. name: "Kaiju",
  42135. height: math.unit(240, "feet")
  42136. },
  42137. {
  42138. name: "Macro",
  42139. height: math.unit(800, "feet")
  42140. },
  42141. {
  42142. name: "Macro+",
  42143. height: math.unit(2400, "feet")
  42144. },
  42145. {
  42146. name: "Macro++",
  42147. height: math.unit(8000, "feet")
  42148. },
  42149. {
  42150. name: "City-Crushing",
  42151. height: math.unit(24000, "feet")
  42152. },
  42153. {
  42154. name: "Mountain-Mashing",
  42155. height: math.unit(80000, "feet")
  42156. },
  42157. {
  42158. name: "District Demolisher",
  42159. height: math.unit(240000, "feet")
  42160. },
  42161. {
  42162. name: "Tri-County Terror",
  42163. height: math.unit(800000, "feet")
  42164. },
  42165. {
  42166. name: "State Smasher",
  42167. height: math.unit(2.4e6, "feet")
  42168. },
  42169. {
  42170. name: "Nation Nemesis",
  42171. height: math.unit(8e6, "feet")
  42172. },
  42173. {
  42174. name: "Continent Cracker",
  42175. height: math.unit(2.4e7, "feet")
  42176. },
  42177. {
  42178. name: "Planet-Pillaging",
  42179. height: math.unit(8e7, "feet")
  42180. },
  42181. {
  42182. name: "Earth-Eclipsing",
  42183. height: math.unit(2.4e8, "feet")
  42184. },
  42185. {
  42186. name: "Jovian-Jostling",
  42187. height: math.unit(8e8, "feet")
  42188. },
  42189. {
  42190. name: "Gas Giant Gulper",
  42191. height: math.unit(2.4e9, "feet")
  42192. },
  42193. {
  42194. name: "Astral Annihilator",
  42195. height: math.unit(8e9, "feet")
  42196. },
  42197. {
  42198. name: "Celestial Conqueror",
  42199. height: math.unit(2.4e10, "feet")
  42200. },
  42201. {
  42202. name: "Sol-Swallowing",
  42203. height: math.unit(8e10, "feet")
  42204. },
  42205. {
  42206. name: "Hunter of the Heavens",
  42207. height: math.unit(2.4e13, "feet")
  42208. },
  42209. ]
  42210. ))
  42211. characterMakers.push(() => makeCharacter(
  42212. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42213. {
  42214. front: {
  42215. height: math.unit(10, "feet"),
  42216. weight: math.unit(844, "kilograms"),
  42217. name: "Front",
  42218. image: {
  42219. source: "./media/characters/rebecca-pawlson/front.svg",
  42220. extra: 1196/1099,
  42221. bottom: 81/1277
  42222. },
  42223. extraAttributes: {
  42224. "pawSize": {
  42225. name: "Paw Size",
  42226. power: 2,
  42227. type: "area",
  42228. base: math.unit(0.2 * 0.375, "meters^2")
  42229. },
  42230. "handSize": {
  42231. name: "Hand Size",
  42232. power: 2,
  42233. type: "area",
  42234. base: math.unit(0.2 * 0.35, "meters^2")
  42235. },
  42236. "breastDiameter": {
  42237. name: "Breast Diameter",
  42238. power: 1,
  42239. type: "length",
  42240. base: math.unit(0.5, "meters")
  42241. },
  42242. "breastVolume": {
  42243. name: "Breast Volume",
  42244. power: 3,
  42245. type: "volume",
  42246. base: math.unit(0.065, "m^3")
  42247. },
  42248. "breastMass": {
  42249. name: "Breast Mass",
  42250. power: 3,
  42251. type: "mass",
  42252. base: math.unit(65, "kg")
  42253. },
  42254. "nippleDiameter": {
  42255. name: "Nipple Diameter",
  42256. power: 1,
  42257. type: "length",
  42258. base: math.unit(0.1, "meters")
  42259. },
  42260. }
  42261. },
  42262. back: {
  42263. height: math.unit(10, "feet"),
  42264. weight: math.unit(844, "kilograms"),
  42265. name: "Back",
  42266. image: {
  42267. source: "./media/characters/rebecca-pawlson/back.svg",
  42268. extra: 879/776,
  42269. bottom: 43/922
  42270. },
  42271. extraAttributes: {
  42272. "pawSize": {
  42273. name: "Paw Size",
  42274. power: 2,
  42275. type: "area",
  42276. base: math.unit(0.2 * 0.375, "meters^2")
  42277. },
  42278. "handSize": {
  42279. name: "Hand Size",
  42280. power: 2,
  42281. type: "area",
  42282. base: math.unit(0.2 * 0.35, "meters^2")
  42283. },
  42284. "breastDiameter": {
  42285. name: "Breast Diameter",
  42286. power: 1,
  42287. type: "length",
  42288. base: math.unit(0.5, "meters")
  42289. },
  42290. "breastVolume": {
  42291. name: "Breast Volume",
  42292. power: 3,
  42293. type: "volume",
  42294. base: math.unit(0.065, "m^3")
  42295. },
  42296. "breastMass": {
  42297. name: "Breast Mass",
  42298. power: 3,
  42299. type: "mass",
  42300. base: math.unit(65, "kg")
  42301. },
  42302. "nippleDiameter": {
  42303. name: "Nipple Diameter",
  42304. power: 1,
  42305. type: "length",
  42306. base: math.unit(0.1, "meters")
  42307. },
  42308. }
  42309. },
  42310. },
  42311. [
  42312. {
  42313. name: "Normal",
  42314. height: math.unit(6 + 8/12, "feet")
  42315. },
  42316. {
  42317. name: "Mini Macro",
  42318. height: math.unit(10, "feet"),
  42319. default: true
  42320. },
  42321. {
  42322. name: "Macro",
  42323. height: math.unit(100, "feet")
  42324. },
  42325. {
  42326. name: "Mega Macro",
  42327. height: math.unit(2500, "feet")
  42328. },
  42329. {
  42330. name: "Giga Macro",
  42331. height: math.unit(50, "miles")
  42332. },
  42333. ]
  42334. ))
  42335. characterMakers.push(() => makeCharacter(
  42336. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42337. {
  42338. front: {
  42339. height: math.unit(7 + 6/12, "feet"),
  42340. weight: math.unit(600, "lb"),
  42341. name: "Front",
  42342. image: {
  42343. source: "./media/characters/moxie-nova/front.svg",
  42344. extra: 1734/1652,
  42345. bottom: 41/1775
  42346. }
  42347. },
  42348. },
  42349. [
  42350. {
  42351. name: "Normal",
  42352. height: math.unit(7 + 6/12, "feet"),
  42353. default: true
  42354. },
  42355. ]
  42356. ))
  42357. characterMakers.push(() => makeCharacter(
  42358. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42359. {
  42360. goat: {
  42361. height: math.unit(4, "feet"),
  42362. weight: math.unit(180, "lb"),
  42363. name: "Goat",
  42364. image: {
  42365. source: "./media/characters/tiffany/goat.svg",
  42366. extra: 1845/1595,
  42367. bottom: 106/1951
  42368. }
  42369. },
  42370. front: {
  42371. height: math.unit(5, "feet"),
  42372. weight: math.unit(150, "lb"),
  42373. name: "Foxcoon",
  42374. image: {
  42375. source: "./media/characters/tiffany/foxcoon.svg",
  42376. extra: 1941/1845,
  42377. bottom: 58/1999
  42378. }
  42379. },
  42380. },
  42381. [
  42382. {
  42383. name: "Normal",
  42384. height: math.unit(5, "feet"),
  42385. default: true
  42386. },
  42387. ]
  42388. ))
  42389. characterMakers.push(() => makeCharacter(
  42390. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42391. {
  42392. front: {
  42393. height: math.unit(8, "feet"),
  42394. weight: math.unit(300, "lb"),
  42395. name: "Front",
  42396. image: {
  42397. source: "./media/characters/raxinath/front.svg",
  42398. extra: 1407/1309,
  42399. bottom: 39/1446
  42400. }
  42401. },
  42402. back: {
  42403. height: math.unit(8, "feet"),
  42404. weight: math.unit(300, "lb"),
  42405. name: "Back",
  42406. image: {
  42407. source: "./media/characters/raxinath/back.svg",
  42408. extra: 1405/1315,
  42409. bottom: 9/1414
  42410. }
  42411. },
  42412. },
  42413. [
  42414. {
  42415. name: "Speck",
  42416. height: math.unit(0.5, "nm")
  42417. },
  42418. {
  42419. name: "Micro",
  42420. height: math.unit(3, "inches")
  42421. },
  42422. {
  42423. name: "Kobold",
  42424. height: math.unit(3, "feet")
  42425. },
  42426. {
  42427. name: "Normal",
  42428. height: math.unit(8, "feet"),
  42429. default: true
  42430. },
  42431. {
  42432. name: "Giant",
  42433. height: math.unit(50, "feet")
  42434. },
  42435. {
  42436. name: "Macro",
  42437. height: math.unit(1000, "feet")
  42438. },
  42439. {
  42440. name: "Megamacro",
  42441. height: math.unit(1, "mile")
  42442. },
  42443. ]
  42444. ))
  42445. characterMakers.push(() => makeCharacter(
  42446. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42447. {
  42448. front: {
  42449. height: math.unit(10, "feet"),
  42450. weight: math.unit(1442, "lb"),
  42451. name: "Front",
  42452. image: {
  42453. source: "./media/characters/mal-dragon/front.svg",
  42454. extra: 1515/1444,
  42455. bottom: 113/1628
  42456. }
  42457. },
  42458. back: {
  42459. height: math.unit(10, "feet"),
  42460. weight: math.unit(1442, "lb"),
  42461. name: "Back",
  42462. image: {
  42463. source: "./media/characters/mal-dragon/back.svg",
  42464. extra: 1527/1434,
  42465. bottom: 25/1552
  42466. }
  42467. },
  42468. },
  42469. [
  42470. {
  42471. name: "Mortal Interaction",
  42472. height: math.unit(10, "feet"),
  42473. default: true
  42474. },
  42475. {
  42476. name: "Large",
  42477. height: math.unit(30, "feet")
  42478. },
  42479. {
  42480. name: "Kaiju",
  42481. height: math.unit(300, "feet")
  42482. },
  42483. {
  42484. name: "Megamacro",
  42485. height: math.unit(10000, "feet")
  42486. },
  42487. {
  42488. name: "Continent Cracker",
  42489. height: math.unit(30000000, "feet")
  42490. },
  42491. {
  42492. name: "Sol-Swallowing",
  42493. height: math.unit(1e11, "feet")
  42494. },
  42495. {
  42496. name: "Light Universal",
  42497. height: math.unit(5, "universes")
  42498. },
  42499. {
  42500. name: "Universe Atoms",
  42501. height: math.unit(1.829e9, "universes")
  42502. },
  42503. {
  42504. name: "Light Multiversal",
  42505. height: math.unit(5, "multiverses")
  42506. },
  42507. {
  42508. name: "Multiverse Atoms",
  42509. height: math.unit(1.829e9, "multiverses")
  42510. },
  42511. {
  42512. name: "Fabric of Time",
  42513. height: math.unit(1e262, "multiverses")
  42514. },
  42515. ]
  42516. ))
  42517. characterMakers.push(() => makeCharacter(
  42518. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42519. {
  42520. front: {
  42521. height: math.unit(9, "feet"),
  42522. weight: math.unit(1050, "lb"),
  42523. name: "Front",
  42524. image: {
  42525. source: "./media/characters/tabitha/front.svg",
  42526. extra: 2083/1994,
  42527. bottom: 68/2151
  42528. }
  42529. },
  42530. },
  42531. [
  42532. {
  42533. name: "Baseline",
  42534. height: math.unit(9, "feet"),
  42535. default: true
  42536. },
  42537. {
  42538. name: "Giant",
  42539. height: math.unit(90, "feet")
  42540. },
  42541. {
  42542. name: "Macro",
  42543. height: math.unit(900, "feet")
  42544. },
  42545. {
  42546. name: "Megamacro",
  42547. height: math.unit(9000, "feet")
  42548. },
  42549. {
  42550. name: "City-Crushing",
  42551. height: math.unit(27000, "feet")
  42552. },
  42553. {
  42554. name: "Mountain-Mashing",
  42555. height: math.unit(90000, "feet")
  42556. },
  42557. {
  42558. name: "Nation Nemesis",
  42559. height: math.unit(9e6, "feet")
  42560. },
  42561. {
  42562. name: "Continent Cracker",
  42563. height: math.unit(27e6, "feet")
  42564. },
  42565. {
  42566. name: "Earth-Eclipsing",
  42567. height: math.unit(2.7e8, "feet")
  42568. },
  42569. {
  42570. name: "Gas Giant Gulper",
  42571. height: math.unit(2.7e9, "feet")
  42572. },
  42573. {
  42574. name: "Sol-Swallowing",
  42575. height: math.unit(9e10, "feet")
  42576. },
  42577. {
  42578. name: "Galaxy Gulper",
  42579. height: math.unit(9, "galaxies")
  42580. },
  42581. {
  42582. name: "Cosmos Churner",
  42583. height: math.unit(9, "universes")
  42584. },
  42585. ]
  42586. ))
  42587. characterMakers.push(() => makeCharacter(
  42588. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42589. {
  42590. front: {
  42591. height: math.unit(160, "cm"),
  42592. weight: math.unit(55, "kg"),
  42593. name: "Front",
  42594. image: {
  42595. source: "./media/characters/tow/front.svg",
  42596. extra: 1751/1722,
  42597. bottom: 74/1825
  42598. }
  42599. },
  42600. },
  42601. [
  42602. {
  42603. name: "Norm",
  42604. height: math.unit(160, "cm")
  42605. },
  42606. {
  42607. name: "Casual",
  42608. height: math.unit(3200, "m"),
  42609. default: true
  42610. },
  42611. {
  42612. name: "Show-Off",
  42613. height: math.unit(160, "km")
  42614. },
  42615. ]
  42616. ))
  42617. characterMakers.push(() => makeCharacter(
  42618. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42619. {
  42620. front: {
  42621. height: math.unit(7 + 11/12, "feet"),
  42622. weight: math.unit(342.8, "lb"),
  42623. name: "Front",
  42624. image: {
  42625. source: "./media/characters/vivian-orca-dragon/front.svg",
  42626. extra: 1890/1865,
  42627. bottom: 28/1918
  42628. }
  42629. },
  42630. },
  42631. [
  42632. {
  42633. name: "Micro",
  42634. height: math.unit(5, "inches")
  42635. },
  42636. {
  42637. name: "Normal",
  42638. height: math.unit(7 + 11/12, "feet"),
  42639. default: true
  42640. },
  42641. {
  42642. name: "Macro",
  42643. height: math.unit(395 + 7/12, "feet")
  42644. },
  42645. ]
  42646. ))
  42647. characterMakers.push(() => makeCharacter(
  42648. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42649. {
  42650. side: {
  42651. height: math.unit(10, "feet"),
  42652. weight: math.unit(1442, "lb"),
  42653. name: "Side",
  42654. image: {
  42655. source: "./media/characters/lotherakon/side.svg",
  42656. extra: 1604/1497,
  42657. bottom: 89/1693
  42658. }
  42659. },
  42660. },
  42661. [
  42662. {
  42663. name: "Mortal Interaction",
  42664. height: math.unit(10, "feet")
  42665. },
  42666. {
  42667. name: "Large",
  42668. height: math.unit(30, "feet"),
  42669. default: true
  42670. },
  42671. {
  42672. name: "Giant",
  42673. height: math.unit(100, "feet")
  42674. },
  42675. {
  42676. name: "Kaiju",
  42677. height: math.unit(300, "feet")
  42678. },
  42679. {
  42680. name: "Macro",
  42681. height: math.unit(1000, "feet")
  42682. },
  42683. {
  42684. name: "Macro+",
  42685. height: math.unit(3000, "feet")
  42686. },
  42687. {
  42688. name: "Megamacro",
  42689. height: math.unit(10000, "feet")
  42690. },
  42691. {
  42692. name: "City-Crushing",
  42693. height: math.unit(30000, "feet")
  42694. },
  42695. {
  42696. name: "Continent Cracker",
  42697. height: math.unit(30e6, "feet")
  42698. },
  42699. {
  42700. name: "Earth Eclipsing",
  42701. height: math.unit(3e8, "feet")
  42702. },
  42703. {
  42704. name: "Gas Giant Gulper",
  42705. height: math.unit(3e9, "feet")
  42706. },
  42707. {
  42708. name: "Sol-Swallowing",
  42709. height: math.unit(1e11, "feet")
  42710. },
  42711. {
  42712. name: "System Swallower",
  42713. height: math.unit(3e14, "feet")
  42714. },
  42715. {
  42716. name: "Galaxy Gulper",
  42717. height: math.unit(10, "galaxies")
  42718. },
  42719. {
  42720. name: "Light Universal",
  42721. height: math.unit(5, "universes")
  42722. },
  42723. {
  42724. name: "Universe Palm",
  42725. height: math.unit(20, "universes")
  42726. },
  42727. {
  42728. name: "Light Multiversal",
  42729. height: math.unit(5, "multiverses")
  42730. },
  42731. {
  42732. name: "Multiverse Palm",
  42733. height: math.unit(20, "multiverses")
  42734. },
  42735. {
  42736. name: "Inferno Incarnate",
  42737. height: math.unit(1e7, "multiverses")
  42738. },
  42739. ]
  42740. ))
  42741. characterMakers.push(() => makeCharacter(
  42742. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42743. {
  42744. front: {
  42745. height: math.unit(8, "feet"),
  42746. weight: math.unit(1200, "lb"),
  42747. name: "Front",
  42748. image: {
  42749. source: "./media/characters/malithee/front.svg",
  42750. extra: 1675/1640,
  42751. bottom: 162/1837
  42752. }
  42753. },
  42754. },
  42755. [
  42756. {
  42757. name: "Mortal Interaction",
  42758. height: math.unit(8, "feet"),
  42759. default: true
  42760. },
  42761. {
  42762. name: "Large",
  42763. height: math.unit(24, "feet")
  42764. },
  42765. {
  42766. name: "Kaiju",
  42767. height: math.unit(240, "feet")
  42768. },
  42769. {
  42770. name: "Megamacro",
  42771. height: math.unit(8000, "feet")
  42772. },
  42773. {
  42774. name: "Continent Cracker",
  42775. height: math.unit(24e6, "feet")
  42776. },
  42777. {
  42778. name: "Earth-Eclipsing",
  42779. height: math.unit(2.4e8, "feet")
  42780. },
  42781. {
  42782. name: "Sol-Swallowing",
  42783. height: math.unit(8e10, "feet")
  42784. },
  42785. {
  42786. name: "Galaxy Gulper",
  42787. height: math.unit(8, "galaxies")
  42788. },
  42789. {
  42790. name: "Light Universal",
  42791. height: math.unit(4, "universes")
  42792. },
  42793. {
  42794. name: "Universe Atoms",
  42795. height: math.unit(1.829e9, "universes")
  42796. },
  42797. {
  42798. name: "Light Multiversal",
  42799. height: math.unit(4, "multiverses")
  42800. },
  42801. {
  42802. name: "Multiverse Atoms",
  42803. height: math.unit(1.829e9, "multiverses")
  42804. },
  42805. {
  42806. name: "Nigh-Omnipresence",
  42807. height: math.unit(8e261, "multiverses")
  42808. },
  42809. ]
  42810. ))
  42811. characterMakers.push(() => makeCharacter(
  42812. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42813. {
  42814. front: {
  42815. height: math.unit(10, "feet"),
  42816. weight: math.unit(1500, "lb"),
  42817. name: "Front",
  42818. image: {
  42819. source: "./media/characters/miles-thestia/front.svg",
  42820. extra: 1812/1727,
  42821. bottom: 86/1898
  42822. }
  42823. },
  42824. back: {
  42825. height: math.unit(10, "feet"),
  42826. weight: math.unit(1500, "lb"),
  42827. name: "Back",
  42828. image: {
  42829. source: "./media/characters/miles-thestia/back.svg",
  42830. extra: 1799/1690,
  42831. bottom: 47/1846
  42832. }
  42833. },
  42834. frontNsfw: {
  42835. height: math.unit(10, "feet"),
  42836. weight: math.unit(1500, "lb"),
  42837. name: "Front (NSFW)",
  42838. image: {
  42839. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42840. extra: 1812/1727,
  42841. bottom: 86/1898
  42842. }
  42843. },
  42844. },
  42845. [
  42846. {
  42847. name: "Mini-Macro",
  42848. height: math.unit(10, "feet"),
  42849. default: true
  42850. },
  42851. ]
  42852. ))
  42853. characterMakers.push(() => makeCharacter(
  42854. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42855. {
  42856. front: {
  42857. height: math.unit(25, "feet"),
  42858. name: "Front",
  42859. image: {
  42860. source: "./media/characters/titan-s-wulf/front.svg",
  42861. extra: 1560/1484,
  42862. bottom: 76/1636
  42863. }
  42864. },
  42865. },
  42866. [
  42867. {
  42868. name: "Smallest",
  42869. height: math.unit(25, "feet"),
  42870. default: true
  42871. },
  42872. {
  42873. name: "Normal",
  42874. height: math.unit(200, "feet")
  42875. },
  42876. {
  42877. name: "Macro",
  42878. height: math.unit(200000, "feet")
  42879. },
  42880. {
  42881. name: "Multiversal Original",
  42882. height: math.unit(10000, "multiverses")
  42883. },
  42884. ]
  42885. ))
  42886. characterMakers.push(() => makeCharacter(
  42887. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42888. {
  42889. front: {
  42890. height: math.unit(8, "feet"),
  42891. weight: math.unit(553, "lb"),
  42892. name: "Front",
  42893. image: {
  42894. source: "./media/characters/tawendeh/front.svg",
  42895. extra: 2365/2268,
  42896. bottom: 83/2448
  42897. }
  42898. },
  42899. frontClothed: {
  42900. height: math.unit(8, "feet"),
  42901. weight: math.unit(553, "lb"),
  42902. name: "Front (Clothed)",
  42903. image: {
  42904. source: "./media/characters/tawendeh/front-clothed.svg",
  42905. extra: 2365/2268,
  42906. bottom: 83/2448
  42907. }
  42908. },
  42909. back: {
  42910. height: math.unit(8, "feet"),
  42911. weight: math.unit(553, "lb"),
  42912. name: "Back",
  42913. image: {
  42914. source: "./media/characters/tawendeh/back.svg",
  42915. extra: 2397/2294,
  42916. bottom: 42/2439
  42917. }
  42918. },
  42919. },
  42920. [
  42921. {
  42922. name: "Mortal Interaction",
  42923. height: math.unit(8, "feet"),
  42924. default: true
  42925. },
  42926. {
  42927. name: "Giant",
  42928. height: math.unit(80, "feet")
  42929. },
  42930. {
  42931. name: "Macro",
  42932. height: math.unit(800, "feet")
  42933. },
  42934. {
  42935. name: "Megamacro",
  42936. height: math.unit(8000, "feet")
  42937. },
  42938. {
  42939. name: "City-Crushing",
  42940. height: math.unit(24000, "feet")
  42941. },
  42942. {
  42943. name: "Mountain-Mashing",
  42944. height: math.unit(80000, "feet")
  42945. },
  42946. {
  42947. name: "Nation Nemesis",
  42948. height: math.unit(8e6, "feet")
  42949. },
  42950. {
  42951. name: "Continent Cracker",
  42952. height: math.unit(24e6, "feet")
  42953. },
  42954. {
  42955. name: "Earth-Eclipsing",
  42956. height: math.unit(2.4e8, "feet")
  42957. },
  42958. {
  42959. name: "Gas Giant Gulper",
  42960. height: math.unit(2.4e9, "feet")
  42961. },
  42962. {
  42963. name: "Sol-Swallowing",
  42964. height: math.unit(8e10, "feet")
  42965. },
  42966. {
  42967. name: "Galaxy Gulper",
  42968. height: math.unit(8, "galaxies")
  42969. },
  42970. {
  42971. name: "Cosmos Churner",
  42972. height: math.unit(8, "universes")
  42973. },
  42974. {
  42975. name: "Omnipotent Otter",
  42976. height: math.unit(80, "universes")
  42977. },
  42978. ]
  42979. ))
  42980. characterMakers.push(() => makeCharacter(
  42981. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42982. {
  42983. front: {
  42984. height: math.unit(2.6, "meters"),
  42985. weight: math.unit(900, "kg"),
  42986. name: "Front",
  42987. image: {
  42988. source: "./media/characters/neesha/front.svg",
  42989. extra: 1803/1653,
  42990. bottom: 128/1931
  42991. }
  42992. },
  42993. },
  42994. [
  42995. {
  42996. name: "Normal",
  42997. height: math.unit(2.6, "meters"),
  42998. default: true
  42999. },
  43000. {
  43001. name: "Macro",
  43002. height: math.unit(50, "meters")
  43003. },
  43004. ]
  43005. ))
  43006. characterMakers.push(() => makeCharacter(
  43007. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  43008. {
  43009. front: {
  43010. height: math.unit(5, "feet"),
  43011. weight: math.unit(185, "lb"),
  43012. name: "Front",
  43013. image: {
  43014. source: "./media/characters/kyera/front.svg",
  43015. extra: 1875/1790,
  43016. bottom: 96/1971
  43017. }
  43018. },
  43019. },
  43020. [
  43021. {
  43022. name: "Normal",
  43023. height: math.unit(5, "feet"),
  43024. default: true
  43025. },
  43026. ]
  43027. ))
  43028. characterMakers.push(() => makeCharacter(
  43029. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  43030. {
  43031. front: {
  43032. height: math.unit(7 + 6/12, "feet"),
  43033. weight: math.unit(540, "lb"),
  43034. name: "Front",
  43035. image: {
  43036. source: "./media/characters/yuko/front.svg",
  43037. extra: 1282/1222,
  43038. bottom: 101/1383
  43039. }
  43040. },
  43041. frontClothed: {
  43042. height: math.unit(7 + 6/12, "feet"),
  43043. weight: math.unit(540, "lb"),
  43044. name: "Front (Clothed)",
  43045. image: {
  43046. source: "./media/characters/yuko/front-clothed.svg",
  43047. extra: 1282/1222,
  43048. bottom: 101/1383
  43049. }
  43050. },
  43051. },
  43052. [
  43053. {
  43054. name: "Normal",
  43055. height: math.unit(7 + 6/12, "feet"),
  43056. default: true
  43057. },
  43058. {
  43059. name: "Macro",
  43060. height: math.unit(26 + 9/12, "feet")
  43061. },
  43062. {
  43063. name: "Megamacro",
  43064. height: math.unit(300, "feet")
  43065. },
  43066. {
  43067. name: "Gigamacro",
  43068. height: math.unit(5000, "feet")
  43069. },
  43070. {
  43071. name: "Planetary",
  43072. height: math.unit(10000, "miles")
  43073. },
  43074. ]
  43075. ))
  43076. characterMakers.push(() => makeCharacter(
  43077. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  43078. {
  43079. front: {
  43080. height: math.unit(8 + 2/12, "feet"),
  43081. weight: math.unit(600, "lb"),
  43082. name: "Front",
  43083. image: {
  43084. source: "./media/characters/deam-nitrel/front.svg",
  43085. extra: 1308/1234,
  43086. bottom: 125/1433
  43087. }
  43088. },
  43089. },
  43090. [
  43091. {
  43092. name: "Normal",
  43093. height: math.unit(8 + 2/12, "feet"),
  43094. default: true
  43095. },
  43096. ]
  43097. ))
  43098. characterMakers.push(() => makeCharacter(
  43099. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  43100. {
  43101. front: {
  43102. height: math.unit(6.1, "feet"),
  43103. weight: math.unit(180, "lb"),
  43104. name: "Front",
  43105. image: {
  43106. source: "./media/characters/skyress/front.svg",
  43107. extra: 1045/915,
  43108. bottom: 28/1073
  43109. }
  43110. },
  43111. maw: {
  43112. height: math.unit(1, "feet"),
  43113. name: "Maw",
  43114. image: {
  43115. source: "./media/characters/skyress/maw.svg"
  43116. }
  43117. },
  43118. },
  43119. [
  43120. {
  43121. name: "Normal",
  43122. height: math.unit(6.1, "feet"),
  43123. default: true
  43124. },
  43125. {
  43126. name: "Macro",
  43127. height: math.unit(200, "feet")
  43128. },
  43129. ]
  43130. ))
  43131. characterMakers.push(() => makeCharacter(
  43132. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  43133. {
  43134. front: {
  43135. height: math.unit(4 + 2/12, "feet"),
  43136. weight: math.unit(40, "kg"),
  43137. name: "Front",
  43138. image: {
  43139. source: "./media/characters/amethyst-jones/front.svg",
  43140. extra: 1220/1150,
  43141. bottom: 101/1321
  43142. }
  43143. },
  43144. },
  43145. [
  43146. {
  43147. name: "Normal",
  43148. height: math.unit(4 + 2/12, "feet"),
  43149. default: true
  43150. },
  43151. ]
  43152. ))
  43153. characterMakers.push(() => makeCharacter(
  43154. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  43155. {
  43156. front: {
  43157. height: math.unit(1.7, "m"),
  43158. weight: math.unit(135, "lb"),
  43159. name: "Front",
  43160. image: {
  43161. source: "./media/characters/jade/front.svg",
  43162. extra: 1818/1767,
  43163. bottom: 32/1850
  43164. }
  43165. },
  43166. back: {
  43167. height: math.unit(1.7, "m"),
  43168. weight: math.unit(135, "lb"),
  43169. name: "Back",
  43170. image: {
  43171. source: "./media/characters/jade/back.svg",
  43172. extra: 1869/1809,
  43173. bottom: 35/1904
  43174. }
  43175. },
  43176. hand: {
  43177. height: math.unit(0.24, "m"),
  43178. name: "Hand",
  43179. image: {
  43180. source: "./media/characters/jade/hand.svg"
  43181. }
  43182. },
  43183. foot: {
  43184. height: math.unit(0.263, "m"),
  43185. name: "Foot",
  43186. image: {
  43187. source: "./media/characters/jade/foot.svg"
  43188. }
  43189. },
  43190. dick: {
  43191. height: math.unit(0.47, "m"),
  43192. name: "Dick",
  43193. image: {
  43194. source: "./media/characters/jade/dick.svg"
  43195. }
  43196. },
  43197. },
  43198. [
  43199. {
  43200. name: "Micro",
  43201. height: math.unit(22, "cm")
  43202. },
  43203. {
  43204. name: "Normal",
  43205. height: math.unit(1.7, "m"),
  43206. default: true
  43207. },
  43208. {
  43209. name: "Macro",
  43210. height: math.unit(152, "m")
  43211. },
  43212. ]
  43213. ))
  43214. characterMakers.push(() => makeCharacter(
  43215. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43216. {
  43217. front: {
  43218. height: math.unit(100, "miles"),
  43219. weight: math.unit(20000, "tons"),
  43220. name: "Front",
  43221. image: {
  43222. source: "./media/characters/cookie/front.svg",
  43223. extra: 1125/1070,
  43224. bottom: 30/1155
  43225. }
  43226. },
  43227. },
  43228. [
  43229. {
  43230. name: "Big",
  43231. height: math.unit(50, "feet")
  43232. },
  43233. {
  43234. name: "Macro",
  43235. height: math.unit(100, "miles"),
  43236. default: true
  43237. },
  43238. {
  43239. name: "Megamacro",
  43240. height: math.unit(90000, "miles")
  43241. },
  43242. ]
  43243. ))
  43244. characterMakers.push(() => makeCharacter(
  43245. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43246. {
  43247. front: {
  43248. height: math.unit(6, "feet"),
  43249. weight: math.unit(145, "lb"),
  43250. name: "Front",
  43251. image: {
  43252. source: "./media/characters/farzian/front.svg",
  43253. extra: 1902/1693,
  43254. bottom: 108/2010
  43255. }
  43256. },
  43257. },
  43258. [
  43259. {
  43260. name: "Macro",
  43261. height: math.unit(500, "feet"),
  43262. default: true
  43263. },
  43264. ]
  43265. ))
  43266. characterMakers.push(() => makeCharacter(
  43267. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43268. {
  43269. front: {
  43270. height: math.unit(3 + 6/12, "feet"),
  43271. weight: math.unit(50, "lb"),
  43272. name: "Front",
  43273. image: {
  43274. source: "./media/characters/kimberly-tilson/front.svg",
  43275. extra: 1400/1322,
  43276. bottom: 36/1436
  43277. }
  43278. },
  43279. back: {
  43280. height: math.unit(3 + 6/12, "feet"),
  43281. weight: math.unit(50, "lb"),
  43282. name: "Back",
  43283. image: {
  43284. source: "./media/characters/kimberly-tilson/back.svg",
  43285. extra: 1370/1307,
  43286. bottom: 20/1390
  43287. }
  43288. },
  43289. },
  43290. [
  43291. {
  43292. name: "Normal",
  43293. height: math.unit(3 + 6/12, "feet"),
  43294. default: true
  43295. },
  43296. ]
  43297. ))
  43298. characterMakers.push(() => makeCharacter(
  43299. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43300. {
  43301. front: {
  43302. height: math.unit(350, "meters"),
  43303. weight: math.unit(7.57059e+8, "lb"),
  43304. name: "Front",
  43305. image: {
  43306. source: "./media/characters/harthos/front.svg",
  43307. extra: 455/446,
  43308. bottom: 15/470
  43309. },
  43310. form: "peacekeeper",
  43311. default: true
  43312. },
  43313. allusus_front: {
  43314. height: math.unit(270, "meters"),
  43315. weight: math.unit(3.47550e+8, "lb"),
  43316. name: "Front",
  43317. image: {
  43318. source: "./media/characters/harthos/allusus-front.svg",
  43319. extra: 455/446,
  43320. bottom: 15/470
  43321. },
  43322. form: "allusus",
  43323. },
  43324. },
  43325. [
  43326. {
  43327. name: "Macro",
  43328. height: math.unit(350, "meters"),
  43329. default: true,
  43330. form: "peacekeeper"
  43331. },
  43332. {
  43333. name: "Macro",
  43334. height: math.unit(270, "meters"),
  43335. default: true,
  43336. form: "allusus"
  43337. },
  43338. ],
  43339. {
  43340. "peacekeeper": {
  43341. name: "Peacekeeper",
  43342. default: true
  43343. },
  43344. "allusus": {
  43345. name: "Allusus",
  43346. },
  43347. }
  43348. ))
  43349. characterMakers.push(() => makeCharacter(
  43350. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43351. {
  43352. front: {
  43353. height: math.unit(15, "feet"),
  43354. name: "Front",
  43355. image: {
  43356. source: "./media/characters/hypatia/front.svg",
  43357. extra: 1653/1591,
  43358. bottom: 79/1732
  43359. }
  43360. },
  43361. },
  43362. [
  43363. {
  43364. name: "Normal",
  43365. height: math.unit(15, "feet")
  43366. },
  43367. {
  43368. name: "Small",
  43369. height: math.unit(300, "feet")
  43370. },
  43371. {
  43372. name: "Macro",
  43373. height: math.unit(2500, "feet"),
  43374. default: true
  43375. },
  43376. {
  43377. name: "Mega Macro",
  43378. height: math.unit(1500, "miles")
  43379. },
  43380. {
  43381. name: "Giga Macro",
  43382. height: math.unit(1.5e6, "miles")
  43383. },
  43384. ]
  43385. ))
  43386. characterMakers.push(() => makeCharacter(
  43387. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43388. {
  43389. front: {
  43390. height: math.unit(6, "feet"),
  43391. weight: math.unit(200, "lb"),
  43392. name: "Front",
  43393. image: {
  43394. source: "./media/characters/wulver/front.svg",
  43395. extra: 1724/1632,
  43396. bottom: 130/1854
  43397. }
  43398. },
  43399. frontNsfw: {
  43400. height: math.unit(6, "feet"),
  43401. weight: math.unit(200, "lb"),
  43402. name: "Front (NSFW)",
  43403. image: {
  43404. source: "./media/characters/wulver/front-nsfw.svg",
  43405. extra: 1724/1632,
  43406. bottom: 130/1854
  43407. }
  43408. },
  43409. },
  43410. [
  43411. {
  43412. name: "Human-Sized",
  43413. height: math.unit(6, "feet")
  43414. },
  43415. {
  43416. name: "Normal",
  43417. height: math.unit(4, "meters"),
  43418. default: true
  43419. },
  43420. {
  43421. name: "Large",
  43422. height: math.unit(6, "m")
  43423. },
  43424. ]
  43425. ))
  43426. characterMakers.push(() => makeCharacter(
  43427. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43428. {
  43429. front: {
  43430. height: math.unit(7, "feet"),
  43431. name: "Front",
  43432. image: {
  43433. source: "./media/characters/maru/front.svg",
  43434. extra: 1595/1570,
  43435. bottom: 0/1595
  43436. }
  43437. },
  43438. },
  43439. [
  43440. {
  43441. name: "Normal",
  43442. height: math.unit(7, "feet"),
  43443. default: true
  43444. },
  43445. {
  43446. name: "Macro",
  43447. height: math.unit(700, "feet")
  43448. },
  43449. {
  43450. name: "Mega Macro",
  43451. height: math.unit(25, "miles")
  43452. },
  43453. ]
  43454. ))
  43455. characterMakers.push(() => makeCharacter(
  43456. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43457. {
  43458. front: {
  43459. height: math.unit(6, "feet"),
  43460. weight: math.unit(170, "lb"),
  43461. name: "Front",
  43462. image: {
  43463. source: "./media/characters/xenon/front.svg",
  43464. extra: 1376/1305,
  43465. bottom: 56/1432
  43466. }
  43467. },
  43468. back: {
  43469. height: math.unit(6, "feet"),
  43470. weight: math.unit(170, "lb"),
  43471. name: "Back",
  43472. image: {
  43473. source: "./media/characters/xenon/back.svg",
  43474. extra: 1328/1259,
  43475. bottom: 95/1423
  43476. }
  43477. },
  43478. maw: {
  43479. height: math.unit(0.52, "feet"),
  43480. name: "Maw",
  43481. image: {
  43482. source: "./media/characters/xenon/maw.svg"
  43483. }
  43484. },
  43485. handLeft: {
  43486. height: math.unit(0.82 * 169 / 153, "feet"),
  43487. name: "Hand (Left)",
  43488. image: {
  43489. source: "./media/characters/xenon/hand-left.svg"
  43490. }
  43491. },
  43492. handRight: {
  43493. height: math.unit(0.82, "feet"),
  43494. name: "Hand (Right)",
  43495. image: {
  43496. source: "./media/characters/xenon/hand-right.svg"
  43497. }
  43498. },
  43499. footLeft: {
  43500. height: math.unit(1.13, "feet"),
  43501. name: "Foot (Left)",
  43502. image: {
  43503. source: "./media/characters/xenon/foot-left.svg"
  43504. }
  43505. },
  43506. footRight: {
  43507. height: math.unit(1.13 * 194 / 196, "feet"),
  43508. name: "Foot (Right)",
  43509. image: {
  43510. source: "./media/characters/xenon/foot-right.svg"
  43511. }
  43512. },
  43513. },
  43514. [
  43515. {
  43516. name: "Micro",
  43517. height: math.unit(0.8, "inches")
  43518. },
  43519. {
  43520. name: "Normal",
  43521. height: math.unit(6, "feet")
  43522. },
  43523. {
  43524. name: "Macro",
  43525. height: math.unit(50, "feet"),
  43526. default: true
  43527. },
  43528. {
  43529. name: "Macro+",
  43530. height: math.unit(250, "feet")
  43531. },
  43532. {
  43533. name: "Megamacro",
  43534. height: math.unit(1500, "feet")
  43535. },
  43536. ]
  43537. ))
  43538. characterMakers.push(() => makeCharacter(
  43539. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43540. {
  43541. front: {
  43542. height: math.unit(7 + 5/12, "feet"),
  43543. name: "Front",
  43544. image: {
  43545. source: "./media/characters/zane/front.svg",
  43546. extra: 1260/1203,
  43547. bottom: 94/1354
  43548. }
  43549. },
  43550. back: {
  43551. height: math.unit(5.05, "feet"),
  43552. name: "Back",
  43553. image: {
  43554. source: "./media/characters/zane/back.svg",
  43555. extra: 893/829,
  43556. bottom: 30/923
  43557. }
  43558. },
  43559. werewolf: {
  43560. height: math.unit(11, "feet"),
  43561. name: "Werewolf",
  43562. image: {
  43563. source: "./media/characters/zane/werewolf.svg",
  43564. extra: 1383/1323,
  43565. bottom: 89/1472
  43566. }
  43567. },
  43568. foot: {
  43569. height: math.unit(1.46, "feet"),
  43570. name: "Foot",
  43571. image: {
  43572. source: "./media/characters/zane/foot.svg"
  43573. }
  43574. },
  43575. footFront: {
  43576. height: math.unit(0.784, "feet"),
  43577. name: "Foot (Front)",
  43578. image: {
  43579. source: "./media/characters/zane/foot-front.svg"
  43580. }
  43581. },
  43582. dick: {
  43583. height: math.unit(1.95, "feet"),
  43584. name: "Dick",
  43585. image: {
  43586. source: "./media/characters/zane/dick.svg"
  43587. }
  43588. },
  43589. dickWerewolf: {
  43590. height: math.unit(3.77, "feet"),
  43591. name: "Dick (Werewolf)",
  43592. image: {
  43593. source: "./media/characters/zane/dick.svg"
  43594. }
  43595. },
  43596. },
  43597. [
  43598. {
  43599. name: "Normal",
  43600. height: math.unit(7 + 5/12, "feet"),
  43601. default: true
  43602. },
  43603. ]
  43604. ))
  43605. characterMakers.push(() => makeCharacter(
  43606. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43607. {
  43608. front: {
  43609. height: math.unit(6 + 2/12, "feet"),
  43610. weight: math.unit(284, "lb"),
  43611. name: "Front",
  43612. image: {
  43613. source: "./media/characters/benni-desparque/front.svg",
  43614. extra: 878/729,
  43615. bottom: 58/936
  43616. }
  43617. },
  43618. back: {
  43619. height: math.unit(6 + 2/12, "feet"),
  43620. weight: math.unit(284, "lb"),
  43621. name: "Back",
  43622. image: {
  43623. source: "./media/characters/benni-desparque/back.svg",
  43624. extra: 901/756,
  43625. bottom: 51/952
  43626. }
  43627. },
  43628. dressed: {
  43629. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43630. weight: math.unit(284, "lb"),
  43631. name: "Dressed",
  43632. image: {
  43633. source: "./media/characters/benni-desparque/dressed.svg",
  43634. extra: 1514/1276,
  43635. bottom: 65/1579
  43636. }
  43637. },
  43638. hand: {
  43639. height: math.unit(1.28, "feet"),
  43640. name: "Hand",
  43641. image: {
  43642. source: "./media/characters/benni-desparque/hand.svg"
  43643. }
  43644. },
  43645. foot: {
  43646. height: math.unit(1.53, "feet"),
  43647. name: "Foot",
  43648. image: {
  43649. source: "./media/characters/benni-desparque/foot.svg"
  43650. }
  43651. },
  43652. aiControlUnit: {
  43653. height: math.unit(0.175, "feet"),
  43654. name: "AI Control Unit",
  43655. image: {
  43656. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43657. }
  43658. },
  43659. },
  43660. [
  43661. {
  43662. name: "Civilian",
  43663. height: math.unit(6 + 2/12, "feet")
  43664. },
  43665. {
  43666. name: "Normal",
  43667. height: math.unit(98, "feet"),
  43668. default: true
  43669. },
  43670. {
  43671. name: "Kaiju Fighter",
  43672. height: math.unit(268, "feet")
  43673. },
  43674. ]
  43675. ))
  43676. characterMakers.push(() => makeCharacter(
  43677. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43678. {
  43679. front: {
  43680. height: math.unit(5, "feet"),
  43681. weight: math.unit(105, "lb"),
  43682. name: "Front",
  43683. image: {
  43684. source: "./media/characters/maxine/front.svg",
  43685. extra: 1386/1250,
  43686. bottom: 71/1457
  43687. }
  43688. },
  43689. },
  43690. [
  43691. {
  43692. name: "Normal",
  43693. height: math.unit(5, "feet"),
  43694. default: true
  43695. },
  43696. ]
  43697. ))
  43698. characterMakers.push(() => makeCharacter(
  43699. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43700. {
  43701. front: {
  43702. height: math.unit(11 + 7/12, "feet"),
  43703. weight: math.unit(9576, "lb"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/scaly/front.svg",
  43707. extra: 888/867,
  43708. bottom: 36/924
  43709. }
  43710. },
  43711. },
  43712. [
  43713. {
  43714. name: "Normal",
  43715. height: math.unit(11 + 7/12, "feet"),
  43716. default: true
  43717. },
  43718. ]
  43719. ))
  43720. characterMakers.push(() => makeCharacter(
  43721. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43722. {
  43723. front: {
  43724. height: math.unit(6 + 3/12, "feet"),
  43725. name: "Front",
  43726. image: {
  43727. source: "./media/characters/saelria/front.svg",
  43728. extra: 1243/1138,
  43729. bottom: 46/1289
  43730. }
  43731. },
  43732. },
  43733. [
  43734. {
  43735. name: "Micro",
  43736. height: math.unit(6, "inches"),
  43737. },
  43738. {
  43739. name: "Normal",
  43740. height: math.unit(6 + 3/12, "feet"),
  43741. default: true
  43742. },
  43743. {
  43744. name: "Macro",
  43745. height: math.unit(25, "feet")
  43746. },
  43747. ]
  43748. ))
  43749. characterMakers.push(() => makeCharacter(
  43750. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43751. {
  43752. front: {
  43753. height: math.unit(80, "meters"),
  43754. weight: math.unit(7000, "tonnes"),
  43755. name: "Front",
  43756. image: {
  43757. source: "./media/characters/tef/front.svg",
  43758. extra: 2036/1991,
  43759. bottom: 54/2090
  43760. }
  43761. },
  43762. back: {
  43763. height: math.unit(80, "meters"),
  43764. weight: math.unit(7000, "tonnes"),
  43765. name: "Back",
  43766. image: {
  43767. source: "./media/characters/tef/back.svg",
  43768. extra: 2036/1991,
  43769. bottom: 54/2090
  43770. }
  43771. },
  43772. },
  43773. [
  43774. {
  43775. name: "Macro",
  43776. height: math.unit(80, "meters"),
  43777. default: true
  43778. },
  43779. ]
  43780. ))
  43781. characterMakers.push(() => makeCharacter(
  43782. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43783. {
  43784. front: {
  43785. height: math.unit(13, "feet"),
  43786. weight: math.unit(6, "tons"),
  43787. name: "Front",
  43788. image: {
  43789. source: "./media/characters/rover/front.svg",
  43790. extra: 1233/1156,
  43791. bottom: 50/1283
  43792. }
  43793. },
  43794. back: {
  43795. height: math.unit(13, "feet"),
  43796. weight: math.unit(6, "tons"),
  43797. name: "Back",
  43798. image: {
  43799. source: "./media/characters/rover/back.svg",
  43800. extra: 1327/1258,
  43801. bottom: 39/1366
  43802. }
  43803. },
  43804. },
  43805. [
  43806. {
  43807. name: "Normal",
  43808. height: math.unit(13, "feet"),
  43809. default: true
  43810. },
  43811. {
  43812. name: "Macro",
  43813. height: math.unit(1300, "feet")
  43814. },
  43815. {
  43816. name: "Megamacro",
  43817. height: math.unit(1300, "miles")
  43818. },
  43819. {
  43820. name: "Gigamacro",
  43821. height: math.unit(1300000, "miles")
  43822. },
  43823. ]
  43824. ))
  43825. characterMakers.push(() => makeCharacter(
  43826. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43827. {
  43828. front: {
  43829. height: math.unit(10, "feet"),
  43830. weight: math.unit(500, "lb"),
  43831. name: "Front",
  43832. image: {
  43833. source: "./media/characters/ariz/front.svg",
  43834. extra: 461/450,
  43835. bottom: 16/477
  43836. }
  43837. },
  43838. },
  43839. [
  43840. {
  43841. name: "MiniMacro",
  43842. height: math.unit(10, "feet"),
  43843. default: true
  43844. },
  43845. ]
  43846. ))
  43847. characterMakers.push(() => makeCharacter(
  43848. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43849. {
  43850. front: {
  43851. height: math.unit(6, "feet"),
  43852. weight: math.unit(140, "lb"),
  43853. name: "Front",
  43854. image: {
  43855. source: "./media/characters/sigrun/front.svg",
  43856. extra: 1418/1359,
  43857. bottom: 27/1445
  43858. }
  43859. },
  43860. },
  43861. [
  43862. {
  43863. name: "Macro",
  43864. height: math.unit(35, "feet"),
  43865. default: true
  43866. },
  43867. ]
  43868. ))
  43869. characterMakers.push(() => makeCharacter(
  43870. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43871. {
  43872. front: {
  43873. height: math.unit(6, "feet"),
  43874. weight: math.unit(150, "lb"),
  43875. name: "Front",
  43876. image: {
  43877. source: "./media/characters/numin/front.svg",
  43878. extra: 1433/1388,
  43879. bottom: 12/1445
  43880. }
  43881. },
  43882. },
  43883. [
  43884. {
  43885. name: "Macro",
  43886. height: math.unit(21.5, "km"),
  43887. default: true
  43888. },
  43889. ]
  43890. ))
  43891. characterMakers.push(() => makeCharacter(
  43892. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43893. {
  43894. front: {
  43895. height: math.unit(6, "feet"),
  43896. weight: math.unit(463, "lb"),
  43897. name: "Front",
  43898. image: {
  43899. source: "./media/characters/melwa/front.svg",
  43900. extra: 1307/1248,
  43901. bottom: 93/1400
  43902. }
  43903. },
  43904. },
  43905. [
  43906. {
  43907. name: "Macro",
  43908. height: math.unit(50, "meters"),
  43909. default: true
  43910. },
  43911. ]
  43912. ))
  43913. characterMakers.push(() => makeCharacter(
  43914. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43915. {
  43916. front: {
  43917. height: math.unit(325, "feet"),
  43918. name: "Front",
  43919. image: {
  43920. source: "./media/characters/zorkaiju/front.svg",
  43921. extra: 1955/1814,
  43922. bottom: 40/1995
  43923. }
  43924. },
  43925. frontExtended: {
  43926. height: math.unit(325, "feet"),
  43927. name: "Front (Extended)",
  43928. image: {
  43929. source: "./media/characters/zorkaiju/front-extended.svg",
  43930. extra: 1955/1814,
  43931. bottom: 40/1995
  43932. }
  43933. },
  43934. side: {
  43935. height: math.unit(325, "feet"),
  43936. name: "Side",
  43937. image: {
  43938. source: "./media/characters/zorkaiju/side.svg",
  43939. extra: 1495/1396,
  43940. bottom: 17/1512
  43941. }
  43942. },
  43943. sideExtended: {
  43944. height: math.unit(325, "feet"),
  43945. name: "Side (Extended)",
  43946. image: {
  43947. source: "./media/characters/zorkaiju/side-extended.svg",
  43948. extra: 1495/1396,
  43949. bottom: 17/1512
  43950. }
  43951. },
  43952. back: {
  43953. height: math.unit(325, "feet"),
  43954. name: "Back",
  43955. image: {
  43956. source: "./media/characters/zorkaiju/back.svg",
  43957. extra: 1959/1821,
  43958. bottom: 31/1990
  43959. }
  43960. },
  43961. backExtended: {
  43962. height: math.unit(325, "feet"),
  43963. name: "Back (Extended)",
  43964. image: {
  43965. source: "./media/characters/zorkaiju/back-extended.svg",
  43966. extra: 1959/1821,
  43967. bottom: 31/1990
  43968. }
  43969. },
  43970. hand: {
  43971. height: math.unit(58.4, "feet"),
  43972. name: "Hand",
  43973. image: {
  43974. source: "./media/characters/zorkaiju/hand.svg"
  43975. }
  43976. },
  43977. handExtended: {
  43978. height: math.unit(61.4, "feet"),
  43979. name: "Hand (Extended)",
  43980. image: {
  43981. source: "./media/characters/zorkaiju/hand-extended.svg"
  43982. }
  43983. },
  43984. foot: {
  43985. height: math.unit(95, "feet"),
  43986. name: "Foot",
  43987. image: {
  43988. source: "./media/characters/zorkaiju/foot.svg"
  43989. }
  43990. },
  43991. leftArm: {
  43992. height: math.unit(59, "feet"),
  43993. name: "Left Arm",
  43994. image: {
  43995. source: "./media/characters/zorkaiju/left-arm.svg"
  43996. }
  43997. },
  43998. rightArm: {
  43999. height: math.unit(59, "feet"),
  44000. name: "Right Arm",
  44001. image: {
  44002. source: "./media/characters/zorkaiju/right-arm.svg"
  44003. }
  44004. },
  44005. leftArmExtended: {
  44006. height: math.unit(59 * 1.033546, "feet"),
  44007. name: "Left Arm (Extended)",
  44008. image: {
  44009. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  44010. }
  44011. },
  44012. rightArmExtended: {
  44013. height: math.unit(59 * 1.0496, "feet"),
  44014. name: "Right Arm (Extended)",
  44015. image: {
  44016. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  44017. }
  44018. },
  44019. tail: {
  44020. height: math.unit(104, "feet"),
  44021. name: "Tail",
  44022. image: {
  44023. source: "./media/characters/zorkaiju/tail.svg"
  44024. }
  44025. },
  44026. tailExtended: {
  44027. height: math.unit(104, "feet"),
  44028. name: "Tail (Extended)",
  44029. image: {
  44030. source: "./media/characters/zorkaiju/tail-extended.svg"
  44031. }
  44032. },
  44033. tailBottom: {
  44034. height: math.unit(104, "feet"),
  44035. name: "Tail Bottom",
  44036. image: {
  44037. source: "./media/characters/zorkaiju/tail-bottom.svg"
  44038. }
  44039. },
  44040. crystal: {
  44041. height: math.unit(27.54, "feet"),
  44042. name: "Crystal",
  44043. image: {
  44044. source: "./media/characters/zorkaiju/crystal.svg"
  44045. }
  44046. },
  44047. },
  44048. [
  44049. {
  44050. name: "Kaiju",
  44051. height: math.unit(325, "feet"),
  44052. default: true
  44053. },
  44054. ]
  44055. ))
  44056. characterMakers.push(() => makeCharacter(
  44057. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  44058. {
  44059. front: {
  44060. height: math.unit(6 + 1/12, "feet"),
  44061. weight: math.unit(115, "lb"),
  44062. name: "Front",
  44063. image: {
  44064. source: "./media/characters/bailey-belfry/front.svg",
  44065. extra: 1240/1121,
  44066. bottom: 101/1341
  44067. }
  44068. },
  44069. },
  44070. [
  44071. {
  44072. name: "Normal",
  44073. height: math.unit(6 + 1/12, "feet"),
  44074. default: true
  44075. },
  44076. ]
  44077. ))
  44078. characterMakers.push(() => makeCharacter(
  44079. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  44080. {
  44081. side: {
  44082. height: math.unit(4, "meters"),
  44083. weight: math.unit(250, "kg"),
  44084. name: "Side",
  44085. image: {
  44086. source: "./media/characters/blacky/side.svg",
  44087. extra: 1027/919,
  44088. bottom: 43/1070
  44089. }
  44090. },
  44091. maw: {
  44092. height: math.unit(1, "meters"),
  44093. name: "Maw",
  44094. image: {
  44095. source: "./media/characters/blacky/maw.svg"
  44096. }
  44097. },
  44098. paw: {
  44099. height: math.unit(1, "meters"),
  44100. name: "Paw",
  44101. image: {
  44102. source: "./media/characters/blacky/paw.svg"
  44103. }
  44104. },
  44105. },
  44106. [
  44107. {
  44108. name: "Normal",
  44109. height: math.unit(4, "meters"),
  44110. default: true
  44111. },
  44112. ]
  44113. ))
  44114. characterMakers.push(() => makeCharacter(
  44115. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  44116. {
  44117. front: {
  44118. height: math.unit(170, "cm"),
  44119. weight: math.unit(66, "kg"),
  44120. name: "Front",
  44121. image: {
  44122. source: "./media/characters/thux-ei/front.svg",
  44123. extra: 1109/1011,
  44124. bottom: 8/1117
  44125. }
  44126. },
  44127. },
  44128. [
  44129. {
  44130. name: "Normal",
  44131. height: math.unit(170, "cm"),
  44132. default: true
  44133. },
  44134. ]
  44135. ))
  44136. characterMakers.push(() => makeCharacter(
  44137. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  44138. {
  44139. front: {
  44140. height: math.unit(5, "feet"),
  44141. weight: math.unit(120, "lb"),
  44142. name: "Front",
  44143. image: {
  44144. source: "./media/characters/roxanne-voltaire/front.svg",
  44145. extra: 1901/1779,
  44146. bottom: 53/1954
  44147. }
  44148. },
  44149. },
  44150. [
  44151. {
  44152. name: "Normal",
  44153. height: math.unit(5, "feet"),
  44154. default: true
  44155. },
  44156. {
  44157. name: "Giant",
  44158. height: math.unit(50, "feet")
  44159. },
  44160. {
  44161. name: "Titan",
  44162. height: math.unit(500, "feet")
  44163. },
  44164. {
  44165. name: "Macro",
  44166. height: math.unit(5000, "feet")
  44167. },
  44168. {
  44169. name: "Megamacro",
  44170. height: math.unit(50000, "feet")
  44171. },
  44172. {
  44173. name: "Gigamacro",
  44174. height: math.unit(500000, "feet")
  44175. },
  44176. {
  44177. name: "Teramacro",
  44178. height: math.unit(5e6, "feet")
  44179. },
  44180. ]
  44181. ))
  44182. characterMakers.push(() => makeCharacter(
  44183. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  44184. {
  44185. front: {
  44186. height: math.unit(6 + 2/12, "feet"),
  44187. name: "Front",
  44188. image: {
  44189. source: "./media/characters/squeaks/front.svg",
  44190. extra: 1823/1768,
  44191. bottom: 138/1961
  44192. }
  44193. },
  44194. },
  44195. [
  44196. {
  44197. name: "Micro",
  44198. height: math.unit(0.5, "inches")
  44199. },
  44200. {
  44201. name: "Normal",
  44202. height: math.unit(6 + 2/12, "feet"),
  44203. default: true
  44204. },
  44205. {
  44206. name: "Macro",
  44207. height: math.unit(600, "feet")
  44208. },
  44209. ]
  44210. ))
  44211. characterMakers.push(() => makeCharacter(
  44212. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44213. {
  44214. front: {
  44215. height: math.unit(1.72, "meters"),
  44216. name: "Front",
  44217. image: {
  44218. source: "./media/characters/archinger/front.svg",
  44219. extra: 1861/1675,
  44220. bottom: 125/1986
  44221. }
  44222. },
  44223. back: {
  44224. height: math.unit(1.72, "meters"),
  44225. name: "Back",
  44226. image: {
  44227. source: "./media/characters/archinger/back.svg",
  44228. extra: 1844/1701,
  44229. bottom: 104/1948
  44230. }
  44231. },
  44232. cock: {
  44233. height: math.unit(0.59, "feet"),
  44234. name: "Cock",
  44235. image: {
  44236. source: "./media/characters/archinger/cock.svg"
  44237. }
  44238. },
  44239. },
  44240. [
  44241. {
  44242. name: "Normal",
  44243. height: math.unit(1.72, "meters"),
  44244. default: true
  44245. },
  44246. {
  44247. name: "Macro",
  44248. height: math.unit(84, "meters")
  44249. },
  44250. {
  44251. name: "Macro+",
  44252. height: math.unit(112, "meters")
  44253. },
  44254. {
  44255. name: "Macro++",
  44256. height: math.unit(960, "meters")
  44257. },
  44258. {
  44259. name: "Macro+++",
  44260. height: math.unit(4, "km")
  44261. },
  44262. {
  44263. name: "Macro++++",
  44264. height: math.unit(48, "km")
  44265. },
  44266. {
  44267. name: "Macro+++++",
  44268. height: math.unit(4500, "km")
  44269. },
  44270. ]
  44271. ))
  44272. characterMakers.push(() => makeCharacter(
  44273. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44274. {
  44275. front: {
  44276. height: math.unit(5 + 5/12, "feet"),
  44277. name: "Front",
  44278. image: {
  44279. source: "./media/characters/alsnapz/front.svg",
  44280. extra: 1157/1065,
  44281. bottom: 42/1199
  44282. }
  44283. },
  44284. },
  44285. [
  44286. {
  44287. name: "Normal",
  44288. height: math.unit(5 + 5/12, "feet"),
  44289. default: true
  44290. },
  44291. ]
  44292. ))
  44293. characterMakers.push(() => makeCharacter(
  44294. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44295. {
  44296. side: {
  44297. height: math.unit(3.2, "earths"),
  44298. name: "Side",
  44299. image: {
  44300. source: "./media/characters/mag/side.svg",
  44301. extra: 1331/1008,
  44302. bottom: 52/1383
  44303. }
  44304. },
  44305. wing: {
  44306. height: math.unit(1.94, "earths"),
  44307. name: "Wing",
  44308. image: {
  44309. source: "./media/characters/mag/wing.svg"
  44310. }
  44311. },
  44312. dick: {
  44313. height: math.unit(1.8, "earths"),
  44314. name: "Dick",
  44315. image: {
  44316. source: "./media/characters/mag/dick.svg"
  44317. }
  44318. },
  44319. ass: {
  44320. height: math.unit(1.33, "earths"),
  44321. name: "Ass",
  44322. image: {
  44323. source: "./media/characters/mag/ass.svg"
  44324. }
  44325. },
  44326. head: {
  44327. height: math.unit(1.1, "earths"),
  44328. name: "Head",
  44329. image: {
  44330. source: "./media/characters/mag/head.svg"
  44331. }
  44332. },
  44333. maw: {
  44334. height: math.unit(1.62, "earths"),
  44335. name: "Maw",
  44336. image: {
  44337. source: "./media/characters/mag/maw.svg"
  44338. }
  44339. },
  44340. },
  44341. [
  44342. {
  44343. name: "Small",
  44344. height: math.unit(162, "feet")
  44345. },
  44346. {
  44347. name: "Normal",
  44348. height: math.unit(3.2, "earths"),
  44349. default: true
  44350. },
  44351. ]
  44352. ))
  44353. characterMakers.push(() => makeCharacter(
  44354. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44355. {
  44356. front: {
  44357. height: math.unit(512, "feet"),
  44358. weight: math.unit(63509, "tonnes"),
  44359. name: "Front",
  44360. image: {
  44361. source: "./media/characters/vorrel-harroc/front.svg",
  44362. extra: 1075/1063,
  44363. bottom: 62/1137
  44364. }
  44365. },
  44366. },
  44367. [
  44368. {
  44369. name: "Normal",
  44370. height: math.unit(10, "feet")
  44371. },
  44372. {
  44373. name: "Macro",
  44374. height: math.unit(512, "feet"),
  44375. default: true
  44376. },
  44377. {
  44378. name: "Megamacro",
  44379. height: math.unit(256, "miles")
  44380. },
  44381. {
  44382. name: "Gigamacro",
  44383. height: math.unit(4096, "miles")
  44384. },
  44385. ]
  44386. ))
  44387. characterMakers.push(() => makeCharacter(
  44388. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44389. {
  44390. side: {
  44391. height: math.unit(50, "feet"),
  44392. name: "Side",
  44393. image: {
  44394. source: "./media/characters/froimar/side.svg",
  44395. extra: 855/638,
  44396. bottom: 99/954
  44397. }
  44398. },
  44399. },
  44400. [
  44401. {
  44402. name: "Macro",
  44403. height: math.unit(50, "feet"),
  44404. default: true
  44405. },
  44406. ]
  44407. ))
  44408. characterMakers.push(() => makeCharacter(
  44409. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44410. {
  44411. front: {
  44412. height: math.unit(210, "miles"),
  44413. name: "Front",
  44414. image: {
  44415. source: "./media/characters/timothy/front.svg",
  44416. extra: 1007/943,
  44417. bottom: 62/1069
  44418. }
  44419. },
  44420. frontSkirt: {
  44421. height: math.unit(210, "miles"),
  44422. name: "Front (Skirt)",
  44423. image: {
  44424. source: "./media/characters/timothy/front-skirt.svg",
  44425. extra: 1007/943,
  44426. bottom: 62/1069
  44427. }
  44428. },
  44429. frontCoat: {
  44430. height: math.unit(210, "miles"),
  44431. name: "Front (Coat)",
  44432. image: {
  44433. source: "./media/characters/timothy/front-coat.svg",
  44434. extra: 1007/943,
  44435. bottom: 62/1069
  44436. }
  44437. },
  44438. },
  44439. [
  44440. {
  44441. name: "Macro",
  44442. height: math.unit(210, "miles"),
  44443. default: true
  44444. },
  44445. {
  44446. name: "Megamacro",
  44447. height: math.unit(210000, "miles")
  44448. },
  44449. ]
  44450. ))
  44451. characterMakers.push(() => makeCharacter(
  44452. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44453. {
  44454. front: {
  44455. height: math.unit(188, "feet"),
  44456. name: "Front",
  44457. image: {
  44458. source: "./media/characters/pyotr/front.svg",
  44459. extra: 1912/1826,
  44460. bottom: 18/1930
  44461. }
  44462. },
  44463. },
  44464. [
  44465. {
  44466. name: "Macro",
  44467. height: math.unit(188, "feet"),
  44468. default: true
  44469. },
  44470. {
  44471. name: "Megamacro",
  44472. height: math.unit(8, "miles")
  44473. },
  44474. ]
  44475. ))
  44476. characterMakers.push(() => makeCharacter(
  44477. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44478. {
  44479. side: {
  44480. height: math.unit(10, "feet"),
  44481. weight: math.unit(4500, "lb"),
  44482. name: "Side",
  44483. image: {
  44484. source: "./media/characters/ackart/side.svg",
  44485. extra: 1776/1668,
  44486. bottom: 116/1892
  44487. }
  44488. },
  44489. },
  44490. [
  44491. {
  44492. name: "Normal",
  44493. height: math.unit(10, "feet"),
  44494. default: true
  44495. },
  44496. ]
  44497. ))
  44498. characterMakers.push(() => makeCharacter(
  44499. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44500. {
  44501. side: {
  44502. height: math.unit(21, "feet"),
  44503. name: "Side",
  44504. image: {
  44505. source: "./media/characters/nolow/side.svg",
  44506. extra: 1484/1434,
  44507. bottom: 85/1569
  44508. }
  44509. },
  44510. sideErect: {
  44511. height: math.unit(21, "feet"),
  44512. name: "Side (Erect)",
  44513. image: {
  44514. source: "./media/characters/nolow/side-erect.svg",
  44515. extra: 1484/1434,
  44516. bottom: 85/1569
  44517. }
  44518. },
  44519. },
  44520. [
  44521. {
  44522. name: "Regular",
  44523. height: math.unit(12, "feet")
  44524. },
  44525. {
  44526. name: "Big Chee",
  44527. height: math.unit(21, "feet"),
  44528. default: true
  44529. },
  44530. ]
  44531. ))
  44532. characterMakers.push(() => makeCharacter(
  44533. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44534. {
  44535. front: {
  44536. height: math.unit(7, "feet"),
  44537. weight: math.unit(250, "lb"),
  44538. name: "Front",
  44539. image: {
  44540. source: "./media/characters/nines/front.svg",
  44541. extra: 1741/1607,
  44542. bottom: 41/1782
  44543. }
  44544. },
  44545. side: {
  44546. height: math.unit(7, "feet"),
  44547. weight: math.unit(250, "lb"),
  44548. name: "Side",
  44549. image: {
  44550. source: "./media/characters/nines/side.svg",
  44551. extra: 1854/1735,
  44552. bottom: 93/1947
  44553. }
  44554. },
  44555. back: {
  44556. height: math.unit(7, "feet"),
  44557. weight: math.unit(250, "lb"),
  44558. name: "Back",
  44559. image: {
  44560. source: "./media/characters/nines/back.svg",
  44561. extra: 1748/1615,
  44562. bottom: 20/1768
  44563. }
  44564. },
  44565. },
  44566. [
  44567. {
  44568. name: "Megamacro",
  44569. height: math.unit(99, "km"),
  44570. default: true
  44571. },
  44572. ]
  44573. ))
  44574. characterMakers.push(() => makeCharacter(
  44575. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44576. {
  44577. front: {
  44578. height: math.unit(5 + 10/12, "feet"),
  44579. weight: math.unit(210, "lb"),
  44580. name: "Front",
  44581. image: {
  44582. source: "./media/characters/zenith/front.svg",
  44583. extra: 1531/1452,
  44584. bottom: 198/1729
  44585. }
  44586. },
  44587. back: {
  44588. height: math.unit(5 + 10/12, "feet"),
  44589. weight: math.unit(210, "lb"),
  44590. name: "Back",
  44591. image: {
  44592. source: "./media/characters/zenith/back.svg",
  44593. extra: 1571/1487,
  44594. bottom: 75/1646
  44595. }
  44596. },
  44597. },
  44598. [
  44599. {
  44600. name: "Normal",
  44601. height: math.unit(5 + 10/12, "feet"),
  44602. default: true
  44603. }
  44604. ]
  44605. ))
  44606. characterMakers.push(() => makeCharacter(
  44607. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44608. {
  44609. front: {
  44610. height: math.unit(4, "feet"),
  44611. weight: math.unit(60, "lb"),
  44612. name: "Front",
  44613. image: {
  44614. source: "./media/characters/jasper/front.svg",
  44615. extra: 1450/1379,
  44616. bottom: 19/1469
  44617. }
  44618. },
  44619. },
  44620. [
  44621. {
  44622. name: "Normal",
  44623. height: math.unit(4, "feet"),
  44624. default: true
  44625. },
  44626. ]
  44627. ))
  44628. characterMakers.push(() => makeCharacter(
  44629. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44630. {
  44631. front: {
  44632. height: math.unit(6 + 5/12, "feet"),
  44633. weight: math.unit(290, "lb"),
  44634. name: "Front",
  44635. image: {
  44636. source: "./media/characters/tiberius-thyben/front.svg",
  44637. extra: 757/739,
  44638. bottom: 39/796
  44639. }
  44640. },
  44641. },
  44642. [
  44643. {
  44644. name: "Micro",
  44645. height: math.unit(1.5, "inches")
  44646. },
  44647. {
  44648. name: "Normal",
  44649. height: math.unit(6 + 5/12, "feet"),
  44650. default: true
  44651. },
  44652. {
  44653. name: "Macro",
  44654. height: math.unit(300, "feet")
  44655. },
  44656. ]
  44657. ))
  44658. characterMakers.push(() => makeCharacter(
  44659. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44660. {
  44661. front: {
  44662. height: math.unit(5 + 6/12, "feet"),
  44663. weight: math.unit(60, "kg"),
  44664. name: "Front",
  44665. image: {
  44666. source: "./media/characters/sabre/front.svg",
  44667. extra: 738/671,
  44668. bottom: 27/765
  44669. }
  44670. },
  44671. },
  44672. [
  44673. {
  44674. name: "Teeny",
  44675. height: math.unit(2, "inches")
  44676. },
  44677. {
  44678. name: "Smol",
  44679. height: math.unit(8, "inches")
  44680. },
  44681. {
  44682. name: "Normal",
  44683. height: math.unit(5 + 6/12, "feet"),
  44684. default: true
  44685. },
  44686. {
  44687. name: "Mini-Macro",
  44688. height: math.unit(15, "feet")
  44689. },
  44690. {
  44691. name: "Macro",
  44692. height: math.unit(50, "feet")
  44693. },
  44694. ]
  44695. ))
  44696. characterMakers.push(() => makeCharacter(
  44697. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44698. {
  44699. front: {
  44700. height: math.unit(6 + 4/12, "feet"),
  44701. weight: math.unit(170, "lb"),
  44702. name: "Front",
  44703. image: {
  44704. source: "./media/characters/charlie/front.svg",
  44705. extra: 1348/1228,
  44706. bottom: 15/1363
  44707. }
  44708. },
  44709. },
  44710. [
  44711. {
  44712. name: "Macro",
  44713. height: math.unit(1700, "meters"),
  44714. default: true
  44715. },
  44716. {
  44717. name: "MegaMacro",
  44718. height: math.unit(20400, "meters")
  44719. },
  44720. ]
  44721. ))
  44722. characterMakers.push(() => makeCharacter(
  44723. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44724. {
  44725. front: {
  44726. height: math.unit(1.96, "meters"),
  44727. weight: math.unit(220, "lb"),
  44728. name: "Front",
  44729. image: {
  44730. source: "./media/characters/susan-grant/front.svg",
  44731. extra: 482/478,
  44732. bottom: 7/489
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Normal",
  44739. height: math.unit(1.96, "meters"),
  44740. default: true
  44741. },
  44742. {
  44743. name: "Macro",
  44744. height: math.unit(76.2, "meters")
  44745. },
  44746. {
  44747. name: "MegaMacro",
  44748. height: math.unit(305, "meters")
  44749. },
  44750. {
  44751. name: "GigaMacro",
  44752. height: math.unit(1220, "meters")
  44753. },
  44754. {
  44755. name: "SuperMacro",
  44756. height: math.unit(4878, "meters")
  44757. },
  44758. ]
  44759. ))
  44760. characterMakers.push(() => makeCharacter(
  44761. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44762. {
  44763. front: {
  44764. height: math.unit(5 + 4/12, "feet"),
  44765. weight: math.unit(110, "lb"),
  44766. name: "Front",
  44767. image: {
  44768. source: "./media/characters/axel-isanov/front.svg",
  44769. extra: 1096/1065,
  44770. bottom: 13/1109
  44771. }
  44772. },
  44773. },
  44774. [
  44775. {
  44776. name: "Normal",
  44777. height: math.unit(5 + 4/12, "feet"),
  44778. default: true
  44779. },
  44780. ]
  44781. ))
  44782. characterMakers.push(() => makeCharacter(
  44783. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44784. {
  44785. front: {
  44786. height: math.unit(9, "feet"),
  44787. weight: math.unit(467, "lb"),
  44788. name: "Front",
  44789. image: {
  44790. source: "./media/characters/necahual/front.svg",
  44791. extra: 920/873,
  44792. bottom: 26/946
  44793. }
  44794. },
  44795. back: {
  44796. height: math.unit(9, "feet"),
  44797. weight: math.unit(467, "lb"),
  44798. name: "Back",
  44799. image: {
  44800. source: "./media/characters/necahual/back.svg",
  44801. extra: 930/884,
  44802. bottom: 16/946
  44803. }
  44804. },
  44805. frontUnderwear: {
  44806. height: math.unit(9, "feet"),
  44807. weight: math.unit(467, "lb"),
  44808. name: "Front (Underwear)",
  44809. image: {
  44810. source: "./media/characters/necahual/front-underwear.svg",
  44811. extra: 920/873,
  44812. bottom: 26/946
  44813. }
  44814. },
  44815. frontDressed: {
  44816. height: math.unit(9, "feet"),
  44817. weight: math.unit(467, "lb"),
  44818. name: "Front (Dressed)",
  44819. image: {
  44820. source: "./media/characters/necahual/front-dressed.svg",
  44821. extra: 920/873,
  44822. bottom: 26/946
  44823. }
  44824. },
  44825. },
  44826. [
  44827. {
  44828. name: "Comprsesed",
  44829. height: math.unit(9, "feet")
  44830. },
  44831. {
  44832. name: "Natural",
  44833. height: math.unit(15, "feet"),
  44834. default: true
  44835. },
  44836. {
  44837. name: "Boosted",
  44838. height: math.unit(50, "feet")
  44839. },
  44840. {
  44841. name: "Boosted+",
  44842. height: math.unit(150, "feet")
  44843. },
  44844. {
  44845. name: "Max",
  44846. height: math.unit(500, "feet")
  44847. },
  44848. ]
  44849. ))
  44850. characterMakers.push(() => makeCharacter(
  44851. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44852. {
  44853. front: {
  44854. height: math.unit(22 + 1/12, "feet"),
  44855. weight: math.unit(3200, "lb"),
  44856. name: "Front",
  44857. image: {
  44858. source: "./media/characters/theo-acacia/front.svg",
  44859. extra: 1796/1741,
  44860. bottom: 83/1879
  44861. }
  44862. },
  44863. frontUnderwear: {
  44864. height: math.unit(22 + 1/12, "feet"),
  44865. weight: math.unit(3200, "lb"),
  44866. name: "Front (Underwear)",
  44867. image: {
  44868. source: "./media/characters/theo-acacia/front-underwear.svg",
  44869. extra: 1796/1741,
  44870. bottom: 83/1879
  44871. }
  44872. },
  44873. frontNude: {
  44874. height: math.unit(22 + 1/12, "feet"),
  44875. weight: math.unit(3200, "lb"),
  44876. name: "Front (Nude)",
  44877. image: {
  44878. source: "./media/characters/theo-acacia/front-nude.svg",
  44879. extra: 1796/1741,
  44880. bottom: 83/1879
  44881. }
  44882. },
  44883. },
  44884. [
  44885. {
  44886. name: "Normal",
  44887. height: math.unit(22 + 1/12, "feet"),
  44888. default: true
  44889. },
  44890. ]
  44891. ))
  44892. characterMakers.push(() => makeCharacter(
  44893. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44894. {
  44895. front: {
  44896. height: math.unit(20, "feet"),
  44897. name: "Front",
  44898. image: {
  44899. source: "./media/characters/astra/front.svg",
  44900. extra: 1850/1714,
  44901. bottom: 106/1956
  44902. }
  44903. },
  44904. frontUndressed: {
  44905. height: math.unit(20, "feet"),
  44906. name: "Front (Undressed)",
  44907. image: {
  44908. source: "./media/characters/astra/front-undressed.svg",
  44909. extra: 1926/1749,
  44910. bottom: 0/1926
  44911. }
  44912. },
  44913. hand: {
  44914. height: math.unit(1.53, "feet"),
  44915. name: "Hand",
  44916. image: {
  44917. source: "./media/characters/astra/hand.svg"
  44918. }
  44919. },
  44920. paw: {
  44921. height: math.unit(1.53, "feet"),
  44922. name: "Paw",
  44923. image: {
  44924. source: "./media/characters/astra/paw.svg"
  44925. }
  44926. },
  44927. },
  44928. [
  44929. {
  44930. name: "Smallest",
  44931. height: math.unit(20, "feet")
  44932. },
  44933. {
  44934. name: "Normal",
  44935. height: math.unit(1e9, "miles"),
  44936. default: true
  44937. },
  44938. {
  44939. name: "Larger",
  44940. height: math.unit(5, "multiverses")
  44941. },
  44942. {
  44943. name: "Largest",
  44944. height: math.unit(1e9, "multiverses")
  44945. },
  44946. ]
  44947. ))
  44948. characterMakers.push(() => makeCharacter(
  44949. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44950. {
  44951. front: {
  44952. height: math.unit(8, "feet"),
  44953. name: "Front",
  44954. image: {
  44955. source: "./media/characters/breanna/front.svg",
  44956. extra: 1912/1632,
  44957. bottom: 33/1945
  44958. }
  44959. },
  44960. },
  44961. [
  44962. {
  44963. name: "Smallest",
  44964. height: math.unit(8, "feet")
  44965. },
  44966. {
  44967. name: "Normal",
  44968. height: math.unit(1, "mile"),
  44969. default: true
  44970. },
  44971. {
  44972. name: "Maximum",
  44973. height: math.unit(1500000000000, "lightyears")
  44974. },
  44975. ]
  44976. ))
  44977. characterMakers.push(() => makeCharacter(
  44978. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44979. {
  44980. front: {
  44981. height: math.unit(5 + 11/12, "feet"),
  44982. weight: math.unit(155, "lb"),
  44983. name: "Front",
  44984. image: {
  44985. source: "./media/characters/cai/front.svg",
  44986. extra: 1823/1702,
  44987. bottom: 32/1855
  44988. }
  44989. },
  44990. back: {
  44991. height: math.unit(5 + 11/12, "feet"),
  44992. weight: math.unit(155, "lb"),
  44993. name: "Back",
  44994. image: {
  44995. source: "./media/characters/cai/back.svg",
  44996. extra: 1809/1708,
  44997. bottom: 31/1840
  44998. }
  44999. },
  45000. },
  45001. [
  45002. {
  45003. name: "Normal",
  45004. height: math.unit(5 + 11/12, "feet"),
  45005. default: true
  45006. },
  45007. {
  45008. name: "Big",
  45009. height: math.unit(15, "feet")
  45010. },
  45011. {
  45012. name: "Macro",
  45013. height: math.unit(200, "feet")
  45014. },
  45015. ]
  45016. ))
  45017. characterMakers.push(() => makeCharacter(
  45018. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  45019. {
  45020. front: {
  45021. height: math.unit(5 + 6/12, "feet"),
  45022. weight: math.unit(160, "lb"),
  45023. name: "Front",
  45024. image: {
  45025. source: "./media/characters/zanna-virtuedòttir/front.svg",
  45026. extra: 1227/1174,
  45027. bottom: 37/1264
  45028. }
  45029. },
  45030. },
  45031. [
  45032. {
  45033. name: "Macro",
  45034. height: math.unit(444, "meters"),
  45035. default: true
  45036. },
  45037. ]
  45038. ))
  45039. characterMakers.push(() => makeCharacter(
  45040. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  45041. {
  45042. front: {
  45043. height: math.unit(18 + 7/12, "feet"),
  45044. name: "Front",
  45045. image: {
  45046. source: "./media/characters/rex/front.svg",
  45047. extra: 1941/1807,
  45048. bottom: 66/2007
  45049. }
  45050. },
  45051. back: {
  45052. height: math.unit(18 + 7/12, "feet"),
  45053. name: "Back",
  45054. image: {
  45055. source: "./media/characters/rex/back.svg",
  45056. extra: 1937/1822,
  45057. bottom: 42/1979
  45058. }
  45059. },
  45060. boot: {
  45061. height: math.unit(3.45, "feet"),
  45062. name: "Boot",
  45063. image: {
  45064. source: "./media/characters/rex/boot.svg"
  45065. }
  45066. },
  45067. paw: {
  45068. height: math.unit(4.17, "feet"),
  45069. name: "Paw",
  45070. image: {
  45071. source: "./media/characters/rex/paw.svg"
  45072. }
  45073. },
  45074. head: {
  45075. height: math.unit(6.728, "feet"),
  45076. name: "Head",
  45077. image: {
  45078. source: "./media/characters/rex/head.svg"
  45079. }
  45080. },
  45081. },
  45082. [
  45083. {
  45084. name: "Nano",
  45085. height: math.unit(18 + 7/12, "feet")
  45086. },
  45087. {
  45088. name: "Micro",
  45089. height: math.unit(1.5, "megameters")
  45090. },
  45091. {
  45092. name: "Normal",
  45093. height: math.unit(440, "megameters"),
  45094. default: true
  45095. },
  45096. {
  45097. name: "Macro",
  45098. height: math.unit(2.5, "gigameters")
  45099. },
  45100. {
  45101. name: "Gigamacro",
  45102. height: math.unit(2, "galaxies")
  45103. },
  45104. ]
  45105. ))
  45106. characterMakers.push(() => makeCharacter(
  45107. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  45108. {
  45109. side: {
  45110. height: math.unit(32, "feet"),
  45111. weight: math.unit(250000, "lb"),
  45112. name: "Side",
  45113. image: {
  45114. source: "./media/characters/silverwing/side.svg",
  45115. extra: 1100/1019,
  45116. bottom: 204/1304
  45117. }
  45118. },
  45119. },
  45120. [
  45121. {
  45122. name: "Normal",
  45123. height: math.unit(32, "feet"),
  45124. default: true
  45125. },
  45126. ]
  45127. ))
  45128. characterMakers.push(() => makeCharacter(
  45129. { name: "Tristan Hawthorne", species: ["skunk", "raichu", "umbreon"], tags: ["anthro"] },
  45130. {
  45131. skunkFront: {
  45132. height: math.unit(4 + 6/12, "feet"),
  45133. weight: math.unit(120, "lb"),
  45134. name: "Front",
  45135. image: {
  45136. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  45137. extra: 330/318,
  45138. bottom: 25/355
  45139. },
  45140. form: "skunk",
  45141. default: true
  45142. },
  45143. alolanUmbraichu_front: {
  45144. height: math.unit(2 + 6/12, "feet"),
  45145. name: "Front",
  45146. image: {
  45147. source: "./media/characters/tristan-hawthorne/alolan-umbraichu-front.svg",
  45148. extra: 389/350,
  45149. bottom: 33/422
  45150. },
  45151. form: "alolan-umbraichu",
  45152. default: true
  45153. },
  45154. },
  45155. [
  45156. {
  45157. name: "Normal",
  45158. height: math.unit(4 + 6/12, "feet"),
  45159. form: "skunk",
  45160. default: true
  45161. },
  45162. {
  45163. name: "Normal",
  45164. height: math.unit(2 + 6/12, "feet"),
  45165. form: "alolan-umbraichu",
  45166. default: true
  45167. },
  45168. ],
  45169. {
  45170. "skunk": {
  45171. name: "Skunk",
  45172. default: true
  45173. },
  45174. "alolan-umbraichu": {
  45175. name: "Alolan Umbraichu",
  45176. },
  45177. }
  45178. ))
  45179. characterMakers.push(() => makeCharacter(
  45180. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  45181. {
  45182. front: {
  45183. height: math.unit(5 + 11/12, "feet"),
  45184. weight: math.unit(190, "lb"),
  45185. name: "Front",
  45186. image: {
  45187. source: "./media/characters/mizu/front.svg",
  45188. extra: 1988/1788,
  45189. bottom: 14/2002
  45190. }
  45191. },
  45192. },
  45193. [
  45194. {
  45195. name: "Normal",
  45196. height: math.unit(5 + 11/12, "feet"),
  45197. default: true
  45198. },
  45199. ]
  45200. ))
  45201. characterMakers.push(() => makeCharacter(
  45202. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45203. {
  45204. front: {
  45205. height: math.unit(1.7, "feet"),
  45206. weight: math.unit(50, "lb"),
  45207. name: "Front",
  45208. image: {
  45209. source: "./media/characters/dechroma/front.svg",
  45210. extra: 1095/859,
  45211. bottom: 64/1159
  45212. }
  45213. },
  45214. },
  45215. [
  45216. {
  45217. name: "Normal",
  45218. height: math.unit(1.7, "feet"),
  45219. default: true
  45220. },
  45221. ]
  45222. ))
  45223. characterMakers.push(() => makeCharacter(
  45224. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45225. {
  45226. side: {
  45227. height: math.unit(30, "feet"),
  45228. name: "Side",
  45229. image: {
  45230. source: "./media/characters/veluren-thanazel/side.svg",
  45231. extra: 1611/633,
  45232. bottom: 118/1729
  45233. }
  45234. },
  45235. front: {
  45236. height: math.unit(30, "feet"),
  45237. name: "Front",
  45238. image: {
  45239. source: "./media/characters/veluren-thanazel/front.svg",
  45240. extra: 1486/636,
  45241. bottom: 238/1724
  45242. }
  45243. },
  45244. head: {
  45245. height: math.unit(21.4, "feet"),
  45246. name: "Head",
  45247. image: {
  45248. source: "./media/characters/veluren-thanazel/head.svg"
  45249. }
  45250. },
  45251. genitals: {
  45252. height: math.unit(19.4, "feet"),
  45253. name: "Genitals",
  45254. image: {
  45255. source: "./media/characters/veluren-thanazel/genitals.svg"
  45256. }
  45257. },
  45258. },
  45259. [
  45260. {
  45261. name: "Social",
  45262. height: math.unit(6, "feet")
  45263. },
  45264. {
  45265. name: "Play",
  45266. height: math.unit(12, "feet")
  45267. },
  45268. {
  45269. name: "True",
  45270. height: math.unit(30, "feet"),
  45271. default: true
  45272. },
  45273. ]
  45274. ))
  45275. characterMakers.push(() => makeCharacter(
  45276. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45277. {
  45278. front: {
  45279. height: math.unit(7 + 6/12, "feet"),
  45280. weight: math.unit(500, "kg"),
  45281. name: "Front",
  45282. image: {
  45283. source: "./media/characters/arcturas/front.svg",
  45284. extra: 1700/1500,
  45285. bottom: 145/1845
  45286. }
  45287. },
  45288. },
  45289. [
  45290. {
  45291. name: "Normal",
  45292. height: math.unit(7 + 6/12, "feet"),
  45293. default: true
  45294. },
  45295. ]
  45296. ))
  45297. characterMakers.push(() => makeCharacter(
  45298. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45299. {
  45300. side: {
  45301. height: math.unit(6, "feet"),
  45302. weight: math.unit(2, "tons"),
  45303. name: "Side",
  45304. image: {
  45305. source: "./media/characters/vitaen/side.svg",
  45306. extra: 1157/617,
  45307. bottom: 122/1279
  45308. }
  45309. },
  45310. },
  45311. [
  45312. {
  45313. name: "Normal",
  45314. height: math.unit(6, "feet"),
  45315. default: true
  45316. },
  45317. ]
  45318. ))
  45319. characterMakers.push(() => makeCharacter(
  45320. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45321. {
  45322. front: {
  45323. height: math.unit(19, "feet"),
  45324. name: "Front",
  45325. image: {
  45326. source: "./media/characters/fia-dreamweaver/front.svg",
  45327. extra: 1630/1504,
  45328. bottom: 25/1655
  45329. }
  45330. },
  45331. },
  45332. [
  45333. {
  45334. name: "Normal",
  45335. height: math.unit(19, "feet"),
  45336. default: true
  45337. },
  45338. ]
  45339. ))
  45340. characterMakers.push(() => makeCharacter(
  45341. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45342. {
  45343. front: {
  45344. height: math.unit(5 + 4/12, "feet"),
  45345. name: "Front",
  45346. image: {
  45347. source: "./media/characters/artan/front.svg",
  45348. extra: 1618/1535,
  45349. bottom: 46/1664
  45350. }
  45351. },
  45352. back: {
  45353. height: math.unit(5 + 4/12, "feet"),
  45354. name: "Back",
  45355. image: {
  45356. source: "./media/characters/artan/back.svg",
  45357. extra: 1618/1543,
  45358. bottom: 31/1649
  45359. }
  45360. },
  45361. },
  45362. [
  45363. {
  45364. name: "Normal",
  45365. height: math.unit(5 + 4/12, "feet"),
  45366. default: true
  45367. },
  45368. ]
  45369. ))
  45370. characterMakers.push(() => makeCharacter(
  45371. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45372. {
  45373. side: {
  45374. height: math.unit(182, "cm"),
  45375. weight: math.unit(1000, "lb"),
  45376. name: "Side",
  45377. image: {
  45378. source: "./media/characters/silver-dragon/side.svg",
  45379. extra: 710/287,
  45380. bottom: 88/798
  45381. }
  45382. },
  45383. },
  45384. [
  45385. {
  45386. name: "Normal",
  45387. height: math.unit(182, "cm"),
  45388. default: true
  45389. },
  45390. ]
  45391. ))
  45392. characterMakers.push(() => makeCharacter(
  45393. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45394. {
  45395. side: {
  45396. height: math.unit(6 + 6/12, "feet"),
  45397. weight: math.unit(1.5, "tons"),
  45398. name: "Side",
  45399. image: {
  45400. source: "./media/characters/zephyr/side.svg",
  45401. extra: 1436/603,
  45402. bottom: 105/1541
  45403. }
  45404. },
  45405. },
  45406. [
  45407. {
  45408. name: "Normal",
  45409. height: math.unit(6 + 6/12, "feet"),
  45410. default: true
  45411. },
  45412. ]
  45413. ))
  45414. characterMakers.push(() => makeCharacter(
  45415. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45416. {
  45417. side: {
  45418. height: math.unit(1, "feet"),
  45419. name: "Side",
  45420. image: {
  45421. source: "./media/characters/vixye/side.svg",
  45422. extra: 632/541,
  45423. bottom: 0/632
  45424. }
  45425. },
  45426. },
  45427. [
  45428. {
  45429. name: "Normal",
  45430. height: math.unit(1, "feet"),
  45431. default: true
  45432. },
  45433. {
  45434. name: "True",
  45435. height: math.unit(1e15, "multiverses")
  45436. },
  45437. ]
  45438. ))
  45439. characterMakers.push(() => makeCharacter(
  45440. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45441. {
  45442. front: {
  45443. height: math.unit(8 + 2/12, "feet"),
  45444. weight: math.unit(650, "lb"),
  45445. name: "Front",
  45446. image: {
  45447. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45448. extra: 1174/1137,
  45449. bottom: 82/1256
  45450. }
  45451. },
  45452. back: {
  45453. height: math.unit(8 + 2/12, "feet"),
  45454. weight: math.unit(650, "lb"),
  45455. name: "Back",
  45456. image: {
  45457. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45458. extra: 1204/1157,
  45459. bottom: 46/1250
  45460. }
  45461. },
  45462. },
  45463. [
  45464. {
  45465. name: "Wildform",
  45466. height: math.unit(8 + 2/12, "feet"),
  45467. default: true
  45468. },
  45469. ]
  45470. ))
  45471. characterMakers.push(() => makeCharacter(
  45472. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45473. {
  45474. front: {
  45475. height: math.unit(18, "feet"),
  45476. name: "Front",
  45477. image: {
  45478. source: "./media/characters/cyphin/front.svg",
  45479. extra: 970/886,
  45480. bottom: 42/1012
  45481. }
  45482. },
  45483. back: {
  45484. height: math.unit(18, "feet"),
  45485. name: "Back",
  45486. image: {
  45487. source: "./media/characters/cyphin/back.svg",
  45488. extra: 1009/894,
  45489. bottom: 24/1033
  45490. }
  45491. },
  45492. head: {
  45493. height: math.unit(5.05, "feet"),
  45494. name: "Head",
  45495. image: {
  45496. source: "./media/characters/cyphin/head.svg"
  45497. }
  45498. },
  45499. tailbud: {
  45500. height: math.unit(5, "feet"),
  45501. name: "Tailbud",
  45502. image: {
  45503. source: "./media/characters/cyphin/tailbud.svg"
  45504. }
  45505. },
  45506. },
  45507. [
  45508. ]
  45509. ))
  45510. characterMakers.push(() => makeCharacter(
  45511. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45512. {
  45513. side: {
  45514. height: math.unit(10, "feet"),
  45515. weight: math.unit(6, "tons"),
  45516. name: "Side",
  45517. image: {
  45518. source: "./media/characters/raijin/side.svg",
  45519. extra: 1529/613,
  45520. bottom: 337/1866
  45521. }
  45522. },
  45523. },
  45524. [
  45525. {
  45526. name: "Normal",
  45527. height: math.unit(10, "feet"),
  45528. default: true
  45529. },
  45530. ]
  45531. ))
  45532. characterMakers.push(() => makeCharacter(
  45533. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45534. {
  45535. side: {
  45536. height: math.unit(9, "feet"),
  45537. name: "Side",
  45538. image: {
  45539. source: "./media/characters/nilghais/side.svg",
  45540. extra: 1047/744,
  45541. bottom: 91/1138
  45542. }
  45543. },
  45544. head: {
  45545. height: math.unit(3.14, "feet"),
  45546. name: "Head",
  45547. image: {
  45548. source: "./media/characters/nilghais/head.svg"
  45549. }
  45550. },
  45551. mouth: {
  45552. height: math.unit(4.6, "feet"),
  45553. name: "Mouth",
  45554. image: {
  45555. source: "./media/characters/nilghais/mouth.svg"
  45556. }
  45557. },
  45558. wings: {
  45559. height: math.unit(24, "feet"),
  45560. name: "Wings",
  45561. image: {
  45562. source: "./media/characters/nilghais/wings.svg"
  45563. }
  45564. },
  45565. ass: {
  45566. height: math.unit(6.12, "feet"),
  45567. name: "Ass",
  45568. image: {
  45569. source: "./media/characters/nilghais/ass.svg"
  45570. }
  45571. },
  45572. },
  45573. [
  45574. {
  45575. name: "Normal",
  45576. height: math.unit(9, "feet"),
  45577. default: true
  45578. },
  45579. ]
  45580. ))
  45581. characterMakers.push(() => makeCharacter(
  45582. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45583. {
  45584. regular: {
  45585. height: math.unit(16 + 2/12, "feet"),
  45586. weight: math.unit(2300, "lb"),
  45587. name: "Regular",
  45588. image: {
  45589. source: "./media/characters/zolgar/regular.svg",
  45590. extra: 1246/1004,
  45591. bottom: 124/1370
  45592. }
  45593. },
  45594. boxers: {
  45595. height: math.unit(16 + 2/12, "feet"),
  45596. weight: math.unit(2300, "lb"),
  45597. name: "Boxers",
  45598. image: {
  45599. source: "./media/characters/zolgar/boxers.svg",
  45600. extra: 1246/1004,
  45601. bottom: 124/1370
  45602. }
  45603. },
  45604. armored: {
  45605. height: math.unit(16 + 2/12, "feet"),
  45606. weight: math.unit(2300, "lb"),
  45607. name: "Armored",
  45608. image: {
  45609. source: "./media/characters/zolgar/armored.svg",
  45610. extra: 1246/1004,
  45611. bottom: 124/1370
  45612. }
  45613. },
  45614. goth: {
  45615. height: math.unit(16 + 2/12, "feet"),
  45616. weight: math.unit(2300, "lb"),
  45617. name: "Goth",
  45618. image: {
  45619. source: "./media/characters/zolgar/goth.svg",
  45620. extra: 1246/1004,
  45621. bottom: 124/1370
  45622. }
  45623. },
  45624. },
  45625. [
  45626. {
  45627. name: "Shrunken Down",
  45628. height: math.unit(9 + 2/12, "feet")
  45629. },
  45630. {
  45631. name: "Normal",
  45632. height: math.unit(16 + 2/12, "feet"),
  45633. default: true
  45634. },
  45635. ]
  45636. ))
  45637. characterMakers.push(() => makeCharacter(
  45638. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45639. {
  45640. front: {
  45641. height: math.unit(6, "feet"),
  45642. weight: math.unit(168, "lb"),
  45643. name: "Front",
  45644. image: {
  45645. source: "./media/characters/luca/front.svg",
  45646. extra: 841/667,
  45647. bottom: 102/943
  45648. }
  45649. },
  45650. },
  45651. [
  45652. {
  45653. name: "Normal",
  45654. height: math.unit(6, "feet"),
  45655. default: true
  45656. },
  45657. ]
  45658. ))
  45659. characterMakers.push(() => makeCharacter(
  45660. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45661. {
  45662. side: {
  45663. height: math.unit(7 + 3/12, "feet"),
  45664. weight: math.unit(312, "lb"),
  45665. name: "Side",
  45666. image: {
  45667. source: "./media/characters/zezo/side.svg",
  45668. extra: 1192/1067,
  45669. bottom: 63/1255
  45670. }
  45671. },
  45672. },
  45673. [
  45674. {
  45675. name: "Normal",
  45676. height: math.unit(7 + 3/12, "feet"),
  45677. default: true
  45678. },
  45679. ]
  45680. ))
  45681. characterMakers.push(() => makeCharacter(
  45682. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45683. {
  45684. front: {
  45685. height: math.unit(5 + 5/12, "feet"),
  45686. weight: math.unit(170, "lb"),
  45687. name: "Front",
  45688. image: {
  45689. source: "./media/characters/mayso/front.svg",
  45690. extra: 1215/1108,
  45691. bottom: 16/1231
  45692. }
  45693. },
  45694. },
  45695. [
  45696. {
  45697. name: "Normal",
  45698. height: math.unit(5 + 5/12, "feet"),
  45699. default: true
  45700. },
  45701. ]
  45702. ))
  45703. characterMakers.push(() => makeCharacter(
  45704. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45705. {
  45706. front: {
  45707. height: math.unit(4 + 3/12, "feet"),
  45708. weight: math.unit(80, "lb"),
  45709. name: "Front",
  45710. image: {
  45711. source: "./media/characters/hess/front.svg",
  45712. extra: 1200/1123,
  45713. bottom: 16/1216
  45714. }
  45715. },
  45716. },
  45717. [
  45718. {
  45719. name: "Normal",
  45720. height: math.unit(4 + 3/12, "feet"),
  45721. default: true
  45722. },
  45723. ]
  45724. ))
  45725. characterMakers.push(() => makeCharacter(
  45726. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45727. {
  45728. front: {
  45729. height: math.unit(1.9, "meters"),
  45730. name: "Front",
  45731. image: {
  45732. source: "./media/characters/ashgar/front.svg",
  45733. extra: 1177/1146,
  45734. bottom: 99/1276
  45735. }
  45736. },
  45737. back: {
  45738. height: math.unit(1.9, "meters"),
  45739. name: "Back",
  45740. image: {
  45741. source: "./media/characters/ashgar/back.svg",
  45742. extra: 1201/1183,
  45743. bottom: 53/1254
  45744. }
  45745. },
  45746. feral: {
  45747. height: math.unit(1.4, "meters"),
  45748. name: "Feral",
  45749. image: {
  45750. source: "./media/characters/ashgar/feral.svg",
  45751. extra: 370/345,
  45752. bottom: 45/415
  45753. }
  45754. },
  45755. },
  45756. [
  45757. {
  45758. name: "Normal",
  45759. height: math.unit(1.9, "meters"),
  45760. default: true
  45761. },
  45762. ]
  45763. ))
  45764. characterMakers.push(() => makeCharacter(
  45765. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45766. {
  45767. regular: {
  45768. height: math.unit(6, "feet"),
  45769. weight: math.unit(220, "lb"),
  45770. name: "Regular",
  45771. image: {
  45772. source: "./media/characters/phillip/regular.svg",
  45773. extra: 1373/1277,
  45774. bottom: 75/1448
  45775. }
  45776. },
  45777. dressed: {
  45778. height: math.unit(6, "feet"),
  45779. weight: math.unit(220, "lb"),
  45780. name: "Dressed",
  45781. image: {
  45782. source: "./media/characters/phillip/dressed.svg",
  45783. extra: 1373/1277,
  45784. bottom: 75/1448
  45785. }
  45786. },
  45787. paw: {
  45788. height: math.unit(1.44, "feet"),
  45789. name: "Paw",
  45790. image: {
  45791. source: "./media/characters/phillip/paw.svg"
  45792. }
  45793. },
  45794. },
  45795. [
  45796. {
  45797. name: "Normal",
  45798. height: math.unit(6, "feet"),
  45799. default: true
  45800. },
  45801. ]
  45802. ))
  45803. characterMakers.push(() => makeCharacter(
  45804. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45805. {
  45806. side: {
  45807. height: math.unit(42, "feet"),
  45808. name: "Side",
  45809. image: {
  45810. source: "./media/characters/uvula/side.svg",
  45811. extra: 683/586,
  45812. bottom: 60/743
  45813. }
  45814. },
  45815. front: {
  45816. height: math.unit(42, "feet"),
  45817. name: "Front",
  45818. image: {
  45819. source: "./media/characters/uvula/front.svg",
  45820. extra: 705/613,
  45821. bottom: 54/759
  45822. }
  45823. },
  45824. maw: {
  45825. height: math.unit(23.5, "feet"),
  45826. name: "Maw",
  45827. image: {
  45828. source: "./media/characters/uvula/maw.svg"
  45829. }
  45830. },
  45831. },
  45832. [
  45833. {
  45834. name: "Original Size",
  45835. height: math.unit(14, "inches")
  45836. },
  45837. {
  45838. name: "Human Size",
  45839. height: math.unit(6, "feet")
  45840. },
  45841. {
  45842. name: "Big",
  45843. height: math.unit(42, "feet"),
  45844. default: true
  45845. },
  45846. {
  45847. name: "Bigger",
  45848. height: math.unit(100, "feet")
  45849. },
  45850. ]
  45851. ))
  45852. characterMakers.push(() => makeCharacter(
  45853. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45854. {
  45855. front: {
  45856. height: math.unit(5 + 11/12, "feet"),
  45857. name: "Front",
  45858. image: {
  45859. source: "./media/characters/lannah/front.svg",
  45860. extra: 1208/1113,
  45861. bottom: 97/1305
  45862. }
  45863. },
  45864. },
  45865. [
  45866. {
  45867. name: "Normal",
  45868. height: math.unit(5 + 11/12, "feet"),
  45869. default: true
  45870. },
  45871. ]
  45872. ))
  45873. characterMakers.push(() => makeCharacter(
  45874. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45875. {
  45876. front: {
  45877. height: math.unit(6 + 3/12, "feet"),
  45878. weight: math.unit(3.5, "tons"),
  45879. name: "Front",
  45880. image: {
  45881. source: "./media/characters/emberflame/front.svg",
  45882. extra: 1198/672,
  45883. bottom: 82/1280
  45884. }
  45885. },
  45886. side: {
  45887. height: math.unit(6 + 3/12, "feet"),
  45888. weight: math.unit(3.5, "tons"),
  45889. name: "Side",
  45890. image: {
  45891. source: "./media/characters/emberflame/side.svg",
  45892. extra: 938/527,
  45893. bottom: 56/994
  45894. }
  45895. },
  45896. },
  45897. [
  45898. {
  45899. name: "Normal",
  45900. height: math.unit(6 + 3/12, "feet"),
  45901. default: true
  45902. },
  45903. ]
  45904. ))
  45905. characterMakers.push(() => makeCharacter(
  45906. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45907. {
  45908. side: {
  45909. height: math.unit(17.5, "feet"),
  45910. weight: math.unit(35, "tons"),
  45911. name: "Side",
  45912. image: {
  45913. source: "./media/characters/sophie-ambrose/side.svg",
  45914. extra: 1573/1242,
  45915. bottom: 71/1644
  45916. }
  45917. },
  45918. maw: {
  45919. height: math.unit(7.4, "feet"),
  45920. name: "Maw",
  45921. image: {
  45922. source: "./media/characters/sophie-ambrose/maw.svg"
  45923. }
  45924. },
  45925. },
  45926. [
  45927. {
  45928. name: "Normal",
  45929. height: math.unit(17.5, "feet"),
  45930. default: true
  45931. },
  45932. ]
  45933. ))
  45934. characterMakers.push(() => makeCharacter(
  45935. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45936. {
  45937. front: {
  45938. height: math.unit(280, "feet"),
  45939. weight: math.unit(550, "tons"),
  45940. name: "Front",
  45941. image: {
  45942. source: "./media/characters/king-mugi/front.svg",
  45943. extra: 1102/947,
  45944. bottom: 104/1206
  45945. }
  45946. },
  45947. },
  45948. [
  45949. {
  45950. name: "King Mugi",
  45951. height: math.unit(280, "feet"),
  45952. default: true
  45953. },
  45954. ]
  45955. ))
  45956. characterMakers.push(() => makeCharacter(
  45957. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45958. {
  45959. female: {
  45960. height: math.unit(300, "meters"),
  45961. name: "Front",
  45962. image: {
  45963. source: "./media/characters/nova-fox/female.svg",
  45964. extra: 664/632,
  45965. bottom: 51/715
  45966. },
  45967. form: "female",
  45968. default: true
  45969. },
  45970. male: {
  45971. height: math.unit(300, "meters"),
  45972. name: "Front",
  45973. image: {
  45974. source: "./media/characters/nova-fox/male.svg",
  45975. extra: 663/631,
  45976. bottom: 30/693
  45977. },
  45978. form: "male",
  45979. default: true
  45980. },
  45981. },
  45982. [
  45983. {
  45984. name: "Macro",
  45985. height: math.unit(300, "meters"),
  45986. default: true,
  45987. allForms: true
  45988. },
  45989. ],
  45990. {
  45991. "female": {
  45992. name: "Female",
  45993. default: true
  45994. },
  45995. "male": {
  45996. name: "Male",
  45997. },
  45998. }
  45999. ))
  46000. characterMakers.push(() => makeCharacter(
  46001. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  46002. {
  46003. front: {
  46004. height: math.unit(6 + 3/12, "feet"),
  46005. weight: math.unit(170, "lb"),
  46006. name: "Front",
  46007. image: {
  46008. source: "./media/characters/sam-bat/front.svg",
  46009. extra: 1601/1411,
  46010. bottom: 125/1726
  46011. }
  46012. },
  46013. back: {
  46014. height: math.unit(6 + 3/12, "feet"),
  46015. weight: math.unit(170, "lb"),
  46016. name: "Back",
  46017. image: {
  46018. source: "./media/characters/sam-bat/back.svg",
  46019. extra: 1577/1405,
  46020. bottom: 58/1635
  46021. }
  46022. },
  46023. },
  46024. [
  46025. {
  46026. name: "Normal",
  46027. height: math.unit(6 + 3/12, "feet"),
  46028. default: true
  46029. },
  46030. ]
  46031. ))
  46032. characterMakers.push(() => makeCharacter(
  46033. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  46034. {
  46035. front: {
  46036. height: math.unit(59, "feet"),
  46037. weight: math.unit(40000, "lb"),
  46038. name: "Front",
  46039. image: {
  46040. source: "./media/characters/inari/front.svg",
  46041. extra: 1884/1350,
  46042. bottom: 95/1979
  46043. }
  46044. },
  46045. },
  46046. [
  46047. {
  46048. name: "Gigantamax",
  46049. height: math.unit(59, "feet"),
  46050. default: true
  46051. },
  46052. ]
  46053. ))
  46054. characterMakers.push(() => makeCharacter(
  46055. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  46056. {
  46057. front: {
  46058. height: math.unit(5 + 8/12, "feet"),
  46059. name: "Front",
  46060. image: {
  46061. source: "./media/characters/elizabeth/front.svg",
  46062. extra: 1395/1298,
  46063. bottom: 54/1449
  46064. }
  46065. },
  46066. mouth: {
  46067. height: math.unit(1.97, "feet"),
  46068. name: "Mouth",
  46069. image: {
  46070. source: "./media/characters/elizabeth/mouth.svg"
  46071. }
  46072. },
  46073. foot: {
  46074. height: math.unit(1.17, "feet"),
  46075. name: "Foot",
  46076. image: {
  46077. source: "./media/characters/elizabeth/foot.svg"
  46078. }
  46079. },
  46080. },
  46081. [
  46082. {
  46083. name: "Normal",
  46084. height: math.unit(5 + 8/12, "feet"),
  46085. default: true
  46086. },
  46087. {
  46088. name: "Minimacro",
  46089. height: math.unit(18, "feet")
  46090. },
  46091. {
  46092. name: "Macro",
  46093. height: math.unit(180, "feet")
  46094. },
  46095. ]
  46096. ))
  46097. characterMakers.push(() => makeCharacter(
  46098. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  46099. {
  46100. front: {
  46101. height: math.unit(5 + 2/12, "feet"),
  46102. name: "Front",
  46103. image: {
  46104. source: "./media/characters/october-gossamer/front.svg",
  46105. extra: 505/454,
  46106. bottom: 7/512
  46107. }
  46108. },
  46109. back: {
  46110. height: math.unit(5 + 2/12, "feet"),
  46111. name: "Back",
  46112. image: {
  46113. source: "./media/characters/october-gossamer/back.svg",
  46114. extra: 501/454,
  46115. bottom: 11/512
  46116. }
  46117. },
  46118. },
  46119. [
  46120. {
  46121. name: "Normal",
  46122. height: math.unit(5 + 2/12, "feet"),
  46123. default: true
  46124. },
  46125. ]
  46126. ))
  46127. characterMakers.push(() => makeCharacter(
  46128. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  46129. {
  46130. front: {
  46131. height: math.unit(5, "feet"),
  46132. name: "Front",
  46133. image: {
  46134. source: "./media/characters/epiglottis/front.svg",
  46135. extra: 923/849,
  46136. bottom: 17/940
  46137. }
  46138. },
  46139. },
  46140. [
  46141. {
  46142. name: "Original Size",
  46143. height: math.unit(10, "inches")
  46144. },
  46145. {
  46146. name: "Human Size",
  46147. height: math.unit(5, "feet"),
  46148. default: true
  46149. },
  46150. {
  46151. name: "Big",
  46152. height: math.unit(25, "feet")
  46153. },
  46154. {
  46155. name: "Bigger",
  46156. height: math.unit(50, "feet")
  46157. },
  46158. {
  46159. name: "oh lawd",
  46160. height: math.unit(75, "feet")
  46161. },
  46162. ]
  46163. ))
  46164. characterMakers.push(() => makeCharacter(
  46165. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  46166. {
  46167. front: {
  46168. height: math.unit(2 + 4/12, "feet"),
  46169. weight: math.unit(60, "lb"),
  46170. name: "Front",
  46171. image: {
  46172. source: "./media/characters/lerm/front.svg",
  46173. extra: 796/790,
  46174. bottom: 79/875
  46175. }
  46176. },
  46177. },
  46178. [
  46179. {
  46180. name: "Normal",
  46181. height: math.unit(2 + 4/12, "feet"),
  46182. default: true
  46183. },
  46184. ]
  46185. ))
  46186. characterMakers.push(() => makeCharacter(
  46187. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46188. {
  46189. front: {
  46190. height: math.unit(5.5, "feet"),
  46191. weight: math.unit(130, "lb"),
  46192. name: "Front",
  46193. image: {
  46194. source: "./media/characters/xena-nebadon/front.svg",
  46195. extra: 1828/1730,
  46196. bottom: 79/1907
  46197. }
  46198. },
  46199. },
  46200. [
  46201. {
  46202. name: "Tiny Puppy",
  46203. height: math.unit(3, "inches")
  46204. },
  46205. {
  46206. name: "Normal",
  46207. height: math.unit(5.5, "feet"),
  46208. default: true
  46209. },
  46210. {
  46211. name: "Lotta Lady",
  46212. height: math.unit(12, "feet")
  46213. },
  46214. {
  46215. name: "Pretty Big",
  46216. height: math.unit(100, "feet")
  46217. },
  46218. {
  46219. name: "Big",
  46220. height: math.unit(500, "feet")
  46221. },
  46222. {
  46223. name: "Skyscraper Toys",
  46224. height: math.unit(2500, "feet")
  46225. },
  46226. {
  46227. name: "Plane Catcher",
  46228. height: math.unit(8, "miles")
  46229. },
  46230. {
  46231. name: "Planet Toys",
  46232. height: math.unit(15, "earths")
  46233. },
  46234. {
  46235. name: "Stardust",
  46236. height: math.unit(0.25, "galaxies")
  46237. },
  46238. {
  46239. name: "Snacks",
  46240. height: math.unit(70, "universes")
  46241. },
  46242. ]
  46243. ))
  46244. characterMakers.push(() => makeCharacter(
  46245. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46246. {
  46247. front: {
  46248. height: math.unit(1.6, "meters"),
  46249. weight: math.unit(60, "kg"),
  46250. name: "Front",
  46251. image: {
  46252. source: "./media/characters/bounty/front.svg",
  46253. extra: 1426/1308,
  46254. bottom: 15/1441
  46255. }
  46256. },
  46257. back: {
  46258. height: math.unit(1.6, "meters"),
  46259. weight: math.unit(60, "kg"),
  46260. name: "Back",
  46261. image: {
  46262. source: "./media/characters/bounty/back.svg",
  46263. extra: 1417/1307,
  46264. bottom: 8/1425
  46265. }
  46266. },
  46267. },
  46268. [
  46269. {
  46270. name: "Normal",
  46271. height: math.unit(1.6, "meters"),
  46272. default: true
  46273. },
  46274. {
  46275. name: "Macro",
  46276. height: math.unit(300, "meters")
  46277. },
  46278. ]
  46279. ))
  46280. characterMakers.push(() => makeCharacter(
  46281. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46282. {
  46283. front: {
  46284. height: math.unit(2 + 8/12, "feet"),
  46285. weight: math.unit(15, "lb"),
  46286. name: "Front",
  46287. image: {
  46288. source: "./media/characters/mochi/front.svg",
  46289. extra: 1022/852,
  46290. bottom: 435/1457
  46291. }
  46292. },
  46293. back: {
  46294. height: math.unit(2 + 8/12, "feet"),
  46295. weight: math.unit(15, "lb"),
  46296. name: "Back",
  46297. image: {
  46298. source: "./media/characters/mochi/back.svg",
  46299. extra: 1335/1119,
  46300. bottom: 39/1374
  46301. }
  46302. },
  46303. bird: {
  46304. height: math.unit(2 + 8/12, "feet"),
  46305. weight: math.unit(15, "lb"),
  46306. name: "Bird",
  46307. image: {
  46308. source: "./media/characters/mochi/bird.svg",
  46309. extra: 1251/1113,
  46310. bottom: 178/1429
  46311. }
  46312. },
  46313. kaiju: {
  46314. height: math.unit(154, "feet"),
  46315. weight: math.unit(1e7, "lb"),
  46316. name: "Kaiju",
  46317. image: {
  46318. source: "./media/characters/mochi/kaiju.svg",
  46319. extra: 460/324,
  46320. bottom: 40/500
  46321. }
  46322. },
  46323. head: {
  46324. height: math.unit(1.21, "feet"),
  46325. name: "Head",
  46326. image: {
  46327. source: "./media/characters/mochi/head.svg"
  46328. }
  46329. },
  46330. alternateTail: {
  46331. height: math.unit(2 + 8/12, "feet"),
  46332. weight: math.unit(45, "lb"),
  46333. name: "Alternate Tail",
  46334. image: {
  46335. source: "./media/characters/mochi/alternate-tail.svg",
  46336. extra: 139/76,
  46337. bottom: 45/184
  46338. }
  46339. },
  46340. },
  46341. [
  46342. {
  46343. name: "Micro",
  46344. height: math.unit(2, "inches")
  46345. },
  46346. {
  46347. name: "Normal",
  46348. height: math.unit(2 + 8/12, "feet"),
  46349. default: true
  46350. },
  46351. {
  46352. name: "Macro",
  46353. height: math.unit(106, "feet")
  46354. },
  46355. ]
  46356. ))
  46357. characterMakers.push(() => makeCharacter(
  46358. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46359. {
  46360. front: {
  46361. height: math.unit(5.67, "feet"),
  46362. weight: math.unit(135, "lb"),
  46363. name: "Front",
  46364. image: {
  46365. source: "./media/characters/sarel/front.svg",
  46366. extra: 865/788,
  46367. bottom: 97/962
  46368. }
  46369. },
  46370. back: {
  46371. height: math.unit(5.67, "feet"),
  46372. weight: math.unit(135, "lb"),
  46373. name: "Back",
  46374. image: {
  46375. source: "./media/characters/sarel/back.svg",
  46376. extra: 857/777,
  46377. bottom: 32/889
  46378. }
  46379. },
  46380. chozoan: {
  46381. height: math.unit(5.67, "feet"),
  46382. weight: math.unit(135, "lb"),
  46383. name: "Chozoan",
  46384. image: {
  46385. source: "./media/characters/sarel/chozoan.svg",
  46386. extra: 865/788,
  46387. bottom: 97/962
  46388. }
  46389. },
  46390. current: {
  46391. height: math.unit(5.67, "feet"),
  46392. weight: math.unit(135, "lb"),
  46393. name: "Current",
  46394. image: {
  46395. source: "./media/characters/sarel/current.svg",
  46396. extra: 865/788,
  46397. bottom: 97/962
  46398. }
  46399. },
  46400. head: {
  46401. height: math.unit(1.77, "feet"),
  46402. name: "Head",
  46403. image: {
  46404. source: "./media/characters/sarel/head.svg"
  46405. }
  46406. },
  46407. claws: {
  46408. height: math.unit(1.8, "feet"),
  46409. name: "Claws",
  46410. image: {
  46411. source: "./media/characters/sarel/claws.svg"
  46412. }
  46413. },
  46414. clawsAlt: {
  46415. height: math.unit(1.8, "feet"),
  46416. name: "Claws (Alt)",
  46417. image: {
  46418. source: "./media/characters/sarel/claws-alt.svg"
  46419. }
  46420. },
  46421. },
  46422. [
  46423. {
  46424. name: "Normal",
  46425. height: math.unit(5.67, "feet"),
  46426. default: true
  46427. },
  46428. ]
  46429. ))
  46430. characterMakers.push(() => makeCharacter(
  46431. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46432. {
  46433. front: {
  46434. height: math.unit(5500, "feet"),
  46435. name: "Front",
  46436. image: {
  46437. source: "./media/characters/alyonia/front.svg",
  46438. extra: 1200/1135,
  46439. bottom: 29/1229
  46440. }
  46441. },
  46442. back: {
  46443. height: math.unit(5500, "feet"),
  46444. name: "Back",
  46445. image: {
  46446. source: "./media/characters/alyonia/back.svg",
  46447. extra: 1205/1138,
  46448. bottom: 10/1215
  46449. }
  46450. },
  46451. },
  46452. [
  46453. {
  46454. name: "Small",
  46455. height: math.unit(10, "feet")
  46456. },
  46457. {
  46458. name: "Macro",
  46459. height: math.unit(500, "feet")
  46460. },
  46461. {
  46462. name: "Mega Macro",
  46463. height: math.unit(5500, "feet"),
  46464. default: true
  46465. },
  46466. {
  46467. name: "Mega Macro+",
  46468. height: math.unit(500000, "feet")
  46469. },
  46470. {
  46471. name: "Giga Macro",
  46472. height: math.unit(3000, "miles")
  46473. },
  46474. {
  46475. name: "Tera Macro",
  46476. height: math.unit(2.8e6, "miles")
  46477. },
  46478. {
  46479. name: "Galactic",
  46480. height: math.unit(120000, "lightyears")
  46481. },
  46482. ]
  46483. ))
  46484. characterMakers.push(() => makeCharacter(
  46485. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46486. {
  46487. werewolf: {
  46488. height: math.unit(8, "feet"),
  46489. weight: math.unit(425, "lb"),
  46490. name: "Werewolf",
  46491. image: {
  46492. source: "./media/characters/autumn/werewolf.svg",
  46493. extra: 2154/2031,
  46494. bottom: 160/2314
  46495. }
  46496. },
  46497. human: {
  46498. height: math.unit(5 + 8/12, "feet"),
  46499. weight: math.unit(150, "lb"),
  46500. name: "Human",
  46501. image: {
  46502. source: "./media/characters/autumn/human.svg",
  46503. extra: 1200/1149,
  46504. bottom: 30/1230
  46505. }
  46506. },
  46507. },
  46508. [
  46509. {
  46510. name: "Normal",
  46511. height: math.unit(8, "feet"),
  46512. default: true
  46513. },
  46514. ]
  46515. ))
  46516. characterMakers.push(() => makeCharacter(
  46517. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46518. {
  46519. front: {
  46520. height: math.unit(8 + 5/12, "feet"),
  46521. weight: math.unit(825, "lb"),
  46522. name: "Front",
  46523. image: {
  46524. source: "./media/characters/cobalt-charizard/front.svg",
  46525. extra: 1268/1155,
  46526. bottom: 122/1390
  46527. }
  46528. },
  46529. side: {
  46530. height: math.unit(8 + 5/12, "feet"),
  46531. weight: math.unit(825, "lb"),
  46532. name: "Side",
  46533. image: {
  46534. source: "./media/characters/cobalt-charizard/side.svg",
  46535. extra: 1348/1257,
  46536. bottom: 58/1406
  46537. }
  46538. },
  46539. gMax: {
  46540. height: math.unit(134 + 11/12, "feet"),
  46541. name: "G-Max",
  46542. image: {
  46543. source: "./media/characters/cobalt-charizard/g-max.svg",
  46544. extra: 1835/1541,
  46545. bottom: 151/1986
  46546. }
  46547. },
  46548. },
  46549. [
  46550. {
  46551. name: "Normal",
  46552. height: math.unit(8 + 5/12, "feet"),
  46553. default: true
  46554. },
  46555. ]
  46556. ))
  46557. characterMakers.push(() => makeCharacter(
  46558. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46559. {
  46560. front: {
  46561. height: math.unit(6 + 3/12, "feet"),
  46562. weight: math.unit(210, "lb"),
  46563. name: "Front",
  46564. image: {
  46565. source: "./media/characters/stella/front.svg",
  46566. extra: 3549/3335,
  46567. bottom: 51/3600
  46568. }
  46569. },
  46570. },
  46571. [
  46572. {
  46573. name: "Normal",
  46574. height: math.unit(6 + 3/12, "feet"),
  46575. default: true
  46576. },
  46577. ]
  46578. ))
  46579. characterMakers.push(() => makeCharacter(
  46580. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46581. {
  46582. front: {
  46583. height: math.unit(5, "feet"),
  46584. weight: math.unit(90, "lb"),
  46585. name: "Front",
  46586. image: {
  46587. source: "./media/characters/riley-bishop/front.svg",
  46588. extra: 1450/1428,
  46589. bottom: 152/1602
  46590. }
  46591. },
  46592. },
  46593. [
  46594. {
  46595. name: "Normal",
  46596. height: math.unit(5, "feet"),
  46597. default: true
  46598. },
  46599. ]
  46600. ))
  46601. characterMakers.push(() => makeCharacter(
  46602. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46603. {
  46604. side: {
  46605. height: math.unit(8 + 2/12, "feet"),
  46606. weight: math.unit(500, "kg"),
  46607. name: "Side",
  46608. image: {
  46609. source: "./media/characters/theo-arcanine/side.svg",
  46610. extra: 1342/1074,
  46611. bottom: 111/1453
  46612. }
  46613. },
  46614. },
  46615. [
  46616. {
  46617. name: "Normal",
  46618. height: math.unit(8 + 2/12, "feet"),
  46619. default: true
  46620. },
  46621. ]
  46622. ))
  46623. characterMakers.push(() => makeCharacter(
  46624. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46625. {
  46626. front: {
  46627. height: math.unit(4, "feet"),
  46628. name: "Front",
  46629. image: {
  46630. source: "./media/characters/kali/front.svg",
  46631. extra: 1074/867,
  46632. bottom: 34/1108
  46633. }
  46634. },
  46635. back: {
  46636. height: math.unit(4, "feet"),
  46637. name: "Back",
  46638. image: {
  46639. source: "./media/characters/kali/back.svg",
  46640. extra: 1068/863,
  46641. bottom: 26/1094
  46642. }
  46643. },
  46644. frontAlt: {
  46645. height: math.unit(4, "feet"),
  46646. name: "Front (Alt)",
  46647. image: {
  46648. source: "./media/characters/kali/front-alt.svg",
  46649. extra: 1921/1357,
  46650. bottom: 70/1991
  46651. }
  46652. },
  46653. },
  46654. [
  46655. {
  46656. name: "Normal",
  46657. height: math.unit(4, "feet"),
  46658. default: true
  46659. },
  46660. {
  46661. name: "Big'vali",
  46662. height: math.unit(11, "feet")
  46663. },
  46664. {
  46665. name: "Macro",
  46666. height: math.unit(32, "meters")
  46667. },
  46668. {
  46669. name: "Macro+",
  46670. height: math.unit(150, "meters")
  46671. },
  46672. {
  46673. name: "Megamacro",
  46674. height: math.unit(7500, "meters")
  46675. },
  46676. {
  46677. name: "Megamacro+",
  46678. height: math.unit(80, "kilometers")
  46679. },
  46680. ]
  46681. ))
  46682. characterMakers.push(() => makeCharacter(
  46683. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46684. {
  46685. side: {
  46686. height: math.unit(5 + 11/12, "feet"),
  46687. weight: math.unit(236, "lb"),
  46688. name: "Side",
  46689. image: {
  46690. source: "./media/characters/gapp/side.svg",
  46691. extra: 775/340,
  46692. bottom: 58/833
  46693. }
  46694. },
  46695. mouth: {
  46696. height: math.unit(2.98, "feet"),
  46697. name: "Mouth",
  46698. image: {
  46699. source: "./media/characters/gapp/mouth.svg"
  46700. }
  46701. },
  46702. },
  46703. [
  46704. {
  46705. name: "Normal",
  46706. height: math.unit(5 + 1/12, "feet"),
  46707. default: true
  46708. },
  46709. ]
  46710. ))
  46711. characterMakers.push(() => makeCharacter(
  46712. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46713. {
  46714. front: {
  46715. height: math.unit(6, "feet"),
  46716. name: "Front",
  46717. image: {
  46718. source: "./media/characters/persephone/front.svg",
  46719. extra: 1895/1717,
  46720. bottom: 96/1991
  46721. }
  46722. },
  46723. back: {
  46724. height: math.unit(6, "feet"),
  46725. name: "Back",
  46726. image: {
  46727. source: "./media/characters/persephone/back.svg",
  46728. extra: 1868/1679,
  46729. bottom: 26/1894
  46730. }
  46731. },
  46732. casual: {
  46733. height: math.unit(6, "feet"),
  46734. name: "Casual",
  46735. image: {
  46736. source: "./media/characters/persephone/casual.svg",
  46737. extra: 1713/1541,
  46738. bottom: 76/1789
  46739. }
  46740. },
  46741. gaming: {
  46742. height: math.unit(3.55, "feet"),
  46743. name: "Gaming",
  46744. image: {
  46745. source: "./media/characters/persephone/gaming.svg",
  46746. extra: 1242/1038,
  46747. bottom: 66/1308
  46748. }
  46749. },
  46750. head: {
  46751. height: math.unit(2.15, "feet"),
  46752. name: "😐",
  46753. image: {
  46754. source: "./media/characters/persephone/head.svg"
  46755. }
  46756. },
  46757. talking: {
  46758. height: math.unit(2.5, "feet"),
  46759. name: "💬",
  46760. image: {
  46761. source: "./media/characters/persephone/talking.svg"
  46762. }
  46763. },
  46764. hmm: {
  46765. height: math.unit(2.28, "feet"),
  46766. name: "🤨",
  46767. image: {
  46768. source: "./media/characters/persephone/hmm.svg"
  46769. }
  46770. },
  46771. },
  46772. [
  46773. {
  46774. name: "Human Size",
  46775. height: math.unit(6, "feet")
  46776. },
  46777. {
  46778. name: "Big Steppy",
  46779. height: math.unit(600, "meters"),
  46780. default: true
  46781. },
  46782. {
  46783. name: "Galaxy Brain",
  46784. height: math.unit(1, "zettameter")
  46785. },
  46786. ]
  46787. ))
  46788. characterMakers.push(() => makeCharacter(
  46789. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46790. {
  46791. front: {
  46792. height: math.unit(1.85, "meters"),
  46793. name: "Front",
  46794. image: {
  46795. source: "./media/characters/riley-foxthing/front.svg",
  46796. extra: 1495/1354,
  46797. bottom: 122/1617
  46798. }
  46799. },
  46800. frontAlt: {
  46801. height: math.unit(1.85, "meters"),
  46802. name: "Front (Alt)",
  46803. image: {
  46804. source: "./media/characters/riley-foxthing/front-alt.svg",
  46805. extra: 1572/1389,
  46806. bottom: 116/1688
  46807. }
  46808. },
  46809. },
  46810. [
  46811. {
  46812. name: "Normal Sized",
  46813. height: math.unit(1.85, "meters"),
  46814. default: true
  46815. },
  46816. {
  46817. name: "Quite Sizable",
  46818. height: math.unit(5, "meters")
  46819. },
  46820. {
  46821. name: "Rather Large",
  46822. height: math.unit(20, "meters")
  46823. },
  46824. {
  46825. name: "Macro",
  46826. height: math.unit(450, "meters")
  46827. },
  46828. {
  46829. name: "Giga",
  46830. height: math.unit(5, "km")
  46831. },
  46832. ]
  46833. ))
  46834. characterMakers.push(() => makeCharacter(
  46835. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46836. {
  46837. front: {
  46838. height: math.unit(6, "feet"),
  46839. weight: math.unit(200, "lb"),
  46840. name: "Front",
  46841. image: {
  46842. source: "./media/characters/blizzard/front.svg",
  46843. extra: 1136/990,
  46844. bottom: 136/1272
  46845. }
  46846. },
  46847. back: {
  46848. height: math.unit(6, "feet"),
  46849. weight: math.unit(200, "lb"),
  46850. name: "Back",
  46851. image: {
  46852. source: "./media/characters/blizzard/back.svg",
  46853. extra: 1175/1034,
  46854. bottom: 97/1272
  46855. }
  46856. },
  46857. sitting: {
  46858. height: math.unit(3.725, "feet"),
  46859. weight: math.unit(200, "lb"),
  46860. name: "Sitting",
  46861. image: {
  46862. source: "./media/characters/blizzard/sitting.svg",
  46863. extra: 581/485,
  46864. bottom: 90/671
  46865. }
  46866. },
  46867. frontWizard: {
  46868. height: math.unit(7.9, "feet"),
  46869. weight: math.unit(200, "lb"),
  46870. name: "Front (Wizard)",
  46871. image: {
  46872. source: "./media/characters/blizzard/front-wizard.svg"
  46873. }
  46874. },
  46875. backWizard: {
  46876. height: math.unit(7.9, "feet"),
  46877. weight: math.unit(200, "lb"),
  46878. name: "Back (Wizard)",
  46879. image: {
  46880. source: "./media/characters/blizzard/back-wizard.svg"
  46881. }
  46882. },
  46883. frontNsfw: {
  46884. height: math.unit(6, "feet"),
  46885. weight: math.unit(200, "lb"),
  46886. name: "Front (NSFW)",
  46887. image: {
  46888. source: "./media/characters/blizzard/front-nsfw.svg",
  46889. extra: 1136/990,
  46890. bottom: 136/1272
  46891. }
  46892. },
  46893. backNsfw: {
  46894. height: math.unit(6, "feet"),
  46895. weight: math.unit(200, "lb"),
  46896. name: "Back (NSFW)",
  46897. image: {
  46898. source: "./media/characters/blizzard/back-nsfw.svg",
  46899. extra: 1175/1034,
  46900. bottom: 97/1272
  46901. }
  46902. },
  46903. sittingNsfw: {
  46904. height: math.unit(3.725, "feet"),
  46905. weight: math.unit(200, "lb"),
  46906. name: "Sitting (NSFW)",
  46907. image: {
  46908. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46909. extra: 581/485,
  46910. bottom: 90/671
  46911. }
  46912. },
  46913. wizardFrontNsfw: {
  46914. height: math.unit(7.9, "feet"),
  46915. weight: math.unit(200, "lb"),
  46916. name: "Wizard (Front, NSFW)",
  46917. image: {
  46918. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46919. }
  46920. },
  46921. },
  46922. [
  46923. {
  46924. name: "Normal",
  46925. height: math.unit(6, "feet"),
  46926. default: true
  46927. },
  46928. ]
  46929. ))
  46930. characterMakers.push(() => makeCharacter(
  46931. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46932. {
  46933. front: {
  46934. height: math.unit(5 + 2/12, "feet"),
  46935. name: "Front",
  46936. image: {
  46937. source: "./media/characters/lumi/front.svg",
  46938. extra: 1328/1268,
  46939. bottom: 103/1431
  46940. }
  46941. },
  46942. back: {
  46943. height: math.unit(5 + 2/12, "feet"),
  46944. name: "Back",
  46945. image: {
  46946. source: "./media/characters/lumi/back.svg",
  46947. extra: 1381/1327,
  46948. bottom: 43/1424
  46949. }
  46950. },
  46951. },
  46952. [
  46953. {
  46954. name: "Normal",
  46955. height: math.unit(5 + 2/12, "feet"),
  46956. default: true
  46957. },
  46958. ]
  46959. ))
  46960. characterMakers.push(() => makeCharacter(
  46961. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46962. {
  46963. front: {
  46964. height: math.unit(5 + 9/12, "feet"),
  46965. name: "Front",
  46966. image: {
  46967. source: "./media/characters/aliya-cotton/front.svg",
  46968. extra: 577/564,
  46969. bottom: 29/606
  46970. }
  46971. },
  46972. },
  46973. [
  46974. {
  46975. name: "Normal",
  46976. height: math.unit(5 + 9/12, "feet"),
  46977. default: true
  46978. },
  46979. ]
  46980. ))
  46981. characterMakers.push(() => makeCharacter(
  46982. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46983. {
  46984. front: {
  46985. height: math.unit(2.7, "meters"),
  46986. weight: math.unit(25000, "lb"),
  46987. name: "Front",
  46988. image: {
  46989. source: "./media/characters/noah-luxray/front.svg",
  46990. extra: 1644/825,
  46991. bottom: 339/1983
  46992. }
  46993. },
  46994. side: {
  46995. height: math.unit(2.97, "meters"),
  46996. weight: math.unit(25000, "lb"),
  46997. name: "Side",
  46998. image: {
  46999. source: "./media/characters/noah-luxray/side.svg",
  47000. extra: 1319/650,
  47001. bottom: 163/1482
  47002. }
  47003. },
  47004. dick: {
  47005. height: math.unit(7.4, "feet"),
  47006. weight: math.unit(2500, "lb"),
  47007. name: "Dick",
  47008. image: {
  47009. source: "./media/characters/noah-luxray/dick.svg"
  47010. }
  47011. },
  47012. dickAlt: {
  47013. height: math.unit(10.83, "feet"),
  47014. weight: math.unit(2500, "lb"),
  47015. name: "Dick (Alt)",
  47016. image: {
  47017. source: "./media/characters/noah-luxray/dick-alt.svg"
  47018. }
  47019. },
  47020. },
  47021. [
  47022. {
  47023. name: "BIG",
  47024. height: math.unit(2.7, "meters"),
  47025. default: true
  47026. },
  47027. ]
  47028. ))
  47029. characterMakers.push(() => makeCharacter(
  47030. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  47031. {
  47032. standing: {
  47033. height: math.unit(183, "cm"),
  47034. weight: math.unit(68, "kg"),
  47035. name: "Standing",
  47036. image: {
  47037. source: "./media/characters/arion/standing.svg",
  47038. extra: 1869/1807,
  47039. bottom: 93/1962
  47040. }
  47041. },
  47042. reclining: {
  47043. height: math.unit(70.5, "cm"),
  47044. weight: math.unit(68, "lb"),
  47045. name: "Reclining",
  47046. image: {
  47047. source: "./media/characters/arion/reclining.svg",
  47048. extra: 937/870,
  47049. bottom: 63/1000
  47050. }
  47051. },
  47052. },
  47053. [
  47054. {
  47055. name: "Colossus Size, Low",
  47056. height: math.unit(33, "meters"),
  47057. default: true
  47058. },
  47059. {
  47060. name: "Colossus Size, Mid",
  47061. height: math.unit(52, "meters")
  47062. },
  47063. {
  47064. name: "Colossus Size, High",
  47065. height: math.unit(60, "meters")
  47066. },
  47067. {
  47068. name: "Titan Size, Low",
  47069. height: math.unit(91, "meters"),
  47070. },
  47071. {
  47072. name: "Titan Size, Mid",
  47073. height: math.unit(122, "meters")
  47074. },
  47075. {
  47076. name: "Titan Size, High",
  47077. height: math.unit(162, "meters")
  47078. },
  47079. ]
  47080. ))
  47081. characterMakers.push(() => makeCharacter(
  47082. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  47083. {
  47084. front: {
  47085. height: math.unit(53, "meters"),
  47086. name: "Front",
  47087. image: {
  47088. source: "./media/characters/stellar-marbey/front.svg",
  47089. extra: 1913/1805,
  47090. bottom: 92/2005
  47091. }
  47092. },
  47093. back: {
  47094. height: math.unit(53, "meters"),
  47095. name: "Back",
  47096. image: {
  47097. source: "./media/characters/stellar-marbey/back.svg",
  47098. extra: 1960/1851,
  47099. bottom: 28/1988
  47100. }
  47101. },
  47102. mouth: {
  47103. height: math.unit(3.5, "meters"),
  47104. name: "Mouth",
  47105. image: {
  47106. source: "./media/characters/stellar-marbey/mouth.svg"
  47107. }
  47108. },
  47109. },
  47110. [
  47111. {
  47112. name: "Macro",
  47113. height: math.unit(53, "meters"),
  47114. default: true
  47115. },
  47116. ]
  47117. ))
  47118. characterMakers.push(() => makeCharacter(
  47119. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  47120. {
  47121. front: {
  47122. height: math.unit(8 + 1/12, "feet"),
  47123. weight: math.unit(233, "lb"),
  47124. name: "Front",
  47125. image: {
  47126. source: "./media/characters/matsu/front.svg",
  47127. extra: 832/772,
  47128. bottom: 40/872
  47129. }
  47130. },
  47131. back: {
  47132. height: math.unit(8 + 1/12, "feet"),
  47133. weight: math.unit(233, "lb"),
  47134. name: "Back",
  47135. image: {
  47136. source: "./media/characters/matsu/back.svg",
  47137. extra: 839/780,
  47138. bottom: 47/886
  47139. }
  47140. },
  47141. },
  47142. [
  47143. {
  47144. name: "Normal",
  47145. height: math.unit(8 + 1/12, "feet"),
  47146. default: true
  47147. },
  47148. ]
  47149. ))
  47150. characterMakers.push(() => makeCharacter(
  47151. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  47152. {
  47153. front: {
  47154. height: math.unit(4, "feet"),
  47155. weight: math.unit(148, "lb"),
  47156. name: "Front",
  47157. image: {
  47158. source: "./media/characters/thiz/front.svg",
  47159. extra: 1913/1748,
  47160. bottom: 62/1975
  47161. }
  47162. },
  47163. },
  47164. [
  47165. {
  47166. name: "Normal",
  47167. height: math.unit(4, "feet"),
  47168. default: true
  47169. },
  47170. ]
  47171. ))
  47172. characterMakers.push(() => makeCharacter(
  47173. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  47174. {
  47175. front: {
  47176. height: math.unit(7 + 6/12, "feet"),
  47177. weight: math.unit(267, "lb"),
  47178. name: "Front",
  47179. image: {
  47180. source: "./media/characters/marcel/front.svg",
  47181. extra: 1221/1096,
  47182. bottom: 76/1297
  47183. }
  47184. },
  47185. },
  47186. [
  47187. {
  47188. name: "Normal",
  47189. height: math.unit(7 + 6/12, "feet"),
  47190. default: true
  47191. },
  47192. ]
  47193. ))
  47194. characterMakers.push(() => makeCharacter(
  47195. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47196. {
  47197. side: {
  47198. height: math.unit(42, "meters"),
  47199. name: "Side",
  47200. image: {
  47201. source: "./media/characters/flake/side.svg",
  47202. extra: 1525/1306,
  47203. bottom: 209/1734
  47204. }
  47205. },
  47206. },
  47207. [
  47208. {
  47209. name: "Normal",
  47210. height: math.unit(42, "meters"),
  47211. default: true
  47212. },
  47213. ]
  47214. ))
  47215. characterMakers.push(() => makeCharacter(
  47216. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47217. {
  47218. dressed: {
  47219. height: math.unit(6 + 4/12, "feet"),
  47220. weight: math.unit(520, "lb"),
  47221. name: "Dressed",
  47222. image: {
  47223. source: "./media/characters/someonne/dressed.svg",
  47224. extra: 1020/1010,
  47225. bottom: 178/1198
  47226. }
  47227. },
  47228. undressed: {
  47229. height: math.unit(6 + 4/12, "feet"),
  47230. weight: math.unit(520, "lb"),
  47231. name: "Undressed",
  47232. image: {
  47233. source: "./media/characters/someonne/undressed.svg",
  47234. extra: 1019/1014,
  47235. bottom: 169/1188
  47236. }
  47237. },
  47238. },
  47239. [
  47240. {
  47241. name: "Normal",
  47242. height: math.unit(6 + 4/12, "feet"),
  47243. default: true
  47244. },
  47245. ]
  47246. ))
  47247. characterMakers.push(() => makeCharacter(
  47248. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47249. {
  47250. front: {
  47251. height: math.unit(3, "feet"),
  47252. weight: math.unit(30, "lb"),
  47253. name: "Front",
  47254. image: {
  47255. source: "./media/characters/till/front.svg",
  47256. extra: 892/823,
  47257. bottom: 55/947
  47258. }
  47259. },
  47260. },
  47261. [
  47262. {
  47263. name: "Normal",
  47264. height: math.unit(3, "feet"),
  47265. default: true
  47266. },
  47267. ]
  47268. ))
  47269. characterMakers.push(() => makeCharacter(
  47270. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47271. {
  47272. front: {
  47273. height: math.unit(9 + 8/12, "feet"),
  47274. weight: math.unit(800, "lb"),
  47275. name: "Front",
  47276. image: {
  47277. source: "./media/characters/sydney-heki/front.svg",
  47278. extra: 1360/1300,
  47279. bottom: 22/1382
  47280. }
  47281. },
  47282. back: {
  47283. height: math.unit(9 + 8/12, "feet"),
  47284. weight: math.unit(800, "lb"),
  47285. name: "Back",
  47286. image: {
  47287. source: "./media/characters/sydney-heki/back.svg",
  47288. extra: 1356/1293,
  47289. bottom: 12/1368
  47290. }
  47291. },
  47292. frontDressed: {
  47293. height: math.unit(9 + 8/12, "feet"),
  47294. weight: math.unit(800, "lb"),
  47295. name: "Front (Dressed)",
  47296. image: {
  47297. source: "./media/characters/sydney-heki/front-dressed.svg",
  47298. extra: 1360/1300,
  47299. bottom: 22/1382
  47300. }
  47301. },
  47302. },
  47303. [
  47304. {
  47305. name: "Normal",
  47306. height: math.unit(9 + 8/12, "feet"),
  47307. default: true
  47308. },
  47309. {
  47310. name: "Macro",
  47311. height: math.unit(500, "feet")
  47312. },
  47313. {
  47314. name: "Megamacro",
  47315. height: math.unit(3.6, "miles")
  47316. },
  47317. ]
  47318. ))
  47319. characterMakers.push(() => makeCharacter(
  47320. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47321. {
  47322. front: {
  47323. height: math.unit(200, "cm"),
  47324. weight: math.unit(250, "lb"),
  47325. name: "Front",
  47326. image: {
  47327. source: "./media/characters/fowler-karlsson/front.svg",
  47328. extra: 897/845,
  47329. bottom: 123/1020
  47330. }
  47331. },
  47332. back: {
  47333. height: math.unit(200, "cm"),
  47334. weight: math.unit(250, "lb"),
  47335. name: "Back",
  47336. image: {
  47337. source: "./media/characters/fowler-karlsson/back.svg",
  47338. extra: 999/944,
  47339. bottom: 26/1025
  47340. }
  47341. },
  47342. dick: {
  47343. height: math.unit(1.92, "feet"),
  47344. weight: math.unit(150, "lb"),
  47345. name: "Dick",
  47346. image: {
  47347. source: "./media/characters/fowler-karlsson/dick.svg"
  47348. }
  47349. },
  47350. },
  47351. [
  47352. {
  47353. name: "Normal",
  47354. height: math.unit(200, "cm"),
  47355. default: true
  47356. },
  47357. {
  47358. name: "Smaller Macro",
  47359. height: math.unit(90, "m")
  47360. },
  47361. {
  47362. name: "Macro",
  47363. height: math.unit(150, "m")
  47364. },
  47365. {
  47366. name: "Bigger Macro",
  47367. height: math.unit(300, "m")
  47368. },
  47369. ]
  47370. ))
  47371. characterMakers.push(() => makeCharacter(
  47372. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47373. {
  47374. side: {
  47375. height: math.unit(8 + 2/12, "feet"),
  47376. weight: math.unit(1, "tonne"),
  47377. name: "Side",
  47378. image: {
  47379. source: "./media/characters/rylide/side.svg",
  47380. extra: 1318/1034,
  47381. bottom: 106/1424
  47382. }
  47383. },
  47384. sitting: {
  47385. height: math.unit(303, "cm"),
  47386. weight: math.unit(1, "tonne"),
  47387. name: "Sitting",
  47388. image: {
  47389. source: "./media/characters/rylide/sitting.svg",
  47390. extra: 1303/1103,
  47391. bottom: 36/1339
  47392. }
  47393. },
  47394. },
  47395. [
  47396. {
  47397. name: "Normal",
  47398. height: math.unit(8 + 2/12, "feet"),
  47399. default: true
  47400. },
  47401. ]
  47402. ))
  47403. characterMakers.push(() => makeCharacter(
  47404. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47405. {
  47406. front: {
  47407. height: math.unit(5 + 10/12, "feet"),
  47408. weight: math.unit(160, "lb"),
  47409. name: "Front",
  47410. image: {
  47411. source: "./media/characters/pudask/front.svg",
  47412. extra: 1616/1590,
  47413. bottom: 161/1777
  47414. }
  47415. },
  47416. },
  47417. [
  47418. {
  47419. name: "Ferret Height",
  47420. height: math.unit(2 + 5/12, "feet")
  47421. },
  47422. {
  47423. name: "Canon Height",
  47424. height: math.unit(5 + 10/12, "feet"),
  47425. default: true
  47426. },
  47427. ]
  47428. ))
  47429. characterMakers.push(() => makeCharacter(
  47430. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47431. {
  47432. front: {
  47433. height: math.unit(3 + 6/12, "feet"),
  47434. weight: math.unit(60, "lb"),
  47435. name: "Front",
  47436. image: {
  47437. source: "./media/characters/ramita/front.svg",
  47438. extra: 1402/1232,
  47439. bottom: 62/1464
  47440. }
  47441. },
  47442. dressed: {
  47443. height: math.unit(3 + 6/12, "feet"),
  47444. weight: math.unit(60, "lb"),
  47445. name: "Dressed",
  47446. image: {
  47447. source: "./media/characters/ramita/dressed.svg",
  47448. extra: 1534/1249,
  47449. bottom: 50/1584
  47450. }
  47451. },
  47452. },
  47453. [
  47454. {
  47455. name: "Normal",
  47456. height: math.unit(3 + 6/12, "feet"),
  47457. default: true
  47458. },
  47459. ]
  47460. ))
  47461. characterMakers.push(() => makeCharacter(
  47462. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47463. {
  47464. front: {
  47465. height: math.unit(8, "feet"),
  47466. name: "Front",
  47467. image: {
  47468. source: "./media/characters/ark/front.svg",
  47469. extra: 772/693,
  47470. bottom: 45/817
  47471. }
  47472. },
  47473. },
  47474. [
  47475. {
  47476. name: "Normal",
  47477. height: math.unit(8, "feet"),
  47478. default: true
  47479. },
  47480. ]
  47481. ))
  47482. characterMakers.push(() => makeCharacter(
  47483. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47484. {
  47485. front: {
  47486. height: math.unit(6, "feet"),
  47487. weight: math.unit(250, "lb"),
  47488. volume: math.unit(5/8, "gallons"),
  47489. name: "Front",
  47490. image: {
  47491. source: "./media/characters/ludwig-horn/front.svg",
  47492. extra: 1782/1635,
  47493. bottom: 96/1878
  47494. }
  47495. },
  47496. back: {
  47497. height: math.unit(6, "feet"),
  47498. weight: math.unit(250, "lb"),
  47499. volume: math.unit(5/8, "gallons"),
  47500. name: "Back",
  47501. image: {
  47502. source: "./media/characters/ludwig-horn/back.svg",
  47503. extra: 1874/1729,
  47504. bottom: 27/1901
  47505. }
  47506. },
  47507. dick: {
  47508. height: math.unit(1.05, "feet"),
  47509. weight: math.unit(15, "lb"),
  47510. volume: math.unit(5/8, "gallons"),
  47511. name: "Dick",
  47512. image: {
  47513. source: "./media/characters/ludwig-horn/dick.svg"
  47514. }
  47515. },
  47516. },
  47517. [
  47518. {
  47519. name: "Small",
  47520. height: math.unit(6, "feet")
  47521. },
  47522. {
  47523. name: "Typical",
  47524. height: math.unit(12, "feet"),
  47525. default: true
  47526. },
  47527. {
  47528. name: "Building",
  47529. height: math.unit(80, "feet")
  47530. },
  47531. {
  47532. name: "Town",
  47533. height: math.unit(800, "feet")
  47534. },
  47535. {
  47536. name: "Kingdom",
  47537. height: math.unit(80000, "feet")
  47538. },
  47539. {
  47540. name: "Planet",
  47541. height: math.unit(8000000, "feet")
  47542. },
  47543. {
  47544. name: "Universe",
  47545. height: math.unit(8000000000, "feet")
  47546. },
  47547. {
  47548. name: "Transcended",
  47549. height: math.unit(8e27, "feet")
  47550. },
  47551. ]
  47552. ))
  47553. characterMakers.push(() => makeCharacter(
  47554. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47555. {
  47556. front: {
  47557. height: math.unit(5, "feet"),
  47558. weight: math.unit(50, "kg"),
  47559. name: "Front",
  47560. image: {
  47561. source: "./media/characters/biot-avery/front.svg",
  47562. extra: 1295/1232,
  47563. bottom: 86/1381
  47564. }
  47565. },
  47566. },
  47567. [
  47568. {
  47569. name: "Normal",
  47570. height: math.unit(5, "feet"),
  47571. default: true
  47572. },
  47573. ]
  47574. ))
  47575. characterMakers.push(() => makeCharacter(
  47576. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47577. {
  47578. front: {
  47579. height: math.unit(6, "feet"),
  47580. name: "Front",
  47581. image: {
  47582. source: "./media/characters/kitsune-kiro/front.svg",
  47583. extra: 1270/1158,
  47584. bottom: 42/1312
  47585. }
  47586. },
  47587. frontAlt: {
  47588. height: math.unit(6, "feet"),
  47589. name: "Front (Alt)",
  47590. image: {
  47591. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47592. extra: 1130/1081,
  47593. bottom: 36/1166
  47594. }
  47595. },
  47596. },
  47597. [
  47598. {
  47599. name: "Smol",
  47600. height: math.unit(3, "feet")
  47601. },
  47602. {
  47603. name: "Normal",
  47604. height: math.unit(6, "feet"),
  47605. default: true
  47606. },
  47607. ]
  47608. ))
  47609. characterMakers.push(() => makeCharacter(
  47610. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47611. {
  47612. front: {
  47613. height: math.unit(6, "feet"),
  47614. weight: math.unit(125, "lb"),
  47615. name: "Front",
  47616. image: {
  47617. source: "./media/characters/jack-thatcher/front.svg",
  47618. extra: 1474/1370,
  47619. bottom: 26/1500
  47620. }
  47621. },
  47622. back: {
  47623. height: math.unit(6, "feet"),
  47624. weight: math.unit(125, "lb"),
  47625. name: "Back",
  47626. image: {
  47627. source: "./media/characters/jack-thatcher/back.svg",
  47628. extra: 1489/1384,
  47629. bottom: 18/1507
  47630. }
  47631. },
  47632. },
  47633. [
  47634. {
  47635. name: "Normal",
  47636. height: math.unit(6, "feet"),
  47637. default: true
  47638. },
  47639. {
  47640. name: "Macro",
  47641. height: math.unit(75, "feet")
  47642. },
  47643. {
  47644. name: "Macro-er",
  47645. height: math.unit(250, "feet")
  47646. },
  47647. ]
  47648. ))
  47649. characterMakers.push(() => makeCharacter(
  47650. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47651. {
  47652. front: {
  47653. height: math.unit(7, "feet"),
  47654. weight: math.unit(110, "kg"),
  47655. name: "Front",
  47656. image: {
  47657. source: "./media/characters/max-hyper/front.svg",
  47658. extra: 1969/1881,
  47659. bottom: 49/2018
  47660. }
  47661. },
  47662. },
  47663. [
  47664. {
  47665. name: "Normal",
  47666. height: math.unit(7, "feet"),
  47667. default: true
  47668. },
  47669. ]
  47670. ))
  47671. characterMakers.push(() => makeCharacter(
  47672. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47673. {
  47674. front: {
  47675. height: math.unit(5 + 5/12, "feet"),
  47676. weight: math.unit(160, "lb"),
  47677. name: "Front",
  47678. image: {
  47679. source: "./media/characters/spook/front.svg",
  47680. extra: 794/791,
  47681. bottom: 54/848
  47682. }
  47683. },
  47684. back: {
  47685. height: math.unit(5 + 5/12, "feet"),
  47686. weight: math.unit(160, "lb"),
  47687. name: "Back",
  47688. image: {
  47689. source: "./media/characters/spook/back.svg",
  47690. extra: 812/798,
  47691. bottom: 32/844
  47692. }
  47693. },
  47694. },
  47695. [
  47696. {
  47697. name: "Normal",
  47698. height: math.unit(5 + 5/12, "feet"),
  47699. default: true
  47700. },
  47701. ]
  47702. ))
  47703. characterMakers.push(() => makeCharacter(
  47704. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47705. {
  47706. front: {
  47707. height: math.unit(18, "feet"),
  47708. name: "Front",
  47709. image: {
  47710. source: "./media/characters/xeaduulix/front.svg",
  47711. extra: 1380/1166,
  47712. bottom: 110/1490
  47713. }
  47714. },
  47715. back: {
  47716. height: math.unit(18, "feet"),
  47717. name: "Back",
  47718. image: {
  47719. source: "./media/characters/xeaduulix/back.svg",
  47720. extra: 1592/1170,
  47721. bottom: 128/1720
  47722. }
  47723. },
  47724. frontNsfw: {
  47725. height: math.unit(18, "feet"),
  47726. name: "Front (NSFW)",
  47727. image: {
  47728. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47729. extra: 1380/1166,
  47730. bottom: 110/1490
  47731. }
  47732. },
  47733. backNsfw: {
  47734. height: math.unit(18, "feet"),
  47735. name: "Back (NSFW)",
  47736. image: {
  47737. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47738. extra: 1592/1170,
  47739. bottom: 128/1720
  47740. }
  47741. },
  47742. },
  47743. [
  47744. {
  47745. name: "Normal",
  47746. height: math.unit(18, "feet"),
  47747. default: true
  47748. },
  47749. ]
  47750. ))
  47751. characterMakers.push(() => makeCharacter(
  47752. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47753. {
  47754. spreadWings: {
  47755. height: math.unit(20, "feet"),
  47756. name: "Spread Wings",
  47757. image: {
  47758. source: "./media/characters/fledge/spread-wings.svg",
  47759. extra: 693/635,
  47760. bottom: 26/719
  47761. }
  47762. },
  47763. front: {
  47764. height: math.unit(20, "feet"),
  47765. name: "Front",
  47766. image: {
  47767. source: "./media/characters/fledge/front.svg",
  47768. extra: 684/637,
  47769. bottom: 18/702
  47770. }
  47771. },
  47772. frontAlt: {
  47773. height: math.unit(20, "feet"),
  47774. name: "Front (Alt)",
  47775. image: {
  47776. source: "./media/characters/fledge/front-alt.svg",
  47777. extra: 708/664,
  47778. bottom: 13/721
  47779. }
  47780. },
  47781. back: {
  47782. height: math.unit(20, "feet"),
  47783. name: "Back",
  47784. image: {
  47785. source: "./media/characters/fledge/back.svg",
  47786. extra: 718/634,
  47787. bottom: 22/740
  47788. }
  47789. },
  47790. head: {
  47791. height: math.unit(5.55, "feet"),
  47792. name: "Head",
  47793. image: {
  47794. source: "./media/characters/fledge/head.svg"
  47795. }
  47796. },
  47797. headAlt: {
  47798. height: math.unit(5.1, "feet"),
  47799. name: "Head (Alt)",
  47800. image: {
  47801. source: "./media/characters/fledge/head-alt.svg"
  47802. }
  47803. },
  47804. },
  47805. [
  47806. {
  47807. name: "Small",
  47808. height: math.unit(6 + 2/12, "feet")
  47809. },
  47810. {
  47811. name: "Big",
  47812. height: math.unit(20, "feet"),
  47813. default: true
  47814. },
  47815. {
  47816. name: "Giant",
  47817. height: math.unit(100, "feet")
  47818. },
  47819. {
  47820. name: "Macro",
  47821. height: math.unit(200, "feet")
  47822. },
  47823. ]
  47824. ))
  47825. characterMakers.push(() => makeCharacter(
  47826. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47827. {
  47828. front: {
  47829. height: math.unit(1, "meter"),
  47830. name: "Front",
  47831. image: {
  47832. source: "./media/characters/atlas-morenai/front.svg",
  47833. extra: 1275/1043,
  47834. bottom: 19/1294
  47835. }
  47836. },
  47837. back: {
  47838. height: math.unit(1, "meter"),
  47839. name: "Back",
  47840. image: {
  47841. source: "./media/characters/atlas-morenai/back.svg",
  47842. extra: 1141/1001,
  47843. bottom: 25/1166
  47844. }
  47845. },
  47846. },
  47847. [
  47848. {
  47849. name: "Normal",
  47850. height: math.unit(1, "meter"),
  47851. default: true
  47852. },
  47853. {
  47854. name: "Magic-Infused",
  47855. height: math.unit(5, "meters")
  47856. },
  47857. ]
  47858. ))
  47859. characterMakers.push(() => makeCharacter(
  47860. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47861. {
  47862. front: {
  47863. height: math.unit(5, "meters"),
  47864. name: "Front",
  47865. image: {
  47866. source: "./media/characters/cintia/front.svg",
  47867. extra: 1312/1228,
  47868. bottom: 38/1350
  47869. }
  47870. },
  47871. back: {
  47872. height: math.unit(5, "meters"),
  47873. name: "Back",
  47874. image: {
  47875. source: "./media/characters/cintia/back.svg",
  47876. extra: 1260/1166,
  47877. bottom: 98/1358
  47878. }
  47879. },
  47880. frontDick: {
  47881. height: math.unit(5, "meters"),
  47882. name: "Front (Dick)",
  47883. image: {
  47884. source: "./media/characters/cintia/front-dick.svg",
  47885. extra: 1312/1228,
  47886. bottom: 38/1350
  47887. }
  47888. },
  47889. backDick: {
  47890. height: math.unit(5, "meters"),
  47891. name: "Back (Dick)",
  47892. image: {
  47893. source: "./media/characters/cintia/back-dick.svg",
  47894. extra: 1260/1166,
  47895. bottom: 98/1358
  47896. }
  47897. },
  47898. bust: {
  47899. height: math.unit(1.97, "meters"),
  47900. name: "Bust",
  47901. image: {
  47902. source: "./media/characters/cintia/bust.svg",
  47903. extra: 617/565,
  47904. bottom: 0/617
  47905. }
  47906. },
  47907. },
  47908. [
  47909. {
  47910. name: "Normal",
  47911. height: math.unit(5, "meters"),
  47912. default: true
  47913. },
  47914. ]
  47915. ))
  47916. characterMakers.push(() => makeCharacter(
  47917. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47918. {
  47919. side: {
  47920. height: math.unit(100, "feet"),
  47921. name: "Side",
  47922. image: {
  47923. source: "./media/characters/denora/side.svg",
  47924. extra: 875/803,
  47925. bottom: 9/884
  47926. }
  47927. },
  47928. },
  47929. [
  47930. {
  47931. name: "Standard",
  47932. height: math.unit(100, "feet"),
  47933. default: true
  47934. },
  47935. {
  47936. name: "Grand",
  47937. height: math.unit(1000, "feet")
  47938. },
  47939. {
  47940. name: "Conquering",
  47941. height: math.unit(10000, "feet")
  47942. },
  47943. ]
  47944. ))
  47945. characterMakers.push(() => makeCharacter(
  47946. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47947. {
  47948. front: {
  47949. height: math.unit(8 + 5/12, "feet"),
  47950. weight: math.unit(700, "lb"),
  47951. name: "Front",
  47952. image: {
  47953. source: "./media/characters/kiva/front.svg",
  47954. extra: 419/406,
  47955. bottom: 30/449
  47956. }
  47957. },
  47958. sideDressed: {
  47959. height: math.unit(8 + 5/12, "feet"),
  47960. weight: math.unit(700, "lb"),
  47961. name: "Side (Dressed)",
  47962. image: {
  47963. source: "./media/characters/kiva/side-dressed.svg",
  47964. extra: 1102/1055,
  47965. bottom: 60/1162
  47966. }
  47967. },
  47968. sideNude: {
  47969. height: math.unit(8 + 5/12, "feet"),
  47970. weight: math.unit(700, "lb"),
  47971. name: "Side (Nude)",
  47972. image: {
  47973. source: "./media/characters/kiva/side-nude.svg",
  47974. extra: 1102/1055,
  47975. bottom: 60/1162
  47976. }
  47977. },
  47978. },
  47979. [
  47980. {
  47981. name: "Base Height",
  47982. height: math.unit(8 + 5/12, "feet"),
  47983. default: true
  47984. },
  47985. {
  47986. name: "Macro",
  47987. height: math.unit(100, "feet")
  47988. },
  47989. {
  47990. name: "Max",
  47991. height: math.unit(3280, "feet")
  47992. },
  47993. ]
  47994. ))
  47995. characterMakers.push(() => makeCharacter(
  47996. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47997. {
  47998. front: {
  47999. height: math.unit(6 + 8/12, "feet"),
  48000. weight: math.unit(250, "lb"),
  48001. name: "Front",
  48002. image: {
  48003. source: "./media/characters/ztragon/front.svg",
  48004. extra: 1825/1684,
  48005. bottom: 98/1923
  48006. }
  48007. },
  48008. },
  48009. [
  48010. {
  48011. name: "Normal",
  48012. height: math.unit(6 + 8/12, "feet"),
  48013. default: true
  48014. },
  48015. {
  48016. name: "Macro",
  48017. height: math.unit(80, "feet")
  48018. },
  48019. ]
  48020. ))
  48021. characterMakers.push(() => makeCharacter(
  48022. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  48023. {
  48024. front: {
  48025. height: math.unit(10.4, "feet"),
  48026. weight: math.unit(2, "tons"),
  48027. name: "Front",
  48028. image: {
  48029. source: "./media/characters/yesenia/front.svg",
  48030. extra: 1479/1474,
  48031. bottom: 233/1712
  48032. }
  48033. },
  48034. },
  48035. [
  48036. {
  48037. name: "Normal",
  48038. height: math.unit(10.4, "feet"),
  48039. default: true
  48040. },
  48041. ]
  48042. ))
  48043. characterMakers.push(() => makeCharacter(
  48044. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  48045. {
  48046. normal: {
  48047. height: math.unit(6 + 1/12, "feet"),
  48048. weight: math.unit(180, "lb"),
  48049. name: "Normal",
  48050. image: {
  48051. source: "./media/characters/leanne-lycheborne/normal.svg",
  48052. extra: 1748/1660,
  48053. bottom: 98/1846
  48054. }
  48055. },
  48056. were: {
  48057. height: math.unit(12, "feet"),
  48058. weight: math.unit(1600, "lb"),
  48059. name: "Were",
  48060. image: {
  48061. source: "./media/characters/leanne-lycheborne/were.svg",
  48062. extra: 1485/1432,
  48063. bottom: 66/1551
  48064. }
  48065. },
  48066. },
  48067. [
  48068. {
  48069. name: "Normal",
  48070. height: math.unit(6 + 1/12, "feet"),
  48071. default: true
  48072. },
  48073. ]
  48074. ))
  48075. characterMakers.push(() => makeCharacter(
  48076. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  48077. {
  48078. side: {
  48079. height: math.unit(13, "feet"),
  48080. name: "Side",
  48081. image: {
  48082. source: "./media/characters/kira-tyler/side.svg",
  48083. extra: 693/393,
  48084. bottom: 58/751
  48085. }
  48086. },
  48087. },
  48088. [
  48089. {
  48090. name: "Normal",
  48091. height: math.unit(13, "feet"),
  48092. default: true
  48093. },
  48094. ]
  48095. ))
  48096. characterMakers.push(() => makeCharacter(
  48097. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  48098. {
  48099. front: {
  48100. height: math.unit(10.3, "feet"),
  48101. weight: math.unit(150, "lb"),
  48102. name: "Front",
  48103. image: {
  48104. source: "./media/characters/blaze/front.svg",
  48105. extra: 1378/1286,
  48106. bottom: 172/1550
  48107. }
  48108. },
  48109. },
  48110. [
  48111. {
  48112. name: "Normal",
  48113. height: math.unit(10.3, "feet"),
  48114. default: true
  48115. },
  48116. ]
  48117. ))
  48118. characterMakers.push(() => makeCharacter(
  48119. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  48120. {
  48121. side: {
  48122. height: math.unit(2, "meters"),
  48123. weight: math.unit(400, "kg"),
  48124. name: "Side",
  48125. image: {
  48126. source: "./media/characters/anu/side.svg",
  48127. extra: 506/394,
  48128. bottom: 18/524
  48129. }
  48130. },
  48131. },
  48132. [
  48133. {
  48134. name: "Humanoid",
  48135. height: math.unit(2, "meters")
  48136. },
  48137. {
  48138. name: "Normal",
  48139. height: math.unit(5, "meters"),
  48140. default: true
  48141. },
  48142. ]
  48143. ))
  48144. characterMakers.push(() => makeCharacter(
  48145. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  48146. {
  48147. front: {
  48148. height: math.unit(5 + 5/12, "feet"),
  48149. weight: math.unit(170, "lb"),
  48150. name: "Front",
  48151. image: {
  48152. source: "./media/characters/synx-the-lynx/front.svg",
  48153. extra: 1893/1745,
  48154. bottom: 17/1910
  48155. }
  48156. },
  48157. side: {
  48158. height: math.unit(5 + 5/12, "feet"),
  48159. weight: math.unit(170, "lb"),
  48160. name: "Side",
  48161. image: {
  48162. source: "./media/characters/synx-the-lynx/side.svg",
  48163. extra: 1884/1740,
  48164. bottom: 39/1923
  48165. }
  48166. },
  48167. back: {
  48168. height: math.unit(5 + 5/12, "feet"),
  48169. weight: math.unit(170, "lb"),
  48170. name: "Back",
  48171. image: {
  48172. source: "./media/characters/synx-the-lynx/back.svg",
  48173. extra: 1903/1755,
  48174. bottom: 14/1917
  48175. }
  48176. },
  48177. },
  48178. [
  48179. {
  48180. name: "Normal",
  48181. height: math.unit(5 + 5/12, "feet"),
  48182. default: true
  48183. },
  48184. ]
  48185. ))
  48186. characterMakers.push(() => makeCharacter(
  48187. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  48188. {
  48189. back: {
  48190. height: math.unit(15, "feet"),
  48191. name: "Back",
  48192. image: {
  48193. source: "./media/characters/nadezda-fex/back.svg",
  48194. extra: 1695/1481,
  48195. bottom: 25/1720
  48196. }
  48197. },
  48198. },
  48199. [
  48200. {
  48201. name: "Normal",
  48202. height: math.unit(15, "feet"),
  48203. default: true
  48204. },
  48205. {
  48206. name: "Macro",
  48207. height: math.unit(2.5, "miles")
  48208. },
  48209. {
  48210. name: "Goddess",
  48211. height: math.unit(2, "multiverses")
  48212. },
  48213. ]
  48214. ))
  48215. characterMakers.push(() => makeCharacter(
  48216. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48217. {
  48218. front: {
  48219. height: math.unit(216, "cm"),
  48220. name: "Front",
  48221. image: {
  48222. source: "./media/characters/lev/front.svg",
  48223. extra: 1728/1670,
  48224. bottom: 82/1810
  48225. }
  48226. },
  48227. back: {
  48228. height: math.unit(216, "cm"),
  48229. name: "Back",
  48230. image: {
  48231. source: "./media/characters/lev/back.svg",
  48232. extra: 1738/1675,
  48233. bottom: 24/1762
  48234. }
  48235. },
  48236. dressed: {
  48237. height: math.unit(216, "cm"),
  48238. name: "Dressed",
  48239. image: {
  48240. source: "./media/characters/lev/dressed.svg",
  48241. extra: 1397/1351,
  48242. bottom: 73/1470
  48243. }
  48244. },
  48245. head: {
  48246. height: math.unit(0.51, "meter"),
  48247. name: "Head",
  48248. image: {
  48249. source: "./media/characters/lev/head.svg"
  48250. }
  48251. },
  48252. },
  48253. [
  48254. {
  48255. name: "Normal",
  48256. height: math.unit(216, "cm"),
  48257. default: true
  48258. },
  48259. {
  48260. name: "Relatively Macro",
  48261. height: math.unit(80, "meters")
  48262. },
  48263. {
  48264. name: "Megamacro",
  48265. height: math.unit(21600, "meters")
  48266. },
  48267. {
  48268. name: "Megamacro+",
  48269. height: math.unit(64800, "meters")
  48270. },
  48271. ]
  48272. ))
  48273. characterMakers.push(() => makeCharacter(
  48274. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48275. {
  48276. front: {
  48277. height: math.unit(2, "meters"),
  48278. weight: math.unit(80, "kg"),
  48279. name: "Front",
  48280. image: {
  48281. source: "./media/characters/moka/front.svg",
  48282. extra: 1337/1255,
  48283. bottom: 58/1395
  48284. }
  48285. },
  48286. },
  48287. [
  48288. {
  48289. name: "Micro",
  48290. height: math.unit(15, "cm")
  48291. },
  48292. {
  48293. name: "Normal",
  48294. height: math.unit(2, "meters"),
  48295. default: true
  48296. },
  48297. {
  48298. name: "Macro",
  48299. height: math.unit(20, "meters"),
  48300. },
  48301. ]
  48302. ))
  48303. characterMakers.push(() => makeCharacter(
  48304. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48305. {
  48306. front: {
  48307. height: math.unit(9, "feet"),
  48308. weight: math.unit(240, "lb"),
  48309. name: "Front",
  48310. image: {
  48311. source: "./media/characters/kuzco/front.svg",
  48312. extra: 1593/1487,
  48313. bottom: 32/1625
  48314. }
  48315. },
  48316. side: {
  48317. height: math.unit(9, "feet"),
  48318. weight: math.unit(240, "lb"),
  48319. name: "Side",
  48320. image: {
  48321. source: "./media/characters/kuzco/side.svg",
  48322. extra: 1575/1485,
  48323. bottom: 30/1605
  48324. }
  48325. },
  48326. back: {
  48327. height: math.unit(9, "feet"),
  48328. weight: math.unit(240, "lb"),
  48329. name: "Back",
  48330. image: {
  48331. source: "./media/characters/kuzco/back.svg",
  48332. extra: 1603/1514,
  48333. bottom: 14/1617
  48334. }
  48335. },
  48336. },
  48337. [
  48338. {
  48339. name: "Normal",
  48340. height: math.unit(9, "feet"),
  48341. default: true
  48342. },
  48343. ]
  48344. ))
  48345. characterMakers.push(() => makeCharacter(
  48346. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48347. {
  48348. side: {
  48349. height: math.unit(2, "meters"),
  48350. weight: math.unit(300, "kg"),
  48351. name: "Side",
  48352. image: {
  48353. source: "./media/characters/ceruleus/side.svg",
  48354. extra: 1068/974,
  48355. bottom: 126/1194
  48356. }
  48357. },
  48358. maw: {
  48359. height: math.unit(0.8125, "meter"),
  48360. name: "Maw",
  48361. image: {
  48362. source: "./media/characters/ceruleus/maw.svg"
  48363. }
  48364. },
  48365. },
  48366. [
  48367. {
  48368. name: "Normal",
  48369. height: math.unit(16, "meters"),
  48370. default: true
  48371. },
  48372. ]
  48373. ))
  48374. characterMakers.push(() => makeCharacter(
  48375. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48376. {
  48377. front: {
  48378. height: math.unit(9, "feet"),
  48379. weight: math.unit(500, "kg"),
  48380. name: "Front",
  48381. image: {
  48382. source: "./media/characters/acouya/front.svg",
  48383. extra: 1660/1473,
  48384. bottom: 28/1688
  48385. }
  48386. },
  48387. },
  48388. [
  48389. {
  48390. name: "Normal",
  48391. height: math.unit(9, "feet"),
  48392. default: true
  48393. },
  48394. ]
  48395. ))
  48396. characterMakers.push(() => makeCharacter(
  48397. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48398. {
  48399. front: {
  48400. height: math.unit(5 + 6/12, "feet"),
  48401. weight: math.unit(195, "lb"),
  48402. name: "Front",
  48403. image: {
  48404. source: "./media/characters/vant/front.svg",
  48405. extra: 1396/1320,
  48406. bottom: 20/1416
  48407. }
  48408. },
  48409. back: {
  48410. height: math.unit(5 + 6/12, "feet"),
  48411. weight: math.unit(195, "lb"),
  48412. name: "Back",
  48413. image: {
  48414. source: "./media/characters/vant/back.svg",
  48415. extra: 1396/1320,
  48416. bottom: 20/1416
  48417. }
  48418. },
  48419. maw: {
  48420. height: math.unit(0.75, "feet"),
  48421. name: "Maw",
  48422. image: {
  48423. source: "./media/characters/vant/maw.svg"
  48424. }
  48425. },
  48426. paw: {
  48427. height: math.unit(1.07, "feet"),
  48428. name: "Paw",
  48429. image: {
  48430. source: "./media/characters/vant/paw.svg"
  48431. }
  48432. },
  48433. },
  48434. [
  48435. {
  48436. name: "Micro",
  48437. height: math.unit(0.25, "inches")
  48438. },
  48439. {
  48440. name: "Normal",
  48441. height: math.unit(5 + 6/12, "feet"),
  48442. default: true
  48443. },
  48444. {
  48445. name: "Macro",
  48446. height: math.unit(75, "feet")
  48447. },
  48448. ]
  48449. ))
  48450. characterMakers.push(() => makeCharacter(
  48451. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48452. {
  48453. front: {
  48454. height: math.unit(30, "meters"),
  48455. weight: math.unit(363, "tons"),
  48456. name: "Front",
  48457. image: {
  48458. source: "./media/characters/ahra/front.svg",
  48459. extra: 1914/1814,
  48460. bottom: 46/1960
  48461. }
  48462. },
  48463. },
  48464. [
  48465. {
  48466. name: "Macro",
  48467. height: math.unit(30, "meters"),
  48468. default: true
  48469. },
  48470. ]
  48471. ))
  48472. characterMakers.push(() => makeCharacter(
  48473. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48474. {
  48475. undressed: {
  48476. height: math.unit(2, "m"),
  48477. weight: math.unit(250, "kg"),
  48478. name: "Undressed",
  48479. image: {
  48480. source: "./media/characters/coriander/undressed.svg",
  48481. extra: 1757/1606,
  48482. bottom: 107/1864
  48483. }
  48484. },
  48485. dressed: {
  48486. height: math.unit(2, "m"),
  48487. weight: math.unit(250, "kg"),
  48488. name: "Dressed",
  48489. image: {
  48490. source: "./media/characters/coriander/dressed.svg",
  48491. extra: 1757/1606,
  48492. bottom: 107/1864
  48493. }
  48494. },
  48495. },
  48496. [
  48497. {
  48498. name: "Normal",
  48499. height: math.unit(4, "meters"),
  48500. default: true
  48501. },
  48502. {
  48503. name: "XL",
  48504. height: math.unit(6, "meters")
  48505. },
  48506. {
  48507. name: "XXL",
  48508. height: math.unit(8, "meters")
  48509. },
  48510. ]
  48511. ))
  48512. characterMakers.push(() => makeCharacter(
  48513. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48514. {
  48515. front: {
  48516. height: math.unit(6, "feet"),
  48517. name: "Front",
  48518. image: {
  48519. source: "./media/characters/syrinx/front.svg",
  48520. extra: 1557/1259,
  48521. bottom: 171/1728
  48522. }
  48523. },
  48524. },
  48525. [
  48526. {
  48527. name: "Normal",
  48528. height: math.unit(6 + 3/12, "feet"),
  48529. default: true
  48530. },
  48531. ]
  48532. ))
  48533. characterMakers.push(() => makeCharacter(
  48534. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48535. {
  48536. front: {
  48537. height: math.unit(11 + 6/12, "feet"),
  48538. weight: math.unit(1.5, "tons"),
  48539. name: "Front",
  48540. image: {
  48541. source: "./media/characters/bor/front.svg",
  48542. extra: 1189/1109,
  48543. bottom: 170/1359
  48544. }
  48545. },
  48546. },
  48547. [
  48548. {
  48549. name: "Normal",
  48550. height: math.unit(11 + 6/12, "feet"),
  48551. default: true
  48552. },
  48553. {
  48554. name: "Macro",
  48555. height: math.unit(32 + 9/12, "feet")
  48556. },
  48557. ]
  48558. ))
  48559. characterMakers.push(() => makeCharacter(
  48560. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48561. {
  48562. anthro: {
  48563. height: math.unit(9, "feet"),
  48564. weight: math.unit(2076, "lb"),
  48565. name: "Anthro",
  48566. image: {
  48567. source: "./media/characters/abacus/anthro.svg",
  48568. extra: 1540/1494,
  48569. bottom: 233/1773
  48570. }
  48571. },
  48572. pigeon: {
  48573. height: math.unit(1, "feet"),
  48574. name: "Pigeon",
  48575. image: {
  48576. source: "./media/characters/abacus/pigeon.svg",
  48577. extra: 528/525,
  48578. bottom: 46/574
  48579. }
  48580. },
  48581. },
  48582. [
  48583. {
  48584. name: "Normal",
  48585. height: math.unit(9, "feet"),
  48586. default: true
  48587. },
  48588. ]
  48589. ))
  48590. characterMakers.push(() => makeCharacter(
  48591. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48592. {
  48593. side: {
  48594. height: math.unit(6, "feet"),
  48595. name: "Side",
  48596. image: {
  48597. source: "./media/characters/delkhan/side.svg",
  48598. extra: 1884/1786,
  48599. bottom: 308/2192
  48600. }
  48601. },
  48602. head: {
  48603. height: math.unit(3.38, "feet"),
  48604. name: "Head",
  48605. image: {
  48606. source: "./media/characters/delkhan/head.svg"
  48607. }
  48608. },
  48609. },
  48610. [
  48611. {
  48612. name: "Normal",
  48613. height: math.unit(72, "feet"),
  48614. default: true
  48615. },
  48616. {
  48617. name: "Giant",
  48618. height: math.unit(172, "feet")
  48619. },
  48620. ]
  48621. ))
  48622. characterMakers.push(() => makeCharacter(
  48623. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48624. {
  48625. standing: {
  48626. height: math.unit(6, "feet"),
  48627. name: "Standing",
  48628. image: {
  48629. source: "./media/characters/euchidat/standing.svg",
  48630. extra: 1612/1553,
  48631. bottom: 116/1728
  48632. }
  48633. },
  48634. leaning: {
  48635. height: math.unit(6, "feet"),
  48636. name: "Leaning",
  48637. image: {
  48638. source: "./media/characters/euchidat/leaning.svg",
  48639. extra: 1719/1674,
  48640. bottom: 27/1746
  48641. }
  48642. },
  48643. },
  48644. [
  48645. {
  48646. name: "Normal",
  48647. height: math.unit(175, "feet"),
  48648. default: true
  48649. },
  48650. {
  48651. name: "Megamacro",
  48652. height: math.unit(190, "miles")
  48653. },
  48654. {
  48655. name: "Gigamacro",
  48656. height: math.unit(190000, "miles")
  48657. },
  48658. ]
  48659. ))
  48660. characterMakers.push(() => makeCharacter(
  48661. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48662. {
  48663. front: {
  48664. height: math.unit(6, "feet"),
  48665. weight: math.unit(150, "lb"),
  48666. name: "Front",
  48667. image: {
  48668. source: "./media/characters/rebecca-stack/front.svg",
  48669. extra: 1256/1201,
  48670. bottom: 18/1274
  48671. }
  48672. },
  48673. },
  48674. [
  48675. {
  48676. name: "Normal",
  48677. height: math.unit(5 + 8/12, "feet"),
  48678. default: true
  48679. },
  48680. {
  48681. name: "Demolitionist",
  48682. height: math.unit(200, "feet")
  48683. },
  48684. {
  48685. name: "Out of Control",
  48686. height: math.unit(2, "miles")
  48687. },
  48688. {
  48689. name: "Giga",
  48690. height: math.unit(7200, "miles")
  48691. },
  48692. ]
  48693. ))
  48694. characterMakers.push(() => makeCharacter(
  48695. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48696. {
  48697. front: {
  48698. height: math.unit(6, "feet"),
  48699. weight: math.unit(150, "lb"),
  48700. name: "Front",
  48701. image: {
  48702. source: "./media/characters/jenny-cartwright/front.svg",
  48703. extra: 1384/1376,
  48704. bottom: 58/1442
  48705. }
  48706. },
  48707. },
  48708. [
  48709. {
  48710. name: "Normal",
  48711. height: math.unit(6 + 7/12, "feet"),
  48712. default: true
  48713. },
  48714. {
  48715. name: "Librarian",
  48716. height: math.unit(55, "feet")
  48717. },
  48718. {
  48719. name: "Sightseer",
  48720. height: math.unit(50, "miles")
  48721. },
  48722. {
  48723. name: "Giga",
  48724. height: math.unit(30000, "miles")
  48725. },
  48726. ]
  48727. ))
  48728. characterMakers.push(() => makeCharacter(
  48729. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48730. {
  48731. nude: {
  48732. height: math.unit(8, "feet"),
  48733. weight: math.unit(225, "lb"),
  48734. name: "Nude",
  48735. image: {
  48736. source: "./media/characters/marvy/nude.svg",
  48737. extra: 1900/1683,
  48738. bottom: 89/1989
  48739. }
  48740. },
  48741. dressed: {
  48742. height: math.unit(8, "feet"),
  48743. weight: math.unit(225, "lb"),
  48744. name: "Dressed",
  48745. image: {
  48746. source: "./media/characters/marvy/dressed.svg",
  48747. extra: 1900/1683,
  48748. bottom: 89/1989
  48749. }
  48750. },
  48751. head: {
  48752. height: math.unit(2.85, "feet"),
  48753. name: "Head",
  48754. image: {
  48755. source: "./media/characters/marvy/head.svg"
  48756. }
  48757. },
  48758. },
  48759. [
  48760. {
  48761. name: "Normal",
  48762. height: math.unit(8, "feet"),
  48763. default: true
  48764. },
  48765. ]
  48766. ))
  48767. characterMakers.push(() => makeCharacter(
  48768. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48769. {
  48770. front: {
  48771. height: math.unit(8, "feet"),
  48772. weight: math.unit(250, "lb"),
  48773. name: "Front",
  48774. image: {
  48775. source: "./media/characters/leah/front.svg",
  48776. extra: 1257/1149,
  48777. bottom: 109/1366
  48778. }
  48779. },
  48780. },
  48781. [
  48782. {
  48783. name: "Normal",
  48784. height: math.unit(8, "feet"),
  48785. default: true
  48786. },
  48787. {
  48788. name: "Minimacro",
  48789. height: math.unit(40, "feet")
  48790. },
  48791. {
  48792. name: "Macro",
  48793. height: math.unit(124, "feet")
  48794. },
  48795. {
  48796. name: "Megamacro",
  48797. height: math.unit(850, "feet")
  48798. },
  48799. ]
  48800. ))
  48801. characterMakers.push(() => makeCharacter(
  48802. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48803. {
  48804. side: {
  48805. height: math.unit(13 + 6/12, "feet"),
  48806. weight: math.unit(3200, "lb"),
  48807. name: "Side",
  48808. image: {
  48809. source: "./media/characters/alvir/side.svg",
  48810. extra: 896/589,
  48811. bottom: 26/922
  48812. }
  48813. },
  48814. },
  48815. [
  48816. {
  48817. name: "Normal",
  48818. height: math.unit(13 + 6/12, "feet"),
  48819. default: true
  48820. },
  48821. ]
  48822. ))
  48823. characterMakers.push(() => makeCharacter(
  48824. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48825. {
  48826. front: {
  48827. height: math.unit(5 + 4/12, "feet"),
  48828. weight: math.unit(236, "lb"),
  48829. name: "Front",
  48830. image: {
  48831. source: "./media/characters/zaina-khalil/front.svg",
  48832. extra: 1533/1485,
  48833. bottom: 94/1627
  48834. }
  48835. },
  48836. side: {
  48837. height: math.unit(5 + 4/12, "feet"),
  48838. weight: math.unit(236, "lb"),
  48839. name: "Side",
  48840. image: {
  48841. source: "./media/characters/zaina-khalil/side.svg",
  48842. extra: 1537/1498,
  48843. bottom: 66/1603
  48844. }
  48845. },
  48846. back: {
  48847. height: math.unit(5 + 4/12, "feet"),
  48848. weight: math.unit(236, "lb"),
  48849. name: "Back",
  48850. image: {
  48851. source: "./media/characters/zaina-khalil/back.svg",
  48852. extra: 1546/1494,
  48853. bottom: 89/1635
  48854. }
  48855. },
  48856. },
  48857. [
  48858. {
  48859. name: "Normal",
  48860. height: math.unit(5 + 4/12, "feet"),
  48861. default: true
  48862. },
  48863. ]
  48864. ))
  48865. characterMakers.push(() => makeCharacter(
  48866. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48867. {
  48868. side: {
  48869. height: math.unit(12, "feet"),
  48870. weight: math.unit(4000, "lb"),
  48871. name: "Side",
  48872. image: {
  48873. source: "./media/characters/terry/side.svg",
  48874. extra: 1518/1439,
  48875. bottom: 149/1667
  48876. }
  48877. },
  48878. },
  48879. [
  48880. {
  48881. name: "Normal",
  48882. height: math.unit(12, "feet"),
  48883. default: true
  48884. },
  48885. ]
  48886. ))
  48887. characterMakers.push(() => makeCharacter(
  48888. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48889. {
  48890. front: {
  48891. height: math.unit(12, "feet"),
  48892. weight: math.unit(1500, "lb"),
  48893. name: "Front",
  48894. image: {
  48895. source: "./media/characters/kahea/front.svg",
  48896. extra: 1722/1617,
  48897. bottom: 179/1901
  48898. }
  48899. },
  48900. },
  48901. [
  48902. {
  48903. name: "Normal",
  48904. height: math.unit(12, "feet"),
  48905. default: true
  48906. },
  48907. ]
  48908. ))
  48909. characterMakers.push(() => makeCharacter(
  48910. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48911. {
  48912. demonFront: {
  48913. height: math.unit(36, "feet"),
  48914. name: "Front",
  48915. image: {
  48916. source: "./media/characters/alex-xuria/demon-front.svg",
  48917. extra: 1705/1673,
  48918. bottom: 198/1903
  48919. },
  48920. form: "demon",
  48921. default: true
  48922. },
  48923. demonBack: {
  48924. height: math.unit(36, "feet"),
  48925. name: "Back",
  48926. image: {
  48927. source: "./media/characters/alex-xuria/demon-back.svg",
  48928. extra: 1725/1693,
  48929. bottom: 70/1795
  48930. },
  48931. form: "demon"
  48932. },
  48933. demonHead: {
  48934. height: math.unit(2.14, "meters"),
  48935. name: "Head",
  48936. image: {
  48937. source: "./media/characters/alex-xuria/demon-head.svg"
  48938. },
  48939. form: "demon"
  48940. },
  48941. demonHand: {
  48942. height: math.unit(1.61, "meters"),
  48943. name: "Hand",
  48944. image: {
  48945. source: "./media/characters/alex-xuria/demon-hand.svg"
  48946. },
  48947. form: "demon"
  48948. },
  48949. demonPaw: {
  48950. height: math.unit(1.35, "meters"),
  48951. name: "Paw",
  48952. image: {
  48953. source: "./media/characters/alex-xuria/demon-paw.svg"
  48954. },
  48955. form: "demon"
  48956. },
  48957. demonFoot: {
  48958. height: math.unit(2.2, "meters"),
  48959. name: "Foot",
  48960. image: {
  48961. source: "./media/characters/alex-xuria/demon-foot.svg"
  48962. },
  48963. form: "demon"
  48964. },
  48965. demonCock: {
  48966. height: math.unit(1.74, "meters"),
  48967. name: "Cock",
  48968. image: {
  48969. source: "./media/characters/alex-xuria/demon-cock.svg"
  48970. },
  48971. form: "demon"
  48972. },
  48973. demonTailClosed: {
  48974. height: math.unit(1.47, "meters"),
  48975. name: "Tail (Closed)",
  48976. image: {
  48977. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48978. },
  48979. form: "demon"
  48980. },
  48981. demonTailOpen: {
  48982. height: math.unit(2.85, "meters"),
  48983. name: "Tail (Open)",
  48984. image: {
  48985. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48986. },
  48987. form: "demon"
  48988. },
  48989. incubusFront: {
  48990. height: math.unit(12, "feet"),
  48991. name: "Front",
  48992. image: {
  48993. source: "./media/characters/alex-xuria/incubus-front.svg",
  48994. extra: 1754/1677,
  48995. bottom: 125/1879
  48996. },
  48997. form: "incubus",
  48998. default: true
  48999. },
  49000. incubusBack: {
  49001. height: math.unit(12, "feet"),
  49002. name: "Back",
  49003. image: {
  49004. source: "./media/characters/alex-xuria/incubus-back.svg",
  49005. extra: 1702/1647,
  49006. bottom: 30/1732
  49007. },
  49008. form: "incubus"
  49009. },
  49010. incubusHead: {
  49011. height: math.unit(3.45, "feet"),
  49012. name: "Head",
  49013. image: {
  49014. source: "./media/characters/alex-xuria/incubus-head.svg"
  49015. },
  49016. form: "incubus"
  49017. },
  49018. rabbitFront: {
  49019. height: math.unit(6, "feet"),
  49020. name: "Front",
  49021. image: {
  49022. source: "./media/characters/alex-xuria/rabbit-front.svg",
  49023. extra: 1369/1349,
  49024. bottom: 45/1414
  49025. },
  49026. form: "rabbit",
  49027. default: true
  49028. },
  49029. rabbitSide: {
  49030. height: math.unit(6, "feet"),
  49031. name: "Side",
  49032. image: {
  49033. source: "./media/characters/alex-xuria/rabbit-side.svg",
  49034. extra: 1370/1356,
  49035. bottom: 37/1407
  49036. },
  49037. form: "rabbit"
  49038. },
  49039. rabbitBack: {
  49040. height: math.unit(6, "feet"),
  49041. name: "Back",
  49042. image: {
  49043. source: "./media/characters/alex-xuria/rabbit-back.svg",
  49044. extra: 1375/1358,
  49045. bottom: 43/1418
  49046. },
  49047. form: "rabbit"
  49048. },
  49049. },
  49050. [
  49051. {
  49052. name: "Normal",
  49053. height: math.unit(6, "feet"),
  49054. default: true,
  49055. form: "rabbit"
  49056. },
  49057. {
  49058. name: "Incubus",
  49059. height: math.unit(12, "feet"),
  49060. default: true,
  49061. form: "incubus"
  49062. },
  49063. {
  49064. name: "Demon",
  49065. height: math.unit(36, "feet"),
  49066. default: true,
  49067. form: "demon"
  49068. }
  49069. ],
  49070. {
  49071. "demon": {
  49072. name: "Demon",
  49073. default: true
  49074. },
  49075. "incubus": {
  49076. name: "Incubus",
  49077. },
  49078. "rabbit": {
  49079. name: "Rabbit"
  49080. }
  49081. }
  49082. ))
  49083. characterMakers.push(() => makeCharacter(
  49084. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  49085. {
  49086. front: {
  49087. height: math.unit(7 + 5/12, "feet"),
  49088. weight: math.unit(510, "lb"),
  49089. name: "Front",
  49090. image: {
  49091. source: "./media/characters/syrup/front.svg",
  49092. extra: 932/916,
  49093. bottom: 26/958
  49094. }
  49095. },
  49096. },
  49097. [
  49098. {
  49099. name: "Normal",
  49100. height: math.unit(7 + 5/12, "feet"),
  49101. default: true
  49102. },
  49103. {
  49104. name: "Big",
  49105. height: math.unit(50, "feet")
  49106. },
  49107. {
  49108. name: "Macro",
  49109. height: math.unit(300, "feet")
  49110. },
  49111. {
  49112. name: "Megamacro",
  49113. height: math.unit(1, "mile")
  49114. },
  49115. ]
  49116. ))
  49117. characterMakers.push(() => makeCharacter(
  49118. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  49119. {
  49120. front: {
  49121. height: math.unit(6 + 9/12, "feet"),
  49122. name: "Front",
  49123. image: {
  49124. source: "./media/characters/zeimne/front.svg",
  49125. extra: 1969/1806,
  49126. bottom: 53/2022
  49127. }
  49128. },
  49129. },
  49130. [
  49131. {
  49132. name: "Normal",
  49133. height: math.unit(6 + 9/12, "feet"),
  49134. default: true
  49135. },
  49136. {
  49137. name: "Giant",
  49138. height: math.unit(550, "feet")
  49139. },
  49140. {
  49141. name: "Mega",
  49142. height: math.unit(3, "miles")
  49143. },
  49144. {
  49145. name: "Giga",
  49146. height: math.unit(250, "miles")
  49147. },
  49148. {
  49149. name: "Tera",
  49150. height: math.unit(1, "AU")
  49151. },
  49152. ]
  49153. ))
  49154. characterMakers.push(() => makeCharacter(
  49155. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  49156. {
  49157. front: {
  49158. height: math.unit(5 + 2/12, "feet"),
  49159. name: "Front",
  49160. image: {
  49161. source: "./media/characters/grar/front.svg",
  49162. extra: 1331/1119,
  49163. bottom: 60/1391
  49164. }
  49165. },
  49166. back: {
  49167. height: math.unit(5 + 2/12, "feet"),
  49168. name: "Back",
  49169. image: {
  49170. source: "./media/characters/grar/back.svg",
  49171. extra: 1385/1169,
  49172. bottom: 23/1408
  49173. }
  49174. },
  49175. },
  49176. [
  49177. {
  49178. name: "Normal",
  49179. height: math.unit(5 + 2/12, "feet"),
  49180. default: true
  49181. },
  49182. ]
  49183. ))
  49184. characterMakers.push(() => makeCharacter(
  49185. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  49186. {
  49187. front: {
  49188. height: math.unit(13 + 7/12, "feet"),
  49189. weight: math.unit(2200, "lb"),
  49190. name: "Front",
  49191. image: {
  49192. source: "./media/characters/endraya/front.svg",
  49193. extra: 1289/1215,
  49194. bottom: 50/1339
  49195. }
  49196. },
  49197. nude: {
  49198. height: math.unit(13 + 7/12, "feet"),
  49199. weight: math.unit(2200, "lb"),
  49200. name: "Nude",
  49201. image: {
  49202. source: "./media/characters/endraya/nude.svg",
  49203. extra: 1247/1171,
  49204. bottom: 40/1287
  49205. }
  49206. },
  49207. head: {
  49208. height: math.unit(2.6, "feet"),
  49209. name: "Head",
  49210. image: {
  49211. source: "./media/characters/endraya/head.svg"
  49212. }
  49213. },
  49214. slit: {
  49215. height: math.unit(3.4, "feet"),
  49216. name: "Slit",
  49217. image: {
  49218. source: "./media/characters/endraya/slit.svg"
  49219. }
  49220. },
  49221. },
  49222. [
  49223. {
  49224. name: "Normal",
  49225. height: math.unit(13 + 7/12, "feet"),
  49226. default: true
  49227. },
  49228. {
  49229. name: "Macro",
  49230. height: math.unit(200, "feet")
  49231. },
  49232. ]
  49233. ))
  49234. characterMakers.push(() => makeCharacter(
  49235. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49236. {
  49237. front: {
  49238. height: math.unit(1.81, "meters"),
  49239. weight: math.unit(69, "kg"),
  49240. name: "Front",
  49241. image: {
  49242. source: "./media/characters/rodryana/front.svg",
  49243. extra: 2002/1921,
  49244. bottom: 53/2055
  49245. }
  49246. },
  49247. back: {
  49248. height: math.unit(1.81, "meters"),
  49249. weight: math.unit(69, "kg"),
  49250. name: "Back",
  49251. image: {
  49252. source: "./media/characters/rodryana/back.svg",
  49253. extra: 1993/1926,
  49254. bottom: 48/2041
  49255. }
  49256. },
  49257. maw: {
  49258. height: math.unit(0.19769417475, "meters"),
  49259. name: "Maw",
  49260. image: {
  49261. source: "./media/characters/rodryana/maw.svg"
  49262. }
  49263. },
  49264. slit: {
  49265. height: math.unit(0.31631067961, "meters"),
  49266. name: "Slit",
  49267. image: {
  49268. source: "./media/characters/rodryana/slit.svg"
  49269. }
  49270. },
  49271. },
  49272. [
  49273. {
  49274. name: "Normal",
  49275. height: math.unit(1.81, "meters")
  49276. },
  49277. {
  49278. name: "Mini Macro",
  49279. height: math.unit(181, "meters")
  49280. },
  49281. {
  49282. name: "Macro",
  49283. height: math.unit(452, "meters"),
  49284. default: true
  49285. },
  49286. {
  49287. name: "Mega Macro",
  49288. height: math.unit(1.375, "km")
  49289. },
  49290. {
  49291. name: "Giga Macro",
  49292. height: math.unit(13.575, "km")
  49293. },
  49294. ]
  49295. ))
  49296. characterMakers.push(() => makeCharacter(
  49297. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49298. {
  49299. front: {
  49300. height: math.unit(6, "feet"),
  49301. weight: math.unit(1000, "lb"),
  49302. name: "Front",
  49303. image: {
  49304. source: "./media/characters/asaya/front.svg",
  49305. extra: 1460/1200,
  49306. bottom: 71/1531
  49307. }
  49308. },
  49309. },
  49310. [
  49311. {
  49312. name: "Normal",
  49313. height: math.unit(8, "km"),
  49314. default: true
  49315. },
  49316. ]
  49317. ))
  49318. characterMakers.push(() => makeCharacter(
  49319. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49320. {
  49321. front: {
  49322. height: math.unit(3.5, "meters"),
  49323. name: "Front",
  49324. image: {
  49325. source: "./media/characters/sarzu-and-israz/front.svg",
  49326. extra: 1570/1558,
  49327. bottom: 150/1720
  49328. },
  49329. },
  49330. back: {
  49331. height: math.unit(3.5, "meters"),
  49332. name: "Back",
  49333. image: {
  49334. source: "./media/characters/sarzu-and-israz/back.svg",
  49335. extra: 1523/1509,
  49336. bottom: 132/1655
  49337. },
  49338. },
  49339. frontFemale: {
  49340. height: math.unit(3.5, "meters"),
  49341. name: "Front (Female)",
  49342. image: {
  49343. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49344. extra: 1570/1558,
  49345. bottom: 150/1720
  49346. },
  49347. },
  49348. frontHerm: {
  49349. height: math.unit(3.5, "meters"),
  49350. name: "Front (Herm)",
  49351. image: {
  49352. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49353. extra: 1570/1558,
  49354. bottom: 150/1720
  49355. },
  49356. },
  49357. },
  49358. [
  49359. {
  49360. name: "Normal",
  49361. height: math.unit(3.5, "meters"),
  49362. default: true,
  49363. },
  49364. {
  49365. name: "Macro",
  49366. height: math.unit(65.5, "meters"),
  49367. },
  49368. ],
  49369. ))
  49370. characterMakers.push(() => makeCharacter(
  49371. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49372. {
  49373. front: {
  49374. height: math.unit(6, "feet"),
  49375. weight: math.unit(250, "lb"),
  49376. name: "Front",
  49377. image: {
  49378. source: "./media/characters/zenimma/front.svg",
  49379. extra: 1346/1320,
  49380. bottom: 58/1404
  49381. }
  49382. },
  49383. back: {
  49384. height: math.unit(6, "feet"),
  49385. weight: math.unit(250, "lb"),
  49386. name: "Back",
  49387. image: {
  49388. source: "./media/characters/zenimma/back.svg",
  49389. extra: 1324/1308,
  49390. bottom: 44/1368
  49391. }
  49392. },
  49393. dick: {
  49394. height: math.unit(1.44, "feet"),
  49395. name: "Dick",
  49396. image: {
  49397. source: "./media/characters/zenimma/dick.svg"
  49398. }
  49399. },
  49400. },
  49401. [
  49402. {
  49403. name: "Canon Height",
  49404. height: math.unit(66, "miles"),
  49405. default: true
  49406. },
  49407. ]
  49408. ))
  49409. characterMakers.push(() => makeCharacter(
  49410. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49411. {
  49412. nude: {
  49413. height: math.unit(6, "feet"),
  49414. weight: math.unit(150, "lb"),
  49415. name: "Nude",
  49416. image: {
  49417. source: "./media/characters/shavon/nude.svg",
  49418. extra: 1242/1096,
  49419. bottom: 98/1340
  49420. }
  49421. },
  49422. dressed: {
  49423. height: math.unit(6, "feet"),
  49424. weight: math.unit(150, "lb"),
  49425. name: "Dressed",
  49426. image: {
  49427. source: "./media/characters/shavon/dressed.svg",
  49428. extra: 1242/1096,
  49429. bottom: 98/1340
  49430. }
  49431. },
  49432. },
  49433. [
  49434. {
  49435. name: "Macro",
  49436. height: math.unit(255, "feet"),
  49437. default: true
  49438. },
  49439. ]
  49440. ))
  49441. characterMakers.push(() => makeCharacter(
  49442. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49443. {
  49444. front: {
  49445. height: math.unit(6, "feet"),
  49446. name: "Front",
  49447. image: {
  49448. source: "./media/characters/steph/front.svg",
  49449. extra: 1430/1330,
  49450. bottom: 54/1484
  49451. }
  49452. },
  49453. },
  49454. [
  49455. {
  49456. name: "Normal",
  49457. height: math.unit(6, "feet"),
  49458. default: true
  49459. },
  49460. ]
  49461. ))
  49462. characterMakers.push(() => makeCharacter(
  49463. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49464. {
  49465. front: {
  49466. height: math.unit(9, "feet"),
  49467. weight: math.unit(400, "lb"),
  49468. name: "Front",
  49469. image: {
  49470. source: "./media/characters/kil'aman/front.svg",
  49471. extra: 1210/1159,
  49472. bottom: 109/1319
  49473. }
  49474. },
  49475. head: {
  49476. height: math.unit(2.14, "feet"),
  49477. name: "Head",
  49478. image: {
  49479. source: "./media/characters/kil'aman/head.svg"
  49480. }
  49481. },
  49482. maw: {
  49483. height: math.unit(1.21, "feet"),
  49484. name: "Maw",
  49485. image: {
  49486. source: "./media/characters/kil'aman/maw.svg"
  49487. }
  49488. },
  49489. foot: {
  49490. height: math.unit(1.7, "feet"),
  49491. name: "Foot",
  49492. image: {
  49493. source: "./media/characters/kil'aman/foot.svg"
  49494. }
  49495. },
  49496. dick: {
  49497. height: math.unit(2.1, "feet"),
  49498. name: "Dick",
  49499. image: {
  49500. source: "./media/characters/kil'aman/dick.svg"
  49501. }
  49502. },
  49503. },
  49504. [
  49505. {
  49506. name: "Normal",
  49507. height: math.unit(9, "feet")
  49508. },
  49509. {
  49510. name: "Canon Height",
  49511. height: math.unit(10, "miles"),
  49512. default: true
  49513. },
  49514. {
  49515. name: "Maximum",
  49516. height: math.unit(6e9, "miles")
  49517. },
  49518. ]
  49519. ))
  49520. characterMakers.push(() => makeCharacter(
  49521. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49522. {
  49523. front: {
  49524. height: math.unit(90, "feet"),
  49525. weight: math.unit(675000, "lb"),
  49526. name: "Front",
  49527. image: {
  49528. source: "./media/characters/qadan/front.svg",
  49529. extra: 1012/1004,
  49530. bottom: 78/1090
  49531. }
  49532. },
  49533. back: {
  49534. height: math.unit(90, "feet"),
  49535. weight: math.unit(675000, "lb"),
  49536. name: "Back",
  49537. image: {
  49538. source: "./media/characters/qadan/back.svg",
  49539. extra: 1042/1031,
  49540. bottom: 55/1097
  49541. }
  49542. },
  49543. armored: {
  49544. height: math.unit(90, "feet"),
  49545. weight: math.unit(675000, "lb"),
  49546. name: "Armored",
  49547. image: {
  49548. source: "./media/characters/qadan/armored.svg",
  49549. extra: 1047/1037,
  49550. bottom: 48/1095
  49551. }
  49552. },
  49553. },
  49554. [
  49555. {
  49556. name: "Normal",
  49557. height: math.unit(90, "feet"),
  49558. default: true
  49559. },
  49560. ]
  49561. ))
  49562. characterMakers.push(() => makeCharacter(
  49563. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49564. {
  49565. front: {
  49566. height: math.unit(6, "feet"),
  49567. weight: math.unit(225, "lb"),
  49568. name: "Front",
  49569. image: {
  49570. source: "./media/characters/brooke/front.svg",
  49571. extra: 1050/1010,
  49572. bottom: 66/1116
  49573. }
  49574. },
  49575. back: {
  49576. height: math.unit(6, "feet"),
  49577. weight: math.unit(225, "lb"),
  49578. name: "Back",
  49579. image: {
  49580. source: "./media/characters/brooke/back.svg",
  49581. extra: 1053/1013,
  49582. bottom: 41/1094
  49583. }
  49584. },
  49585. dressed: {
  49586. height: math.unit(6, "feet"),
  49587. weight: math.unit(225, "lb"),
  49588. name: "Dressed",
  49589. image: {
  49590. source: "./media/characters/brooke/dressed.svg",
  49591. extra: 1050/1010,
  49592. bottom: 66/1116
  49593. }
  49594. },
  49595. },
  49596. [
  49597. {
  49598. name: "Canon Height",
  49599. height: math.unit(500, "miles"),
  49600. default: true
  49601. },
  49602. ]
  49603. ))
  49604. characterMakers.push(() => makeCharacter(
  49605. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49606. {
  49607. front: {
  49608. height: math.unit(6 + 2/12, "feet"),
  49609. weight: math.unit(210, "lb"),
  49610. name: "Front",
  49611. image: {
  49612. source: "./media/characters/wubs/front.svg",
  49613. extra: 1345/1325,
  49614. bottom: 70/1415
  49615. }
  49616. },
  49617. back: {
  49618. height: math.unit(6 + 2/12, "feet"),
  49619. weight: math.unit(210, "lb"),
  49620. name: "Back",
  49621. image: {
  49622. source: "./media/characters/wubs/back.svg",
  49623. extra: 1296/1275,
  49624. bottom: 58/1354
  49625. }
  49626. },
  49627. },
  49628. [
  49629. {
  49630. name: "Normal",
  49631. height: math.unit(6 + 2/12, "feet"),
  49632. default: true
  49633. },
  49634. {
  49635. name: "Macro",
  49636. height: math.unit(1000, "feet")
  49637. },
  49638. {
  49639. name: "Megamacro",
  49640. height: math.unit(1, "mile")
  49641. },
  49642. ]
  49643. ))
  49644. characterMakers.push(() => makeCharacter(
  49645. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49646. {
  49647. front: {
  49648. height: math.unit(4, "feet"),
  49649. weight: math.unit(120, "lb"),
  49650. name: "Front",
  49651. image: {
  49652. source: "./media/characters/blue/front.svg",
  49653. extra: 1636/1525,
  49654. bottom: 43/1679
  49655. }
  49656. },
  49657. back: {
  49658. height: math.unit(4, "feet"),
  49659. weight: math.unit(120, "lb"),
  49660. name: "Back",
  49661. image: {
  49662. source: "./media/characters/blue/back.svg",
  49663. extra: 1660/1560,
  49664. bottom: 57/1717
  49665. }
  49666. },
  49667. paws: {
  49668. height: math.unit(0.826, "feet"),
  49669. name: "Paws",
  49670. image: {
  49671. source: "./media/characters/blue/paws.svg"
  49672. }
  49673. },
  49674. },
  49675. [
  49676. {
  49677. name: "Micro",
  49678. height: math.unit(3, "inches")
  49679. },
  49680. {
  49681. name: "Normal",
  49682. height: math.unit(4, "feet"),
  49683. default: true
  49684. },
  49685. {
  49686. name: "Femenine Form",
  49687. height: math.unit(14, "feet")
  49688. },
  49689. {
  49690. name: "Werebat Form",
  49691. height: math.unit(18, "feet")
  49692. },
  49693. ]
  49694. ))
  49695. characterMakers.push(() => makeCharacter(
  49696. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49697. {
  49698. female: {
  49699. height: math.unit(7 + 4/12, "feet"),
  49700. weight: math.unit(243, "lb"),
  49701. name: "Female",
  49702. image: {
  49703. source: "./media/characters/kaya/female.svg",
  49704. extra: 975/898,
  49705. bottom: 34/1009
  49706. }
  49707. },
  49708. herm: {
  49709. height: math.unit(7 + 4/12, "feet"),
  49710. weight: math.unit(243, "lb"),
  49711. name: "Herm",
  49712. image: {
  49713. source: "./media/characters/kaya/herm.svg",
  49714. extra: 975/898,
  49715. bottom: 34/1009
  49716. }
  49717. },
  49718. },
  49719. [
  49720. {
  49721. name: "Normal",
  49722. height: math.unit(7 + 4/12, "feet"),
  49723. default: true
  49724. },
  49725. ]
  49726. ))
  49727. characterMakers.push(() => makeCharacter(
  49728. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49729. {
  49730. female: {
  49731. height: math.unit(9 + 4/12, "feet"),
  49732. weight: math.unit(398, "lb"),
  49733. name: "Female",
  49734. image: {
  49735. source: "./media/characters/kassandra/female.svg",
  49736. extra: 908/839,
  49737. bottom: 61/969
  49738. }
  49739. },
  49740. intersex: {
  49741. height: math.unit(9 + 4/12, "feet"),
  49742. weight: math.unit(398, "lb"),
  49743. name: "Intersex",
  49744. image: {
  49745. source: "./media/characters/kassandra/intersex.svg",
  49746. extra: 908/839,
  49747. bottom: 61/969
  49748. }
  49749. },
  49750. },
  49751. [
  49752. {
  49753. name: "Normal",
  49754. height: math.unit(9 + 4/12, "feet"),
  49755. default: true
  49756. },
  49757. ]
  49758. ))
  49759. characterMakers.push(() => makeCharacter(
  49760. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49761. {
  49762. front: {
  49763. height: math.unit(3, "meters"),
  49764. name: "Front",
  49765. image: {
  49766. source: "./media/characters/amy/front.svg",
  49767. extra: 1380/1343,
  49768. bottom: 70/1450
  49769. }
  49770. },
  49771. back: {
  49772. height: math.unit(3, "meters"),
  49773. name: "Back",
  49774. image: {
  49775. source: "./media/characters/amy/back.svg",
  49776. extra: 1380/1347,
  49777. bottom: 66/1446
  49778. }
  49779. },
  49780. },
  49781. [
  49782. {
  49783. name: "Normal",
  49784. height: math.unit(3, "meters"),
  49785. default: true
  49786. },
  49787. ]
  49788. ))
  49789. characterMakers.push(() => makeCharacter(
  49790. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49791. {
  49792. side: {
  49793. height: math.unit(47, "cm"),
  49794. weight: math.unit(10.8, "kg"),
  49795. name: "Side",
  49796. image: {
  49797. source: "./media/characters/alphaschakal/side.svg",
  49798. extra: 1058/568,
  49799. bottom: 62/1120
  49800. }
  49801. },
  49802. back: {
  49803. height: math.unit(78, "cm"),
  49804. weight: math.unit(10.8, "kg"),
  49805. name: "Back",
  49806. image: {
  49807. source: "./media/characters/alphaschakal/back.svg",
  49808. extra: 1102/942,
  49809. bottom: 185/1287
  49810. }
  49811. },
  49812. head: {
  49813. height: math.unit(28, "cm"),
  49814. name: "Head",
  49815. image: {
  49816. source: "./media/characters/alphaschakal/head.svg",
  49817. extra: 696/508,
  49818. bottom: 0/696
  49819. }
  49820. },
  49821. paw: {
  49822. height: math.unit(16, "cm"),
  49823. name: "Paw",
  49824. image: {
  49825. source: "./media/characters/alphaschakal/paw.svg"
  49826. }
  49827. },
  49828. },
  49829. [
  49830. {
  49831. name: "Normal",
  49832. height: math.unit(47, "cm"),
  49833. default: true
  49834. },
  49835. {
  49836. name: "Macro",
  49837. height: math.unit(340, "cm")
  49838. },
  49839. ]
  49840. ))
  49841. characterMakers.push(() => makeCharacter(
  49842. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49843. {
  49844. front: {
  49845. height: math.unit(36, "earths"),
  49846. name: "Front",
  49847. image: {
  49848. source: "./media/characters/ecobyss/front.svg",
  49849. extra: 1282/1215,
  49850. bottom: 11/1293
  49851. }
  49852. },
  49853. back: {
  49854. height: math.unit(36, "earths"),
  49855. name: "Back",
  49856. image: {
  49857. source: "./media/characters/ecobyss/back.svg",
  49858. extra: 1291/1222,
  49859. bottom: 8/1299
  49860. }
  49861. },
  49862. },
  49863. [
  49864. {
  49865. name: "Normal",
  49866. height: math.unit(36, "earths"),
  49867. default: true
  49868. },
  49869. ]
  49870. ))
  49871. characterMakers.push(() => makeCharacter(
  49872. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49873. {
  49874. front: {
  49875. height: math.unit(12, "feet"),
  49876. name: "Front",
  49877. image: {
  49878. source: "./media/characters/vasuk/front.svg",
  49879. extra: 1326/1207,
  49880. bottom: 64/1390
  49881. }
  49882. },
  49883. },
  49884. [
  49885. {
  49886. name: "Normal",
  49887. height: math.unit(12, "feet"),
  49888. default: true
  49889. },
  49890. ]
  49891. ))
  49892. characterMakers.push(() => makeCharacter(
  49893. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49894. {
  49895. side: {
  49896. height: math.unit(100, "feet"),
  49897. name: "Side",
  49898. image: {
  49899. source: "./media/characters/linneaus/side.svg",
  49900. extra: 987/807,
  49901. bottom: 47/1034
  49902. }
  49903. },
  49904. },
  49905. [
  49906. {
  49907. name: "Macro",
  49908. height: math.unit(100, "feet"),
  49909. default: true
  49910. },
  49911. ]
  49912. ))
  49913. characterMakers.push(() => makeCharacter(
  49914. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49915. {
  49916. front: {
  49917. height: math.unit(8, "feet"),
  49918. weight: math.unit(1200, "lb"),
  49919. name: "Front",
  49920. image: {
  49921. source: "./media/characters/nyterious-daligdig/front.svg",
  49922. extra: 1284/1094,
  49923. bottom: 84/1368
  49924. }
  49925. },
  49926. back: {
  49927. height: math.unit(8, "feet"),
  49928. weight: math.unit(1200, "lb"),
  49929. name: "Back",
  49930. image: {
  49931. source: "./media/characters/nyterious-daligdig/back.svg",
  49932. extra: 1301/1121,
  49933. bottom: 129/1430
  49934. }
  49935. },
  49936. mouth: {
  49937. height: math.unit(1.464, "feet"),
  49938. name: "Mouth",
  49939. image: {
  49940. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49941. }
  49942. },
  49943. },
  49944. [
  49945. {
  49946. name: "Small",
  49947. height: math.unit(8, "feet"),
  49948. default: true
  49949. },
  49950. {
  49951. name: "Normal",
  49952. height: math.unit(15, "feet")
  49953. },
  49954. {
  49955. name: "Macro",
  49956. height: math.unit(90, "feet")
  49957. },
  49958. ]
  49959. ))
  49960. characterMakers.push(() => makeCharacter(
  49961. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49962. {
  49963. front: {
  49964. height: math.unit(7 + 4/12, "feet"),
  49965. weight: math.unit(252, "lb"),
  49966. name: "Front",
  49967. image: {
  49968. source: "./media/characters/bandel/front.svg",
  49969. extra: 1946/1775,
  49970. bottom: 26/1972
  49971. }
  49972. },
  49973. back: {
  49974. height: math.unit(7 + 4/12, "feet"),
  49975. weight: math.unit(252, "lb"),
  49976. name: "Back",
  49977. image: {
  49978. source: "./media/characters/bandel/back.svg",
  49979. extra: 1940/1770,
  49980. bottom: 25/1965
  49981. }
  49982. },
  49983. maw: {
  49984. height: math.unit(2.15, "feet"),
  49985. name: "Maw",
  49986. image: {
  49987. source: "./media/characters/bandel/maw.svg"
  49988. }
  49989. },
  49990. stomach: {
  49991. height: math.unit(1.95, "feet"),
  49992. name: "Stomach",
  49993. image: {
  49994. source: "./media/characters/bandel/stomach.svg"
  49995. }
  49996. },
  49997. },
  49998. [
  49999. {
  50000. name: "Normal",
  50001. height: math.unit(7 + 4/12, "feet"),
  50002. default: true
  50003. },
  50004. ]
  50005. ))
  50006. characterMakers.push(() => makeCharacter(
  50007. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  50008. {
  50009. front: {
  50010. height: math.unit(10 + 5/12, "feet"),
  50011. weight: math.unit(773.5, "kg"),
  50012. name: "Front",
  50013. image: {
  50014. source: "./media/characters/zed/front.svg",
  50015. extra: 987/941,
  50016. bottom: 52/1039
  50017. }
  50018. },
  50019. },
  50020. [
  50021. {
  50022. name: "Short",
  50023. height: math.unit(5 + 4/12, "feet")
  50024. },
  50025. {
  50026. name: "Average",
  50027. height: math.unit(10 + 5/12, "feet"),
  50028. default: true
  50029. },
  50030. {
  50031. name: "Mini-Macro",
  50032. height: math.unit(24 + 9/12, "feet")
  50033. },
  50034. {
  50035. name: "Macro",
  50036. height: math.unit(249, "feet")
  50037. },
  50038. {
  50039. name: "Mega-Macro",
  50040. height: math.unit(12490, "feet")
  50041. },
  50042. {
  50043. name: "Giga-Macro",
  50044. height: math.unit(24.9, "miles")
  50045. },
  50046. {
  50047. name: "Tera-Macro",
  50048. height: math.unit(24900, "miles")
  50049. },
  50050. {
  50051. name: "Cosmic Scale",
  50052. height: math.unit(38.9, "lightyears")
  50053. },
  50054. {
  50055. name: "Universal Scale",
  50056. height: math.unit(138e12, "lightyears")
  50057. },
  50058. ]
  50059. ))
  50060. characterMakers.push(() => makeCharacter(
  50061. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  50062. {
  50063. front: {
  50064. height: math.unit(1561, "inches"),
  50065. name: "Front",
  50066. image: {
  50067. source: "./media/characters/ivan/front.svg",
  50068. extra: 1126/1071,
  50069. bottom: 26/1152
  50070. }
  50071. },
  50072. back: {
  50073. height: math.unit(1561, "inches"),
  50074. name: "Back",
  50075. image: {
  50076. source: "./media/characters/ivan/back.svg",
  50077. extra: 1134/1079,
  50078. bottom: 30/1164
  50079. }
  50080. },
  50081. },
  50082. [
  50083. {
  50084. name: "Normal",
  50085. height: math.unit(1561, "inches"),
  50086. default: true
  50087. },
  50088. ]
  50089. ))
  50090. characterMakers.push(() => makeCharacter(
  50091. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  50092. {
  50093. front: {
  50094. height: math.unit(5 + 7/12, "feet"),
  50095. weight: math.unit(150, "lb"),
  50096. name: "Front",
  50097. image: {
  50098. source: "./media/characters/robin-arctic-hare/front.svg",
  50099. extra: 1148/974,
  50100. bottom: 20/1168
  50101. }
  50102. },
  50103. },
  50104. [
  50105. {
  50106. name: "Normal",
  50107. height: math.unit(5 + 7/12, "feet"),
  50108. default: true
  50109. },
  50110. ]
  50111. ))
  50112. characterMakers.push(() => makeCharacter(
  50113. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  50114. {
  50115. side: {
  50116. height: math.unit(5, "feet"),
  50117. name: "Side",
  50118. image: {
  50119. source: "./media/characters/birch/side.svg",
  50120. extra: 985/796,
  50121. bottom: 111/1096
  50122. }
  50123. },
  50124. },
  50125. [
  50126. {
  50127. name: "Normal",
  50128. height: math.unit(5, "feet"),
  50129. default: true
  50130. },
  50131. ]
  50132. ))
  50133. characterMakers.push(() => makeCharacter(
  50134. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  50135. {
  50136. front: {
  50137. height: math.unit(4, "feet"),
  50138. name: "Front",
  50139. image: {
  50140. source: "./media/characters/rasp/front.svg",
  50141. extra: 561/478,
  50142. bottom: 74/635
  50143. }
  50144. },
  50145. },
  50146. [
  50147. {
  50148. name: "Normal",
  50149. height: math.unit(4, "feet"),
  50150. default: true
  50151. },
  50152. ]
  50153. ))
  50154. characterMakers.push(() => makeCharacter(
  50155. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  50156. {
  50157. front: {
  50158. height: math.unit(4 + 6/12, "feet"),
  50159. name: "Front",
  50160. image: {
  50161. source: "./media/characters/agatha/front.svg",
  50162. extra: 947/933,
  50163. bottom: 42/989
  50164. }
  50165. },
  50166. back: {
  50167. height: math.unit(4 + 6/12, "feet"),
  50168. name: "Back",
  50169. image: {
  50170. source: "./media/characters/agatha/back.svg",
  50171. extra: 935/922,
  50172. bottom: 48/983
  50173. }
  50174. },
  50175. },
  50176. [
  50177. {
  50178. name: "Normal",
  50179. height: math.unit(4 + 6 /12, "feet"),
  50180. default: true
  50181. },
  50182. {
  50183. name: "Max Size",
  50184. height: math.unit(500, "feet")
  50185. },
  50186. ]
  50187. ))
  50188. characterMakers.push(() => makeCharacter(
  50189. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  50190. {
  50191. side: {
  50192. height: math.unit(30, "feet"),
  50193. name: "Side",
  50194. image: {
  50195. source: "./media/characters/roggy/side.svg",
  50196. extra: 909/643,
  50197. bottom: 63/972
  50198. }
  50199. },
  50200. lounging: {
  50201. height: math.unit(20, "feet"),
  50202. name: "Lounging",
  50203. image: {
  50204. source: "./media/characters/roggy/lounging.svg",
  50205. extra: 643/479,
  50206. bottom: 145/788
  50207. }
  50208. },
  50209. handpaw: {
  50210. height: math.unit(13.1, "feet"),
  50211. name: "Handpaw",
  50212. image: {
  50213. source: "./media/characters/roggy/handpaw.svg"
  50214. }
  50215. },
  50216. footpaw: {
  50217. height: math.unit(15.8, "feet"),
  50218. name: "Footpaw",
  50219. image: {
  50220. source: "./media/characters/roggy/footpaw.svg"
  50221. }
  50222. },
  50223. },
  50224. [
  50225. {
  50226. name: "Menacing",
  50227. height: math.unit(30, "feet"),
  50228. default: true
  50229. },
  50230. ]
  50231. ))
  50232. characterMakers.push(() => makeCharacter(
  50233. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50234. {
  50235. front: {
  50236. height: math.unit(5 + 7/12, "feet"),
  50237. weight: math.unit(135, "lb"),
  50238. name: "Front",
  50239. image: {
  50240. source: "./media/characters/naomi/front.svg",
  50241. extra: 1209/1154,
  50242. bottom: 129/1338
  50243. }
  50244. },
  50245. back: {
  50246. height: math.unit(5 + 7/12, "feet"),
  50247. weight: math.unit(135, "lb"),
  50248. name: "Back",
  50249. image: {
  50250. source: "./media/characters/naomi/back.svg",
  50251. extra: 1252/1190,
  50252. bottom: 23/1275
  50253. }
  50254. },
  50255. },
  50256. [
  50257. {
  50258. name: "Normal",
  50259. height: math.unit(5 + 7 /12, "feet"),
  50260. default: true
  50261. },
  50262. ]
  50263. ))
  50264. characterMakers.push(() => makeCharacter(
  50265. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50266. {
  50267. side: {
  50268. height: math.unit(35, "meters"),
  50269. name: "Side",
  50270. image: {
  50271. source: "./media/characters/kimpi/side.svg",
  50272. extra: 419/382,
  50273. bottom: 63/482
  50274. }
  50275. },
  50276. hand: {
  50277. height: math.unit(8.96, "meters"),
  50278. name: "Hand",
  50279. image: {
  50280. source: "./media/characters/kimpi/hand.svg"
  50281. }
  50282. },
  50283. },
  50284. [
  50285. {
  50286. name: "Normal",
  50287. height: math.unit(35, "meters"),
  50288. default: true
  50289. },
  50290. ]
  50291. ))
  50292. characterMakers.push(() => makeCharacter(
  50293. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50294. {
  50295. front: {
  50296. height: math.unit(4 + 4/12, "feet"),
  50297. name: "Front",
  50298. image: {
  50299. source: "./media/characters/pepper-purrloin/front.svg",
  50300. extra: 1141/1024,
  50301. bottom: 21/1162
  50302. }
  50303. },
  50304. },
  50305. [
  50306. {
  50307. name: "Normal",
  50308. height: math.unit(4 + 4/12, "feet"),
  50309. default: true
  50310. },
  50311. ]
  50312. ))
  50313. characterMakers.push(() => makeCharacter(
  50314. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50315. {
  50316. front: {
  50317. height: math.unit(6 + 2/12, "feet"),
  50318. name: "Front",
  50319. image: {
  50320. source: "./media/characters/raphael/front.svg",
  50321. extra: 1101/962,
  50322. bottom: 59/1160
  50323. }
  50324. },
  50325. },
  50326. [
  50327. {
  50328. name: "Normal",
  50329. height: math.unit(6 + 2/12, "feet"),
  50330. default: true
  50331. },
  50332. ]
  50333. ))
  50334. characterMakers.push(() => makeCharacter(
  50335. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50336. {
  50337. front: {
  50338. height: math.unit(6, "feet"),
  50339. weight: math.unit(150, "lb"),
  50340. name: "Front",
  50341. image: {
  50342. source: "./media/characters/victor-williams/front.svg",
  50343. extra: 1894/1825,
  50344. bottom: 67/1961
  50345. }
  50346. },
  50347. },
  50348. [
  50349. {
  50350. name: "Normal",
  50351. height: math.unit(6, "feet"),
  50352. default: true
  50353. },
  50354. ]
  50355. ))
  50356. characterMakers.push(() => makeCharacter(
  50357. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50358. {
  50359. front: {
  50360. height: math.unit(5 + 8/12, "feet"),
  50361. weight: math.unit(150, "lb"),
  50362. name: "Front",
  50363. image: {
  50364. source: "./media/characters/rachel/front.svg",
  50365. extra: 1902/1787,
  50366. bottom: 46/1948
  50367. }
  50368. },
  50369. },
  50370. [
  50371. {
  50372. name: "Base Height",
  50373. height: math.unit(5 + 8/12, "feet"),
  50374. default: true
  50375. },
  50376. {
  50377. name: "Macro",
  50378. height: math.unit(200, "feet")
  50379. },
  50380. {
  50381. name: "Mega Macro",
  50382. height: math.unit(1, "mile")
  50383. },
  50384. {
  50385. name: "Giga Macro",
  50386. height: math.unit(1500, "miles")
  50387. },
  50388. {
  50389. name: "Tera Macro",
  50390. height: math.unit(8000, "miles")
  50391. },
  50392. {
  50393. name: "Tera Macro+",
  50394. height: math.unit(2e5, "miles")
  50395. },
  50396. ]
  50397. ))
  50398. characterMakers.push(() => makeCharacter(
  50399. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50400. {
  50401. front: {
  50402. height: math.unit(6.5, "feet"),
  50403. name: "Front",
  50404. image: {
  50405. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50406. extra: 860/819,
  50407. bottom: 307/1167
  50408. }
  50409. },
  50410. back: {
  50411. height: math.unit(6.5, "feet"),
  50412. name: "Back",
  50413. image: {
  50414. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50415. extra: 880/837,
  50416. bottom: 395/1275
  50417. }
  50418. },
  50419. sleeping: {
  50420. height: math.unit(2.79, "feet"),
  50421. name: "Sleeping",
  50422. image: {
  50423. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50424. extra: 465/383,
  50425. bottom: 263/728
  50426. }
  50427. },
  50428. maw: {
  50429. height: math.unit(2.52, "feet"),
  50430. name: "Maw",
  50431. image: {
  50432. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50433. }
  50434. },
  50435. },
  50436. [
  50437. {
  50438. name: "Normal",
  50439. height: math.unit(6.5, "feet"),
  50440. default: true
  50441. },
  50442. ]
  50443. ))
  50444. characterMakers.push(() => makeCharacter(
  50445. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50446. {
  50447. front: {
  50448. height: math.unit(5, "feet"),
  50449. name: "Front",
  50450. image: {
  50451. source: "./media/characters/nova-nerium/front.svg",
  50452. extra: 1548/1392,
  50453. bottom: 374/1922
  50454. }
  50455. },
  50456. back: {
  50457. height: math.unit(5, "feet"),
  50458. name: "Back",
  50459. image: {
  50460. source: "./media/characters/nova-nerium/back.svg",
  50461. extra: 1658/1468,
  50462. bottom: 257/1915
  50463. }
  50464. },
  50465. },
  50466. [
  50467. {
  50468. name: "Normal",
  50469. height: math.unit(5, "feet"),
  50470. default: true
  50471. },
  50472. ]
  50473. ))
  50474. characterMakers.push(() => makeCharacter(
  50475. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50476. {
  50477. front: {
  50478. height: math.unit(5 + 4/12, "feet"),
  50479. name: "Front",
  50480. image: {
  50481. source: "./media/characters/ashe-pyriph/front.svg",
  50482. extra: 1935/1747,
  50483. bottom: 60/1995
  50484. }
  50485. },
  50486. },
  50487. [
  50488. {
  50489. name: "Normal",
  50490. height: math.unit(5 + 4/12, "feet"),
  50491. default: true
  50492. },
  50493. ]
  50494. ))
  50495. characterMakers.push(() => makeCharacter(
  50496. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50497. {
  50498. front: {
  50499. height: math.unit(8.7, "feet"),
  50500. name: "Front",
  50501. image: {
  50502. source: "./media/characters/flicker-wisp/front.svg",
  50503. extra: 1835/1613,
  50504. bottom: 449/2284
  50505. }
  50506. },
  50507. side: {
  50508. height: math.unit(8.7, "feet"),
  50509. name: "Side",
  50510. image: {
  50511. source: "./media/characters/flicker-wisp/side.svg",
  50512. extra: 1841/1642,
  50513. bottom: 336/2177
  50514. },
  50515. default: true
  50516. },
  50517. maw: {
  50518. height: math.unit(3.35, "feet"),
  50519. name: "Maw",
  50520. image: {
  50521. source: "./media/characters/flicker-wisp/maw.svg",
  50522. extra: 2338/1506,
  50523. bottom: 0/2338
  50524. }
  50525. },
  50526. ovipositor: {
  50527. height: math.unit(4.95, "feet"),
  50528. name: "Ovipositor",
  50529. image: {
  50530. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50531. }
  50532. },
  50533. egg: {
  50534. height: math.unit(0.385, "feet"),
  50535. weight: math.unit(2, "lb"),
  50536. name: "Egg",
  50537. image: {
  50538. source: "./media/characters/flicker-wisp/egg.svg"
  50539. }
  50540. },
  50541. },
  50542. [
  50543. {
  50544. name: "Normal",
  50545. height: math.unit(8.7, "feet"),
  50546. default: true
  50547. },
  50548. ]
  50549. ))
  50550. characterMakers.push(() => makeCharacter(
  50551. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50552. {
  50553. side: {
  50554. height: math.unit(11, "feet"),
  50555. name: "Side",
  50556. image: {
  50557. source: "./media/characters/faefnul/side.svg",
  50558. extra: 1100/1007,
  50559. bottom: 0/1100
  50560. }
  50561. },
  50562. },
  50563. [
  50564. {
  50565. name: "Normal",
  50566. height: math.unit(11, "feet"),
  50567. default: true
  50568. },
  50569. ]
  50570. ))
  50571. characterMakers.push(() => makeCharacter(
  50572. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50573. {
  50574. front: {
  50575. height: math.unit(6 + 2/12, "feet"),
  50576. name: "Front",
  50577. image: {
  50578. source: "./media/characters/shady/front.svg",
  50579. extra: 502/461,
  50580. bottom: 9/511
  50581. }
  50582. },
  50583. kneeling: {
  50584. height: math.unit(4.6, "feet"),
  50585. name: "Kneeling",
  50586. image: {
  50587. source: "./media/characters/shady/kneeling.svg",
  50588. extra: 1328/1219,
  50589. bottom: 117/1445
  50590. }
  50591. },
  50592. maw: {
  50593. height: math.unit(2, "feet"),
  50594. name: "Maw",
  50595. image: {
  50596. source: "./media/characters/shady/maw.svg"
  50597. }
  50598. },
  50599. },
  50600. [
  50601. {
  50602. name: "Nano",
  50603. height: math.unit(1, "mm")
  50604. },
  50605. {
  50606. name: "Micro",
  50607. height: math.unit(12, "mm")
  50608. },
  50609. {
  50610. name: "Tiny",
  50611. height: math.unit(3, "inches")
  50612. },
  50613. {
  50614. name: "Normal",
  50615. height: math.unit(6 + 2/12, "feet"),
  50616. default: true
  50617. },
  50618. {
  50619. name: "Big",
  50620. height: math.unit(15, "feet")
  50621. },
  50622. {
  50623. name: "Macro",
  50624. height: math.unit(150, "feet")
  50625. },
  50626. {
  50627. name: "Titanic",
  50628. height: math.unit(500, "feet")
  50629. },
  50630. ]
  50631. ))
  50632. characterMakers.push(() => makeCharacter(
  50633. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50634. {
  50635. front: {
  50636. height: math.unit(12, "feet"),
  50637. name: "Front",
  50638. image: {
  50639. source: "./media/characters/fenrir/front.svg",
  50640. extra: 968/875,
  50641. bottom: 22/990
  50642. }
  50643. },
  50644. },
  50645. [
  50646. {
  50647. name: "Big",
  50648. height: math.unit(12, "feet"),
  50649. default: true
  50650. },
  50651. ]
  50652. ))
  50653. characterMakers.push(() => makeCharacter(
  50654. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50655. {
  50656. front: {
  50657. height: math.unit(5 + 4/12, "feet"),
  50658. name: "Front",
  50659. image: {
  50660. source: "./media/characters/makar/front.svg",
  50661. extra: 1181/1112,
  50662. bottom: 78/1259
  50663. }
  50664. },
  50665. },
  50666. [
  50667. {
  50668. name: "Normal",
  50669. height: math.unit(5 + 4/12, "feet"),
  50670. default: true
  50671. },
  50672. ]
  50673. ))
  50674. characterMakers.push(() => makeCharacter(
  50675. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50676. {
  50677. front: {
  50678. height: math.unit(5 + 7/12, "feet"),
  50679. name: "Front",
  50680. image: {
  50681. source: "./media/characters/callow/front.svg",
  50682. extra: 1482/1304,
  50683. bottom: 23/1505
  50684. }
  50685. },
  50686. back: {
  50687. height: math.unit(5 + 7/12, "feet"),
  50688. name: "Back",
  50689. image: {
  50690. source: "./media/characters/callow/back.svg",
  50691. extra: 1484/1296,
  50692. bottom: 25/1509
  50693. }
  50694. },
  50695. },
  50696. [
  50697. {
  50698. name: "Micro",
  50699. height: math.unit(3, "inches"),
  50700. default: true
  50701. },
  50702. {
  50703. name: "Normal",
  50704. height: math.unit(5 + 7/12, "feet")
  50705. },
  50706. ]
  50707. ))
  50708. characterMakers.push(() => makeCharacter(
  50709. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50710. {
  50711. front: {
  50712. height: math.unit(6 + 2/12, "feet"),
  50713. name: "Front",
  50714. image: {
  50715. source: "./media/characters/natel/front.svg",
  50716. extra: 1833/1692,
  50717. bottom: 166/1999
  50718. }
  50719. },
  50720. },
  50721. [
  50722. {
  50723. name: "Normal",
  50724. height: math.unit(6 + 2/12, "feet"),
  50725. default: true
  50726. },
  50727. ]
  50728. ))
  50729. characterMakers.push(() => makeCharacter(
  50730. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50731. {
  50732. front: {
  50733. height: math.unit(1.75, "meters"),
  50734. name: "Front",
  50735. image: {
  50736. source: "./media/characters/misu/front.svg",
  50737. extra: 1690/1558,
  50738. bottom: 234/1924
  50739. }
  50740. },
  50741. back: {
  50742. height: math.unit(1.75, "meters"),
  50743. name: "Back",
  50744. image: {
  50745. source: "./media/characters/misu/back.svg",
  50746. extra: 1762/1618,
  50747. bottom: 146/1908
  50748. }
  50749. },
  50750. frontNude: {
  50751. height: math.unit(1.75, "meters"),
  50752. name: "Front (Nude)",
  50753. image: {
  50754. source: "./media/characters/misu/front-nude.svg",
  50755. extra: 1690/1558,
  50756. bottom: 234/1924
  50757. }
  50758. },
  50759. backNude: {
  50760. height: math.unit(1.75, "meters"),
  50761. name: "Back (Nude)",
  50762. image: {
  50763. source: "./media/characters/misu/back-nude.svg",
  50764. extra: 1762/1618,
  50765. bottom: 146/1908
  50766. }
  50767. },
  50768. frontErect: {
  50769. height: math.unit(1.75, "meters"),
  50770. name: "Front (Erect)",
  50771. image: {
  50772. source: "./media/characters/misu/front-erect.svg",
  50773. extra: 1690/1558,
  50774. bottom: 234/1924
  50775. }
  50776. },
  50777. maw: {
  50778. height: math.unit(0.47, "meters"),
  50779. name: "Maw",
  50780. image: {
  50781. source: "./media/characters/misu/maw.svg"
  50782. }
  50783. },
  50784. head: {
  50785. height: math.unit(0.35, "meters"),
  50786. name: "Head",
  50787. image: {
  50788. source: "./media/characters/misu/head.svg"
  50789. }
  50790. },
  50791. rear: {
  50792. height: math.unit(0.47, "meters"),
  50793. name: "Rear",
  50794. image: {
  50795. source: "./media/characters/misu/rear.svg"
  50796. }
  50797. },
  50798. },
  50799. [
  50800. {
  50801. name: "Normal",
  50802. height: math.unit(1.75, "meters")
  50803. },
  50804. {
  50805. name: "Not good for the people",
  50806. height: math.unit(42, "meters")
  50807. },
  50808. {
  50809. name: "Not good for the neighborhood",
  50810. height: math.unit(135, "meters")
  50811. },
  50812. {
  50813. name: "Bit bigger problem",
  50814. height: math.unit(380, "meters"),
  50815. default: true
  50816. },
  50817. {
  50818. name: "Not good for the city",
  50819. height: math.unit(1.5, "km")
  50820. },
  50821. {
  50822. name: "Not good for the county",
  50823. height: math.unit(5.5, "km")
  50824. },
  50825. {
  50826. name: "Not good for the state",
  50827. height: math.unit(25, "km")
  50828. },
  50829. {
  50830. name: "Not good for the country",
  50831. height: math.unit(125, "km")
  50832. },
  50833. {
  50834. name: "Not good for the continent",
  50835. height: math.unit(2100, "km")
  50836. },
  50837. {
  50838. name: "Not good for the planet",
  50839. height: math.unit(35000, "km")
  50840. },
  50841. {
  50842. name: "Just no",
  50843. height: math.unit(8.5e18, "km")
  50844. },
  50845. ]
  50846. ))
  50847. characterMakers.push(() => makeCharacter(
  50848. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50849. {
  50850. front: {
  50851. height: math.unit(6.5, "feet"),
  50852. name: "Front",
  50853. image: {
  50854. source: "./media/characters/poppy/front.svg",
  50855. extra: 1878/1812,
  50856. bottom: 43/1921
  50857. }
  50858. },
  50859. feet: {
  50860. height: math.unit(1.06, "feet"),
  50861. name: "Feet",
  50862. image: {
  50863. source: "./media/characters/poppy/feet.svg",
  50864. extra: 1083/1083,
  50865. bottom: 87/1170
  50866. }
  50867. },
  50868. },
  50869. [
  50870. {
  50871. name: "Human",
  50872. height: math.unit(6.5, "feet")
  50873. },
  50874. {
  50875. name: "Default",
  50876. height: math.unit(300, "feet"),
  50877. default: true
  50878. },
  50879. {
  50880. name: "Huge",
  50881. height: math.unit(850, "feet")
  50882. },
  50883. {
  50884. name: "Mega",
  50885. height: math.unit(8000, "feet")
  50886. },
  50887. {
  50888. name: "Giga",
  50889. height: math.unit(300, "miles")
  50890. },
  50891. ]
  50892. ))
  50893. characterMakers.push(() => makeCharacter(
  50894. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50895. {
  50896. bipedal: {
  50897. height: math.unit(7, "feet"),
  50898. name: "Bipedal",
  50899. image: {
  50900. source: "./media/characters/zener/bipedal.svg",
  50901. extra: 874/805,
  50902. bottom: 109/983
  50903. }
  50904. },
  50905. quadrupedal: {
  50906. height: math.unit(4.64, "feet"),
  50907. name: "Quadrupedal",
  50908. image: {
  50909. source: "./media/characters/zener/quadrupedal.svg",
  50910. extra: 638/507,
  50911. bottom: 190/828
  50912. }
  50913. },
  50914. cock: {
  50915. height: math.unit(18, "inches"),
  50916. name: "Cock",
  50917. image: {
  50918. source: "./media/characters/zener/cock.svg"
  50919. }
  50920. },
  50921. },
  50922. [
  50923. {
  50924. name: "Normal",
  50925. height: math.unit(7, "feet"),
  50926. default: true
  50927. },
  50928. ]
  50929. ))
  50930. characterMakers.push(() => makeCharacter(
  50931. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50932. {
  50933. nude: {
  50934. height: math.unit(5 + 6/12, "feet"),
  50935. name: "Nude",
  50936. image: {
  50937. source: "./media/characters/charlie-dog/nude.svg",
  50938. extra: 768/734,
  50939. bottom: 26/794
  50940. }
  50941. },
  50942. dressed: {
  50943. height: math.unit(5 + 6/12, "feet"),
  50944. name: "Dressed",
  50945. image: {
  50946. source: "./media/characters/charlie-dog/dressed.svg",
  50947. extra: 768/734,
  50948. bottom: 26/794
  50949. }
  50950. },
  50951. },
  50952. [
  50953. {
  50954. name: "Normal",
  50955. height: math.unit(5 + 6/12, "feet"),
  50956. default: true
  50957. },
  50958. ]
  50959. ))
  50960. characterMakers.push(() => makeCharacter(
  50961. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50962. {
  50963. front: {
  50964. height: math.unit(6 + 4/12, "feet"),
  50965. name: "Front",
  50966. image: {
  50967. source: "./media/characters/ir'istrasz/front.svg",
  50968. extra: 1014/977,
  50969. bottom: 65/1079
  50970. }
  50971. },
  50972. back: {
  50973. height: math.unit(6 + 4/12, "feet"),
  50974. name: "Back",
  50975. image: {
  50976. source: "./media/characters/ir'istrasz/back.svg",
  50977. extra: 1024/992,
  50978. bottom: 34/1058
  50979. }
  50980. },
  50981. },
  50982. [
  50983. {
  50984. name: "Normal",
  50985. height: math.unit(6 + 4/12, "feet"),
  50986. default: true
  50987. },
  50988. ]
  50989. ))
  50990. characterMakers.push(() => makeCharacter(
  50991. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50992. {
  50993. front: {
  50994. height: math.unit(5 + 8/12, "feet"),
  50995. name: "Front",
  50996. image: {
  50997. source: "./media/characters/dee-ditto/front.svg",
  50998. extra: 1874/1785,
  50999. bottom: 68/1942
  51000. }
  51001. },
  51002. back: {
  51003. height: math.unit(5 + 8/12, "feet"),
  51004. name: "Back",
  51005. image: {
  51006. source: "./media/characters/dee-ditto/back.svg",
  51007. extra: 1870/1783,
  51008. bottom: 77/1947
  51009. }
  51010. },
  51011. },
  51012. [
  51013. {
  51014. name: "Normal",
  51015. height: math.unit(5 + 8/12, "feet"),
  51016. default: true
  51017. },
  51018. ]
  51019. ))
  51020. characterMakers.push(() => makeCharacter(
  51021. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  51022. {
  51023. front: {
  51024. height: math.unit(7 + 6/12, "feet"),
  51025. name: "Front",
  51026. image: {
  51027. source: "./media/characters/fey/front.svg",
  51028. extra: 995/979,
  51029. bottom: 30/1025
  51030. }
  51031. },
  51032. back: {
  51033. height: math.unit(7 + 6/12, "feet"),
  51034. name: "Back",
  51035. image: {
  51036. source: "./media/characters/fey/back.svg",
  51037. extra: 1079/1008,
  51038. bottom: 5/1084
  51039. }
  51040. },
  51041. dressed: {
  51042. height: math.unit(7 + 6/12, "feet"),
  51043. name: "Dressed",
  51044. image: {
  51045. source: "./media/characters/fey/dressed.svg",
  51046. extra: 995/979,
  51047. bottom: 30/1025
  51048. }
  51049. },
  51050. },
  51051. [
  51052. {
  51053. name: "Normal",
  51054. height: math.unit(7 + 6/12, "feet"),
  51055. default: true
  51056. },
  51057. ]
  51058. ))
  51059. characterMakers.push(() => makeCharacter(
  51060. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  51061. {
  51062. standing: {
  51063. height: math.unit(17, "feet"),
  51064. name: "Standing",
  51065. image: {
  51066. source: "./media/characters/aster/standing.svg",
  51067. extra: 1798/1598,
  51068. bottom: 117/1915
  51069. }
  51070. },
  51071. },
  51072. [
  51073. {
  51074. name: "Normal",
  51075. height: math.unit(17, "feet"),
  51076. default: true
  51077. },
  51078. {
  51079. name: "Homewrecker",
  51080. height: math.unit(95, "feet")
  51081. },
  51082. {
  51083. name: "Planet Devourer",
  51084. height: math.unit(1008000, "miles")
  51085. },
  51086. ]
  51087. ))
  51088. characterMakers.push(() => makeCharacter(
  51089. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  51090. {
  51091. front: {
  51092. height: math.unit(6 + 5/12, "feet"),
  51093. weight: math.unit(265, "lb"),
  51094. name: "Front",
  51095. image: {
  51096. source: "./media/characters/devon-childs/front.svg",
  51097. extra: 1795/1721,
  51098. bottom: 41/1836
  51099. }
  51100. },
  51101. side: {
  51102. height: math.unit(6 + 5/12, "feet"),
  51103. weight: math.unit(265, "lb"),
  51104. name: "Side",
  51105. image: {
  51106. source: "./media/characters/devon-childs/side.svg",
  51107. extra: 1812/1738,
  51108. bottom: 30/1842
  51109. }
  51110. },
  51111. back: {
  51112. height: math.unit(6 + 5/12, "feet"),
  51113. weight: math.unit(265, "lb"),
  51114. name: "Back",
  51115. image: {
  51116. source: "./media/characters/devon-childs/back.svg",
  51117. extra: 1808/1735,
  51118. bottom: 23/1831
  51119. }
  51120. },
  51121. hand: {
  51122. height: math.unit(1.464, "feet"),
  51123. name: "Hand",
  51124. image: {
  51125. source: "./media/characters/devon-childs/hand.svg"
  51126. }
  51127. },
  51128. foot: {
  51129. height: math.unit(1.6, "feet"),
  51130. name: "Foot",
  51131. image: {
  51132. source: "./media/characters/devon-childs/foot.svg"
  51133. }
  51134. },
  51135. },
  51136. [
  51137. {
  51138. name: "Micro",
  51139. height: math.unit(7, "cm")
  51140. },
  51141. {
  51142. name: "Normal",
  51143. height: math.unit(6 + 5/12, "feet"),
  51144. default: true
  51145. },
  51146. {
  51147. name: "Macro",
  51148. height: math.unit(154, "feet")
  51149. },
  51150. ]
  51151. ))
  51152. characterMakers.push(() => makeCharacter(
  51153. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  51154. {
  51155. front: {
  51156. height: math.unit(6, "feet"),
  51157. weight: math.unit(180, "lb"),
  51158. name: "Front",
  51159. image: {
  51160. source: "./media/characters/lydemox-vir/front.svg",
  51161. extra: 1632/1435,
  51162. bottom: 58/1690
  51163. }
  51164. },
  51165. frontSFW: {
  51166. height: math.unit(6, "feet"),
  51167. weight: math.unit(180, "lb"),
  51168. name: "Front (SFW)",
  51169. image: {
  51170. source: "./media/characters/lydemox-vir/front-sfw.svg",
  51171. extra: 1632/1435,
  51172. bottom: 58/1690
  51173. }
  51174. },
  51175. back: {
  51176. height: math.unit(6, "feet"),
  51177. weight: math.unit(180, "lb"),
  51178. name: "Back",
  51179. image: {
  51180. source: "./media/characters/lydemox-vir/back.svg",
  51181. extra: 1593/1408,
  51182. bottom: 31/1624
  51183. }
  51184. },
  51185. paw: {
  51186. height: math.unit(1.85, "feet"),
  51187. name: "Paw",
  51188. image: {
  51189. source: "./media/characters/lydemox-vir/paw.svg"
  51190. }
  51191. },
  51192. dick: {
  51193. height: math.unit(1.8, "feet"),
  51194. name: "Dick",
  51195. image: {
  51196. source: "./media/characters/lydemox-vir/dick.svg"
  51197. }
  51198. },
  51199. },
  51200. [
  51201. {
  51202. name: "Macro",
  51203. height: math.unit(100, "feet"),
  51204. default: true
  51205. },
  51206. {
  51207. name: "Teramacro",
  51208. height: math.unit(1, "earth")
  51209. },
  51210. {
  51211. name: "Planetary",
  51212. height: math.unit(20, "earths")
  51213. },
  51214. ]
  51215. ))
  51216. characterMakers.push(() => makeCharacter(
  51217. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51218. {
  51219. front: {
  51220. height: math.unit(15 + 8/12, "feet"),
  51221. weight: math.unit(1237, "kg"),
  51222. name: "Front",
  51223. image: {
  51224. source: "./media/characters/mia/front.svg",
  51225. extra: 1573/1446,
  51226. bottom: 58/1631
  51227. }
  51228. },
  51229. },
  51230. [
  51231. {
  51232. name: "Small",
  51233. height: math.unit(9 + 5/12, "feet")
  51234. },
  51235. {
  51236. name: "Normal",
  51237. height: math.unit(15 + 8/12, "feet"),
  51238. default: true
  51239. },
  51240. ]
  51241. ))
  51242. characterMakers.push(() => makeCharacter(
  51243. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51244. {
  51245. front: {
  51246. height: math.unit(10 + 6/12, "feet"),
  51247. weight: math.unit(1.3, "tons"),
  51248. name: "Front",
  51249. image: {
  51250. source: "./media/characters/mr-graves/front.svg",
  51251. extra: 1779/1695,
  51252. bottom: 198/1977
  51253. }
  51254. },
  51255. },
  51256. [
  51257. {
  51258. name: "Normal",
  51259. height: math.unit(10 + 6 /12, "feet"),
  51260. default: true
  51261. },
  51262. ]
  51263. ))
  51264. characterMakers.push(() => makeCharacter(
  51265. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51266. {
  51267. dressedFront: {
  51268. height: math.unit(5 + 8/12, "feet"),
  51269. weight: math.unit(125, "lb"),
  51270. name: "Dressed (Front)",
  51271. image: {
  51272. source: "./media/characters/jess/dressed-front.svg",
  51273. extra: 1176/1152,
  51274. bottom: 42/1218
  51275. }
  51276. },
  51277. dressedSide: {
  51278. height: math.unit(5 + 8/12, "feet"),
  51279. weight: math.unit(125, "lb"),
  51280. name: "Dressed (Side)",
  51281. image: {
  51282. source: "./media/characters/jess/dressed-side.svg",
  51283. extra: 1204/1190,
  51284. bottom: 6/1210
  51285. }
  51286. },
  51287. nudeFront: {
  51288. height: math.unit(5 + 8/12, "feet"),
  51289. weight: math.unit(125, "lb"),
  51290. name: "Nude (Front)",
  51291. image: {
  51292. source: "./media/characters/jess/nude-front.svg",
  51293. extra: 1176/1152,
  51294. bottom: 42/1218
  51295. }
  51296. },
  51297. nudeSide: {
  51298. height: math.unit(5 + 8/12, "feet"),
  51299. weight: math.unit(125, "lb"),
  51300. name: "Nude (Side)",
  51301. image: {
  51302. source: "./media/characters/jess/nude-side.svg",
  51303. extra: 1204/1190,
  51304. bottom: 6/1210
  51305. }
  51306. },
  51307. organsFront: {
  51308. height: math.unit(2.83799342105, "feet"),
  51309. name: "Organs (Front)",
  51310. image: {
  51311. source: "./media/characters/jess/organs-front.svg"
  51312. }
  51313. },
  51314. organsSide: {
  51315. height: math.unit(2.64225290474, "feet"),
  51316. name: "Organs (Side)",
  51317. image: {
  51318. source: "./media/characters/jess/organs-side.svg"
  51319. }
  51320. },
  51321. digestiveTractFront: {
  51322. height: math.unit(2.8106580871, "feet"),
  51323. name: "Digestive Tract (Front)",
  51324. image: {
  51325. source: "./media/characters/jess/digestive-tract-front.svg"
  51326. }
  51327. },
  51328. digestiveTractSide: {
  51329. height: math.unit(2.54365045014, "feet"),
  51330. name: "Digestive Tract (Side)",
  51331. image: {
  51332. source: "./media/characters/jess/digestive-tract-side.svg"
  51333. }
  51334. },
  51335. respiratorySystemFront: {
  51336. height: math.unit(1.11196233456, "feet"),
  51337. name: "Respiratory System (Front)",
  51338. image: {
  51339. source: "./media/characters/jess/respiratory-system-front.svg"
  51340. }
  51341. },
  51342. respiratorySystemSide: {
  51343. height: math.unit(0.89327966297, "feet"),
  51344. name: "Respiratory System (Side)",
  51345. image: {
  51346. source: "./media/characters/jess/respiratory-system-side.svg"
  51347. }
  51348. },
  51349. urinaryTractFront: {
  51350. height: math.unit(1.16126356186, "feet"),
  51351. name: "Urinary Tract (Front)",
  51352. image: {
  51353. source: "./media/characters/jess/urinary-tract-front.svg"
  51354. }
  51355. },
  51356. urinaryTractSide: {
  51357. height: math.unit(1.20910039627, "feet"),
  51358. name: "Urinary Tract (Side)",
  51359. image: {
  51360. source: "./media/characters/jess/urinary-tract-side.svg"
  51361. }
  51362. },
  51363. reproductiveOrgansFront: {
  51364. height: math.unit(0.48422591566, "feet"),
  51365. name: "Reproductive Organs (Front)",
  51366. image: {
  51367. source: "./media/characters/jess/reproductive-organs-front.svg"
  51368. }
  51369. },
  51370. reproductiveOrgansSide: {
  51371. height: math.unit(0.61553314481, "feet"),
  51372. name: "Reproductive Organs (Side)",
  51373. image: {
  51374. source: "./media/characters/jess/reproductive-organs-side.svg"
  51375. }
  51376. },
  51377. breastsFront: {
  51378. height: math.unit(0.47690395121, "feet"),
  51379. name: "Breasts (Front)",
  51380. image: {
  51381. source: "./media/characters/jess/breasts-front.svg"
  51382. }
  51383. },
  51384. breastsSide: {
  51385. height: math.unit(0.30556998307, "feet"),
  51386. name: "Breasts (Side)",
  51387. image: {
  51388. source: "./media/characters/jess/breasts-side.svg"
  51389. }
  51390. },
  51391. heartFront: {
  51392. height: math.unit(0.53011022622, "feet"),
  51393. name: "Heart (Front)",
  51394. image: {
  51395. source: "./media/characters/jess/heart-front.svg"
  51396. }
  51397. },
  51398. heartSide: {
  51399. height: math.unit(0.51790695213, "feet"),
  51400. name: "Heart (Side)",
  51401. image: {
  51402. source: "./media/characters/jess/heart-side.svg"
  51403. }
  51404. },
  51405. earsAndNoseFront: {
  51406. height: math.unit(0.29385483995, "feet"),
  51407. name: "Ears and Nose (Front)",
  51408. image: {
  51409. source: "./media/characters/jess/ears-and-nose-front.svg"
  51410. }
  51411. },
  51412. earsAndNoseSide: {
  51413. height: math.unit(0.18109658741, "feet"),
  51414. name: "Ears and Nose (Side)",
  51415. image: {
  51416. source: "./media/characters/jess/ears-and-nose-side.svg"
  51417. }
  51418. },
  51419. },
  51420. [
  51421. {
  51422. name: "Normal",
  51423. height: math.unit(5 + 8/12, "feet"),
  51424. default: true
  51425. },
  51426. ]
  51427. ))
  51428. characterMakers.push(() => makeCharacter(
  51429. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51430. {
  51431. front: {
  51432. height: math.unit(6, "feet"),
  51433. weight: math.unit(6.64467e-7, "grams"),
  51434. name: "Front",
  51435. image: {
  51436. source: "./media/characters/wimpering/front.svg",
  51437. extra: 597/587,
  51438. bottom: 34/631
  51439. }
  51440. },
  51441. },
  51442. [
  51443. {
  51444. name: "Micro",
  51445. height: math.unit(0.4, "mm"),
  51446. default: true
  51447. },
  51448. ]
  51449. ))
  51450. characterMakers.push(() => makeCharacter(
  51451. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51452. {
  51453. front: {
  51454. height: math.unit(5 + 2/12, "feet"),
  51455. weight: math.unit(110, "lb"),
  51456. name: "Front",
  51457. image: {
  51458. source: "./media/characters/keltre/front.svg",
  51459. extra: 1099/1057,
  51460. bottom: 22/1121
  51461. }
  51462. },
  51463. back: {
  51464. height: math.unit(5 + 2/12, "feet"),
  51465. weight: math.unit(110, "lb"),
  51466. name: "Back",
  51467. image: {
  51468. source: "./media/characters/keltre/back.svg",
  51469. extra: 1095/1053,
  51470. bottom: 17/1112
  51471. }
  51472. },
  51473. dressed: {
  51474. height: math.unit(5 + 2/12, "feet"),
  51475. weight: math.unit(110, "lb"),
  51476. name: "Dressed",
  51477. image: {
  51478. source: "./media/characters/keltre/dressed.svg",
  51479. extra: 1099/1057,
  51480. bottom: 22/1121
  51481. }
  51482. },
  51483. winter: {
  51484. height: math.unit(5 + 2/12, "feet"),
  51485. weight: math.unit(110, "lb"),
  51486. name: "Winter",
  51487. image: {
  51488. source: "./media/characters/keltre/winter.svg",
  51489. extra: 1099/1057,
  51490. bottom: 22/1121
  51491. }
  51492. },
  51493. head: {
  51494. height: math.unit(1.61 * 0.86, "feet"),
  51495. name: "Head",
  51496. image: {
  51497. source: "./media/characters/keltre/head.svg",
  51498. extra: 534/421,
  51499. bottom: 0/534
  51500. }
  51501. },
  51502. hand: {
  51503. height: math.unit(1.3 * 0.86, "feet"),
  51504. name: "Hand",
  51505. image: {
  51506. source: "./media/characters/keltre/hand.svg"
  51507. }
  51508. },
  51509. foot: {
  51510. height: math.unit(1.8 * 0.86, "feet"),
  51511. name: "Foot",
  51512. image: {
  51513. source: "./media/characters/keltre/foot.svg"
  51514. }
  51515. },
  51516. },
  51517. [
  51518. {
  51519. name: "Fine",
  51520. height: math.unit(1, "inch")
  51521. },
  51522. {
  51523. name: "Dimnutive",
  51524. height: math.unit(4, "inches")
  51525. },
  51526. {
  51527. name: "Tiny",
  51528. height: math.unit(1, "foot")
  51529. },
  51530. {
  51531. name: "Small",
  51532. height: math.unit(3, "feet")
  51533. },
  51534. {
  51535. name: "Normal",
  51536. height: math.unit(5 + 2/12, "feet"),
  51537. default: true
  51538. },
  51539. ]
  51540. ))
  51541. characterMakers.push(() => makeCharacter(
  51542. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51543. {
  51544. front: {
  51545. height: math.unit(6 + 2/12, "feet"),
  51546. name: "Front",
  51547. image: {
  51548. source: "./media/characters/nox/front.svg",
  51549. extra: 1917/1830,
  51550. bottom: 74/1991
  51551. }
  51552. },
  51553. back: {
  51554. height: math.unit(6 + 2/12, "feet"),
  51555. name: "Back",
  51556. image: {
  51557. source: "./media/characters/nox/back.svg",
  51558. extra: 1896/1815,
  51559. bottom: 21/1917
  51560. }
  51561. },
  51562. head: {
  51563. height: math.unit(1.1, "feet"),
  51564. name: "Head",
  51565. image: {
  51566. source: "./media/characters/nox/head.svg",
  51567. extra: 874/704,
  51568. bottom: 0/874
  51569. }
  51570. },
  51571. tattoo: {
  51572. height: math.unit(0.729, "feet"),
  51573. name: "Tattoo",
  51574. image: {
  51575. source: "./media/characters/nox/tattoo.svg"
  51576. }
  51577. },
  51578. },
  51579. [
  51580. {
  51581. name: "Normal",
  51582. height: math.unit(6 + 2/12, "feet")
  51583. },
  51584. {
  51585. name: "Gigamacro",
  51586. height: math.unit(2, "earths"),
  51587. default: true
  51588. },
  51589. {
  51590. name: "Cosmic",
  51591. height: math.unit(867, "yottameters")
  51592. },
  51593. ]
  51594. ))
  51595. characterMakers.push(() => makeCharacter(
  51596. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51597. {
  51598. front: {
  51599. height: math.unit(6, "feet"),
  51600. weight: math.unit(150, "lb"),
  51601. name: "Front",
  51602. image: {
  51603. source: "./media/characters/caspian/front.svg",
  51604. extra: 1443/1359,
  51605. bottom: 0/1443
  51606. }
  51607. },
  51608. back: {
  51609. height: math.unit(6, "feet"),
  51610. weight: math.unit(150, "lb"),
  51611. name: "Back",
  51612. image: {
  51613. source: "./media/characters/caspian/back.svg",
  51614. extra: 1379/1309,
  51615. bottom: 0/1379
  51616. }
  51617. },
  51618. head: {
  51619. height: math.unit(0.9, "feet"),
  51620. name: "Head",
  51621. image: {
  51622. source: "./media/characters/caspian/head.svg",
  51623. extra: 692/492,
  51624. bottom: 0/692
  51625. }
  51626. },
  51627. headAlt: {
  51628. height: math.unit(0.95, "feet"),
  51629. name: "Head (Alt)",
  51630. image: {
  51631. source: "./media/characters/caspian/head-alt.svg",
  51632. extra: 668/508,
  51633. bottom: 0/668
  51634. }
  51635. },
  51636. hand: {
  51637. height: math.unit(0.8, "feet"),
  51638. name: "Hand",
  51639. image: {
  51640. source: "./media/characters/caspian/hand.svg"
  51641. }
  51642. },
  51643. paw: {
  51644. height: math.unit(0.95, "feet"),
  51645. name: "Paw",
  51646. image: {
  51647. source: "./media/characters/caspian/paw.svg"
  51648. }
  51649. },
  51650. },
  51651. [
  51652. {
  51653. name: "Normal",
  51654. height: math.unit(162, "feet"),
  51655. default: true
  51656. },
  51657. ]
  51658. ))
  51659. characterMakers.push(() => makeCharacter(
  51660. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51661. {
  51662. front: {
  51663. height: math.unit(6, "feet"),
  51664. name: "Front",
  51665. image: {
  51666. source: "./media/characters/myra-aisling/front.svg",
  51667. extra: 1268/1166,
  51668. bottom: 73/1341
  51669. }
  51670. },
  51671. back: {
  51672. height: math.unit(6, "feet"),
  51673. name: "Back",
  51674. image: {
  51675. source: "./media/characters/myra-aisling/back.svg",
  51676. extra: 1249/1149,
  51677. bottom: 79/1328
  51678. }
  51679. },
  51680. dressed: {
  51681. height: math.unit(6, "feet"),
  51682. name: "Dressed",
  51683. image: {
  51684. source: "./media/characters/myra-aisling/dressed.svg",
  51685. extra: 1290/1189,
  51686. bottom: 47/1337
  51687. }
  51688. },
  51689. hand: {
  51690. height: math.unit(1.1, "feet"),
  51691. name: "Hand",
  51692. image: {
  51693. source: "./media/characters/myra-aisling/hand.svg"
  51694. }
  51695. },
  51696. paw: {
  51697. height: math.unit(1.23, "feet"),
  51698. name: "Paw",
  51699. image: {
  51700. source: "./media/characters/myra-aisling/paw.svg"
  51701. }
  51702. },
  51703. },
  51704. [
  51705. {
  51706. name: "Normal",
  51707. height: math.unit(160, "feet"),
  51708. default: true
  51709. },
  51710. ]
  51711. ))
  51712. characterMakers.push(() => makeCharacter(
  51713. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51714. {
  51715. front: {
  51716. height: math.unit(6, "feet"),
  51717. name: "Front",
  51718. image: {
  51719. source: "./media/characters/tenley-sidero/front.svg",
  51720. extra: 1365/1276,
  51721. bottom: 47/1412
  51722. }
  51723. },
  51724. back: {
  51725. height: math.unit(6, "feet"),
  51726. name: "Back",
  51727. image: {
  51728. source: "./media/characters/tenley-sidero/back.svg",
  51729. extra: 1383/1283,
  51730. bottom: 35/1418
  51731. }
  51732. },
  51733. dressed: {
  51734. height: math.unit(6, "feet"),
  51735. name: "Dressed",
  51736. image: {
  51737. source: "./media/characters/tenley-sidero/dressed.svg",
  51738. extra: 1364/1275,
  51739. bottom: 42/1406
  51740. }
  51741. },
  51742. head: {
  51743. height: math.unit(1.47, "feet"),
  51744. name: "Head",
  51745. image: {
  51746. source: "./media/characters/tenley-sidero/head.svg",
  51747. extra: 610/490,
  51748. bottom: 0/610
  51749. }
  51750. },
  51751. },
  51752. [
  51753. {
  51754. name: "Normal",
  51755. height: math.unit(154, "feet"),
  51756. default: true
  51757. },
  51758. ]
  51759. ))
  51760. characterMakers.push(() => makeCharacter(
  51761. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51762. {
  51763. front: {
  51764. height: math.unit(5, "inches"),
  51765. name: "Front",
  51766. image: {
  51767. source: "./media/characters/mallory/front.svg",
  51768. extra: 1919/1678,
  51769. bottom: 29/1948
  51770. }
  51771. },
  51772. hand: {
  51773. height: math.unit(0.73, "inches"),
  51774. name: "Hand",
  51775. image: {
  51776. source: "./media/characters/mallory/hand.svg"
  51777. }
  51778. },
  51779. paw: {
  51780. height: math.unit(0.68, "inches"),
  51781. name: "Paw",
  51782. image: {
  51783. source: "./media/characters/mallory/paw.svg"
  51784. }
  51785. },
  51786. },
  51787. [
  51788. {
  51789. name: "Small",
  51790. height: math.unit(5, "inches"),
  51791. default: true
  51792. },
  51793. ]
  51794. ))
  51795. characterMakers.push(() => makeCharacter(
  51796. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51797. {
  51798. naked: {
  51799. height: math.unit(6, "feet"),
  51800. name: "Naked",
  51801. image: {
  51802. source: "./media/characters/mab/naked.svg",
  51803. extra: 1855/1757,
  51804. bottom: 208/2063
  51805. }
  51806. },
  51807. outside: {
  51808. height: math.unit(6, "feet"),
  51809. name: "Outside",
  51810. image: {
  51811. source: "./media/characters/mab/outside.svg",
  51812. extra: 1855/1757,
  51813. bottom: 208/2063
  51814. }
  51815. },
  51816. party: {
  51817. height: math.unit(6, "feet"),
  51818. name: "Party",
  51819. image: {
  51820. source: "./media/characters/mab/party.svg",
  51821. extra: 1855/1757,
  51822. bottom: 208/2063
  51823. }
  51824. },
  51825. },
  51826. [
  51827. {
  51828. name: "Normal",
  51829. height: math.unit(165, "feet"),
  51830. default: true
  51831. },
  51832. ]
  51833. ))
  51834. characterMakers.push(() => makeCharacter(
  51835. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51836. {
  51837. feral: {
  51838. height: math.unit(12, "feet"),
  51839. weight: math.unit(20000, "lb"),
  51840. name: "Side",
  51841. image: {
  51842. source: "./media/characters/winter/feral.svg",
  51843. extra: 1286/943,
  51844. bottom: 112/1398
  51845. },
  51846. form: "feral",
  51847. default: true
  51848. },
  51849. feralNsfw: {
  51850. height: math.unit(12, "feet"),
  51851. weight: math.unit(20000, "lb"),
  51852. name: "Side (NSFW)",
  51853. image: {
  51854. source: "./media/characters/winter/feral-nsfw.svg",
  51855. extra: 1286/943,
  51856. bottom: 112/1398
  51857. },
  51858. form: "feral"
  51859. },
  51860. dick: {
  51861. height: math.unit(3.79, "feet"),
  51862. name: "Dick",
  51863. image: {
  51864. source: "./media/characters/winter/dick.svg"
  51865. },
  51866. form: "feral"
  51867. },
  51868. anthro: {
  51869. height: math.unit(12, "feet"),
  51870. weight: math.unit(10, "tons"),
  51871. name: "Anthro",
  51872. image: {
  51873. source: "./media/characters/winter/anthro.svg",
  51874. extra: 1701/1553,
  51875. bottom: 64/1765
  51876. },
  51877. form: "anthro",
  51878. default: true
  51879. },
  51880. },
  51881. [
  51882. {
  51883. name: "Big",
  51884. height: math.unit(12, "feet"),
  51885. default: true,
  51886. form: "feral"
  51887. },
  51888. {
  51889. name: "Big",
  51890. height: math.unit(12, "feet"),
  51891. default: true,
  51892. form: "anthro"
  51893. },
  51894. ],
  51895. {
  51896. "feral": {
  51897. name: "Feral",
  51898. default: true
  51899. },
  51900. "anthro": {
  51901. name: "Anthro"
  51902. }
  51903. }
  51904. ))
  51905. characterMakers.push(() => makeCharacter(
  51906. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51907. {
  51908. front: {
  51909. height: math.unit(4.1, "inches"),
  51910. name: "Front",
  51911. image: {
  51912. source: "./media/characters/alto/front.svg",
  51913. extra: 736/627,
  51914. bottom: 90/826
  51915. }
  51916. },
  51917. },
  51918. [
  51919. {
  51920. name: "Normal",
  51921. height: math.unit(4.1, "inches"),
  51922. default: true
  51923. },
  51924. ]
  51925. ))
  51926. characterMakers.push(() => makeCharacter(
  51927. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51928. {
  51929. sitting: {
  51930. height: math.unit(3, "feet"),
  51931. name: "Sitting",
  51932. image: {
  51933. source: "./media/characters/ratstrid-v/sitting.svg",
  51934. extra: 355/310,
  51935. bottom: 136/491
  51936. }
  51937. },
  51938. },
  51939. [
  51940. {
  51941. name: "Normal",
  51942. height: math.unit(3, "feet"),
  51943. default: true
  51944. },
  51945. ]
  51946. ))
  51947. characterMakers.push(() => makeCharacter(
  51948. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51949. {
  51950. back: {
  51951. height: math.unit(6, "feet"),
  51952. weight: math.unit(450, "lb"),
  51953. name: "Back",
  51954. image: {
  51955. source: "./media/characters/siz/back.svg",
  51956. extra: 1449/1274,
  51957. bottom: 13/1462
  51958. }
  51959. },
  51960. },
  51961. [
  51962. {
  51963. name: "Smallest",
  51964. height: math.unit(18 + 3/12, "feet")
  51965. },
  51966. {
  51967. name: "Modest",
  51968. height: math.unit(56 + 8/12, "feet"),
  51969. default: true
  51970. },
  51971. {
  51972. name: "Largest",
  51973. height: math.unit(3590, "feet")
  51974. },
  51975. ]
  51976. ))
  51977. characterMakers.push(() => makeCharacter(
  51978. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51979. {
  51980. front: {
  51981. height: math.unit(5 + 9/12, "feet"),
  51982. weight: math.unit(150, "lb"),
  51983. name: "Front",
  51984. image: {
  51985. source: "./media/characters/ven/front.svg",
  51986. extra: 1372/1320,
  51987. bottom: 73/1445
  51988. }
  51989. },
  51990. side: {
  51991. height: math.unit(5 + 9/12, "feet"),
  51992. weight: math.unit(1150, "lb"),
  51993. name: "Side",
  51994. image: {
  51995. source: "./media/characters/ven/side.svg",
  51996. extra: 1119/1070,
  51997. bottom: 42/1161
  51998. },
  51999. default: true
  52000. },
  52001. },
  52002. [
  52003. {
  52004. name: "Normal",
  52005. height: math.unit(5 + 9/12, "feet"),
  52006. default: true
  52007. },
  52008. ]
  52009. ))
  52010. characterMakers.push(() => makeCharacter(
  52011. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  52012. {
  52013. front: {
  52014. height: math.unit(12, "feet"),
  52015. weight: math.unit(1000, "kg"),
  52016. name: "Front",
  52017. image: {
  52018. source: "./media/characters/maple/front.svg",
  52019. extra: 1193/1081,
  52020. bottom: 22/1215
  52021. }
  52022. },
  52023. },
  52024. [
  52025. {
  52026. name: "Compressed",
  52027. height: math.unit(7, "feet")
  52028. },
  52029. {
  52030. name: "Normal",
  52031. height: math.unit(12, "feet"),
  52032. default: true
  52033. },
  52034. ]
  52035. ))
  52036. characterMakers.push(() => makeCharacter(
  52037. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  52038. {
  52039. front: {
  52040. height: math.unit(9, "feet"),
  52041. weight: math.unit(1500, "lb"),
  52042. name: "Front",
  52043. image: {
  52044. source: "./media/characters/nora/front.svg",
  52045. extra: 1348/1286,
  52046. bottom: 218/1566
  52047. }
  52048. },
  52049. erect: {
  52050. height: math.unit(9, "feet"),
  52051. weight: math.unit(11500, "lb"),
  52052. name: "Erect",
  52053. image: {
  52054. source: "./media/characters/nora/erect.svg",
  52055. extra: 1488/1433,
  52056. bottom: 133/1621
  52057. }
  52058. },
  52059. },
  52060. [
  52061. {
  52062. name: "Normal",
  52063. height: math.unit(9, "feet"),
  52064. default: true
  52065. },
  52066. ]
  52067. ))
  52068. characterMakers.push(() => makeCharacter(
  52069. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  52070. {
  52071. front: {
  52072. height: math.unit(25, "feet"),
  52073. weight: math.unit(27500, "lb"),
  52074. name: "Front",
  52075. image: {
  52076. source: "./media/characters/north-caudin/front.svg",
  52077. extra: 1184/1082,
  52078. bottom: 23/1207
  52079. }
  52080. },
  52081. },
  52082. [
  52083. {
  52084. name: "Compressed",
  52085. height: math.unit(10, "feet")
  52086. },
  52087. {
  52088. name: "Normal",
  52089. height: math.unit(25, "feet"),
  52090. default: true
  52091. },
  52092. ]
  52093. ))
  52094. characterMakers.push(() => makeCharacter(
  52095. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  52096. {
  52097. front: {
  52098. height: math.unit(9, "feet"),
  52099. weight: math.unit(1250, "lb"),
  52100. name: "Front",
  52101. image: {
  52102. source: "./media/characters/merrian/front.svg",
  52103. extra: 2393/2304,
  52104. bottom: 40/2433
  52105. }
  52106. },
  52107. },
  52108. [
  52109. {
  52110. name: "Normal",
  52111. height: math.unit(9, "feet"),
  52112. default: true
  52113. },
  52114. ]
  52115. ))
  52116. characterMakers.push(() => makeCharacter(
  52117. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  52118. {
  52119. front: {
  52120. height: math.unit(9, "feet"),
  52121. weight: math.unit(1000, "lb"),
  52122. name: "Front",
  52123. image: {
  52124. source: "./media/characters/hazel/front.svg",
  52125. extra: 2351/2298,
  52126. bottom: 38/2389
  52127. }
  52128. },
  52129. },
  52130. [
  52131. {
  52132. name: "Normal",
  52133. height: math.unit(9, "feet"),
  52134. default: true
  52135. },
  52136. ]
  52137. ))
  52138. characterMakers.push(() => makeCharacter(
  52139. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  52140. {
  52141. front: {
  52142. height: math.unit(13, "feet"),
  52143. weight: math.unit(3200, "lb"),
  52144. name: "Front",
  52145. image: {
  52146. source: "./media/characters/emma/front.svg",
  52147. extra: 2263/2029,
  52148. bottom: 68/2331
  52149. }
  52150. },
  52151. },
  52152. [
  52153. {
  52154. name: "Normal",
  52155. height: math.unit(13, "feet"),
  52156. default: true
  52157. },
  52158. ]
  52159. ))
  52160. characterMakers.push(() => makeCharacter(
  52161. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  52162. {
  52163. front: {
  52164. height: math.unit(11 + 9/12, "feet"),
  52165. weight: math.unit(2500, "lb"),
  52166. name: "Front",
  52167. image: {
  52168. source: "./media/characters/ilumina/front.svg",
  52169. extra: 2248/2209,
  52170. bottom: 164/2412
  52171. }
  52172. },
  52173. },
  52174. [
  52175. {
  52176. name: "Normal",
  52177. height: math.unit(11 + 9/12, "feet"),
  52178. default: true
  52179. },
  52180. ]
  52181. ))
  52182. characterMakers.push(() => makeCharacter(
  52183. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  52184. {
  52185. front: {
  52186. height: math.unit(8 + 10/12, "feet"),
  52187. weight: math.unit(1350, "lb"),
  52188. name: "Front",
  52189. image: {
  52190. source: "./media/characters/moonshine/front.svg",
  52191. extra: 2395/2288,
  52192. bottom: 40/2435
  52193. }
  52194. },
  52195. },
  52196. [
  52197. {
  52198. name: "Normal",
  52199. height: math.unit(8 + 10/12, "feet"),
  52200. default: true
  52201. },
  52202. ]
  52203. ))
  52204. characterMakers.push(() => makeCharacter(
  52205. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52206. {
  52207. front: {
  52208. height: math.unit(14, "feet"),
  52209. weight: math.unit(3400, "lb"),
  52210. name: "Front",
  52211. image: {
  52212. source: "./media/characters/aletia/front.svg",
  52213. extra: 1185/1052,
  52214. bottom: 21/1206
  52215. }
  52216. },
  52217. },
  52218. [
  52219. {
  52220. name: "Compressed",
  52221. height: math.unit(8, "feet")
  52222. },
  52223. {
  52224. name: "Normal",
  52225. height: math.unit(14, "feet"),
  52226. default: true
  52227. },
  52228. ]
  52229. ))
  52230. characterMakers.push(() => makeCharacter(
  52231. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52232. {
  52233. front: {
  52234. height: math.unit(17, "feet"),
  52235. weight: math.unit(6500, "lb"),
  52236. name: "Front",
  52237. image: {
  52238. source: "./media/characters/deidra/front.svg",
  52239. extra: 1201/1081,
  52240. bottom: 16/1217
  52241. }
  52242. },
  52243. },
  52244. [
  52245. {
  52246. name: "Compressed",
  52247. height: math.unit(9 + 6/12, "feet")
  52248. },
  52249. {
  52250. name: "Normal",
  52251. height: math.unit(17, "feet"),
  52252. default: true
  52253. },
  52254. ]
  52255. ))
  52256. characterMakers.push(() => makeCharacter(
  52257. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52258. {
  52259. front: {
  52260. height: math.unit(7 + 4/12, "feet"),
  52261. weight: math.unit(280, "lb"),
  52262. name: "Front",
  52263. image: {
  52264. source: "./media/characters/freki-yrmori/front.svg",
  52265. extra: 1286/1182,
  52266. bottom: 29/1315
  52267. }
  52268. },
  52269. maw: {
  52270. height: math.unit(0.9, "feet"),
  52271. name: "Maw",
  52272. image: {
  52273. source: "./media/characters/freki-yrmori/maw.svg"
  52274. }
  52275. },
  52276. },
  52277. [
  52278. {
  52279. name: "Normal",
  52280. height: math.unit(7 + 4/12, "feet"),
  52281. default: true
  52282. },
  52283. {
  52284. name: "Macro",
  52285. height: math.unit(38.5, "meters")
  52286. },
  52287. ]
  52288. ))
  52289. characterMakers.push(() => makeCharacter(
  52290. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52291. {
  52292. side: {
  52293. height: math.unit(47.2, "meters"),
  52294. weight: math.unit(10000, "tons"),
  52295. name: "Side",
  52296. image: {
  52297. source: "./media/characters/aetherios/side.svg",
  52298. extra: 2363/642,
  52299. bottom: 221/2584
  52300. }
  52301. },
  52302. top: {
  52303. height: math.unit(240, "meters"),
  52304. weight: math.unit(10000, "tons"),
  52305. name: "Top",
  52306. image: {
  52307. source: "./media/characters/aetherios/top.svg"
  52308. }
  52309. },
  52310. bottom: {
  52311. height: math.unit(240, "meters"),
  52312. weight: math.unit(10000, "tons"),
  52313. name: "Bottom",
  52314. image: {
  52315. source: "./media/characters/aetherios/bottom.svg"
  52316. }
  52317. },
  52318. head: {
  52319. height: math.unit(38.6, "meters"),
  52320. name: "Head",
  52321. image: {
  52322. source: "./media/characters/aetherios/head.svg",
  52323. extra: 1335/1112,
  52324. bottom: 0/1335
  52325. }
  52326. },
  52327. front: {
  52328. height: math.unit(29, "meters"),
  52329. name: "Front",
  52330. image: {
  52331. source: "./media/characters/aetherios/front.svg",
  52332. extra: 1266/953,
  52333. bottom: 158/1424
  52334. }
  52335. },
  52336. maw: {
  52337. height: math.unit(16.37, "meters"),
  52338. name: "Maw",
  52339. image: {
  52340. source: "./media/characters/aetherios/maw.svg",
  52341. extra: 748/637,
  52342. bottom: 0/748
  52343. },
  52344. extraAttributes: {
  52345. preyCapacity: {
  52346. name: "Capacity",
  52347. power: 3,
  52348. type: "volume",
  52349. base: math.unit(1000, "people")
  52350. },
  52351. tongueSize: {
  52352. name: "Tongue Size",
  52353. power: 2,
  52354. type: "area",
  52355. base: math.unit(21, "m^2")
  52356. }
  52357. }
  52358. },
  52359. forepaw: {
  52360. height: math.unit(18, "meters"),
  52361. name: "Forepaw",
  52362. image: {
  52363. source: "./media/characters/aetherios/forepaw.svg"
  52364. }
  52365. },
  52366. hindpaw: {
  52367. height: math.unit(23, "meters"),
  52368. name: "Hindpaw",
  52369. image: {
  52370. source: "./media/characters/aetherios/hindpaw.svg"
  52371. }
  52372. },
  52373. genitals: {
  52374. height: math.unit(42, "meters"),
  52375. name: "Genitals",
  52376. image: {
  52377. source: "./media/characters/aetherios/genitals.svg"
  52378. }
  52379. },
  52380. },
  52381. [
  52382. {
  52383. name: "Normal",
  52384. height: math.unit(47.2, "meters"),
  52385. default: true
  52386. },
  52387. {
  52388. name: "Macro",
  52389. height: math.unit(160, "meters")
  52390. },
  52391. {
  52392. name: "Mega",
  52393. height: math.unit(1.87, "km")
  52394. },
  52395. {
  52396. name: "Giga",
  52397. height: math.unit(40000, "km")
  52398. },
  52399. {
  52400. name: "Stellar",
  52401. height: math.unit(158000000, "km")
  52402. },
  52403. {
  52404. name: "Cosmic",
  52405. height: math.unit(9.46e12, "km")
  52406. },
  52407. ]
  52408. ))
  52409. characterMakers.push(() => makeCharacter(
  52410. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52411. {
  52412. front: {
  52413. height: math.unit(5 + 4/12, "feet"),
  52414. weight: math.unit(80, "lb"),
  52415. name: "Front",
  52416. image: {
  52417. source: "./media/characters/mizu-gieeg/front.svg",
  52418. extra: 850/709,
  52419. bottom: 52/902
  52420. }
  52421. },
  52422. back: {
  52423. height: math.unit(5 + 4/12, "feet"),
  52424. weight: math.unit(80, "lb"),
  52425. name: "Back",
  52426. image: {
  52427. source: "./media/characters/mizu-gieeg/back.svg",
  52428. extra: 882/745,
  52429. bottom: 25/907
  52430. }
  52431. },
  52432. },
  52433. [
  52434. {
  52435. name: "Normal",
  52436. height: math.unit(5 + 4/12, "feet"),
  52437. default: true
  52438. },
  52439. ]
  52440. ))
  52441. characterMakers.push(() => makeCharacter(
  52442. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52443. {
  52444. front: {
  52445. height: math.unit(6, "feet"),
  52446. name: "Front",
  52447. image: {
  52448. source: "./media/characters/roselle-st-papier/front.svg",
  52449. extra: 1430/1280,
  52450. bottom: 37/1467
  52451. }
  52452. },
  52453. back: {
  52454. height: math.unit(6, "feet"),
  52455. name: "Back",
  52456. image: {
  52457. source: "./media/characters/roselle-st-papier/back.svg",
  52458. extra: 1491/1296,
  52459. bottom: 23/1514
  52460. }
  52461. },
  52462. ear: {
  52463. height: math.unit(1.26, "feet"),
  52464. name: "Ear",
  52465. image: {
  52466. source: "./media/characters/roselle-st-papier/ear.svg"
  52467. }
  52468. },
  52469. },
  52470. [
  52471. {
  52472. name: "Normal",
  52473. height: math.unit(150, "feet"),
  52474. default: true
  52475. },
  52476. ]
  52477. ))
  52478. characterMakers.push(() => makeCharacter(
  52479. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52480. {
  52481. front: {
  52482. height: math.unit(1, "inches"),
  52483. name: "Front",
  52484. image: {
  52485. source: "./media/characters/valargent/front.svg",
  52486. extra: 1825/1694,
  52487. bottom: 62/1887
  52488. }
  52489. },
  52490. back: {
  52491. height: math.unit(1, "inches"),
  52492. name: "Back",
  52493. image: {
  52494. source: "./media/characters/valargent/back.svg",
  52495. extra: 1775/1682,
  52496. bottom: 88/1863
  52497. }
  52498. },
  52499. },
  52500. [
  52501. {
  52502. name: "Micro",
  52503. height: math.unit(1, "inch"),
  52504. default: true
  52505. },
  52506. ]
  52507. ))
  52508. characterMakers.push(() => makeCharacter(
  52509. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52510. {
  52511. front: {
  52512. height: math.unit(3.4, "meters"),
  52513. name: "Front",
  52514. image: {
  52515. source: "./media/characters/zarina/front.svg",
  52516. extra: 1733/1425,
  52517. bottom: 93/1826
  52518. }
  52519. },
  52520. squatting: {
  52521. height: math.unit(2.14, "meters"),
  52522. name: "Squatting",
  52523. image: {
  52524. source: "./media/characters/zarina/squatting.svg",
  52525. extra: 1073/788,
  52526. bottom: 63/1136
  52527. }
  52528. },
  52529. back: {
  52530. height: math.unit(2.14, "meters"),
  52531. name: "Back",
  52532. image: {
  52533. source: "./media/characters/zarina/back.svg",
  52534. extra: 1128/885,
  52535. bottom: 0/1128
  52536. }
  52537. },
  52538. },
  52539. [
  52540. {
  52541. name: "Normal",
  52542. height: math.unit(3.4, "meters"),
  52543. default: true
  52544. },
  52545. {
  52546. name: "Big",
  52547. height: math.unit(5, "meters")
  52548. },
  52549. {
  52550. name: "Macro",
  52551. height: math.unit(110, "meters")
  52552. },
  52553. ]
  52554. ))
  52555. characterMakers.push(() => makeCharacter(
  52556. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52557. {
  52558. front: {
  52559. height: math.unit(7, "feet"),
  52560. name: "Front",
  52561. image: {
  52562. source: "./media/characters/ventus-astro-fox/front.svg",
  52563. extra: 1792/1623,
  52564. bottom: 28/1820
  52565. }
  52566. },
  52567. back: {
  52568. height: math.unit(7, "feet"),
  52569. name: "Back",
  52570. image: {
  52571. source: "./media/characters/ventus-astro-fox/back.svg",
  52572. extra: 1789/1620,
  52573. bottom: 31/1820
  52574. }
  52575. },
  52576. outfit: {
  52577. height: math.unit(7, "feet"),
  52578. name: "Outfit",
  52579. image: {
  52580. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52581. extra: 1054/925,
  52582. bottom: 15/1069
  52583. }
  52584. },
  52585. head: {
  52586. height: math.unit(1.12, "feet"),
  52587. name: "Head",
  52588. image: {
  52589. source: "./media/characters/ventus-astro-fox/head.svg",
  52590. extra: 866/504,
  52591. bottom: 0/866
  52592. }
  52593. },
  52594. hand: {
  52595. height: math.unit(1, "feet"),
  52596. name: "Hand",
  52597. image: {
  52598. source: "./media/characters/ventus-astro-fox/hand.svg"
  52599. }
  52600. },
  52601. paw: {
  52602. height: math.unit(1.5, "feet"),
  52603. name: "Paw",
  52604. image: {
  52605. source: "./media/characters/ventus-astro-fox/paw.svg"
  52606. }
  52607. },
  52608. },
  52609. [
  52610. {
  52611. name: "Normal",
  52612. height: math.unit(7, "feet"),
  52613. default: true
  52614. },
  52615. {
  52616. name: "Macro",
  52617. height: math.unit(200, "feet")
  52618. },
  52619. {
  52620. name: "Cosmic",
  52621. height: math.unit(3, "universes")
  52622. },
  52623. ]
  52624. ))
  52625. characterMakers.push(() => makeCharacter(
  52626. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52627. {
  52628. front: {
  52629. height: math.unit(3, "meters"),
  52630. weight: math.unit(7000, "lb"),
  52631. name: "Front",
  52632. image: {
  52633. source: "./media/characters/core-t/front.svg",
  52634. extra: 5729/4941,
  52635. bottom: 1129/6858
  52636. }
  52637. },
  52638. },
  52639. [
  52640. {
  52641. name: "Big",
  52642. height: math.unit(3, "meters"),
  52643. default: true
  52644. },
  52645. ]
  52646. ))
  52647. characterMakers.push(() => makeCharacter(
  52648. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52649. {
  52650. normal: {
  52651. height: math.unit(6 + 6/12, "feet"),
  52652. weight: math.unit(275, "lb"),
  52653. name: "Front",
  52654. image: {
  52655. source: "./media/characters/cadbunny/normal.svg",
  52656. extra: 1129/947,
  52657. bottom: 93/1222
  52658. },
  52659. default: true,
  52660. form: "normal"
  52661. },
  52662. gigantamax: {
  52663. height: math.unit(26, "feet"),
  52664. weight: math.unit(16000, "lb"),
  52665. name: "Front",
  52666. image: {
  52667. source: "./media/characters/cadbunny/gigantamax.svg",
  52668. extra: 1133/944,
  52669. bottom: 90/1223
  52670. },
  52671. default: true,
  52672. form: "gigantamax"
  52673. },
  52674. },
  52675. [
  52676. {
  52677. name: "Normal",
  52678. height: math.unit(6 + 6/12, "feet"),
  52679. default: true,
  52680. form: "normal"
  52681. },
  52682. {
  52683. name: "Small",
  52684. height: math.unit(26, "feet"),
  52685. default: true,
  52686. form: "gigantamax"
  52687. },
  52688. {
  52689. name: "Large",
  52690. height: math.unit(78, "feet"),
  52691. form: "gigantamax"
  52692. },
  52693. ],
  52694. {
  52695. "normal": {
  52696. name: "Normal",
  52697. default: true
  52698. },
  52699. "gigantamax": {
  52700. name: "Gigantamax"
  52701. }
  52702. }
  52703. ))
  52704. characterMakers.push(() => makeCharacter(
  52705. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52706. {
  52707. anthroFront: {
  52708. height: math.unit(8, "feet"),
  52709. weight: math.unit(300, "lb"),
  52710. name: "Front",
  52711. image: {
  52712. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52713. extra: 1272/1176,
  52714. bottom: 53/1325
  52715. },
  52716. form: "anthro",
  52717. default: true
  52718. },
  52719. feralSide: {
  52720. height: math.unit(4, "feet"),
  52721. weight: math.unit(250, "lb"),
  52722. name: "Side",
  52723. image: {
  52724. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52725. extra: 731/621,
  52726. bottom: 0/731
  52727. },
  52728. form: "feral",
  52729. default: true
  52730. },
  52731. },
  52732. [
  52733. {
  52734. name: "Regular",
  52735. height: math.unit(8, "feet"),
  52736. form: "anthro"
  52737. },
  52738. {
  52739. name: "Macro",
  52740. height: math.unit(250, "feet"),
  52741. form: "anthro",
  52742. default: true
  52743. },
  52744. {
  52745. name: "Regular",
  52746. height: math.unit(4, "feet"),
  52747. form: "feral"
  52748. },
  52749. {
  52750. name: "Macro",
  52751. height: math.unit(125, "feet"),
  52752. form: "feral",
  52753. default: true
  52754. },
  52755. ],
  52756. {
  52757. "anthro": {
  52758. name: "Anthro",
  52759. default: true
  52760. },
  52761. "feral": {
  52762. name: "Feral",
  52763. },
  52764. }
  52765. ))
  52766. characterMakers.push(() => makeCharacter(
  52767. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52768. {
  52769. front: {
  52770. height: math.unit(11 + 10/12, "feet"),
  52771. weight: math.unit(1587, "kg"),
  52772. name: "Front",
  52773. image: {
  52774. source: "./media/characters/maple-javira-dragon/front.svg",
  52775. extra: 1136/744,
  52776. bottom: 73/1209
  52777. }
  52778. },
  52779. side: {
  52780. height: math.unit(11 + 10/12, "feet"),
  52781. weight: math.unit(1587, "kg"),
  52782. name: "Side",
  52783. image: {
  52784. source: "./media/characters/maple-javira-dragon/side.svg",
  52785. extra: 712/505,
  52786. bottom: 17/729
  52787. }
  52788. },
  52789. head: {
  52790. height: math.unit(8.05, "feet"),
  52791. name: "Head",
  52792. image: {
  52793. source: "./media/characters/maple-javira-dragon/head.svg",
  52794. extra: 1420/1344,
  52795. bottom: 0/1420
  52796. }
  52797. },
  52798. },
  52799. [
  52800. {
  52801. name: "Normal",
  52802. height: math.unit(11 + 10/12, "feet"),
  52803. default: true
  52804. },
  52805. ]
  52806. ))
  52807. characterMakers.push(() => makeCharacter(
  52808. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52809. {
  52810. front: {
  52811. height: math.unit(117, "cm"),
  52812. weight: math.unit(50, "kg"),
  52813. name: "Front",
  52814. image: {
  52815. source: "./media/characters/sonia-wyverntail/front.svg",
  52816. extra: 708/592,
  52817. bottom: 25/733
  52818. }
  52819. },
  52820. },
  52821. [
  52822. {
  52823. name: "Normal",
  52824. height: math.unit(117, "cm"),
  52825. default: true
  52826. },
  52827. ]
  52828. ))
  52829. characterMakers.push(() => makeCharacter(
  52830. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52831. {
  52832. front: {
  52833. height: math.unit(6 + 5/12, "feet"),
  52834. name: "Front",
  52835. image: {
  52836. source: "./media/characters/micah/front.svg",
  52837. extra: 1758/1546,
  52838. bottom: 214/1972
  52839. }
  52840. },
  52841. },
  52842. [
  52843. {
  52844. name: "Normal",
  52845. height: math.unit(6 + 5/12, "feet"),
  52846. default: true
  52847. },
  52848. ]
  52849. ))
  52850. characterMakers.push(() => makeCharacter(
  52851. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52852. {
  52853. front: {
  52854. height: math.unit(1.75, "meters"),
  52855. weight: math.unit(100, "kg"),
  52856. name: "Front",
  52857. image: {
  52858. source: "./media/characters/zarya/front.svg",
  52859. extra: 741/735,
  52860. bottom: 44/785
  52861. },
  52862. extraAttributes: {
  52863. "tailLength": {
  52864. name: "Tail Length",
  52865. power: 1,
  52866. type: "length",
  52867. base: math.unit(180, "cm")
  52868. },
  52869. "pawLength": {
  52870. name: "Paw Length",
  52871. power: 1,
  52872. type: "length",
  52873. base: math.unit(31, "cm")
  52874. },
  52875. }
  52876. },
  52877. side: {
  52878. height: math.unit(1.75, "meters"),
  52879. weight: math.unit(100, "kg"),
  52880. name: "Side",
  52881. image: {
  52882. source: "./media/characters/zarya/side.svg",
  52883. extra: 776/770,
  52884. bottom: 17/793
  52885. },
  52886. extraAttributes: {
  52887. "tailLength": {
  52888. name: "Tail Length",
  52889. power: 1,
  52890. type: "length",
  52891. base: math.unit(180, "cm")
  52892. },
  52893. "pawLength": {
  52894. name: "Paw Length",
  52895. power: 1,
  52896. type: "length",
  52897. base: math.unit(31, "cm")
  52898. },
  52899. }
  52900. },
  52901. back: {
  52902. height: math.unit(1.75, "meters"),
  52903. weight: math.unit(100, "kg"),
  52904. name: "Back",
  52905. image: {
  52906. source: "./media/characters/zarya/back.svg",
  52907. extra: 741/735,
  52908. bottom: 44/785
  52909. },
  52910. extraAttributes: {
  52911. "tailLength": {
  52912. name: "Tail Length",
  52913. power: 1,
  52914. type: "length",
  52915. base: math.unit(180, "cm")
  52916. },
  52917. "pawLength": {
  52918. name: "Paw Length",
  52919. power: 1,
  52920. type: "length",
  52921. base: math.unit(31, "cm")
  52922. },
  52923. }
  52924. },
  52925. frontNoTail: {
  52926. height: math.unit(1.75, "meters"),
  52927. weight: math.unit(100, "kg"),
  52928. name: "Front (No Tail)",
  52929. image: {
  52930. source: "./media/characters/zarya/front-no-tail.svg",
  52931. extra: 741/735,
  52932. bottom: 44/785
  52933. },
  52934. extraAttributes: {
  52935. "tailLength": {
  52936. name: "Tail Length",
  52937. power: 1,
  52938. type: "length",
  52939. base: math.unit(180, "cm")
  52940. },
  52941. "pawLength": {
  52942. name: "Paw Length",
  52943. power: 1,
  52944. type: "length",
  52945. base: math.unit(31, "cm")
  52946. },
  52947. }
  52948. },
  52949. dressed: {
  52950. height: math.unit(1.75, "meters"),
  52951. weight: math.unit(100, "kg"),
  52952. name: "Dressed",
  52953. image: {
  52954. source: "./media/characters/zarya/dressed.svg",
  52955. extra: 683/672,
  52956. bottom: 79/762
  52957. },
  52958. extraAttributes: {
  52959. "tailLength": {
  52960. name: "Tail Length",
  52961. power: 1,
  52962. type: "length",
  52963. base: math.unit(180, "cm")
  52964. },
  52965. "pawLength": {
  52966. name: "Paw Length",
  52967. power: 1,
  52968. type: "length",
  52969. base: math.unit(31, "cm")
  52970. },
  52971. }
  52972. },
  52973. },
  52974. [
  52975. {
  52976. name: "Micro",
  52977. height: math.unit(5, "cm")
  52978. },
  52979. {
  52980. name: "Normal",
  52981. height: math.unit(1.75, "meters"),
  52982. default: true
  52983. },
  52984. {
  52985. name: "Macro",
  52986. height: math.unit(122, "meters")
  52987. },
  52988. ]
  52989. ))
  52990. characterMakers.push(() => makeCharacter(
  52991. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52992. {
  52993. front: {
  52994. height: math.unit(7.5, "feet"),
  52995. name: "Front",
  52996. image: {
  52997. source: "./media/characters/sven-hatisson/front.svg",
  52998. extra: 917/857,
  52999. bottom: 42/959
  53000. }
  53001. },
  53002. back: {
  53003. height: math.unit(7.5, "feet"),
  53004. name: "Back",
  53005. image: {
  53006. source: "./media/characters/sven-hatisson/back.svg",
  53007. extra: 903/856,
  53008. bottom: 15/918
  53009. }
  53010. },
  53011. },
  53012. [
  53013. {
  53014. name: "Base Height",
  53015. height: math.unit(7.5, "feet")
  53016. },
  53017. {
  53018. name: "Usual Height",
  53019. height: math.unit(13.5, "feet"),
  53020. default: true
  53021. },
  53022. {
  53023. name: "Smaller Macro",
  53024. height: math.unit(85, "feet")
  53025. },
  53026. {
  53027. name: "Moderate Macro",
  53028. height: math.unit(320, "feet")
  53029. },
  53030. {
  53031. name: "Large Macro",
  53032. height: math.unit(1000, "feet")
  53033. },
  53034. {
  53035. name: "Largest Size",
  53036. height: math.unit(2, "miles")
  53037. },
  53038. ]
  53039. ))
  53040. characterMakers.push(() => makeCharacter(
  53041. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  53042. {
  53043. side: {
  53044. height: math.unit(1.8, "meters"),
  53045. weight: math.unit(275, "kg"),
  53046. name: "Side",
  53047. image: {
  53048. source: "./media/characters/terra/side.svg",
  53049. extra: 1273/1147,
  53050. bottom: 0/1273
  53051. }
  53052. },
  53053. },
  53054. [
  53055. {
  53056. name: "Normal",
  53057. height: math.unit(16.2, "meters"),
  53058. default: true
  53059. },
  53060. ]
  53061. ))
  53062. characterMakers.push(() => makeCharacter(
  53063. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  53064. {
  53065. borzoiFront: {
  53066. height: math.unit(6 + 9/12, "feet"),
  53067. name: "Front",
  53068. image: {
  53069. source: "./media/characters/rae/borzoi-front.svg",
  53070. extra: 1161/1098,
  53071. bottom: 31/1192
  53072. },
  53073. form: "borzoi",
  53074. default: true
  53075. },
  53076. werewolfFront: {
  53077. height: math.unit(8 + 7/12, "feet"),
  53078. name: "Front",
  53079. image: {
  53080. source: "./media/characters/rae/werewolf-front.svg",
  53081. extra: 1411/1334,
  53082. bottom: 127/1538
  53083. },
  53084. form: "werewolf",
  53085. default: true
  53086. },
  53087. },
  53088. [
  53089. {
  53090. name: "Normal",
  53091. height: math.unit(6 + 9/12, "feet"),
  53092. default: true,
  53093. form: "borzoi"
  53094. },
  53095. {
  53096. name: "Normal",
  53097. height: math.unit(8 + 7/12, "feet"),
  53098. default: true,
  53099. form: "werewolf"
  53100. },
  53101. ],
  53102. {
  53103. "borzoi": {
  53104. name: "Borzoi",
  53105. default: true
  53106. },
  53107. "werewolf": {
  53108. name: "Werewolf",
  53109. },
  53110. }
  53111. ))
  53112. characterMakers.push(() => makeCharacter(
  53113. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  53114. {
  53115. front: {
  53116. height: math.unit(8 + 7/12, "feet"),
  53117. weight: math.unit(482, "lb"),
  53118. name: "Front",
  53119. image: {
  53120. source: "./media/characters/kit/front.svg",
  53121. extra: 1247/1103,
  53122. bottom: 41/1288
  53123. }
  53124. },
  53125. back: {
  53126. height: math.unit(8 + 7/12, "feet"),
  53127. weight: math.unit(482, "lb"),
  53128. name: "Back",
  53129. image: {
  53130. source: "./media/characters/kit/back.svg",
  53131. extra: 1252/1123,
  53132. bottom: 21/1273
  53133. }
  53134. },
  53135. paw: {
  53136. height: math.unit(1.46, "feet"),
  53137. name: "Paw",
  53138. image: {
  53139. source: "./media/characters/kit/paw.svg"
  53140. }
  53141. },
  53142. },
  53143. [
  53144. {
  53145. name: "Normal",
  53146. height: math.unit(2.61, "meters"),
  53147. default: true
  53148. },
  53149. {
  53150. name: "\"Tall\"",
  53151. height: math.unit(8.21, "meters")
  53152. },
  53153. {
  53154. name: "Tall",
  53155. height: math.unit(19.6, "meters")
  53156. },
  53157. {
  53158. name: "Very Tall",
  53159. height: math.unit(57.91, "meters")
  53160. },
  53161. {
  53162. name: "Semi-Macro",
  53163. height: math.unit(138.64, "meters")
  53164. },
  53165. {
  53166. name: "Macro",
  53167. height: math.unit(831.99, "meters")
  53168. },
  53169. {
  53170. name: "EX-Macro",
  53171. height: math.unit(96451121, "meters")
  53172. },
  53173. {
  53174. name: "S1-Omnipotent",
  53175. height: math.unit(4.42074e+9, "meters")
  53176. },
  53177. {
  53178. name: "S2-Omnipotent",
  53179. height: math.unit(9.42074e+17, "meters")
  53180. },
  53181. {
  53182. name: "Omnipotent",
  53183. height: math.unit(4.23112e+24, "meters")
  53184. },
  53185. {
  53186. name: "Hypergod",
  53187. height: math.unit(5.05176e+27, "meters")
  53188. },
  53189. {
  53190. name: "Hypergod-EX",
  53191. height: math.unit(9.45532e+49, "meters")
  53192. },
  53193. {
  53194. name: "Hypergod-SP",
  53195. height: math.unit(9.45532e+195, "meters")
  53196. },
  53197. ]
  53198. ))
  53199. characterMakers.push(() => makeCharacter(
  53200. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53201. {
  53202. side: {
  53203. height: math.unit(0.6, "meters"),
  53204. weight: math.unit(24, "kg"),
  53205. name: "Side",
  53206. image: {
  53207. source: "./media/characters/celeste/side.svg",
  53208. extra: 810/517,
  53209. bottom: 53/863
  53210. }
  53211. },
  53212. },
  53213. [
  53214. {
  53215. name: "Velociraptor",
  53216. height: math.unit(0.6, "meters"),
  53217. default: true
  53218. },
  53219. {
  53220. name: "Utahraptor",
  53221. height: math.unit(1.8, "meters")
  53222. },
  53223. {
  53224. name: "Gallimimus",
  53225. height: math.unit(4.0, "meters")
  53226. },
  53227. {
  53228. name: "Large",
  53229. height: math.unit(20, "meters")
  53230. },
  53231. {
  53232. name: "Planetary",
  53233. height: math.unit(50, "megameters")
  53234. },
  53235. {
  53236. name: "Stellar",
  53237. height: math.unit(1.5, "gigameters")
  53238. },
  53239. {
  53240. name: "Galactic",
  53241. height: math.unit(100, "exameters")
  53242. },
  53243. ]
  53244. ))
  53245. characterMakers.push(() => makeCharacter(
  53246. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53247. {
  53248. front: {
  53249. height: math.unit(6, "feet"),
  53250. weight: math.unit(210, "lb"),
  53251. name: "Front",
  53252. image: {
  53253. source: "./media/characters/glacia/front.svg",
  53254. extra: 958/901,
  53255. bottom: 45/1003
  53256. }
  53257. },
  53258. },
  53259. [
  53260. {
  53261. name: "Macro",
  53262. height: math.unit(1000, "meters"),
  53263. default: true
  53264. },
  53265. ]
  53266. ))
  53267. characterMakers.push(() => makeCharacter(
  53268. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53269. {
  53270. front: {
  53271. height: math.unit(4, "meters"),
  53272. name: "Front",
  53273. image: {
  53274. source: "./media/characters/giri/front.svg",
  53275. extra: 966/894,
  53276. bottom: 21/987
  53277. }
  53278. },
  53279. },
  53280. [
  53281. {
  53282. name: "Normal",
  53283. height: math.unit(4, "meters"),
  53284. default: true
  53285. },
  53286. ]
  53287. ))
  53288. characterMakers.push(() => makeCharacter(
  53289. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53290. {
  53291. back: {
  53292. height: math.unit(4, "feet"),
  53293. weight: math.unit(37, "lb"),
  53294. name: "Back",
  53295. image: {
  53296. source: "./media/characters/tin/back.svg",
  53297. extra: 845/780,
  53298. bottom: 28/873
  53299. }
  53300. },
  53301. },
  53302. [
  53303. {
  53304. name: "Normal",
  53305. height: math.unit(4, "feet"),
  53306. default: true
  53307. },
  53308. ]
  53309. ))
  53310. characterMakers.push(() => makeCharacter(
  53311. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53312. {
  53313. front: {
  53314. height: math.unit(25, "feet"),
  53315. name: "Front",
  53316. image: {
  53317. source: "./media/characters/cadenza-vivace/front.svg",
  53318. extra: 1842/1578,
  53319. bottom: 30/1872
  53320. }
  53321. },
  53322. },
  53323. [
  53324. {
  53325. name: "Macro",
  53326. height: math.unit(25, "feet"),
  53327. default: true
  53328. },
  53329. ]
  53330. ))
  53331. characterMakers.push(() => makeCharacter(
  53332. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53333. {
  53334. front: {
  53335. height: math.unit(10, "feet"),
  53336. weight: math.unit(625, "kg"),
  53337. name: "Front",
  53338. image: {
  53339. source: "./media/characters/zain/front.svg",
  53340. extra: 1682/1498,
  53341. bottom: 223/1905
  53342. }
  53343. },
  53344. back: {
  53345. height: math.unit(10, "feet"),
  53346. weight: math.unit(625, "kg"),
  53347. name: "Back",
  53348. image: {
  53349. source: "./media/characters/zain/back.svg",
  53350. extra: 1814/1657,
  53351. bottom: 152/1966
  53352. }
  53353. },
  53354. head: {
  53355. height: math.unit(10, "feet"),
  53356. weight: math.unit(625, "kg"),
  53357. name: "Head",
  53358. image: {
  53359. source: "./media/characters/zain/head.svg",
  53360. extra: 1059/762,
  53361. bottom: 0/1059
  53362. }
  53363. },
  53364. },
  53365. [
  53366. {
  53367. name: "Normal",
  53368. height: math.unit(10, "feet"),
  53369. default: true
  53370. },
  53371. ]
  53372. ))
  53373. characterMakers.push(() => makeCharacter(
  53374. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53375. {
  53376. front: {
  53377. height: math.unit(6 + 5/12, "feet"),
  53378. weight: math.unit(750, "lb"),
  53379. name: "Front",
  53380. image: {
  53381. source: "./media/characters/ruchex/front.svg",
  53382. extra: 877/820,
  53383. bottom: 17/894
  53384. },
  53385. extraAttributes: {
  53386. "width": {
  53387. name: "Width",
  53388. power: 1,
  53389. type: "length",
  53390. base: math.unit(4.757, "feet")
  53391. },
  53392. }
  53393. },
  53394. },
  53395. [
  53396. {
  53397. name: "Normal",
  53398. height: math.unit(6 + 5/12, "feet"),
  53399. default: true
  53400. },
  53401. ]
  53402. ))
  53403. characterMakers.push(() => makeCharacter(
  53404. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53405. {
  53406. dressedFront: {
  53407. height: math.unit(191, "cm"),
  53408. weight: math.unit(80, "kg"),
  53409. name: "Front",
  53410. image: {
  53411. source: "./media/characters/buster/dressed-front.svg",
  53412. extra: 1022/973,
  53413. bottom: 69/1091
  53414. }
  53415. },
  53416. dressedBack: {
  53417. height: math.unit(191, "cm"),
  53418. weight: math.unit(80, "kg"),
  53419. name: "Back",
  53420. image: {
  53421. source: "./media/characters/buster/dressed-back.svg",
  53422. extra: 1018/970,
  53423. bottom: 55/1073
  53424. }
  53425. },
  53426. nudeFront: {
  53427. height: math.unit(191, "cm"),
  53428. weight: math.unit(80, "kg"),
  53429. name: "Front (Nude)",
  53430. image: {
  53431. source: "./media/characters/buster/nude-front.svg",
  53432. extra: 1022/973,
  53433. bottom: 69/1091
  53434. }
  53435. },
  53436. nudeBack: {
  53437. height: math.unit(191, "cm"),
  53438. weight: math.unit(80, "kg"),
  53439. name: "Back (Nude)",
  53440. image: {
  53441. source: "./media/characters/buster/nude-back.svg",
  53442. extra: 1018/970,
  53443. bottom: 55/1073
  53444. }
  53445. },
  53446. dick: {
  53447. height: math.unit(2.59, "feet"),
  53448. name: "Dick",
  53449. image: {
  53450. source: "./media/characters/buster/dick.svg"
  53451. }
  53452. },
  53453. ass: {
  53454. height: math.unit(1.2, "feet"),
  53455. name: "Ass",
  53456. image: {
  53457. source: "./media/characters/buster/ass.svg"
  53458. }
  53459. },
  53460. },
  53461. [
  53462. {
  53463. name: "Normal",
  53464. height: math.unit(191, "cm"),
  53465. default: true
  53466. },
  53467. ]
  53468. ))
  53469. characterMakers.push(() => makeCharacter(
  53470. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53471. {
  53472. side: {
  53473. height: math.unit(8.1, "feet"),
  53474. weight: math.unit(3500, "lb"),
  53475. name: "Side",
  53476. image: {
  53477. source: "./media/characters/sonya/side.svg",
  53478. extra: 1730/1317,
  53479. bottom: 86/1816
  53480. }
  53481. },
  53482. },
  53483. [
  53484. {
  53485. name: "Normal",
  53486. height: math.unit(8.1, "feet"),
  53487. default: true
  53488. },
  53489. ]
  53490. ))
  53491. characterMakers.push(() => makeCharacter(
  53492. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53493. {
  53494. front: {
  53495. height: math.unit(6, "feet"),
  53496. weight: math.unit(150, "lb"),
  53497. name: "Front",
  53498. image: {
  53499. source: "./media/characters/cadence-andrysiak/front.svg",
  53500. extra: 1164/1121,
  53501. bottom: 60/1224
  53502. }
  53503. },
  53504. back: {
  53505. height: math.unit(6, "feet"),
  53506. weight: math.unit(150, "lb"),
  53507. name: "Back",
  53508. image: {
  53509. source: "./media/characters/cadence-andrysiak/back.svg",
  53510. extra: 1200/1165,
  53511. bottom: 9/1209
  53512. }
  53513. },
  53514. dressed: {
  53515. height: math.unit(6, "feet"),
  53516. weight: math.unit(150, "lb"),
  53517. name: "Dressed",
  53518. image: {
  53519. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53520. extra: 1164/1121,
  53521. bottom: 60/1224
  53522. }
  53523. },
  53524. },
  53525. [
  53526. {
  53527. name: "Micro",
  53528. height: math.unit(1, "mm")
  53529. },
  53530. {
  53531. name: "Normal",
  53532. height: math.unit(6, "feet"),
  53533. default: true
  53534. },
  53535. ]
  53536. ))
  53537. characterMakers.push(() => makeCharacter(
  53538. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53539. {
  53540. front: {
  53541. height: math.unit(60, "inches"),
  53542. weight: math.unit(16, "lb"),
  53543. preyCapacity: math.unit(80, "liters"),
  53544. name: "Front",
  53545. image: {
  53546. source: "./media/characters/penny-lynx/front.svg",
  53547. extra: 1959/1769,
  53548. bottom: 49/2008
  53549. }
  53550. },
  53551. },
  53552. [
  53553. {
  53554. name: "Nokia",
  53555. height: math.unit(2, "inches")
  53556. },
  53557. {
  53558. name: "Desktop",
  53559. height: math.unit(24, "inches")
  53560. },
  53561. {
  53562. name: "TV",
  53563. height: math.unit(60, "inches")
  53564. },
  53565. {
  53566. name: "Jumbotron",
  53567. height: math.unit(12, "feet")
  53568. },
  53569. {
  53570. name: "Billboard",
  53571. height: math.unit(48, "feet"),
  53572. default: true
  53573. },
  53574. {
  53575. name: "IMAX",
  53576. height: math.unit(96, "feet")
  53577. },
  53578. {
  53579. name: "SINGULARITY",
  53580. height: math.unit(864938, "miles")
  53581. },
  53582. ]
  53583. ))
  53584. characterMakers.push(() => makeCharacter(
  53585. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53586. {
  53587. front: {
  53588. height: math.unit(5 + 4/12, "feet"),
  53589. weight: math.unit(230, "lb"),
  53590. name: "Front",
  53591. image: {
  53592. source: "./media/characters/sukebe/front.svg",
  53593. extra: 2130/2038,
  53594. bottom: 90/2220
  53595. }
  53596. },
  53597. back: {
  53598. height: math.unit(3.48, "feet"),
  53599. weight: math.unit(230, "lb"),
  53600. name: "Back",
  53601. image: {
  53602. source: "./media/characters/sukebe/back.svg",
  53603. extra: 1670/1604,
  53604. bottom: 0/1670
  53605. }
  53606. },
  53607. },
  53608. [
  53609. {
  53610. name: "Normal",
  53611. height: math.unit(5 + 4/12, "feet"),
  53612. default: true
  53613. },
  53614. ]
  53615. ))
  53616. characterMakers.push(() => makeCharacter(
  53617. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53618. {
  53619. front: {
  53620. height: math.unit(6, "feet"),
  53621. name: "Front",
  53622. image: {
  53623. source: "./media/characters/nylla/front.svg",
  53624. extra: 1868/1699,
  53625. bottom: 97/1965
  53626. }
  53627. },
  53628. back: {
  53629. height: math.unit(6, "feet"),
  53630. name: "Back",
  53631. image: {
  53632. source: "./media/characters/nylla/back.svg",
  53633. extra: 1889/1712,
  53634. bottom: 93/1982
  53635. }
  53636. },
  53637. frontNsfw: {
  53638. height: math.unit(6, "feet"),
  53639. name: "Front (NSFW)",
  53640. image: {
  53641. source: "./media/characters/nylla/front-nsfw.svg",
  53642. extra: 1868/1699,
  53643. bottom: 97/1965
  53644. },
  53645. extraAttributes: {
  53646. "dickLength": {
  53647. name: "Dick Length",
  53648. power: 1,
  53649. type: "length",
  53650. base: math.unit(1.4, "feet")
  53651. },
  53652. "cumVolume": {
  53653. name: "Cum Volume",
  53654. power: 3,
  53655. type: "volume",
  53656. base: math.unit(100, "mL")
  53657. },
  53658. }
  53659. },
  53660. backNsfw: {
  53661. height: math.unit(6, "feet"),
  53662. name: "Back (NSFW)",
  53663. image: {
  53664. source: "./media/characters/nylla/back-nsfw.svg",
  53665. extra: 1889/1712,
  53666. bottom: 93/1982
  53667. }
  53668. },
  53669. maw: {
  53670. height: math.unit(2.10, "feet"),
  53671. name: "Maw",
  53672. image: {
  53673. source: "./media/characters/nylla/maw.svg"
  53674. }
  53675. },
  53676. paws: {
  53677. height: math.unit(2.06, "feet"),
  53678. name: "Paws",
  53679. image: {
  53680. source: "./media/characters/nylla/paws.svg"
  53681. }
  53682. },
  53683. muzzle: {
  53684. height: math.unit(0.61, "feet"),
  53685. name: "Muzzle",
  53686. image: {
  53687. source: "./media/characters/nylla/muzzle.svg"
  53688. }
  53689. },
  53690. sheath: {
  53691. height: math.unit(1.305, "feet"),
  53692. name: "Sheath",
  53693. image: {
  53694. source: "./media/characters/nylla/sheath.svg"
  53695. }
  53696. },
  53697. },
  53698. [
  53699. {
  53700. name: "Micro",
  53701. height: math.unit(7.5, "inches")
  53702. },
  53703. {
  53704. name: "Normal",
  53705. height: math.unit(7, "feet"),
  53706. default: true
  53707. },
  53708. {
  53709. name: "Macro",
  53710. height: math.unit(60, "feet")
  53711. },
  53712. {
  53713. name: "Mega",
  53714. height: math.unit(200, "feet")
  53715. },
  53716. ]
  53717. ))
  53718. characterMakers.push(() => makeCharacter(
  53719. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53720. {
  53721. front: {
  53722. height: math.unit(10, "feet"),
  53723. weight: math.unit(2300, "lb"),
  53724. name: "Front",
  53725. image: {
  53726. source: "./media/characters/hunt3r/front.svg",
  53727. extra: 1909/1742,
  53728. bottom: 46/1955
  53729. }
  53730. },
  53731. },
  53732. [
  53733. {
  53734. name: "Normal",
  53735. height: math.unit(10, "feet"),
  53736. default: true
  53737. },
  53738. ]
  53739. ))
  53740. characterMakers.push(() => makeCharacter(
  53741. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53742. {
  53743. dressed: {
  53744. height: math.unit(11, "feet"),
  53745. weight: math.unit(18500, "lb"),
  53746. preyCapacity: math.unit(9, "people"),
  53747. name: "Dressed",
  53748. image: {
  53749. source: "./media/characters/cylphis/dressed.svg",
  53750. extra: 1028/1003,
  53751. bottom: 75/1103
  53752. },
  53753. },
  53754. undressed: {
  53755. height: math.unit(11, "feet"),
  53756. weight: math.unit(18500, "lb"),
  53757. preyCapacity: math.unit(9, "people"),
  53758. name: "Undressed",
  53759. image: {
  53760. source: "./media/characters/cylphis/undressed.svg",
  53761. extra: 1028/1003,
  53762. bottom: 75/1103
  53763. }
  53764. },
  53765. full: {
  53766. height: math.unit(11, "feet"),
  53767. weight: math.unit(18500 + 150*9, "lb"),
  53768. preyCapacity: math.unit(9, "people"),
  53769. name: "Full",
  53770. image: {
  53771. source: "./media/characters/cylphis/full.svg",
  53772. extra: 1028/1003,
  53773. bottom: 75/1103
  53774. }
  53775. },
  53776. },
  53777. [
  53778. {
  53779. name: "Small",
  53780. height: math.unit(8, "feet")
  53781. },
  53782. {
  53783. name: "Normal",
  53784. height: math.unit(11, "feet"),
  53785. default: true
  53786. },
  53787. ]
  53788. ))
  53789. characterMakers.push(() => makeCharacter(
  53790. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53791. {
  53792. front: {
  53793. height: math.unit(2 + 7/12, "feet"),
  53794. name: "Front",
  53795. image: {
  53796. source: "./media/characters/orishan/front.svg",
  53797. extra: 1058/1023,
  53798. bottom: 23/1081
  53799. }
  53800. },
  53801. back: {
  53802. height: math.unit(2 + 7/12, "feet"),
  53803. name: "Back",
  53804. image: {
  53805. source: "./media/characters/orishan/back.svg",
  53806. extra: 1058/1023,
  53807. bottom: 23/1081
  53808. }
  53809. },
  53810. },
  53811. [
  53812. {
  53813. name: "Micro",
  53814. height: math.unit(2, "cm")
  53815. },
  53816. {
  53817. name: "Normal",
  53818. height: math.unit(2 + 7/12, "feet"),
  53819. default: true
  53820. },
  53821. ]
  53822. ))
  53823. characterMakers.push(() => makeCharacter(
  53824. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53825. {
  53826. front: {
  53827. height: math.unit(3, "meters"),
  53828. weight: math.unit(508, "kg"),
  53829. name: "Front",
  53830. image: {
  53831. source: "./media/characters/seranis/front.svg",
  53832. extra: 1478/1454,
  53833. bottom: 41/1519
  53834. }
  53835. },
  53836. },
  53837. [
  53838. {
  53839. name: "Normal",
  53840. height: math.unit(3, "meters"),
  53841. default: true
  53842. },
  53843. {
  53844. name: "Macro",
  53845. height: math.unit(108, "meters")
  53846. },
  53847. {
  53848. name: "Megamacro",
  53849. height: math.unit(1250, "meters")
  53850. },
  53851. ]
  53852. ))
  53853. characterMakers.push(() => makeCharacter(
  53854. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53855. {
  53856. undressed: {
  53857. height: math.unit(5 + 3/12, "feet"),
  53858. name: "Undressed",
  53859. image: {
  53860. source: "./media/characters/ankou/undressed.svg",
  53861. extra: 1301/1213,
  53862. bottom: 87/1388
  53863. }
  53864. },
  53865. dressed: {
  53866. height: math.unit(5 + 3/12, "feet"),
  53867. name: "Dressed",
  53868. image: {
  53869. source: "./media/characters/ankou/dressed.svg",
  53870. extra: 1301/1213,
  53871. bottom: 87/1388
  53872. }
  53873. },
  53874. head: {
  53875. height: math.unit(1.61, "feet"),
  53876. name: "Head",
  53877. image: {
  53878. source: "./media/characters/ankou/head.svg"
  53879. }
  53880. },
  53881. },
  53882. [
  53883. {
  53884. name: "Normal",
  53885. height: math.unit(5 + 3/12, "feet"),
  53886. default: true
  53887. },
  53888. ]
  53889. ))
  53890. characterMakers.push(() => makeCharacter(
  53891. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53892. {
  53893. side: {
  53894. height: math.unit(6 + 3/12, "feet"),
  53895. weight: math.unit(200, "kg"),
  53896. name: "Side",
  53897. image: {
  53898. source: "./media/characters/juniper-skunktaur/side.svg",
  53899. extra: 1574/1229,
  53900. bottom: 38/1612
  53901. }
  53902. },
  53903. front: {
  53904. height: math.unit(6 + 3/12, "feet"),
  53905. weight: math.unit(200, "kg"),
  53906. name: "Front",
  53907. image: {
  53908. source: "./media/characters/juniper-skunktaur/front.svg",
  53909. extra: 1337/1278,
  53910. bottom: 22/1359
  53911. }
  53912. },
  53913. back: {
  53914. height: math.unit(6 + 3/12, "feet"),
  53915. weight: math.unit(200, "kg"),
  53916. name: "Back",
  53917. image: {
  53918. source: "./media/characters/juniper-skunktaur/back.svg",
  53919. extra: 1618/1273,
  53920. bottom: 13/1631
  53921. }
  53922. },
  53923. top: {
  53924. height: math.unit(2.62, "feet"),
  53925. weight: math.unit(200, "kg"),
  53926. name: "Top",
  53927. image: {
  53928. source: "./media/characters/juniper-skunktaur/top.svg"
  53929. }
  53930. },
  53931. },
  53932. [
  53933. {
  53934. name: "Normal",
  53935. height: math.unit(6 + 3/12, "feet"),
  53936. default: true
  53937. },
  53938. ]
  53939. ))
  53940. characterMakers.push(() => makeCharacter(
  53941. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53942. {
  53943. front: {
  53944. height: math.unit(20.5, "feet"),
  53945. name: "Front",
  53946. image: {
  53947. source: "./media/characters/rei/front.svg",
  53948. extra: 1349/1195,
  53949. bottom: 31/1380
  53950. }
  53951. },
  53952. back: {
  53953. height: math.unit(20.5, "feet"),
  53954. name: "Back",
  53955. image: {
  53956. source: "./media/characters/rei/back.svg",
  53957. extra: 1358/1204,
  53958. bottom: 22/1380
  53959. }
  53960. },
  53961. pawsDigi: {
  53962. height: math.unit(3.45, "feet"),
  53963. name: "Paws (Digi)",
  53964. image: {
  53965. source: "./media/characters/rei/paws-digi.svg"
  53966. }
  53967. },
  53968. pawsPlanti: {
  53969. height: math.unit(3.45, "feet"),
  53970. name: "Paws (Planti)",
  53971. image: {
  53972. source: "./media/characters/rei/paws-planti.svg"
  53973. }
  53974. },
  53975. },
  53976. [
  53977. {
  53978. name: "Normal",
  53979. height: math.unit(20.5, "feet"),
  53980. default: true
  53981. },
  53982. ]
  53983. ))
  53984. characterMakers.push(() => makeCharacter(
  53985. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53986. {
  53987. front: {
  53988. height: math.unit(5 + 11/12, "feet"),
  53989. name: "Front",
  53990. image: {
  53991. source: "./media/characters/carina/front.svg",
  53992. extra: 1720/1449,
  53993. bottom: 14/1734
  53994. }
  53995. },
  53996. back: {
  53997. height: math.unit(5 + 11/12, "feet"),
  53998. name: "Back",
  53999. image: {
  54000. source: "./media/characters/carina/back.svg",
  54001. extra: 1493/1445,
  54002. bottom: 17/1510
  54003. }
  54004. },
  54005. paw: {
  54006. height: math.unit(0.92, "feet"),
  54007. name: "Paw",
  54008. image: {
  54009. source: "./media/characters/carina/paw.svg"
  54010. }
  54011. },
  54012. },
  54013. [
  54014. {
  54015. name: "Normal",
  54016. height: math.unit(5 + 11/12, "feet"),
  54017. default: true
  54018. },
  54019. ]
  54020. ))
  54021. characterMakers.push(() => makeCharacter(
  54022. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  54023. {
  54024. normal_front: {
  54025. height: math.unit(4.88, "meters"),
  54026. name: "Front",
  54027. image: {
  54028. source: "./media/characters/maya/normal-front.svg",
  54029. extra: 1222/1145,
  54030. bottom: 57/1279
  54031. },
  54032. form: "normal",
  54033. default: true
  54034. },
  54035. monstrous_front: {
  54036. height: math.unit(10, "meters"),
  54037. name: "Front",
  54038. image: {
  54039. source: "./media/characters/maya/monstrous-front.svg",
  54040. extra: 1523/1109,
  54041. bottom: 113/1636
  54042. },
  54043. form: "monstrous",
  54044. extraAttributes: {
  54045. "swallowSize": {
  54046. name: "Tailmaw Bite Size",
  54047. power: 3,
  54048. type: "volume",
  54049. base: math.unit(43000, "liters")
  54050. },
  54051. }
  54052. },
  54053. taur_front: {
  54054. height: math.unit(10, "meters"),
  54055. name: "Front",
  54056. image: {
  54057. source: "./media/characters/maya/taur-front.svg",
  54058. extra: 743/506,
  54059. bottom: 101/844
  54060. },
  54061. form: "taur",
  54062. },
  54063. },
  54064. [
  54065. {
  54066. name: "Normal",
  54067. height: math.unit(4.88, "meters"),
  54068. default: true,
  54069. form: "normal"
  54070. },
  54071. {
  54072. name: "Macro",
  54073. height: math.unit(38.1, "meters"),
  54074. form: "normal"
  54075. },
  54076. {
  54077. name: "Macro+",
  54078. height: math.unit(152.4, "meters"),
  54079. form: "normal"
  54080. },
  54081. {
  54082. name: "Macro++",
  54083. height: math.unit(16.09, "km"),
  54084. form: "normal"
  54085. },
  54086. {
  54087. name: "Mega-macro",
  54088. height: math.unit(700, "megameters"),
  54089. form: "normal"
  54090. },
  54091. {
  54092. name: "Satiated",
  54093. height: math.unit(10, "meters"),
  54094. default: true,
  54095. form: "monstrous"
  54096. },
  54097. {
  54098. name: "Hungry",
  54099. height: math.unit(75, "meters"),
  54100. form: "monstrous"
  54101. },
  54102. {
  54103. name: "Ravenous",
  54104. height: math.unit(500, "meters"),
  54105. form: "monstrous"
  54106. },
  54107. {
  54108. name: "\"Normal\"",
  54109. height: math.unit(10, "meters"),
  54110. form: "taur"
  54111. },
  54112. {
  54113. name: "Macro",
  54114. height: math.unit(50, "meters"),
  54115. form: "taur"
  54116. },
  54117. ],
  54118. {
  54119. "normal": {
  54120. name: "Normal",
  54121. default: true
  54122. },
  54123. "monstrous": {
  54124. name: "Monstrous",
  54125. },
  54126. "taur": {
  54127. name: "Taur",
  54128. },
  54129. }
  54130. ))
  54131. characterMakers.push(() => makeCharacter(
  54132. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  54133. {
  54134. front: {
  54135. height: math.unit(6 + 2/12, "feet"),
  54136. weight: math.unit(500, "lb"),
  54137. preyCapacity: math.unit(4, "people"),
  54138. name: "Front",
  54139. image: {
  54140. source: "./media/characters/yepir/front.svg"
  54141. }
  54142. },
  54143. side: {
  54144. height: math.unit(6 + 2/12, "feet"),
  54145. weight: math.unit(500, "lb"),
  54146. preyCapacity: math.unit(4, "people"),
  54147. name: "Side",
  54148. image: {
  54149. source: "./media/characters/yepir/side.svg"
  54150. }
  54151. },
  54152. paw: {
  54153. height: math.unit(1.05, "feet"),
  54154. name: "Paw",
  54155. image: {
  54156. source: "./media/characters/yepir/paw.svg"
  54157. }
  54158. },
  54159. },
  54160. [
  54161. {
  54162. name: "Normal",
  54163. height: math.unit(6 + 2/12, "feet"),
  54164. default: true
  54165. },
  54166. ]
  54167. ))
  54168. characterMakers.push(() => makeCharacter(
  54169. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  54170. {
  54171. front: {
  54172. height: math.unit(5 + 4/12, "feet"),
  54173. name: "Front",
  54174. image: {
  54175. source: "./media/characters/russec/front.svg",
  54176. extra: 1926/1626,
  54177. bottom: 72/1998
  54178. }
  54179. },
  54180. back: {
  54181. height: math.unit(5 + 4/12, "feet"),
  54182. name: "Back",
  54183. image: {
  54184. source: "./media/characters/russec/back.svg",
  54185. extra: 1910/1591,
  54186. bottom: 48/1958
  54187. }
  54188. },
  54189. },
  54190. [
  54191. {
  54192. name: "Small",
  54193. height: math.unit(5 + 4/12, "feet")
  54194. },
  54195. {
  54196. name: "Normal",
  54197. height: math.unit(72, "feet"),
  54198. default: true
  54199. },
  54200. ]
  54201. ))
  54202. characterMakers.push(() => makeCharacter(
  54203. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54204. {
  54205. side: {
  54206. height: math.unit(12, "feet"),
  54207. name: "Side",
  54208. image: {
  54209. source: "./media/characters/cianus/side.svg",
  54210. extra: 808/526,
  54211. bottom: 61/869
  54212. }
  54213. },
  54214. },
  54215. [
  54216. {
  54217. name: "Normal",
  54218. height: math.unit(12, "feet"),
  54219. default: true
  54220. },
  54221. ]
  54222. ))
  54223. characterMakers.push(() => makeCharacter(
  54224. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54225. {
  54226. front: {
  54227. height: math.unit(9 + 6/12, "feet"),
  54228. weight: math.unit(300, "lb"),
  54229. name: "Front",
  54230. image: {
  54231. source: "./media/characters/ahab/front.svg",
  54232. extra: 1897/1868,
  54233. bottom: 121/2018
  54234. }
  54235. },
  54236. frontNsfw: {
  54237. height: math.unit(9 + 6/12, "feet"),
  54238. weight: math.unit(300, "lb"),
  54239. name: "Front (NSFW)",
  54240. image: {
  54241. source: "./media/characters/ahab/front-nsfw.svg",
  54242. extra: 1897/1868,
  54243. bottom: 121/2018
  54244. }
  54245. },
  54246. },
  54247. [
  54248. {
  54249. name: "Normal",
  54250. height: math.unit(9 + 6/12, "feet")
  54251. },
  54252. {
  54253. name: "Macro",
  54254. height: math.unit(657, "feet"),
  54255. default: true
  54256. },
  54257. ]
  54258. ))
  54259. characterMakers.push(() => makeCharacter(
  54260. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54261. {
  54262. front: {
  54263. height: math.unit(2.69, "meters"),
  54264. weight: math.unit(132, "kg"),
  54265. name: "Front",
  54266. image: {
  54267. source: "./media/characters/aarkus/front.svg",
  54268. extra: 1400/1231,
  54269. bottom: 34/1434
  54270. }
  54271. },
  54272. back: {
  54273. height: math.unit(2.69, "meters"),
  54274. weight: math.unit(132, "kg"),
  54275. name: "Back",
  54276. image: {
  54277. source: "./media/characters/aarkus/back.svg",
  54278. extra: 1381/1218,
  54279. bottom: 30/1411
  54280. }
  54281. },
  54282. frontNsfw: {
  54283. height: math.unit(2.69, "meters"),
  54284. weight: math.unit(132, "kg"),
  54285. name: "Front (NSFW)",
  54286. image: {
  54287. source: "./media/characters/aarkus/front-nsfw.svg",
  54288. extra: 1400/1231,
  54289. bottom: 34/1434
  54290. }
  54291. },
  54292. foot: {
  54293. height: math.unit(1.45, "feet"),
  54294. name: "Foot",
  54295. image: {
  54296. source: "./media/characters/aarkus/foot.svg"
  54297. }
  54298. },
  54299. head: {
  54300. height: math.unit(2.85, "feet"),
  54301. name: "Head",
  54302. image: {
  54303. source: "./media/characters/aarkus/head.svg"
  54304. }
  54305. },
  54306. headAlt: {
  54307. height: math.unit(3.07, "feet"),
  54308. name: "Head (Alt)",
  54309. image: {
  54310. source: "./media/characters/aarkus/head-alt.svg"
  54311. }
  54312. },
  54313. mouth: {
  54314. height: math.unit(1.25, "feet"),
  54315. name: "Mouth",
  54316. image: {
  54317. source: "./media/characters/aarkus/mouth.svg"
  54318. }
  54319. },
  54320. dick: {
  54321. height: math.unit(1.77, "feet"),
  54322. name: "Dick",
  54323. image: {
  54324. source: "./media/characters/aarkus/dick.svg"
  54325. }
  54326. },
  54327. },
  54328. [
  54329. {
  54330. name: "Normal",
  54331. height: math.unit(2.69, "meters"),
  54332. default: true
  54333. },
  54334. {
  54335. name: "Macro",
  54336. height: math.unit(269, "meters")
  54337. },
  54338. {
  54339. name: "Macro+",
  54340. height: math.unit(672.5, "meters")
  54341. },
  54342. {
  54343. name: "Megamacro",
  54344. height: math.unit(2.017, "km")
  54345. },
  54346. ]
  54347. ))
  54348. characterMakers.push(() => makeCharacter(
  54349. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54350. {
  54351. front: {
  54352. height: math.unit(23.47, "cm"),
  54353. weight: math.unit(600, "grams"),
  54354. name: "Front",
  54355. image: {
  54356. source: "./media/characters/diode/front.svg",
  54357. extra: 1778/1396,
  54358. bottom: 95/1873
  54359. }
  54360. },
  54361. side: {
  54362. height: math.unit(23.47, "cm"),
  54363. weight: math.unit(600, "grams"),
  54364. name: "Side",
  54365. image: {
  54366. source: "./media/characters/diode/side.svg",
  54367. extra: 1831/1404,
  54368. bottom: 86/1917
  54369. }
  54370. },
  54371. wings: {
  54372. height: math.unit(0.683, "feet"),
  54373. name: "Wings",
  54374. image: {
  54375. source: "./media/characters/diode/wings.svg"
  54376. }
  54377. },
  54378. },
  54379. [
  54380. {
  54381. name: "Normal",
  54382. height: math.unit(23.47, "cm"),
  54383. default: true
  54384. },
  54385. ]
  54386. ))
  54387. characterMakers.push(() => makeCharacter(
  54388. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54389. {
  54390. front: {
  54391. height: math.unit(6 + 3/12, "feet"),
  54392. weight: math.unit(250, "lb"),
  54393. name: "Front",
  54394. image: {
  54395. source: "./media/characters/reika/front.svg",
  54396. extra: 1120/1078,
  54397. bottom: 86/1206
  54398. }
  54399. },
  54400. },
  54401. [
  54402. {
  54403. name: "Normal",
  54404. height: math.unit(6 + 3/12, "feet"),
  54405. default: true
  54406. },
  54407. ]
  54408. ))
  54409. characterMakers.push(() => makeCharacter(
  54410. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54411. {
  54412. front: {
  54413. height: math.unit(16 + 8/12, "feet"),
  54414. weight: math.unit(9000, "lb"),
  54415. name: "Front",
  54416. image: {
  54417. source: "./media/characters/lokuto-takama/front.svg",
  54418. extra: 1774/1632,
  54419. bottom: 147/1921
  54420. },
  54421. extraAttributes: {
  54422. "bustWidth": {
  54423. name: "Bust Width",
  54424. power: 1,
  54425. type: "length",
  54426. base: math.unit(2.4, "meters")
  54427. },
  54428. "breastWeight": {
  54429. name: "Breast Weight",
  54430. power: 3,
  54431. type: "mass",
  54432. base: math.unit(1000, "kg")
  54433. },
  54434. }
  54435. },
  54436. },
  54437. [
  54438. {
  54439. name: "Normal",
  54440. height: math.unit(16 + 8/12, "feet"),
  54441. default: true
  54442. },
  54443. ]
  54444. ))
  54445. characterMakers.push(() => makeCharacter(
  54446. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54447. {
  54448. front: {
  54449. height: math.unit(10, "cm"),
  54450. weight: math.unit(850, "grams"),
  54451. name: "Front",
  54452. image: {
  54453. source: "./media/characters/owak-bone/front.svg",
  54454. extra: 1965/1801,
  54455. bottom: 31/1996
  54456. }
  54457. },
  54458. },
  54459. [
  54460. {
  54461. name: "Normal",
  54462. height: math.unit(10, "cm"),
  54463. default: true
  54464. },
  54465. ]
  54466. ))
  54467. characterMakers.push(() => makeCharacter(
  54468. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54469. {
  54470. front: {
  54471. height: math.unit(2 + 6/12, "feet"),
  54472. weight: math.unit(9, "lb"),
  54473. name: "Front",
  54474. image: {
  54475. source: "./media/characters/muffin/front.svg",
  54476. extra: 1220/1195,
  54477. bottom: 84/1304
  54478. }
  54479. },
  54480. },
  54481. [
  54482. {
  54483. name: "Normal",
  54484. height: math.unit(2 + 6/12, "feet"),
  54485. default: true
  54486. },
  54487. ]
  54488. ))
  54489. characterMakers.push(() => makeCharacter(
  54490. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54491. {
  54492. front: {
  54493. height: math.unit(7, "feet"),
  54494. name: "Front",
  54495. image: {
  54496. source: "./media/characters/chimera/front.svg",
  54497. extra: 1752/1614,
  54498. bottom: 68/1820
  54499. }
  54500. },
  54501. },
  54502. [
  54503. {
  54504. name: "Normal",
  54505. height: math.unit(7, "feet")
  54506. },
  54507. {
  54508. name: "Gigamacro",
  54509. height: math.unit(2.9, "gigameters"),
  54510. default: true
  54511. },
  54512. {
  54513. name: "Universal",
  54514. height: math.unit(1.56e26, "yottameters")
  54515. },
  54516. ]
  54517. ))
  54518. characterMakers.push(() => makeCharacter(
  54519. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54520. {
  54521. front: {
  54522. height: math.unit(3, "feet"),
  54523. weight: math.unit(20, "lb"),
  54524. name: "Front",
  54525. image: {
  54526. source: "./media/characters/kit-fennec-fox/front.svg",
  54527. extra: 1027/932,
  54528. bottom: 16/1043
  54529. }
  54530. },
  54531. back: {
  54532. height: math.unit(3, "feet"),
  54533. weight: math.unit(20, "lb"),
  54534. name: "Back",
  54535. image: {
  54536. source: "./media/characters/kit-fennec-fox/back.svg",
  54537. extra: 1027/932,
  54538. bottom: 16/1043
  54539. }
  54540. },
  54541. },
  54542. [
  54543. {
  54544. name: "Normal",
  54545. height: math.unit(3, "feet"),
  54546. default: true
  54547. },
  54548. ]
  54549. ))
  54550. characterMakers.push(() => makeCharacter(
  54551. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54552. {
  54553. front: {
  54554. height: math.unit(167, "cm"),
  54555. name: "Front",
  54556. image: {
  54557. source: "./media/characters/blue-otter/front.svg",
  54558. extra: 1951/1920,
  54559. bottom: 31/1982
  54560. }
  54561. },
  54562. },
  54563. [
  54564. {
  54565. name: "Otter-Sized",
  54566. height: math.unit(100, "cm")
  54567. },
  54568. {
  54569. name: "Normal",
  54570. height: math.unit(167, "cm"),
  54571. default: true
  54572. },
  54573. ]
  54574. ))
  54575. characterMakers.push(() => makeCharacter(
  54576. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54577. {
  54578. front: {
  54579. height: math.unit(4 + 4/12, "feet"),
  54580. name: "Front",
  54581. image: {
  54582. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54583. extra: 1072/1067,
  54584. bottom: 117/1189
  54585. }
  54586. },
  54587. back: {
  54588. height: math.unit(4 + 4/12, "feet"),
  54589. name: "Back",
  54590. image: {
  54591. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54592. extra: 1135/1129,
  54593. bottom: 57/1192
  54594. }
  54595. },
  54596. head: {
  54597. height: math.unit(1.77, "feet"),
  54598. name: "Head",
  54599. image: {
  54600. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54601. }
  54602. },
  54603. },
  54604. [
  54605. {
  54606. name: "Normal",
  54607. height: math.unit(4 + 4/12, "feet"),
  54608. default: true
  54609. },
  54610. ]
  54611. ))
  54612. characterMakers.push(() => makeCharacter(
  54613. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54614. {
  54615. front: {
  54616. height: math.unit(2, "inches"),
  54617. name: "Front",
  54618. image: {
  54619. source: "./media/characters/carley-hartford/front.svg",
  54620. extra: 1035/988,
  54621. bottom: 23/1058
  54622. }
  54623. },
  54624. back: {
  54625. height: math.unit(2, "inches"),
  54626. name: "Back",
  54627. image: {
  54628. source: "./media/characters/carley-hartford/back.svg",
  54629. extra: 1035/988,
  54630. bottom: 23/1058
  54631. }
  54632. },
  54633. dressed: {
  54634. height: math.unit(2, "inches"),
  54635. name: "Dressed",
  54636. image: {
  54637. source: "./media/characters/carley-hartford/dressed.svg",
  54638. extra: 651/620,
  54639. bottom: 0/651
  54640. }
  54641. },
  54642. },
  54643. [
  54644. {
  54645. name: "Micro",
  54646. height: math.unit(2, "inches"),
  54647. default: true
  54648. },
  54649. {
  54650. name: "Macro",
  54651. height: math.unit(6 + 3/12, "feet")
  54652. },
  54653. ]
  54654. ))
  54655. characterMakers.push(() => makeCharacter(
  54656. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54657. {
  54658. front: {
  54659. height: math.unit(2 + 3/12, "feet"),
  54660. weight: math.unit(15 + 7/16, "lb"),
  54661. name: "Front",
  54662. image: {
  54663. source: "./media/characters/duke/front.svg",
  54664. extra: 910/815,
  54665. bottom: 30/940
  54666. }
  54667. },
  54668. },
  54669. [
  54670. {
  54671. name: "Normal",
  54672. height: math.unit(2 + 3/12, "feet"),
  54673. default: true
  54674. },
  54675. ]
  54676. ))
  54677. characterMakers.push(() => makeCharacter(
  54678. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54679. {
  54680. front: {
  54681. height: math.unit(5 + 4/12, "feet"),
  54682. weight: math.unit(156, "lb"),
  54683. name: "Front",
  54684. image: {
  54685. source: "./media/characters/dein/front.svg",
  54686. extra: 855/815,
  54687. bottom: 48/903
  54688. }
  54689. },
  54690. side: {
  54691. height: math.unit(5 + 4/12, "feet"),
  54692. weight: math.unit(156, "lb"),
  54693. name: "side",
  54694. image: {
  54695. source: "./media/characters/dein/side.svg",
  54696. extra: 846/803,
  54697. bottom: 25/871
  54698. }
  54699. },
  54700. maw: {
  54701. height: math.unit(1.45, "feet"),
  54702. name: "Maw",
  54703. image: {
  54704. source: "./media/characters/dein/maw.svg"
  54705. }
  54706. },
  54707. },
  54708. [
  54709. {
  54710. name: "Ferret Sized",
  54711. height: math.unit(2 + 5/12, "feet")
  54712. },
  54713. {
  54714. name: "Normal",
  54715. height: math.unit(5 + 4/12, "feet"),
  54716. default: true
  54717. },
  54718. ]
  54719. ))
  54720. characterMakers.push(() => makeCharacter(
  54721. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54722. {
  54723. front: {
  54724. height: math.unit(84 + 8/12, "feet"),
  54725. weight: math.unit(942180, "lb"),
  54726. name: "Front",
  54727. image: {
  54728. source: "./media/characters/daurine-arima/front.svg",
  54729. extra: 1989/1782,
  54730. bottom: 37/2026
  54731. }
  54732. },
  54733. side: {
  54734. height: math.unit(84 + 8/12, "feet"),
  54735. weight: math.unit(942180, "lb"),
  54736. name: "Side",
  54737. image: {
  54738. source: "./media/characters/daurine-arima/side.svg",
  54739. extra: 1997/1790,
  54740. bottom: 21/2018
  54741. }
  54742. },
  54743. back: {
  54744. height: math.unit(84 + 8/12, "feet"),
  54745. weight: math.unit(942180, "lb"),
  54746. name: "Back",
  54747. image: {
  54748. source: "./media/characters/daurine-arima/back.svg",
  54749. extra: 1992/1800,
  54750. bottom: 12/2004
  54751. }
  54752. },
  54753. head: {
  54754. height: math.unit(15.5, "feet"),
  54755. name: "Head",
  54756. image: {
  54757. source: "./media/characters/daurine-arima/head.svg"
  54758. }
  54759. },
  54760. headAlt: {
  54761. height: math.unit(19.19, "feet"),
  54762. name: "Head (Alt)",
  54763. image: {
  54764. source: "./media/characters/daurine-arima/head-alt.svg"
  54765. }
  54766. },
  54767. },
  54768. [
  54769. {
  54770. name: "Minimum height",
  54771. height: math.unit(8 + 10/12, "feet")
  54772. },
  54773. {
  54774. name: "Comfort height",
  54775. height: math.unit(19 + 6 /12, "feet")
  54776. },
  54777. {
  54778. name: "\"Normal\" height",
  54779. height: math.unit(28 + 10/12, "feet")
  54780. },
  54781. {
  54782. name: "Base height",
  54783. height: math.unit(84 + 8/12, "feet"),
  54784. default: true
  54785. },
  54786. {
  54787. name: "Mini-macro",
  54788. height: math.unit(2360, "feet")
  54789. },
  54790. {
  54791. name: "Macro",
  54792. height: math.unit(10, "miles")
  54793. },
  54794. {
  54795. name: "Goddess",
  54796. height: math.unit(9.99e40, "yottameters")
  54797. },
  54798. ]
  54799. ))
  54800. characterMakers.push(() => makeCharacter(
  54801. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54802. {
  54803. front: {
  54804. height: math.unit(2.3, "meters"),
  54805. name: "Front",
  54806. image: {
  54807. source: "./media/characters/cilenomon/front.svg",
  54808. extra: 1963/1778,
  54809. bottom: 54/2017
  54810. }
  54811. },
  54812. },
  54813. [
  54814. {
  54815. name: "Normal",
  54816. height: math.unit(2.3, "meters"),
  54817. default: true
  54818. },
  54819. {
  54820. name: "Big",
  54821. height: math.unit(5, "meters")
  54822. },
  54823. {
  54824. name: "Macro",
  54825. height: math.unit(30, "meters")
  54826. },
  54827. {
  54828. name: "True",
  54829. height: math.unit(1, "universe")
  54830. },
  54831. ]
  54832. ))
  54833. characterMakers.push(() => makeCharacter(
  54834. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54835. {
  54836. front: {
  54837. height: math.unit(5, "feet"),
  54838. name: "Front",
  54839. image: {
  54840. source: "./media/characters/sen-mink/front.svg",
  54841. extra: 1727/1675,
  54842. bottom: 35/1762
  54843. }
  54844. },
  54845. },
  54846. [
  54847. {
  54848. name: "Normal",
  54849. height: math.unit(5, "feet"),
  54850. default: true
  54851. },
  54852. ]
  54853. ))
  54854. characterMakers.push(() => makeCharacter(
  54855. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54856. {
  54857. front: {
  54858. height: math.unit(5.42999, "feet"),
  54859. weight: math.unit(100, "lb"),
  54860. name: "Front",
  54861. image: {
  54862. source: "./media/characters/ophois/front.svg",
  54863. extra: 1429/1286,
  54864. bottom: 60/1489
  54865. }
  54866. },
  54867. },
  54868. [
  54869. {
  54870. name: "Normal",
  54871. height: math.unit(5.42999, "feet"),
  54872. default: true
  54873. },
  54874. ]
  54875. ))
  54876. characterMakers.push(() => makeCharacter(
  54877. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54878. {
  54879. front: {
  54880. height: math.unit(2, "meters"),
  54881. name: "Front",
  54882. image: {
  54883. source: "./media/characters/riley/front.svg",
  54884. extra: 1779/1754,
  54885. bottom: 139/1918
  54886. }
  54887. },
  54888. },
  54889. [
  54890. {
  54891. name: "Normal",
  54892. height: math.unit(2, "meters"),
  54893. default: true
  54894. },
  54895. ]
  54896. ))
  54897. characterMakers.push(() => makeCharacter(
  54898. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54899. {
  54900. front: {
  54901. height: math.unit(6 + 2/12, "feet"),
  54902. weight: math.unit(195, "lb"),
  54903. preyCapacity: math.unit(6, "people"),
  54904. name: "Front",
  54905. image: {
  54906. source: "./media/characters/shuken-flash/front.svg",
  54907. extra: 1905/1739,
  54908. bottom: 65/1970
  54909. }
  54910. },
  54911. back: {
  54912. height: math.unit(6 + 2/12, "feet"),
  54913. weight: math.unit(195, "lb"),
  54914. preyCapacity: math.unit(6, "people"),
  54915. name: "Back",
  54916. image: {
  54917. source: "./media/characters/shuken-flash/back.svg",
  54918. extra: 1912/1751,
  54919. bottom: 13/1925
  54920. }
  54921. },
  54922. },
  54923. [
  54924. {
  54925. name: "Normal",
  54926. height: math.unit(6 + 2/12, "feet"),
  54927. default: true
  54928. },
  54929. ]
  54930. ))
  54931. characterMakers.push(() => makeCharacter(
  54932. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54933. {
  54934. front: {
  54935. height: math.unit(5 + 9/12, "feet"),
  54936. weight: math.unit(150, "lb"),
  54937. name: "Front",
  54938. image: {
  54939. source: "./media/characters/plat/front.svg",
  54940. extra: 1816/1703,
  54941. bottom: 43/1859
  54942. }
  54943. },
  54944. side: {
  54945. height: math.unit(5 + 9/12, "feet"),
  54946. weight: math.unit(300, "lb"),
  54947. name: "Side",
  54948. image: {
  54949. source: "./media/characters/plat/side.svg",
  54950. extra: 1824/1699,
  54951. bottom: 18/1842
  54952. }
  54953. },
  54954. },
  54955. [
  54956. {
  54957. name: "Normal",
  54958. height: math.unit(5 + 9/12, "feet"),
  54959. default: true
  54960. },
  54961. ]
  54962. ))
  54963. characterMakers.push(() => makeCharacter(
  54964. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54965. {
  54966. front: {
  54967. height: math.unit(9, "feet"),
  54968. weight: math.unit(1800, "lb"),
  54969. name: "Front",
  54970. image: {
  54971. source: "./media/characters/elaine/front.svg",
  54972. extra: 1833/1354,
  54973. bottom: 25/1858
  54974. }
  54975. },
  54976. back: {
  54977. height: math.unit(8.8, "feet"),
  54978. weight: math.unit(1800, "lb"),
  54979. name: "Back",
  54980. image: {
  54981. source: "./media/characters/elaine/back.svg",
  54982. extra: 1641/1233,
  54983. bottom: 53/1694
  54984. }
  54985. },
  54986. },
  54987. [
  54988. {
  54989. name: "Normal",
  54990. height: math.unit(9, "feet"),
  54991. default: true
  54992. },
  54993. ]
  54994. ))
  54995. characterMakers.push(() => makeCharacter(
  54996. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54997. {
  54998. front: {
  54999. height: math.unit(17 + 9/12, "feet"),
  55000. weight: math.unit(8000, "lb"),
  55001. name: "Front",
  55002. image: {
  55003. source: "./media/characters/vera-raven/front.svg",
  55004. extra: 1457/1412,
  55005. bottom: 121/1578
  55006. }
  55007. },
  55008. side: {
  55009. height: math.unit(17 + 9/12, "feet"),
  55010. weight: math.unit(8000, "lb"),
  55011. name: "Side",
  55012. image: {
  55013. source: "./media/characters/vera-raven/side.svg",
  55014. extra: 1510/1464,
  55015. bottom: 54/1564
  55016. }
  55017. },
  55018. },
  55019. [
  55020. {
  55021. name: "Normal",
  55022. height: math.unit(17 + 9/12, "feet"),
  55023. default: true
  55024. },
  55025. ]
  55026. ))
  55027. characterMakers.push(() => makeCharacter(
  55028. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  55029. {
  55030. dressed: {
  55031. height: math.unit(6 + 9/12, "feet"),
  55032. name: "Dressed",
  55033. image: {
  55034. source: "./media/characters/nakisha/dressed.svg",
  55035. extra: 1909/1757,
  55036. bottom: 48/1957
  55037. }
  55038. },
  55039. nude: {
  55040. height: math.unit(6 + 9/12, "feet"),
  55041. name: "Nude",
  55042. image: {
  55043. source: "./media/characters/nakisha/nude.svg",
  55044. extra: 1917/1765,
  55045. bottom: 34/1951
  55046. }
  55047. },
  55048. },
  55049. [
  55050. {
  55051. name: "Normal",
  55052. height: math.unit(6 + 9/12, "feet"),
  55053. default: true
  55054. },
  55055. ]
  55056. ))
  55057. characterMakers.push(() => makeCharacter(
  55058. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  55059. {
  55060. front: {
  55061. height: math.unit(87, "meters"),
  55062. name: "Front",
  55063. image: {
  55064. source: "./media/characters/serafin/front.svg",
  55065. extra: 1919/1776,
  55066. bottom: 65/1984
  55067. }
  55068. },
  55069. },
  55070. [
  55071. {
  55072. name: "Normal",
  55073. height: math.unit(87, "meters"),
  55074. default: true
  55075. },
  55076. ]
  55077. ))
  55078. characterMakers.push(() => makeCharacter(
  55079. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  55080. {
  55081. front: {
  55082. height: math.unit(6, "feet"),
  55083. weight: math.unit(200, "lb"),
  55084. name: "Front",
  55085. image: {
  55086. source: "./media/characters/poptart/front.svg",
  55087. extra: 615/583,
  55088. bottom: 23/638
  55089. }
  55090. },
  55091. back: {
  55092. height: math.unit(6, "feet"),
  55093. weight: math.unit(200, "lb"),
  55094. name: "Back",
  55095. image: {
  55096. source: "./media/characters/poptart/back.svg",
  55097. extra: 617/584,
  55098. bottom: 22/639
  55099. }
  55100. },
  55101. frontNsfw: {
  55102. height: math.unit(6, "feet"),
  55103. weight: math.unit(200, "lb"),
  55104. name: "Front (NSFW)",
  55105. image: {
  55106. source: "./media/characters/poptart/front-nsfw.svg",
  55107. extra: 615/583,
  55108. bottom: 23/638
  55109. }
  55110. },
  55111. backNsfw: {
  55112. height: math.unit(6, "feet"),
  55113. weight: math.unit(200, "lb"),
  55114. name: "Back (NSFW)",
  55115. image: {
  55116. source: "./media/characters/poptart/back-nsfw.svg",
  55117. extra: 617/584,
  55118. bottom: 22/639
  55119. }
  55120. },
  55121. hand: {
  55122. height: math.unit(1.14, "feet"),
  55123. name: "Hand",
  55124. image: {
  55125. source: "./media/characters/poptart/hand.svg"
  55126. }
  55127. },
  55128. foot: {
  55129. height: math.unit(1.5, "feet"),
  55130. name: "Foot",
  55131. image: {
  55132. source: "./media/characters/poptart/foot.svg"
  55133. }
  55134. },
  55135. },
  55136. [
  55137. {
  55138. name: "Normal",
  55139. height: math.unit(6, "feet"),
  55140. default: true
  55141. },
  55142. {
  55143. name: "Grande",
  55144. height: math.unit(350, "feet")
  55145. },
  55146. {
  55147. name: "Massif",
  55148. height: math.unit(967, "feet")
  55149. },
  55150. ]
  55151. ))
  55152. characterMakers.push(() => makeCharacter(
  55153. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  55154. {
  55155. hyenaSide: {
  55156. height: math.unit(120, "cm"),
  55157. weight: math.unit(120, "lb"),
  55158. name: "Side",
  55159. image: {
  55160. source: "./media/characters/trance/hyena-side.svg",
  55161. extra: 998/904,
  55162. bottom: 76/1074
  55163. }
  55164. },
  55165. },
  55166. [
  55167. {
  55168. name: "Normal",
  55169. height: math.unit(120, "cm"),
  55170. default: true
  55171. },
  55172. {
  55173. name: "Dire",
  55174. height: math.unit(230, "cm")
  55175. },
  55176. {
  55177. name: "Macro",
  55178. height: math.unit(37, "feet")
  55179. },
  55180. ]
  55181. ))
  55182. characterMakers.push(() => makeCharacter(
  55183. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  55184. {
  55185. front: {
  55186. height: math.unit(6 + 3/12, "feet"),
  55187. name: "Front",
  55188. image: {
  55189. source: "./media/characters/michael-berretta/front.svg",
  55190. extra: 515/494,
  55191. bottom: 20/535
  55192. }
  55193. },
  55194. back: {
  55195. height: math.unit(6 + 3/12, "feet"),
  55196. name: "Back",
  55197. image: {
  55198. source: "./media/characters/michael-berretta/back.svg",
  55199. extra: 520/497,
  55200. bottom: 21/541
  55201. }
  55202. },
  55203. frontNsfw: {
  55204. height: math.unit(6 + 3/12, "feet"),
  55205. name: "Front (NSFW)",
  55206. image: {
  55207. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55208. extra: 515/494,
  55209. bottom: 20/535
  55210. }
  55211. },
  55212. dick: {
  55213. height: math.unit(1, "feet"),
  55214. name: "Dick",
  55215. image: {
  55216. source: "./media/characters/michael-berretta/dick.svg"
  55217. }
  55218. },
  55219. },
  55220. [
  55221. {
  55222. name: "Normal",
  55223. height: math.unit(6 + 3/12, "feet"),
  55224. default: true
  55225. },
  55226. {
  55227. name: "Big",
  55228. height: math.unit(12, "feet")
  55229. },
  55230. {
  55231. name: "Macro",
  55232. height: math.unit(187.5, "feet")
  55233. },
  55234. ]
  55235. ))
  55236. characterMakers.push(() => makeCharacter(
  55237. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55238. {
  55239. front: {
  55240. height: math.unit(9 + 9/12, "feet"),
  55241. weight: math.unit(1244, "lb"),
  55242. name: "Front",
  55243. image: {
  55244. source: "./media/characters/stella-edgecomb/front.svg",
  55245. extra: 1835/1706,
  55246. bottom: 49/1884
  55247. }
  55248. },
  55249. pen: {
  55250. height: math.unit(0.95, "feet"),
  55251. name: "Pen",
  55252. image: {
  55253. source: "./media/characters/stella-edgecomb/pen.svg"
  55254. }
  55255. },
  55256. },
  55257. [
  55258. {
  55259. name: "Cozy Bear",
  55260. height: math.unit(0.5, "inches")
  55261. },
  55262. {
  55263. name: "Normal",
  55264. height: math.unit(9 + 9/12, "feet"),
  55265. default: true
  55266. },
  55267. {
  55268. name: "Giga Bear",
  55269. height: math.unit(1, "mile")
  55270. },
  55271. {
  55272. name: "Great Bear",
  55273. height: math.unit(53, "miles")
  55274. },
  55275. {
  55276. name: "Goddess Bear",
  55277. height: math.unit(40000, "miles")
  55278. },
  55279. {
  55280. name: "Sun Bear",
  55281. height: math.unit(900000, "miles")
  55282. },
  55283. ]
  55284. ))
  55285. characterMakers.push(() => makeCharacter(
  55286. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55287. {
  55288. anthroFront: {
  55289. height: math.unit(556, "cm"),
  55290. weight: math.unit(2650, "kg"),
  55291. preyCapacity: math.unit(3, "people"),
  55292. name: "Front",
  55293. image: {
  55294. source: "./media/characters/ash´iika/front.svg",
  55295. extra: 710/673,
  55296. bottom: 15/725
  55297. },
  55298. form: "anthro",
  55299. default: true
  55300. },
  55301. anthroSide: {
  55302. height: math.unit(556, "cm"),
  55303. weight: math.unit(2650, "kg"),
  55304. preyCapacity: math.unit(3, "people"),
  55305. name: "Side",
  55306. image: {
  55307. source: "./media/characters/ash´iika/side.svg",
  55308. extra: 696/676,
  55309. bottom: 13/709
  55310. },
  55311. form: "anthro"
  55312. },
  55313. anthroDressed: {
  55314. height: math.unit(556, "cm"),
  55315. weight: math.unit(2650, "kg"),
  55316. preyCapacity: math.unit(3, "people"),
  55317. name: "Dressed",
  55318. image: {
  55319. source: "./media/characters/ash´iika/dressed.svg",
  55320. extra: 710/673,
  55321. bottom: 15/725
  55322. },
  55323. form: "anthro"
  55324. },
  55325. anthroHead: {
  55326. height: math.unit(3.5, "feet"),
  55327. name: "Head",
  55328. image: {
  55329. source: "./media/characters/ash´iika/head.svg",
  55330. extra: 348/291,
  55331. bottom: 45/393
  55332. },
  55333. form: "anthro"
  55334. },
  55335. feralSide: {
  55336. height: math.unit(870, "cm"),
  55337. weight: math.unit(17500, "kg"),
  55338. preyCapacity: math.unit(15, "people"),
  55339. name: "Side",
  55340. image: {
  55341. source: "./media/characters/ash´iika/feral.svg",
  55342. extra: 595/199,
  55343. bottom: 7/602
  55344. },
  55345. form: "feral",
  55346. default: true,
  55347. },
  55348. },
  55349. [
  55350. {
  55351. name: "Normal",
  55352. height: math.unit(556, "cm"),
  55353. default: true,
  55354. form: "anthro"
  55355. },
  55356. {
  55357. name: "Macro",
  55358. height: math.unit(88, "meters"),
  55359. form: "anthro"
  55360. },
  55361. {
  55362. name: "Normal",
  55363. height: math.unit(870, "cm"),
  55364. default: true,
  55365. form: "feral"
  55366. },
  55367. {
  55368. name: "Large",
  55369. height: math.unit(25, "meters"),
  55370. form: "feral"
  55371. },
  55372. ],
  55373. {
  55374. "anthro": {
  55375. name: "Anthro",
  55376. default: true
  55377. },
  55378. "feral": {
  55379. name: "Feral",
  55380. },
  55381. }
  55382. ))
  55383. characterMakers.push(() => makeCharacter(
  55384. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55385. {
  55386. front: {
  55387. height: math.unit(10, "feet"),
  55388. weight: math.unit(800, "lb"),
  55389. name: "Front",
  55390. image: {
  55391. source: "./media/characters/yen/front.svg",
  55392. extra: 443/411,
  55393. bottom: 6/449
  55394. }
  55395. },
  55396. sleeping: {
  55397. height: math.unit(10, "feet"),
  55398. weight: math.unit(800, "lb"),
  55399. name: "Sleeping",
  55400. image: {
  55401. source: "./media/characters/yen/sleeping.svg",
  55402. extra: 470/422,
  55403. bottom: 0/470
  55404. }
  55405. },
  55406. head: {
  55407. height: math.unit(2.2, "feet"),
  55408. name: "Head",
  55409. image: {
  55410. source: "./media/characters/yen/head.svg"
  55411. }
  55412. },
  55413. headAlt: {
  55414. height: math.unit(2.1, "feet"),
  55415. name: "Head (Alt)",
  55416. image: {
  55417. source: "./media/characters/yen/head-alt.svg"
  55418. }
  55419. },
  55420. },
  55421. [
  55422. {
  55423. name: "Normal",
  55424. height: math.unit(10, "feet"),
  55425. default: true
  55426. },
  55427. ]
  55428. ))
  55429. characterMakers.push(() => makeCharacter(
  55430. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55431. {
  55432. front: {
  55433. height: math.unit(12, "feet"),
  55434. name: "Front",
  55435. image: {
  55436. source: "./media/characters/citra/front.svg",
  55437. extra: 1950/1710,
  55438. bottom: 47/1997
  55439. }
  55440. },
  55441. },
  55442. [
  55443. {
  55444. name: "Normal",
  55445. height: math.unit(12, "feet"),
  55446. default: true
  55447. },
  55448. ]
  55449. ))
  55450. characterMakers.push(() => makeCharacter(
  55451. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55452. {
  55453. side: {
  55454. height: math.unit(7 + 10/12, "feet"),
  55455. name: "Side",
  55456. image: {
  55457. source: "./media/characters/sholstim/side.svg",
  55458. extra: 786/682,
  55459. bottom: 40/826
  55460. }
  55461. },
  55462. },
  55463. [
  55464. {
  55465. name: "Normal",
  55466. height: math.unit(7 + 10/12, "feet"),
  55467. default: true
  55468. },
  55469. ]
  55470. ))
  55471. characterMakers.push(() => makeCharacter(
  55472. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55473. {
  55474. front: {
  55475. height: math.unit(3.10, "meters"),
  55476. name: "Front",
  55477. image: {
  55478. source: "./media/characters/aggyn/front.svg",
  55479. extra: 1188/963,
  55480. bottom: 24/1212
  55481. }
  55482. },
  55483. },
  55484. [
  55485. {
  55486. name: "Normal",
  55487. height: math.unit(3.10, "meters"),
  55488. default: true
  55489. },
  55490. ]
  55491. ))
  55492. characterMakers.push(() => makeCharacter(
  55493. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55494. {
  55495. front: {
  55496. height: math.unit(7 + 5/12, "feet"),
  55497. weight: math.unit(687, "lb"),
  55498. name: "Front",
  55499. image: {
  55500. source: "./media/characters/alsandair-hergenroether/front.svg",
  55501. extra: 1251/1186,
  55502. bottom: 75/1326
  55503. }
  55504. },
  55505. back: {
  55506. height: math.unit(7 + 5/12, "feet"),
  55507. weight: math.unit(687, "lb"),
  55508. name: "Back",
  55509. image: {
  55510. source: "./media/characters/alsandair-hergenroether/back.svg",
  55511. extra: 1290/1229,
  55512. bottom: 17/1307
  55513. }
  55514. },
  55515. },
  55516. [
  55517. {
  55518. name: "Max Compression",
  55519. height: math.unit(7 + 5/12, "feet"),
  55520. default: true
  55521. },
  55522. {
  55523. name: "\"Normal\"",
  55524. height: math.unit(2, "universes")
  55525. },
  55526. ]
  55527. ))
  55528. characterMakers.push(() => makeCharacter(
  55529. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55530. {
  55531. front: {
  55532. height: math.unit(4 + 1/12, "feet"),
  55533. weight: math.unit(92, "lb"),
  55534. name: "Front",
  55535. image: {
  55536. source: "./media/characters/ie/front.svg",
  55537. extra: 1585/1352,
  55538. bottom: 91/1676
  55539. }
  55540. },
  55541. },
  55542. [
  55543. {
  55544. name: "Normal",
  55545. height: math.unit(4 + 1/12, "feet"),
  55546. default: true
  55547. },
  55548. ]
  55549. ))
  55550. characterMakers.push(() => makeCharacter(
  55551. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55552. {
  55553. anthro: {
  55554. height: math.unit(6, "feet"),
  55555. weight: math.unit(150, "lb"),
  55556. name: "Front",
  55557. image: {
  55558. source: "./media/characters/willow/anthro.svg",
  55559. extra: 1073/986,
  55560. bottom: 34/1107
  55561. },
  55562. form: "anthro",
  55563. default: true
  55564. },
  55565. taur: {
  55566. height: math.unit(6, "feet"),
  55567. weight: math.unit(150, "lb"),
  55568. name: "Side",
  55569. image: {
  55570. source: "./media/characters/willow/taur.svg",
  55571. extra: 647/512,
  55572. bottom: 136/783
  55573. },
  55574. form: "taur",
  55575. default: true
  55576. },
  55577. },
  55578. [
  55579. {
  55580. name: "Humanoid",
  55581. height: math.unit(2.7, "meters"),
  55582. form: "anthro"
  55583. },
  55584. {
  55585. name: "Normal",
  55586. height: math.unit(9, "meters"),
  55587. form: "anthro",
  55588. default: true
  55589. },
  55590. {
  55591. name: "Humanoid",
  55592. height: math.unit(2.1, "meters"),
  55593. form: "taur"
  55594. },
  55595. {
  55596. name: "Normal",
  55597. height: math.unit(7, "meters"),
  55598. form: "taur",
  55599. default: true
  55600. },
  55601. ],
  55602. {
  55603. "anthro": {
  55604. name: "Anthro",
  55605. default: true
  55606. },
  55607. "taur": {
  55608. name: "Taur",
  55609. },
  55610. }
  55611. ))
  55612. characterMakers.push(() => makeCharacter(
  55613. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55614. {
  55615. front: {
  55616. height: math.unit(2 + 5/12, "feet"),
  55617. name: "Front",
  55618. image: {
  55619. source: "./media/characters/kyan/front.svg",
  55620. extra: 460/334,
  55621. bottom: 23/483
  55622. },
  55623. extraAttributes: {
  55624. "toeLength": {
  55625. name: "Toe Length",
  55626. power: 1,
  55627. type: "length",
  55628. base: math.unit(7, "cm")
  55629. },
  55630. "toeclawLength": {
  55631. name: "Toeclaw Length",
  55632. power: 1,
  55633. type: "length",
  55634. base: math.unit(4.7, "cm")
  55635. },
  55636. "earHeight": {
  55637. name: "Ear Height",
  55638. power: 1,
  55639. type: "length",
  55640. base: math.unit(14.1, "cm")
  55641. },
  55642. }
  55643. },
  55644. paws: {
  55645. height: math.unit(0.45, "feet"),
  55646. name: "Paws",
  55647. image: {
  55648. source: "./media/characters/kyan/paws.svg",
  55649. extra: 581/581,
  55650. bottom: 114/695
  55651. }
  55652. },
  55653. },
  55654. [
  55655. {
  55656. name: "Normal",
  55657. height: math.unit(2 + 5/12, "feet"),
  55658. default: true
  55659. },
  55660. ]
  55661. ))
  55662. characterMakers.push(() => makeCharacter(
  55663. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55664. {
  55665. front: {
  55666. height: math.unit(2 + 2/3, "feet"),
  55667. name: "Front",
  55668. image: {
  55669. source: "./media/characters/xazzon/front.svg",
  55670. extra: 1109/984,
  55671. bottom: 42/1151
  55672. }
  55673. },
  55674. back: {
  55675. height: math.unit(2 + 2/3, "feet"),
  55676. name: "Back",
  55677. image: {
  55678. source: "./media/characters/xazzon/back.svg",
  55679. extra: 1095/971,
  55680. bottom: 23/1118
  55681. }
  55682. },
  55683. },
  55684. [
  55685. {
  55686. name: "Normal",
  55687. height: math.unit(2 + 2/3, "feet"),
  55688. default: true
  55689. },
  55690. ]
  55691. ))
  55692. characterMakers.push(() => makeCharacter(
  55693. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55694. {
  55695. front: {
  55696. height: math.unit(8, "feet"),
  55697. weight: math.unit(300, "lb"),
  55698. name: "Front",
  55699. image: {
  55700. source: "./media/characters/khyla-shadowsong/front.svg",
  55701. extra: 861/798,
  55702. bottom: 32/893
  55703. }
  55704. },
  55705. side: {
  55706. height: math.unit(8, "feet"),
  55707. weight: math.unit(300, "lb"),
  55708. name: "Side",
  55709. image: {
  55710. source: "./media/characters/khyla-shadowsong/side.svg",
  55711. extra: 790/750,
  55712. bottom: 87/877
  55713. }
  55714. },
  55715. back: {
  55716. height: math.unit(8, "feet"),
  55717. weight: math.unit(300, "lb"),
  55718. name: "Back",
  55719. image: {
  55720. source: "./media/characters/khyla-shadowsong/back.svg",
  55721. extra: 855/808,
  55722. bottom: 14/869
  55723. }
  55724. },
  55725. head: {
  55726. height: math.unit(2.7, "feet"),
  55727. name: "Head",
  55728. image: {
  55729. source: "./media/characters/khyla-shadowsong/head.svg"
  55730. }
  55731. },
  55732. },
  55733. [
  55734. {
  55735. name: "Micro",
  55736. height: math.unit(6, "inches")
  55737. },
  55738. {
  55739. name: "Normal",
  55740. height: math.unit(8, "feet"),
  55741. default: true
  55742. },
  55743. ]
  55744. ))
  55745. characterMakers.push(() => makeCharacter(
  55746. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55747. {
  55748. hyperFront: {
  55749. height: math.unit(9 + 4/12, "feet"),
  55750. weight: math.unit(2000, "lb"),
  55751. name: "Front",
  55752. image: {
  55753. source: "./media/characters/tiden/hyper-front.svg",
  55754. extra: 400/382,
  55755. bottom: 6/406
  55756. },
  55757. form: "hyper",
  55758. },
  55759. regularFront: {
  55760. height: math.unit(7 + 10/12, "feet"),
  55761. weight: math.unit(470, "lb"),
  55762. name: "Front",
  55763. image: {
  55764. source: "./media/characters/tiden/regular-front.svg",
  55765. extra: 468/442,
  55766. bottom: 6/474
  55767. },
  55768. form: "regular",
  55769. },
  55770. },
  55771. [
  55772. {
  55773. name: "Normal",
  55774. height: math.unit(9 + 4/12, "feet"),
  55775. default: true,
  55776. form: "hyper"
  55777. },
  55778. {
  55779. name: "Normal",
  55780. height: math.unit(7 + 10/12, "feet"),
  55781. default: true,
  55782. form: "regular"
  55783. },
  55784. ],
  55785. {
  55786. "hyper": {
  55787. name: "Hyper",
  55788. default: true
  55789. },
  55790. "regular": {
  55791. name: "Regular",
  55792. },
  55793. }
  55794. ))
  55795. characterMakers.push(() => makeCharacter(
  55796. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55797. {
  55798. side: {
  55799. height: math.unit(6, "feet"),
  55800. weight: math.unit(150, "lb"),
  55801. name: "Side",
  55802. image: {
  55803. source: "./media/characters/jason-crowe/side.svg",
  55804. extra: 1771/766,
  55805. bottom: 219/1990
  55806. }
  55807. },
  55808. },
  55809. [
  55810. {
  55811. name: "Pocket Gryphon",
  55812. height: math.unit(6, "cm")
  55813. },
  55814. {
  55815. name: "Raven",
  55816. height: math.unit(60, "cm")
  55817. },
  55818. {
  55819. name: "Normal",
  55820. height: math.unit(1, "meter"),
  55821. default: true
  55822. },
  55823. ]
  55824. ))
  55825. characterMakers.push(() => makeCharacter(
  55826. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55827. {
  55828. front: {
  55829. height: math.unit(9 + 6/12, "feet"),
  55830. weight: math.unit(1100, "lb"),
  55831. name: "Front",
  55832. image: {
  55833. source: "./media/characters/django/front.svg",
  55834. extra: 1231/1136,
  55835. bottom: 34/1265
  55836. }
  55837. },
  55838. side: {
  55839. height: math.unit(9 + 6/12, "feet"),
  55840. weight: math.unit(1100, "lb"),
  55841. name: "Side",
  55842. image: {
  55843. source: "./media/characters/django/side.svg",
  55844. extra: 1267/1174,
  55845. bottom: 9/1276
  55846. }
  55847. },
  55848. },
  55849. [
  55850. {
  55851. name: "Normal",
  55852. height: math.unit(9 + 6/12, "feet"),
  55853. default: true
  55854. },
  55855. {
  55856. name: "Macro 1",
  55857. height: math.unit(50, "feet")
  55858. },
  55859. {
  55860. name: "Macro 2",
  55861. height: math.unit(500, "feet")
  55862. },
  55863. {
  55864. name: "Mega Macro",
  55865. height: math.unit(5300, "feet")
  55866. },
  55867. ]
  55868. ))
  55869. characterMakers.push(() => makeCharacter(
  55870. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55871. {
  55872. frontSfw: {
  55873. height: math.unit(120, "cm"),
  55874. weight: math.unit(15, "kg"),
  55875. name: "Front (SFW)",
  55876. image: {
  55877. source: "./media/characters/eri/front-sfw.svg",
  55878. extra: 1014/939,
  55879. bottom: 37/1051
  55880. },
  55881. form: "moth",
  55882. },
  55883. frontNsfw: {
  55884. height: math.unit(120, "cm"),
  55885. weight: math.unit(15, "kg"),
  55886. name: "Front (NSFW)",
  55887. image: {
  55888. source: "./media/characters/eri/front-nsfw.svg",
  55889. extra: 1014/939,
  55890. bottom: 37/1051
  55891. },
  55892. form: "moth",
  55893. default: true
  55894. },
  55895. egg: {
  55896. height: math.unit(10, "cm"),
  55897. name: "Egg",
  55898. image: {
  55899. source: "./media/characters/eri/egg.svg"
  55900. },
  55901. form: "egg",
  55902. default: true
  55903. },
  55904. },
  55905. [
  55906. {
  55907. name: "Normal",
  55908. height: math.unit(120, "cm"),
  55909. default: true,
  55910. form: "moth"
  55911. },
  55912. {
  55913. name: "Normal",
  55914. height: math.unit(10, "cm"),
  55915. default: true,
  55916. form: "egg"
  55917. },
  55918. ],
  55919. {
  55920. "moth": {
  55921. name: "Moth",
  55922. default: true
  55923. },
  55924. "egg": {
  55925. name: "Egg",
  55926. },
  55927. }
  55928. ))
  55929. characterMakers.push(() => makeCharacter(
  55930. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55931. {
  55932. front: {
  55933. height: math.unit(200, "feet"),
  55934. name: "Front",
  55935. image: {
  55936. source: "./media/characters/bishop-dowser/front.svg",
  55937. extra: 933/868,
  55938. bottom: 106/1039
  55939. }
  55940. },
  55941. },
  55942. [
  55943. {
  55944. name: "Giant",
  55945. height: math.unit(200, "feet"),
  55946. default: true
  55947. },
  55948. ]
  55949. ))
  55950. characterMakers.push(() => makeCharacter(
  55951. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55952. {
  55953. front: {
  55954. height: math.unit(2, "meters"),
  55955. preyCapacity: math.unit(3, "people"),
  55956. name: "Front",
  55957. image: {
  55958. source: "./media/characters/fryra/front.svg",
  55959. extra: 1025/948,
  55960. bottom: 30/1055
  55961. },
  55962. extraAttributes: {
  55963. "breastVolume": {
  55964. name: "Breast Volume",
  55965. power: 3,
  55966. type: "volume",
  55967. base: math.unit(8, "liters")
  55968. },
  55969. }
  55970. },
  55971. back: {
  55972. height: math.unit(2, "meters"),
  55973. preyCapacity: math.unit(3, "people"),
  55974. name: "Back",
  55975. image: {
  55976. source: "./media/characters/fryra/back.svg",
  55977. extra: 993/938,
  55978. bottom: 38/1031
  55979. },
  55980. extraAttributes: {
  55981. "breastVolume": {
  55982. name: "Breast Volume",
  55983. power: 3,
  55984. type: "volume",
  55985. base: math.unit(8, "liters")
  55986. },
  55987. }
  55988. },
  55989. head: {
  55990. height: math.unit(1.33, "feet"),
  55991. name: "Head",
  55992. image: {
  55993. source: "./media/characters/fryra/head.svg"
  55994. }
  55995. },
  55996. maw: {
  55997. height: math.unit(0.56, "feet"),
  55998. name: "Maw",
  55999. image: {
  56000. source: "./media/characters/fryra/maw.svg"
  56001. }
  56002. },
  56003. },
  56004. [
  56005. {
  56006. name: "Micro",
  56007. height: math.unit(5, "cm")
  56008. },
  56009. {
  56010. name: "Normal",
  56011. height: math.unit(2, "meters"),
  56012. default: true
  56013. },
  56014. {
  56015. name: "Small Macro",
  56016. height: math.unit(8, "meters")
  56017. },
  56018. {
  56019. name: "Macro",
  56020. height: math.unit(50, "meters")
  56021. },
  56022. {
  56023. name: "Megamacro",
  56024. height: math.unit(1, "km")
  56025. },
  56026. {
  56027. name: "Planetary",
  56028. height: math.unit(300000, "km")
  56029. },
  56030. {
  56031. name: "Universal",
  56032. height: math.unit(250, "lightyears")
  56033. },
  56034. {
  56035. name: "Fabric of Reality",
  56036. height: math.unit(1000, "multiverses")
  56037. },
  56038. ]
  56039. ))
  56040. characterMakers.push(() => makeCharacter(
  56041. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  56042. {
  56043. frontDressed: {
  56044. height: math.unit(6 + 2/12, "feet"),
  56045. name: "Front (Dressed)",
  56046. image: {
  56047. source: "./media/characters/fiera/front-dressed.svg",
  56048. extra: 1883/1793,
  56049. bottom: 70/1953
  56050. }
  56051. },
  56052. backDressed: {
  56053. height: math.unit(6 + 2/12, "feet"),
  56054. name: "Back (Dressed)",
  56055. image: {
  56056. source: "./media/characters/fiera/back-dressed.svg",
  56057. extra: 1847/1780,
  56058. bottom: 70/1917
  56059. }
  56060. },
  56061. frontNude: {
  56062. height: math.unit(6 + 2/12, "feet"),
  56063. name: "Front (Nude)",
  56064. image: {
  56065. source: "./media/characters/fiera/front-nude.svg",
  56066. extra: 1875/1785,
  56067. bottom: 66/1941
  56068. }
  56069. },
  56070. backNude: {
  56071. height: math.unit(6 + 2/12, "feet"),
  56072. name: "Back (Nude)",
  56073. image: {
  56074. source: "./media/characters/fiera/back-nude.svg",
  56075. extra: 1855/1788,
  56076. bottom: 44/1899
  56077. }
  56078. },
  56079. maw: {
  56080. height: math.unit(1.3, "feet"),
  56081. name: "Maw",
  56082. image: {
  56083. source: "./media/characters/fiera/maw.svg"
  56084. }
  56085. },
  56086. paw: {
  56087. height: math.unit(1, "feet"),
  56088. name: "Paw",
  56089. image: {
  56090. source: "./media/characters/fiera/paw.svg"
  56091. }
  56092. },
  56093. shoe: {
  56094. height: math.unit(1.05, "feet"),
  56095. name: "Shoe",
  56096. image: {
  56097. source: "./media/characters/fiera/shoe.svg"
  56098. }
  56099. },
  56100. },
  56101. [
  56102. {
  56103. name: "Normal",
  56104. height: math.unit(6 + 2/12, "feet"),
  56105. default: true
  56106. },
  56107. {
  56108. name: "Size Difference",
  56109. height: math.unit(13, "feet")
  56110. },
  56111. {
  56112. name: "Macro",
  56113. height: math.unit(60, "feet")
  56114. },
  56115. {
  56116. name: "Mega Macro",
  56117. height: math.unit(200, "feet")
  56118. },
  56119. ]
  56120. ))
  56121. characterMakers.push(() => makeCharacter(
  56122. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  56123. {
  56124. back: {
  56125. height: math.unit(6, "feet"),
  56126. name: "Back",
  56127. image: {
  56128. source: "./media/characters/flare/back.svg",
  56129. extra: 1883/1765,
  56130. bottom: 32/1915
  56131. }
  56132. },
  56133. },
  56134. [
  56135. {
  56136. name: "Normal",
  56137. height: math.unit(6 + 2/12, "feet"),
  56138. default: true
  56139. },
  56140. {
  56141. name: "Size Difference",
  56142. height: math.unit(13, "feet")
  56143. },
  56144. {
  56145. name: "Macro",
  56146. height: math.unit(60, "feet")
  56147. },
  56148. {
  56149. name: "Macro 2",
  56150. height: math.unit(100, "feet")
  56151. },
  56152. {
  56153. name: "Mega Macro",
  56154. height: math.unit(200, "feet")
  56155. },
  56156. ]
  56157. ))
  56158. characterMakers.push(() => makeCharacter(
  56159. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  56160. {
  56161. front: {
  56162. height: math.unit(2.2, "m"),
  56163. weight: math.unit(300, "kg"),
  56164. name: "Front",
  56165. image: {
  56166. source: "./media/characters/hanna/front.svg",
  56167. extra: 1696/1502,
  56168. bottom: 206/1902
  56169. }
  56170. },
  56171. },
  56172. [
  56173. {
  56174. name: "Humanoid",
  56175. height: math.unit(2.2, "meters")
  56176. },
  56177. {
  56178. name: "Normal",
  56179. height: math.unit(4.8, "meters"),
  56180. default: true
  56181. },
  56182. ]
  56183. ))
  56184. characterMakers.push(() => makeCharacter(
  56185. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  56186. {
  56187. front: {
  56188. height: math.unit(2.8, "meters"),
  56189. name: "Front",
  56190. image: {
  56191. source: "./media/characters/argo/front.svg",
  56192. extra: 731/518,
  56193. bottom: 84/815
  56194. }
  56195. },
  56196. },
  56197. [
  56198. {
  56199. name: "Normal",
  56200. height: math.unit(3, "meters"),
  56201. default: true
  56202. },
  56203. ]
  56204. ))
  56205. characterMakers.push(() => makeCharacter(
  56206. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56207. {
  56208. side: {
  56209. height: math.unit(3.8, "meters"),
  56210. name: "Side",
  56211. image: {
  56212. source: "./media/characters/sybil/side.svg",
  56213. extra: 382/361,
  56214. bottom: 25/407
  56215. }
  56216. },
  56217. },
  56218. [
  56219. {
  56220. name: "Normal",
  56221. height: math.unit(3.8, "meters"),
  56222. default: true
  56223. },
  56224. ]
  56225. ))
  56226. characterMakers.push(() => makeCharacter(
  56227. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56228. {
  56229. side: {
  56230. height: math.unit(6, "meters"),
  56231. name: "Side",
  56232. image: {
  56233. source: "./media/characters/plum/side.svg",
  56234. extra: 858/755,
  56235. bottom: 45/903
  56236. },
  56237. form: "taur",
  56238. default: true
  56239. },
  56240. back: {
  56241. height: math.unit(6.3, "meters"),
  56242. name: "Back",
  56243. image: {
  56244. source: "./media/characters/plum/back.svg",
  56245. extra: 887/813,
  56246. bottom: 32/919
  56247. },
  56248. form: "taur",
  56249. },
  56250. feral: {
  56251. height: math.unit(5.5, "meter"),
  56252. name: "Front",
  56253. image: {
  56254. source: "./media/characters/plum/feral.svg",
  56255. extra: 568/403,
  56256. bottom: 51/619
  56257. },
  56258. form: "feral",
  56259. default: true
  56260. },
  56261. head: {
  56262. height: math.unit(1.46, "meter"),
  56263. name: "Head",
  56264. image: {
  56265. source: "./media/characters/plum/head.svg"
  56266. },
  56267. form: "taur"
  56268. },
  56269. tailTop: {
  56270. height: math.unit(5.6, "meter"),
  56271. name: "Tail (Top)",
  56272. image: {
  56273. source: "./media/characters/plum/tail-top.svg"
  56274. },
  56275. form: "taur",
  56276. },
  56277. tailBottom: {
  56278. height: math.unit(5.6, "meter"),
  56279. name: "Tail (Bottom)",
  56280. image: {
  56281. source: "./media/characters/plum/tail-bottom.svg"
  56282. },
  56283. form: "taur",
  56284. },
  56285. feralHead: {
  56286. height: math.unit(2.56549521, "meter"),
  56287. name: "Head",
  56288. image: {
  56289. source: "./media/characters/plum/head.svg"
  56290. },
  56291. form: "feral"
  56292. },
  56293. feralTailTop: {
  56294. height: math.unit(5.44728435, "meter"),
  56295. name: "Tail (Top)",
  56296. image: {
  56297. source: "./media/characters/plum/tail-top.svg"
  56298. },
  56299. form: "feral",
  56300. },
  56301. feralTailBottom: {
  56302. height: math.unit(5.44728435, "meter"),
  56303. name: "Tail (Bottom)",
  56304. image: {
  56305. source: "./media/characters/plum/tail-bottom.svg"
  56306. },
  56307. form: "feral",
  56308. },
  56309. },
  56310. [
  56311. {
  56312. name: "Normal",
  56313. height: math.unit(6, "meters"),
  56314. default: true,
  56315. form: "taur"
  56316. },
  56317. {
  56318. name: "Normal",
  56319. height: math.unit(5.5, "meters"),
  56320. default: true,
  56321. form: "feral"
  56322. },
  56323. ],
  56324. {
  56325. "taur": {
  56326. name: "Taur",
  56327. default: true
  56328. },
  56329. "feral": {
  56330. name: "Feral",
  56331. },
  56332. }
  56333. ))
  56334. characterMakers.push(() => makeCharacter(
  56335. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56336. {
  56337. front: {
  56338. height: math.unit(6, "feet"),
  56339. weight: math.unit(115, "lb"),
  56340. name: "Front",
  56341. image: {
  56342. source: "./media/characters/celeste-kitsune/front.svg",
  56343. extra: 393/366,
  56344. bottom: 7/400
  56345. }
  56346. },
  56347. side: {
  56348. height: math.unit(6, "feet"),
  56349. weight: math.unit(115, "lb"),
  56350. name: "Side",
  56351. image: {
  56352. source: "./media/characters/celeste-kitsune/side.svg",
  56353. extra: 818/765,
  56354. bottom: 40/858
  56355. }
  56356. },
  56357. },
  56358. [
  56359. {
  56360. name: "Megamacro",
  56361. height: math.unit(1500, "miles"),
  56362. default: true
  56363. },
  56364. ]
  56365. ))
  56366. characterMakers.push(() => makeCharacter(
  56367. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56368. {
  56369. front: {
  56370. height: math.unit(8, "meters"),
  56371. name: "Front",
  56372. image: {
  56373. source: "./media/characters/io/front.svg",
  56374. extra: 865/722,
  56375. bottom: 58/923
  56376. }
  56377. },
  56378. back: {
  56379. height: math.unit(8, "meters"),
  56380. name: "Back",
  56381. image: {
  56382. source: "./media/characters/io/back.svg",
  56383. extra: 920/776,
  56384. bottom: 42/962
  56385. }
  56386. },
  56387. head: {
  56388. height: math.unit(5.09, "meters"),
  56389. name: "Head",
  56390. image: {
  56391. source: "./media/characters/io/head.svg"
  56392. }
  56393. },
  56394. hand: {
  56395. height: math.unit(1.6, "meters"),
  56396. name: "Hand",
  56397. image: {
  56398. source: "./media/characters/io/hand.svg"
  56399. }
  56400. },
  56401. foot: {
  56402. height: math.unit(2.4, "meters"),
  56403. name: "Foot",
  56404. image: {
  56405. source: "./media/characters/io/foot.svg"
  56406. }
  56407. },
  56408. },
  56409. [
  56410. {
  56411. name: "Normal",
  56412. height: math.unit(8, "meters"),
  56413. default: true
  56414. },
  56415. ]
  56416. ))
  56417. characterMakers.push(() => makeCharacter(
  56418. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56419. {
  56420. side: {
  56421. height: math.unit(6 + 3/12, "feet"),
  56422. weight: math.unit(225, "lb"),
  56423. name: "Side",
  56424. image: {
  56425. source: "./media/characters/silas/side.svg",
  56426. extra: 703/653,
  56427. bottom: 23/726
  56428. },
  56429. extraAttributes: {
  56430. "pawLength": {
  56431. name: "Paw Length",
  56432. power: 1,
  56433. type: "length",
  56434. base: math.unit(12, "inches")
  56435. },
  56436. "pawWidth": {
  56437. name: "Paw Width",
  56438. power: 1,
  56439. type: "length",
  56440. base: math.unit(4.5, "inches")
  56441. },
  56442. "pawArea": {
  56443. name: "Paw Area",
  56444. power: 2,
  56445. type: "area",
  56446. base: math.unit(12 * 4.5, "inches^2")
  56447. },
  56448. }
  56449. },
  56450. },
  56451. [
  56452. {
  56453. name: "Normal",
  56454. height: math.unit(6 + 3/12, "feet"),
  56455. default: true
  56456. },
  56457. ]
  56458. ))
  56459. characterMakers.push(() => makeCharacter(
  56460. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56461. {
  56462. back: {
  56463. height: math.unit(1.6, "meters"),
  56464. weight: math.unit(150, "lb"),
  56465. name: "Back",
  56466. image: {
  56467. source: "./media/characters/zari/back.svg",
  56468. extra: 424/411,
  56469. bottom: 32/456
  56470. },
  56471. extraAttributes: {
  56472. "bladderCapacity": {
  56473. name: "Bladder Size",
  56474. power: 3,
  56475. type: "volume",
  56476. base: math.unit(500, "mL")
  56477. },
  56478. "bladderFlow": {
  56479. name: "Flow Rate",
  56480. power: 3,
  56481. type: "volume",
  56482. base: math.unit(25, "mL")
  56483. },
  56484. }
  56485. },
  56486. },
  56487. [
  56488. {
  56489. name: "Normal",
  56490. height: math.unit(1.6, "meters"),
  56491. default: true
  56492. },
  56493. ]
  56494. ))
  56495. characterMakers.push(() => makeCharacter(
  56496. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56497. {
  56498. front: {
  56499. height: math.unit(25, "feet"),
  56500. weight: math.unit(5, "tons"),
  56501. name: "Front",
  56502. image: {
  56503. source: "./media/characters/charlie-human/front.svg",
  56504. extra: 1870/1740,
  56505. bottom: 102/1972
  56506. },
  56507. extraAttributes: {
  56508. "dickLength": {
  56509. name: "Dick Length",
  56510. power: 1,
  56511. type: "length",
  56512. base: math.unit(9, "feet")
  56513. },
  56514. }
  56515. },
  56516. back: {
  56517. height: math.unit(25, "feet"),
  56518. weight: math.unit(5, "tons"),
  56519. name: "Back",
  56520. image: {
  56521. source: "./media/characters/charlie-human/back.svg",
  56522. extra: 1858/1733,
  56523. bottom: 105/1963
  56524. },
  56525. extraAttributes: {
  56526. "dickLength": {
  56527. name: "Dick Length",
  56528. power: 1,
  56529. type: "length",
  56530. base: math.unit(9, "feet")
  56531. },
  56532. }
  56533. },
  56534. },
  56535. [
  56536. {
  56537. name: "\"Normal\"",
  56538. height: math.unit(6 + 4/12, "feet")
  56539. },
  56540. {
  56541. name: "Big",
  56542. height: math.unit(25, "feet"),
  56543. default: true
  56544. },
  56545. ]
  56546. ))
  56547. characterMakers.push(() => makeCharacter(
  56548. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56549. {
  56550. front: {
  56551. height: math.unit(6 + 4/12, "feet"),
  56552. weight: math.unit(320, "lb"),
  56553. name: "Front",
  56554. image: {
  56555. source: "./media/characters/ookitsu/front.svg",
  56556. extra: 1160/976,
  56557. bottom: 38/1198
  56558. }
  56559. },
  56560. frontNsfw: {
  56561. height: math.unit(6 + 4/12, "feet"),
  56562. weight: math.unit(320, "lb"),
  56563. name: "Front (NSFW)",
  56564. image: {
  56565. source: "./media/characters/ookitsu/front-nsfw.svg",
  56566. extra: 1160/976,
  56567. bottom: 38/1198
  56568. }
  56569. },
  56570. back: {
  56571. height: math.unit(6 + 4/12, "feet"),
  56572. weight: math.unit(320, "lb"),
  56573. name: "Back",
  56574. image: {
  56575. source: "./media/characters/ookitsu/back.svg",
  56576. extra: 1030/975,
  56577. bottom: 70/1100
  56578. }
  56579. },
  56580. head: {
  56581. height: math.unit(1.79, "feet"),
  56582. name: "Head",
  56583. image: {
  56584. source: "./media/characters/ookitsu/head.svg"
  56585. }
  56586. },
  56587. hand: {
  56588. height: math.unit(0.92, "feet"),
  56589. name: "Hand",
  56590. image: {
  56591. source: "./media/characters/ookitsu/hand.svg"
  56592. }
  56593. },
  56594. tails: {
  56595. height: math.unit(3.3, "feet"),
  56596. name: "Tails",
  56597. image: {
  56598. source: "./media/characters/ookitsu/tails.svg"
  56599. }
  56600. },
  56601. dick: {
  56602. height: math.unit(1.10833, "feet"),
  56603. name: "Dick",
  56604. image: {
  56605. source: "./media/characters/ookitsu/dick.svg"
  56606. }
  56607. },
  56608. },
  56609. [
  56610. {
  56611. name: "Normal",
  56612. height: math.unit(6 + 4/12, "feet"),
  56613. default: true
  56614. },
  56615. {
  56616. name: "Macro",
  56617. height: math.unit(30, "feet")
  56618. },
  56619. ]
  56620. ))
  56621. characterMakers.push(() => makeCharacter(
  56622. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56623. {
  56624. anthroFront: {
  56625. height: math.unit(6, "feet"),
  56626. weight: math.unit(250, "lb"),
  56627. name: "Front",
  56628. image: {
  56629. source: "./media/characters/jhusky/anthro-front.svg",
  56630. extra: 474/439,
  56631. bottom: 7/481
  56632. },
  56633. form: "anthro",
  56634. default: true
  56635. },
  56636. taurSideSfw: {
  56637. height: math.unit(6 + 4/12, "feet"),
  56638. weight: math.unit(500, "lb"),
  56639. name: "Side (SFW)",
  56640. image: {
  56641. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56642. extra: 1741/1629,
  56643. bottom: 196/1937
  56644. },
  56645. form: "taur",
  56646. default: true
  56647. },
  56648. taurSideNsfw: {
  56649. height: math.unit(6 + 4/12, "feet"),
  56650. weight: math.unit(500, "lb"),
  56651. name: "Taur (NSFW)",
  56652. image: {
  56653. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56654. extra: 1741/1629,
  56655. bottom: 196/1937
  56656. },
  56657. form: "taur",
  56658. },
  56659. },
  56660. [
  56661. {
  56662. name: "Huge",
  56663. height: math.unit(500, "feet"),
  56664. form: "anthro"
  56665. },
  56666. {
  56667. name: "Macro",
  56668. height: math.unit(1000, "feet"),
  56669. default: true,
  56670. form: "anthro"
  56671. },
  56672. {
  56673. name: "Megamacro",
  56674. height: math.unit(10000, "feet"),
  56675. form: "anthro"
  56676. },
  56677. {
  56678. name: "Huge",
  56679. height: math.unit(528, "feet"),
  56680. form: "taur"
  56681. },
  56682. {
  56683. name: "Macro",
  56684. height: math.unit(1056, "feet"),
  56685. default: true,
  56686. form: "taur"
  56687. },
  56688. {
  56689. name: "Megamacro",
  56690. height: math.unit(10556, "feet"),
  56691. form: "taur"
  56692. },
  56693. ],
  56694. {
  56695. "anthro": {
  56696. name: "Anthro",
  56697. default: true
  56698. },
  56699. "taur": {
  56700. name: "Taur",
  56701. },
  56702. }
  56703. ))
  56704. characterMakers.push(() => makeCharacter(
  56705. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56706. {
  56707. front: {
  56708. height: math.unit(8, "feet"),
  56709. weight: math.unit(500, "lb"),
  56710. name: "Front",
  56711. image: {
  56712. source: "./media/characters/armail/front.svg",
  56713. extra: 1753/1669,
  56714. bottom: 155/1908
  56715. }
  56716. },
  56717. back: {
  56718. height: math.unit(8, "feet"),
  56719. weight: math.unit(500, "lb"),
  56720. name: "Back",
  56721. image: {
  56722. source: "./media/characters/armail/back.svg",
  56723. extra: 1872/1803,
  56724. bottom: 63/1935
  56725. }
  56726. },
  56727. },
  56728. [
  56729. {
  56730. name: "Micro",
  56731. height: math.unit(0.25, "feet")
  56732. },
  56733. {
  56734. name: "Normal",
  56735. height: math.unit(8, "feet"),
  56736. default: true
  56737. },
  56738. {
  56739. name: "Mini-macro",
  56740. height: math.unit(30, "feet")
  56741. },
  56742. {
  56743. name: "Macro",
  56744. height: math.unit(400, "feet")
  56745. },
  56746. {
  56747. name: "Mega-macro",
  56748. height: math.unit(6000, "feet")
  56749. },
  56750. ]
  56751. ))
  56752. characterMakers.push(() => makeCharacter(
  56753. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56754. {
  56755. front: {
  56756. height: math.unit(6 + 7/12, "feet"),
  56757. weight: math.unit(210, "lb"),
  56758. name: "Front",
  56759. image: {
  56760. source: "./media/characters/wilfred-t-buxton/front.svg",
  56761. extra: 1068/882,
  56762. bottom: 28/1096
  56763. }
  56764. },
  56765. },
  56766. [
  56767. {
  56768. name: "Normal",
  56769. height: math.unit(6 + 7/12, "feet"),
  56770. default: true
  56771. },
  56772. ]
  56773. ))
  56774. characterMakers.push(() => makeCharacter(
  56775. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56776. {
  56777. front: {
  56778. height: math.unit(5 + 2/12, "feet"),
  56779. weight: math.unit(120, "lb"),
  56780. name: "Front",
  56781. image: {
  56782. source: "./media/characters/leighton-marrow/front.svg",
  56783. extra: 441/409,
  56784. bottom: 37/478
  56785. }
  56786. },
  56787. },
  56788. [
  56789. {
  56790. name: "Normal",
  56791. height: math.unit(5 + 2/12, "feet"),
  56792. default: true
  56793. },
  56794. ]
  56795. ))
  56796. characterMakers.push(() => makeCharacter(
  56797. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56798. {
  56799. front: {
  56800. height: math.unit(4, "meters"),
  56801. weight: math.unit(1200, "kg"),
  56802. name: "Front",
  56803. image: {
  56804. source: "./media/characters/licos/front.svg",
  56805. extra: 1727/1604,
  56806. bottom: 101/1828
  56807. },
  56808. form: "anthro",
  56809. default: true
  56810. },
  56811. taur_side: {
  56812. height: math.unit(20, "meters"),
  56813. weight: math.unit(1100000, "kg"),
  56814. name: "Side",
  56815. image: {
  56816. source: "./media/characters/licos/taur.svg",
  56817. extra: 1158/1091,
  56818. bottom: 80/1238
  56819. },
  56820. form: "taur",
  56821. default: true
  56822. },
  56823. },
  56824. [
  56825. {
  56826. name: "Normal",
  56827. height: math.unit(4, "meters"),
  56828. default: true,
  56829. form: "anthro"
  56830. },
  56831. {
  56832. name: "Normal",
  56833. height: math.unit(20, "meters"),
  56834. default: true,
  56835. form: "taur"
  56836. },
  56837. ],
  56838. {
  56839. "anthro": {
  56840. name: "Anthro",
  56841. default: true
  56842. },
  56843. "taur": {
  56844. name: "Taur",
  56845. },
  56846. }
  56847. ))
  56848. characterMakers.push(() => makeCharacter(
  56849. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56850. {
  56851. front: {
  56852. height: math.unit(10 + 3/12, "feet"),
  56853. name: "Front",
  56854. image: {
  56855. source: "./media/characters/theo-monkey/front.svg",
  56856. extra: 1735/1658,
  56857. bottom: 73/1808
  56858. }
  56859. },
  56860. back: {
  56861. height: math.unit(10 + 3/12, "feet"),
  56862. name: "Back",
  56863. image: {
  56864. source: "./media/characters/theo-monkey/back.svg",
  56865. extra: 1742/1664,
  56866. bottom: 33/1775
  56867. }
  56868. },
  56869. head: {
  56870. height: math.unit(2.29, "feet"),
  56871. name: "Head",
  56872. image: {
  56873. source: "./media/characters/theo-monkey/head.svg"
  56874. }
  56875. },
  56876. handPalm: {
  56877. height: math.unit(1.73, "feet"),
  56878. name: "Hand (Palm)",
  56879. image: {
  56880. source: "./media/characters/theo-monkey/hand-palm.svg"
  56881. }
  56882. },
  56883. handBack: {
  56884. height: math.unit(1.63, "feet"),
  56885. name: "Hand (Back)",
  56886. image: {
  56887. source: "./media/characters/theo-monkey/hand-back.svg"
  56888. }
  56889. },
  56890. footSole: {
  56891. height: math.unit(2.15, "feet"),
  56892. name: "Foot (Sole)",
  56893. image: {
  56894. source: "./media/characters/theo-monkey/foot-sole.svg"
  56895. }
  56896. },
  56897. footSide: {
  56898. height: math.unit(1.6, "feet"),
  56899. name: "Foot (Side)",
  56900. image: {
  56901. source: "./media/characters/theo-monkey/foot-side.svg"
  56902. }
  56903. },
  56904. },
  56905. [
  56906. {
  56907. name: "Normal",
  56908. height: math.unit(10 + 3/12, "feet"),
  56909. default: true
  56910. },
  56911. ]
  56912. ))
  56913. characterMakers.push(() => makeCharacter(
  56914. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56915. {
  56916. front: {
  56917. height: math.unit(11, "feet"),
  56918. weight: math.unit(3000, "lb"),
  56919. preyCapacity: math.unit(10, "people"),
  56920. name: "Front",
  56921. image: {
  56922. source: "./media/characters/brook/front.svg",
  56923. extra: 909/835,
  56924. bottom: 108/1017
  56925. }
  56926. },
  56927. back: {
  56928. height: math.unit(11, "feet"),
  56929. weight: math.unit(3000, "lb"),
  56930. preyCapacity: math.unit(10, "people"),
  56931. name: "Back",
  56932. image: {
  56933. source: "./media/characters/brook/back.svg",
  56934. extra: 976/916,
  56935. bottom: 34/1010
  56936. }
  56937. },
  56938. backAlt: {
  56939. height: math.unit(11, "feet"),
  56940. weight: math.unit(3000, "lb"),
  56941. preyCapacity: math.unit(10, "people"),
  56942. name: "Back (Alt)",
  56943. image: {
  56944. source: "./media/characters/brook/back-alt.svg",
  56945. extra: 1283/1213,
  56946. bottom: 35/1318
  56947. }
  56948. },
  56949. bust: {
  56950. height: math.unit(9.0859030837, "feet"),
  56951. weight: math.unit(3000, "lb"),
  56952. preyCapacity: math.unit(10, "people"),
  56953. name: "Bust",
  56954. image: {
  56955. source: "./media/characters/brook/bust.svg",
  56956. extra: 2043/1923,
  56957. bottom: 0/2043
  56958. }
  56959. },
  56960. },
  56961. [
  56962. {
  56963. name: "Small",
  56964. height: math.unit(11, "feet"),
  56965. default: true
  56966. },
  56967. {
  56968. name: "Towering",
  56969. height: math.unit(5, "km")
  56970. },
  56971. {
  56972. name: "Enormous",
  56973. height: math.unit(25, "earths")
  56974. },
  56975. ]
  56976. ))
  56977. characterMakers.push(() => makeCharacter(
  56978. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56979. {
  56980. front: {
  56981. height: math.unit(4, "feet"),
  56982. weight: math.unit(150, "lb"),
  56983. name: "Front",
  56984. image: {
  56985. source: "./media/characters/squishi/front.svg",
  56986. extra: 1428/1271,
  56987. bottom: 30/1458
  56988. },
  56989. extraAttributes: {
  56990. "pawSize": {
  56991. name: "Paw Size",
  56992. power: 1,
  56993. type: "length",
  56994. base: math.unit(14, "ShoeSizeMensUS"),
  56995. defaultUnit: "ShoeSizeMensUS"
  56996. },
  56997. }
  56998. },
  56999. side: {
  57000. height: math.unit(4, "feet"),
  57001. weight: math.unit(150, "lb"),
  57002. name: "Side",
  57003. image: {
  57004. source: "./media/characters/squishi/side.svg",
  57005. extra: 1428/1271,
  57006. bottom: 30/1458
  57007. },
  57008. extraAttributes: {
  57009. "pawSize": {
  57010. name: "Paw Size",
  57011. power: 1,
  57012. type: "length",
  57013. base: math.unit(14, "ShoeSizeMensUS"),
  57014. defaultUnit: "ShoeSizeMensUS"
  57015. },
  57016. }
  57017. },
  57018. back: {
  57019. height: math.unit(4, "feet"),
  57020. weight: math.unit(150, "lb"),
  57021. name: "Back",
  57022. image: {
  57023. source: "./media/characters/squishi/back.svg",
  57024. extra: 1428/1271,
  57025. bottom: 30/1458
  57026. },
  57027. extraAttributes: {
  57028. "pawSize": {
  57029. name: "Paw Size",
  57030. power: 1,
  57031. type: "length",
  57032. base: math.unit(14, "ShoeSizeMensUS"),
  57033. defaultUnit: "ShoeSizeMensUS"
  57034. },
  57035. }
  57036. },
  57037. },
  57038. [
  57039. {
  57040. name: "Normal",
  57041. height: math.unit(4, "feet"),
  57042. default: true
  57043. },
  57044. ]
  57045. ))
  57046. characterMakers.push(() => makeCharacter(
  57047. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  57048. {
  57049. front: {
  57050. height: math.unit(7 + 8/12, "feet"),
  57051. weight: math.unit(333, "lb"),
  57052. name: "Front",
  57053. image: {
  57054. source: "./media/characters/vincent-vasroc/front.svg",
  57055. extra: 1962/1860,
  57056. bottom: 41/2003
  57057. }
  57058. },
  57059. back: {
  57060. height: math.unit(7 + 8/12, "feet"),
  57061. weight: math.unit(333, "lb"),
  57062. name: "Back",
  57063. image: {
  57064. source: "./media/characters/vincent-vasroc/back.svg",
  57065. extra: 1952/1815,
  57066. bottom: 33/1985
  57067. }
  57068. },
  57069. paw: {
  57070. height: math.unit(1.24, "feet"),
  57071. name: "Paw",
  57072. image: {
  57073. source: "./media/characters/vincent-vasroc/paw.svg"
  57074. }
  57075. },
  57076. ear: {
  57077. height: math.unit(0.75, "feet"),
  57078. name: "Ear",
  57079. image: {
  57080. source: "./media/characters/vincent-vasroc/ear.svg"
  57081. }
  57082. },
  57083. },
  57084. [
  57085. {
  57086. name: "Nano",
  57087. height: math.unit(92, "micrometers")
  57088. },
  57089. {
  57090. name: "Normal",
  57091. height: math.unit(7 + 8/12, "feet"),
  57092. default: true
  57093. },
  57094. ]
  57095. ))
  57096. characterMakers.push(() => makeCharacter(
  57097. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  57098. {
  57099. frontNsfw: {
  57100. height: math.unit(40, "feet"),
  57101. weight: math.unit(58, "tons"),
  57102. name: "Front (NSFW)",
  57103. image: {
  57104. source: "./media/characters/ru-kahn/front-nsfw.svg",
  57105. extra: 1265/965,
  57106. bottom: 155/1420
  57107. }
  57108. },
  57109. frontSfw: {
  57110. height: math.unit(40, "feet"),
  57111. weight: math.unit(58, "tons"),
  57112. name: "Front (SFW)",
  57113. image: {
  57114. source: "./media/characters/ru-kahn/front-sfw.svg",
  57115. extra: 1265/965,
  57116. bottom: 80/1345
  57117. }
  57118. },
  57119. },
  57120. [
  57121. {
  57122. name: "Small",
  57123. height: math.unit(4, "feet")
  57124. },
  57125. {
  57126. name: "Normal",
  57127. height: math.unit(40, "feet"),
  57128. default: true
  57129. },
  57130. {
  57131. name: "Macro",
  57132. height: math.unit(400, "feet")
  57133. },
  57134. ]
  57135. ))
  57136. characterMakers.push(() => makeCharacter(
  57137. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  57138. {
  57139. frontNude: {
  57140. height: math.unit(6 + 5/12, "feet"),
  57141. name: "Front (Nude)",
  57142. image: {
  57143. source: "./media/characters/sylvie-laforge/front-nude.svg",
  57144. extra: 1369/1366,
  57145. bottom: 68/1437
  57146. }
  57147. },
  57148. frontDressed: {
  57149. height: math.unit(6 + 5/12, "feet"),
  57150. name: "Front (Dressed)",
  57151. image: {
  57152. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  57153. extra: 1369/1366,
  57154. bottom: 68/1437
  57155. }
  57156. },
  57157. },
  57158. [
  57159. {
  57160. name: "Normal",
  57161. height: math.unit(6 + 5/12, "feet"),
  57162. default: true
  57163. },
  57164. {
  57165. name: "Maximum",
  57166. height: math.unit(1930, "feet")
  57167. },
  57168. ]
  57169. ))
  57170. characterMakers.push(() => makeCharacter(
  57171. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  57172. {
  57173. front: {
  57174. height: math.unit(5 + 6/12, "feet"),
  57175. name: "Front",
  57176. image: {
  57177. source: "./media/characters/kaja/front.svg",
  57178. extra: 1874/1514,
  57179. bottom: 117/1991
  57180. }
  57181. },
  57182. },
  57183. [
  57184. {
  57185. name: "Normal",
  57186. height: math.unit(5 + 6/12, "feet"),
  57187. default: true
  57188. },
  57189. ]
  57190. ))
  57191. characterMakers.push(() => makeCharacter(
  57192. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  57193. {
  57194. front: {
  57195. height: math.unit(5 + 9/12, "feet"),
  57196. weight: math.unit(200, "lb"),
  57197. name: "Front",
  57198. image: {
  57199. source: "./media/characters/mark-smith/front.svg",
  57200. extra: 1004/943,
  57201. bottom: 58/1062
  57202. }
  57203. },
  57204. back: {
  57205. height: math.unit(5 + 9/12, "feet"),
  57206. weight: math.unit(200, "lb"),
  57207. name: "Back",
  57208. image: {
  57209. source: "./media/characters/mark-smith/back.svg",
  57210. extra: 1023/953,
  57211. bottom: 24/1047
  57212. }
  57213. },
  57214. head: {
  57215. height: math.unit(1.82, "feet"),
  57216. name: "Head",
  57217. image: {
  57218. source: "./media/characters/mark-smith/head.svg"
  57219. }
  57220. },
  57221. hand: {
  57222. height: math.unit(1.4, "feet"),
  57223. name: "Hand",
  57224. image: {
  57225. source: "./media/characters/mark-smith/hand.svg"
  57226. }
  57227. },
  57228. paw: {
  57229. height: math.unit(1.69, "feet"),
  57230. name: "Paw",
  57231. image: {
  57232. source: "./media/characters/mark-smith/paw.svg"
  57233. }
  57234. },
  57235. },
  57236. [
  57237. {
  57238. name: "Micro",
  57239. height: math.unit(0.25, "inches")
  57240. },
  57241. {
  57242. name: "Normal",
  57243. height: math.unit(5 + 9/12, "feet"),
  57244. default: true
  57245. },
  57246. {
  57247. name: "Macro",
  57248. height: math.unit(500, "feet")
  57249. },
  57250. ]
  57251. ))
  57252. characterMakers.push(() => makeCharacter(
  57253. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57254. {
  57255. frontNude: {
  57256. height: math.unit(6, "feet"),
  57257. name: "Front (Nude)",
  57258. image: {
  57259. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57260. extra: 1384/1321,
  57261. bottom: 57/1441
  57262. }
  57263. },
  57264. frontDressed: {
  57265. height: math.unit(6, "feet"),
  57266. name: "Front (Dressed)",
  57267. image: {
  57268. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57269. extra: 1384/1321,
  57270. bottom: 57/1441
  57271. }
  57272. },
  57273. },
  57274. [
  57275. {
  57276. name: "Normal",
  57277. height: math.unit(6, "feet"),
  57278. default: true
  57279. },
  57280. {
  57281. name: "Maximum",
  57282. height: math.unit(1776, "feet")
  57283. },
  57284. ]
  57285. ))
  57286. characterMakers.push(() => makeCharacter(
  57287. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57288. {
  57289. front: {
  57290. height: math.unit(2 + 4/12, "feet"),
  57291. weight: math.unit(350, "lb"),
  57292. name: "Front",
  57293. image: {
  57294. source: "./media/characters/devos/front.svg",
  57295. extra: 958/852,
  57296. bottom: 143/1101
  57297. }
  57298. },
  57299. },
  57300. [
  57301. {
  57302. name: "Base",
  57303. height: math.unit(2 + 4/12, "feet"),
  57304. default: true
  57305. },
  57306. ]
  57307. ))
  57308. characterMakers.push(() => makeCharacter(
  57309. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57310. {
  57311. front: {
  57312. height: math.unit(9 + 2/12, "feet"),
  57313. name: "Front",
  57314. image: {
  57315. source: "./media/characters/hiveheart/front.svg",
  57316. extra: 394/364,
  57317. bottom: 65/459
  57318. }
  57319. },
  57320. back: {
  57321. height: math.unit(9 + 2/12, "feet"),
  57322. name: "Back",
  57323. image: {
  57324. source: "./media/characters/hiveheart/back.svg",
  57325. extra: 374/357,
  57326. bottom: 63/437
  57327. }
  57328. },
  57329. },
  57330. [
  57331. {
  57332. name: "Base",
  57333. height: math.unit(9 + 2/12, "feet"),
  57334. default: true
  57335. },
  57336. ]
  57337. ))
  57338. characterMakers.push(() => makeCharacter(
  57339. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57340. {
  57341. front: {
  57342. height: math.unit(2.5, "inches"),
  57343. weight: math.unit(0.6, "oz"),
  57344. name: "Front",
  57345. image: {
  57346. source: "./media/characters/bryn/front.svg",
  57347. extra: 1484/1119,
  57348. bottom: 66/1550
  57349. }
  57350. },
  57351. back: {
  57352. height: math.unit(2.5, "inches"),
  57353. weight: math.unit(0.6, "oz"),
  57354. name: "Back",
  57355. image: {
  57356. source: "./media/characters/bryn/back.svg",
  57357. extra: 1472/1170,
  57358. bottom: 32/1504
  57359. }
  57360. },
  57361. wings: {
  57362. height: math.unit(2.5, "inches"),
  57363. weight: math.unit(0.6, "oz"),
  57364. name: "Wings",
  57365. image: {
  57366. source: "./media/characters/bryn/wings.svg",
  57367. extra: 567/448,
  57368. bottom: 10/577
  57369. }
  57370. },
  57371. dressed: {
  57372. height: math.unit(2.5, "inches"),
  57373. weight: math.unit(0.6, "oz"),
  57374. name: "Dressed",
  57375. image: {
  57376. source: "./media/characters/bryn/dressed.svg",
  57377. extra: 719/589,
  57378. bottom: 54/773
  57379. }
  57380. },
  57381. head: {
  57382. height: math.unit(1.75, "inches"),
  57383. name: "Head",
  57384. image: {
  57385. source: "./media/characters/bryn/head.svg"
  57386. }
  57387. },
  57388. foot: {
  57389. height: math.unit(0.4, "inches"),
  57390. name: "Foot",
  57391. image: {
  57392. source: "./media/characters/bryn/foot.svg"
  57393. }
  57394. },
  57395. },
  57396. [
  57397. {
  57398. name: "Normal",
  57399. height: math.unit(2.5, "inches"),
  57400. default: true
  57401. },
  57402. ]
  57403. ))
  57404. characterMakers.push(() => makeCharacter(
  57405. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57406. {
  57407. side: {
  57408. height: math.unit(7, "feet"),
  57409. weight: math.unit(657, "kg"),
  57410. name: "Side",
  57411. image: {
  57412. source: "./media/characters/delta/side.svg",
  57413. extra: 781/212,
  57414. bottom: 7/788
  57415. },
  57416. extraAttributes: {
  57417. "wingspan": {
  57418. name: "Wingspan",
  57419. power: 1,
  57420. type: "length",
  57421. base: math.unit(48, "feet")
  57422. },
  57423. "length": {
  57424. name: "Length",
  57425. power: 1,
  57426. type: "length",
  57427. base: math.unit(21, "feet")
  57428. },
  57429. "pawSize": {
  57430. name: "Paw Size",
  57431. power: 2,
  57432. type: "area",
  57433. base: math.unit(1.5*1.4, "feet^2")
  57434. },
  57435. }
  57436. },
  57437. },
  57438. [
  57439. {
  57440. name: "Normal",
  57441. height: math.unit(6, "feet"),
  57442. default: true
  57443. },
  57444. ]
  57445. ))
  57446. characterMakers.push(() => makeCharacter(
  57447. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57448. {
  57449. front: {
  57450. height: math.unit(6, "feet"),
  57451. name: "Front",
  57452. image: {
  57453. source: "./media/characters/pyrow/front.svg",
  57454. extra: 513/486,
  57455. bottom: 14/527
  57456. }
  57457. },
  57458. frontWing: {
  57459. height: math.unit(6, "feet"),
  57460. name: "Front (Wing)",
  57461. image: {
  57462. source: "./media/characters/pyrow/front-wing.svg",
  57463. extra: 539/383,
  57464. bottom: 20/559
  57465. }
  57466. },
  57467. back: {
  57468. height: math.unit(6, "feet"),
  57469. name: "Back",
  57470. image: {
  57471. source: "./media/characters/pyrow/back.svg",
  57472. extra: 500/473,
  57473. bottom: 9/509
  57474. }
  57475. },
  57476. },
  57477. [
  57478. {
  57479. name: "Normal",
  57480. height: math.unit(6, "feet"),
  57481. default: true
  57482. },
  57483. ]
  57484. ))
  57485. characterMakers.push(() => makeCharacter(
  57486. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57487. {
  57488. front: {
  57489. height: math.unit(5, "meters"),
  57490. weight: math.unit(3, "tonnes"),
  57491. name: "Front",
  57492. image: {
  57493. source: "./media/characters/velikan/front.svg",
  57494. extra: 867/744,
  57495. bottom: 71/938
  57496. },
  57497. extraAttributes: {
  57498. "shoeSize": {
  57499. name: "Shoe Size",
  57500. power: 1,
  57501. type: "length",
  57502. base: math.unit(135, "ShoeSizeUK"),
  57503. defaultUnit: "ShoeSizeUK"
  57504. },
  57505. }
  57506. },
  57507. },
  57508. [
  57509. {
  57510. name: "Normal",
  57511. height: math.unit(5, "meters"),
  57512. default: true
  57513. },
  57514. {
  57515. name: "Macro",
  57516. height: math.unit(1, "km")
  57517. },
  57518. {
  57519. name: "Mega Macro",
  57520. height: math.unit(100, "km")
  57521. },
  57522. {
  57523. name: "Giga Macro",
  57524. height: math.unit(2, "megameters")
  57525. },
  57526. {
  57527. name: "Planetary",
  57528. height: math.unit(22, "megameters")
  57529. },
  57530. {
  57531. name: "Solar",
  57532. height: math.unit(8, "gigameters")
  57533. },
  57534. {
  57535. name: "Cosmic",
  57536. height: math.unit(10, "zettameters")
  57537. },
  57538. {
  57539. name: "Omni",
  57540. height: math.unit(9e260, "multiverses")
  57541. },
  57542. ]
  57543. ))
  57544. characterMakers.push(() => makeCharacter(
  57545. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57546. {
  57547. front: {
  57548. height: math.unit(4 + 3/12, "feet"),
  57549. weight: math.unit(90, "lb"),
  57550. name: "Front",
  57551. image: {
  57552. source: "./media/characters/sabiki/front.svg",
  57553. extra: 1662/1423,
  57554. bottom: 65/1727
  57555. }
  57556. },
  57557. },
  57558. [
  57559. {
  57560. name: "Normal",
  57561. height: math.unit(4 + 3/12, "feet"),
  57562. default: true
  57563. },
  57564. ]
  57565. ))
  57566. characterMakers.push(() => makeCharacter(
  57567. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57568. {
  57569. frontSfw: {
  57570. height: math.unit(2, "mm"),
  57571. name: "Front (SFW)",
  57572. image: {
  57573. source: "./media/characters/carmel/front-sfw.svg",
  57574. extra: 1131/1006,
  57575. bottom: 66/1197
  57576. }
  57577. },
  57578. frontNsfw: {
  57579. height: math.unit(2, "mm"),
  57580. name: "Front (NSFW)",
  57581. image: {
  57582. source: "./media/characters/carmel/front-nsfw.svg",
  57583. extra: 1131/1006,
  57584. bottom: 66/1197
  57585. }
  57586. },
  57587. foot: {
  57588. height: math.unit(0.3, "mm"),
  57589. name: "Foot",
  57590. image: {
  57591. source: "./media/characters/carmel/foot.svg"
  57592. }
  57593. },
  57594. tongue: {
  57595. height: math.unit(0.71, "mm"),
  57596. name: "Tongue",
  57597. image: {
  57598. source: "./media/characters/carmel/tongue.svg"
  57599. }
  57600. },
  57601. dick: {
  57602. height: math.unit(0.085, "mm"),
  57603. name: "Dick",
  57604. image: {
  57605. source: "./media/characters/carmel/dick.svg"
  57606. }
  57607. },
  57608. },
  57609. [
  57610. {
  57611. name: "Micro",
  57612. height: math.unit(2, "mm"),
  57613. default: true
  57614. },
  57615. {
  57616. name: "Normal",
  57617. height: math.unit(4 + 8/12, "feet")
  57618. },
  57619. {
  57620. name: "Mega Macro",
  57621. height: math.unit(250, "feet")
  57622. },
  57623. {
  57624. name: "BIGGER",
  57625. height: math.unit(1000, "feet")
  57626. },
  57627. {
  57628. name: "BIGGEST",
  57629. height: math.unit(2, "miles")
  57630. },
  57631. ]
  57632. ))
  57633. characterMakers.push(() => makeCharacter(
  57634. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57635. {
  57636. front: {
  57637. height: math.unit(6.5, "feet"),
  57638. weight: math.unit(198, "lb"),
  57639. name: "Front",
  57640. image: {
  57641. source: "./media/characters/tamani/anthro.svg",
  57642. extra: 930/890,
  57643. bottom: 34/964
  57644. },
  57645. form: "anthro",
  57646. default: true
  57647. },
  57648. side: {
  57649. height: math.unit(6, "feet"),
  57650. weight: math.unit(198*2, "lb"),
  57651. name: "Side",
  57652. image: {
  57653. source: "./media/characters/tamani/feral.svg",
  57654. extra: 559/519,
  57655. bottom: 43/602
  57656. },
  57657. form: "feral"
  57658. },
  57659. },
  57660. [
  57661. {
  57662. name: "Normal",
  57663. height: math.unit(6.5, "feet"),
  57664. default: true,
  57665. form: "anthro"
  57666. },
  57667. {
  57668. name: "Normal",
  57669. height: math.unit(6, "feet"),
  57670. default: true,
  57671. form: "feral"
  57672. },
  57673. ],
  57674. {
  57675. "anthro": {
  57676. name: "Anthro",
  57677. default: true
  57678. },
  57679. "feral": {
  57680. name: "Feral",
  57681. },
  57682. }
  57683. ))
  57684. characterMakers.push(() => makeCharacter(
  57685. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57686. {
  57687. front: {
  57688. height: math.unit(4 + 1/12, "feet"),
  57689. weight: math.unit(114, "lb"),
  57690. name: "Front",
  57691. image: {
  57692. source: "./media/characters/dex/front.svg",
  57693. extra: 787/680,
  57694. bottom: 18/805
  57695. }
  57696. },
  57697. side: {
  57698. height: math.unit(4 + 1/12, "feet"),
  57699. weight: math.unit(114, "lb"),
  57700. name: "Side",
  57701. image: {
  57702. source: "./media/characters/dex/side.svg",
  57703. extra: 785/680,
  57704. bottom: 12/797
  57705. }
  57706. },
  57707. back: {
  57708. height: math.unit(4 + 1/12, "feet"),
  57709. weight: math.unit(114, "lb"),
  57710. name: "Back",
  57711. image: {
  57712. source: "./media/characters/dex/back.svg",
  57713. extra: 785/681,
  57714. bottom: 17/802
  57715. }
  57716. },
  57717. loungewear: {
  57718. height: math.unit(4 + 1/12, "feet"),
  57719. weight: math.unit(114, "lb"),
  57720. name: "Loungewear",
  57721. image: {
  57722. source: "./media/characters/dex/loungewear.svg",
  57723. extra: 787/680,
  57724. bottom: 18/805
  57725. }
  57726. },
  57727. workout: {
  57728. height: math.unit(4 + 1/12, "feet"),
  57729. weight: math.unit(114, "lb"),
  57730. name: "Workout",
  57731. image: {
  57732. source: "./media/characters/dex/workout.svg",
  57733. extra: 787/680,
  57734. bottom: 18/805
  57735. }
  57736. },
  57737. schoolUniform: {
  57738. height: math.unit(4 + 1/12, "feet"),
  57739. weight: math.unit(114, "lb"),
  57740. name: "School Uniform",
  57741. image: {
  57742. source: "./media/characters/dex/school-uniform.svg",
  57743. extra: 787/680,
  57744. bottom: 18/805
  57745. }
  57746. },
  57747. maw: {
  57748. height: math.unit(0.55, "feet"),
  57749. name: "Maw",
  57750. image: {
  57751. source: "./media/characters/dex/maw.svg"
  57752. }
  57753. },
  57754. paw: {
  57755. height: math.unit(0.87, "feet"),
  57756. name: "Paw",
  57757. image: {
  57758. source: "./media/characters/dex/paw.svg"
  57759. }
  57760. },
  57761. bust: {
  57762. height: math.unit(1.67, "feet"),
  57763. name: "Bust",
  57764. image: {
  57765. source: "./media/characters/dex/bust.svg"
  57766. }
  57767. },
  57768. },
  57769. [
  57770. {
  57771. name: "Normal",
  57772. height: math.unit(4 + 1/12, "feet"),
  57773. default: true
  57774. },
  57775. ]
  57776. ))
  57777. characterMakers.push(() => makeCharacter(
  57778. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57779. {
  57780. front: {
  57781. height: math.unit(4 + 3/12, "feet"),
  57782. weight: math.unit(60, "lb"),
  57783. name: "Front",
  57784. image: {
  57785. source: "./media/characters/silke/front.svg",
  57786. extra: 1334/1122,
  57787. bottom: 21/1355
  57788. }
  57789. },
  57790. back: {
  57791. height: math.unit(4 + 3/12, "feet"),
  57792. weight: math.unit(60, "lb"),
  57793. name: "Back",
  57794. image: {
  57795. source: "./media/characters/silke/back.svg",
  57796. extra: 1328/1092,
  57797. bottom: 16/1344
  57798. }
  57799. },
  57800. dressed: {
  57801. height: math.unit(4 + 3/12, "feet"),
  57802. weight: math.unit(60, "lb"),
  57803. name: "Dressed",
  57804. image: {
  57805. source: "./media/characters/silke/dressed.svg",
  57806. extra: 1334/1122,
  57807. bottom: 43/1377
  57808. }
  57809. },
  57810. },
  57811. [
  57812. {
  57813. name: "Normal",
  57814. height: math.unit(4 + 3/12, "feet"),
  57815. default: true
  57816. },
  57817. ]
  57818. ))
  57819. characterMakers.push(() => makeCharacter(
  57820. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57821. {
  57822. front: {
  57823. height: math.unit(1.58, "meters"),
  57824. weight: math.unit(47, "kg"),
  57825. name: "Front",
  57826. image: {
  57827. source: "./media/characters/wireshark/front.svg",
  57828. extra: 883/838,
  57829. bottom: 66/949
  57830. }
  57831. },
  57832. },
  57833. [
  57834. {
  57835. name: "Normal",
  57836. height: math.unit(1.58, "meters"),
  57837. default: true
  57838. },
  57839. ]
  57840. ))
  57841. characterMakers.push(() => makeCharacter(
  57842. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57843. {
  57844. front: {
  57845. height: math.unit(6, "meters"),
  57846. weight: math.unit(15000, "kg"),
  57847. name: "Front",
  57848. image: {
  57849. source: "./media/characters/gallagher/front.svg",
  57850. extra: 532/493,
  57851. bottom: 0/532
  57852. }
  57853. },
  57854. },
  57855. [
  57856. {
  57857. name: "Normal",
  57858. height: math.unit(6, "meters"),
  57859. default: true
  57860. },
  57861. ]
  57862. ))
  57863. characterMakers.push(() => makeCharacter(
  57864. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57865. {
  57866. front: {
  57867. height: math.unit(2.4, "meters"),
  57868. weight: math.unit(270, "kg"),
  57869. name: "Front",
  57870. image: {
  57871. source: "./media/characters/alice/front.svg",
  57872. extra: 950/900,
  57873. bottom: 36/986
  57874. }
  57875. },
  57876. side: {
  57877. height: math.unit(2.4, "meters"),
  57878. weight: math.unit(270, "kg"),
  57879. name: "Side",
  57880. image: {
  57881. source: "./media/characters/alice/side.svg",
  57882. extra: 921/876,
  57883. bottom: 19/940
  57884. }
  57885. },
  57886. dressed: {
  57887. height: math.unit(2.4, "meters"),
  57888. weight: math.unit(270, "kg"),
  57889. name: "Dressed",
  57890. image: {
  57891. source: "./media/characters/alice/dressed.svg",
  57892. extra: 905/850,
  57893. bottom: 81/986
  57894. }
  57895. },
  57896. fishnet: {
  57897. height: math.unit(2.4, "meters"),
  57898. weight: math.unit(270, "kg"),
  57899. name: "Fishnet",
  57900. image: {
  57901. source: "./media/characters/alice/fishnet.svg",
  57902. extra: 905/850,
  57903. bottom: 81/986
  57904. }
  57905. },
  57906. },
  57907. [
  57908. {
  57909. name: "Normal",
  57910. height: math.unit(2.4, "meters"),
  57911. default: true
  57912. },
  57913. ]
  57914. ))
  57915. characterMakers.push(() => makeCharacter(
  57916. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57917. {
  57918. front: {
  57919. height: math.unit(175.25, "feet"),
  57920. name: "Front",
  57921. image: {
  57922. source: "./media/characters/fio/front.svg",
  57923. extra: 1883/1591,
  57924. bottom: 34/1917
  57925. }
  57926. },
  57927. },
  57928. [
  57929. {
  57930. name: "Normal",
  57931. height: math.unit(175.25, "cm"),
  57932. default: true
  57933. },
  57934. ]
  57935. ))
  57936. characterMakers.push(() => makeCharacter(
  57937. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57938. {
  57939. side: {
  57940. height: math.unit(6, "meters"),
  57941. weight: math.unit(3400, "kg"),
  57942. preyCapacity: math.unit(1700, "liters"),
  57943. name: "Side",
  57944. image: {
  57945. source: "./media/characters/hass/side.svg",
  57946. extra: 1058/997,
  57947. bottom: 177/1235
  57948. }
  57949. },
  57950. feeding: {
  57951. height: math.unit(6*0.63, "meters"),
  57952. weight: math.unit(3400, "kg"),
  57953. preyCapacity: math.unit(1700, "liters"),
  57954. name: "Feeding",
  57955. image: {
  57956. source: "./media/characters/hass/feeding.svg",
  57957. extra: 689/579,
  57958. bottom: 146/835
  57959. }
  57960. },
  57961. guts: {
  57962. height: math.unit(6, "meters"),
  57963. weight: math.unit(3400, "kg"),
  57964. name: "Guts",
  57965. image: {
  57966. source: "./media/characters/hass/guts.svg",
  57967. extra: 1223/1198,
  57968. bottom: 182/1405
  57969. }
  57970. },
  57971. dickFront: {
  57972. height: math.unit(1.4, "meters"),
  57973. name: "Dick (Front)",
  57974. image: {
  57975. source: "./media/characters/hass/dick-front.svg"
  57976. }
  57977. },
  57978. dickSide: {
  57979. height: math.unit(1.3, "meters"),
  57980. name: "Dick (Side)",
  57981. image: {
  57982. source: "./media/characters/hass/dick-side.svg"
  57983. }
  57984. },
  57985. dickBack: {
  57986. height: math.unit(1.4, "meters"),
  57987. name: "Dick (Back)",
  57988. image: {
  57989. source: "./media/characters/hass/dick-back.svg"
  57990. }
  57991. },
  57992. },
  57993. [
  57994. {
  57995. name: "Normal",
  57996. height: math.unit(6, "meters"),
  57997. default: true
  57998. },
  57999. ]
  58000. ))
  58001. characterMakers.push(() => makeCharacter(
  58002. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  58003. {
  58004. front: {
  58005. height: math.unit(4, "feet"),
  58006. weight: math.unit(60, "lb"),
  58007. name: "Front",
  58008. image: {
  58009. source: "./media/characters/hickory-finnegan/front.svg",
  58010. extra: 444/411,
  58011. bottom: 10/454
  58012. }
  58013. },
  58014. side: {
  58015. height: math.unit(4, "feet"),
  58016. weight: math.unit(60, "lb"),
  58017. name: "Side",
  58018. image: {
  58019. source: "./media/characters/hickory-finnegan/side.svg",
  58020. extra: 444/411,
  58021. bottom: 10/454
  58022. }
  58023. },
  58024. back: {
  58025. height: math.unit(4, "feet"),
  58026. weight: math.unit(60, "lb"),
  58027. name: "Back",
  58028. image: {
  58029. source: "./media/characters/hickory-finnegan/back.svg",
  58030. extra: 444/411,
  58031. bottom: 10/454
  58032. }
  58033. },
  58034. },
  58035. [
  58036. {
  58037. name: "Normal",
  58038. height: math.unit(4, "feet"),
  58039. default: true
  58040. },
  58041. ]
  58042. ))
  58043. characterMakers.push(() => makeCharacter(
  58044. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  58045. {
  58046. snivy_front: {
  58047. height: math.unit(2, "feet"),
  58048. weight: math.unit(17.9, "lb"),
  58049. name: "Front",
  58050. image: {
  58051. source: "./media/characters/robin-phox/snivy-front.svg",
  58052. extra: 569/504,
  58053. bottom: 33/602
  58054. },
  58055. form: "snivy",
  58056. default: true
  58057. },
  58058. snivy_frontNsfw: {
  58059. height: math.unit(2, "feet"),
  58060. weight: math.unit(17.9, "lb"),
  58061. name: "Front (NSFW)",
  58062. image: {
  58063. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  58064. extra: 569/504,
  58065. bottom: 33/602
  58066. },
  58067. form: "snivy",
  58068. },
  58069. snivy_back: {
  58070. height: math.unit(2, "feet"),
  58071. weight: math.unit(17.9, "lb"),
  58072. name: "Back",
  58073. image: {
  58074. source: "./media/characters/robin-phox/snivy-back.svg",
  58075. extra: 577/508,
  58076. bottom: 21/598
  58077. },
  58078. form: "snivy",
  58079. },
  58080. snivy_foot: {
  58081. height: math.unit(0.68, "feet"),
  58082. name: "Foot",
  58083. image: {
  58084. source: "./media/characters/robin-phox/snivy-foot.svg"
  58085. },
  58086. form: "snivy",
  58087. },
  58088. snivy_sole: {
  58089. height: math.unit(0.68, "feet"),
  58090. name: "Sole",
  58091. image: {
  58092. source: "./media/characters/robin-phox/snivy-sole.svg"
  58093. },
  58094. form: "snivy",
  58095. },
  58096. yoshi_front: {
  58097. height: math.unit(6, "feet"),
  58098. weight: math.unit(150, "lb"),
  58099. name: "Front",
  58100. image: {
  58101. source: "./media/characters/robin-phox/yoshi-front.svg",
  58102. extra: 890/792,
  58103. bottom: 29/919
  58104. },
  58105. form: "yoshi",
  58106. default: true
  58107. },
  58108. yoshi_frontNsfw: {
  58109. height: math.unit(6, "feet"),
  58110. weight: math.unit(150, "lb"),
  58111. name: "Front (NSFW)",
  58112. image: {
  58113. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  58114. extra: 890/792,
  58115. bottom: 29/919
  58116. },
  58117. form: "yoshi",
  58118. },
  58119. yoshi_back: {
  58120. height: math.unit(6, "feet"),
  58121. weight: math.unit(150, "lb"),
  58122. name: "Back",
  58123. image: {
  58124. source: "./media/characters/robin-phox/yoshi-back.svg",
  58125. extra: 890/792,
  58126. bottom: 29/919
  58127. },
  58128. form: "yoshi",
  58129. },
  58130. yoshi_foot: {
  58131. height: math.unit(1.5, "feet"),
  58132. name: "Foot",
  58133. image: {
  58134. source: "./media/characters/robin-phox/yoshi-foot.svg"
  58135. },
  58136. form: "yoshi",
  58137. },
  58138. delphox_front: {
  58139. height: math.unit(4 + 11/12, "feet"),
  58140. weight: math.unit(86, "lb"),
  58141. name: "Front",
  58142. image: {
  58143. source: "./media/characters/robin-phox/delphox-front.svg",
  58144. extra: 1266/1069,
  58145. bottom: 32/1298
  58146. },
  58147. form: "delphox",
  58148. default: true
  58149. },
  58150. delphox_frontNsfw: {
  58151. height: math.unit(4 + 11/12, "feet"),
  58152. weight: math.unit(86, "lb"),
  58153. name: "Front (NSFW)",
  58154. image: {
  58155. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  58156. extra: 1266/1069,
  58157. bottom: 32/1298
  58158. },
  58159. form: "delphox",
  58160. },
  58161. delphox_back: {
  58162. height: math.unit(4 + 11/12, "feet"),
  58163. weight: math.unit(86, "lb"),
  58164. name: "Back",
  58165. image: {
  58166. source: "./media/characters/robin-phox/delphox-back.svg",
  58167. extra: 1269/1083,
  58168. bottom: 15/1284
  58169. },
  58170. form: "delphox",
  58171. },
  58172. mienshao_front: {
  58173. height: math.unit(4 + 7/12, "feet"),
  58174. weight: math.unit(78.3, "lb"),
  58175. name: "Front",
  58176. image: {
  58177. source: "./media/characters/robin-phox/mienshao-front.svg",
  58178. extra: 1052/970,
  58179. bottom: 108/1160
  58180. },
  58181. form: "mienshao",
  58182. default: true
  58183. },
  58184. mienshao_frontNsfw: {
  58185. height: math.unit(4 + 7/12, "feet"),
  58186. weight: math.unit(78.3, "lb"),
  58187. name: "Front (NSFW)",
  58188. image: {
  58189. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  58190. extra: 1052/970,
  58191. bottom: 108/1160
  58192. },
  58193. form: "mienshao",
  58194. },
  58195. mienshao_back: {
  58196. height: math.unit(4 + 7/12, "feet"),
  58197. weight: math.unit(78.3, "lb"),
  58198. name: "Back",
  58199. image: {
  58200. source: "./media/characters/robin-phox/mienshao-back.svg",
  58201. extra: 1102/982,
  58202. bottom: 32/1134
  58203. },
  58204. form: "mienshao",
  58205. },
  58206. inteleon_front: {
  58207. height: math.unit(6 + 3/12, "feet"),
  58208. weight: math.unit(99.6, "lb"),
  58209. name: "Front",
  58210. image: {
  58211. source: "./media/characters/robin-phox/inteleon-front.svg",
  58212. extra: 910/799,
  58213. bottom: 76/986
  58214. },
  58215. form: "inteleon",
  58216. default: true
  58217. },
  58218. inteleon_frontNsfw: {
  58219. height: math.unit(6 + 3/12, "feet"),
  58220. weight: math.unit(99.6, "lb"),
  58221. name: "Front (NSFW)",
  58222. image: {
  58223. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58224. extra: 910/799,
  58225. bottom: 76/986
  58226. },
  58227. form: "inteleon",
  58228. },
  58229. inteleon_back: {
  58230. height: math.unit(6 + 3/12, "feet"),
  58231. weight: math.unit(99.6, "lb"),
  58232. name: "Back",
  58233. image: {
  58234. source: "./media/characters/robin-phox/inteleon-back.svg",
  58235. extra: 907/796,
  58236. bottom: 25/932
  58237. },
  58238. form: "inteleon",
  58239. },
  58240. reshiram_front: {
  58241. height: math.unit(10 + 6/12, "feet"),
  58242. weight: math.unit(727.5, "lb"),
  58243. name: "Front",
  58244. image: {
  58245. source: "./media/characters/robin-phox/reshiram-front.svg",
  58246. extra: 1198/940,
  58247. bottom: 123/1321
  58248. },
  58249. form: "reshiram",
  58250. },
  58251. reshiram_frontNsfw: {
  58252. height: math.unit(10 + 6/12, "feet"),
  58253. weight: math.unit(727.5, "lb"),
  58254. name: "Front (NSFW)",
  58255. image: {
  58256. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58257. extra: 1198/940,
  58258. bottom: 123/1321
  58259. },
  58260. form: "reshiram",
  58261. },
  58262. reshiram_back: {
  58263. height: math.unit(10 + 6/12, "feet"),
  58264. weight: math.unit(727.5, "lb"),
  58265. name: "Back",
  58266. image: {
  58267. source: "./media/characters/robin-phox/reshiram-back.svg",
  58268. extra: 1024/904,
  58269. bottom: 85/1109
  58270. },
  58271. form: "reshiram",
  58272. },
  58273. samurott_front: {
  58274. height: math.unit(8, "feet"),
  58275. weight: math.unit(208.6, "lb"),
  58276. name: "Front",
  58277. image: {
  58278. source: "./media/characters/robin-phox/samurott-front.svg",
  58279. extra: 1048/984,
  58280. bottom: 100/1148
  58281. },
  58282. form: "samurott",
  58283. },
  58284. samurott_frontNsfw: {
  58285. height: math.unit(8, "feet"),
  58286. weight: math.unit(208.6, "lb"),
  58287. name: "Front NSFW",
  58288. image: {
  58289. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58290. extra: 1048/984,
  58291. bottom: 100/1148
  58292. },
  58293. form: "samurott",
  58294. },
  58295. samurott_back: {
  58296. height: math.unit(8, "feet"),
  58297. weight: math.unit(208.6, "lb"),
  58298. name: "Back",
  58299. image: {
  58300. source: "./media/characters/robin-phox/samurott-back.svg",
  58301. extra: 1110/1042,
  58302. bottom: 12/1122
  58303. },
  58304. form: "samurott",
  58305. },
  58306. samurott_feral: {
  58307. height: math.unit(4 + 11/12, "feet"),
  58308. weight: math.unit(208.6, "lb"),
  58309. name: "Feral",
  58310. image: {
  58311. source: "./media/characters/robin-phox/samurott-feral.svg",
  58312. extra: 766/681,
  58313. bottom: 108/874
  58314. },
  58315. form: "samurott",
  58316. },
  58317. },
  58318. [
  58319. {
  58320. name: "Normal",
  58321. height: math.unit(2, "feet"),
  58322. default: true,
  58323. form: "snivy"
  58324. },
  58325. {
  58326. name: "Normal",
  58327. height: math.unit(6, "feet"),
  58328. default: true,
  58329. form: "yoshi"
  58330. },
  58331. {
  58332. name: "Normal",
  58333. height: math.unit(4 + 11/12, "feet"),
  58334. default: true,
  58335. form: "delphox"
  58336. },
  58337. {
  58338. name: "Normal",
  58339. height: math.unit(4 + 7/12, "feet"),
  58340. default: true,
  58341. form: "mienshao"
  58342. },
  58343. {
  58344. name: "Normal",
  58345. height: math.unit(6 + 3/12, "feet"),
  58346. default: true,
  58347. form: "inteleon"
  58348. },
  58349. {
  58350. name: "Normal",
  58351. height: math.unit(10 + 6/12, "feet"),
  58352. default: true,
  58353. form: "reshiram"
  58354. },
  58355. {
  58356. name: "Normal",
  58357. height: math.unit(8, "feet"),
  58358. default: true,
  58359. form: "samurott"
  58360. },
  58361. {
  58362. name: "Macro",
  58363. height: math.unit(500, "feet"),
  58364. allForms: true
  58365. },
  58366. {
  58367. name: "Mega Macro",
  58368. height: math.unit(10, "earths"),
  58369. allForms: true
  58370. },
  58371. {
  58372. name: "Giga Macro",
  58373. height: math.unit(1, "galaxy"),
  58374. allForms: true
  58375. },
  58376. {
  58377. name: "Godly Macro",
  58378. height: math.unit(1e10, "multiverses"),
  58379. allForms: true
  58380. },
  58381. ],
  58382. {
  58383. "snivy": {
  58384. name: "Snivy",
  58385. default: true
  58386. },
  58387. "yoshi": {
  58388. name: "Yoshi",
  58389. },
  58390. "delphox": {
  58391. name: "Delphox",
  58392. },
  58393. "mienshao": {
  58394. name: "Mienshao",
  58395. },
  58396. "inteleon": {
  58397. name: "Inteleon",
  58398. },
  58399. "reshiram": {
  58400. name: "Reshiram",
  58401. },
  58402. "samurott": {
  58403. name: "Samurott",
  58404. },
  58405. }
  58406. ))
  58407. characterMakers.push(() => makeCharacter(
  58408. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58409. {
  58410. front: {
  58411. height: math.unit(4, "feet"),
  58412. name: "Front",
  58413. image: {
  58414. source: "./media/characters/ash-leung/front.svg",
  58415. extra: 1916/1792,
  58416. bottom: 50/1966
  58417. }
  58418. },
  58419. },
  58420. [
  58421. {
  58422. name: "Atomic",
  58423. height: math.unit(1, "angstrom")
  58424. },
  58425. {
  58426. name: "Microscopic",
  58427. height: math.unit(4000, "angstroms")
  58428. },
  58429. {
  58430. name: "Speck",
  58431. height: math.unit(1, "mm")
  58432. },
  58433. {
  58434. name: "Small",
  58435. height: math.unit(1, "inch")
  58436. },
  58437. {
  58438. name: "Normal",
  58439. height: math.unit(4, "feet"),
  58440. default: true
  58441. },
  58442. ]
  58443. ))
  58444. characterMakers.push(() => makeCharacter(
  58445. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58446. {
  58447. frontDressed: {
  58448. height: math.unit(2.08, "meters"),
  58449. weight: math.unit(175, "lb"),
  58450. name: "Front (Dressed)",
  58451. image: {
  58452. source: "./media/characters/carie/front-dressed.svg",
  58453. extra: 456/417,
  58454. bottom: 7/463
  58455. }
  58456. },
  58457. backDressed: {
  58458. height: math.unit(2.08, "meters"),
  58459. weight: math.unit(175, "lb"),
  58460. name: "Back (Dressed)",
  58461. image: {
  58462. source: "./media/characters/carie/back-dressed.svg",
  58463. extra: 455/414,
  58464. bottom: 11/466
  58465. }
  58466. },
  58467. front: {
  58468. height: math.unit(2, "meters"),
  58469. weight: math.unit(175, "lb"),
  58470. name: "Front",
  58471. image: {
  58472. source: "./media/characters/carie/front.svg",
  58473. extra: 438/399,
  58474. bottom: 12/450
  58475. }
  58476. },
  58477. back: {
  58478. height: math.unit(2, "meters"),
  58479. weight: math.unit(175, "lb"),
  58480. name: "Back",
  58481. image: {
  58482. source: "./media/characters/carie/back.svg",
  58483. extra: 438/397,
  58484. bottom: 7/445
  58485. }
  58486. },
  58487. },
  58488. [
  58489. {
  58490. name: "Normal",
  58491. height: math.unit(2.08, "meters"),
  58492. default: true
  58493. },
  58494. {
  58495. name: "Macro",
  58496. height: math.unit(2.08e3, "meters")
  58497. },
  58498. {
  58499. name: "Mega Macro",
  58500. height: math.unit(2.08e6, "meters")
  58501. },
  58502. {
  58503. name: "Giga Macro",
  58504. height: math.unit(2.08e9, "meters")
  58505. },
  58506. {
  58507. name: "Tera Macro",
  58508. height: math.unit(2.08e12, "meters")
  58509. },
  58510. {
  58511. name: "Peta Macro",
  58512. height: math.unit(2.08e15, "meters")
  58513. },
  58514. {
  58515. name: "Exa Macro",
  58516. height: math.unit(2.08e18, "meters")
  58517. },
  58518. {
  58519. name: "Zetta Macro",
  58520. height: math.unit(2.08e21, "meters")
  58521. },
  58522. {
  58523. name: "Yotta Macro",
  58524. height: math.unit(2.08e24, "meters")
  58525. },
  58526. ]
  58527. ))
  58528. characterMakers.push(() => makeCharacter(
  58529. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58530. {
  58531. front: {
  58532. height: math.unit(5 + 2/12, "feet"),
  58533. weight: math.unit(120, "lb"),
  58534. name: "Front",
  58535. image: {
  58536. source: "./media/characters/sai-bree/front.svg",
  58537. extra: 1843/1702,
  58538. bottom: 91/1934
  58539. }
  58540. },
  58541. back: {
  58542. height: math.unit(5 + 2/12, "feet"),
  58543. weight: math.unit(120, "lb"),
  58544. name: "Back",
  58545. image: {
  58546. source: "./media/characters/sai-bree/back.svg",
  58547. extra: 1809/1637,
  58548. bottom: 56/1865
  58549. }
  58550. },
  58551. },
  58552. [
  58553. {
  58554. name: "Normal",
  58555. height: math.unit(5 + 2/12, "feet"),
  58556. default: true
  58557. },
  58558. {
  58559. name: "Macro",
  58560. height: math.unit(500, "feet")
  58561. },
  58562. ]
  58563. ))
  58564. characterMakers.push(() => makeCharacter(
  58565. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58566. {
  58567. side: {
  58568. height: math.unit(0.77, "meters"),
  58569. weight: math.unit(120, "lb"),
  58570. name: "Side",
  58571. image: {
  58572. source: "./media/characters/davwyn/side.svg",
  58573. extra: 1557/1225,
  58574. bottom: 131/1688
  58575. }
  58576. },
  58577. front: {
  58578. height: math.unit(0.835410, "meters"),
  58579. weight: math.unit(120, "lb"),
  58580. name: "Front",
  58581. image: {
  58582. source: "./media/characters/davwyn/front.svg",
  58583. extra: 870/843,
  58584. bottom: 175/1045
  58585. }
  58586. },
  58587. },
  58588. [
  58589. {
  58590. name: "Minidrake",
  58591. height: math.unit(0.77/4, "meters")
  58592. },
  58593. {
  58594. name: "Normal",
  58595. height: math.unit(0.77, "meters"),
  58596. default: true
  58597. },
  58598. ]
  58599. ))
  58600. characterMakers.push(() => makeCharacter(
  58601. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58602. {
  58603. front: {
  58604. height: math.unit(10 + 3/12, "feet"),
  58605. weight: math.unit(2857, "lb"),
  58606. name: "Front",
  58607. image: {
  58608. source: "./media/characters/balans/front.svg",
  58609. extra: 427/402,
  58610. bottom: 26/453
  58611. }
  58612. },
  58613. side: {
  58614. height: math.unit(10 + 3/12, "feet"),
  58615. weight: math.unit(2857, "lb"),
  58616. name: "Side",
  58617. image: {
  58618. source: "./media/characters/balans/side.svg",
  58619. extra: 397/371,
  58620. bottom: 17/414
  58621. }
  58622. },
  58623. back: {
  58624. height: math.unit(10 + 3/12, "feet"),
  58625. weight: math.unit(2857, "lb"),
  58626. name: "Back",
  58627. image: {
  58628. source: "./media/characters/balans/back.svg",
  58629. extra: 408/381,
  58630. bottom: 14/422
  58631. }
  58632. },
  58633. hand: {
  58634. height: math.unit(1.15, "feet"),
  58635. name: "Hand",
  58636. image: {
  58637. source: "./media/characters/balans/hand.svg"
  58638. }
  58639. },
  58640. footRest: {
  58641. height: math.unit(3.1, "feet"),
  58642. name: "Foot (Rest)",
  58643. image: {
  58644. source: "./media/characters/balans/foot-rest.svg"
  58645. }
  58646. },
  58647. footActive: {
  58648. height: math.unit(3.5, "feet"),
  58649. name: "Foot (Active)",
  58650. image: {
  58651. source: "./media/characters/balans/foot-active.svg"
  58652. }
  58653. },
  58654. },
  58655. [
  58656. {
  58657. name: "Normal",
  58658. height: math.unit(10 + 3/12, "feet"),
  58659. default: true
  58660. },
  58661. ]
  58662. ))
  58663. characterMakers.push(() => makeCharacter(
  58664. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58665. {
  58666. side: {
  58667. height: math.unit(9, "meters"),
  58668. weight: math.unit(114, "tonnes"),
  58669. name: "Side",
  58670. image: {
  58671. source: "./media/characters/eldkveikir/side.svg",
  58672. extra: 1927/338,
  58673. bottom: 42/1969
  58674. }
  58675. },
  58676. sitting: {
  58677. height: math.unit(13.4, "meters"),
  58678. weight: math.unit(114, "tonnes"),
  58679. name: "Sitting",
  58680. image: {
  58681. source: "./media/characters/eldkveikir/sitting.svg",
  58682. extra: 1108/963,
  58683. bottom: 610/1718
  58684. }
  58685. },
  58686. maw: {
  58687. height: math.unit(8.36, "meters"),
  58688. name: "Maw",
  58689. image: {
  58690. source: "./media/characters/eldkveikir/maw.svg"
  58691. }
  58692. },
  58693. hand: {
  58694. height: math.unit(4.84, "meters"),
  58695. name: "Hand",
  58696. image: {
  58697. source: "./media/characters/eldkveikir/hand.svg"
  58698. }
  58699. },
  58700. foot: {
  58701. height: math.unit(6.9, "meters"),
  58702. name: "Foot",
  58703. image: {
  58704. source: "./media/characters/eldkveikir/foot.svg"
  58705. }
  58706. },
  58707. genitals: {
  58708. height: math.unit(9.6, "meters"),
  58709. name: "Genitals",
  58710. image: {
  58711. source: "./media/characters/eldkveikir/genitals.svg"
  58712. }
  58713. },
  58714. },
  58715. [
  58716. {
  58717. name: "Normal",
  58718. height: math.unit(9, "meters"),
  58719. default: true
  58720. },
  58721. ]
  58722. ))
  58723. characterMakers.push(() => makeCharacter(
  58724. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58725. {
  58726. front: {
  58727. height: math.unit(14, "feet"),
  58728. weight: math.unit(4100, "lb"),
  58729. name: "Front",
  58730. image: {
  58731. source: "./media/characters/arrow/front.svg",
  58732. extra: 330/318,
  58733. bottom: 56/386
  58734. }
  58735. },
  58736. },
  58737. [
  58738. {
  58739. name: "Normal",
  58740. height: math.unit(14, "feet"),
  58741. default: true
  58742. },
  58743. {
  58744. name: "Minimacro",
  58745. height: math.unit(63, "feet")
  58746. },
  58747. {
  58748. name: "Macro",
  58749. height: math.unit(630, "feet")
  58750. },
  58751. {
  58752. name: "Megamacro",
  58753. height: math.unit(12600, "feet")
  58754. },
  58755. {
  58756. name: "Gigamacro",
  58757. height: math.unit(18000, "miles")
  58758. },
  58759. ]
  58760. ))
  58761. characterMakers.push(() => makeCharacter(
  58762. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58763. {
  58764. front: {
  58765. height: math.unit(10, "feet"),
  58766. weight: math.unit(2.4, "tons"),
  58767. name: "Front",
  58768. image: {
  58769. source: "./media/characters/3yk-k0-unit/front.svg",
  58770. extra: 573/561,
  58771. bottom: 33/606
  58772. }
  58773. },
  58774. back: {
  58775. height: math.unit(10, "feet"),
  58776. weight: math.unit(2.4, "tons"),
  58777. name: "Back",
  58778. image: {
  58779. source: "./media/characters/3yk-k0-unit/back.svg",
  58780. extra: 614/573,
  58781. bottom: 32/646
  58782. }
  58783. },
  58784. maw: {
  58785. height: math.unit(2.15, "feet"),
  58786. name: "Maw",
  58787. image: {
  58788. source: "./media/characters/3yk-k0-unit/maw.svg"
  58789. }
  58790. },
  58791. },
  58792. [
  58793. {
  58794. name: "Normal",
  58795. height: math.unit(10, "feet"),
  58796. default: true
  58797. },
  58798. ]
  58799. ))
  58800. characterMakers.push(() => makeCharacter(
  58801. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58802. {
  58803. front: {
  58804. height: math.unit(8 + 8/12, "feet"),
  58805. name: "Front",
  58806. image: {
  58807. source: "./media/characters/nemo/front.svg",
  58808. extra: 1308/1217,
  58809. bottom: 57/1365
  58810. }
  58811. },
  58812. },
  58813. [
  58814. {
  58815. name: "Normal",
  58816. height: math.unit(8 + 8/12, "feet"),
  58817. default: true
  58818. },
  58819. ]
  58820. ))
  58821. characterMakers.push(() => makeCharacter(
  58822. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58823. {
  58824. front: {
  58825. height: math.unit(8, "feet"),
  58826. weight: math.unit(760, "lb"),
  58827. name: "Front",
  58828. image: {
  58829. source: "./media/characters/rexx/front.svg",
  58830. extra: 786/750,
  58831. bottom: 17/803
  58832. },
  58833. extraAttributes: {
  58834. "pawLength": {
  58835. name: "Paw Length",
  58836. power: 1,
  58837. type: "length",
  58838. base: math.unit(27, "inches")
  58839. },
  58840. }
  58841. },
  58842. },
  58843. [
  58844. {
  58845. name: "Micro",
  58846. height: math.unit(2, "inches")
  58847. },
  58848. {
  58849. name: "Normal",
  58850. height: math.unit(8, "feet"),
  58851. default: true
  58852. },
  58853. {
  58854. name: "Macro",
  58855. height: math.unit(150, "feet")
  58856. },
  58857. ]
  58858. ))
  58859. characterMakers.push(() => makeCharacter(
  58860. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58861. {
  58862. front: {
  58863. height: math.unit(18, "feet"),
  58864. weight: math.unit(1975, "lb"),
  58865. name: "Front",
  58866. image: {
  58867. source: "./media/characters/draco/front.svg",
  58868. extra: 1325/1241,
  58869. bottom: 83/1408
  58870. }
  58871. },
  58872. back: {
  58873. height: math.unit(18, "feet"),
  58874. weight: math.unit(1975, "lb"),
  58875. name: "Back",
  58876. image: {
  58877. source: "./media/characters/draco/back.svg",
  58878. extra: 1332/1250,
  58879. bottom: 43/1375
  58880. }
  58881. },
  58882. dick: {
  58883. height: math.unit(7.5, "feet"),
  58884. name: "Dick",
  58885. image: {
  58886. source: "./media/characters/draco/dick.svg"
  58887. }
  58888. },
  58889. },
  58890. [
  58891. {
  58892. name: "Normal",
  58893. height: math.unit(18, "feet"),
  58894. default: true
  58895. },
  58896. ]
  58897. ))
  58898. characterMakers.push(() => makeCharacter(
  58899. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58900. {
  58901. front: {
  58902. height: math.unit(3.2, "meters"),
  58903. name: "Front",
  58904. image: {
  58905. source: "./media/characters/harriett/front.svg",
  58906. extra: 1966/1915,
  58907. bottom: 9/1975
  58908. }
  58909. },
  58910. },
  58911. [
  58912. {
  58913. name: "Normal",
  58914. height: math.unit(3.2, "meters"),
  58915. default: true
  58916. },
  58917. ]
  58918. ))
  58919. characterMakers.push(() => makeCharacter(
  58920. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58921. {
  58922. standing: {
  58923. height: math.unit(180, "cm"),
  58924. weight: math.unit(185, "lb"),
  58925. name: "Standing",
  58926. image: {
  58927. source: "./media/characters/serpentus/standing.svg",
  58928. extra: 882/878,
  58929. bottom: 16/898
  58930. }
  58931. },
  58932. sitting: {
  58933. height: math.unit(0.8, "meter"),
  58934. weight: math.unit(155, "lb"),
  58935. name: "Sitting",
  58936. image: {
  58937. source: "./media/characters/serpentus/sitting.svg",
  58938. extra: 293/290,
  58939. bottom: 140/433
  58940. }
  58941. },
  58942. },
  58943. [
  58944. {
  58945. name: "Normal",
  58946. height: math.unit(1.8, "meter"),
  58947. default: true
  58948. },
  58949. ]
  58950. ))
  58951. characterMakers.push(() => makeCharacter(
  58952. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58953. {
  58954. front: {
  58955. height: math.unit(5.7174385736, "feet"),
  58956. name: "Front",
  58957. image: {
  58958. source: "./media/characters/nova-polecat/front.svg",
  58959. extra: 1317/1216,
  58960. bottom: 92/1409
  58961. }
  58962. },
  58963. },
  58964. [
  58965. {
  58966. name: "Normal",
  58967. height: math.unit(5.7174385736, "feet"),
  58968. default: true
  58969. },
  58970. ]
  58971. ))
  58972. characterMakers.push(() => makeCharacter(
  58973. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58974. {
  58975. front: {
  58976. height: math.unit(5 + 4/12, "feet"),
  58977. weight: math.unit(250, "lb"),
  58978. name: "Front",
  58979. image: {
  58980. source: "./media/characters/mook/front.svg",
  58981. extra: 1088/1037,
  58982. bottom: 132/1220
  58983. }
  58984. },
  58985. back: {
  58986. height: math.unit(5 + 1/12, "feet"),
  58987. weight: math.unit(250, "lb"),
  58988. name: "Back",
  58989. image: {
  58990. source: "./media/characters/mook/back.svg",
  58991. extra: 1184/905,
  58992. bottom: 96/1280
  58993. }
  58994. },
  58995. head: {
  58996. height: math.unit(1.85, "feet"),
  58997. name: "Head",
  58998. image: {
  58999. source: "./media/characters/mook/head.svg"
  59000. }
  59001. },
  59002. hand: {
  59003. height: math.unit(1.9, "feet"),
  59004. name: "Hand",
  59005. image: {
  59006. source: "./media/characters/mook/hand.svg"
  59007. }
  59008. },
  59009. palm: {
  59010. height: math.unit(1.84, "feet"),
  59011. name: "Palm",
  59012. image: {
  59013. source: "./media/characters/mook/palm.svg"
  59014. }
  59015. },
  59016. foot: {
  59017. height: math.unit(1.44, "feet"),
  59018. name: "Foot",
  59019. image: {
  59020. source: "./media/characters/mook/foot.svg"
  59021. }
  59022. },
  59023. sole: {
  59024. height: math.unit(1.44, "feet"),
  59025. name: "Sole",
  59026. image: {
  59027. source: "./media/characters/mook/sole.svg"
  59028. }
  59029. },
  59030. },
  59031. [
  59032. {
  59033. name: "Normal",
  59034. height: math.unit(5 + 4/12, "feet"),
  59035. default: true
  59036. },
  59037. {
  59038. name: "Big",
  59039. height: math.unit(12, "feet")
  59040. },
  59041. ]
  59042. ))
  59043. characterMakers.push(() => makeCharacter(
  59044. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  59045. {
  59046. front: {
  59047. height: math.unit(6 + 10/12, "feet"),
  59048. weight: math.unit(233, "lb"),
  59049. name: "Front",
  59050. image: {
  59051. source: "./media/characters/kayla/front.svg",
  59052. extra: 1850/1775,
  59053. bottom: 65/1915
  59054. }
  59055. },
  59056. },
  59057. [
  59058. {
  59059. name: "Normal",
  59060. height: math.unit(6 + 10/12, "feet"),
  59061. default: true
  59062. },
  59063. {
  59064. name: "Amazonian",
  59065. height: math.unit(12 + 5/12, "feet")
  59066. },
  59067. {
  59068. name: "Mini Giantess",
  59069. height: math.unit(26, "feet")
  59070. },
  59071. {
  59072. name: "Giantess",
  59073. height: math.unit(200, "feet")
  59074. },
  59075. {
  59076. name: "Mega Giantess",
  59077. height: math.unit(2500, "feet")
  59078. },
  59079. {
  59080. name: "City Sized",
  59081. height: math.unit(50, "miles")
  59082. },
  59083. {
  59084. name: "Country Sized",
  59085. height: math.unit(500, "miles")
  59086. },
  59087. {
  59088. name: "Continent Sized",
  59089. height: math.unit(2500, "miles")
  59090. },
  59091. {
  59092. name: "Planet Sized",
  59093. height: math.unit(10000, "miles")
  59094. },
  59095. {
  59096. name: "Star Sized",
  59097. height: math.unit(5e6, "miles")
  59098. },
  59099. {
  59100. name: "Solar System Sized",
  59101. height: math.unit(125, "AU")
  59102. },
  59103. {
  59104. name: "Galaxy Sized",
  59105. height: math.unit(300e3, "lightyears")
  59106. },
  59107. {
  59108. name: "Universe Sized",
  59109. height: math.unit(200e9, "lightyears")
  59110. },
  59111. {
  59112. name: "Multiverse Sized",
  59113. height: math.unit(20, "exauniverses")
  59114. },
  59115. {
  59116. name: "Mother of Existence",
  59117. height: math.unit(1e6, "yottauniverses")
  59118. },
  59119. ]
  59120. ))
  59121. characterMakers.push(() => makeCharacter(
  59122. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  59123. {
  59124. side: {
  59125. height: math.unit(9.5, "meters"),
  59126. name: "Side",
  59127. image: {
  59128. source: "./media/characters/kulve-ragnarok/side.svg",
  59129. extra: 364/326,
  59130. bottom: 50/414
  59131. }
  59132. },
  59133. },
  59134. [
  59135. {
  59136. name: "Normal",
  59137. height: math.unit(9.5, "meters"),
  59138. default: true
  59139. },
  59140. ]
  59141. ))
  59142. characterMakers.push(() => makeCharacter(
  59143. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  59144. {
  59145. front: {
  59146. height: math.unit(8 + 9/12, "feet"),
  59147. name: "Front",
  59148. image: {
  59149. source: "./media/characters/atlas-goat/front.svg",
  59150. extra: 1462/1323,
  59151. bottom: 12/1474
  59152. }
  59153. },
  59154. },
  59155. [
  59156. {
  59157. name: "Normal",
  59158. height: math.unit(8 + 9/12, "feet"),
  59159. default: true
  59160. },
  59161. {
  59162. name: "Skyline",
  59163. height: math.unit(845, "feet")
  59164. },
  59165. {
  59166. name: "Orbital",
  59167. height: math.unit(93000, "miles")
  59168. },
  59169. {
  59170. name: "Constellation",
  59171. height: math.unit(27000, "lightyears")
  59172. },
  59173. ]
  59174. ))
  59175. characterMakers.push(() => makeCharacter(
  59176. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  59177. {
  59178. side: {
  59179. height: math.unit(1.8, "meters"),
  59180. weight: math.unit(120, "kg"),
  59181. name: "Side",
  59182. image: {
  59183. source: "./media/characters/xie-ling/side.svg",
  59184. extra: 646/574,
  59185. bottom: 44/690
  59186. }
  59187. },
  59188. },
  59189. [
  59190. {
  59191. name: "Tiny",
  59192. height: math.unit(1.80, "meters")
  59193. },
  59194. {
  59195. name: "Small",
  59196. height: math.unit(6, "meters")
  59197. },
  59198. {
  59199. name: "Medium",
  59200. height: math.unit(15, "meters")
  59201. },
  59202. {
  59203. name: "Normal",
  59204. height: math.unit(30, "meters"),
  59205. default: true
  59206. },
  59207. {
  59208. name: "Above Normal",
  59209. height: math.unit(60, "meters")
  59210. },
  59211. {
  59212. name: "Big",
  59213. height: math.unit(220, "meters")
  59214. },
  59215. {
  59216. name: "Giant",
  59217. height: math.unit(2.2, "km")
  59218. },
  59219. {
  59220. name: "Macro",
  59221. height: math.unit(25, "km")
  59222. },
  59223. {
  59224. name: "Mega Macro",
  59225. height: math.unit(350, "km")
  59226. },
  59227. {
  59228. name: "Mega Macro+",
  59229. height: math.unit(5000, "km")
  59230. },
  59231. {
  59232. name: "Goddess",
  59233. height: math.unit(3, "multiverses")
  59234. },
  59235. ]
  59236. ))
  59237. characterMakers.push(() => makeCharacter(
  59238. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59239. {
  59240. frontSfw: {
  59241. height: math.unit(5 + 11/12, "feet"),
  59242. weight: math.unit(210, "lb"),
  59243. name: "Front",
  59244. image: {
  59245. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59246. extra: 1928/1821,
  59247. bottom: 45/1973
  59248. }
  59249. },
  59250. backSfw: {
  59251. height: math.unit(5 + 11/12, "feet"),
  59252. weight: math.unit(210, "lb"),
  59253. name: "Back",
  59254. image: {
  59255. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59256. extra: 1920/1813,
  59257. bottom: 34/1954
  59258. }
  59259. },
  59260. frontNsfw: {
  59261. height: math.unit(5 + 11/12, "feet"),
  59262. weight: math.unit(210, "lb"),
  59263. name: "Front (NSFW)",
  59264. image: {
  59265. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59266. extra: 1928/1821,
  59267. bottom: 45/1973
  59268. }
  59269. },
  59270. backNsfw: {
  59271. height: math.unit(5 + 11/12, "feet"),
  59272. weight: math.unit(210, "lb"),
  59273. name: "Back (NSFW)",
  59274. image: {
  59275. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59276. extra: 1920/1813,
  59277. bottom: 34/1954
  59278. }
  59279. },
  59280. },
  59281. [
  59282. {
  59283. name: "Normal",
  59284. height: math.unit(5 + 11/12, "feet"),
  59285. default: true
  59286. },
  59287. {
  59288. name: "Goddess",
  59289. height: math.unit(20 + 3/12, "feet")
  59290. },
  59291. {
  59292. name: "Breaker of Man",
  59293. height: math.unit(329 + 9/12, "feet")
  59294. },
  59295. {
  59296. name: "Solar Justice",
  59297. height: math.unit(0.6, "solarradii")
  59298. },
  59299. {
  59300. name: "She Who Judges",
  59301. height: math.unit(1, "universe")
  59302. },
  59303. ]
  59304. ))
  59305. characterMakers.push(() => makeCharacter(
  59306. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59307. {
  59308. casual_front: {
  59309. height: math.unit(6 + 1/12, "feet"),
  59310. weight: math.unit(190, "lb"),
  59311. preyCapacity: math.unit(1, "people"),
  59312. name: "Front",
  59313. image: {
  59314. source: "./media/characters/managarmr/casual-front.svg",
  59315. extra: 411/381,
  59316. bottom: 15/426
  59317. },
  59318. extraAttributes: {
  59319. "pawSize": {
  59320. name: "Paw Size",
  59321. power: 1,
  59322. type: "length",
  59323. base: math.unit(0.2, "meters")
  59324. },
  59325. },
  59326. form: "casual",
  59327. },
  59328. casual_back: {
  59329. height: math.unit(6 + 1/12, "feet"),
  59330. weight: math.unit(190, "lb"),
  59331. preyCapacity: math.unit(1, "people"),
  59332. name: "Back",
  59333. image: {
  59334. source: "./media/characters/managarmr/casual-back.svg",
  59335. extra: 413/383,
  59336. bottom: 13/426
  59337. },
  59338. extraAttributes: {
  59339. "pawSize": {
  59340. name: "Paw Size",
  59341. power: 1,
  59342. type: "length",
  59343. base: math.unit(0.2, "meters")
  59344. },
  59345. },
  59346. form: "casual",
  59347. },
  59348. base_front: {
  59349. height: math.unit(7, "feet"),
  59350. weight: math.unit(210, "lb"),
  59351. preyCapacity: math.unit(2, "people"),
  59352. name: "Front",
  59353. image: {
  59354. source: "./media/characters/managarmr/base-front.svg",
  59355. extra: 580/485,
  59356. bottom: 32/612
  59357. },
  59358. extraAttributes: {
  59359. "wingspan": {
  59360. name: "Wingspan",
  59361. power: 1,
  59362. type: "length",
  59363. base: math.unit(4, "meters")
  59364. },
  59365. "pawSize": {
  59366. name: "Paw Size",
  59367. power: 1,
  59368. type: "length",
  59369. base: math.unit(0.2, "meters")
  59370. },
  59371. },
  59372. form: "base",
  59373. },
  59374. "true-divine_front": {
  59375. height: math.unit(40, "feet"),
  59376. weight: math.unit(39000, "lb"),
  59377. preyCapacity: math.unit(375, "people"),
  59378. name: "Front",
  59379. image: {
  59380. source: "./media/characters/managarmr/true-divine-front.svg",
  59381. extra: 725/573,
  59382. bottom: 120/845
  59383. },
  59384. extraAttributes: {
  59385. "wingspan": {
  59386. name: "Wingspan",
  59387. power: 1,
  59388. type: "length",
  59389. base: math.unit(20, "meters")
  59390. },
  59391. "pawSize": {
  59392. name: "Paw Size",
  59393. power: 1,
  59394. type: "length",
  59395. base: math.unit(1.5, "meters")
  59396. },
  59397. },
  59398. form: "true-divine",
  59399. },
  59400. },
  59401. [
  59402. {
  59403. name: "Normal",
  59404. height: math.unit(6 + 1/12, "feet"),
  59405. form: "casual",
  59406. default: true
  59407. },
  59408. {
  59409. name: "Normal",
  59410. height: math.unit(7, "feet"),
  59411. form: "base",
  59412. default: true
  59413. },
  59414. ],
  59415. {
  59416. "casual": {
  59417. name: "Casual",
  59418. default: true
  59419. },
  59420. "base": {
  59421. name: "Base",
  59422. },
  59423. "true-divine": {
  59424. name: "True Divine",
  59425. },
  59426. }
  59427. ))
  59428. characterMakers.push(() => makeCharacter(
  59429. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59430. {
  59431. front: {
  59432. height: math.unit(1.8, "meters"),
  59433. weight: math.unit(110, "kg"),
  59434. name: "Front",
  59435. image: {
  59436. source: "./media/characters/mystra/front.svg",
  59437. extra: 529/442,
  59438. bottom: 31/560
  59439. }
  59440. },
  59441. frontLewd: {
  59442. height: math.unit(1.8, "meters"),
  59443. weight: math.unit(110, "kg"),
  59444. name: "Front (Lewd)",
  59445. image: {
  59446. source: "./media/characters/mystra/front-lewd.svg",
  59447. extra: 529/442,
  59448. bottom: 31/560
  59449. }
  59450. },
  59451. head: {
  59452. height: math.unit(1.63, "feet"),
  59453. name: "Head",
  59454. image: {
  59455. source: "./media/characters/mystra/head.svg"
  59456. }
  59457. },
  59458. paw: {
  59459. height: math.unit(1.9, "feet"),
  59460. name: "Paw",
  59461. image: {
  59462. source: "./media/characters/mystra/paw.svg"
  59463. }
  59464. },
  59465. },
  59466. [
  59467. {
  59468. name: "Incognito",
  59469. height: math.unit(2.3, "meters")
  59470. },
  59471. {
  59472. name: "Small Macro",
  59473. height: math.unit(300, "meters")
  59474. },
  59475. {
  59476. name: "Small Mega",
  59477. height: math.unit(2, "km")
  59478. },
  59479. {
  59480. name: "Mega",
  59481. height: math.unit(30, "km")
  59482. },
  59483. {
  59484. name: "Small Giga",
  59485. height: math.unit(100, "km")
  59486. },
  59487. {
  59488. name: "Giga",
  59489. height: math.unit(1000, "km"),
  59490. default: true
  59491. },
  59492. {
  59493. name: "Continental",
  59494. height: math.unit(5000, "km")
  59495. },
  59496. {
  59497. name: "Terra",
  59498. height: math.unit(20000, "km")
  59499. },
  59500. {
  59501. name: "Solar",
  59502. height: math.unit(2e6, "km")
  59503. },
  59504. {
  59505. name: "Galactic",
  59506. height: math.unit(528502, "lightyears")
  59507. },
  59508. {
  59509. name: "Universal",
  59510. height: math.unit(20, "universes")
  59511. },
  59512. ]
  59513. ))
  59514. characterMakers.push(() => makeCharacter(
  59515. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59516. {
  59517. front: {
  59518. height: math.unit(2, "meters"),
  59519. weight: math.unit(140, "kg"),
  59520. name: "Front",
  59521. image: {
  59522. source: "./media/characters/caleb/front.svg",
  59523. extra: 873/817,
  59524. bottom: 47/920
  59525. }
  59526. },
  59527. back: {
  59528. height: math.unit(2, "meters"),
  59529. weight: math.unit(140, "kg"),
  59530. name: "Back",
  59531. image: {
  59532. source: "./media/characters/caleb/back.svg",
  59533. extra: 877/828,
  59534. bottom: 24/901
  59535. }
  59536. },
  59537. snakeTail: {
  59538. height: math.unit(1.44, "feet"),
  59539. name: "Snake Tail",
  59540. image: {
  59541. source: "./media/characters/caleb/snake-tail.svg"
  59542. }
  59543. },
  59544. dick: {
  59545. height: math.unit(2.6, "feet"),
  59546. name: "Dick",
  59547. image: {
  59548. source: "./media/characters/caleb/dick.svg"
  59549. }
  59550. },
  59551. },
  59552. [
  59553. {
  59554. name: "Incognito",
  59555. height: math.unit(3, "meters")
  59556. },
  59557. {
  59558. name: "Home Size",
  59559. height: math.unit(200, "meters"),
  59560. default: true
  59561. },
  59562. {
  59563. name: "Macro",
  59564. height: math.unit(500, "meters")
  59565. },
  59566. {
  59567. name: "Big Macro",
  59568. height: math.unit(5, "km")
  59569. },
  59570. {
  59571. name: "Giga",
  59572. height: math.unit(250, "km")
  59573. },
  59574. {
  59575. name: "Giga+",
  59576. height: math.unit(5000, "km")
  59577. },
  59578. {
  59579. name: "Small Terra",
  59580. height: math.unit(35e3, "km")
  59581. },
  59582. {
  59583. name: "Terra",
  59584. height: math.unit(2e6, "km")
  59585. },
  59586. {
  59587. name: "Terra+",
  59588. height: math.unit(1.5e6, "km")
  59589. },
  59590. ]
  59591. ))
  59592. characterMakers.push(() => makeCharacter(
  59593. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59594. {
  59595. front: {
  59596. height: math.unit(2, "meters"),
  59597. weight: math.unit(120, "kg"),
  59598. name: "Front",
  59599. image: {
  59600. source: "./media/characters/gilirian/front.svg",
  59601. extra: 805/737,
  59602. bottom: 13/818
  59603. }
  59604. },
  59605. side: {
  59606. height: math.unit(2, "meters"),
  59607. weight: math.unit(120, "kg"),
  59608. name: "Side",
  59609. image: {
  59610. source: "./media/characters/gilirian/side.svg",
  59611. extra: 810/746,
  59612. bottom: 6/816
  59613. }
  59614. },
  59615. back: {
  59616. height: math.unit(2, "meters"),
  59617. weight: math.unit(120, "kg"),
  59618. name: "Back",
  59619. image: {
  59620. source: "./media/characters/gilirian/back.svg",
  59621. extra: 815/745,
  59622. bottom: 15/830
  59623. }
  59624. },
  59625. frontNsfw: {
  59626. height: math.unit(2, "meters"),
  59627. weight: math.unit(120, "kg"),
  59628. name: "Front (NSFW)",
  59629. image: {
  59630. source: "./media/characters/gilirian/front-nsfw.svg",
  59631. extra: 805/737,
  59632. bottom: 13/818
  59633. }
  59634. },
  59635. sideNsfw: {
  59636. height: math.unit(2, "meters"),
  59637. weight: math.unit(120, "kg"),
  59638. name: "Side (NSFW)",
  59639. image: {
  59640. source: "./media/characters/gilirian/side-nsfw.svg",
  59641. extra: 810/746,
  59642. bottom: 6/816
  59643. }
  59644. },
  59645. },
  59646. [
  59647. {
  59648. name: "Incognito",
  59649. height: math.unit(2, "meters"),
  59650. default: true
  59651. },
  59652. {
  59653. name: "Macro",
  59654. height: math.unit(250, "meters")
  59655. },
  59656. {
  59657. name: "Big Macro",
  59658. height: math.unit(1500, "meters")
  59659. },
  59660. {
  59661. name: "Mega",
  59662. height: math.unit(40, "km")
  59663. },
  59664. {
  59665. name: "Giga",
  59666. height: math.unit(300, "km")
  59667. },
  59668. {
  59669. name: "Extra Giga",
  59670. height: math.unit(5000, "km")
  59671. },
  59672. {
  59673. name: "Small Terra",
  59674. height: math.unit(10e3, "km")
  59675. },
  59676. {
  59677. name: "Terra",
  59678. height: math.unit(3e5, "km")
  59679. },
  59680. {
  59681. name: "Galactic",
  59682. height: math.unit(369950, "lightyears")
  59683. },
  59684. ]
  59685. ))
  59686. characterMakers.push(() => makeCharacter(
  59687. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59688. {
  59689. front: {
  59690. height: math.unit(2.5, "meters"),
  59691. weight: math.unit(230, "lb"),
  59692. name: "Front",
  59693. image: {
  59694. source: "./media/characters/tarken/front.svg",
  59695. extra: 764/720,
  59696. bottom: 49/813
  59697. }
  59698. },
  59699. back: {
  59700. height: math.unit(2.5, "meters"),
  59701. weight: math.unit(230, "lb"),
  59702. name: "Back",
  59703. image: {
  59704. source: "./media/characters/tarken/back.svg",
  59705. extra: 756/720,
  59706. bottom: 35/791
  59707. }
  59708. },
  59709. frontNsfw: {
  59710. height: math.unit(2.5, "meters"),
  59711. weight: math.unit(230, "lb"),
  59712. name: "Front (NSFW)",
  59713. image: {
  59714. source: "./media/characters/tarken/front-nsfw.svg",
  59715. extra: 764/720,
  59716. bottom: 49/813
  59717. }
  59718. },
  59719. backNsfw: {
  59720. height: math.unit(2.5, "meters"),
  59721. weight: math.unit(230, "lb"),
  59722. name: "Back (NSFW)",
  59723. image: {
  59724. source: "./media/characters/tarken/back-nsfw.svg",
  59725. extra: 756/720,
  59726. bottom: 35/791
  59727. }
  59728. },
  59729. head: {
  59730. height: math.unit(2.22, "feet"),
  59731. name: "Head",
  59732. image: {
  59733. source: "./media/characters/tarken/head.svg"
  59734. }
  59735. },
  59736. tail: {
  59737. height: math.unit(5.25, "feet"),
  59738. name: "Tail",
  59739. image: {
  59740. source: "./media/characters/tarken/tail.svg"
  59741. }
  59742. },
  59743. dick: {
  59744. height: math.unit(1.95, "feet"),
  59745. name: "Dick",
  59746. image: {
  59747. source: "./media/characters/tarken/dick.svg"
  59748. }
  59749. },
  59750. hand: {
  59751. height: math.unit(1.78, "feet"),
  59752. name: "Hand",
  59753. image: {
  59754. source: "./media/characters/tarken/hand.svg"
  59755. }
  59756. },
  59757. beam: {
  59758. height: math.unit(1.5, "feet"),
  59759. name: "Beam",
  59760. image: {
  59761. source: "./media/characters/tarken/beam.svg"
  59762. }
  59763. },
  59764. },
  59765. [
  59766. {
  59767. name: "Original Size",
  59768. height: math.unit(2.5, "meters")
  59769. },
  59770. {
  59771. name: "Macro",
  59772. height: math.unit(150, "meters"),
  59773. default: true
  59774. },
  59775. {
  59776. name: "Macro+",
  59777. height: math.unit(300, "meters")
  59778. },
  59779. {
  59780. name: "Mega",
  59781. height: math.unit(2, "km")
  59782. },
  59783. {
  59784. name: "Mega+",
  59785. height: math.unit(35, "km")
  59786. },
  59787.  {
  59788. name: "Mega++",
  59789. height: math.unit(60, "km")
  59790. },
  59791. {
  59792. name: "Giga",
  59793. height: math.unit(200, "km")
  59794. },
  59795. {
  59796. name: "Giga+",
  59797. height: math.unit(2500, "km")
  59798. },
  59799. {
  59800. name: "Giga++",
  59801. height: math.unit(6600, "km")
  59802. },
  59803. {
  59804. name: "Terra",
  59805. height: math.unit(20000, "km")
  59806. },
  59807. {
  59808. name: "Terra+",
  59809. height: math.unit(300000, "km")
  59810. },
  59811. ]
  59812. ))
  59813. characterMakers.push(() => makeCharacter(
  59814. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59815. {
  59816. magpie_dressed: {
  59817. height: math.unit(1.7, "meters"),
  59818. weight: math.unit(70, "kg"),
  59819. name: "Dressed",
  59820. image: {
  59821. source: "./media/characters/otreus/magpie-dressed.svg",
  59822. extra: 691/672,
  59823. bottom: 116/807
  59824. },
  59825. form: "magpie",
  59826. default: true
  59827. },
  59828. magpie_nude: {
  59829. height: math.unit(1.7, "meters"),
  59830. weight: math.unit(70, "kg"),
  59831. name: "Nude",
  59832. image: {
  59833. source: "./media/characters/otreus/magpie-nude.svg",
  59834. extra: 691/672,
  59835. bottom: 116/807
  59836. },
  59837. form: "magpie",
  59838. },
  59839. magpie_dressedLewd: {
  59840. height: math.unit(1.7, "meters"),
  59841. weight: math.unit(70, "kg"),
  59842. name: "Dressed (Lewd)",
  59843. image: {
  59844. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59845. extra: 691/672,
  59846. bottom: 116/807
  59847. },
  59848. form: "magpie",
  59849. },
  59850. magpie_nudeLewd: {
  59851. height: math.unit(1.7, "meters"),
  59852. weight: math.unit(70, "kg"),
  59853. name: "Nude (Lewd)",
  59854. image: {
  59855. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59856. extra: 691/672,
  59857. bottom: 116/807
  59858. },
  59859. form: "magpie",
  59860. },
  59861. magpie_leftFoot: {
  59862. height: math.unit(1.58, "feet"),
  59863. name: "Left Foot",
  59864. image: {
  59865. source: "./media/characters/otreus/magpie-left-foot.svg"
  59866. },
  59867. form: "magpie",
  59868. },
  59869. magpie_rightFoot: {
  59870. height: math.unit(1.58, "feet"),
  59871. name: "Right Foot",
  59872. image: {
  59873. source: "./media/characters/otreus/magpie-right-foot.svg"
  59874. },
  59875. form: "magpie",
  59876. },
  59877. magpie_wingspan: {
  59878. height: math.unit(2, "meters"),
  59879. weight: math.unit(70, "kg"),
  59880. name: "Wingspan",
  59881. image: {
  59882. source: "./media/characters/otreus/magpie-wingspan.svg"
  59883. },
  59884. extraAttributes: {
  59885. "wingspan": {
  59886. name: "Wingspan",
  59887. power: 1,
  59888. type: "length",
  59889. base: math.unit(3.35, "meters")
  59890. },
  59891. },
  59892. form: "magpie",
  59893. },
  59894. hippogriff_dressed: {
  59895. height: math.unit(1.7, "meters"),
  59896. weight: math.unit(70, "kg"),
  59897. name: "Dressed",
  59898. image: {
  59899. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59900. extra: 710/689,
  59901. bottom: 67/777
  59902. },
  59903. form: "hippogriff",
  59904. default: true
  59905. },
  59906. hippogriff_nude: {
  59907. height: math.unit(1.7, "meters"),
  59908. weight: math.unit(70, "kg"),
  59909. name: "Nude",
  59910. image: {
  59911. source: "./media/characters/otreus/hippogriff-nude.svg",
  59912. extra: 710/689,
  59913. bottom: 67/777
  59914. },
  59915. form: "hippogriff",
  59916. },
  59917. hippogriff_dressedLewd: {
  59918. height: math.unit(1.7, "meters"),
  59919. weight: math.unit(70, "kg"),
  59920. name: "Dressed (Lewd)",
  59921. image: {
  59922. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59923. extra: 710/689,
  59924. bottom: 67/777
  59925. },
  59926. form: "hippogriff",
  59927. },
  59928. hippogriff_nudeLewd: {
  59929. height: math.unit(1.7, "meters"),
  59930. weight: math.unit(70, "kg"),
  59931. name: "Nude (Lewd)",
  59932. image: {
  59933. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59934. extra: 710/689,
  59935. bottom: 67/777
  59936. },
  59937. form: "hippogriff",
  59938. },
  59939. },
  59940. [
  59941. {
  59942. name: "Original Size",
  59943. height: math.unit(1.7, "meters"),
  59944. allForms: true
  59945. },
  59946. {
  59947. name: "Incognito Size",
  59948. height: math.unit(2, "meters"),
  59949. allForms: true
  59950. },
  59951. {
  59952. name: "Mega",
  59953. height: math.unit(2, "km"),
  59954. allForms: true
  59955. },
  59956. {
  59957. name: "Mega+",
  59958. height: math.unit(40, "km"),
  59959. allForms: true
  59960. },
  59961. {
  59962. name: "Giga",
  59963. height: math.unit(250, "km"),
  59964. allForms: true
  59965. },
  59966. {
  59967. name: "Giga+",
  59968. height: math.unit(3000, "km"),
  59969. allForms: true
  59970. },
  59971. {
  59972. name: "Terra",
  59973. height: math.unit(20000, "km"),
  59974. allForms: true
  59975. },
  59976. {
  59977. name: "Solar (Home Size)",
  59978. height: math.unit(3e6, "km"),
  59979. allForms: true,
  59980. default: true
  59981. },
  59982. ],
  59983. {
  59984. "magpie": {
  59985. name: "Magpie",
  59986. default: true
  59987. },
  59988. "hippogriff": {
  59989. name: "Hippogriff",
  59990. },
  59991. }
  59992. ))
  59993. characterMakers.push(() => makeCharacter(
  59994. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59995. {
  59996. frontDressed: {
  59997. height: math.unit(1.8, "meters"),
  59998. weight: math.unit(90, "kg"),
  59999. name: "Front (Dressed)",
  60000. image: {
  60001. source: "./media/characters/thalia/front-dressed.svg",
  60002. extra: 478/402,
  60003. bottom: 55/533
  60004. }
  60005. },
  60006. backDressed: {
  60007. height: math.unit(1.8, "meters"),
  60008. weight: math.unit(90, "kg"),
  60009. name: "Back (Dressed)",
  60010. image: {
  60011. source: "./media/characters/thalia/back-dressed.svg",
  60012. extra: 500/424,
  60013. bottom: 15/515
  60014. }
  60015. },
  60016. frontNude: {
  60017. height: math.unit(1.8, "meters"),
  60018. weight: math.unit(90, "kg"),
  60019. name: "Front (Nude)",
  60020. image: {
  60021. source: "./media/characters/thalia/front-nude.svg",
  60022. extra: 478/402,
  60023. bottom: 55/533
  60024. }
  60025. },
  60026. backNude: {
  60027. height: math.unit(1.8, "meters"),
  60028. weight: math.unit(90, "kg"),
  60029. name: "Back (Nude)",
  60030. image: {
  60031. source: "./media/characters/thalia/back-nude.svg",
  60032. extra: 500/424,
  60033. bottom: 15/515
  60034. }
  60035. },
  60036. },
  60037. [
  60038. {
  60039. name: "Incognito",
  60040. height: math.unit(3, "meters")
  60041. },
  60042. {
  60043. name: "Macro",
  60044. height: math.unit(500, "meters")
  60045. },
  60046. {
  60047. name: "Mega",
  60048. height: math.unit(5, "km")
  60049. },
  60050. {
  60051. name: "Mega+",
  60052. height: math.unit(30, "km")
  60053. },
  60054. {
  60055. name: "Giga",
  60056. height: math.unit(350, "km")
  60057. },
  60058. {
  60059. name: "Giga+",
  60060. height: math.unit(4000, "km")
  60061. },
  60062. {
  60063. name: "Terra",
  60064. height: math.unit(35000, "km")
  60065. },
  60066. {
  60067. name: "Original Size",
  60068. height: math.unit(130000, "km")
  60069. },
  60070. {
  60071. name: "Solar (Home Size)",
  60072. height: math.unit(4e6, "km"),
  60073. default: true
  60074. },
  60075. ]
  60076. ))
  60077. characterMakers.push(() => makeCharacter(
  60078. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  60079. {
  60080. front: {
  60081. height: math.unit(1.8, "meters"),
  60082. weight: math.unit(95, "kg"),
  60083. name: "Front",
  60084. image: {
  60085. source: "./media/characters/shango/front.svg",
  60086. extra: 1925/1774,
  60087. bottom: 67/1992
  60088. }
  60089. },
  60090. back: {
  60091. height: math.unit(1.8, "meters"),
  60092. weight: math.unit(95, "kg"),
  60093. name: "Back",
  60094. image: {
  60095. source: "./media/characters/shango/back.svg",
  60096. extra: 1915/1766,
  60097. bottom: 52/1967
  60098. }
  60099. },
  60100. frontLewd: {
  60101. height: math.unit(1.8, "meters"),
  60102. weight: math.unit(95, "kg"),
  60103. name: "Front (Lewd)",
  60104. image: {
  60105. source: "./media/characters/shango/front-lewd.svg",
  60106. extra: 1925/1774,
  60107. bottom: 67/1992
  60108. }
  60109. },
  60110. backLewd: {
  60111. height: math.unit(1.8, "meters"),
  60112. weight: math.unit(95, "kg"),
  60113. name: "Back (Lewd)",
  60114. image: {
  60115. source: "./media/characters/shango/back-lewd.svg",
  60116. extra: 1915/1766,
  60117. bottom: 52/1967
  60118. }
  60119. },
  60120. maw: {
  60121. height: math.unit(1.64, "feet"),
  60122. name: "Maw",
  60123. image: {
  60124. source: "./media/characters/shango/maw.svg"
  60125. }
  60126. },
  60127. dick: {
  60128. height: math.unit(2.14, "feet"),
  60129. name: "Dick",
  60130. image: {
  60131. source: "./media/characters/shango/dick.svg"
  60132. }
  60133. },
  60134. },
  60135. [
  60136. {
  60137. name: "Incognito",
  60138. height: math.unit(1.8, "meters")
  60139. },
  60140. {
  60141. name: "Home Size",
  60142. height: math.unit(60, "meters"),
  60143. default: true
  60144. },
  60145. {
  60146. name: "Macro",
  60147. height: math.unit(450, "meters")
  60148. },
  60149. {
  60150. name: "Mega",
  60151. height: math.unit(6, "km")
  60152. },
  60153. {
  60154. name: "Mega+",
  60155. height: math.unit(35, "km")
  60156. },
  60157. {
  60158. name: "Giga",
  60159. height: math.unit(500, "km")
  60160. },
  60161. {
  60162. name: "Giga+",
  60163. height: math.unit(5000, "km")
  60164. },
  60165. {
  60166. name: "Terra",
  60167. height: math.unit(60000, "km")
  60168. },
  60169. {
  60170. name: "Terra+",
  60171. height: math.unit(400000, "km")
  60172. },
  60173. ]
  60174. ))
  60175. characterMakers.push(() => makeCharacter(
  60176. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  60177. {
  60178. front: {
  60179. height: math.unit(2, "meters"),
  60180. weight: math.unit(95, "kg"),
  60181. name: "Front",
  60182. image: {
  60183. source: "./media/characters/osiris-gryphon/front.svg",
  60184. extra: 1508/1313,
  60185. bottom: 87/1595
  60186. }
  60187. },
  60188. back: {
  60189. height: math.unit(2, "meters"),
  60190. weight: math.unit(95, "kg"),
  60191. name: "Back",
  60192. image: {
  60193. source: "./media/characters/osiris-gryphon/back.svg",
  60194. extra: 1436/1309,
  60195. bottom: 64/1500
  60196. }
  60197. },
  60198. frontLewd: {
  60199. height: math.unit(2, "meters"),
  60200. weight: math.unit(95, "kg"),
  60201. name: "Front (Lewd)",
  60202. image: {
  60203. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60204. extra: 1508/1313,
  60205. bottom: 87/1595
  60206. }
  60207. },
  60208. wing: {
  60209. height: math.unit(6.3333, "feet"),
  60210. name: "Wing",
  60211. image: {
  60212. source: "./media/characters/osiris-gryphon/wing.svg"
  60213. }
  60214. },
  60215. },
  60216. [
  60217. {
  60218. name: "Incognito",
  60219. height: math.unit(2, "meters")
  60220. },
  60221. {
  60222. name: "Home Size",
  60223. height: math.unit(30, "meters"),
  60224. default: true
  60225. },
  60226. {
  60227. name: "Macro",
  60228. height: math.unit(100, "meters")
  60229. },
  60230. {
  60231. name: "Macro+",
  60232. height: math.unit(350, "meters")
  60233. },
  60234. {
  60235. name: "Mega",
  60236. height: math.unit(40, "km")
  60237. },
  60238. {
  60239. name: "Giga",
  60240. height: math.unit(300, "km")
  60241. },
  60242. {
  60243. name: "Giga+",
  60244. height: math.unit(2000, "km")
  60245. },
  60246. {
  60247. name: "Terra",
  60248. height: math.unit(30000, "km")
  60249. },
  60250. ]
  60251. ))
  60252. characterMakers.push(() => makeCharacter(
  60253. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60254. {
  60255. front: {
  60256. height: math.unit(2.5, "meters"),
  60257. weight: math.unit(200, "kg"),
  60258. name: "Front",
  60259. image: {
  60260. source: "./media/characters/atlas-dragon/front.svg",
  60261. extra: 745/462,
  60262. bottom: 36/781
  60263. }
  60264. },
  60265. back: {
  60266. height: math.unit(2.5, "meters"),
  60267. weight: math.unit(200, "kg"),
  60268. name: "Back",
  60269. image: {
  60270. source: "./media/characters/atlas-dragon/back.svg",
  60271. extra: 848/822,
  60272. bottom: 57/905
  60273. }
  60274. },
  60275. frontLewd: {
  60276. height: math.unit(2.5, "meters"),
  60277. weight: math.unit(200, "kg"),
  60278. name: "Front (Lewd)",
  60279. image: {
  60280. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60281. extra: 745/462,
  60282. bottom: 36/781
  60283. }
  60284. },
  60285. backLewd: {
  60286. height: math.unit(2.5, "meters"),
  60287. weight: math.unit(200, "kg"),
  60288. name: "Back (Lewd)",
  60289. image: {
  60290. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60291. extra: 848/822,
  60292. bottom: 57/905
  60293. }
  60294. },
  60295. },
  60296. [
  60297. {
  60298. name: "Incognito",
  60299. height: math.unit(2.5, "meters")
  60300. },
  60301. {
  60302. name: "Small Macro",
  60303. height: math.unit(50, "meters")
  60304. },
  60305. {
  60306. name: "Macro",
  60307. height: math.unit(350, "meters")
  60308. },
  60309. {
  60310. name: "Mega",
  60311. height: math.unit(5.5, "kilometers")
  60312. },
  60313. {
  60314. name: "Mega+",
  60315. height: math.unit(50, "km")
  60316. },
  60317. {
  60318. name: "Giga",
  60319. height: math.unit(350, "km")
  60320. },
  60321. {
  60322. name: "Giga+",
  60323. height: math.unit(2000, "km")
  60324. },
  60325. {
  60326. name: "Giga++",
  60327. height: math.unit(6500, "km")
  60328. },
  60329. {
  60330. name: "Terra",
  60331. height: math.unit(30000, "km")
  60332. },
  60333. {
  60334. name: "Terra+",
  60335. height: math.unit(250000, "km")
  60336. },
  60337. {
  60338. name: "True Size",
  60339. height: math.unit(100, "multiverses"),
  60340. default: true
  60341. },
  60342. ]
  60343. ))
  60344. characterMakers.push(() => makeCharacter(
  60345. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60346. {
  60347. front: {
  60348. height: math.unit(1.8, "m"),
  60349. weight: math.unit(120, "kg"),
  60350. name: "Front",
  60351. image: {
  60352. source: "./media/characters/chey/front.svg",
  60353. extra: 1359/1270,
  60354. bottom: 18/1377
  60355. }
  60356. },
  60357. arm: {
  60358. height: math.unit(2.05, "feet"),
  60359. name: "Arm",
  60360. image: {
  60361. source: "./media/characters/chey/arm.svg"
  60362. }
  60363. },
  60364. head: {
  60365. height: math.unit(1.89, "feet"),
  60366. name: "Head",
  60367. image: {
  60368. source: "./media/characters/chey/head.svg"
  60369. }
  60370. },
  60371. },
  60372. [
  60373. {
  60374. name: "Original Size",
  60375. height: math.unit(5, "cm")
  60376. },
  60377. {
  60378. name: "Incognito Size",
  60379. height: math.unit(2.4, "m")
  60380. },
  60381. {
  60382. name: "Home Size",
  60383. height: math.unit(200, "meters"),
  60384. default: true
  60385. },
  60386. {
  60387. name: "Mega",
  60388. height: math.unit(2, "km")
  60389. },
  60390. {
  60391. name: "Giga (Preferred Size)",
  60392. height: math.unit(2000, "km")
  60393. },
  60394. {
  60395. name: "Giga+",
  60396. height: math.unit(6000, "km")
  60397. },
  60398. {
  60399. name: "Terra",
  60400. height: math.unit(17000, "km")
  60401. },
  60402. {
  60403. name: "Terra+",
  60404. height: math.unit(75000, "km")
  60405. },
  60406. {
  60407. name: "Terra++",
  60408. height: math.unit(225000, "km")
  60409. },
  60410. ]
  60411. ))
  60412. characterMakers.push(() => makeCharacter(
  60413. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60414. {
  60415. side: {
  60416. height: math.unit(7.8, "meters"),
  60417. name: "Side",
  60418. image: {
  60419. source: "./media/characters/ragnarok/side.svg",
  60420. extra: 725/621,
  60421. bottom: 72/797
  60422. }
  60423. },
  60424. },
  60425. [
  60426. {
  60427. name: "Normal",
  60428. height: math.unit(7.8, "meters"),
  60429. default: true
  60430. },
  60431. ]
  60432. ))
  60433. characterMakers.push(() => makeCharacter(
  60434. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60435. {
  60436. hyena_front: {
  60437. height: math.unit(2.1, "meters"),
  60438. weight: math.unit(110, "kg"),
  60439. name: "Front",
  60440. image: {
  60441. source: "./media/characters/nima/hyena-front.svg",
  60442. extra: 1904/1796,
  60443. bottom: 67/1971
  60444. },
  60445. form: "hyena",
  60446. },
  60447. hyena_back: {
  60448. height: math.unit(2.1, "meters"),
  60449. weight: math.unit(110, "kg"),
  60450. name: "Back",
  60451. image: {
  60452. source: "./media/characters/nima/hyena-back.svg",
  60453. extra: 1964/1884,
  60454. bottom: 35/1999
  60455. },
  60456. form: "hyena",
  60457. },
  60458. shark_front: {
  60459. height: math.unit(1.95, "meters"),
  60460. weight: math.unit(110, "kg"),
  60461. name: "Front",
  60462. image: {
  60463. source: "./media/characters/nima/shark-front.svg",
  60464. extra: 2238/2013,
  60465. bottom: 0/223
  60466. },
  60467. form: "shark",
  60468. },
  60469. paw: {
  60470. height: math.unit(1, "feet"),
  60471. name: "Paw",
  60472. image: {
  60473. source: "./media/characters/nima/paw.svg"
  60474. }
  60475. },
  60476. circlet: {
  60477. height: math.unit(0.3, "feet"),
  60478. name: "Circlet",
  60479. image: {
  60480. source: "./media/characters/nima/circlet.svg"
  60481. }
  60482. },
  60483. necklace: {
  60484. height: math.unit(1.2, "feet"),
  60485. name: "Necklace",
  60486. image: {
  60487. source: "./media/characters/nima/necklace.svg"
  60488. }
  60489. },
  60490. bracelet: {
  60491. height: math.unit(0.51, "feet"),
  60492. name: "Bracelet",
  60493. image: {
  60494. source: "./media/characters/nima/bracelet.svg"
  60495. }
  60496. },
  60497. armband: {
  60498. height: math.unit(1.3, "feet"),
  60499. name: "Armband",
  60500. image: {
  60501. source: "./media/characters/nima/armband.svg"
  60502. }
  60503. },
  60504. },
  60505. [
  60506. {
  60507. name: "Incognito",
  60508. height: math.unit(2.1, "meters"),
  60509. allForms: true
  60510. },
  60511. {
  60512. name: "Small Macro",
  60513. height: math.unit(50, "meters"),
  60514. allForms: true
  60515. },
  60516. {
  60517. name: "Macro",
  60518. height: math.unit(200, "meters"),
  60519. allForms: true
  60520. },
  60521. {
  60522. name: "Mega",
  60523. height: math.unit(2.5, "km"),
  60524. allForms: true
  60525. },
  60526. {
  60527. name: "Mega+",
  60528. height: math.unit(30, "km"),
  60529. allForms: true
  60530. },
  60531. {
  60532. name: "Giga (Home Size)",
  60533. height: math.unit(400, "km"),
  60534. allForms: true,
  60535. default: true
  60536. },
  60537. {
  60538. name: "Giga+",
  60539. height: math.unit(2500, "km"),
  60540. allForms: true
  60541. },
  60542. {
  60543. name: "Giga++",
  60544. height: math.unit(8000, "km"),
  60545. allForms: true
  60546. },
  60547. {
  60548. name: "Terra",
  60549. height: math.unit(20000, "km"),
  60550. allForms: true
  60551. },
  60552. {
  60553. name: "Terra+",
  60554. height: math.unit(70000, "km"),
  60555. allForms: true
  60556. },
  60557. {
  60558. name: "Terra++",
  60559. height: math.unit(600000, "km"),
  60560. allForms: true
  60561. },
  60562. {
  60563. name: "Galactic",
  60564. height: math.unit(40, "galaxies"),
  60565. allForms: true
  60566. },
  60567. {
  60568. name: "Universal",
  60569. height: math.unit(40, "universes"),
  60570. allForms: true
  60571. },
  60572. ],
  60573. {
  60574. "hyena": {
  60575. name: "Hyena",
  60576. default: true
  60577. },
  60578. "shark": {
  60579. name: "Shark",
  60580. },
  60581. }
  60582. ))
  60583. characterMakers.push(() => makeCharacter(
  60584. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60585. {
  60586. anthro_front: {
  60587. height: math.unit(1.5, "meters"),
  60588. name: "Front",
  60589. image: {
  60590. source: "./media/characters/adelaide/anthro-front.svg",
  60591. extra: 860/783,
  60592. bottom: 60/920
  60593. },
  60594. form: "anthro",
  60595. default: true
  60596. },
  60597. hand: {
  60598. height: math.unit(0.65, "feet"),
  60599. name: "Hand",
  60600. image: {
  60601. source: "./media/characters/adelaide/hand.svg"
  60602. },
  60603. form: "anthro"
  60604. },
  60605. foot: {
  60606. height: math.unit(1.38 * 259 / 314, "feet"),
  60607. name: "Foot",
  60608. image: {
  60609. source: "./media/characters/adelaide/foot.svg",
  60610. extra: 259/259,
  60611. bottom: 55/314
  60612. },
  60613. form: "anthro"
  60614. },
  60615. feather: {
  60616. height: math.unit(0.85, "feet"),
  60617. name: "Feather",
  60618. image: {
  60619. source: "./media/characters/adelaide/feather.svg"
  60620. },
  60621. form: "anthro"
  60622. },
  60623. feral_side: {
  60624. height: math.unit(1, "meters"),
  60625. name: "Side",
  60626. image: {
  60627. source: "./media/characters/adelaide/feral-side.svg",
  60628. extra: 550/467,
  60629. bottom: 37/587
  60630. },
  60631. form: "feral",
  60632. default: true
  60633. },
  60634. feral_hand: {
  60635. height: math.unit(0.58, "feet"),
  60636. name: "Hand",
  60637. image: {
  60638. source: "./media/characters/adelaide/hand.svg"
  60639. },
  60640. form: "feral"
  60641. },
  60642. feral_foot: {
  60643. height: math.unit(1.2 * 259 / 314, "feet"),
  60644. name: "Foot",
  60645. image: {
  60646. source: "./media/characters/adelaide/foot.svg",
  60647. extra: 259/259,
  60648. bottom: 55/314
  60649. },
  60650. form: "feral"
  60651. },
  60652. feral_feather: {
  60653. height: math.unit(0.63, "feet"),
  60654. name: "Feather",
  60655. image: {
  60656. source: "./media/characters/adelaide/feather.svg"
  60657. },
  60658. form: "feral"
  60659. },
  60660. },
  60661. [
  60662. {
  60663. name: "Normal",
  60664. height: math.unit(1.5, "meters"),
  60665. form: "anthro",
  60666. default: true
  60667. },
  60668. {
  60669. name: "Normal",
  60670. height: math.unit(1, "meters"),
  60671. form: "feral",
  60672. default: true
  60673. },
  60674. ],
  60675. {
  60676. "anthro": {
  60677. name: "Anthro",
  60678. default: true
  60679. },
  60680. "feral": {
  60681. name: "Feral",
  60682. },
  60683. }
  60684. ))
  60685. characterMakers.push(() => makeCharacter(
  60686. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60687. {
  60688. front: {
  60689. height: math.unit(2.5, "meters"),
  60690. name: "Front",
  60691. image: {
  60692. source: "./media/characters/goa/front.svg",
  60693. extra: 1109/1013,
  60694. bottom: 150/1259
  60695. }
  60696. },
  60697. },
  60698. [
  60699. {
  60700. name: "Normal",
  60701. height: math.unit(2.5, "meters"),
  60702. default: true
  60703. },
  60704. ]
  60705. ))
  60706. characterMakers.push(() => makeCharacter(
  60707. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60708. {
  60709. front: {
  60710. height: math.unit(2, "meters"),
  60711. weight: math.unit(100, "kg"),
  60712. name: "Front",
  60713. image: {
  60714. source: "./media/characters/kiki-weavile/front.svg",
  60715. extra: 357/332,
  60716. bottom: 60/417
  60717. }
  60718. },
  60719. },
  60720. [
  60721. {
  60722. name: "Normal",
  60723. height: math.unit(2, "meters"),
  60724. default: true
  60725. },
  60726. ]
  60727. ))
  60728. characterMakers.push(() => makeCharacter(
  60729. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60730. {
  60731. side: {
  60732. height: math.unit(1.6, "meters"),
  60733. name: "Side",
  60734. image: {
  60735. source: "./media/characters/liza/side.svg",
  60736. extra: 943/915,
  60737. bottom: 72/1015
  60738. }
  60739. },
  60740. },
  60741. [
  60742. {
  60743. name: "Normal",
  60744. height: math.unit(1.6, "meters"),
  60745. default: true
  60746. },
  60747. ]
  60748. ))
  60749. characterMakers.push(() => makeCharacter(
  60750. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60751. {
  60752. side: {
  60753. height: math.unit(2.5, "meters"),
  60754. preyCapacity: math.unit(1, "people"),
  60755. name: "Side",
  60756. image: {
  60757. source: "./media/characters/persephone-sweetbreath/side.svg",
  60758. extra: 796/700,
  60759. bottom: 44/840
  60760. }
  60761. },
  60762. sideVore: {
  60763. height: math.unit(2.5, "meters"),
  60764. preyCapacity: math.unit(1, "people"),
  60765. name: "Side (Full)",
  60766. image: {
  60767. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60768. extra: 796/700,
  60769. bottom: 44/840
  60770. }
  60771. },
  60772. },
  60773. [
  60774. {
  60775. name: "Normal",
  60776. height: math.unit(2.5, "meters"),
  60777. default: true
  60778. },
  60779. ]
  60780. ))
  60781. characterMakers.push(() => makeCharacter(
  60782. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60783. {
  60784. front: {
  60785. height: math.unit(32, "meters"),
  60786. name: "Front",
  60787. image: {
  60788. source: "./media/characters/pierce/front.svg",
  60789. extra: 1695/1475,
  60790. bottom: 185/1880
  60791. }
  60792. },
  60793. side: {
  60794. height: math.unit(32, "meters"),
  60795. name: "Side",
  60796. image: {
  60797. source: "./media/characters/pierce/side.svg",
  60798. extra: 974/859,
  60799. bottom: 43/1017
  60800. }
  60801. },
  60802. frontWingless: {
  60803. height: math.unit(32, "meters"),
  60804. name: "Front (Wingless)",
  60805. image: {
  60806. source: "./media/characters/pierce/front-wingless.svg",
  60807. extra: 1695/1475,
  60808. bottom: 185/1880
  60809. }
  60810. },
  60811. sideWingless: {
  60812. height: math.unit(32, "meters"),
  60813. name: "Side (Wingless)",
  60814. image: {
  60815. source: "./media/characters/pierce/side-wingless.svg",
  60816. extra: 974/859,
  60817. bottom: 43/1017
  60818. }
  60819. },
  60820. maw: {
  60821. height: math.unit(19.3, "meters"),
  60822. name: "Maw",
  60823. image: {
  60824. source: "./media/characters/pierce/maw.svg"
  60825. }
  60826. },
  60827. },
  60828. [
  60829. {
  60830. name: "Small",
  60831. height: math.unit(8.5, "meters")
  60832. },
  60833. {
  60834. name: "Normal",
  60835. height: math.unit(32, "meters"),
  60836. default: true
  60837. },
  60838. ]
  60839. ))
  60840. characterMakers.push(() => makeCharacter(
  60841. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60842. {
  60843. front: {
  60844. height: math.unit(2.3, "meters"),
  60845. weight: math.unit(165, "kg"),
  60846. name: "Front",
  60847. image: {
  60848. source: "./media/characters/shira/front.svg",
  60849. extra: 924/919,
  60850. bottom: 17/941
  60851. },
  60852. form: "cobra",
  60853. default: true
  60854. },
  60855. back: {
  60856. height: math.unit(2.3, "meters"),
  60857. weight: math.unit(165, "kg"),
  60858. name: "Back",
  60859. image: {
  60860. source: "./media/characters/shira/back.svg",
  60861. extra: 928/922,
  60862. bottom: 18/946
  60863. },
  60864. form: "cobra"
  60865. },
  60866. frontLewd: {
  60867. height: math.unit(2.3, "meters"),
  60868. weight: math.unit(165, "kg"),
  60869. name: "Front (Lewd)",
  60870. image: {
  60871. source: "./media/characters/shira/front-lewd.svg",
  60872. extra: 924/919,
  60873. bottom: 17/941
  60874. },
  60875. form: "cobra"
  60876. },
  60877. backLewd: {
  60878. height: math.unit(2.3, "meters"),
  60879. weight: math.unit(165, "kg"),
  60880. name: "Back (Lewd)",
  60881. image: {
  60882. source: "./media/characters/shira/back-lewd.svg",
  60883. extra: 928/922,
  60884. bottom: 18/946
  60885. },
  60886. form: "cobra"
  60887. },
  60888. maw: {
  60889. height: math.unit(1.14, "feet"),
  60890. name: "Maw",
  60891. image: {
  60892. source: "./media/characters/shira/maw.svg"
  60893. },
  60894. form: "cobra"
  60895. },
  60896. magma_front: {
  60897. height: math.unit(2.3, "meters"),
  60898. weight: math.unit(165, "kg"),
  60899. name: "Front",
  60900. image: {
  60901. source: "./media/characters/shira/magma-front.svg",
  60902. extra: 1870/1693,
  60903. bottom: 24/1894
  60904. },
  60905. form: "magma",
  60906. },
  60907. magma_back: {
  60908. height: math.unit(2.3, "meters"),
  60909. weight: math.unit(165, "kg"),
  60910. name: "Back",
  60911. image: {
  60912. source: "./media/characters/shira/magma-back.svg",
  60913. extra: 1918/1756,
  60914. bottom: 46/1964
  60915. },
  60916. form: "magma",
  60917. },
  60918. },
  60919. [
  60920. {
  60921. name: "Incognito",
  60922. height: math.unit(2.3, "meters"),
  60923. allForms: true
  60924. },
  60925. {
  60926. name: "Home Size",
  60927. height: math.unit(150, "meters"),
  60928. default: true,
  60929. allForms: true
  60930. },
  60931. {
  60932. name: "Macro",
  60933. height: math.unit(2, "km"),
  60934. allForms: true
  60935. },
  60936. {
  60937. name: "Mega",
  60938. height: math.unit(30, "km"),
  60939. allForms: true
  60940. },
  60941. {
  60942. name: "Giga",
  60943. height: math.unit(450, "km"),
  60944. allForms: true
  60945. },
  60946. {
  60947. name: "Giga+",
  60948. height: math.unit(3000, "km"),
  60949. allForms: true
  60950. },
  60951. {
  60952. name: "Giga++",
  60953. height: math.unit(6000, "km"),
  60954. allForms: true
  60955. },
  60956. {
  60957. name: "Terra",
  60958. height: math.unit(80000, "km"),
  60959. allForms: true
  60960. },
  60961. {
  60962. name: "Terra+",
  60963. height: math.unit(350000, "km"),
  60964. allForms: true
  60965. },
  60966. {
  60967. name: "Solar",
  60968. height: math.unit(1e6, "km"),
  60969. allForms: true
  60970. },
  60971. ],
  60972. {
  60973. "cobra": {
  60974. name: "Cobra",
  60975. default: true
  60976. },
  60977. "magma": {
  60978. name: "Magma Dragon",
  60979. },
  60980. }
  60981. ))
  60982. characterMakers.push(() => makeCharacter(
  60983. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60984. {
  60985. front: {
  60986. height: math.unit(2, "meters"),
  60987. weight: math.unit(160, "kg"),
  60988. name: "Front",
  60989. image: {
  60990. source: "./media/characters/daxerios/front.svg",
  60991. extra: 1334/1277,
  60992. bottom: 45/1379
  60993. }
  60994. },
  60995. frontLewd: {
  60996. height: math.unit(2, "meters"),
  60997. weight: math.unit(160, "kg"),
  60998. name: "Front (Lewd)",
  60999. image: {
  61000. source: "./media/characters/daxerios/front-lewd.svg",
  61001. extra: 1334/1277,
  61002. bottom: 45/1379
  61003. }
  61004. },
  61005. dick: {
  61006. height: math.unit(2.35, "feet"),
  61007. name: "Dick",
  61008. image: {
  61009. source: "./media/characters/daxerios/dick.svg"
  61010. }
  61011. },
  61012. },
  61013. [
  61014. {
  61015. name: "\"Small\"",
  61016. height: math.unit(5, "meters")
  61017. },
  61018. {
  61019. name: "Original Size",
  61020. height: math.unit(500, "meters"),
  61021. default: true
  61022. },
  61023. {
  61024. name: "Mega",
  61025. height: math.unit(2, "km")
  61026. },
  61027. {
  61028. name: "Mega+",
  61029. height: math.unit(35, "km")
  61030. },
  61031. {
  61032. name: "Giga",
  61033. height: math.unit(250, "km")
  61034. },
  61035. {
  61036. name: "Giga+",
  61037. height: math.unit(3000, "km")
  61038. },
  61039. {
  61040. name: "Terra",
  61041. height: math.unit(25000, "km")
  61042. },
  61043. {
  61044. name: "Terra+",
  61045. height: math.unit(300000, "km")
  61046. },
  61047. {
  61048. name: "Solar",
  61049. height: math.unit(1e6, "km")
  61050. },
  61051. ]
  61052. ))
  61053. characterMakers.push(() => makeCharacter(
  61054. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  61055. {
  61056. front: {
  61057. height: math.unit(8 + 4/12, "feet"),
  61058. weight: math.unit(464, "lb"),
  61059. name: "Front",
  61060. image: {
  61061. source: "./media/characters/caveat/front.svg",
  61062. extra: 1861/1678,
  61063. bottom: 40/1901
  61064. }
  61065. },
  61066. },
  61067. [
  61068. {
  61069. name: "Normal",
  61070. height: math.unit(8 + 4/12, "feet"),
  61071. default: true
  61072. },
  61073. ]
  61074. ))
  61075. characterMakers.push(() => makeCharacter(
  61076. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  61077. {
  61078. front: {
  61079. height: math.unit(12, "feet"),
  61080. weight: math.unit(1800, "lb"),
  61081. name: "Front",
  61082. image: {
  61083. source: "./media/characters/centbair/front.svg",
  61084. extra: 781/663,
  61085. bottom: 25/806
  61086. }
  61087. },
  61088. frontNsfw: {
  61089. height: math.unit(12, "feet"),
  61090. weight: math.unit(1800, "lb"),
  61091. name: "Front (NSFW)",
  61092. image: {
  61093. source: "./media/characters/centbair/front-nsfw.svg",
  61094. extra: 781/663,
  61095. bottom: 25/806
  61096. }
  61097. },
  61098. back: {
  61099. height: math.unit(12, "feet"),
  61100. weight: math.unit(1800, "lb"),
  61101. name: "Back",
  61102. image: {
  61103. source: "./media/characters/centbair/back.svg",
  61104. extra: 808/761,
  61105. bottom: 19/827
  61106. }
  61107. },
  61108. dick: {
  61109. height: math.unit(6.5, "feet"),
  61110. name: "Dick",
  61111. image: {
  61112. source: "./media/characters/centbair/dick.svg"
  61113. }
  61114. },
  61115. slit: {
  61116. height: math.unit(3.25, "feet"),
  61117. name: "Slit",
  61118. image: {
  61119. source: "./media/characters/centbair/slit.svg"
  61120. }
  61121. },
  61122. },
  61123. [
  61124. {
  61125. name: "Normal",
  61126. height: math.unit(12, "feet"),
  61127. default: true
  61128. },
  61129. ]
  61130. ))
  61131. characterMakers.push(() => makeCharacter(
  61132. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  61133. {
  61134. front: {
  61135. height: math.unit(5 + 7/12, "feet"),
  61136. name: "Front",
  61137. image: {
  61138. source: "./media/characters/andy/front.svg",
  61139. extra: 634/588,
  61140. bottom: 36/670
  61141. },
  61142. extraAttributes: {
  61143. "pawLength": {
  61144. name: "Paw Length",
  61145. power: 1,
  61146. type: "length",
  61147. base: math.unit(1, "feet")
  61148. },
  61149. }
  61150. },
  61151. side: {
  61152. height: math.unit(5 + 7/12, "feet"),
  61153. name: "Side",
  61154. image: {
  61155. source: "./media/characters/andy/side.svg",
  61156. extra: 641/596,
  61157. bottom: 34/675
  61158. },
  61159. extraAttributes: {
  61160. "pawLength": {
  61161. name: "Paw Length",
  61162. power: 1,
  61163. type: "length",
  61164. base: math.unit(1, "feet")
  61165. },
  61166. }
  61167. },
  61168. back: {
  61169. height: math.unit(5 + 7/12, "feet"),
  61170. name: "Back",
  61171. image: {
  61172. source: "./media/characters/andy/back.svg",
  61173. extra: 618/583,
  61174. bottom: 39/657
  61175. },
  61176. extraAttributes: {
  61177. "pawLength": {
  61178. name: "Paw Length",
  61179. power: 1,
  61180. type: "length",
  61181. base: math.unit(1, "feet")
  61182. },
  61183. }
  61184. },
  61185. paw: {
  61186. height: math.unit(1.13, "feet"),
  61187. name: "Paw",
  61188. image: {
  61189. source: "./media/characters/andy/paw.svg"
  61190. }
  61191. },
  61192. },
  61193. [
  61194. {
  61195. name: "Micro",
  61196. height: math.unit(4, "inches")
  61197. },
  61198. {
  61199. name: "Normal",
  61200. height: math.unit(5 + 7/12, "feet"),
  61201. default: true
  61202. },
  61203. {
  61204. name: "Macro",
  61205. height: math.unit(390.42, "feet")
  61206. },
  61207. ]
  61208. ))
  61209. characterMakers.push(() => makeCharacter(
  61210. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61211. {
  61212. front: {
  61213. height: math.unit(7, "feet"),
  61214. weight: math.unit(250, "lb"),
  61215. name: "Front",
  61216. image: {
  61217. source: "./media/characters/vix-titan/front.svg",
  61218. extra: 460/428,
  61219. bottom: 15/475
  61220. },
  61221. extraAttributes: {
  61222. "pawWidth": {
  61223. name: "Paw Width",
  61224. power: 1,
  61225. type: "length",
  61226. base: math.unit(0.75, "feet")
  61227. },
  61228. }
  61229. },
  61230. },
  61231. [
  61232. {
  61233. name: "Normal",
  61234. height: math.unit(7, "feet"),
  61235. default: true
  61236. },
  61237. {
  61238. name: "Giant",
  61239. height: math.unit(1500, "feet")
  61240. },
  61241. {
  61242. name: "Mega",
  61243. height: math.unit(10, "miles")
  61244. },
  61245. {
  61246. name: "Giga",
  61247. height: math.unit(150, "miles")
  61248. },
  61249. {
  61250. name: "Tera",
  61251. height: math.unit(144000, "miles")
  61252. },
  61253. ]
  61254. ))
  61255. characterMakers.push(() => makeCharacter(
  61256. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61257. {
  61258. front: {
  61259. height: math.unit(6 + 2/12, "feet"),
  61260. name: "Front",
  61261. image: {
  61262. source: "./media/characters/reiku/front.svg",
  61263. extra: 1910/1757,
  61264. bottom: 103/2013
  61265. },
  61266. extraAttributes: {
  61267. "thighThickness": {
  61268. name: "Thigh Thickness",
  61269. power: 1,
  61270. type: "length",
  61271. base: math.unit(1.12, "feet")
  61272. },
  61273. "assThickness": {
  61274. name: "Ass Thickness",
  61275. power: 1,
  61276. type: "length",
  61277. base: math.unit(1.12*2, "feet")
  61278. },
  61279. }
  61280. },
  61281. side: {
  61282. height: math.unit(6 + 2/12, "feet"),
  61283. name: "Side",
  61284. image: {
  61285. source: "./media/characters/reiku/side.svg",
  61286. extra: 1846/1748,
  61287. bottom: 99/1945
  61288. },
  61289. extraAttributes: {
  61290. "thighThickness": {
  61291. name: "Thigh Thickness",
  61292. power: 1,
  61293. type: "length",
  61294. base: math.unit(1.12, "feet")
  61295. },
  61296. "assThickness": {
  61297. name: "Ass Thickness",
  61298. power: 1,
  61299. type: "length",
  61300. base: math.unit(1.12*2, "feet")
  61301. },
  61302. }
  61303. },
  61304. back: {
  61305. height: math.unit(6 + 2/12, "feet"),
  61306. name: "Back",
  61307. image: {
  61308. source: "./media/characters/reiku/back.svg",
  61309. extra: 1941/1786,
  61310. bottom: 34/1975
  61311. },
  61312. extraAttributes: {
  61313. "thighThickness": {
  61314. name: "Thigh Thickness",
  61315. power: 1,
  61316. type: "length",
  61317. base: math.unit(1.12, "feet")
  61318. },
  61319. "assThickness": {
  61320. name: "Ass Thickness",
  61321. power: 1,
  61322. type: "length",
  61323. base: math.unit(1.12*2, "feet")
  61324. },
  61325. }
  61326. },
  61327. head: {
  61328. height: math.unit(1.8, "feet"),
  61329. name: "Head",
  61330. image: {
  61331. source: "./media/characters/reiku/head.svg"
  61332. }
  61333. },
  61334. tailTop: {
  61335. height: math.unit(8.4, "feet"),
  61336. name: "Tail (Top)",
  61337. image: {
  61338. source: "./media/characters/reiku/tail-top.svg"
  61339. }
  61340. },
  61341. tailBottom: {
  61342. height: math.unit(8.4, "feet"),
  61343. name: "Tail (Bottom)",
  61344. image: {
  61345. source: "./media/characters/reiku/tail-bottom.svg"
  61346. }
  61347. },
  61348. foot: {
  61349. height: math.unit(2.6, "feet"),
  61350. name: "Foot",
  61351. image: {
  61352. source: "./media/characters/reiku/foot.svg"
  61353. }
  61354. },
  61355. footCurled: {
  61356. height: math.unit(2.3, "feet"),
  61357. name: "Foot (Curled)",
  61358. image: {
  61359. source: "./media/characters/reiku/foot-curled.svg"
  61360. }
  61361. },
  61362. footSide: {
  61363. height: math.unit(1.26, "feet"),
  61364. name: "Foot (Side)",
  61365. image: {
  61366. source: "./media/characters/reiku/foot-side.svg"
  61367. }
  61368. },
  61369. },
  61370. [
  61371. {
  61372. name: "Normal",
  61373. height: math.unit(6 + 2/12, "feet"),
  61374. default: true
  61375. },
  61376. ]
  61377. ))
  61378. characterMakers.push(() => makeCharacter(
  61379. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61380. {
  61381. front: {
  61382. height: math.unit(7, "feet"),
  61383. weight: math.unit(500, "kg"),
  61384. name: "Front",
  61385. image: {
  61386. source: "./media/characters/cialda/front.svg",
  61387. extra: 912/745,
  61388. bottom: 55/967
  61389. }
  61390. },
  61391. },
  61392. [
  61393. {
  61394. name: "Normal",
  61395. height: math.unit(7, "feet"),
  61396. default: true
  61397. },
  61398. ]
  61399. ))
  61400. characterMakers.push(() => makeCharacter(
  61401. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61402. {
  61403. side: {
  61404. height: math.unit(6, "feet"),
  61405. weight: math.unit(600, "lb"),
  61406. preyCapacity: math.unit(25, "liters"),
  61407. name: "Side",
  61408. image: {
  61409. source: "./media/characters/darkkin/side.svg",
  61410. extra: 1597/1447,
  61411. bottom: 101/1698
  61412. }
  61413. },
  61414. },
  61415. [
  61416. {
  61417. name: "Canon Height",
  61418. height: math.unit(568, "feet"),
  61419. default: true
  61420. },
  61421. ]
  61422. ))
  61423. characterMakers.push(() => makeCharacter(
  61424. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61425. {
  61426. front: {
  61427. height: math.unit(6, "feet"),
  61428. weight: math.unit(1500, "lb"),
  61429. preyCapacity: math.unit(3, "people"),
  61430. name: "Front",
  61431. image: {
  61432. source: "./media/characters/livnia/front.svg",
  61433. extra: 934/932,
  61434. bottom: 83/1017
  61435. }
  61436. },
  61437. back: {
  61438. height: math.unit(6, "feet"),
  61439. weight: math.unit(1500, "lb"),
  61440. preyCapacity: math.unit(3, "people"),
  61441. name: "Back",
  61442. image: {
  61443. source: "./media/characters/livnia/back.svg",
  61444. extra: 916/915,
  61445. bottom: 58/974
  61446. }
  61447. },
  61448. head: {
  61449. height: math.unit(1.53, "feet"),
  61450. name: "Head",
  61451. image: {
  61452. source: "./media/characters/livnia/head.svg"
  61453. }
  61454. },
  61455. maw: {
  61456. height: math.unit(0.78, "feet"),
  61457. name: "Maw",
  61458. image: {
  61459. source: "./media/characters/livnia/maw.svg"
  61460. }
  61461. },
  61462. genitals: {
  61463. height: math.unit(0.35, "feet"),
  61464. name: "Genitals",
  61465. image: {
  61466. source: "./media/characters/livnia/genitals.svg"
  61467. }
  61468. },
  61469. },
  61470. [
  61471. {
  61472. name: "Normal",
  61473. height: math.unit(1000, "feet"),
  61474. default: true
  61475. },
  61476. ]
  61477. ))
  61478. characterMakers.push(() => makeCharacter(
  61479. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61480. {
  61481. front: {
  61482. height: math.unit(4, "feet"),
  61483. weight: math.unit(73, "lb"),
  61484. name: "Front",
  61485. image: {
  61486. source: "./media/characters/hayaku/front.svg",
  61487. extra: 1011/888,
  61488. bottom: 33/1044
  61489. }
  61490. },
  61491. back: {
  61492. height: math.unit(4, "feet"),
  61493. weight: math.unit(73, "lb"),
  61494. name: "Back",
  61495. image: {
  61496. source: "./media/characters/hayaku/back.svg",
  61497. extra: 1040/930,
  61498. bottom: 20/1060
  61499. }
  61500. },
  61501. },
  61502. [
  61503. {
  61504. name: "Normal",
  61505. height: math.unit(4, "feet"),
  61506. default: true
  61507. },
  61508. ]
  61509. ))
  61510. characterMakers.push(() => makeCharacter(
  61511. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61512. {
  61513. front: {
  61514. height: math.unit(6 + 7/12, "feet"),
  61515. weight: math.unit(300, "lb"),
  61516. name: "Front",
  61517. image: {
  61518. source: "./media/characters/athena-bryzant/front.svg",
  61519. extra: 870/835,
  61520. bottom: 33/903
  61521. }
  61522. },
  61523. back: {
  61524. height: math.unit(6 + 7/12, "feet"),
  61525. weight: math.unit(300, "lb"),
  61526. name: "Back",
  61527. image: {
  61528. source: "./media/characters/athena-bryzant/back.svg",
  61529. extra: 858/823,
  61530. bottom: 30/888
  61531. }
  61532. },
  61533. head: {
  61534. height: math.unit(2.38, "feet"),
  61535. name: "Head",
  61536. image: {
  61537. source: "./media/characters/athena-bryzant/head.svg"
  61538. }
  61539. },
  61540. wings: {
  61541. height: math.unit(2.85, "feet"),
  61542. name: "Wings",
  61543. image: {
  61544. source: "./media/characters/athena-bryzant/wings.svg"
  61545. }
  61546. },
  61547. },
  61548. [
  61549. {
  61550. name: "Normal",
  61551. height: math.unit(6 + 7/12, "feet"),
  61552. default: true
  61553. },
  61554. {
  61555. name: "Big",
  61556. height: math.unit(8, "feet")
  61557. },
  61558. {
  61559. name: "Very Big",
  61560. height: math.unit(11, "feet")
  61561. },
  61562. ]
  61563. ))
  61564. characterMakers.push(() => makeCharacter(
  61565. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61566. {
  61567. side: {
  61568. height: math.unit(3, "meters"),
  61569. weight: math.unit(7500, "kg"),
  61570. preyCapacity: math.unit(1e12, "people"),
  61571. name: "Side",
  61572. image: {
  61573. source: "./media/characters/zel-kesh/side.svg",
  61574. extra: 910/407,
  61575. bottom: 147/1057
  61576. }
  61577. },
  61578. },
  61579. [
  61580. {
  61581. name: "Normal",
  61582. height: math.unit(3, "meters"),
  61583. default: true
  61584. },
  61585. ]
  61586. ))
  61587. characterMakers.push(() => makeCharacter(
  61588. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61589. {
  61590. front: {
  61591. height: math.unit(2, "meters"),
  61592. weight: math.unit(95, "kg"),
  61593. name: "Front",
  61594. image: {
  61595. source: "./media/characters/kane-fox/front.svg",
  61596. extra: 945/888,
  61597. bottom: 27/972
  61598. }
  61599. },
  61600. back: {
  61601. height: math.unit(2, "meters"),
  61602. weight: math.unit(95, "kg"),
  61603. name: "Back",
  61604. image: {
  61605. source: "./media/characters/kane-fox/back.svg",
  61606. extra: 959/914,
  61607. bottom: 15/974
  61608. }
  61609. },
  61610. frontLewd: {
  61611. height: math.unit(2, "meters"),
  61612. weight: math.unit(95, "kg"),
  61613. name: "Front (Lewd)",
  61614. image: {
  61615. source: "./media/characters/kane-fox/front-lewd.svg",
  61616. extra: 945/888,
  61617. bottom: 27/972
  61618. }
  61619. },
  61620. },
  61621. [
  61622. {
  61623. name: "Home Size",
  61624. height: math.unit(2, "meters"),
  61625. default: true
  61626. },
  61627. {
  61628. name: "Macro",
  61629. height: math.unit(200, "meters")
  61630. },
  61631. {
  61632. name: "Small Mega",
  61633. height: math.unit(3, "km")
  61634. },
  61635. {
  61636. name: "Mega",
  61637. height: math.unit(50, "km")
  61638. },
  61639. {
  61640. name: "Giga",
  61641. height: math.unit(200, "km")
  61642. },
  61643. {
  61644. name: "Giga+",
  61645. height: math.unit(2500, "km")
  61646. },
  61647. {
  61648. name: "Terra",
  61649. height: math.unit(70000, "km")
  61650. },
  61651. {
  61652. name: "Terra+",
  61653. height: math.unit(150000, "km")
  61654. },
  61655. {
  61656. name: "Terra++",
  61657. height: math.unit(400000, "km")
  61658. },
  61659. ]
  61660. ))
  61661. characterMakers.push(() => makeCharacter(
  61662. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61663. {
  61664. otter_front: {
  61665. height: math.unit(1.8, "meters"),
  61666. weight: math.unit(90, "kg"),
  61667. name: "Front",
  61668. image: {
  61669. source: "./media/characters/ayranus/otter-front.svg",
  61670. extra: 468/452,
  61671. bottom: 43/511
  61672. },
  61673. form: "otter",
  61674. },
  61675. otter_frontLewd: {
  61676. height: math.unit(1.8, "meters"),
  61677. weight: math.unit(90, "kg"),
  61678. name: "Front (Lewd)",
  61679. image: {
  61680. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61681. extra: 468/452,
  61682. bottom: 43/511
  61683. },
  61684. form: "otter",
  61685. },
  61686. lionbat_front: {
  61687. height: math.unit(1.8, "meters"),
  61688. weight: math.unit(90, "kg"),
  61689. name: "Front (Lewd)",
  61690. image: {
  61691. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61692. extra: 797/740,
  61693. bottom: 78/875
  61694. },
  61695. form: "lionbat",
  61696. },
  61697. paw: {
  61698. height: math.unit(1.5, "feet"),
  61699. name: "Paw",
  61700. image: {
  61701. source: "./media/characters/ayranus/paw.svg"
  61702. },
  61703. },
  61704. },
  61705. [
  61706. {
  61707. name: "Incognito",
  61708. height: math.unit(1.8, "meters"),
  61709. allForms: true
  61710. },
  61711. {
  61712. name: "Macro",
  61713. height: math.unit(60, "meters"),
  61714. allForms: true
  61715. },
  61716. {
  61717. name: "Macro+",
  61718. height: math.unit(200, "meters"),
  61719. allForms: true
  61720. },
  61721. {
  61722. name: "Mega",
  61723. height: math.unit(35, "km"),
  61724. allForms: true
  61725. },
  61726. {
  61727. name: "Giga",
  61728. height: math.unit(220, "km"),
  61729. allForms: true
  61730. },
  61731. {
  61732. name: "Giga+",
  61733. height: math.unit(1500, "km"),
  61734. allForms: true
  61735. },
  61736. {
  61737. name: "Terra",
  61738. height: math.unit(13000, "km"),
  61739. allForms: true
  61740. },
  61741. {
  61742. name: "Terra+",
  61743. height: math.unit(500000, "km"),
  61744. allForms: true
  61745. },
  61746. {
  61747. name: "Galactic",
  61748. height: math.unit(486080, "parsecs"),
  61749. default: true,
  61750. allForms: true
  61751. },
  61752. ],
  61753. {
  61754. "otter": {
  61755. name: "Otter",
  61756. default: true
  61757. },
  61758. "lionbat": {
  61759. name: "Lionbat",
  61760. },
  61761. }
  61762. ))
  61763. characterMakers.push(() => makeCharacter(
  61764. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61765. {
  61766. front: {
  61767. height: math.unit(7 + 4/12, "feet"),
  61768. weight: math.unit(400, "lb"),
  61769. name: "Front",
  61770. image: {
  61771. source: "./media/characters/proxy/front.svg",
  61772. extra: 1605/1542,
  61773. bottom: 55/1660
  61774. }
  61775. },
  61776. side: {
  61777. height: math.unit(7 + 4/12, "feet"),
  61778. weight: math.unit(400, "lb"),
  61779. name: "Side",
  61780. image: {
  61781. source: "./media/characters/proxy/side.svg",
  61782. extra: 794/759,
  61783. bottom: 6/800
  61784. }
  61785. },
  61786. hand: {
  61787. height: math.unit(1.54, "feet"),
  61788. name: "Hand",
  61789. image: {
  61790. source: "./media/characters/proxy/hand.svg"
  61791. }
  61792. },
  61793. paw: {
  61794. height: math.unit(1.53, "feet"),
  61795. name: "Paw",
  61796. image: {
  61797. source: "./media/characters/proxy/paw.svg"
  61798. }
  61799. },
  61800. maw: {
  61801. height: math.unit(1.9, "feet"),
  61802. name: "Maw",
  61803. image: {
  61804. source: "./media/characters/proxy/maw.svg"
  61805. }
  61806. },
  61807. },
  61808. [
  61809. {
  61810. name: "Normal",
  61811. height: math.unit(7 + 4/12, "feet"),
  61812. default: true
  61813. },
  61814. ]
  61815. ))
  61816. characterMakers.push(() => makeCharacter(
  61817. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61818. {
  61819. front: {
  61820. height: math.unit(4, "meters"),
  61821. name: "Front",
  61822. image: {
  61823. source: "./media/characters/crocozilla/front.svg",
  61824. extra: 1790/1742,
  61825. bottom: 78/1868
  61826. }
  61827. },
  61828. },
  61829. [
  61830. {
  61831. name: "Normal",
  61832. height: math.unit(4, "meters"),
  61833. default: true
  61834. },
  61835. ]
  61836. ))
  61837. characterMakers.push(() => makeCharacter(
  61838. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61839. {
  61840. front: {
  61841. height: math.unit(1.8, "meters"),
  61842. weight: math.unit(120, "kg"),
  61843. name: "Front",
  61844. image: {
  61845. source: "./media/characters/kurz/front.svg",
  61846. extra: 1960/1824,
  61847. bottom: 41/2001
  61848. }
  61849. },
  61850. back: {
  61851. height: math.unit(1.8, "meters"),
  61852. weight: math.unit(120, "kg"),
  61853. name: "Back",
  61854. image: {
  61855. source: "./media/characters/kurz/back.svg",
  61856. extra: 1906/1787,
  61857. bottom: 60/1966
  61858. }
  61859. },
  61860. frontLewd: {
  61861. height: math.unit(1.8, "meters"),
  61862. weight: math.unit(120, "kg"),
  61863. name: "Front (Lewd)",
  61864. image: {
  61865. source: "./media/characters/kurz/front-lewd.svg",
  61866. extra: 1960/1824,
  61867. bottom: 41/2001
  61868. }
  61869. },
  61870. maw: {
  61871. height: math.unit(0.69, "meters"),
  61872. name: "Maw",
  61873. image: {
  61874. source: "./media/characters/kurz/maw.svg"
  61875. }
  61876. },
  61877. },
  61878. [
  61879. {
  61880. name: "Original Size",
  61881. height: math.unit(1.8, "meters")
  61882. },
  61883. {
  61884. name: "Incognito Size",
  61885. height: math.unit(2.4, "meters"),
  61886. default: true
  61887. },
  61888. {
  61889. name: "Macro",
  61890. height: math.unit(30, "meters")
  61891. },
  61892. {
  61893. name: "Macro+",
  61894. height: math.unit(250, "meters")
  61895. },
  61896. {
  61897. name: "Mega",
  61898. height: math.unit(2, "km")
  61899. },
  61900. {
  61901. name: "Mega+",
  61902. height: math.unit(35, "km")
  61903. },
  61904. {
  61905. name: "Mega++",
  61906. height: math.unit(75, "km")
  61907. },
  61908. {
  61909. name: "Giga",
  61910. height: math.unit(250, "km")
  61911. },
  61912. {
  61913. name: "Terra",
  61914. height: math.unit(15000, "km")
  61915. },
  61916. {
  61917. name: "Terra+",
  61918. height: math.unit(2250000, "km")
  61919. },
  61920. ]
  61921. ))
  61922. characterMakers.push(() => makeCharacter(
  61923. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61924. {
  61925. front: {
  61926. height: math.unit(16 + 3/12, "feet"),
  61927. weight: math.unit(3575, "lb"),
  61928. name: "Front",
  61929. image: {
  61930. source: "./media/characters/nikita/front.svg",
  61931. extra: 1064/955,
  61932. bottom: 47/1111
  61933. }
  61934. },
  61935. },
  61936. [
  61937. {
  61938. name: "Normal",
  61939. height: math.unit(16 + 3/12, "feet"),
  61940. default: true
  61941. },
  61942. {
  61943. name: "Big",
  61944. height: math.unit(21, "feet")
  61945. },
  61946. {
  61947. name: "Biggest",
  61948. height: math.unit(50, "feet")
  61949. },
  61950. ]
  61951. ))
  61952. characterMakers.push(() => makeCharacter(
  61953. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61954. {
  61955. front: {
  61956. height: math.unit(1.92, "m"),
  61957. weight: math.unit(76, "kg"),
  61958. name: "Front",
  61959. image: {
  61960. source: "./media/characters/kyara/front.svg",
  61961. extra: 1550/1438,
  61962. bottom: 139/1689
  61963. }
  61964. },
  61965. back: {
  61966. height: math.unit(1.92, "m"),
  61967. weight: math.unit(76, "kg"),
  61968. name: "Back",
  61969. image: {
  61970. source: "./media/characters/kyara/back.svg",
  61971. extra: 1523/1427,
  61972. bottom: 83/1606
  61973. }
  61974. },
  61975. head: {
  61976. height: math.unit(1.22, "feet"),
  61977. name: "Head",
  61978. image: {
  61979. source: "./media/characters/kyara/head.svg"
  61980. }
  61981. },
  61982. maw: {
  61983. height: math.unit(0.73, "feet"),
  61984. name: "Maw",
  61985. image: {
  61986. source: "./media/characters/kyara/maw.svg"
  61987. }
  61988. },
  61989. paws: {
  61990. height: math.unit(0.95, "feet"),
  61991. name: "Paws",
  61992. image: {
  61993. source: "./media/characters/kyara/paws.svg"
  61994. }
  61995. },
  61996. },
  61997. [
  61998. {
  61999. name: "Normal",
  62000. height: math.unit(1.92, "meters"),
  62001. default: true
  62002. },
  62003. {
  62004. name: "Mini Macro",
  62005. height: math.unit(192, "meters")
  62006. },
  62007. {
  62008. name: "Macro",
  62009. height: math.unit(480, "meters")
  62010. },
  62011. {
  62012. name: "Mega Macro",
  62013. height: math.unit(1440, "meters")
  62014. },
  62015. ]
  62016. ))
  62017. characterMakers.push(() => makeCharacter(
  62018. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  62019. {
  62020. front: {
  62021. height: math.unit(6, "feet"),
  62022. weight: math.unit(160, "lbs"),
  62023. preyCapacity: math.unit(0.05, "people"),
  62024. name: "Front",
  62025. image: {
  62026. source: "./media/characters/layla-amari/front.svg",
  62027. extra: 1922/1723,
  62028. bottom: 90/2012
  62029. }
  62030. },
  62031. back: {
  62032. height: math.unit(6, "feet"),
  62033. weight: math.unit(160, "lbs"),
  62034. preyCapacity: math.unit(0.05, "people"),
  62035. name: "Back",
  62036. image: {
  62037. source: "./media/characters/layla-amari/back.svg",
  62038. extra: 1917/1718,
  62039. bottom: 50/1967
  62040. }
  62041. },
  62042. frontDressed: {
  62043. height: math.unit(6, "feet"),
  62044. weight: math.unit(160, "lbs"),
  62045. preyCapacity: math.unit(0.05, "people"),
  62046. name: "Front (Dressed)",
  62047. image: {
  62048. source: "./media/characters/layla-amari/front-dressed.svg",
  62049. extra: 1922/1723,
  62050. bottom: 90/2012
  62051. }
  62052. },
  62053. face: {
  62054. height: math.unit(0.93, "feet"),
  62055. name: "Face",
  62056. image: {
  62057. source: "./media/characters/layla-amari/face.svg"
  62058. }
  62059. },
  62060. hand: {
  62061. height: math.unit(0.66 , "feet"),
  62062. name: "Hand",
  62063. image: {
  62064. source: "./media/characters/layla-amari/hand.svg"
  62065. }
  62066. },
  62067. foot: {
  62068. height: math.unit(1, "feet"),
  62069. name: "Foot",
  62070. image: {
  62071. source: "./media/characters/layla-amari/foot.svg"
  62072. }
  62073. },
  62074. necklace: {
  62075. height: math.unit(0.32, "feet"),
  62076. name: "Necklace",
  62077. image: {
  62078. source: "./media/characters/layla-amari/necklace.svg"
  62079. }
  62080. },
  62081. nipple: {
  62082. height: math.unit(0.2, "feet"),
  62083. name: "Nipple",
  62084. image: {
  62085. source: "./media/characters/layla-amari/nipple.svg"
  62086. }
  62087. },
  62088. slit: {
  62089. height: math.unit(0.26, "feet"),
  62090. name: "Slit",
  62091. image: {
  62092. source: "./media/characters/layla-amari/slit.svg"
  62093. }
  62094. },
  62095. },
  62096. [
  62097. {
  62098. name: "Natural",
  62099. height: math.unit(825, "feet"),
  62100. default: true
  62101. },
  62102. {
  62103. name: "Enhanced",
  62104. height: math.unit(8250, "feet")
  62105. },
  62106. {
  62107. name: "Apparent Size",
  62108. height: math.unit(9.04363e+8, "meters")
  62109. },
  62110. ]
  62111. ))
  62112. characterMakers.push(() => makeCharacter(
  62113. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  62114. {
  62115. front: {
  62116. height: math.unit(1.3, "meters"),
  62117. name: "Front",
  62118. image: {
  62119. source: "./media/characters/percy/front.svg",
  62120. extra: 1444/1289,
  62121. bottom: 54/1498
  62122. }
  62123. },
  62124. },
  62125. [
  62126. {
  62127. name: "Normal",
  62128. height: math.unit(1.3, "meters"),
  62129. default: true
  62130. },
  62131. ]
  62132. ))
  62133. characterMakers.push(() => makeCharacter(
  62134. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  62135. {
  62136. side: {
  62137. height: math.unit(10, "meters"),
  62138. name: "Side",
  62139. image: {
  62140. source: "./media/characters/grev/side.svg",
  62141. extra: 653/266,
  62142. bottom: 77/730
  62143. }
  62144. },
  62145. head: {
  62146. height: math.unit(16.2, "m"),
  62147. name: "Head",
  62148. image: {
  62149. source: "./media/characters/grev/head.svg"
  62150. }
  62151. },
  62152. dick: {
  62153. height: math.unit(2.8135932034, "m"),
  62154. name: "Dick",
  62155. image: {
  62156. source: "./media/characters/grev/dick.svg"
  62157. }
  62158. },
  62159. },
  62160. [
  62161. {
  62162. name: "Friend-Sized",
  62163. height: math.unit(80, "cm")
  62164. },
  62165. {
  62166. name: "Normal",
  62167. height: math.unit(10, "meters"),
  62168. default: true
  62169. },
  62170. {
  62171. name: "Macro",
  62172. height: math.unit(200, "meters")
  62173. },
  62174. ]
  62175. ))
  62176. characterMakers.push(() => makeCharacter(
  62177. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  62178. {
  62179. front: {
  62180. height: math.unit(19.75, "feet"),
  62181. weight: math.unit(20000, "lb"),
  62182. name: "Front",
  62183. image: {
  62184. source: "./media/characters/azuuca/front.svg",
  62185. extra: 1593/1511,
  62186. bottom: 55/1648
  62187. }
  62188. },
  62189. },
  62190. [
  62191. {
  62192. name: "Normal",
  62193. height: math.unit(19.75, "feet"),
  62194. default: true
  62195. },
  62196. ]
  62197. ))
  62198. characterMakers.push(() => makeCharacter(
  62199. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62200. {
  62201. front: {
  62202. height: math.unit(15, "feet"),
  62203. weight: math.unit(1500, "lb"),
  62204. name: "Front",
  62205. image: {
  62206. source: "./media/characters/valuria/front.svg",
  62207. extra: 1588/1486,
  62208. bottom: 31/1619
  62209. }
  62210. },
  62211. },
  62212. [
  62213. {
  62214. name: "Normal",
  62215. height: math.unit(15, "feet"),
  62216. default: true
  62217. },
  62218. {
  62219. name: "Small",
  62220. height: math.unit(500, "feet")
  62221. },
  62222. {
  62223. name: "Macro",
  62224. height: math.unit(4000, "feet")
  62225. },
  62226. {
  62227. name: "Mega Macro",
  62228. height: math.unit(2000, "miles")
  62229. },
  62230. {
  62231. name: "Giga Macro",
  62232. height: math.unit(3e6, "miles")
  62233. },
  62234. ]
  62235. ))
  62236. characterMakers.push(() => makeCharacter(
  62237. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62238. {
  62239. front: {
  62240. height: math.unit(3500, "solarradii"),
  62241. name: "Front",
  62242. image: {
  62243. source: "./media/characters/terigaia/front.svg",
  62244. extra: 1531/1451,
  62245. bottom: 98/1629
  62246. }
  62247. },
  62248. },
  62249. [
  62250. {
  62251. name: "Normal",
  62252. height: math.unit(3500, "solarradii"),
  62253. default: true
  62254. },
  62255. ]
  62256. ))
  62257. characterMakers.push(() => makeCharacter(
  62258. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62259. {
  62260. front: {
  62261. height: math.unit(9.34, "feet"),
  62262. weight: math.unit(600, "lb"),
  62263. name: "Front",
  62264. image: {
  62265. source: "./media/characters/blair-blaziken/front.svg",
  62266. extra: 1557/1462,
  62267. bottom: 55/1612
  62268. }
  62269. },
  62270. },
  62271. [
  62272. {
  62273. name: "Normal",
  62274. height: math.unit(9.34, "feet"),
  62275. default: true
  62276. },
  62277. ]
  62278. ))
  62279. characterMakers.push(() => makeCharacter(
  62280. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62281. {
  62282. pistrogre_front: {
  62283. height: math.unit(10, "feet"),
  62284. weight: math.unit(10, "tons"),
  62285. name: "Front",
  62286. image: {
  62287. source: "./media/characters/braxia/pistrogre-front.svg",
  62288. extra: 1531/1334,
  62289. bottom: 114/1645
  62290. },
  62291. form: "pistrogre",
  62292. default: true
  62293. },
  62294. human_front: {
  62295. height: math.unit(10, "feet"),
  62296. weight: math.unit(10, "tons"),
  62297. name: "Front",
  62298. image: {
  62299. source: "./media/characters/braxia/human-front.svg",
  62300. extra: 1574/1501,
  62301. bottom: 37/1611
  62302. },
  62303. form: "human",
  62304. default: true
  62305. },
  62306. },
  62307. [
  62308. {
  62309. name: "Normal",
  62310. height: math.unit(10, "feet"),
  62311. default: true,
  62312. allForms: true
  62313. },
  62314. {
  62315. name: "Macro",
  62316. height: math.unit(1000, "feet"),
  62317. allForms: true
  62318. },
  62319. {
  62320. name: "Mega Macro",
  62321. height: math.unit(100, "miles"),
  62322. allForms: true
  62323. },
  62324. {
  62325. name: "Cosmic",
  62326. height: math.unit(1000000, "lightyears"),
  62327. allForms: true
  62328. },
  62329. {
  62330. name: "ϐѮԆԬӁꭍϞԢ",
  62331. height: math.unit(1000, "multiverses"),
  62332. allForms: true
  62333. },
  62334. ],
  62335. {
  62336. "pistrogre": {
  62337. name: "Pistrogre",
  62338. default: true
  62339. },
  62340. "human": {
  62341. name: "Human",
  62342. },
  62343. }
  62344. ))
  62345. characterMakers.push(() => makeCharacter(
  62346. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62347. {
  62348. front: {
  62349. height: math.unit(6 + 1/12, "feet"),
  62350. weight: math.unit(280, "lb"),
  62351. name: "Front",
  62352. image: {
  62353. source: "./media/characters/kiriga-yato/front.svg",
  62354. extra: 445/394,
  62355. bottom: 11/456
  62356. }
  62357. },
  62358. },
  62359. [
  62360. {
  62361. name: "Descended",
  62362. height: math.unit(3, "feet")
  62363. },
  62364. {
  62365. name: "Average",
  62366. height: math.unit(6 + 1/12, "feet"),
  62367. default: true
  62368. },
  62369. {
  62370. name: "Ascended",
  62371. height: math.unit(9 + 2/12, "feet")
  62372. },
  62373. ]
  62374. ))
  62375. characterMakers.push(() => makeCharacter(
  62376. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62377. {
  62378. front: {
  62379. height: math.unit(6, "feet"),
  62380. weight: math.unit(150, "lb"),
  62381. name: "Front",
  62382. image: {
  62383. source: "./media/characters/kylie/front.svg",
  62384. extra: 1114/1046,
  62385. bottom: 65/1179
  62386. },
  62387. extraAttributes: {
  62388. "hoofSize": {
  62389. name: "Hoof Size",
  62390. power: 2,
  62391. type: "area",
  62392. base: math.unit(0.034, "m^2")
  62393. },
  62394. "footSize": {
  62395. name: "Foot Size",
  62396. power: 2,
  62397. type: "area",
  62398. base: math.unit(0.75, "m^2")
  62399. },
  62400. }
  62401. },
  62402. side: {
  62403. height: math.unit(6, "feet"),
  62404. weight: math.unit(150, "lb"),
  62405. name: "Side",
  62406. image: {
  62407. source: "./media/characters/kylie/side.svg",
  62408. extra: 1178/1110,
  62409. bottom: 21/1199
  62410. },
  62411. extraAttributes: {
  62412. "hoofSize": {
  62413. name: "Hoof Size",
  62414. power: 2,
  62415. type: "area",
  62416. base: math.unit(0.034, "m^2")
  62417. },
  62418. "footSize": {
  62419. name: "Foot Size",
  62420. power: 2,
  62421. type: "area",
  62422. base: math.unit(0.75, "m^2")
  62423. },
  62424. }
  62425. },
  62426. back: {
  62427. height: math.unit(6, "feet"),
  62428. weight: math.unit(150, "lb"),
  62429. name: "Back",
  62430. image: {
  62431. source: "./media/characters/kylie/back.svg",
  62432. extra: 1115/1047,
  62433. bottom: 66/1181
  62434. },
  62435. extraAttributes: {
  62436. "hoofSize": {
  62437. name: "Hoof Size",
  62438. power: 2,
  62439. type: "area",
  62440. base: math.unit(0.034, "m^2")
  62441. },
  62442. "footSize": {
  62443. name: "Foot Size",
  62444. power: 2,
  62445. type: "area",
  62446. base: math.unit(0.75, "m^2")
  62447. },
  62448. }
  62449. },
  62450. head: {
  62451. height: math.unit(1.85, "feet"),
  62452. name: "Head",
  62453. image: {
  62454. source: "./media/characters/kylie/head.svg"
  62455. }
  62456. },
  62457. },
  62458. [
  62459. {
  62460. name: "Normal",
  62461. height: math.unit(90, "meters"),
  62462. default: true
  62463. },
  62464. ]
  62465. ))
  62466. characterMakers.push(() => makeCharacter(
  62467. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62468. {
  62469. front: {
  62470. height: math.unit(245, "feet"),
  62471. weight: math.unit(400000, "lb"),
  62472. name: "Front",
  62473. image: {
  62474. source: "./media/characters/sabado/front.svg",
  62475. extra: 1309/1164,
  62476. bottom: 29/1338
  62477. }
  62478. },
  62479. },
  62480. [
  62481. {
  62482. name: "Normal",
  62483. height: math.unit(245, "feet"),
  62484. default: true
  62485. },
  62486. ]
  62487. ))
  62488. characterMakers.push(() => makeCharacter(
  62489. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62490. {
  62491. shark_front: {
  62492. height: math.unit(2, "meters"),
  62493. weight: math.unit(200, "kg"),
  62494. name: "Front",
  62495. image: {
  62496. source: "./media/characters/zechal/shark-front.svg",
  62497. extra: 969/925,
  62498. bottom: 74/1043
  62499. },
  62500. form: "shark",
  62501. },
  62502. shark_back: {
  62503. height: math.unit(2, "meters"),
  62504. weight: math.unit(200, "kg"),
  62505. name: "Back",
  62506. image: {
  62507. source: "./media/characters/zechal/shark-back.svg",
  62508. extra: 994/949,
  62509. bottom: 176/1170
  62510. },
  62511. form: "shark",
  62512. },
  62513. shark_frontLewd: {
  62514. height: math.unit(2, "meters"),
  62515. weight: math.unit(200, "kg"),
  62516. name: "Front (Lewd)",
  62517. image: {
  62518. source: "./media/characters/zechal/shark-front-lewd.svg",
  62519. extra: 969/925,
  62520. bottom: 74/1043
  62521. },
  62522. form: "shark",
  62523. },
  62524. shark_side: {
  62525. height: math.unit(1.56, "meters"),
  62526. weight: math.unit(200, "kg"),
  62527. name: "Side",
  62528. image: {
  62529. source: "./media/characters/zechal/shark-side.svg"
  62530. },
  62531. form: "shark",
  62532. },
  62533. dragon_front: {
  62534. height: math.unit(2, "meters"),
  62535. weight: math.unit(200, "kg"),
  62536. name: "Front",
  62537. image: {
  62538. source: "./media/characters/zechal/dragon-front.svg",
  62539. extra: 1041/925,
  62540. bottom: 74/1115
  62541. },
  62542. form: "dragon",
  62543. },
  62544. dragon_back: {
  62545. height: math.unit(2, "meters"),
  62546. weight: math.unit(200, "kg"),
  62547. name: "Back",
  62548. image: {
  62549. source: "./media/characters/zechal/dragon-back.svg",
  62550. extra: 1061/949,
  62551. bottom: 176/1237
  62552. },
  62553. form: "dragon",
  62554. },
  62555. dragon_frontLewd: {
  62556. height: math.unit(2, "meters"),
  62557. weight: math.unit(200, "kg"),
  62558. name: "Front (Lewd)",
  62559. image: {
  62560. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62561. extra: 1041/925,
  62562. bottom: 74/1115
  62563. },
  62564. form: "dragon",
  62565. },
  62566. dragon_side: {
  62567. height: math.unit(1.56, "meters"),
  62568. weight: math.unit(200, "kg"),
  62569. name: "Side",
  62570. image: {
  62571. source: "./media/characters/zechal/dragon-side.svg"
  62572. },
  62573. form: "dragon",
  62574. },
  62575. foot: {
  62576. height: math.unit(0.5, "meters"),
  62577. name: "Foot",
  62578. image: {
  62579. source: "./media/characters/zechal/foot.svg"
  62580. }
  62581. },
  62582. sheathFront: {
  62583. height: math.unit(0.45, "meters"),
  62584. name: "Sheath (Front)",
  62585. image: {
  62586. source: "./media/characters/zechal/sheath-front.svg"
  62587. }
  62588. },
  62589. sheathSide: {
  62590. height: math.unit(0.45, "meters"),
  62591. name: "Sheath (Side)",
  62592. image: {
  62593. source: "./media/characters/zechal/sheath-side.svg"
  62594. }
  62595. },
  62596. },
  62597. [
  62598. {
  62599. name: "Incognito",
  62600. height: math.unit(2, "meters"),
  62601. allForms: true
  62602. },
  62603. {
  62604. name: "Small Rampage",
  62605. height: math.unit(25, "meters"),
  62606. allForms: true
  62607. },
  62608. {
  62609. name: "Home Size",
  62610. height: math.unit(250, "meters"),
  62611. allForms: true,
  62612. default: true
  62613. },
  62614. {
  62615. name: "Macro+",
  62616. height: math.unit(700, "meters"),
  62617. allForms: true
  62618. },
  62619. {
  62620. name: "Small Mega",
  62621. height: math.unit(3, "km"),
  62622. allForms: true
  62623. },
  62624. {
  62625. name: "Mega",
  62626. height: math.unit(15, "km"),
  62627. allForms: true
  62628. },
  62629. {
  62630. name: "Giga",
  62631. height: math.unit(300, "km"),
  62632. allForms: true
  62633. },
  62634. {
  62635. name: "Giga+",
  62636. height: math.unit(1750, "km"),
  62637. allForms: true
  62638. },
  62639. {
  62640. name: "Continental",
  62641. height: math.unit(5000, "km"),
  62642. allForms: true
  62643. },
  62644. {
  62645. name: "Terra",
  62646. height: math.unit(20000, "km"),
  62647. allForms: true
  62648. },
  62649. {
  62650. name: "Terra+",
  62651. height: math.unit(300000, "km"),
  62652. allForms: true
  62653. },
  62654. {
  62655. name: "Solar",
  62656. height: math.unit(40000000, "km"),
  62657. allForms: true
  62658. },
  62659. {
  62660. name: "Galactic",
  62661. height: math.unit(810133, "parsecs"),
  62662. allForms: true
  62663. },
  62664. {
  62665. name: "Universal",
  62666. height: math.unit(25, "universes"),
  62667. allForms: true
  62668. },
  62669. ],
  62670. {
  62671. "shark": {
  62672. name: "Shark",
  62673. default: true
  62674. },
  62675. "dragon": {
  62676. name: "Dragon",
  62677. },
  62678. }
  62679. ))
  62680. characterMakers.push(() => makeCharacter(
  62681. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62682. {
  62683. front: {
  62684. height: math.unit(2.2, "meters"),
  62685. weight: math.unit(150, "kg"),
  62686. name: "Front",
  62687. image: {
  62688. source: "./media/characters/sergis/front.svg",
  62689. extra: 1314/1312,
  62690. bottom: 112/1426
  62691. }
  62692. },
  62693. back: {
  62694. height: math.unit(2.2, "meters"),
  62695. weight: math.unit(150, "kg"),
  62696. name: "Back",
  62697. image: {
  62698. source: "./media/characters/sergis/back.svg",
  62699. extra: 1335/1333,
  62700. bottom: 19/1354
  62701. }
  62702. },
  62703. frontLewd: {
  62704. height: math.unit(2.2, "meters"),
  62705. weight: math.unit(150, "kg"),
  62706. name: "Front (Lewd)",
  62707. image: {
  62708. source: "./media/characters/sergis/front-lewd.svg",
  62709. extra: 1314/1312,
  62710. bottom: 112/1426
  62711. }
  62712. },
  62713. frontDressed: {
  62714. height: math.unit(2.2, "meters"),
  62715. weight: math.unit(150, "kg"),
  62716. name: "Front (Dressed)",
  62717. image: {
  62718. source: "./media/characters/sergis/front-dressed.svg",
  62719. extra: 1330/1328,
  62720. bottom: 95/1425
  62721. }
  62722. },
  62723. frontDressedLewd: {
  62724. height: math.unit(2.2, "meters"),
  62725. weight: math.unit(150, "kg"),
  62726. name: "Front (Dressed, Lewd)",
  62727. image: {
  62728. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62729. extra: 1330/1328,
  62730. bottom: 95/1425
  62731. }
  62732. },
  62733. maw: {
  62734. height: math.unit(0.48, "meters"),
  62735. name: "Maw",
  62736. image: {
  62737. source: "./media/characters/sergis/maw.svg"
  62738. }
  62739. },
  62740. sheath: {
  62741. height: math.unit(0.38, "meters"),
  62742. name: "Sheath",
  62743. image: {
  62744. source: "./media/characters/sergis/sheath.svg"
  62745. }
  62746. },
  62747. },
  62748. [
  62749. {
  62750. name: "Incognito Size",
  62751. height: math.unit(2.2, "meters")
  62752. },
  62753. {
  62754. name: "Small Macro",
  62755. height: math.unit(40, "meters")
  62756. },
  62757. {
  62758. name: "Macro",
  62759. height: math.unit(150, "meters")
  62760. },
  62761. {
  62762. name: "Macro+",
  62763. height: math.unit(300, "meters")
  62764. },
  62765. {
  62766. name: "Mega",
  62767. height: math.unit(2.5, "km")
  62768. },
  62769. {
  62770. name: "Mega+",
  62771. height: math.unit(30, "km")
  62772. },
  62773. {
  62774. name: "Home Size",
  62775. height: math.unit(300, "km"),
  62776. default: true
  62777. },
  62778. {
  62779. name: "Giga+",
  62780. height: math.unit(1000, "km")
  62781. },
  62782. {
  62783. name: "Giga++",
  62784. height: math.unit(6000, "km")
  62785. },
  62786. {
  62787. name: "Terra",
  62788. height: math.unit(70000, "km")
  62789. },
  62790. {
  62791. name: "Terra+",
  62792. height: math.unit(200000, "km")
  62793. },
  62794. {
  62795. name: "Galactic",
  62796. height: math.unit(634200, "lightyears")
  62797. },
  62798. ]
  62799. ))
  62800. characterMakers.push(() => makeCharacter(
  62801. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62802. {
  62803. standard: {
  62804. height: math.unit(1 + 5/12, "feet"),
  62805. name: "Standard",
  62806. image: {
  62807. source: "./media/characters/spade/standard.svg",
  62808. extra: 1794/1703,
  62809. bottom: 115/1909
  62810. }
  62811. },
  62812. disguised: {
  62813. height: math.unit(1 + 5/12, "feet"),
  62814. name: "Disguised",
  62815. image: {
  62816. source: "./media/characters/spade/disguised.svg",
  62817. extra: 1794/1700,
  62818. bottom: 98/1892
  62819. }
  62820. },
  62821. },
  62822. [
  62823. {
  62824. name: "Normal",
  62825. height: math.unit(1 + 5/12, "feet"),
  62826. default: true
  62827. },
  62828. ]
  62829. ))
  62830. characterMakers.push(() => makeCharacter(
  62831. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62832. {
  62833. frontNsfw: {
  62834. height: math.unit(5, "meters"),
  62835. weight: math.unit(2000, "kg"),
  62836. preyCapacity: math.unit(5, "people"),
  62837. name: "Front (NSFW)",
  62838. image: {
  62839. source: "./media/characters/zeanlain/front-nsfw.svg",
  62840. extra: 1087/938,
  62841. bottom: 93/1180
  62842. },
  62843. extraAttributes: {
  62844. "wingspan": {
  62845. name: "Wingspan",
  62846. power: 1,
  62847. type: "length",
  62848. base: math.unit(10, "meters")
  62849. },
  62850. "footSize": {
  62851. name: "Foot Size",
  62852. power: 1,
  62853. type: "length",
  62854. base: math.unit(0.68, "meters")
  62855. },
  62856. "cockLength": {
  62857. name: "Cock Length",
  62858. power: 1,
  62859. type: "length",
  62860. base: math.unit(1.69, "meters")
  62861. },
  62862. "ballVolume": {
  62863. name: "Ball Volume",
  62864. power: 3,
  62865. type: "volume",
  62866. base: math.unit(0.028, "m^3")
  62867. },
  62868. }
  62869. },
  62870. front: {
  62871. height: math.unit(5, "meters"),
  62872. weight: math.unit(2000, "kg"),
  62873. preyCapacity: math.unit(3, "people"),
  62874. name: "Front",
  62875. image: {
  62876. source: "./media/characters/zeanlain/front.svg",
  62877. extra: 1087/938,
  62878. bottom: 93/1180
  62879. },
  62880. extraAttributes: {
  62881. "wingspan": {
  62882. name: "Wingspan",
  62883. power: 1,
  62884. type: "length",
  62885. base: math.unit(10, "meters")
  62886. },
  62887. "footSize": {
  62888. name: "Foot Size",
  62889. power: 1,
  62890. type: "length",
  62891. base: math.unit(0.68, "meters")
  62892. },
  62893. }
  62894. },
  62895. dick: {
  62896. height: math.unit(5.15, "feet"),
  62897. name: "Dick",
  62898. image: {
  62899. source: "./media/characters/zeanlain/dick.svg"
  62900. }
  62901. },
  62902. },
  62903. [
  62904. {
  62905. name: "Normal",
  62906. height: math.unit(5, "meters"),
  62907. default: true
  62908. },
  62909. ]
  62910. ))
  62911. characterMakers.push(() => makeCharacter(
  62912. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62913. {
  62914. front: {
  62915. height: math.unit(10, "meters"),
  62916. weight: math.unit(250000, "kg"),
  62917. name: "Front",
  62918. image: {
  62919. source: "./media/characters/airamis/front.svg",
  62920. extra: 865/835,
  62921. bottom: 13/878
  62922. }
  62923. },
  62924. },
  62925. [
  62926. {
  62927. name: "Normal",
  62928. height: math.unit(10, "meters"),
  62929. default: true
  62930. },
  62931. ]
  62932. ))
  62933. characterMakers.push(() => makeCharacter(
  62934. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62935. {
  62936. front: {
  62937. height: math.unit(3 + 3/12, "feet"),
  62938. weight: math.unit(75, "lb"),
  62939. name: "Front",
  62940. image: {
  62941. source: "./media/characters/corra-tourmaline/front.svg",
  62942. extra: 1037/864,
  62943. bottom: 39/1076
  62944. }
  62945. },
  62946. back: {
  62947. height: math.unit(3 + 3/12, "feet"),
  62948. weight: math.unit(75, "lb"),
  62949. name: "Back",
  62950. image: {
  62951. source: "./media/characters/corra-tourmaline/back.svg",
  62952. extra: 1022/849,
  62953. bottom: 26/1048
  62954. }
  62955. },
  62956. dressed: {
  62957. height: math.unit(3 + 3/12, "feet"),
  62958. weight: math.unit(75, "lb"),
  62959. name: "Dressed",
  62960. image: {
  62961. source: "./media/characters/corra-tourmaline/dressed.svg",
  62962. extra: 1037/864,
  62963. bottom: 39/1076
  62964. }
  62965. },
  62966. beans: {
  62967. height: math.unit(0.37, "feet"),
  62968. name: "Beans",
  62969. image: {
  62970. source: "./media/characters/corra-tourmaline/beans.svg"
  62971. }
  62972. },
  62973. },
  62974. [
  62975. {
  62976. name: "Normal",
  62977. height: math.unit(3 + 3/12, "feet"),
  62978. default: true
  62979. },
  62980. {
  62981. name: "Macro",
  62982. height: math.unit(32, "feet")
  62983. },
  62984. ]
  62985. ))
  62986. characterMakers.push(() => makeCharacter(
  62987. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62988. {
  62989. front: {
  62990. height: math.unit(6 + 2/12, "feet"),
  62991. weight: math.unit(203, "lb"),
  62992. name: "Front",
  62993. image: {
  62994. source: "./media/characters/maki-kawa/front.svg",
  62995. extra: 950/890,
  62996. bottom: 62/1012
  62997. }
  62998. },
  62999. back: {
  63000. height: math.unit(6 + 2/12, "feet"),
  63001. weight: math.unit(203, "lb"),
  63002. name: "Back",
  63003. image: {
  63004. source: "./media/characters/maki-kawa/back.svg",
  63005. extra: 953/878,
  63006. bottom: 49/1002
  63007. }
  63008. },
  63009. frontBarista: {
  63010. height: math.unit(6 + 2/12, "feet"),
  63011. weight: math.unit(203, "lb"),
  63012. name: "Front (Barista)",
  63013. image: {
  63014. source: "./media/characters/maki-kawa/front-barista.svg",
  63015. extra: 943/883,
  63016. bottom: 69/1012
  63017. }
  63018. },
  63019. backBarista: {
  63020. height: math.unit(6 + 2/12, "feet"),
  63021. weight: math.unit(203, "lb"),
  63022. name: "Back (Barista)",
  63023. image: {
  63024. source: "./media/characters/maki-kawa/back-barista.svg",
  63025. extra: 953/878,
  63026. bottom: 49/1002
  63027. }
  63028. },
  63029. frontWrestler: {
  63030. height: math.unit(6 + 2/12, "feet"),
  63031. weight: math.unit(203, "lb"),
  63032. name: "Front (Wrestler)",
  63033. image: {
  63034. source: "./media/characters/maki-kawa/front-wrestler.svg",
  63035. extra: 950/890,
  63036. bottom: 62/1012
  63037. }
  63038. },
  63039. backWrestler: {
  63040. height: math.unit(6 + 2/12, "feet"),
  63041. weight: math.unit(203, "lb"),
  63042. name: "Back (Wrestler)",
  63043. image: {
  63044. source: "./media/characters/maki-kawa/back-wrestler.svg",
  63045. extra: 953/878,
  63046. bottom: 49/1002
  63047. }
  63048. },
  63049. headFront: {
  63050. height: math.unit(1.64, "feet"),
  63051. name: "Head (Front)",
  63052. image: {
  63053. source: "./media/characters/maki-kawa/head-front.svg"
  63054. }
  63055. },
  63056. headSide: {
  63057. height: math.unit(1.59, "feet"),
  63058. name: "Head (Side)",
  63059. image: {
  63060. source: "./media/characters/maki-kawa/head-side.svg"
  63061. }
  63062. },
  63063. paw: {
  63064. height: math.unit(0.9, "feet"),
  63065. name: "Paw",
  63066. image: {
  63067. source: "./media/characters/maki-kawa/paw.svg"
  63068. }
  63069. },
  63070. },
  63071. [
  63072. {
  63073. name: "Normal",
  63074. height: math.unit(6 + 2/12, "feet"),
  63075. default: true
  63076. },
  63077. {
  63078. name: "Macro",
  63079. height: math.unit(617, "feet")
  63080. },
  63081. ]
  63082. ))
  63083. characterMakers.push(() => makeCharacter(
  63084. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  63085. {
  63086. frontNsfw: {
  63087. height: math.unit(10, "feet"),
  63088. weight: math.unit(1500, "lb"),
  63089. name: "Front (NSFW)",
  63090. image: {
  63091. source: "./media/characters/lennox/front-nsfw.svg",
  63092. extra: 1623/1496,
  63093. bottom: 18/1641
  63094. },
  63095. extraAttributes: {
  63096. "cumVolume": {
  63097. name: "Cum Volume",
  63098. power: 3,
  63099. type: "volume",
  63100. base: math.unit(75, "liters")
  63101. },
  63102. }
  63103. },
  63104. backNsfw: {
  63105. height: math.unit(10, "feet"),
  63106. weight: math.unit(1500, "lb"),
  63107. name: "Back (NSFW)",
  63108. image: {
  63109. source: "./media/characters/lennox/back-nsfw.svg",
  63110. extra: 1641/1481,
  63111. bottom: 13/1654
  63112. },
  63113. extraAttributes: {
  63114. "cumVolume": {
  63115. name: "Cum Volume",
  63116. power: 3,
  63117. type: "volume",
  63118. base: math.unit(75, "liters")
  63119. },
  63120. }
  63121. },
  63122. frontSfw: {
  63123. height: math.unit(10, "feet"),
  63124. weight: math.unit(1500, "lb"),
  63125. name: "Front (SFW)",
  63126. image: {
  63127. source: "./media/characters/lennox/front-sfw.svg",
  63128. extra: 1623/1496,
  63129. bottom: 18/1641
  63130. }
  63131. },
  63132. backSfw: {
  63133. height: math.unit(10, "feet"),
  63134. weight: math.unit(1500, "lb"),
  63135. name: "Back (SFW)",
  63136. image: {
  63137. source: "./media/characters/lennox/back-sfw.svg",
  63138. extra: 1641/1481,
  63139. bottom: 13/1654
  63140. }
  63141. },
  63142. maw: {
  63143. height: math.unit(2.94, "feet"),
  63144. name: "Maw",
  63145. image: {
  63146. source: "./media/characters/lennox/maw.svg"
  63147. }
  63148. },
  63149. dick: {
  63150. height: math.unit(0.8323, "meters"),
  63151. weight: math.unit(0.07315728637*1000, "kg"),
  63152. name: "Dick",
  63153. image: {
  63154. source: "./media/characters/lennox/dick.svg"
  63155. },
  63156. extraAttributes: {
  63157. "thickness": {
  63158. name: "Thickness",
  63159. power: 1,
  63160. type: "length",
  63161. base: math.unit(0.330, "meters")
  63162. },
  63163. "length": {
  63164. name: "Length",
  63165. power: 1,
  63166. type: "length",
  63167. base: math.unit(0.8, "meters")
  63168. },
  63169. "cumVolume": {
  63170. name: "Cum Volume",
  63171. power: 3,
  63172. type: "volume",
  63173. base: math.unit(75, "liters")
  63174. },
  63175. }
  63176. },
  63177. },
  63178. [
  63179. {
  63180. name: "Micro",
  63181. height: math.unit(1, "inch")
  63182. },
  63183. {
  63184. name: "Normal",
  63185. height: math.unit(10, "feet"),
  63186. default: true
  63187. },
  63188. {
  63189. name: "Macro",
  63190. height: math.unit(200, "feet")
  63191. },
  63192. ]
  63193. ))
  63194. characterMakers.push(() => makeCharacter(
  63195. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  63196. {
  63197. frontDressed: {
  63198. height: math.unit(15 + 7/12, "feet"),
  63199. weight: math.unit(5000, "lb"),
  63200. name: "Front (Dressed)",
  63201. image: {
  63202. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  63203. extra: 1136/1023,
  63204. bottom: 51/1187
  63205. }
  63206. },
  63207. backDressed: {
  63208. height: math.unit(15 + 7/12, "feet"),
  63209. weight: math.unit(5000, "lb"),
  63210. name: "Back (Dressed)",
  63211. image: {
  63212. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63213. extra: 2359/2143,
  63214. bottom: 103/2462
  63215. }
  63216. },
  63217. front: {
  63218. height: math.unit(15 + 7/12, "feet"),
  63219. weight: math.unit(5000, "lb"),
  63220. name: "Front",
  63221. image: {
  63222. source: "./media/characters/vyse-iron-thunder/front.svg",
  63223. extra: 1136/1023,
  63224. bottom: 51/1187
  63225. }
  63226. },
  63227. hand: {
  63228. height: math.unit(2.36, "feet"),
  63229. name: "Hand",
  63230. image: {
  63231. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63232. }
  63233. },
  63234. foot: {
  63235. height: math.unit(1.72, "feet"),
  63236. name: "Foot",
  63237. image: {
  63238. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63239. }
  63240. },
  63241. mouth: {
  63242. height: math.unit(2, "feet"),
  63243. name: "Mouth",
  63244. image: {
  63245. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63246. }
  63247. },
  63248. eye: {
  63249. height: math.unit(0.58, "feet"),
  63250. name: "Eye",
  63251. image: {
  63252. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63253. }
  63254. },
  63255. },
  63256. [
  63257. {
  63258. name: "Normal",
  63259. height: math.unit(15 + 7/12, "feet"),
  63260. default: true
  63261. },
  63262. {
  63263. name: "Macro",
  63264. height: math.unit(157, "feet")
  63265. },
  63266. {
  63267. name: "Macro+",
  63268. height: math.unit(1570, "feet")
  63269. },
  63270. {
  63271. name: "Macro++",
  63272. height: math.unit(15700, "feet")
  63273. },
  63274. {
  63275. name: "Macro+++",
  63276. height: math.unit(157000, "feet")
  63277. },
  63278. {
  63279. name: "Macro++++",
  63280. height: math.unit(1570000, "feet")
  63281. },
  63282. ]
  63283. ))
  63284. characterMakers.push(() => makeCharacter(
  63285. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63286. {
  63287. side: {
  63288. height: math.unit(6, "feet"),
  63289. weight: math.unit(115, "lb"),
  63290. name: "Side",
  63291. image: {
  63292. source: "./media/characters/moonbeam/side.svg",
  63293. extra: 839/485,
  63294. bottom: 60/899
  63295. }
  63296. },
  63297. },
  63298. [
  63299. {
  63300. name: "Normal",
  63301. height: math.unit(6, "feet"),
  63302. default: true
  63303. },
  63304. ]
  63305. ))
  63306. characterMakers.push(() => makeCharacter(
  63307. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63308. {
  63309. front: {
  63310. height: math.unit(3500, "miles"),
  63311. weight: math.unit(1659, "petatonnes"),
  63312. name: "Front",
  63313. image: {
  63314. source: "./media/characters/baltica/front.svg",
  63315. extra: 429/428,
  63316. bottom: 41/470
  63317. }
  63318. },
  63319. back: {
  63320. height: math.unit(3500, "miles"),
  63321. weight: math.unit(1659, "petatonnes"),
  63322. name: "Back",
  63323. image: {
  63324. source: "./media/characters/baltica/back.svg",
  63325. extra: 452/451,
  63326. bottom: 8/460
  63327. }
  63328. },
  63329. },
  63330. [
  63331. {
  63332. name: "Gigamacro",
  63333. height: math.unit(3500, "miles"),
  63334. default: true
  63335. },
  63336. ]
  63337. ))
  63338. characterMakers.push(() => makeCharacter(
  63339. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63340. {
  63341. front: {
  63342. height: math.unit(6 + 10/12, "feet"),
  63343. weight: math.unit(200, "lb"),
  63344. name: "Front",
  63345. image: {
  63346. source: "./media/characters/shadow-wolf/front.svg",
  63347. extra: 1931/1760,
  63348. bottom: 88/2019
  63349. }
  63350. },
  63351. },
  63352. [
  63353. {
  63354. name: "Normal",
  63355. height: math.unit(6 + 10/12, "feet"),
  63356. default: true
  63357. },
  63358. ]
  63359. ))
  63360. characterMakers.push(() => makeCharacter(
  63361. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63362. {
  63363. front: {
  63364. height: math.unit(5 + 10/12, "feet"),
  63365. name: "Front",
  63366. image: {
  63367. source: "./media/characters/quincy-praying-mantis/front.svg",
  63368. extra: 1055/891,
  63369. bottom: 92/1147
  63370. }
  63371. },
  63372. soles: {
  63373. height: math.unit(0.85, "feet"),
  63374. name: "Soles",
  63375. image: {
  63376. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63377. extra: 429/324,
  63378. bottom: 89/518
  63379. },
  63380. extraAttributes: {
  63381. "shoeSize": {
  63382. name: "Shoe Size",
  63383. power: 1,
  63384. type: "length",
  63385. base: math.unit(23, "ShoeSizeMensUS"),
  63386. defaultUnit: "ShoeSizeMensUS"
  63387. },
  63388. }
  63389. },
  63390. foot: {
  63391. height: math.unit(0.72, "feet"),
  63392. name: "Foot",
  63393. image: {
  63394. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63395. extra: 349/349,
  63396. bottom: 76/425
  63397. }
  63398. },
  63399. },
  63400. [
  63401. {
  63402. name: "Normal",
  63403. height: math.unit(5 + 10/12, "feet"),
  63404. default: true
  63405. },
  63406. ]
  63407. ))
  63408. characterMakers.push(() => makeCharacter(
  63409. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63410. {
  63411. front: {
  63412. height: math.unit(6, "feet"),
  63413. name: "Front",
  63414. image: {
  63415. source: "./media/characters/christopher-redwood/front.svg",
  63416. extra: 1402/1341,
  63417. bottom: 23/1425
  63418. }
  63419. },
  63420. back: {
  63421. height: math.unit(6, "feet"),
  63422. name: "Back",
  63423. image: {
  63424. source: "./media/characters/christopher-redwood/back.svg",
  63425. extra: 1406/1345,
  63426. bottom: 36/1442
  63427. }
  63428. },
  63429. head: {
  63430. height: math.unit(1.685, "feet"),
  63431. name: "Head",
  63432. image: {
  63433. source: "./media/characters/christopher-redwood/head.svg"
  63434. }
  63435. },
  63436. },
  63437. [
  63438. {
  63439. name: "Normal",
  63440. height: math.unit(6, "feet"),
  63441. default: true
  63442. },
  63443. ]
  63444. ))
  63445. characterMakers.push(() => makeCharacter(
  63446. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63447. {
  63448. front: {
  63449. height: math.unit(1.9, "meters"),
  63450. weight: math.unit(140, "lb"),
  63451. name: "Front",
  63452. image: {
  63453. source: "./media/characters/kara-fox/front.svg",
  63454. extra: 766/711,
  63455. bottom: 41/807
  63456. }
  63457. },
  63458. back: {
  63459. height: math.unit(1.9, "meters"),
  63460. weight: math.unit(140, "lb"),
  63461. name: "Back",
  63462. image: {
  63463. source: "./media/characters/kara-fox/back.svg",
  63464. extra: 766/596,
  63465. bottom: 29/795
  63466. }
  63467. },
  63468. maw: {
  63469. height: math.unit(0.78, "feet"),
  63470. name: "Maw",
  63471. image: {
  63472. source: "./media/characters/kara-fox/maw.svg"
  63473. }
  63474. },
  63475. pawpads: {
  63476. height: math.unit(0.96, "feet"),
  63477. name: "Pawpads",
  63478. image: {
  63479. source: "./media/characters/kara-fox/pawpads.svg"
  63480. }
  63481. },
  63482. },
  63483. [
  63484. {
  63485. name: "Normal",
  63486. height: math.unit(1.9, "meters"),
  63487. default: true
  63488. },
  63489. {
  63490. name: "Giantess",
  63491. height: math.unit(80, "meters")
  63492. },
  63493. ]
  63494. ))
  63495. characterMakers.push(() => makeCharacter(
  63496. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63497. {
  63498. front: {
  63499. height: math.unit(12, "feet"),
  63500. name: "Front",
  63501. image: {
  63502. source: "./media/characters/naomi-espeon/front.svg",
  63503. extra: 892/797,
  63504. bottom: 5/897
  63505. }
  63506. },
  63507. back: {
  63508. height: math.unit(12, "feet"),
  63509. name: "Back",
  63510. image: {
  63511. source: "./media/characters/naomi-espeon/back.svg",
  63512. extra: 890/785,
  63513. bottom: 12/902
  63514. }
  63515. },
  63516. },
  63517. [
  63518. {
  63519. name: "Normal",
  63520. height: math.unit(12, "feet"),
  63521. default: true
  63522. },
  63523. ]
  63524. ))
  63525. characterMakers.push(() => makeCharacter(
  63526. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63527. {
  63528. anthro_front: {
  63529. height: math.unit(8, "feet"),
  63530. weight: math.unit(625, "lb"),
  63531. name: "Front",
  63532. image: {
  63533. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63534. extra: 638/574,
  63535. bottom: 73/711
  63536. },
  63537. form: "anthro",
  63538. default: true
  63539. },
  63540. anthro_back: {
  63541. height: math.unit(8, "feet"),
  63542. weight: math.unit(625, "lb"),
  63543. name: "Back",
  63544. image: {
  63545. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63546. extra: 674/614,
  63547. bottom: 7/681
  63548. },
  63549. form: "anthro",
  63550. },
  63551. taur_side: {
  63552. height: math.unit(16, "feet"),
  63553. weight: math.unit(4.5, "tons"),
  63554. name: "Side",
  63555. image: {
  63556. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63557. extra: 704/646,
  63558. bottom: 132/836
  63559. },
  63560. form: "taur",
  63561. default: true
  63562. },
  63563. },
  63564. [
  63565. {
  63566. name: "Normal",
  63567. height: math.unit(8, "feet"),
  63568. default: true,
  63569. form: "anthro"
  63570. },
  63571. {
  63572. name: "Normal",
  63573. height: math.unit(16, "feet"),
  63574. default: true,
  63575. form: "taur"
  63576. },
  63577. ],
  63578. {
  63579. "anthro": {
  63580. name: "Anthro",
  63581. default: true
  63582. },
  63583. "taur": {
  63584. name: "Taur",
  63585. },
  63586. }
  63587. ))
  63588. characterMakers.push(() => makeCharacter(
  63589. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63590. {
  63591. front: {
  63592. height: math.unit(190, "cm"),
  63593. weight: math.unit(110, "kg"),
  63594. name: "Front",
  63595. image: {
  63596. source: "./media/characters/amelie/front.svg",
  63597. extra: 530/442,
  63598. bottom: 35/565
  63599. }
  63600. },
  63601. },
  63602. [
  63603. {
  63604. name: "Normal",
  63605. height: math.unit(190, "cm"),
  63606. default: true
  63607. },
  63608. ]
  63609. ))
  63610. characterMakers.push(() => makeCharacter(
  63611. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63612. {
  63613. front: {
  63614. height: math.unit(21, "feet"),
  63615. weight: math.unit(30000, "lb"),
  63616. name: "Front",
  63617. image: {
  63618. source: "./media/characters/valence/front.svg",
  63619. extra: 1430/1306,
  63620. bottom: 51/1481
  63621. }
  63622. },
  63623. },
  63624. [
  63625. {
  63626. name: "Normal",
  63627. height: math.unit(21, "feet"),
  63628. default: true
  63629. },
  63630. ]
  63631. ))
  63632. characterMakers.push(() => makeCharacter(
  63633. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63634. {
  63635. front: {
  63636. height: math.unit(5 + 9/12, "feet"),
  63637. weight: math.unit(170, "lb"),
  63638. name: "Front",
  63639. image: {
  63640. source: "./media/characters/aurora-adkins/front.svg",
  63641. extra: 1141/1089,
  63642. bottom: 41/1182
  63643. }
  63644. },
  63645. },
  63646. [
  63647. {
  63648. name: "Tiny",
  63649. height: math.unit(7, "mm")
  63650. },
  63651. {
  63652. name: "Small",
  63653. height: math.unit(3.4, "inches")
  63654. },
  63655. {
  63656. name: "Normal",
  63657. height: math.unit(5 + 9/12, "feet"),
  63658. default: true
  63659. },
  63660. {
  63661. name: "Big",
  63662. height: math.unit(31, "feet")
  63663. },
  63664. {
  63665. name: "Giant",
  63666. height: math.unit(300, "feet")
  63667. },
  63668. ]
  63669. ))
  63670. characterMakers.push(() => makeCharacter(
  63671. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63672. {
  63673. front: {
  63674. height: math.unit(5 + 6/12, "feet"),
  63675. weight: math.unit(210, "lb"),
  63676. name: "Front",
  63677. image: {
  63678. source: "./media/characters/cyber/front.svg",
  63679. extra: 1968/1798,
  63680. bottom: 10/1978
  63681. },
  63682. extraAttributes: {
  63683. "shoeSize": {
  63684. name: "Shoe Size",
  63685. power: 1,
  63686. type: "length",
  63687. base: math.unit(30, "ShoeSizeMensUS")
  63688. },
  63689. }
  63690. },
  63691. },
  63692. [
  63693. {
  63694. name: "Normal",
  63695. height: math.unit(5 + 6/12, "feet"),
  63696. default: true
  63697. },
  63698. ]
  63699. ))
  63700. characterMakers.push(() => makeCharacter(
  63701. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63702. {
  63703. front: {
  63704. height: math.unit(6 + 6/12, "feet"),
  63705. weight: math.unit(140, "lb"),
  63706. name: "Front",
  63707. image: {
  63708. source: "./media/characters/sapphire-wairimea/front.svg",
  63709. extra: 475/458,
  63710. bottom: 14/489
  63711. }
  63712. },
  63713. },
  63714. [
  63715. {
  63716. name: "Normal",
  63717. height: math.unit(6 + 6/12, "feet")
  63718. },
  63719. {
  63720. name: "Macro",
  63721. height: math.unit(132, "feet"),
  63722. default: true
  63723. },
  63724. ]
  63725. ))
  63726. characterMakers.push(() => makeCharacter(
  63727. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63728. {
  63729. front: {
  63730. height: math.unit(1.6, "meters"),
  63731. weight: math.unit(100, "lb"),
  63732. name: "Front",
  63733. image: {
  63734. source: "./media/characters/cirkazi/front.svg",
  63735. extra: 489/477,
  63736. bottom: 0/489
  63737. }
  63738. },
  63739. },
  63740. [
  63741. {
  63742. name: "Normal",
  63743. height: math.unit(1.6, "meters")
  63744. },
  63745. {
  63746. name: "Macro",
  63747. height: math.unit(800, "feet"),
  63748. default: true
  63749. },
  63750. ]
  63751. ))
  63752. characterMakers.push(() => makeCharacter(
  63753. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63754. {
  63755. front: {
  63756. height: math.unit(5 + 10/12, "feet"),
  63757. weight: math.unit(145, "lb"),
  63758. name: "Front",
  63759. image: {
  63760. source: "./media/characters/corrin-cavelli/front.svg",
  63761. extra: 483/464,
  63762. bottom: 6/489
  63763. }
  63764. },
  63765. },
  63766. [
  63767. {
  63768. name: "Human",
  63769. height: math.unit(5 + 10/12, "feet")
  63770. },
  63771. {
  63772. name: "Giant",
  63773. height: math.unit(210, "feet"),
  63774. default: true
  63775. },
  63776. ]
  63777. ))
  63778. characterMakers.push(() => makeCharacter(
  63779. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63780. {
  63781. back: {
  63782. height: math.unit(5 + 6/12, "feet"),
  63783. weight: math.unit(115, "lb"),
  63784. name: "Back",
  63785. image: {
  63786. source: "./media/characters/lori-lopez/back.svg",
  63787. extra: 483/474,
  63788. bottom: 6/489
  63789. }
  63790. },
  63791. },
  63792. [
  63793. {
  63794. name: "Human",
  63795. height: math.unit(5 + 6/12, "feet")
  63796. },
  63797. {
  63798. name: "Macro",
  63799. height: math.unit(198, "feet"),
  63800. default: true
  63801. },
  63802. ]
  63803. ))
  63804. characterMakers.push(() => makeCharacter(
  63805. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63806. {
  63807. front: {
  63808. height: math.unit(6, "feet"),
  63809. weight: math.unit(220, "lb"),
  63810. name: "Front",
  63811. image: {
  63812. source: "./media/characters/sylvia-beauregard/front.svg",
  63813. extra: 483/479,
  63814. bottom: 6/489
  63815. }
  63816. },
  63817. },
  63818. [
  63819. {
  63820. name: "Macro",
  63821. height: math.unit(2071, "feet"),
  63822. default: true
  63823. },
  63824. ]
  63825. ))
  63826. characterMakers.push(() => makeCharacter(
  63827. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63828. {
  63829. back: {
  63830. height: math.unit(5 + 6/12, "feet"),
  63831. weight: math.unit(160, "lb"),
  63832. name: "Back",
  63833. image: {
  63834. source: "./media/characters/akiko-takahashi/back.svg",
  63835. extra: 459/454,
  63836. bottom: 27/486
  63837. }
  63838. },
  63839. },
  63840. [
  63841. {
  63842. name: "Human",
  63843. height: math.unit(5 + 6/12, "feet")
  63844. },
  63845. {
  63846. name: "Macro",
  63847. height: math.unit(198, "feet"),
  63848. default: true
  63849. },
  63850. {
  63851. name: "Megamacro",
  63852. height: math.unit(7128, "feet")
  63853. },
  63854. ]
  63855. ))
  63856. characterMakers.push(() => makeCharacter(
  63857. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63858. {
  63859. front: {
  63860. height: math.unit(6, "feet"),
  63861. weight: math.unit(140, "lb"),
  63862. name: "Front",
  63863. image: {
  63864. source: "./media/characters/velvet-garza/front.svg",
  63865. extra: 480/462,
  63866. bottom: 7/487
  63867. }
  63868. },
  63869. },
  63870. [
  63871. {
  63872. name: "Macro",
  63873. height: math.unit(37, "feet"),
  63874. default: true
  63875. },
  63876. ]
  63877. ))
  63878. characterMakers.push(() => makeCharacter(
  63879. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63880. {
  63881. front: {
  63882. height: math.unit(7 + 6/12, "feet"),
  63883. weight: math.unit(400, "lb"),
  63884. name: "Front",
  63885. image: {
  63886. source: "./media/characters/gaia/front.svg",
  63887. extra: 474/463,
  63888. bottom: 13/487
  63889. }
  63890. },
  63891. },
  63892. [
  63893. {
  63894. name: "MiniMacro",
  63895. height: math.unit(7 + 6/12, "feet")
  63896. },
  63897. {
  63898. name: "GigaMacro",
  63899. height: math.unit(14500, "feet"),
  63900. default: true
  63901. },
  63902. ]
  63903. ))
  63904. characterMakers.push(() => makeCharacter(
  63905. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63906. {
  63907. front: {
  63908. height: math.unit(6, "feet"),
  63909. weight: math.unit(150, "lb"),
  63910. name: "Front",
  63911. image: {
  63912. source: "./media/characters/tim/front.svg",
  63913. extra: 1878/1743,
  63914. bottom: 9/1887
  63915. }
  63916. },
  63917. frontDressed: {
  63918. height: math.unit(6, "feet"),
  63919. weight: math.unit(150, "lb"),
  63920. name: "Front (Dressed)",
  63921. image: {
  63922. source: "./media/characters/tim/front-dressed.svg",
  63923. extra: 1765/1485,
  63924. bottom: 48/1813
  63925. }
  63926. },
  63927. backDressed: {
  63928. height: math.unit(6, "feet"),
  63929. weight: math.unit(150, "lb"),
  63930. name: "Back (Dressed)",
  63931. image: {
  63932. source: "./media/characters/tim/back-dressed.svg",
  63933. extra: 1750/1465,
  63934. bottom: 25/1775
  63935. }
  63936. },
  63937. dick: {
  63938. height: math.unit(1.5, "feet"),
  63939. weight: math.unit(6, "lb"),
  63940. name: "Dick",
  63941. image: {
  63942. source: "./media/characters/tim/dick.svg"
  63943. }
  63944. },
  63945. hand: {
  63946. height: math.unit(0.522, "feet"),
  63947. name: "Hand",
  63948. image: {
  63949. source: "./media/characters/tim/hand.svg"
  63950. }
  63951. },
  63952. palm: {
  63953. height: math.unit(0.48, "feet"),
  63954. name: "Palm",
  63955. image: {
  63956. source: "./media/characters/tim/palm.svg"
  63957. }
  63958. },
  63959. paw: {
  63960. height: math.unit(0.9, "feet"),
  63961. name: "Paw",
  63962. image: {
  63963. source: "./media/characters/tim/paw.svg"
  63964. }
  63965. },
  63966. sole: {
  63967. height: math.unit(0.88, "feet"),
  63968. name: "Sole",
  63969. image: {
  63970. source: "./media/characters/tim/sole.svg"
  63971. }
  63972. },
  63973. },
  63974. [
  63975. {
  63976. name: "Macro",
  63977. height: math.unit(1000, "feet")
  63978. },
  63979. {
  63980. name: "Megamacro",
  63981. height: math.unit(10000, "feet"),
  63982. default: true
  63983. },
  63984. {
  63985. name: "Megamacro+",
  63986. height: math.unit(50000, "feet")
  63987. },
  63988. {
  63989. name: "Gigamacro",
  63990. height: math.unit(150000, "km")
  63991. },
  63992. ]
  63993. ))
  63994. characterMakers.push(() => makeCharacter(
  63995. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63996. {
  63997. front: {
  63998. height: math.unit(5 + 8/12, "feet"),
  63999. weight: math.unit(170, "lb"),
  64000. name: "Front",
  64001. image: {
  64002. source: "./media/characters/abel-delreoux/front.svg",
  64003. extra: 1615/1500,
  64004. bottom: 82/1697
  64005. }
  64006. },
  64007. back: {
  64008. height: math.unit(5 + 8/12, "feet"),
  64009. weight: math.unit(170, "lb"),
  64010. name: "Back",
  64011. image: {
  64012. source: "./media/characters/abel-delreoux/back.svg",
  64013. extra: 1644/1534,
  64014. bottom: 24/1668
  64015. }
  64016. },
  64017. casual: {
  64018. height: math.unit(5 + 8/12, "feet"),
  64019. weight: math.unit(170, "lb"),
  64020. name: "Casual",
  64021. image: {
  64022. source: "./media/characters/abel-delreoux/casual.svg",
  64023. extra: 1716/1598,
  64024. bottom: 29/1745
  64025. }
  64026. },
  64027. sleepy: {
  64028. height: math.unit(5 + 8/12, "feet"),
  64029. weight: math.unit(170, "lb"),
  64030. name: "Sleepy",
  64031. image: {
  64032. source: "./media/characters/abel-delreoux/sleepy.svg",
  64033. extra: 1649/1573,
  64034. bottom: 22/1671
  64035. }
  64036. },
  64037. fem: {
  64038. height: math.unit(5 + 8/12, "feet"),
  64039. weight: math.unit(170, "lb"),
  64040. name: "Fem",
  64041. image: {
  64042. source: "./media/characters/abel-delreoux/fem.svg",
  64043. extra: 1680/1564,
  64044. bottom: 17/1697
  64045. }
  64046. },
  64047. hand: {
  64048. height: math.unit(0.78, "feet"),
  64049. name: "Hand",
  64050. image: {
  64051. source: "./media/characters/abel-delreoux/hand.svg"
  64052. }
  64053. },
  64054. paw: {
  64055. height: math.unit(0.78, "feet"),
  64056. name: "Paw",
  64057. image: {
  64058. source: "./media/characters/abel-delreoux/paw.svg"
  64059. }
  64060. },
  64061. },
  64062. [
  64063. {
  64064. name: "Normal",
  64065. height: math.unit(5 + 8/12, "feet"),
  64066. default: true
  64067. },
  64068. ]
  64069. ))
  64070. characterMakers.push(() => makeCharacter(
  64071. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  64072. {
  64073. front: {
  64074. height: math.unit(6, "feet"),
  64075. weight: math.unit(159, "lb"),
  64076. name: "Front",
  64077. image: {
  64078. source: "./media/characters/meus/front.svg",
  64079. extra: 938/843,
  64080. bottom: 37/975
  64081. }
  64082. },
  64083. back: {
  64084. height: math.unit(6, "feet"),
  64085. weight: math.unit(159, "lb"),
  64086. name: "Back",
  64087. image: {
  64088. source: "./media/characters/meus/back.svg",
  64089. extra: 967/873,
  64090. bottom: 12/979
  64091. }
  64092. },
  64093. },
  64094. [
  64095. {
  64096. name: "Micro",
  64097. height: math.unit(2, "inches")
  64098. },
  64099. {
  64100. name: "Mini",
  64101. height: math.unit(6, "inches")
  64102. },
  64103. {
  64104. name: "Normal",
  64105. height: math.unit(6, "feet"),
  64106. default: true
  64107. },
  64108. {
  64109. name: "Macro",
  64110. height: math.unit(84, "feet")
  64111. },
  64112. ]
  64113. ))
  64114. characterMakers.push(() => makeCharacter(
  64115. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  64116. {
  64117. front: {
  64118. height: math.unit(60, "cm"),
  64119. weight: math.unit(18, "kg"),
  64120. name: "Front",
  64121. image: {
  64122. source: "./media/characters/yamato/front.svg",
  64123. extra: 733/688,
  64124. bottom: 29/762
  64125. }
  64126. },
  64127. },
  64128. [
  64129. {
  64130. name: "Micro",
  64131. height: math.unit(6, "cm")
  64132. },
  64133. {
  64134. name: "Normal",
  64135. height: math.unit(60, "cm"),
  64136. default: true
  64137. },
  64138. ]
  64139. ))
  64140. characterMakers.push(() => makeCharacter(
  64141. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  64142. {
  64143. front: {
  64144. height: math.unit(9, "feet"),
  64145. weight: math.unit(518, "lb"),
  64146. name: "Front",
  64147. image: {
  64148. source: "./media/characters/barus/front.svg",
  64149. extra: 1877/1795,
  64150. bottom: 55/1932
  64151. }
  64152. },
  64153. },
  64154. [
  64155. {
  64156. name: "Base Height",
  64157. height: math.unit(9, "feet"),
  64158. default: true
  64159. },
  64160. {
  64161. name: "Large",
  64162. height: math.unit(18, "feet")
  64163. },
  64164. {
  64165. name: "Giant",
  64166. height: math.unit(100, "feet")
  64167. },
  64168. {
  64169. name: "Huge",
  64170. height: math.unit(500, "feet")
  64171. },
  64172. {
  64173. name: "Enormous",
  64174. height: math.unit(300, "meters")
  64175. },
  64176. {
  64177. name: "Deity Among Man",
  64178. height: math.unit(3000, "meters")
  64179. },
  64180. ]
  64181. ))
  64182. characterMakers.push(() => makeCharacter(
  64183. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  64184. {
  64185. front: {
  64186. height: math.unit(1.7, "meters"),
  64187. name: "Front",
  64188. image: {
  64189. source: "./media/characters/yari/front.svg",
  64190. extra: 1210/1125,
  64191. bottom: 283/1493
  64192. }
  64193. },
  64194. back: {
  64195. height: math.unit(1.7, "meters"),
  64196. name: "Back",
  64197. image: {
  64198. source: "./media/characters/yari/back.svg",
  64199. extra: 1240/1195,
  64200. bottom: 180/1420
  64201. }
  64202. },
  64203. head: {
  64204. height: math.unit(1.26, "feet"),
  64205. name: "Head",
  64206. image: {
  64207. source: "./media/characters/yari/head.svg"
  64208. }
  64209. },
  64210. },
  64211. [
  64212. {
  64213. name: "Nano",
  64214. height: math.unit(0.5, "mm")
  64215. },
  64216. {
  64217. name: "Micro",
  64218. height: math.unit(3, "inches")
  64219. },
  64220. {
  64221. name: "Short",
  64222. height: math.unit(1.5, "meters")
  64223. },
  64224. {
  64225. name: "Norm",
  64226. height: math.unit(1.7, "meters"),
  64227. default: true
  64228. },
  64229. ]
  64230. ))
  64231. characterMakers.push(() => makeCharacter(
  64232. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64233. {
  64234. front: {
  64235. height: math.unit(5 + 2/12, "feet"),
  64236. weight: math.unit(110, "lb"),
  64237. name: "Front",
  64238. image: {
  64239. source: "./media/characters/salem/front.svg",
  64240. extra: 1895/1800,
  64241. bottom: 23/1918
  64242. }
  64243. },
  64244. back: {
  64245. height: math.unit(5 + 2/12, "feet"),
  64246. weight: math.unit(110, "lb"),
  64247. name: "Back",
  64248. image: {
  64249. source: "./media/characters/salem/back.svg",
  64250. extra: 1875/1802,
  64251. bottom: 20/1895
  64252. }
  64253. },
  64254. head: {
  64255. height: math.unit(1, "feet"),
  64256. name: "Head",
  64257. image: {
  64258. source: "./media/characters/salem/head.svg"
  64259. }
  64260. },
  64261. paw: {
  64262. height: math.unit(0.59, "feet"),
  64263. name: "Paw",
  64264. image: {
  64265. source: "./media/characters/salem/paw.svg"
  64266. }
  64267. },
  64268. beans: {
  64269. height: math.unit(0.66, "feet"),
  64270. name: "Beans",
  64271. image: {
  64272. source: "./media/characters/salem/beans.svg"
  64273. }
  64274. },
  64275. eye: {
  64276. height: math.unit(0.224, "feet"),
  64277. name: "Eye",
  64278. image: {
  64279. source: "./media/characters/salem/eye.svg"
  64280. }
  64281. },
  64282. semiferal: {
  64283. height: math.unit(2.3, "feet"),
  64284. name: "Semiferal",
  64285. image: {
  64286. source: "./media/characters/salem/semiferal.svg",
  64287. extra: 914/839,
  64288. bottom: 32/946
  64289. }
  64290. },
  64291. },
  64292. [
  64293. {
  64294. name: "Micro",
  64295. height: math.unit(4, "inches")
  64296. },
  64297. {
  64298. name: "Normal",
  64299. height: math.unit(5 + 2/12, "feet"),
  64300. default: true
  64301. },
  64302. {
  64303. name: "Macro",
  64304. height: math.unit(108, "feet")
  64305. },
  64306. {
  64307. name: "Macro+",
  64308. height: math.unit(1500, "feet")
  64309. },
  64310. ]
  64311. ))
  64312. characterMakers.push(() => makeCharacter(
  64313. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64314. {
  64315. front: {
  64316. height: math.unit(7 + 6/12, "feet"),
  64317. weight: math.unit(600, "kg"),
  64318. preyCapacity: math.unit(10, "people"),
  64319. name: "Front",
  64320. image: {
  64321. source: "./media/characters/kii/front.svg",
  64322. extra: 3296/3087,
  64323. bottom: 130/3426
  64324. }
  64325. },
  64326. },
  64327. [
  64328. {
  64329. name: "Normal",
  64330. height: math.unit(7 + 6/12, "feet"),
  64331. default: true
  64332. },
  64333. ]
  64334. ))
  64335. characterMakers.push(() => makeCharacter(
  64336. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64337. {
  64338. front: {
  64339. height: math.unit(2, "meters"),
  64340. weight: math.unit(200, "lb"),
  64341. name: "Front",
  64342. image: {
  64343. source: "./media/characters/taffy/front.svg",
  64344. extra: 1666/1618,
  64345. bottom: 157/1823
  64346. }
  64347. },
  64348. back: {
  64349. height: math.unit(2, "meters"),
  64350. weight: math.unit(200, "lb"),
  64351. name: "Back",
  64352. image: {
  64353. source: "./media/characters/taffy/back.svg",
  64354. extra: 1635/1583,
  64355. bottom: 153/1788
  64356. }
  64357. },
  64358. },
  64359. [
  64360. {
  64361. name: "Normal",
  64362. height: math.unit(2, "meters"),
  64363. default: true
  64364. },
  64365. ]
  64366. ))
  64367. characterMakers.push(() => makeCharacter(
  64368. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64369. {
  64370. front: {
  64371. height: math.unit(1.55, "meters"),
  64372. weight: math.unit(60, "kg"),
  64373. name: "Front",
  64374. image: {
  64375. source: "./media/characters/barley/front.svg",
  64376. extra: 1520/1340,
  64377. bottom: 47/1567
  64378. }
  64379. },
  64380. back: {
  64381. height: math.unit(1.55, "meters"),
  64382. weight: math.unit(60, "kg"),
  64383. name: "Back",
  64384. image: {
  64385. source: "./media/characters/barley/back.svg",
  64386. extra: 1543/1341,
  64387. bottom: 12/1555
  64388. }
  64389. },
  64390. feet: {
  64391. height: math.unit(2.18, "feet"),
  64392. name: "Feet",
  64393. image: {
  64394. source: "./media/characters/barley/feet.svg"
  64395. }
  64396. },
  64397. },
  64398. [
  64399. {
  64400. name: "Normal",
  64401. height: math.unit(1.55, "meters"),
  64402. default: true
  64403. },
  64404. ]
  64405. ))
  64406. characterMakers.push(() => makeCharacter(
  64407. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64408. {
  64409. dressed: {
  64410. height: math.unit(6, "feet"),
  64411. name: "Dressed",
  64412. image: {
  64413. source: "./media/characters/lydia-lopez/dressed.svg",
  64414. extra: 1319/1277,
  64415. bottom: 90/1409
  64416. }
  64417. },
  64418. nude: {
  64419. height: math.unit(6, "feet"),
  64420. name: "Nude",
  64421. image: {
  64422. source: "./media/characters/lydia-lopez/nude.svg",
  64423. extra: 1319/1277,
  64424. bottom: 90/1409
  64425. }
  64426. },
  64427. },
  64428. [
  64429. {
  64430. name: "Normal",
  64431. height: math.unit(6, "feet"),
  64432. default: true
  64433. },
  64434. {
  64435. name: "Maximum",
  64436. height: math.unit(2101, "feet")
  64437. },
  64438. ]
  64439. ))
  64440. characterMakers.push(() => makeCharacter(
  64441. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64442. {
  64443. front: {
  64444. height: math.unit(5 + 4/12, "feet"),
  64445. weight: math.unit(250, "lb"),
  64446. volume: math.unit(20, "gallons"),
  64447. name: "Front",
  64448. image: {
  64449. source: "./media/characters/kira-slime/front.svg",
  64450. extra: 442/403,
  64451. bottom: 18/460
  64452. }
  64453. },
  64454. frontNsfw: {
  64455. height: math.unit(5 + 4/12, "feet"),
  64456. weight: math.unit(250, "lb"),
  64457. volume: math.unit(20, "gallons"),
  64458. name: "Front (NSFW)",
  64459. image: {
  64460. source: "./media/characters/kira-slime/front-nsfw.svg",
  64461. extra: 442/403,
  64462. bottom: 18/460
  64463. }
  64464. },
  64465. },
  64466. [
  64467. {
  64468. name: "Droplet",
  64469. height: math.unit(0.0464452, "feet")
  64470. },
  64471. {
  64472. name: "Pint",
  64473. height: math.unit(0.9824, "feet")
  64474. },
  64475. {
  64476. name: "Bucket",
  64477. height: math.unit(2.83, "feet")
  64478. },
  64479. {
  64480. name: "Normal",
  64481. height: math.unit(5 + 4/12, "feet"),
  64482. default: true
  64483. },
  64484. {
  64485. name: "Tub",
  64486. height: math.unit(8.46614, "feet")
  64487. },
  64488. {
  64489. name: "Pool",
  64490. height: math.unit(31.1895, "feet")
  64491. },
  64492. {
  64493. name: "Pond",
  64494. height: math.unit(170.349, "feet")
  64495. },
  64496. {
  64497. name: "Lake",
  64498. height: math.unit(289334, "feet")
  64499. },
  64500. {
  64501. name: "Ocean",
  64502. height: math.unit(1.11940e+7, "feet")
  64503. },
  64504. ]
  64505. ))
  64506. characterMakers.push(() => makeCharacter(
  64507. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64508. {
  64509. front: {
  64510. height: math.unit(5 + 6/12, "feet"),
  64511. weight: math.unit(120, "lb"),
  64512. name: "Front",
  64513. image: {
  64514. source: "./media/characters/holiday/front.svg",
  64515. extra: 456/403,
  64516. bottom: 4/460
  64517. }
  64518. },
  64519. back: {
  64520. height: math.unit(5 + 6/12, "feet"),
  64521. weight: math.unit(120, "lb"),
  64522. name: "Back",
  64523. image: {
  64524. source: "./media/characters/holiday/back.svg",
  64525. extra: 450/404,
  64526. bottom: 12/462
  64527. }
  64528. },
  64529. head: {
  64530. height: math.unit(2.3, "feet"),
  64531. name: "Head",
  64532. image: {
  64533. source: "./media/characters/holiday/head.svg"
  64534. }
  64535. },
  64536. scifi_front: {
  64537. height: math.unit(145, "km"),
  64538. name: "Front",
  64539. image: {
  64540. source: "./media/characters/holiday/scifi-front.svg"
  64541. },
  64542. form: "scifi",
  64543. },
  64544. },
  64545. [
  64546. {
  64547. name: "Normal",
  64548. height: math.unit(5 + 6/12, "feet"),
  64549. default: true
  64550. },
  64551. {
  64552. name: "Macro",
  64553. height: math.unit(6574.25, "feet")
  64554. },
  64555. ]
  64556. ))
  64557. characterMakers.push(() => makeCharacter(
  64558. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64559. {
  64560. front: {
  64561. height: math.unit(6 + 2/12, "feet"),
  64562. weight: math.unit(200, "lb"),
  64563. name: "Front",
  64564. image: {
  64565. source: "./media/characters/camina/front.svg",
  64566. extra: 1048/985,
  64567. bottom: 30/1078
  64568. }
  64569. },
  64570. },
  64571. [
  64572. {
  64573. name: "Normal",
  64574. height: math.unit(6 + 2/12, "feet"),
  64575. default: true
  64576. },
  64577. ]
  64578. ))
  64579. characterMakers.push(() => makeCharacter(
  64580. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64581. {
  64582. front: {
  64583. height: math.unit(30, "cm"),
  64584. weight: math.unit(420, "grams"),
  64585. name: "Front",
  64586. image: {
  64587. source: "./media/characters/smuck/front.svg",
  64588. extra: 379/345,
  64589. bottom: 36/415
  64590. }
  64591. },
  64592. },
  64593. [
  64594. {
  64595. name: "Smuck-Sized",
  64596. height: math.unit(30, "cm"),
  64597. default: true
  64598. },
  64599. ]
  64600. ))
  64601. characterMakers.push(() => makeCharacter(
  64602. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64603. {
  64604. frontSfw: {
  64605. height: math.unit(10, "feet"),
  64606. weight: math.unit(1000, "kg"),
  64607. preyCapacity: math.unit(2, "people"),
  64608. name: "Front (SFW)",
  64609. image: {
  64610. source: "./media/characters/bylur/front-sfw.svg",
  64611. extra: 419/343,
  64612. bottom: 3/422
  64613. },
  64614. default: true
  64615. },
  64616. frontSheath: {
  64617. height: math.unit(10, "feet"),
  64618. weight: math.unit(1000, "kg"),
  64619. preyCapacity: math.unit(2, "people"),
  64620. name: "Front (Sheath)",
  64621. image: {
  64622. source: "./media/characters/bylur/front-sheath.svg",
  64623. extra: 419/343,
  64624. bottom: 3/422
  64625. }
  64626. },
  64627. frontErect: {
  64628. height: math.unit(10, "feet"),
  64629. weight: math.unit(1000, "kg"),
  64630. preyCapacity: math.unit(2, "people"),
  64631. name: "Front (Erect)",
  64632. image: {
  64633. source: "./media/characters/bylur/front-erect.svg",
  64634. extra: 419/343,
  64635. bottom: 3/422
  64636. }
  64637. },
  64638. back: {
  64639. height: math.unit(10, "feet"),
  64640. weight: math.unit(1000, "kg"),
  64641. preyCapacity: math.unit(2, "people"),
  64642. name: "Back",
  64643. image: {
  64644. source: "./media/characters/bylur/back.svg",
  64645. extra: 392/315,
  64646. bottom: 3/395
  64647. }
  64648. },
  64649. maw: {
  64650. height: math.unit(3.65, "feet"),
  64651. name: "Maw",
  64652. image: {
  64653. source: "./media/characters/bylur/maw.svg"
  64654. }
  64655. },
  64656. },
  64657. [
  64658. {
  64659. name: "Slightly Human Sized",
  64660. height: math.unit(10, "feet")
  64661. },
  64662. {
  64663. name: "Normal",
  64664. height: math.unit(35, "feet"),
  64665. default: true
  64666. },
  64667. {
  64668. name: "Macro",
  64669. height: math.unit(130, "feet")
  64670. },
  64671. ]
  64672. ))
  64673. characterMakers.push(() => makeCharacter(
  64674. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64675. {
  64676. frontNsfw: {
  64677. height: math.unit(6, "feet"),
  64678. weight: math.unit(250, "lb"),
  64679. preyCapacity: math.unit(0.05, "people"),
  64680. name: "Front (NSFW)",
  64681. image: {
  64682. source: "./media/characters/oarven/front-nsfw.svg",
  64683. extra: 1795/1783,
  64684. bottom: 142/1937
  64685. }
  64686. },
  64687. frontSfw: {
  64688. height: math.unit(6, "feet"),
  64689. weight: math.unit(250, "lb"),
  64690. preyCapacity: math.unit(0.05, "people"),
  64691. name: "Front (SFW)",
  64692. image: {
  64693. source: "./media/characters/oarven/front-sfw.svg",
  64694. extra: 1795/1783,
  64695. bottom: 142/1937
  64696. }
  64697. },
  64698. },
  64699. [
  64700. {
  64701. name: "Megamacro",
  64702. height: math.unit(5, "miles"),
  64703. default: true
  64704. },
  64705. {
  64706. name: "Maximum Height",
  64707. height: math.unit(5, "AUs")
  64708. },
  64709. ]
  64710. ))
  64711. characterMakers.push(() => makeCharacter(
  64712. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64713. {
  64714. side: {
  64715. height: math.unit(1065, "meters"),
  64716. weight: math.unit(1e12, "kg"),
  64717. volume: math.unit(3265000000, "m^3"),
  64718. name: "Side",
  64719. image: {
  64720. source: "./media/characters/solidarity/side.svg"
  64721. }
  64722. },
  64723. front: {
  64724. height: math.unit(1065, "meters"),
  64725. weight: math.unit(3265000000000, "kg"),
  64726. volume: math.unit(3265000000, "m^3"),
  64727. name: "Front",
  64728. image: {
  64729. source: "./media/characters/solidarity/front.svg"
  64730. }
  64731. },
  64732. top: {
  64733. height: math.unit(5823, "meters"),
  64734. weight: math.unit(3265000000000, "kg"),
  64735. volume: math.unit(3265000000, "m^3"),
  64736. name: "Top",
  64737. image: {
  64738. source: "./media/characters/solidarity/top.svg"
  64739. }
  64740. },
  64741. },
  64742. [
  64743. {
  64744. name: "Normal",
  64745. height: math.unit(1065, "meters"),
  64746. default: true
  64747. },
  64748. ]
  64749. ))
  64750. characterMakers.push(() => makeCharacter(
  64751. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64752. {
  64753. side: {
  64754. height: math.unit(18 + 4/12, "feet"),
  64755. weight: math.unit(13000, "kg"),
  64756. name: "Side",
  64757. image: {
  64758. source: "./media/characters/ani'szi/side.svg",
  64759. extra: 468/459,
  64760. bottom: 60/528
  64761. }
  64762. },
  64763. head: {
  64764. height: math.unit(4.8, "feet"),
  64765. name: "Head",
  64766. image: {
  64767. source: "./media/characters/ani'szi/head.svg"
  64768. }
  64769. },
  64770. jaws: {
  64771. height: math.unit(2.25, "feet"),
  64772. name: "Jaws",
  64773. image: {
  64774. source: "./media/characters/ani'szi/jaws.svg"
  64775. }
  64776. },
  64777. bust: {
  64778. height: math.unit(8.9, "feet"),
  64779. name: "Bust",
  64780. image: {
  64781. source: "./media/characters/ani'szi/bust.svg"
  64782. }
  64783. },
  64784. back: {
  64785. height: math.unit(13.53, "feet"),
  64786. name: "Back",
  64787. image: {
  64788. source: "./media/characters/ani'szi/back.svg"
  64789. }
  64790. },
  64791. eye: {
  64792. height: math.unit(0.44, "feet"),
  64793. name: "Eye",
  64794. image: {
  64795. source: "./media/characters/ani'szi/eye.svg"
  64796. }
  64797. },
  64798. },
  64799. [
  64800. {
  64801. name: "Normal",
  64802. height: math.unit(18 + 4/12, "feet"),
  64803. default: true
  64804. },
  64805. ]
  64806. ))
  64807. characterMakers.push(() => makeCharacter(
  64808. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64809. {
  64810. front: {
  64811. height: math.unit(7 + 6/12, "feet"),
  64812. weight: math.unit(300, "lb"),
  64813. name: "Front",
  64814. image: {
  64815. source: "./media/characters/rain/front.svg",
  64816. extra: 2955/2698,
  64817. bottom: 235/3190
  64818. }
  64819. },
  64820. dressed: {
  64821. height: math.unit(7 + 6/12, "feet"),
  64822. weight: math.unit(300, "lb"),
  64823. name: "Dressed",
  64824. image: {
  64825. source: "./media/characters/rain/dressed.svg",
  64826. extra: 2783/2572,
  64827. bottom: 430/3213
  64828. }
  64829. },
  64830. },
  64831. [
  64832. {
  64833. name: "Normal",
  64834. height: math.unit(7 + 6/12, "feet"),
  64835. default: true
  64836. },
  64837. {
  64838. name: "Macro",
  64839. height: math.unit(200, "feet")
  64840. },
  64841. {
  64842. name: "Macro+",
  64843. height: math.unit(500, "feet")
  64844. },
  64845. {
  64846. name: "Megamacro",
  64847. height: math.unit(5, "miles")
  64848. },
  64849. ]
  64850. ))
  64851. characterMakers.push(() => makeCharacter(
  64852. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64853. {
  64854. taur_side: {
  64855. height: math.unit(3, "meters"),
  64856. name: "Side",
  64857. image: {
  64858. source: "./media/characters/anise/taur-side.svg",
  64859. extra: 1833/926,
  64860. bottom: 134/1967
  64861. },
  64862. form: "taur",
  64863. default: true
  64864. },
  64865. feral_side: {
  64866. height: math.unit(3, "meters"),
  64867. name: "Side",
  64868. image: {
  64869. source: "./media/characters/anise/feral-side.svg",
  64870. extra: 681/349,
  64871. bottom: 26/707
  64872. },
  64873. form: "feral"
  64874. },
  64875. },
  64876. [
  64877. {
  64878. name: "Normal",
  64879. height: math.unit(3, "meters"),
  64880. default: true,
  64881. allForms: true
  64882. },
  64883. ],
  64884. {
  64885. "taur": {
  64886. name: "Taur",
  64887. default: true
  64888. },
  64889. "feral": {
  64890. name: "Feral",
  64891. },
  64892. }
  64893. ))
  64894. characterMakers.push(() => makeCharacter(
  64895. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64896. {
  64897. front: {
  64898. height: math.unit(1.9, "meters"),
  64899. weight: math.unit(75, "kg"),
  64900. name: "Front",
  64901. image: {
  64902. source: "./media/characters/sarina/front.svg",
  64903. extra: 1275/1200,
  64904. bottom: 49/1324
  64905. }
  64906. },
  64907. back: {
  64908. height: math.unit(1.9, "meters"),
  64909. weight: math.unit(75, "kg"),
  64910. name: "Back",
  64911. image: {
  64912. source: "./media/characters/sarina/back.svg",
  64913. extra: 1279/1209,
  64914. bottom: 14/1293
  64915. }
  64916. },
  64917. dressed: {
  64918. height: math.unit(1.9, "meters"),
  64919. weight: math.unit(75, "kg"),
  64920. name: "Dressed",
  64921. image: {
  64922. source: "./media/characters/sarina/dressed.svg",
  64923. extra: 1256/1187,
  64924. bottom: 56/1312
  64925. }
  64926. },
  64927. paw: {
  64928. height: math.unit(0.57, "feet"),
  64929. name: "Paw",
  64930. image: {
  64931. source: "./media/characters/sarina/paw.svg"
  64932. }
  64933. },
  64934. toering: {
  64935. height: math.unit(0.27, "feet"),
  64936. name: "Toering",
  64937. image: {
  64938. source: "./media/characters/sarina/toering.svg"
  64939. }
  64940. },
  64941. },
  64942. [
  64943. {
  64944. name: "Incognito",
  64945. height: math.unit(1.9, "meters")
  64946. },
  64947. {
  64948. name: "Home Size",
  64949. height: math.unit(160, "meters"),
  64950. default: true
  64951. },
  64952. {
  64953. name: "Mega",
  64954. height: math.unit(50, "km")
  64955. },
  64956. {
  64957. name: "Small Giga",
  64958. height: math.unit(250, "km")
  64959. },
  64960. {
  64961. name: "Giga (Preferred Size)",
  64962. height: math.unit(3000, "km")
  64963. },
  64964. {
  64965. name: "Terra",
  64966. height: math.unit(40000, "km")
  64967. },
  64968. {
  64969. name: "Terra+",
  64970. height: math.unit(400000, "km")
  64971. },
  64972. {
  64973. name: "Solar",
  64974. height: math.unit(35e6, "km")
  64975. },
  64976. {
  64977. name: "Galactic",
  64978. height: math.unit(648106, "parsecs")
  64979. },
  64980. {
  64981. name: "Universal",
  64982. height: math.unit(7, "universes")
  64983. },
  64984. {
  64985. name: "Universal+",
  64986. height: math.unit(30, "universes")
  64987. },
  64988. ]
  64989. ))
  64990. characterMakers.push(() => makeCharacter(
  64991. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64992. {
  64993. front: {
  64994. height: math.unit(5 + 6/12, "feet"),
  64995. name: "Front",
  64996. image: {
  64997. source: "./media/characters/sifray/front.svg",
  64998. extra: 722/691,
  64999. bottom: 64/786
  65000. }
  65001. },
  65002. },
  65003. [
  65004. {
  65005. name: "Normal",
  65006. height: math.unit(5 + 6/12, "feet"),
  65007. default: true
  65008. },
  65009. ]
  65010. ))
  65011. characterMakers.push(() => makeCharacter(
  65012. { name: "Spots", species: ["dog"], tags: ["feral"] },
  65013. {
  65014. side: {
  65015. height: math.unit(2.64, "feet"),
  65016. weight: math.unit(7, "tons"),
  65017. preyCapacity: math.unit(3, "people"),
  65018. name: "Side",
  65019. image: {
  65020. source: "./media/characters/spots/side.svg",
  65021. extra: 1859/977,
  65022. bottom: 19/1878
  65023. },
  65024. extraAttributes: {
  65025. "preyPerMinute": {
  65026. name: "Prey Per Minute",
  65027. power: 3,
  65028. type: "volume",
  65029. base: math.unit(6, "people"),
  65030. defaultUnit: "people"
  65031. },
  65032. "preyPerDay": {
  65033. name: "Prey Per Day",
  65034. power: 3,
  65035. type: "volume",
  65036. base: math.unit(6 * 60 * 24, "people"),
  65037. defaultUnit: "people"
  65038. },
  65039. }
  65040. },
  65041. },
  65042. [
  65043. {
  65044. name: "Normal",
  65045. height: math.unit(2.64, "feet"),
  65046. default: true
  65047. },
  65048. ]
  65049. ))
  65050. characterMakers.push(() => makeCharacter(
  65051. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  65052. {
  65053. front: {
  65054. height: math.unit(29 + 11/12, "feet"),
  65055. weight: math.unit(40, "tons"),
  65056. name: "Front",
  65057. image: {
  65058. source: "./media/characters/mona/front.svg",
  65059. extra: 1257/1116,
  65060. bottom: 34/1291
  65061. }
  65062. },
  65063. },
  65064. [
  65065. {
  65066. name: "Normal",
  65067. height: math.unit(29 + 11/12, "feet"),
  65068. default: true
  65069. },
  65070. ]
  65071. ))
  65072. characterMakers.push(() => makeCharacter(
  65073. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  65074. {
  65075. front: {
  65076. height: math.unit(15, "feet"),
  65077. weight: math.unit(3000, "kg"),
  65078. preyCapacity: math.unit(5, "people"),
  65079. name: "Front",
  65080. image: {
  65081. source: "./media/characters/frostfire/front.svg",
  65082. extra: 675/558,
  65083. bottom: 73/748
  65084. }
  65085. },
  65086. side: {
  65087. height: math.unit(15, "feet"),
  65088. weight: math.unit(3000, "kg"),
  65089. preyCapacity: math.unit(5, "people"),
  65090. name: "Side",
  65091. image: {
  65092. source: "./media/characters/frostfire/side.svg",
  65093. extra: 687/585,
  65094. bottom: 50/737
  65095. }
  65096. },
  65097. back: {
  65098. height: math.unit(15, "feet"),
  65099. weight: math.unit(3000, "kg"),
  65100. preyCapacity: math.unit(5, "people"),
  65101. name: "Back",
  65102. image: {
  65103. source: "./media/characters/frostfire/back.svg",
  65104. extra: 707/607,
  65105. bottom: 16/723
  65106. }
  65107. },
  65108. head: {
  65109. height: math.unit(9.35, "feet"),
  65110. name: "Head",
  65111. image: {
  65112. source: "./media/characters/frostfire/head.svg"
  65113. }
  65114. },
  65115. maw: {
  65116. height: math.unit(3.32, "feet"),
  65117. name: "Maw",
  65118. image: {
  65119. source: "./media/characters/frostfire/maw.svg"
  65120. }
  65121. },
  65122. hand: {
  65123. height: math.unit(3.7, "feet"),
  65124. name: "Hand",
  65125. image: {
  65126. source: "./media/characters/frostfire/hand.svg"
  65127. }
  65128. },
  65129. paw: {
  65130. height: math.unit(5.8, "feet"),
  65131. name: "Paw",
  65132. image: {
  65133. source: "./media/characters/frostfire/paw.svg"
  65134. }
  65135. },
  65136. },
  65137. [
  65138. {
  65139. name: "Normal",
  65140. height: math.unit(15, "feet"),
  65141. default: true
  65142. },
  65143. ]
  65144. ))
  65145. characterMakers.push(() => makeCharacter(
  65146. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  65147. {
  65148. front: {
  65149. height: math.unit(5 + 2/12, "feet"),
  65150. weight: math.unit(122, "lb"),
  65151. name: "Front",
  65152. image: {
  65153. source: "./media/characters/valeroo/front.svg",
  65154. extra: 1789/1534,
  65155. bottom: 66/1855
  65156. }
  65157. },
  65158. back: {
  65159. height: math.unit(5 + 2/12, "feet"),
  65160. weight: math.unit(122, "lb"),
  65161. name: "Back",
  65162. image: {
  65163. source: "./media/characters/valeroo/back.svg",
  65164. extra: 1848/1588,
  65165. bottom: 68/1916
  65166. }
  65167. },
  65168. head: {
  65169. height: math.unit(1.87, "feet"),
  65170. name: "Head",
  65171. image: {
  65172. source: "./media/characters/valeroo/head.svg"
  65173. }
  65174. },
  65175. hand: {
  65176. height: math.unit(0.82, "feet"),
  65177. name: "Hand",
  65178. image: {
  65179. source: "./media/characters/valeroo/hand.svg"
  65180. }
  65181. },
  65182. foot: {
  65183. height: math.unit(2.42, "feet"),
  65184. name: "Foot",
  65185. image: {
  65186. source: "./media/characters/valeroo/foot.svg"
  65187. }
  65188. },
  65189. },
  65190. [
  65191. {
  65192. name: "Normal",
  65193. height: math.unit(5 + 2/12, "feet"),
  65194. default: true
  65195. },
  65196. ]
  65197. ))
  65198. characterMakers.push(() => makeCharacter(
  65199. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  65200. {
  65201. front: {
  65202. height: math.unit(11 + 3/12, "feet"),
  65203. name: "Front",
  65204. image: {
  65205. source: "./media/characters/corrin/front.svg",
  65206. extra: 665/597,
  65207. bottom: 74/739
  65208. }
  65209. },
  65210. },
  65211. [
  65212. {
  65213. name: "Standard",
  65214. height: math.unit(11 + 3/12, "feet"),
  65215. default: true
  65216. },
  65217. {
  65218. name: "The Boss",
  65219. height: math.unit(110, "feet")
  65220. },
  65221. {
  65222. name: "Shipbreaker",
  65223. height: math.unit(38, "km")
  65224. },
  65225. ]
  65226. ))
  65227. characterMakers.push(() => makeCharacter(
  65228. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65229. {
  65230. front: {
  65231. height: math.unit(10, "feet"),
  65232. weight: math.unit(1750, "lb"),
  65233. name: "Front",
  65234. image: {
  65235. source: "./media/characters/kiba-ulrich/front.svg",
  65236. extra: 1037/973,
  65237. bottom: 36/1073
  65238. }
  65239. },
  65240. },
  65241. [
  65242. {
  65243. name: "Normal",
  65244. height: math.unit(10, "feet"),
  65245. default: true
  65246. },
  65247. {
  65248. name: "Minimacro",
  65249. height: math.unit(20, "feet")
  65250. },
  65251. {
  65252. name: "Macro",
  65253. height: math.unit(200, "feet")
  65254. },
  65255. {
  65256. name: "Megamacro",
  65257. height: math.unit(22500, "feet")
  65258. },
  65259. {
  65260. name: "Gigamacro",
  65261. height: math.unit(2700, "miles")
  65262. },
  65263. {
  65264. name: "Teramacro",
  65265. height: math.unit(10000, "miles")
  65266. },
  65267. ]
  65268. ))
  65269. characterMakers.push(() => makeCharacter(
  65270. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65271. {
  65272. gryphon_front: {
  65273. height: math.unit(220, "cm"),
  65274. weight: math.unit(160, "kg"),
  65275. name: "Front",
  65276. image: {
  65277. source: "./media/characters/ceanoth/gryphon-front.svg",
  65278. extra: 616/552,
  65279. bottom: 33/649
  65280. },
  65281. form: "gryphon",
  65282. default: true
  65283. },
  65284. },
  65285. [
  65286. {
  65287. name: "Normal",
  65288. height: math.unit(220, "cm"),
  65289. form: "gryphon",
  65290. default: true
  65291. },
  65292. ],
  65293. {
  65294. "gryphon": {
  65295. name: "Grpyhon",
  65296. default: true
  65297. },
  65298. }
  65299. ))
  65300. characterMakers.push(() => makeCharacter(
  65301. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65302. {
  65303. dressed: {
  65304. height: math.unit(2.2 * 0.79, "meters"),
  65305. weight: math.unit(0.5, "tonnes"),
  65306. name: "Dressed",
  65307. image: {
  65308. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65309. extra: 665/315,
  65310. bottom: 106/771
  65311. },
  65312. extraAttributes: {
  65313. "bodyLength": {
  65314. name: "Body Length",
  65315. power: 1,
  65316. type: "length",
  65317. base: math.unit(2.5, "meters")
  65318. },
  65319. "tailLength": {
  65320. name: "Tail Length",
  65321. power: 1,
  65322. type: "length",
  65323. base: math.unit(4.5, "meters")
  65324. },
  65325. "wingspan": {
  65326. name: "Wingspan",
  65327. power: 1,
  65328. type: "length",
  65329. base: math.unit(6, "meters")
  65330. },
  65331. "taurStomachCapacity": {
  65332. name: "Taur Stomach Capacity",
  65333. power: 3,
  65334. type: "volume",
  65335. base: math.unit(4, "people"),
  65336. defaultUnit: "people"
  65337. },
  65338. "anthroStomachCapacity": {
  65339. name: "Anthro Stomach Capacity",
  65340. power: 3,
  65341. type: "volume",
  65342. base: math.unit(1, "people"),
  65343. defaultUnit: "people"
  65344. },
  65345. }
  65346. },
  65347. nude: {
  65348. height: math.unit(2.2 * 0.79, "meters"),
  65349. weight: math.unit(0.5, "tonnes"),
  65350. name: "Nude",
  65351. image: {
  65352. source: "./media/characters/vanadiya-athelya/nude.svg",
  65353. extra: 665/315,
  65354. bottom: 106/771
  65355. },
  65356. extraAttributes: {
  65357. "bodyLength": {
  65358. name: "Body Length",
  65359. power: 1,
  65360. type: "length",
  65361. base: math.unit(2.5, "meters")
  65362. },
  65363. "tailLength": {
  65364. name: "Tail Length",
  65365. power: 1,
  65366. type: "length",
  65367. base: math.unit(4.5, "meters")
  65368. },
  65369. "wingspan": {
  65370. name: "Wingspan",
  65371. power: 1,
  65372. type: "length",
  65373. base: math.unit(6, "meters")
  65374. },
  65375. "taurStomachCapacity": {
  65376. name: "Taur Stomach Capacity",
  65377. power: 3,
  65378. type: "volume",
  65379. base: math.unit(4, "people"),
  65380. defaultUnit: "people"
  65381. },
  65382. "anthroStomachCapacity": {
  65383. name: "Anthro Stomach Capacity",
  65384. power: 3,
  65385. type: "volume",
  65386. base: math.unit(1, "people"),
  65387. defaultUnit: "people"
  65388. },
  65389. }
  65390. },
  65391. },
  65392. [
  65393. {
  65394. name: "Handheld",
  65395. height: math.unit(0.79 * 0.06, "meters")
  65396. },
  65397. {
  65398. name: "Mini",
  65399. height: math.unit(0.79 * 0.7, "meters")
  65400. },
  65401. {
  65402. name: "Short",
  65403. height: math.unit(0.79 * 1.4, "meters")
  65404. },
  65405. {
  65406. name: "Imposing",
  65407. height: math.unit(0.79 * 2.2, "meters"),
  65408. default: true
  65409. },
  65410. {
  65411. name: "Big",
  65412. height: math.unit(0.79 * 3.8, "meters")
  65413. },
  65414. {
  65415. name: "Giant",
  65416. height: math.unit(0.79 * 6.7, "meters")
  65417. },
  65418. {
  65419. name: "Airliner",
  65420. height: math.unit(0.79 * 64, "meters")
  65421. },
  65422. {
  65423. name: "Skyscraper",
  65424. height: math.unit(0.79 * 220, "meters")
  65425. },
  65426. {
  65427. name: "Mountain",
  65428. height: math.unit(0.79 * 3.6, "km")
  65429. },
  65430. {
  65431. name: "Spacescraper",
  65432. height: math.unit(0.79 * 70, "km")
  65433. },
  65434. {
  65435. name: "Continental",
  65436. height: math.unit(0.79 * 1290, "km")
  65437. },
  65438. {
  65439. name: "Moon",
  65440. height: math.unit(0.79 * 32200, "km")
  65441. },
  65442. {
  65443. name: "Planetary",
  65444. height: math.unit(0.79 * 145000, "km")
  65445. },
  65446. {
  65447. name: "Stellar",
  65448. height: math.unit(0.79 * 19e6, "km")
  65449. },
  65450. {
  65451. name: "Solar",
  65452. height: math.unit(0.79 * 40, "AU")
  65453. },
  65454. {
  65455. name: "Intersteller",
  65456. height: math.unit(0.79 * 3, "lightyears")
  65457. },
  65458. {
  65459. name: "Star Cluster",
  65460. height: math.unit(0.79 * 80, "lightyears")
  65461. },
  65462. {
  65463. name: "Ecumenical",
  65464. height: math.unit(0.79 * 2e3, "lightyears")
  65465. },
  65466. {
  65467. name: "Galactic",
  65468. height: math.unit(0.79 * 175000, "lightyears")
  65469. },
  65470. {
  65471. name: "Galaxy Cluster",
  65472. height: math.unit(0.79 * 25e6, "lightyears")
  65473. },
  65474. ]
  65475. ))
  65476. characterMakers.push(() => makeCharacter(
  65477. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65478. {
  65479. front: {
  65480. height: math.unit(6 + 2/12, "feet"),
  65481. weight: math.unit(160, "lb"),
  65482. name: "Front",
  65483. image: {
  65484. source: "./media/characters/yana-amelin/front.svg",
  65485. extra: 1413/1295,
  65486. bottom: 42/1455
  65487. }
  65488. },
  65489. back: {
  65490. height: math.unit(6 + 2/12, "feet"),
  65491. weight: math.unit(160, "lb"),
  65492. name: "Back",
  65493. image: {
  65494. source: "./media/characters/yana-amelin/back.svg",
  65495. extra: 1424/1310,
  65496. bottom: 24/1448
  65497. }
  65498. },
  65499. paws: {
  65500. height: math.unit(1.48, "feet"),
  65501. name: "Paws",
  65502. image: {
  65503. source: "./media/characters/yana-amelin/paws.svg",
  65504. extra: 304/304,
  65505. bottom: 49/353
  65506. }
  65507. },
  65508. },
  65509. [
  65510. {
  65511. name: "Micro",
  65512. height: math.unit(4, "inches")
  65513. },
  65514. {
  65515. name: "Normal",
  65516. height: math.unit(6 + 2/12, "feet"),
  65517. default: true
  65518. },
  65519. {
  65520. name: "Minimacro",
  65521. height: math.unit(20, "feet")
  65522. },
  65523. {
  65524. name: "Macro",
  65525. height: math.unit(70, "feet")
  65526. },
  65527. ]
  65528. ))
  65529. characterMakers.push(() => makeCharacter(
  65530. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65531. {
  65532. frontNsfw: {
  65533. height: math.unit(2.48, "meters"),
  65534. weight: math.unit(112, "kg"),
  65535. name: "Front (NSFW)",
  65536. image: {
  65537. source: "./media/characters/titania/front-nsfw.svg",
  65538. extra: 1302/1232,
  65539. bottom: 90/1392
  65540. }
  65541. },
  65542. backNsfw: {
  65543. height: math.unit(2.48, "meters"),
  65544. weight: math.unit(112, "kg"),
  65545. name: "Back (NSFW)",
  65546. image: {
  65547. source: "./media/characters/titania/back-nsfw.svg",
  65548. extra: 1355/1288,
  65549. bottom: 18/1373
  65550. }
  65551. },
  65552. frontSfw: {
  65553. height: math.unit(2.48, "meters"),
  65554. weight: math.unit(112, "kg"),
  65555. name: "Front (SFW)",
  65556. image: {
  65557. source: "./media/characters/titania/front-sfw.svg",
  65558. extra: 1302/1232,
  65559. bottom: 90/1392
  65560. }
  65561. },
  65562. backSfw: {
  65563. height: math.unit(2.48, "meters"),
  65564. weight: math.unit(112, "kg"),
  65565. name: "Back (SFW)",
  65566. image: {
  65567. source: "./media/characters/titania/back-sfw.svg",
  65568. extra: 1355/1288,
  65569. bottom: 18/1373
  65570. }
  65571. },
  65572. head: {
  65573. height: math.unit(2.06, "feet"),
  65574. name: "Head",
  65575. image: {
  65576. source: "./media/characters/titania/head.svg"
  65577. }
  65578. },
  65579. maw: {
  65580. height: math.unit(0.8, "feet"),
  65581. name: "Maw",
  65582. image: {
  65583. source: "./media/characters/titania/maw.svg"
  65584. }
  65585. },
  65586. foot: {
  65587. height: math.unit(1.65, "feet"),
  65588. name: "Foot",
  65589. image: {
  65590. source: "./media/characters/titania/foot.svg"
  65591. }
  65592. },
  65593. nethers: {
  65594. height: math.unit(1.7, "feet"),
  65595. name: "Nethers",
  65596. image: {
  65597. source: "./media/characters/titania/nethers.svg"
  65598. }
  65599. },
  65600. },
  65601. [
  65602. {
  65603. name: "Normal",
  65604. height: math.unit(2.48, "meters"),
  65605. default: true
  65606. },
  65607. {
  65608. name: "Mini Macro",
  65609. height: math.unit(248, "meters")
  65610. },
  65611. {
  65612. name: "Macro",
  65613. height: math.unit(620, "meters")
  65614. },
  65615. {
  65616. name: "Mega Macro",
  65617. height: math.unit(1860, "meters")
  65618. },
  65619. ]
  65620. ))
  65621. characterMakers.push(() => makeCharacter(
  65622. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65623. {
  65624. front: {
  65625. height: math.unit(5 + 9/12, "feet"),
  65626. weight: math.unit(1500, "lb"),
  65627. name: "Front",
  65628. image: {
  65629. source: "./media/characters/tony-gray/front.svg",
  65630. extra: 700/575,
  65631. bottom: 71/771
  65632. }
  65633. },
  65634. },
  65635. [
  65636. {
  65637. name: "Normal",
  65638. height: math.unit(5 + 9/12, "feet"),
  65639. default: true
  65640. },
  65641. ]
  65642. ))
  65643. characterMakers.push(() => makeCharacter(
  65644. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65645. {
  65646. side: {
  65647. height: math.unit(8 + 2/12, "feet"),
  65648. name: "Side",
  65649. image: {
  65650. source: "./media/characters/kelby/side.svg",
  65651. extra: 804/578,
  65652. bottom: 70/874
  65653. },
  65654. form: "regular",
  65655. default: true
  65656. },
  65657. lounging: {
  65658. height: math.unit(12.41, "feet"),
  65659. name: "Lounging",
  65660. image: {
  65661. source: "./media/characters/kelby/lounging.svg"
  65662. },
  65663. form: "regular"
  65664. },
  65665. maw: {
  65666. height: math.unit(5, "feet"),
  65667. name: "Maw",
  65668. image: {
  65669. source: "./media/characters/kelby/maw.svg"
  65670. },
  65671. form: "regular"
  65672. },
  65673. dick: {
  65674. height: math.unit(2.4, "feet"),
  65675. name: "Dick",
  65676. image: {
  65677. source: "./media/characters/kelby/dick.svg"
  65678. },
  65679. form: "regular"
  65680. },
  65681. slit: {
  65682. height: math.unit(1.2, "feet"),
  65683. name: "Slit",
  65684. image: {
  65685. source: "./media/characters/kelby/slit.svg"
  65686. },
  65687. form: "regular"
  65688. },
  65689. chibi: {
  65690. height: math.unit(5, "feet"),
  65691. name: "Chibi",
  65692. image: {
  65693. source: "./media/characters/kelby/chibi.svg",
  65694. extra: 245/200,
  65695. bottom: 43/288
  65696. },
  65697. form: "chibi",
  65698. default: true
  65699. },
  65700. },
  65701. [
  65702. {
  65703. name: "Normal",
  65704. height: math.unit(8 + 2/12, "feet"),
  65705. default: true,
  65706. form: "regular"
  65707. },
  65708. {
  65709. name: "Normal",
  65710. height: math.unit(5, "feet"),
  65711. default: true,
  65712. form: "chibi"
  65713. },
  65714. ],
  65715. {
  65716. "regular": {
  65717. name: "Regular",
  65718. default: true
  65719. },
  65720. "chibi": {
  65721. name: "Chibi",
  65722. },
  65723. }
  65724. ))
  65725. characterMakers.push(() => makeCharacter(
  65726. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65727. {
  65728. front: {
  65729. height: math.unit(7 + 10/12, "feet"),
  65730. weight: math.unit(300, "lb"),
  65731. name: "Front",
  65732. image: {
  65733. source: "./media/characters/elisa-mitchell/front.svg",
  65734. extra: 2562/2355,
  65735. bottom: 62/2624
  65736. }
  65737. },
  65738. maw: {
  65739. height: math.unit(2.37, "feet"),
  65740. name: "Maw",
  65741. image: {
  65742. source: "./media/characters/elisa-mitchell/maw.svg"
  65743. }
  65744. },
  65745. },
  65746. [
  65747. {
  65748. name: "Normal",
  65749. height: math.unit(7 + 10/12, "feet"),
  65750. default: true
  65751. },
  65752. {
  65753. name: "Macro",
  65754. height: math.unit(1490, "feet"),
  65755. default: true
  65756. },
  65757. ]
  65758. ))
  65759. characterMakers.push(() => makeCharacter(
  65760. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65761. {
  65762. front: {
  65763. height: math.unit(122, "cm"),
  65764. weight: math.unit(40, "lb"),
  65765. name: "Front",
  65766. image: {
  65767. source: "./media/characters/camia-vertigo-zott/front.svg",
  65768. extra: 2112/1902,
  65769. bottom: 21/2133
  65770. }
  65771. },
  65772. },
  65773. [
  65774. {
  65775. name: "Base Height",
  65776. height: math.unit(122, "cm")
  65777. },
  65778. {
  65779. name: "Macro Height",
  65780. height: math.unit(345, "meters"),
  65781. default: true
  65782. },
  65783. ]
  65784. ))
  65785. characterMakers.push(() => makeCharacter(
  65786. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65787. {
  65788. front: {
  65789. height: math.unit(6 + 3/12, "feet"),
  65790. weight: math.unit(180, "lb"),
  65791. name: "Front",
  65792. image: {
  65793. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65794. extra: 2580/2457,
  65795. bottom: 131/2711
  65796. }
  65797. },
  65798. },
  65799. [
  65800. {
  65801. name: "Normal",
  65802. height: math.unit(6 + 3/12, "feet"),
  65803. default: true
  65804. },
  65805. ]
  65806. ))
  65807. characterMakers.push(() => makeCharacter(
  65808. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65809. {
  65810. front: {
  65811. height: math.unit(165, "cm"),
  65812. weight: math.unit(130, "lb"),
  65813. name: "Front",
  65814. image: {
  65815. source: "./media/characters/sleeka/front.svg",
  65816. extra: 1252/1200,
  65817. bottom: 46/1298
  65818. }
  65819. },
  65820. },
  65821. [
  65822. {
  65823. name: "Normal",
  65824. height: math.unit(165, "cm")
  65825. },
  65826. {
  65827. name: "Galactic",
  65828. height: math.unit(5.8e22, "meters"),
  65829. default: true
  65830. },
  65831. {
  65832. name: "Universal",
  65833. height: math.unit(1.02e29, "meters")
  65834. },
  65835. ]
  65836. ))
  65837. characterMakers.push(() => makeCharacter(
  65838. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65839. {
  65840. front: {
  65841. height: math.unit(5 + 11/12, "feet"),
  65842. weight: math.unit(145, "lb"),
  65843. name: "Front",
  65844. image: {
  65845. source: "./media/characters/emily-whitetail/front.svg",
  65846. extra: 2510/2280,
  65847. bottom: 128/2638
  65848. }
  65849. },
  65850. },
  65851. [
  65852. {
  65853. name: "Normal",
  65854. height: math.unit(5 + 11/12, "feet")
  65855. },
  65856. {
  65857. name: "Galactic",
  65858. height: math.unit(6.3e22, "meters"),
  65859. default: true
  65860. },
  65861. {
  65862. name: "Universal",
  65863. height: math.unit(1.12e29, "meters")
  65864. },
  65865. ]
  65866. ))
  65867. characterMakers.push(() => makeCharacter(
  65868. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65869. {
  65870. front: {
  65871. height: math.unit(5 + 4/12, "feet"),
  65872. weight: math.unit(110, "lb"),
  65873. name: "Front",
  65874. image: {
  65875. source: "./media/characters/buck-whitetail/front.svg",
  65876. extra: 2430/2186,
  65877. bottom: 125/2555
  65878. }
  65879. },
  65880. },
  65881. [
  65882. {
  65883. name: "Normal",
  65884. height: math.unit(5 + 4/12, "feet")
  65885. },
  65886. {
  65887. name: "Galactic",
  65888. height: math.unit(5.4e22, "meters"),
  65889. default: true
  65890. },
  65891. {
  65892. name: "Universal",
  65893. height: math.unit(9.6e28, "meters")
  65894. },
  65895. ]
  65896. ))
  65897. characterMakers.push(() => makeCharacter(
  65898. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65899. {
  65900. front: {
  65901. height: math.unit(5 + 3/12, "feet"),
  65902. name: "Front",
  65903. image: {
  65904. source: "./media/characters/zoey-frisk/front.svg",
  65905. extra: 2825/2646,
  65906. bottom: 57/2882
  65907. }
  65908. },
  65909. },
  65910. [
  65911. {
  65912. name: "Normal",
  65913. height: math.unit(5 + 3/12, "feet"),
  65914. default: true
  65915. },
  65916. {
  65917. name: "Macro",
  65918. height: math.unit(800, "feet")
  65919. },
  65920. ]
  65921. ))
  65922. characterMakers.push(() => makeCharacter(
  65923. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65924. {
  65925. front: {
  65926. height: math.unit(210, "cm"),
  65927. weight: math.unit(102, "kg"),
  65928. name: "Front",
  65929. image: {
  65930. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65931. extra: 831/790,
  65932. bottom: 19/850
  65933. }
  65934. },
  65935. },
  65936. [
  65937. {
  65938. name: "Micro",
  65939. height: math.unit(1, "mm")
  65940. },
  65941. {
  65942. name: "Small",
  65943. height: math.unit(1, "cm")
  65944. },
  65945. {
  65946. name: "Short",
  65947. height: math.unit(1, "foot")
  65948. },
  65949. {
  65950. name: "Normal",
  65951. height: math.unit(210, "cm"),
  65952. default: true
  65953. },
  65954. {
  65955. name: "Big",
  65956. height: math.unit(15, "feet")
  65957. },
  65958. {
  65959. name: "Macro",
  65960. height: math.unit(50, "feet")
  65961. },
  65962. ]
  65963. ))
  65964. characterMakers.push(() => makeCharacter(
  65965. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  65966. {
  65967. front: {
  65968. height: math.unit(80, "feet"),
  65969. weight: math.unit(410000, "lb"),
  65970. name: "Front",
  65971. image: {
  65972. source: "./media/characters/trouble/front.svg",
  65973. extra: 780/723,
  65974. bottom: 11/791
  65975. },
  65976. extraAttributes: {
  65977. "pawArea": {
  65978. name: "Paw Area",
  65979. power: 2,
  65980. type: "area",
  65981. base: math.unit(49, "feet^2")
  65982. },
  65983. }
  65984. },
  65985. },
  65986. [
  65987. {
  65988. name: "Normal",
  65989. height: math.unit(80, "feet"),
  65990. default: true
  65991. },
  65992. ]
  65993. ))
  65994. characterMakers.push(() => makeCharacter(
  65995. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  65996. {
  65997. front: {
  65998. height: math.unit(5 + 7/12, "feet"),
  65999. weight: math.unit(140, "lb"),
  66000. name: "Front",
  66001. image: {
  66002. source: "./media/characters/bastion-aralus/front.svg",
  66003. extra: 1122/1045,
  66004. bottom: 24/1146
  66005. }
  66006. },
  66007. back: {
  66008. height: math.unit(5 + 7/12, "feet"),
  66009. weight: math.unit(140, "lb"),
  66010. name: "Back",
  66011. image: {
  66012. source: "./media/characters/bastion-aralus/back.svg",
  66013. extra: 1158/1078,
  66014. bottom: 39/1197
  66015. }
  66016. },
  66017. dick: {
  66018. height: math.unit(1.16, "feet"),
  66019. name: "Dick",
  66020. image: {
  66021. source: "./media/characters/bastion-aralus/dick.svg"
  66022. }
  66023. },
  66024. },
  66025. [
  66026. {
  66027. name: "Micro",
  66028. height: math.unit(1, "mm")
  66029. },
  66030. {
  66031. name: "Normal",
  66032. height: math.unit(5 + 7/12, "feet"),
  66033. default: true
  66034. },
  66035. {
  66036. name: "Macro",
  66037. height: math.unit(57, "feet")
  66038. },
  66039. ]
  66040. ))
  66041. characterMakers.push(() => makeCharacter(
  66042. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  66043. {
  66044. sona_front: {
  66045. height: math.unit(6, "feet"),
  66046. weight: math.unit(350, "lb"),
  66047. name: "Front",
  66048. image: {
  66049. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  66050. extra: 1099/1005,
  66051. bottom: 22/1121
  66052. },
  66053. form: "sona",
  66054. default: true
  66055. },
  66056. sona_side: {
  66057. height: math.unit(6, "feet"),
  66058. weight: math.unit(350, "lb"),
  66059. name: "Side",
  66060. image: {
  66061. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  66062. extra: 1075/1017,
  66063. bottom: 20/1095
  66064. },
  66065. form: "sona",
  66066. },
  66067. character_front: {
  66068. height: math.unit(6, "feet"),
  66069. weight: math.unit(300, "lb"),
  66070. name: "Front",
  66071. image: {
  66072. source: "./media/characters/midnight-yamikidate/character-front.svg",
  66073. extra: 1099/1005,
  66074. bottom: 22/1121
  66075. },
  66076. form: "character",
  66077. default: true
  66078. },
  66079. character_side: {
  66080. height: math.unit(6, "feet"),
  66081. weight: math.unit(300, "lb"),
  66082. name: "Side",
  66083. image: {
  66084. source: "./media/characters/midnight-yamikidate/character-side.svg",
  66085. extra: 1075/1017,
  66086. bottom: 20/1095
  66087. },
  66088. form: "character",
  66089. },
  66090. },
  66091. [
  66092. {
  66093. name: "Normal",
  66094. height: math.unit(500, "feet"),
  66095. default: true,
  66096. form: "sona"
  66097. },
  66098. {
  66099. name: "Normal",
  66100. height: math.unit(50, "feet"),
  66101. default: true,
  66102. form: "character"
  66103. },
  66104. ],
  66105. {
  66106. "sona": {
  66107. name: "Sona",
  66108. default: true
  66109. },
  66110. "character": {
  66111. name: "Character",
  66112. },
  66113. }
  66114. ))
  66115. characterMakers.push(() => makeCharacter(
  66116. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  66117. {
  66118. front: {
  66119. height: math.unit(5 + 4/12, "feet"),
  66120. weight: math.unit(58, "kg"),
  66121. name: "Front",
  66122. image: {
  66123. source: "./media/characters/hood/front.svg",
  66124. extra: 1474/1309,
  66125. bottom: 0/1474
  66126. }
  66127. },
  66128. },
  66129. [
  66130. {
  66131. name: "Normal",
  66132. height: math.unit(5 + 4/12, "feet"),
  66133. default: true
  66134. },
  66135. ]
  66136. ))
  66137. characterMakers.push(() => makeCharacter(
  66138. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  66139. {
  66140. front: {
  66141. height: math.unit(8 + 2/12, "feet"),
  66142. name: "Front",
  66143. image: {
  66144. source: "./media/characters/rena/front.svg",
  66145. extra: 1768/1632,
  66146. bottom: 57/1825
  66147. }
  66148. },
  66149. },
  66150. [
  66151. {
  66152. name: "Normal",
  66153. height: math.unit(8 + 2/12, "feet"),
  66154. default: true
  66155. },
  66156. ]
  66157. ))
  66158. characterMakers.push(() => makeCharacter(
  66159. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  66160. {
  66161. front: {
  66162. height: math.unit(5 + 3/12, "feet"),
  66163. name: "Front",
  66164. image: {
  66165. source: "./media/characters/taylor-dilophosaurus/front.svg",
  66166. extra: 1209/1159,
  66167. bottom: 33/1242
  66168. }
  66169. },
  66170. maw: {
  66171. height: math.unit(1.75, "feet"),
  66172. name: "Maw",
  66173. image: {
  66174. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  66175. }
  66176. },
  66177. },
  66178. [
  66179. {
  66180. name: "Micro",
  66181. height: math.unit(3, "inches")
  66182. },
  66183. {
  66184. name: "Regular",
  66185. height: math.unit(5 + 3/12, "feet"),
  66186. default: true
  66187. },
  66188. {
  66189. name: "Imagined",
  66190. height: math.unit(90, "meters")
  66191. },
  66192. ]
  66193. ))
  66194. characterMakers.push(() => makeCharacter(
  66195. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  66196. {
  66197. front: {
  66198. height: math.unit(11.75, "feet"),
  66199. weight: math.unit(4346, "lb"),
  66200. preyCapacity: math.unit(20, "people"),
  66201. name: "Front",
  66202. image: {
  66203. source: "./media/characters/suma-roo/front.svg",
  66204. extra: 1370/1365,
  66205. bottom: 164/1534
  66206. }
  66207. },
  66208. },
  66209. [
  66210. {
  66211. name: "Normal",
  66212. height: math.unit(11.75, "feet"),
  66213. default: true
  66214. },
  66215. ]
  66216. ))
  66217. characterMakers.push(() => makeCharacter(
  66218. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66219. {
  66220. front: {
  66221. height: math.unit(2.35, "meters"),
  66222. weight: math.unit(240, "kg"),
  66223. name: "Front",
  66224. image: {
  66225. source: "./media/characters/hymmanios/front.svg",
  66226. extra: 2032/1994,
  66227. bottom: 194/2226
  66228. }
  66229. },
  66230. },
  66231. [
  66232. {
  66233. name: "Normal",
  66234. height: math.unit(2.35, "meters"),
  66235. default: true
  66236. },
  66237. {
  66238. name: "Macro",
  66239. height: math.unit(75, "meters")
  66240. },
  66241. {
  66242. name: "Mega",
  66243. height: math.unit(1250, "meters")
  66244. },
  66245. {
  66246. name: "Giga",
  66247. height: math.unit(235000, "meters")
  66248. },
  66249. ]
  66250. ))
  66251. characterMakers.push(() => makeCharacter(
  66252. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66253. {
  66254. front: {
  66255. height: math.unit(134, "feet"),
  66256. weight: math.unit(932.635, "tons"),
  66257. name: "Front",
  66258. image: {
  66259. source: "./media/characters/azalea/front.svg",
  66260. extra: 703/687,
  66261. bottom: 75/778
  66262. }
  66263. },
  66264. },
  66265. [
  66266. {
  66267. name: "Normal",
  66268. height: math.unit(134, "feet"),
  66269. default: true
  66270. },
  66271. ]
  66272. ))
  66273. characterMakers.push(() => makeCharacter(
  66274. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66275. {
  66276. front: {
  66277. height: math.unit(6.4, "feet"),
  66278. weight: math.unit(167.5, "lb"),
  66279. name: "Front",
  66280. image: {
  66281. source: "./media/characters/lizzy/front.svg",
  66282. extra: 1916/1791,
  66283. bottom: 103/2019
  66284. }
  66285. },
  66286. back: {
  66287. height: math.unit(6.4, "feet"),
  66288. weight: math.unit(167.5, "lb"),
  66289. name: "Back",
  66290. image: {
  66291. source: "./media/characters/lizzy/back.svg",
  66292. extra: 1995/1856,
  66293. bottom: 11/2006
  66294. }
  66295. },
  66296. },
  66297. [
  66298. {
  66299. name: "Normal",
  66300. height: math.unit(6.4, "feet"),
  66301. default: true
  66302. },
  66303. ]
  66304. ))
  66305. characterMakers.push(() => makeCharacter(
  66306. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66307. {
  66308. front: {
  66309. height: math.unit(66, "inches"),
  66310. name: "Front",
  66311. image: {
  66312. source: "./media/characters/sasha/front.svg",
  66313. extra: 620/571,
  66314. bottom: 33/653
  66315. }
  66316. },
  66317. back: {
  66318. height: math.unit(66, "inches"),
  66319. name: "Back",
  66320. image: {
  66321. source: "./media/characters/sasha/back.svg",
  66322. extra: 615/564,
  66323. bottom: 38/653
  66324. }
  66325. },
  66326. },
  66327. [
  66328. {
  66329. name: "IRL",
  66330. height: math.unit(2, "inches")
  66331. },
  66332. {
  66333. name: "Normal",
  66334. height: math.unit(66, "inches"),
  66335. default: true
  66336. },
  66337. {
  66338. name: "Macro",
  66339. height: math.unit(400, "feet")
  66340. },
  66341. {
  66342. name: "Mega Macro",
  66343. height: math.unit(500000, "feet")
  66344. },
  66345. {
  66346. name: "Giga Macro",
  66347. height: math.unit(50000, "miles")
  66348. },
  66349. ]
  66350. ))
  66351. characterMakers.push(() => makeCharacter(
  66352. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66353. {
  66354. front: {
  66355. height: math.unit(52, "inches"),
  66356. name: "Front",
  66357. image: {
  66358. source: "./media/characters/autumn-avali/front.svg",
  66359. extra: 1031/908,
  66360. bottom: 38/1069
  66361. }
  66362. },
  66363. back: {
  66364. height: math.unit(52, "inches"),
  66365. name: "Back",
  66366. image: {
  66367. source: "./media/characters/autumn-avali/back.svg",
  66368. extra: 1047/923,
  66369. bottom: 11/1058
  66370. }
  66371. },
  66372. maw: {
  66373. height: math.unit(0.59, "feet"),
  66374. name: "Maw",
  66375. image: {
  66376. source: "./media/characters/autumn-avali/maw.svg"
  66377. }
  66378. },
  66379. },
  66380. [
  66381. {
  66382. name: "Normal",
  66383. height: math.unit(52, "inches"),
  66384. default: true
  66385. },
  66386. {
  66387. name: "Big'vali",
  66388. height: math.unit(3.5, "meters")
  66389. },
  66390. {
  66391. name: "Macro",
  66392. height: math.unit(35, "meters")
  66393. },
  66394. {
  66395. name: "Macro+",
  66396. height: math.unit(165, "meters")
  66397. },
  66398. {
  66399. name: "Megamacro",
  66400. height: math.unit(8250, "meters")
  66401. },
  66402. {
  66403. name: "Megamacro+",
  66404. height: math.unit(88000, "meters")
  66405. },
  66406. {
  66407. name: "Gigamacro",
  66408. height: math.unit(1.32, "megameters")
  66409. },
  66410. {
  66411. name: "Planet Cracker",
  66412. height: math.unit(77, "megameters")
  66413. },
  66414. ]
  66415. ))
  66416. characterMakers.push(() => makeCharacter(
  66417. { name: "Sophie", species: ["cow"], tags: ["anthro"] },
  66418. {
  66419. front: {
  66420. height: math.unit(200, "feet"),
  66421. name: "Front",
  66422. image: {
  66423. source: "./media/characters/sophie/front.svg",
  66424. extra: 710/680,
  66425. bottom: 3/713
  66426. },
  66427. extraAttributes: {
  66428. "milkProduction": {
  66429. name: "Milk Production",
  66430. power: 3,
  66431. type: "volume",
  66432. base: math.unit(27000, "liters")
  66433. },
  66434. }
  66435. },
  66436. },
  66437. [
  66438. {
  66439. name: "Normal",
  66440. height: math.unit(200, "feet"),
  66441. default: true
  66442. },
  66443. ]
  66444. ))
  66445. characterMakers.push(() => makeCharacter(
  66446. { name: "Adelaide (Spireborn)", species: ["spireborn"], tags: ["anthro"] },
  66447. {
  66448. front: {
  66449. height: math.unit(23, "feet"),
  66450. name: "Front",
  66451. image: {
  66452. source: "./media/characters/adelaide-spireborn/front.svg",
  66453. extra: 671/625,
  66454. bottom: 18/689
  66455. }
  66456. },
  66457. maw: {
  66458. height: math.unit(7.8, "feet"),
  66459. name: "Maw",
  66460. image: {
  66461. source: "./media/characters/adelaide-spireborn/maw.svg"
  66462. }
  66463. },
  66464. sword: {
  66465. height: math.unit(13.4, "feet"),
  66466. name: "Sword",
  66467. image: {
  66468. source: "./media/characters/adelaide-spireborn/sword.svg"
  66469. }
  66470. },
  66471. },
  66472. [
  66473. {
  66474. name: "Magically Induced",
  66475. height: math.unit(8.5, "feet")
  66476. },
  66477. {
  66478. name: "Normal",
  66479. height: math.unit(23, "feet"),
  66480. default: true
  66481. },
  66482. ]
  66483. ))
  66484. characterMakers.push(() => makeCharacter(
  66485. { name: "Artemus", species: ["zorgoia"], tags: ["feral"] },
  66486. {
  66487. side: {
  66488. height: math.unit(8, "feet"),
  66489. name: "Side",
  66490. image: {
  66491. source: "./media/characters/artemus/side.svg",
  66492. extra: 800/397,
  66493. bottom: 83/883
  66494. }
  66495. },
  66496. front: {
  66497. height: math.unit(8, "feet"),
  66498. name: "Front",
  66499. image: {
  66500. source: "./media/characters/artemus/front.svg",
  66501. extra: 763/348,
  66502. bottom: 89/852
  66503. }
  66504. },
  66505. maw: {
  66506. height: math.unit(5.63, "feet"),
  66507. name: "Maw",
  66508. image: {
  66509. source: "./media/characters/artemus/maw.svg"
  66510. }
  66511. },
  66512. forepaw: {
  66513. height: math.unit(3.13, "feet"),
  66514. name: "Forepaw",
  66515. image: {
  66516. source: "./media/characters/artemus/forepaw.svg"
  66517. }
  66518. },
  66519. hindpaw: {
  66520. height: math.unit(4.85, "feet"),
  66521. name: "Hindpaw",
  66522. image: {
  66523. source: "./media/characters/artemus/hindpaw.svg"
  66524. }
  66525. },
  66526. },
  66527. [
  66528. {
  66529. name: "Normal",
  66530. height: math.unit(8, "feet"),
  66531. default: true
  66532. },
  66533. ]
  66534. ))
  66535. characterMakers.push(() => makeCharacter(
  66536. { name: "Flynn", species: ["cross-fox"], tags: ["anthro"] },
  66537. {
  66538. front: {
  66539. height: math.unit(4, "feet"),
  66540. name: "Front",
  66541. image: {
  66542. source: "./media/characters/flynn/front.svg",
  66543. extra: 427/404,
  66544. bottom: 14/441
  66545. },
  66546. extraAttributes: {
  66547. "tailLength": {
  66548. name: "Tail Length",
  66549. power: 1,
  66550. type: "length",
  66551. base: math.unit(2.7, "feet")
  66552. },
  66553. }
  66554. },
  66555. frontNsfw: {
  66556. height: math.unit(4, "feet"),
  66557. name: "Front NSFW",
  66558. image: {
  66559. source: "./media/characters/flynn/front-nsfw.svg",
  66560. extra: 427/404,
  66561. bottom: 14/441
  66562. },
  66563. extraAttributes: {
  66564. "tailLength": {
  66565. name: "Tail Length",
  66566. power: 1,
  66567. type: "length",
  66568. base: math.unit(2.7, "feet")
  66569. },
  66570. "dickLength": {
  66571. name: "Dick Length",
  66572. power: 1,
  66573. type: "length",
  66574. base: math.unit(0.7, "feet")
  66575. },
  66576. }
  66577. },
  66578. back: {
  66579. height: math.unit(4, "feet"),
  66580. name: "Back",
  66581. image: {
  66582. source: "./media/characters/flynn/back.svg",
  66583. extra: 420/400,
  66584. bottom: 12/432
  66585. },
  66586. extraAttributes: {
  66587. "tailLength": {
  66588. name: "Tail Length",
  66589. power: 1,
  66590. type: "length",
  66591. base: math.unit(2.7, "feet")
  66592. },
  66593. }
  66594. },
  66595. },
  66596. [
  66597. {
  66598. name: "Normal",
  66599. height: math.unit(4, "feet"),
  66600. default: true
  66601. },
  66602. ]
  66603. ))
  66604. characterMakers.push(() => makeCharacter(
  66605. { name: "Orun", species: ["sabertooth-tiger"], tags: ["anthro"] },
  66606. {
  66607. frontSfw: {
  66608. height: math.unit(1.9, "meters"),
  66609. name: "Front (SFW)",
  66610. image: {
  66611. source: "./media/characters/orun/front-sfw.svg",
  66612. extra: 1684/1625,
  66613. bottom: 64/1748
  66614. }
  66615. },
  66616. frontNsfw: {
  66617. height: math.unit(1.9, "meters"),
  66618. name: "Front (NSFW)",
  66619. image: {
  66620. source: "./media/characters/orun/front-nsfw.svg",
  66621. extra: 1684/1625,
  66622. bottom: 64/1748
  66623. }
  66624. },
  66625. frontErect: {
  66626. height: math.unit(1.9, "meters"),
  66627. name: "Front (Erect)",
  66628. image: {
  66629. source: "./media/characters/orun/front-erect.svg",
  66630. extra: 1684/1625,
  66631. bottom: 64/1748
  66632. }
  66633. },
  66634. },
  66635. [
  66636. {
  66637. name: "Normal",
  66638. height: math.unit(1.9, "meters"),
  66639. default: true
  66640. },
  66641. {
  66642. name: "Giant",
  66643. height: math.unit(45, "meters")
  66644. },
  66645. {
  66646. name: "Bigger Giant",
  66647. height: math.unit(155, "meters")
  66648. },
  66649. {
  66650. name: "Macro",
  66651. height: math.unit(550, "meters")
  66652. },
  66653. {
  66654. name: "Bigger Macro",
  66655. height: math.unit(1050, "meters")
  66656. },
  66657. {
  66658. name: "Titan",
  66659. height: math.unit(5, "km")
  66660. },
  66661. {
  66662. name: "Bigger Titan",
  66663. height: math.unit(15, "km")
  66664. },
  66665. ]
  66666. ))
  66667. characterMakers.push(() => makeCharacter(
  66668. { name: "Catherine Busch", species: ["arctic-fox"], tags: ["anthro"] },
  66669. {
  66670. clothed: {
  66671. height: math.unit(5 + 6/12, "feet"),
  66672. name: "Clothed",
  66673. image: {
  66674. source: "./media/characters/catherine-busch/clothed.svg",
  66675. extra: 1330/1273,
  66676. bottom: 45/1375
  66677. }
  66678. },
  66679. nude: {
  66680. height: math.unit(5 + 6/12, "feet"),
  66681. name: "Nude",
  66682. image: {
  66683. source: "./media/characters/catherine-busch/nude.svg",
  66684. extra: 1330/1273,
  66685. bottom: 45/1375
  66686. }
  66687. },
  66688. },
  66689. [
  66690. {
  66691. name: "Normal",
  66692. height: math.unit(5 + 6/12, "feet"),
  66693. default: true
  66694. },
  66695. {
  66696. name: "Maximum",
  66697. height: math.unit(1644, "feet")
  66698. },
  66699. ]
  66700. ))
  66701. characterMakers.push(() => makeCharacter(
  66702. { name: "Carter", species: ["cross-fox"], tags: ["anthro"] },
  66703. {
  66704. front: {
  66705. height: math.unit(5 + 4/12, "feet"),
  66706. weight: math.unit(160, "lb"),
  66707. name: "Front",
  66708. image: {
  66709. source: "./media/characters/carter/front.svg",
  66710. extra: 1007/940,
  66711. bottom: 37/1044
  66712. }
  66713. },
  66714. back: {
  66715. height: math.unit(5 + 4/12, "feet"),
  66716. weight: math.unit(160, "lb"),
  66717. name: "Back",
  66718. image: {
  66719. source: "./media/characters/carter/back.svg",
  66720. extra: 1010/941,
  66721. bottom: 25/1035
  66722. }
  66723. },
  66724. frontErect: {
  66725. height: math.unit(5 + 4/12, "feet"),
  66726. weight: math.unit(160, "lb"),
  66727. name: "Front (Erect)",
  66728. image: {
  66729. source: "./media/characters/carter/front-erect.svg",
  66730. extra: 1015/948,
  66731. bottom: 33/1048
  66732. }
  66733. },
  66734. },
  66735. [
  66736. {
  66737. name: "Normal",
  66738. height: math.unit(5 + 4/12, "feet"),
  66739. default: true
  66740. },
  66741. ]
  66742. ))
  66743. characterMakers.push(() => makeCharacter(
  66744. { name: "Yula", species: ["german-shepherd"], tags: ["anthro"] },
  66745. {
  66746. front: {
  66747. height: math.unit(90, "feet"),
  66748. name: "Front",
  66749. image: {
  66750. source: "./media/characters/yula/front.svg",
  66751. extra: 686/641,
  66752. bottom: 5/691
  66753. }
  66754. },
  66755. },
  66756. [
  66757. {
  66758. name: "Normal",
  66759. height: math.unit(90, "feet"),
  66760. default: true
  66761. },
  66762. ]
  66763. ))
  66764. characterMakers.push(() => makeCharacter(
  66765. { name: "Thomas Bakes", species: ["dutch-angel-dragon"], tags: ["anthro"] },
  66766. {
  66767. front: {
  66768. height: math.unit(2.16, "meters"),
  66769. weight: math.unit(275, "kg"),
  66770. name: "Front",
  66771. image: {
  66772. source: "./media/characters/thomas-bakes/front.svg",
  66773. extra: 333/283,
  66774. bottom: 46/379
  66775. },
  66776. extraAttributes: {
  66777. "pawLength": {
  66778. name: "Paw Length",
  66779. power: 1,
  66780. type: "length",
  66781. base: math.unit(35, "cm")
  66782. },
  66783. "pawWidth": {
  66784. name: "Paw Width",
  66785. power: 1,
  66786. type: "length",
  66787. base: math.unit(30, "cm")
  66788. },
  66789. "handLength": {
  66790. name: "Hand Length",
  66791. power: 1,
  66792. type: "length",
  66793. base: math.unit(30, "cm")
  66794. },
  66795. "handWidth": {
  66796. name: "Hand Width",
  66797. power: 1,
  66798. type: "length",
  66799. base: math.unit(25, "cm")
  66800. },
  66801. "preyCapacity": {
  66802. name: "Prey Capacity",
  66803. power: 3,
  66804. type: "volume",
  66805. base: math.unit(40*20*20, "cm^3")
  66806. },
  66807. "swallowSize": {
  66808. name: "Swallow Size",
  66809. power: 1,
  66810. type: "length",
  66811. base: math.unit(13, "cm")
  66812. },
  66813. "energyIntake": {
  66814. name: "Food Intake",
  66815. power: 3,
  66816. type: "energy",
  66817. base: math.unit(3250, "kcal")
  66818. },
  66819. "wingspan": {
  66820. name: "Wingspan",
  66821. power: 1,
  66822. type: "length",
  66823. base: math.unit(3.7, "meters")
  66824. },
  66825. "wingWidth": {
  66826. name: "Wing Width",
  66827. power: 1,
  66828. type: "length",
  66829. base: math.unit(1.7, "meters")
  66830. },
  66831. }
  66832. },
  66833. },
  66834. [
  66835. {
  66836. name: "Normal",
  66837. height: math.unit(2.16, "meters"),
  66838. default: true
  66839. },
  66840. ]
  66841. ))
  66842. characterMakers.push(() => makeCharacter(
  66843. { name: "Rekka", species: ["kaiju", "hyena"], tags: ["anthro"] },
  66844. {
  66845. front: {
  66846. height: math.unit(8 + 6/12, "feet"),
  66847. weight: math.unit(600, "lb"),
  66848. name: "Front",
  66849. image: {
  66850. source: "./media/characters/rekka/front.svg",
  66851. extra: 1814/1672,
  66852. bottom: 92/1906
  66853. }
  66854. },
  66855. back: {
  66856. height: math.unit(8 + 6/12, "feet"),
  66857. weight: math.unit(600, "lb"),
  66858. name: "Back",
  66859. image: {
  66860. source: "./media/characters/rekka/back.svg",
  66861. extra: 1795/1682,
  66862. bottom: 86/1881
  66863. }
  66864. },
  66865. },
  66866. [
  66867. {
  66868. name: "Normal",
  66869. height: math.unit(8 + 6/12, "feet"),
  66870. default: true
  66871. },
  66872. {
  66873. name: "Category 1",
  66874. height: math.unit(30, "feet")
  66875. },
  66876. {
  66877. name: "Category 2",
  66878. height: math.unit(150, "feet")
  66879. },
  66880. {
  66881. name: "Category 3",
  66882. height: math.unit(300, "feet")
  66883. },
  66884. {
  66885. name: "Category 4",
  66886. height: math.unit(550, "feet")
  66887. },
  66888. ]
  66889. ))
  66890. characterMakers.push(() => makeCharacter(
  66891. { name: "Zeke", species: ["german-shepherd"], tags: ["anthro"] },
  66892. {
  66893. front: {
  66894. height: math.unit(5 + 8/12, "feet"),
  66895. weight: math.unit(180, "lb"),
  66896. name: "Front",
  66897. image: {
  66898. source: "./media/characters/zeke/front.svg",
  66899. extra: 452/417,
  66900. bottom: 21/473
  66901. }
  66902. },
  66903. back: {
  66904. height: math.unit(5 + 8/12, "feet"),
  66905. weight: math.unit(180, "lb"),
  66906. name: "Back",
  66907. image: {
  66908. source: "./media/characters/zeke/back.svg",
  66909. extra: 473/444,
  66910. bottom: 8/481
  66911. }
  66912. },
  66913. frontNsfw: {
  66914. height: math.unit(5 + 8/12, "feet"),
  66915. weight: math.unit(180, "lb"),
  66916. name: "Front (NSFW)",
  66917. image: {
  66918. source: "./media/characters/zeke/front-nsfw.svg",
  66919. extra: 452/417,
  66920. bottom: 21/473
  66921. }
  66922. },
  66923. backNsfw: {
  66924. height: math.unit(5 + 8/12, "feet"),
  66925. weight: math.unit(180, "lb"),
  66926. name: "Back (NSFW)",
  66927. image: {
  66928. source: "./media/characters/zeke/back-nsfw.svg",
  66929. extra: 473/444,
  66930. bottom: 8/481
  66931. }
  66932. },
  66933. frontErect: {
  66934. height: math.unit(5 + 8/12, "feet"),
  66935. weight: math.unit(180, "lb"),
  66936. name: "Front (Erect)",
  66937. image: {
  66938. source: "./media/characters/zeke/front-erect.svg",
  66939. extra: 452/417,
  66940. bottom: 21/473
  66941. }
  66942. },
  66943. },
  66944. [
  66945. {
  66946. name: "Normal",
  66947. height: math.unit(5 + 8/12, "feet"),
  66948. default: true
  66949. },
  66950. {
  66951. name: "Kaiju",
  66952. height: math.unit((5 + 8/12) * 54.6087, "feet")
  66953. },
  66954. {
  66955. name: "Pez Humans",
  66956. height: math.unit((5 + 8/12) * 121.92, "feet")
  66957. },
  66958. {
  66959. name: "Pez Buses",
  66960. height: math.unit((5 + 8/12) * 796.67, "feet")
  66961. },
  66962. {
  66963. name: "Pez Planes",
  66964. height: math.unit((5 + 8/12) * 5086.6, "feet")
  66965. },
  66966. {
  66967. name: "Pez Khalifa",
  66968. height: math.unit((5 + 8/12) * 55320, "feet")
  66969. },
  66970. ]
  66971. ))
  66972. characterMakers.push(() => makeCharacter(
  66973. { name: "Adalwen", species: ["german-shepherd"], tags: ["anthro"] },
  66974. {
  66975. frontSfw: {
  66976. height: math.unit(2.2, "meters"),
  66977. name: "Front (SFW)",
  66978. image: {
  66979. source: "./media/characters/adalwen/front-sfw.svg",
  66980. extra: 1654/1574,
  66981. bottom: 107/1761
  66982. }
  66983. },
  66984. frontNsfw: {
  66985. height: math.unit(2.2, "meters"),
  66986. name: "Front (NSFW)",
  66987. image: {
  66988. source: "./media/characters/adalwen/front-nsfw.svg",
  66989. extra: 1654/1574,
  66990. bottom: 107/1761
  66991. }
  66992. },
  66993. frontErect: {
  66994. height: math.unit(2.2, "meters"),
  66995. name: "Front (Erect)",
  66996. image: {
  66997. source: "./media/characters/adalwen/front-erect.svg",
  66998. extra: 1654/1574,
  66999. bottom: 107/1761
  67000. }
  67001. },
  67002. },
  67003. [
  67004. {
  67005. name: "Normal",
  67006. height: math.unit(2.2, "meters"),
  67007. default: true
  67008. },
  67009. {
  67010. name: "Giant",
  67011. height: math.unit(55, "meters")
  67012. },
  67013. {
  67014. name: "Bigger Giant",
  67015. height: math.unit(200, "meters")
  67016. },
  67017. {
  67018. name: "Macro",
  67019. height: math.unit(650, "meters")
  67020. },
  67021. {
  67022. name: "Bigger Macro",
  67023. height: math.unit(1300, "meters")
  67024. },
  67025. {
  67026. name: "Titan",
  67027. height: math.unit(5500, "meters")
  67028. },
  67029. {
  67030. name: "Titan 2",
  67031. height: math.unit(17, "km")
  67032. },
  67033. {
  67034. name: "Titan 3",
  67035. height: math.unit(125, "km")
  67036. },
  67037. {
  67038. name: "Titan 4",
  67039. height: math.unit(1500, "km")
  67040. },
  67041. {
  67042. name: "Titan 5",
  67043. height: math.unit(55000, "km")
  67044. },
  67045. ]
  67046. ))
  67047. characterMakers.push(() => makeCharacter(
  67048. { name: "Alexio", species: ["lemur"], tags: ["anthro"] },
  67049. {
  67050. front: {
  67051. height: math.unit(1.91, "meters"),
  67052. weight: math.unit(76, "kg"),
  67053. name: "Front",
  67054. image: {
  67055. source: "./media/characters/alexio/front.svg",
  67056. extra: 1440/1376,
  67057. bottom: 141/1581
  67058. }
  67059. },
  67060. back: {
  67061. height: math.unit(1.91, "meters"),
  67062. weight: math.unit(76, "kg"),
  67063. name: "Back",
  67064. image: {
  67065. source: "./media/characters/alexio/back.svg",
  67066. extra: 1448/1388,
  67067. bottom: 57/1505
  67068. }
  67069. },
  67070. head: {
  67071. height: math.unit(1.17, "feet"),
  67072. name: "Head",
  67073. image: {
  67074. source: "./media/characters/alexio/head.svg"
  67075. }
  67076. },
  67077. maw: {
  67078. height: math.unit(0.6, "feet"),
  67079. name: "Maw",
  67080. image: {
  67081. source: "./media/characters/alexio/maw.svg"
  67082. }
  67083. },
  67084. feet: {
  67085. height: math.unit(1.34, "feet"),
  67086. name: "Feet",
  67087. image: {
  67088. source: "./media/characters/alexio/feet.svg"
  67089. }
  67090. },
  67091. genitals: {
  67092. height: math.unit(1.03, "feet"),
  67093. name: "Genitals",
  67094. image: {
  67095. source: "./media/characters/alexio/genitals.svg"
  67096. }
  67097. },
  67098. },
  67099. [
  67100. {
  67101. name: "Normal",
  67102. height: math.unit(1.91, "meters"),
  67103. default: true
  67104. },
  67105. {
  67106. name: "Minimacro",
  67107. height: math.unit(191, "meters")
  67108. },
  67109. {
  67110. name: "Macro",
  67111. height: math.unit(477.5, "meters")
  67112. },
  67113. {
  67114. name: "Mega Macro",
  67115. height: math.unit(1432.5, "meters")
  67116. },
  67117. ]
  67118. ))
  67119. characterMakers.push(() => makeCharacter(
  67120. { name: "Quake Lee", species: ["red-fox"], tags: ["anthro"] },
  67121. {
  67122. front: {
  67123. height: math.unit(5 + 2/12, "feet"),
  67124. weight: math.unit(110, "lb"),
  67125. name: "Front",
  67126. image: {
  67127. source: "./media/characters/quake-lee/front.svg",
  67128. extra: 1376/1295,
  67129. bottom: 69/1445
  67130. }
  67131. },
  67132. paw: {
  67133. height: math.unit(0.786, "feet"),
  67134. name: "Paw",
  67135. image: {
  67136. source: "./media/characters/quake-lee/paw.svg"
  67137. }
  67138. },
  67139. },
  67140. [
  67141. {
  67142. name: "Avey",
  67143. height: math.unit(5 + 2/12, "feet"),
  67144. default: true
  67145. },
  67146. {
  67147. name: "Macro",
  67148. height: math.unit(146, "feet")
  67149. },
  67150. {
  67151. name: "Mega",
  67152. height: math.unit(7, "miles")
  67153. },
  67154. {
  67155. name: "Ultra",
  67156. height: math.unit(1.6, "gigameters")
  67157. },
  67158. ]
  67159. ))
  67160. characterMakers.push(() => makeCharacter(
  67161. { name: "Wolf", species: ["wolf"], tags: ["feral"] },
  67162. {
  67163. side: {
  67164. height: math.unit(40, "inches"),
  67165. weight: math.unit(200, "lb"),
  67166. preyCapacity: math.unit(2, "people"),
  67167. name: "Side",
  67168. image: {
  67169. source: "./media/characters/wolf/side.svg",
  67170. extra: 432/345,
  67171. bottom: 15/447
  67172. }
  67173. },
  67174. front: {
  67175. height: math.unit(40, "inches"),
  67176. weight: math.unit(200, "lb"),
  67177. preyCapacity: math.unit(2, "people"),
  67178. name: "Front",
  67179. image: {
  67180. source: "./media/characters/wolf/front.svg",
  67181. extra: 803/467,
  67182. bottom: 97/900
  67183. }
  67184. },
  67185. },
  67186. [
  67187. {
  67188. name: "Small",
  67189. height: math.unit(40, "inches"),
  67190. default: true
  67191. },
  67192. {
  67193. name: "Medium",
  67194. height: math.unit(60, "inches")
  67195. },
  67196. {
  67197. name: "Large",
  67198. height: math.unit(110, "inches")
  67199. },
  67200. ]
  67201. ))
  67202. characterMakers.push(() => makeCharacter(
  67203. { name: "Cherry Spark", species: ["cheetah", "deity"], tags: ["feral"] },
  67204. {
  67205. sphinx_side: {
  67206. height: math.unit(64.7, "feet"),
  67207. weight: math.unit(150265, "lb"),
  67208. name: "Side",
  67209. image: {
  67210. source: "./media/characters/cherry-spark/sphinx-side.svg",
  67211. extra: 410/299,
  67212. bottom: 7/417
  67213. },
  67214. form: "sphinx",
  67215. default: true
  67216. },
  67217. sphinx_cooch: {
  67218. height: math.unit(57, "feet"),
  67219. name: "Cooch",
  67220. image: {
  67221. source: "./media/characters/cherry-spark/sphinx-cooch.svg"
  67222. },
  67223. form: "sphinx",
  67224. },
  67225. },
  67226. [
  67227. {
  67228. name: "Macro",
  67229. height: math.unit(64.7, "feet"),
  67230. default: true,
  67231. form: "sphinx"
  67232. },
  67233. ],
  67234. {
  67235. "sphinx": {
  67236. name: "Sphinx",
  67237. default: true
  67238. },
  67239. }
  67240. ))
  67241. characterMakers.push(() => makeCharacter(
  67242. { name: "Jaanada Palzathan", species: ["dragon"], tags: ["anthro"] },
  67243. {
  67244. front: {
  67245. height: math.unit(100, "meters"),
  67246. weight: math.unit(12700, "tonnes"),
  67247. name: "Front",
  67248. image: {
  67249. source: "./media/characters/jaanada-palzathan/front.svg",
  67250. extra: 691/652,
  67251. bottom: 13/704
  67252. }
  67253. },
  67254. },
  67255. [
  67256. {
  67257. name: "Giant 1",
  67258. height: math.unit(2.62, "meters")
  67259. },
  67260. {
  67261. name: "Giant 2",
  67262. height: math.unit(4.14, "meters")
  67263. },
  67264. {
  67265. name: "Macro 1",
  67266. height: math.unit(38.4, "meters")
  67267. },
  67268. {
  67269. name: "Macro 2",
  67270. height: math.unit(100, "meters"),
  67271. default: true
  67272. },
  67273. {
  67274. name: "Macro 3",
  67275. height: math.unit(1800, "meters")
  67276. },
  67277. ]
  67278. ))
  67279. //characters
  67280. function makeCharacters() {
  67281. const results = [];
  67282. characterMakers.forEach(character => {
  67283. results.push(character());
  67284. });
  67285. return results;
  67286. }