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

67003 строки
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. }
  2447. //species
  2448. function getSpeciesInfo(speciesList) {
  2449. let result = new Set();
  2450. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2451. result.add(entry)
  2452. });
  2453. return Array.from(result);
  2454. };
  2455. function getSpeciesInfoHelper(species) {
  2456. if (!speciesData[species]) {
  2457. console.warn(species + " doesn't exist");
  2458. return [];
  2459. }
  2460. if (speciesData[species].parents) {
  2461. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2462. } else {
  2463. return [species];
  2464. }
  2465. }
  2466. characterMakers.push(() => makeCharacter(
  2467. {
  2468. name: "Fen",
  2469. species: ["crux"],
  2470. description: {
  2471. title: "Bio",
  2472. text: "Very furry. Sheds on everything."
  2473. },
  2474. tags: [
  2475. "anthro",
  2476. "goo"
  2477. ]
  2478. },
  2479. {
  2480. front: {
  2481. height: math.unit(12, "feet"),
  2482. weight: math.unit(2400, "lb"),
  2483. preyCapacity: math.unit(1, "people"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/fen/front.svg",
  2487. extra: 1804/1562,
  2488. bottom: 205/2009
  2489. },
  2490. extraAttributes: {
  2491. pawSize: {
  2492. name: "Paw Size",
  2493. power: 2,
  2494. type: "area",
  2495. base: math.unit(0.35, "m^2")
  2496. }
  2497. }
  2498. },
  2499. diving: {
  2500. height: math.unit(4.9, "meters"),
  2501. weight: math.unit(2400, "lb"),
  2502. name: "Diving",
  2503. image: {
  2504. source: "./media/characters/fen/diving.svg"
  2505. }
  2506. },
  2507. sleeby: {
  2508. height: math.unit(3.45, "meters"),
  2509. weight: math.unit(2400, "lb"),
  2510. name: "Sleeby",
  2511. image: {
  2512. source: "./media/characters/fen/sleeby.svg"
  2513. }
  2514. },
  2515. goo: {
  2516. height: math.unit(12, "feet"),
  2517. weight: math.unit(3600, "lb"),
  2518. volume: math.unit(1000, "liters"),
  2519. preyCapacity: math.unit(6, "people"),
  2520. name: "Goo",
  2521. image: {
  2522. source: "./media/characters/fen/goo.svg",
  2523. extra: 1307/1071,
  2524. bottom: 134/1441
  2525. }
  2526. },
  2527. horror: {
  2528. height: math.unit(13.6, "feet"),
  2529. weight: math.unit(2400, "lb"),
  2530. preyCapacity: math.unit(1, "people"),
  2531. name: "Horror",
  2532. image: {
  2533. source: "./media/characters/fen/horror.svg",
  2534. extra: 893/797,
  2535. bottom: 0/893
  2536. }
  2537. },
  2538. gooNsfw: {
  2539. height: math.unit(12, "feet"),
  2540. weight: math.unit(3750, "lb"),
  2541. volume: math.unit(1000, "liters"),
  2542. preyCapacity: math.unit(6, "people"),
  2543. name: "Goo (NSFW)",
  2544. image: {
  2545. source: "./media/characters/fen/goo-nsfw.svg",
  2546. extra: 1875/1734,
  2547. bottom: 122/1997
  2548. }
  2549. },
  2550. maw: {
  2551. height: math.unit(5.03, "feet"),
  2552. name: "Maw",
  2553. image: {
  2554. source: "./media/characters/fen/maw.svg"
  2555. }
  2556. },
  2557. gooCeiling: {
  2558. height: math.unit(6.6, "feet"),
  2559. weight: math.unit(3000, "lb"),
  2560. volume: math.unit(1000, "liters"),
  2561. preyCapacity: math.unit(6, "people"),
  2562. name: "Maw (Goo)",
  2563. image: {
  2564. source: "./media/characters/fen/goo-maw.svg"
  2565. }
  2566. },
  2567. paw: {
  2568. height: math.unit(3.77, "feet"),
  2569. name: "Paw",
  2570. image: {
  2571. source: "./media/characters/fen/paw.svg"
  2572. },
  2573. extraAttributes: {
  2574. "toeSize": {
  2575. name: "Toe Size",
  2576. power: 2,
  2577. type: "area",
  2578. base: math.unit(0.02875, "m^2")
  2579. },
  2580. "pawSize": {
  2581. name: "Paw Size",
  2582. power: 2,
  2583. type: "area",
  2584. base: math.unit(0.378, "m^2")
  2585. },
  2586. }
  2587. },
  2588. tail: {
  2589. height: math.unit(12.1, "feet"),
  2590. name: "Tail",
  2591. image: {
  2592. source: "./media/characters/fen/tail.svg"
  2593. }
  2594. },
  2595. tailFull: {
  2596. height: math.unit(12.1, "feet"),
  2597. name: "Full Tail",
  2598. image: {
  2599. source: "./media/characters/fen/tail-full.svg"
  2600. }
  2601. },
  2602. back: {
  2603. height: math.unit(12, "feet"),
  2604. weight: math.unit(2400, "lb"),
  2605. name: "Back",
  2606. image: {
  2607. source: "./media/characters/fen/back.svg",
  2608. },
  2609. info: {
  2610. description: {
  2611. mode: "append",
  2612. text: "\n\nHe is not currently looking at you."
  2613. }
  2614. }
  2615. },
  2616. full: {
  2617. height: math.unit(1.85, "meter"),
  2618. weight: math.unit(3200, "lb"),
  2619. preyCapacity: math.unit(3, "people"),
  2620. name: "Full",
  2621. image: {
  2622. source: "./media/characters/fen/full.svg",
  2623. extra: 1133/859,
  2624. bottom: 145/1278
  2625. },
  2626. info: {
  2627. description: {
  2628. mode: "append",
  2629. text: "\n\nMunch."
  2630. }
  2631. }
  2632. },
  2633. gooLounging: {
  2634. height: math.unit(4.53, "feet"),
  2635. weight: math.unit(3000, "lb"),
  2636. preyCapacity: math.unit(6, "people"),
  2637. name: "Goo (Lounging)",
  2638. image: {
  2639. source: "./media/characters/fen/goo-lounging.svg",
  2640. bottom: 116 / 613
  2641. }
  2642. },
  2643. lounging: {
  2644. height: math.unit(10.52, "feet"),
  2645. weight: math.unit(2400, "lb"),
  2646. name: "Lounging",
  2647. image: {
  2648. source: "./media/characters/fen/lounging.svg"
  2649. }
  2650. },
  2651. },
  2652. [
  2653. {
  2654. name: "Small",
  2655. height: math.unit(2.2428, "meter")
  2656. },
  2657. {
  2658. name: "Normal",
  2659. height: math.unit(12, "feet"),
  2660. default: true,
  2661. },
  2662. {
  2663. name: "Big",
  2664. height: math.unit(20, "feet")
  2665. },
  2666. {
  2667. name: "Minimacro",
  2668. height: math.unit(40, "feet"),
  2669. info: {
  2670. description: {
  2671. mode: "append",
  2672. text: "\n\nTOO DAMN BIG"
  2673. }
  2674. }
  2675. },
  2676. {
  2677. name: "Macro",
  2678. height: math.unit(100, "feet"),
  2679. info: {
  2680. description: {
  2681. mode: "append",
  2682. text: "\n\nTOO DAMN BIG"
  2683. }
  2684. }
  2685. },
  2686. {
  2687. name: "Megamacro",
  2688. height: math.unit(2, "miles")
  2689. },
  2690. {
  2691. name: "Gigamacro",
  2692. height: math.unit(10, "earths")
  2693. },
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(183, "cm"),
  2701. weight: math.unit(80, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/sofia-fluttertail/front.svg",
  2705. bottom: 0.01,
  2706. extra: 2154 / 2081
  2707. }
  2708. },
  2709. frontAlt: {
  2710. height: math.unit(183, "cm"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Front (alt)",
  2713. image: {
  2714. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2715. }
  2716. },
  2717. back: {
  2718. height: math.unit(183, "cm"),
  2719. weight: math.unit(80, "kg"),
  2720. name: "Back",
  2721. image: {
  2722. source: "./media/characters/sofia-fluttertail/back.svg"
  2723. }
  2724. },
  2725. kneeling: {
  2726. height: math.unit(125, "cm"),
  2727. weight: math.unit(80, "kg"),
  2728. name: "Kneeling",
  2729. image: {
  2730. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2731. extra: 1033 / 977,
  2732. bottom: 23.7 / 1057
  2733. }
  2734. },
  2735. maw: {
  2736. height: math.unit(183 / 5, "cm"),
  2737. name: "Maw",
  2738. image: {
  2739. source: "./media/characters/sofia-fluttertail/maw.svg"
  2740. }
  2741. },
  2742. mawcloseup: {
  2743. height: math.unit(183 / 5 * 0.41, "cm"),
  2744. name: "Maw (Closeup)",
  2745. image: {
  2746. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2747. }
  2748. },
  2749. paws: {
  2750. height: math.unit(1.17, "feet"),
  2751. name: "Paws",
  2752. image: {
  2753. source: "./media/characters/sofia-fluttertail/paws.svg",
  2754. extra: 851 / 851,
  2755. bottom: 17 / 868
  2756. }
  2757. },
  2758. },
  2759. [
  2760. {
  2761. name: "Normal",
  2762. height: math.unit(1.83, "meter")
  2763. },
  2764. {
  2765. name: "Size Thief",
  2766. height: math.unit(18, "feet")
  2767. },
  2768. {
  2769. name: "50 Foot Collie",
  2770. height: math.unit(50, "feet")
  2771. },
  2772. {
  2773. name: "Macro",
  2774. height: math.unit(96, "feet"),
  2775. default: true
  2776. },
  2777. {
  2778. name: "Megamerger",
  2779. height: math.unit(650, "feet")
  2780. },
  2781. ]
  2782. ))
  2783. characterMakers.push(() => makeCharacter(
  2784. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2785. {
  2786. front: {
  2787. height: math.unit(7, "feet"),
  2788. weight: math.unit(100, "kg"),
  2789. name: "Front",
  2790. image: {
  2791. source: "./media/characters/march/front.svg",
  2792. extra: 1992/1851,
  2793. bottom: 39/2031
  2794. }
  2795. },
  2796. foot: {
  2797. height: math.unit(0.9, "feet"),
  2798. name: "Foot",
  2799. image: {
  2800. source: "./media/characters/march/foot.svg"
  2801. }
  2802. },
  2803. },
  2804. [
  2805. {
  2806. name: "Normal",
  2807. height: math.unit(7.9, "feet")
  2808. },
  2809. {
  2810. name: "Macro",
  2811. height: math.unit(220, "meters")
  2812. },
  2813. {
  2814. name: "Megamacro",
  2815. height: math.unit(2.98, "km"),
  2816. default: true
  2817. },
  2818. {
  2819. name: "Gigamacro",
  2820. height: math.unit(15963, "km")
  2821. },
  2822. {
  2823. name: "Teramacro",
  2824. height: math.unit(2980000000, "km")
  2825. },
  2826. {
  2827. name: "Examacro",
  2828. height: math.unit(250, "parsecs")
  2829. },
  2830. ]
  2831. ))
  2832. characterMakers.push(() => makeCharacter(
  2833. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2834. {
  2835. front: {
  2836. height: math.unit(6, "feet"),
  2837. weight: math.unit(60, "kg"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/noir/front.svg",
  2841. extra: 1,
  2842. bottom: 0.032
  2843. }
  2844. },
  2845. },
  2846. [
  2847. {
  2848. name: "Normal",
  2849. height: math.unit(6.6, "feet")
  2850. },
  2851. {
  2852. name: "Macro",
  2853. height: math.unit(500, "feet")
  2854. },
  2855. {
  2856. name: "Megamacro",
  2857. height: math.unit(2.5, "km"),
  2858. default: true
  2859. },
  2860. {
  2861. name: "Gigamacro",
  2862. height: math.unit(22500, "km")
  2863. },
  2864. {
  2865. name: "Teramacro",
  2866. height: math.unit(2500000000, "km")
  2867. },
  2868. {
  2869. name: "Examacro",
  2870. height: math.unit(200, "parsecs")
  2871. },
  2872. ]
  2873. ))
  2874. characterMakers.push(() => makeCharacter(
  2875. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2876. {
  2877. front: {
  2878. height: math.unit(7, "feet"),
  2879. weight: math.unit(100, "kg"),
  2880. name: "Front",
  2881. image: {
  2882. source: "./media/characters/okuri/front.svg",
  2883. extra: 739/665,
  2884. bottom: 39/778
  2885. }
  2886. },
  2887. back: {
  2888. height: math.unit(7, "feet"),
  2889. weight: math.unit(100, "kg"),
  2890. name: "Back",
  2891. image: {
  2892. source: "./media/characters/okuri/back.svg",
  2893. extra: 734/653,
  2894. bottom: 13/747
  2895. }
  2896. },
  2897. sitting: {
  2898. height: math.unit(2.95, "feet"),
  2899. weight: math.unit(100, "kg"),
  2900. name: "Sitting",
  2901. image: {
  2902. source: "./media/characters/okuri/sitting.svg",
  2903. extra: 370/318,
  2904. bottom: 99/469
  2905. }
  2906. },
  2907. },
  2908. [
  2909. {
  2910. name: "Smallest",
  2911. height: math.unit(5 + 2/12, "feet")
  2912. },
  2913. {
  2914. name: "Smaller",
  2915. height: math.unit(300, "feet")
  2916. },
  2917. {
  2918. name: "Small",
  2919. height: math.unit(1000, "feet")
  2920. },
  2921. {
  2922. name: "Macro",
  2923. height: math.unit(1, "mile")
  2924. },
  2925. {
  2926. name: "Mega Macro (Small)",
  2927. height: math.unit(20, "km")
  2928. },
  2929. {
  2930. name: "Mega Macro (Large)",
  2931. height: math.unit(600, "km")
  2932. },
  2933. {
  2934. name: "Giga Macro",
  2935. height: math.unit(10000, "km")
  2936. },
  2937. {
  2938. name: "Normal",
  2939. height: math.unit(577560, "km"),
  2940. default: true
  2941. },
  2942. {
  2943. name: "Large",
  2944. height: math.unit(4, "galaxies")
  2945. },
  2946. {
  2947. name: "Largest",
  2948. height: math.unit(15, "multiverses")
  2949. },
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2954. {
  2955. front: {
  2956. height: math.unit(7, "feet"),
  2957. weight: math.unit(100, "kg"),
  2958. name: "Front",
  2959. image: {
  2960. source: "./media/characters/manny/front.svg",
  2961. extra: 1,
  2962. bottom: 0.06
  2963. }
  2964. },
  2965. back: {
  2966. height: math.unit(7, "feet"),
  2967. weight: math.unit(100, "kg"),
  2968. name: "Back",
  2969. image: {
  2970. source: "./media/characters/manny/back.svg",
  2971. extra: 1,
  2972. bottom: 0.014
  2973. }
  2974. },
  2975. },
  2976. [
  2977. {
  2978. name: "Normal",
  2979. height: math.unit(7, "feet"),
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(78, "feet"),
  2984. default: true
  2985. },
  2986. {
  2987. name: "Macro+",
  2988. height: math.unit(300, "meters")
  2989. },
  2990. {
  2991. name: "Macro++",
  2992. height: math.unit(2400, "meters")
  2993. },
  2994. {
  2995. name: "Megamacro",
  2996. height: math.unit(5167, "meters")
  2997. },
  2998. {
  2999. name: "Gigamacro",
  3000. height: math.unit(41769, "miles")
  3001. },
  3002. ]
  3003. ))
  3004. characterMakers.push(() => makeCharacter(
  3005. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3006. {
  3007. front: {
  3008. height: math.unit(7, "feet"),
  3009. weight: math.unit(100, "kg"),
  3010. name: "Front",
  3011. image: {
  3012. source: "./media/characters/adake/front-1.svg"
  3013. }
  3014. },
  3015. frontAlt: {
  3016. height: math.unit(7, "feet"),
  3017. weight: math.unit(100, "kg"),
  3018. name: "Front (Alt)",
  3019. image: {
  3020. source: "./media/characters/adake/front-2.svg",
  3021. extra: 1,
  3022. bottom: 0.01
  3023. }
  3024. },
  3025. back: {
  3026. height: math.unit(7, "feet"),
  3027. weight: math.unit(100, "kg"),
  3028. name: "Back",
  3029. image: {
  3030. source: "./media/characters/adake/back.svg",
  3031. }
  3032. },
  3033. kneel: {
  3034. height: math.unit(5.385, "feet"),
  3035. weight: math.unit(100, "kg"),
  3036. name: "Kneeling",
  3037. image: {
  3038. source: "./media/characters/adake/kneel.svg",
  3039. bottom: 0.052
  3040. }
  3041. },
  3042. },
  3043. [
  3044. {
  3045. name: "Normal",
  3046. height: math.unit(7, "feet"),
  3047. },
  3048. {
  3049. name: "Macro",
  3050. height: math.unit(78, "feet"),
  3051. default: true
  3052. },
  3053. {
  3054. name: "Macro+",
  3055. height: math.unit(300, "meters")
  3056. },
  3057. {
  3058. name: "Macro++",
  3059. height: math.unit(2400, "meters")
  3060. },
  3061. {
  3062. name: "Megamacro",
  3063. height: math.unit(5167, "meters")
  3064. },
  3065. {
  3066. name: "Gigamacro",
  3067. height: math.unit(41769, "miles")
  3068. },
  3069. ]
  3070. ))
  3071. characterMakers.push(() => makeCharacter(
  3072. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3073. {
  3074. front: {
  3075. height: math.unit(1.65, "meters"),
  3076. weight: math.unit(50, "kg"),
  3077. name: "Front",
  3078. image: {
  3079. source: "./media/characters/elijah/front.svg",
  3080. extra: 858 / 830,
  3081. bottom: 95.5 / 953.8559
  3082. }
  3083. },
  3084. back: {
  3085. height: math.unit(1.65, "meters"),
  3086. weight: math.unit(50, "kg"),
  3087. name: "Back",
  3088. image: {
  3089. source: "./media/characters/elijah/back.svg",
  3090. extra: 895 / 850,
  3091. bottom: 5.3 / 897.956
  3092. }
  3093. },
  3094. frontNsfw: {
  3095. height: math.unit(1.65, "meters"),
  3096. weight: math.unit(50, "kg"),
  3097. name: "Front (NSFW)",
  3098. image: {
  3099. source: "./media/characters/elijah/front-nsfw.svg",
  3100. extra: 858 / 830,
  3101. bottom: 95.5 / 953.8559
  3102. }
  3103. },
  3104. backNsfw: {
  3105. height: math.unit(1.65, "meters"),
  3106. weight: math.unit(50, "kg"),
  3107. name: "Back (NSFW)",
  3108. image: {
  3109. source: "./media/characters/elijah/back-nsfw.svg",
  3110. extra: 895 / 850,
  3111. bottom: 5.3 / 897.956
  3112. }
  3113. },
  3114. dick: {
  3115. height: math.unit(1, "feet"),
  3116. name: "Dick",
  3117. image: {
  3118. source: "./media/characters/elijah/dick.svg"
  3119. }
  3120. },
  3121. beakOpen: {
  3122. height: math.unit(1.25, "feet"),
  3123. name: "Beak (Open)",
  3124. image: {
  3125. source: "./media/characters/elijah/beak-open.svg"
  3126. }
  3127. },
  3128. beakShut: {
  3129. height: math.unit(1.25, "feet"),
  3130. name: "Beak (Shut)",
  3131. image: {
  3132. source: "./media/characters/elijah/beak-shut.svg"
  3133. }
  3134. },
  3135. footFlexing: {
  3136. height: math.unit(1.61, "feet"),
  3137. name: "Foot (Flexing)",
  3138. image: {
  3139. source: "./media/characters/elijah/foot-flexing.svg"
  3140. }
  3141. },
  3142. footStepping: {
  3143. height: math.unit(1.44, "feet"),
  3144. name: "Foot (Stepping)",
  3145. image: {
  3146. source: "./media/characters/elijah/foot-stepping.svg"
  3147. }
  3148. },
  3149. plantigradeLeg: {
  3150. height: math.unit(2.34, "feet"),
  3151. name: "Plantigrade Leg",
  3152. image: {
  3153. source: "./media/characters/elijah/plantigrade-leg.svg"
  3154. }
  3155. },
  3156. plantigradeFootLeft: {
  3157. height: math.unit(0.9, "feet"),
  3158. name: "Plantigrade Foot (Left)",
  3159. image: {
  3160. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3161. }
  3162. },
  3163. plantigradeFootRight: {
  3164. height: math.unit(0.9, "feet"),
  3165. name: "Plantigrade Foot (Right)",
  3166. image: {
  3167. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3168. }
  3169. },
  3170. },
  3171. [
  3172. {
  3173. name: "Normal",
  3174. height: math.unit(1.65, "meters")
  3175. },
  3176. {
  3177. name: "Macro",
  3178. height: math.unit(55, "meters"),
  3179. default: true
  3180. },
  3181. {
  3182. name: "Macro+",
  3183. height: math.unit(105, "meters")
  3184. },
  3185. ]
  3186. ))
  3187. characterMakers.push(() => makeCharacter(
  3188. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3189. {
  3190. front: {
  3191. height: math.unit(7 + 2/12, "feet"),
  3192. weight: math.unit(320, "kg"),
  3193. preyCapacity: math.unit(0.276549935, "people"),
  3194. name: "Front",
  3195. image: {
  3196. source: "./media/characters/rai/front.svg",
  3197. extra: 1802/1696,
  3198. bottom: 68/1870
  3199. },
  3200. form: "anthro",
  3201. default: true
  3202. },
  3203. frontDressed: {
  3204. height: math.unit(7 + 2/12, "feet"),
  3205. weight: math.unit(320, "kg"),
  3206. preyCapacity: math.unit(0.276549935, "people"),
  3207. name: "Front (Dressed)",
  3208. image: {
  3209. source: "./media/characters/rai/front-dressed.svg",
  3210. extra: 1802/1696,
  3211. bottom: 68/1870
  3212. },
  3213. form: "anthro"
  3214. },
  3215. side: {
  3216. height: math.unit(7 + 2/12, "feet"),
  3217. weight: math.unit(320, "kg"),
  3218. preyCapacity: math.unit(0.276549935, "people"),
  3219. name: "Side",
  3220. image: {
  3221. source: "./media/characters/rai/side.svg",
  3222. extra: 1789/1710,
  3223. bottom: 115/1904
  3224. },
  3225. form: "anthro"
  3226. },
  3227. back: {
  3228. height: math.unit(7 + 2/12, "feet"),
  3229. weight: math.unit(320, "kg"),
  3230. preyCapacity: math.unit(0.276549935, "people"),
  3231. name: "Back",
  3232. image: {
  3233. source: "./media/characters/rai/back.svg",
  3234. extra: 1770/1707,
  3235. bottom: 28/1798
  3236. },
  3237. form: "anthro"
  3238. },
  3239. feral: {
  3240. height: math.unit(9.5, "feet"),
  3241. weight: math.unit(640, "kg"),
  3242. preyCapacity: math.unit(4, "people"),
  3243. name: "Feral",
  3244. image: {
  3245. source: "./media/characters/rai/feral.svg",
  3246. extra: 945/553,
  3247. bottom: 176/1121
  3248. },
  3249. form: "feral",
  3250. default: true
  3251. },
  3252. dragon: {
  3253. height: math.unit(23, "feet"),
  3254. weight: math.unit(50000, "lb"),
  3255. name: "Dragon",
  3256. image: {
  3257. source: "./media/characters/rai/dragon.svg",
  3258. extra: 2498 / 2030,
  3259. bottom: 85.2 / 2584
  3260. },
  3261. form: "dragon",
  3262. default: true
  3263. },
  3264. maw: {
  3265. height: math.unit(1.69, "feet"),
  3266. name: "Maw",
  3267. image: {
  3268. source: "./media/characters/rai/maw.svg"
  3269. },
  3270. form: "anthro"
  3271. },
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(7 + 2/12, "feet"),
  3277. form: "anthro"
  3278. },
  3279. {
  3280. name: "Big",
  3281. height: math.unit(11, "feet"),
  3282. form: "anthro"
  3283. },
  3284. {
  3285. name: "Minimacro",
  3286. height: math.unit(77, "feet"),
  3287. form: "anthro"
  3288. },
  3289. {
  3290. name: "Macro",
  3291. height: math.unit(302, "feet"),
  3292. default: true,
  3293. form: "anthro"
  3294. },
  3295. {
  3296. name: "Normal",
  3297. height: math.unit(9.5, "feet"),
  3298. form: "feral",
  3299. default: true
  3300. },
  3301. {
  3302. name: "Normal",
  3303. height: math.unit(23, "feet"),
  3304. form: "dragon",
  3305. default: true
  3306. }
  3307. ],
  3308. {
  3309. "anthro": {
  3310. name: "Anthro",
  3311. default: true
  3312. },
  3313. "feral": {
  3314. name: "Feral",
  3315. },
  3316. "dragon": {
  3317. name: "Dragon",
  3318. },
  3319. }
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3323. {
  3324. frontDressed: {
  3325. height: math.unit(216, "feet"),
  3326. weight: math.unit(7000000, "lb"),
  3327. preyCapacity: math.unit(1321, "people"),
  3328. name: "Front (Dressed)",
  3329. image: {
  3330. source: "./media/characters/jazzy/front-dressed.svg",
  3331. extra: 2738 / 2651,
  3332. bottom: 41.8 / 2786
  3333. }
  3334. },
  3335. backDressed: {
  3336. height: math.unit(216, "feet"),
  3337. weight: math.unit(7000000, "lb"),
  3338. preyCapacity: math.unit(1321, "people"),
  3339. name: "Back (Dressed)",
  3340. image: {
  3341. source: "./media/characters/jazzy/back-dressed.svg",
  3342. extra: 2775 / 2673,
  3343. bottom: 36.8 / 2817
  3344. }
  3345. },
  3346. front: {
  3347. height: math.unit(216, "feet"),
  3348. weight: math.unit(7000000, "lb"),
  3349. preyCapacity: math.unit(1321, "people"),
  3350. name: "Front",
  3351. image: {
  3352. source: "./media/characters/jazzy/front.svg",
  3353. extra: 2738 / 2651,
  3354. bottom: 41.8 / 2786
  3355. }
  3356. },
  3357. back: {
  3358. height: math.unit(216, "feet"),
  3359. weight: math.unit(7000000, "lb"),
  3360. preyCapacity: math.unit(1321, "people"),
  3361. name: "Back",
  3362. image: {
  3363. source: "./media/characters/jazzy/back.svg",
  3364. extra: 2775 / 2673,
  3365. bottom: 36.8 / 2817
  3366. }
  3367. },
  3368. maw: {
  3369. height: math.unit(20, "feet"),
  3370. name: "Maw",
  3371. image: {
  3372. source: "./media/characters/jazzy/maw.svg"
  3373. }
  3374. },
  3375. paws: {
  3376. height: math.unit(27.5, "feet"),
  3377. name: "Paws",
  3378. image: {
  3379. source: "./media/characters/jazzy/paws.svg"
  3380. }
  3381. },
  3382. eye: {
  3383. height: math.unit(4.4, "feet"),
  3384. name: "Eye",
  3385. image: {
  3386. source: "./media/characters/jazzy/eye.svg"
  3387. }
  3388. },
  3389. droneOffense: {
  3390. height: math.unit(9.5, "inches"),
  3391. name: "Drone (Offense)",
  3392. image: {
  3393. source: "./media/characters/jazzy/drone-offense.svg"
  3394. }
  3395. },
  3396. droneRecon: {
  3397. height: math.unit(9.5, "inches"),
  3398. name: "Drone (Recon)",
  3399. image: {
  3400. source: "./media/characters/jazzy/drone-recon.svg"
  3401. }
  3402. },
  3403. droneDefense: {
  3404. height: math.unit(9.5, "inches"),
  3405. name: "Drone (Defense)",
  3406. image: {
  3407. source: "./media/characters/jazzy/drone-defense.svg"
  3408. }
  3409. },
  3410. },
  3411. [
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(216, "feet"),
  3415. default: true
  3416. },
  3417. ]
  3418. ))
  3419. characterMakers.push(() => makeCharacter(
  3420. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3421. {
  3422. front: {
  3423. height: math.unit(9 + 6/12, "feet"),
  3424. weight: math.unit(700, "lb"),
  3425. name: "Front",
  3426. image: {
  3427. source: "./media/characters/flamm/front.svg",
  3428. extra: 1736/1596,
  3429. bottom: 93/1829
  3430. }
  3431. },
  3432. buff: {
  3433. height: math.unit(9 + 6/12, "feet"),
  3434. weight: math.unit(950, "lb"),
  3435. name: "Buff",
  3436. image: {
  3437. source: "./media/characters/flamm/buff.svg",
  3438. extra: 3018/2874,
  3439. bottom: 221/3239
  3440. }
  3441. },
  3442. },
  3443. [
  3444. {
  3445. name: "Normal",
  3446. height: math.unit(9.5, "feet")
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(200, "feet"),
  3451. default: true
  3452. },
  3453. ]
  3454. ))
  3455. characterMakers.push(() => makeCharacter(
  3456. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3457. {
  3458. front: {
  3459. height: math.unit(5 + 3/12, "feet"),
  3460. weight: math.unit(60, "kg"),
  3461. name: "Front",
  3462. image: {
  3463. source: "./media/characters/zephiro/front.svg",
  3464. extra: 1873/1761,
  3465. bottom: 147/2020
  3466. }
  3467. },
  3468. side: {
  3469. height: math.unit(5 + 3/12, "feet"),
  3470. weight: math.unit(60, "kg"),
  3471. name: "Side",
  3472. image: {
  3473. source: "./media/characters/zephiro/side.svg",
  3474. extra: 1929/1827,
  3475. bottom: 65/1994
  3476. }
  3477. },
  3478. back: {
  3479. height: math.unit(5 + 3/12, "feet"),
  3480. weight: math.unit(60, "kg"),
  3481. name: "Back",
  3482. image: {
  3483. source: "./media/characters/zephiro/back.svg",
  3484. extra: 1926/1816,
  3485. bottom: 41/1967
  3486. }
  3487. },
  3488. hand: {
  3489. height: math.unit(0.68, "feet"),
  3490. name: "Hand",
  3491. image: {
  3492. source: "./media/characters/zephiro/hand.svg"
  3493. }
  3494. },
  3495. paw: {
  3496. height: math.unit(1, "feet"),
  3497. name: "Paw",
  3498. image: {
  3499. source: "./media/characters/zephiro/paw.svg"
  3500. }
  3501. },
  3502. beans: {
  3503. height: math.unit(0.93, "feet"),
  3504. name: "Beans",
  3505. image: {
  3506. source: "./media/characters/zephiro/beans.svg"
  3507. }
  3508. },
  3509. },
  3510. [
  3511. {
  3512. name: "Micro",
  3513. height: math.unit(3, "inches")
  3514. },
  3515. {
  3516. name: "Normal",
  3517. height: math.unit(5 + 3 / 12, "feet"),
  3518. default: true
  3519. },
  3520. {
  3521. name: "Macro",
  3522. height: math.unit(118, "feet")
  3523. },
  3524. ]
  3525. ))
  3526. characterMakers.push(() => makeCharacter(
  3527. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3528. {
  3529. front: {
  3530. height: math.unit(5, "feet"),
  3531. weight: math.unit(90, "kg"),
  3532. preyCapacity: math.unit(14, "people"),
  3533. name: "Front",
  3534. image: {
  3535. source: "./media/characters/fory/front.svg",
  3536. extra: 2862 / 2674,
  3537. bottom: 180 / 3043.8
  3538. },
  3539. form: "weaselbun",
  3540. default: true,
  3541. extraAttributes: {
  3542. "pawSize": {
  3543. name: "Paw Size",
  3544. power: 2,
  3545. type: "area",
  3546. base: math.unit(0.1596, "m^2")
  3547. },
  3548. "pawLength": {
  3549. name: "Paw Length",
  3550. power: 1,
  3551. type: "length",
  3552. base: math.unit(0.7, "m")
  3553. }
  3554. }
  3555. },
  3556. back: {
  3557. height: math.unit(5, "feet"),
  3558. weight: math.unit(90, "kg"),
  3559. preyCapacity: math.unit(14, "people"),
  3560. name: "Back",
  3561. image: {
  3562. source: "./media/characters/fory/back.svg",
  3563. extra: 1790/1672,
  3564. bottom: 84/1874
  3565. },
  3566. form: "weaselbun",
  3567. extraAttributes: {
  3568. "pawSize": {
  3569. name: "Paw Size",
  3570. power: 2,
  3571. type: "area",
  3572. base: math.unit(0.1596, "m^2")
  3573. },
  3574. "pawLength": {
  3575. name: "Paw Length",
  3576. power: 1,
  3577. type: "length",
  3578. base: math.unit(0.7, "m")
  3579. }
  3580. }
  3581. },
  3582. paw: {
  3583. height: math.unit(2.14, "feet"),
  3584. name: "Paw",
  3585. image: {
  3586. source: "./media/characters/fory/paw.svg"
  3587. },
  3588. form: "weaselbun",
  3589. extraAttributes: {
  3590. "pawSize": {
  3591. name: "Paw Size",
  3592. power: 2,
  3593. type: "area",
  3594. base: math.unit(0.1596, "m^2")
  3595. },
  3596. "pawLength": {
  3597. name: "Paw Length",
  3598. power: 1,
  3599. type: "length",
  3600. base: math.unit(0.48, "m")
  3601. }
  3602. }
  3603. },
  3604. bunBack: {
  3605. height: math.unit(3, "feet"),
  3606. weight: math.unit(20, "kg"),
  3607. preyCapacity: math.unit(3, "people"),
  3608. name: "Back",
  3609. image: {
  3610. source: "./media/characters/fory/bun-back.svg",
  3611. extra: 1749/1564,
  3612. bottom: 246/1995
  3613. },
  3614. form: "bun",
  3615. default: true,
  3616. extraAttributes: {
  3617. "pawSize": {
  3618. name: "Paw Size",
  3619. power: 2,
  3620. type: "area",
  3621. base: math.unit(0.072, "m^2")
  3622. },
  3623. "pawLength": {
  3624. name: "Paw Length",
  3625. power: 1,
  3626. type: "length",
  3627. base: math.unit(0.45, "m")
  3628. }
  3629. }
  3630. },
  3631. },
  3632. [
  3633. {
  3634. name: "Normal",
  3635. height: math.unit(5, "feet"),
  3636. form: "weaselbun"
  3637. },
  3638. {
  3639. name: "Macro",
  3640. height: math.unit(50, "feet"),
  3641. default: true,
  3642. form: "weaselbun"
  3643. },
  3644. {
  3645. name: "Megamacro",
  3646. height: math.unit(10, "miles"),
  3647. form: "weaselbun"
  3648. },
  3649. {
  3650. name: "Gigamacro",
  3651. height: math.unit(5, "earths"),
  3652. form: "weaselbun"
  3653. },
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(3, "feet"),
  3657. default: true,
  3658. form: "bun"
  3659. },
  3660. {
  3661. name: "Fun-Size",
  3662. height: math.unit(12, "feet"),
  3663. form: "bun"
  3664. },
  3665. {
  3666. name: "Macro",
  3667. height: math.unit(100, "feet"),
  3668. form: "bun"
  3669. },
  3670. {
  3671. name: "Planetary",
  3672. height: math.unit(3, "earths"),
  3673. form: "bun"
  3674. },
  3675. ],
  3676. {
  3677. "weaselbun": {
  3678. name: "Weaselbun",
  3679. default: true
  3680. },
  3681. "bun": {
  3682. name: "Bun",
  3683. },
  3684. }
  3685. ))
  3686. characterMakers.push(() => makeCharacter(
  3687. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3688. {
  3689. front: {
  3690. height: math.unit(7, "feet"),
  3691. weight: math.unit(90, "kg"),
  3692. name: "Front",
  3693. image: {
  3694. source: "./media/characters/kurrikage/front.svg",
  3695. extra: 1845/1733,
  3696. bottom: 119/1964
  3697. }
  3698. },
  3699. back: {
  3700. height: math.unit(7, "feet"),
  3701. weight: math.unit(90, "kg"),
  3702. name: "Back",
  3703. image: {
  3704. source: "./media/characters/kurrikage/back.svg",
  3705. extra: 1790/1677,
  3706. bottom: 61/1851
  3707. }
  3708. },
  3709. dressed: {
  3710. height: math.unit(7, "feet"),
  3711. weight: math.unit(90, "kg"),
  3712. name: "Dressed",
  3713. image: {
  3714. source: "./media/characters/kurrikage/dressed.svg",
  3715. extra: 1845/1733,
  3716. bottom: 119/1964
  3717. }
  3718. },
  3719. foot: {
  3720. height: math.unit(1.5, "feet"),
  3721. name: "Foot",
  3722. image: {
  3723. source: "./media/characters/kurrikage/foot.svg"
  3724. }
  3725. },
  3726. staff: {
  3727. height: math.unit(6.7, "feet"),
  3728. name: "Staff",
  3729. image: {
  3730. source: "./media/characters/kurrikage/staff.svg"
  3731. }
  3732. },
  3733. peek: {
  3734. height: math.unit(1.05, "feet"),
  3735. name: "Peeking",
  3736. image: {
  3737. source: "./media/characters/kurrikage/peek.svg",
  3738. bottom: 0.08
  3739. }
  3740. },
  3741. },
  3742. [
  3743. {
  3744. name: "Normal",
  3745. height: math.unit(12, "feet"),
  3746. default: true
  3747. },
  3748. {
  3749. name: "Big",
  3750. height: math.unit(20, "feet")
  3751. },
  3752. {
  3753. name: "Macro",
  3754. height: math.unit(500, "feet")
  3755. },
  3756. {
  3757. name: "Megamacro",
  3758. height: math.unit(20, "miles")
  3759. },
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3764. {
  3765. front: {
  3766. height: math.unit(6, "feet"),
  3767. weight: math.unit(75, "kg"),
  3768. name: "Front",
  3769. image: {
  3770. source: "./media/characters/shingo/front.svg",
  3771. extra: 1900/1825,
  3772. bottom: 82/1982
  3773. }
  3774. },
  3775. side: {
  3776. height: math.unit(6, "feet"),
  3777. weight: math.unit(75, "kg"),
  3778. name: "Side",
  3779. image: {
  3780. source: "./media/characters/shingo/side.svg",
  3781. extra: 1930/1865,
  3782. bottom: 16/1946
  3783. }
  3784. },
  3785. back: {
  3786. height: math.unit(6, "feet"),
  3787. weight: math.unit(75, "kg"),
  3788. name: "Back",
  3789. image: {
  3790. source: "./media/characters/shingo/back.svg",
  3791. extra: 1922/1852,
  3792. bottom: 16/1938
  3793. }
  3794. },
  3795. frontDressed: {
  3796. height: math.unit(6, "feet"),
  3797. weight: math.unit(150, "lb"),
  3798. name: "Front-dressed",
  3799. image: {
  3800. source: "./media/characters/shingo/front-dressed.svg",
  3801. extra: 1900/1825,
  3802. bottom: 82/1982
  3803. }
  3804. },
  3805. paw: {
  3806. height: math.unit(1.29, "feet"),
  3807. name: "Paw",
  3808. image: {
  3809. source: "./media/characters/shingo/paw.svg"
  3810. }
  3811. },
  3812. hand: {
  3813. height: math.unit(1.07, "feet"),
  3814. name: "Hand",
  3815. image: {
  3816. source: "./media/characters/shingo/hand.svg"
  3817. }
  3818. },
  3819. frontAlt: {
  3820. height: math.unit(6, "feet"),
  3821. weight: math.unit(75, "kg"),
  3822. name: "Front (Alt)",
  3823. image: {
  3824. source: "./media/characters/shingo/front-alt.svg",
  3825. extra: 3511 / 3338,
  3826. bottom: 0.005
  3827. }
  3828. },
  3829. frontAlt2: {
  3830. height: math.unit(6, "feet"),
  3831. weight: math.unit(75, "kg"),
  3832. name: "Front (Alt 2)",
  3833. image: {
  3834. source: "./media/characters/shingo/front-alt-2.svg",
  3835. extra: 706/681,
  3836. bottom: 11/717
  3837. }
  3838. },
  3839. pawAlt: {
  3840. height: math.unit(1, "feet"),
  3841. name: "Paw (Alt)",
  3842. image: {
  3843. source: "./media/characters/shingo/paw-alt.svg"
  3844. }
  3845. },
  3846. },
  3847. [
  3848. {
  3849. name: "Micro",
  3850. height: math.unit(4, "inches")
  3851. },
  3852. {
  3853. name: "Normal",
  3854. height: math.unit(6, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Macro",
  3859. height: math.unit(108, "feet")
  3860. },
  3861. {
  3862. name: "Macro+",
  3863. height: math.unit(1500, "feet")
  3864. },
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3869. {
  3870. side: {
  3871. height: math.unit(6, "feet"),
  3872. weight: math.unit(75, "kg"),
  3873. name: "Side",
  3874. image: {
  3875. source: "./media/characters/aigey/side.svg"
  3876. }
  3877. },
  3878. },
  3879. [
  3880. {
  3881. name: "Macro",
  3882. height: math.unit(200, "feet"),
  3883. default: true
  3884. },
  3885. {
  3886. name: "Megamacro",
  3887. height: math.unit(100, "miles")
  3888. },
  3889. ]
  3890. )
  3891. )
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3894. {
  3895. front: {
  3896. height: math.unit(13, "feet"),
  3897. weight: math.unit(1036.80, "kg"),
  3898. name: "Front",
  3899. image: {
  3900. source: "./media/characters/natasha/front.svg",
  3901. extra: 1301/1210,
  3902. bottom: 39/1340
  3903. }
  3904. },
  3905. back: {
  3906. height: math.unit(13, "feet"),
  3907. weight: math.unit(1036.80, "kg"),
  3908. name: "Back",
  3909. image: {
  3910. source: "./media/characters/natasha/back.svg",
  3911. extra: 1342/1252,
  3912. bottom: 20/1362
  3913. }
  3914. },
  3915. head: {
  3916. height: math.unit(3.48, "feet"),
  3917. name: "Head",
  3918. image: {
  3919. source: "./media/characters/natasha/head.svg"
  3920. }
  3921. },
  3922. jaws: {
  3923. height: math.unit(3.52, "feet"),
  3924. name: "Jaws",
  3925. image: {
  3926. source: "./media/characters/natasha/jaws.svg"
  3927. }
  3928. },
  3929. paws: {
  3930. height: math.unit(2.7, "feet"),
  3931. name: "Paws",
  3932. image: {
  3933. source: "./media/characters/natasha/paws.svg"
  3934. }
  3935. },
  3936. collar: {
  3937. height: math.unit(0.89, "feet"),
  3938. name: "Collar",
  3939. image: {
  3940. source: "./media/characters/natasha/collar.svg"
  3941. }
  3942. },
  3943. gauge: {
  3944. height: math.unit(0.36, "feet"),
  3945. name: "Gauge",
  3946. image: {
  3947. source: "./media/characters/natasha/gauge.svg"
  3948. }
  3949. },
  3950. },
  3951. [
  3952. {
  3953. name: "Shortstack",
  3954. height: math.unit(3, "feet")
  3955. },
  3956. {
  3957. name: "Normal",
  3958. height: math.unit(13, "feet"),
  3959. default: true
  3960. },
  3961. {
  3962. name: "Macro",
  3963. height: math.unit(100, "feet")
  3964. },
  3965. {
  3966. name: "Macro+",
  3967. height: math.unit(260, "feet")
  3968. },
  3969. {
  3970. name: "Macro++",
  3971. height: math.unit(1, "mile")
  3972. },
  3973. ]
  3974. ))
  3975. characterMakers.push(() => makeCharacter(
  3976. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3977. {
  3978. front: {
  3979. height: math.unit(6, "feet"),
  3980. weight: math.unit(75, "kg"),
  3981. name: "Front",
  3982. image: {
  3983. source: "./media/characters/malik/front.svg",
  3984. extra: 1750/1561,
  3985. bottom: 80/1830
  3986. },
  3987. extraAttributes: {
  3988. "toeSize": {
  3989. name: "Toe Size",
  3990. power: 2,
  3991. type: "area",
  3992. base: math.unit(0.0159, "m^2")
  3993. },
  3994. "pawSize": {
  3995. name: "Paw Size",
  3996. power: 2,
  3997. type: "area",
  3998. base: math.unit(0.09834, "m^2")
  3999. },
  4000. }
  4001. },
  4002. side: {
  4003. height: math.unit(6, "feet"),
  4004. weight: math.unit(75, "kg"),
  4005. name: "Side",
  4006. image: {
  4007. source: "./media/characters/malik/side.svg",
  4008. extra: 1802/1685,
  4009. bottom: 42/1844
  4010. },
  4011. extraAttributes: {
  4012. "toeSize": {
  4013. name: "Toe Size",
  4014. power: 2,
  4015. type: "area",
  4016. base: math.unit(0.0159, "m^2")
  4017. },
  4018. "pawSize": {
  4019. name: "Paw Size",
  4020. power: 2,
  4021. type: "area",
  4022. base: math.unit(0.09834, "m^2")
  4023. },
  4024. }
  4025. },
  4026. back: {
  4027. height: math.unit(6, "feet"),
  4028. weight: math.unit(75, "kg"),
  4029. name: "Back",
  4030. image: {
  4031. source: "./media/characters/malik/back.svg",
  4032. extra: 1803/1607,
  4033. bottom: 33/1836
  4034. },
  4035. extraAttributes: {
  4036. "toeSize": {
  4037. name: "Toe Size",
  4038. power: 2,
  4039. type: "area",
  4040. base: math.unit(0.0159, "m^2")
  4041. },
  4042. "pawSize": {
  4043. name: "Paw Size",
  4044. power: 2,
  4045. type: "area",
  4046. base: math.unit(0.09834, "m^2")
  4047. },
  4048. }
  4049. },
  4050. },
  4051. [
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(156, "feet"),
  4055. default: true
  4056. },
  4057. {
  4058. name: "Macro+",
  4059. height: math.unit(1188, "feet")
  4060. },
  4061. ]
  4062. ))
  4063. characterMakers.push(() => makeCharacter(
  4064. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4065. {
  4066. front: {
  4067. height: math.unit(6, "feet"),
  4068. weight: math.unit(75, "kg"),
  4069. name: "Front",
  4070. image: {
  4071. source: "./media/characters/sefer/front.svg",
  4072. extra: 848 / 659,
  4073. bottom: 28.3 / 876.442
  4074. }
  4075. },
  4076. back: {
  4077. height: math.unit(6, "feet"),
  4078. weight: math.unit(75, "kg"),
  4079. name: "Back",
  4080. image: {
  4081. source: "./media/characters/sefer/back.svg",
  4082. extra: 864 / 695,
  4083. bottom: 10 / 871
  4084. }
  4085. },
  4086. frontDressed: {
  4087. height: math.unit(6, "feet"),
  4088. weight: math.unit(75, "kg"),
  4089. name: "Dressed",
  4090. image: {
  4091. source: "./media/characters/sefer/dressed.svg",
  4092. extra: 839 / 653,
  4093. bottom: 37.6 / 878
  4094. }
  4095. },
  4096. },
  4097. [
  4098. {
  4099. name: "Normal",
  4100. height: math.unit(6, "feet"),
  4101. default: true
  4102. },
  4103. {
  4104. name: "Big",
  4105. height: math.unit(8, "meters")
  4106. },
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4111. {
  4112. body: {
  4113. height: math.unit(2.2428, "meter"),
  4114. weight: math.unit(124.738, "kg"),
  4115. name: "Body",
  4116. image: {
  4117. extra: 1225 / 1050,
  4118. source: "./media/characters/north/front.svg"
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Micro",
  4125. height: math.unit(4, "inches")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(63, "meters")
  4130. },
  4131. {
  4132. name: "Megamacro",
  4133. height: math.unit(101, "miles"),
  4134. default: true
  4135. }
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4140. {
  4141. angled: {
  4142. height: math.unit(4, "meter"),
  4143. weight: math.unit(150, "kg"),
  4144. name: "Angled",
  4145. image: {
  4146. source: "./media/characters/talan/angled-sfw.svg",
  4147. bottom: 29 / 3734
  4148. }
  4149. },
  4150. angledNsfw: {
  4151. height: math.unit(4, "meter"),
  4152. weight: math.unit(150, "kg"),
  4153. name: "Angled (NSFW)",
  4154. image: {
  4155. source: "./media/characters/talan/angled-nsfw.svg",
  4156. bottom: 29 / 3734
  4157. }
  4158. },
  4159. frontNsfw: {
  4160. height: math.unit(4, "meter"),
  4161. weight: math.unit(150, "kg"),
  4162. name: "Front (NSFW)",
  4163. image: {
  4164. source: "./media/characters/talan/front-nsfw.svg",
  4165. bottom: 29 / 3734
  4166. }
  4167. },
  4168. sideNsfw: {
  4169. height: math.unit(4, "meter"),
  4170. weight: math.unit(150, "kg"),
  4171. name: "Side (NSFW)",
  4172. image: {
  4173. source: "./media/characters/talan/side-nsfw.svg",
  4174. bottom: 29 / 3734
  4175. }
  4176. },
  4177. back: {
  4178. height: math.unit(4, "meter"),
  4179. weight: math.unit(150, "kg"),
  4180. name: "Back",
  4181. image: {
  4182. source: "./media/characters/talan/back.svg"
  4183. }
  4184. },
  4185. dickBottom: {
  4186. height: math.unit(0.621, "meter"),
  4187. name: "Dick (Bottom)",
  4188. image: {
  4189. source: "./media/characters/talan/dick-bottom.svg"
  4190. }
  4191. },
  4192. dickTop: {
  4193. height: math.unit(0.621, "meter"),
  4194. name: "Dick (Top)",
  4195. image: {
  4196. source: "./media/characters/talan/dick-top.svg"
  4197. }
  4198. },
  4199. dickSide: {
  4200. height: math.unit(0.305, "meter"),
  4201. name: "Dick (Side)",
  4202. image: {
  4203. source: "./media/characters/talan/dick-side.svg"
  4204. }
  4205. },
  4206. dickFront: {
  4207. height: math.unit(0.305, "meter"),
  4208. name: "Dick (Front)",
  4209. image: {
  4210. source: "./media/characters/talan/dick-front.svg"
  4211. }
  4212. },
  4213. },
  4214. [
  4215. {
  4216. name: "Normal",
  4217. height: math.unit(4, "meters")
  4218. },
  4219. {
  4220. name: "Macro",
  4221. height: math.unit(100, "meters")
  4222. },
  4223. {
  4224. name: "Megamacro",
  4225. height: math.unit(2, "miles"),
  4226. default: true
  4227. },
  4228. {
  4229. name: "Gigamacro",
  4230. height: math.unit(5000, "miles")
  4231. },
  4232. {
  4233. name: "Teramacro",
  4234. height: math.unit(100, "parsecs")
  4235. }
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4240. {
  4241. front: {
  4242. height: math.unit(2, "meter"),
  4243. weight: math.unit(90, "kg"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/gael'rathus/front.svg"
  4247. }
  4248. },
  4249. frontAlt: {
  4250. height: math.unit(2, "meter"),
  4251. weight: math.unit(90, "kg"),
  4252. name: "Front (alt)",
  4253. image: {
  4254. source: "./media/characters/gael'rathus/front-alt.svg"
  4255. }
  4256. },
  4257. frontAlt2: {
  4258. height: math.unit(2, "meter"),
  4259. weight: math.unit(90, "kg"),
  4260. name: "Front (alt 2)",
  4261. image: {
  4262. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4263. }
  4264. }
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(9, "feet"),
  4270. default: true
  4271. },
  4272. {
  4273. name: "Large",
  4274. height: math.unit(25, "feet")
  4275. },
  4276. {
  4277. name: "Macro",
  4278. height: math.unit(0.25, "miles")
  4279. },
  4280. {
  4281. name: "Megamacro",
  4282. height: math.unit(10, "miles")
  4283. }
  4284. ]
  4285. ))
  4286. characterMakers.push(() => makeCharacter(
  4287. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4288. {
  4289. side: {
  4290. height: math.unit(2, "meter"),
  4291. weight: math.unit(140, "kg"),
  4292. name: "Side",
  4293. image: {
  4294. source: "./media/characters/sosha/side.svg",
  4295. extra: 1170/1006,
  4296. bottom: 94/1264
  4297. }
  4298. },
  4299. maw: {
  4300. height: math.unit(2.87, "feet"),
  4301. name: "Maw",
  4302. image: {
  4303. source: "./media/characters/sosha/maw.svg",
  4304. extra: 966/865,
  4305. bottom: 0/966
  4306. }
  4307. },
  4308. cooch: {
  4309. height: math.unit(5.6, "feet"),
  4310. name: "Cooch",
  4311. image: {
  4312. source: "./media/characters/sosha/cooch.svg"
  4313. }
  4314. },
  4315. },
  4316. [
  4317. {
  4318. name: "Normal",
  4319. height: math.unit(12, "feet"),
  4320. default: true
  4321. }
  4322. ]
  4323. ))
  4324. characterMakers.push(() => makeCharacter(
  4325. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4326. {
  4327. side: {
  4328. height: math.unit(5 + 5 / 12, "feet"),
  4329. weight: math.unit(170, "kg"),
  4330. name: "Side",
  4331. image: {
  4332. source: "./media/characters/runnola/side.svg",
  4333. extra: 741 / 448,
  4334. bottom: 0.05
  4335. }
  4336. },
  4337. },
  4338. [
  4339. {
  4340. name: "Small",
  4341. height: math.unit(3, "feet")
  4342. },
  4343. {
  4344. name: "Normal",
  4345. height: math.unit(5 + 5 / 12, "feet"),
  4346. default: true
  4347. },
  4348. {
  4349. name: "Big",
  4350. height: math.unit(10, "feet")
  4351. },
  4352. ]
  4353. ))
  4354. characterMakers.push(() => makeCharacter(
  4355. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4356. {
  4357. front: {
  4358. height: math.unit(2, "meter"),
  4359. weight: math.unit(50, "kg"),
  4360. name: "Front",
  4361. image: {
  4362. source: "./media/characters/kurribird/front.svg",
  4363. bottom: 0.015
  4364. }
  4365. },
  4366. frontAlt: {
  4367. height: math.unit(1.5, "meter"),
  4368. weight: math.unit(50, "kg"),
  4369. name: "Front (Alt)",
  4370. image: {
  4371. source: "./media/characters/kurribird/front-alt.svg",
  4372. extra: 1.45
  4373. }
  4374. },
  4375. },
  4376. [
  4377. {
  4378. name: "Normal",
  4379. height: math.unit(7, "feet")
  4380. },
  4381. {
  4382. name: "Big",
  4383. height: math.unit(12, "feet"),
  4384. default: true
  4385. },
  4386. {
  4387. name: "Macro",
  4388. height: math.unit(1500, "feet")
  4389. },
  4390. {
  4391. name: "Megamacro",
  4392. height: math.unit(2, "miles")
  4393. }
  4394. ]
  4395. ))
  4396. characterMakers.push(() => makeCharacter(
  4397. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4398. {
  4399. front: {
  4400. height: math.unit(2, "meter"),
  4401. weight: math.unit(80, "kg"),
  4402. name: "Front",
  4403. image: {
  4404. source: "./media/characters/elbial/front.svg",
  4405. extra: 1643 / 1556,
  4406. bottom: 60.2 / 1696
  4407. }
  4408. },
  4409. side: {
  4410. height: math.unit(2, "meter"),
  4411. weight: math.unit(80, "kg"),
  4412. name: "Side",
  4413. image: {
  4414. source: "./media/characters/elbial/side.svg",
  4415. extra: 1601/1528,
  4416. bottom: 97/1698
  4417. }
  4418. },
  4419. back: {
  4420. height: math.unit(2, "meter"),
  4421. weight: math.unit(80, "kg"),
  4422. name: "Back",
  4423. image: {
  4424. source: "./media/characters/elbial/back.svg",
  4425. extra: 1653/1569,
  4426. bottom: 20/1673
  4427. }
  4428. },
  4429. frontDressed: {
  4430. height: math.unit(2, "meter"),
  4431. weight: math.unit(80, "kg"),
  4432. name: "Front (Dressed)",
  4433. image: {
  4434. source: "./media/characters/elbial/front-dressed.svg",
  4435. extra: 1638/1569,
  4436. bottom: 70/1708
  4437. }
  4438. },
  4439. genitals: {
  4440. height: math.unit(2 / 3.367, "meter"),
  4441. name: "Genitals",
  4442. image: {
  4443. source: "./media/characters/elbial/genitals.svg"
  4444. }
  4445. },
  4446. },
  4447. [
  4448. {
  4449. name: "Large",
  4450. height: math.unit(100, "feet")
  4451. },
  4452. {
  4453. name: "Macro",
  4454. height: math.unit(500, "feet"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Megamacro",
  4459. height: math.unit(10, "miles")
  4460. },
  4461. {
  4462. name: "Gigamacro",
  4463. height: math.unit(25000, "miles")
  4464. },
  4465. {
  4466. name: "Full-Size",
  4467. height: math.unit(8000000, "gigaparsecs")
  4468. }
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(2, "meter"),
  4476. weight: math.unit(60, "kg"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/noah/front.svg",
  4480. extra: 1383/1313,
  4481. bottom: 104/1487
  4482. }
  4483. },
  4484. hand: {
  4485. height: math.unit(0.6, "feet"),
  4486. name: "Hand",
  4487. image: {
  4488. source: "./media/characters/noah/hand.svg"
  4489. }
  4490. },
  4491. talons: {
  4492. height: math.unit(1.385, "feet"),
  4493. name: "Talons",
  4494. image: {
  4495. source: "./media/characters/noah/talons.svg"
  4496. }
  4497. },
  4498. beak: {
  4499. height: math.unit(0.43, "feet"),
  4500. name: "Beak",
  4501. image: {
  4502. source: "./media/characters/noah/beak.svg"
  4503. }
  4504. },
  4505. collar: {
  4506. height: math.unit(0.88, "feet"),
  4507. name: "Collar",
  4508. image: {
  4509. source: "./media/characters/noah/collar.svg"
  4510. }
  4511. },
  4512. eyeNarrow: {
  4513. height: math.unit(0.18, "feet"),
  4514. name: "Eye (Narrow)",
  4515. image: {
  4516. source: "./media/characters/noah/eye-narrow.svg"
  4517. }
  4518. },
  4519. eyeNormal: {
  4520. height: math.unit(0.18, "feet"),
  4521. name: "Eye (Normal)",
  4522. image: {
  4523. source: "./media/characters/noah/eye-normal.svg"
  4524. }
  4525. },
  4526. eyeWide: {
  4527. height: math.unit(0.18, "feet"),
  4528. name: "Eye (Wide)",
  4529. image: {
  4530. source: "./media/characters/noah/eye-wide.svg"
  4531. }
  4532. },
  4533. ear: {
  4534. height: math.unit(0.64, "feet"),
  4535. name: "Ear",
  4536. image: {
  4537. source: "./media/characters/noah/ear.svg"
  4538. }
  4539. },
  4540. },
  4541. [
  4542. {
  4543. name: "Large",
  4544. height: math.unit(50, "feet")
  4545. },
  4546. {
  4547. name: "Macro",
  4548. height: math.unit(750, "feet"),
  4549. default: true
  4550. },
  4551. {
  4552. name: "Megamacro",
  4553. height: math.unit(50, "miles")
  4554. },
  4555. {
  4556. name: "Gigamacro",
  4557. height: math.unit(100000, "miles")
  4558. },
  4559. {
  4560. name: "Full-Size",
  4561. height: math.unit(3000000000, "miles")
  4562. }
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4567. {
  4568. front: {
  4569. height: math.unit(2, "meter"),
  4570. weight: math.unit(80, "kg"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/natalya/front.svg"
  4574. }
  4575. },
  4576. back: {
  4577. height: math.unit(2, "meter"),
  4578. weight: math.unit(80, "kg"),
  4579. name: "Back",
  4580. image: {
  4581. source: "./media/characters/natalya/back.svg"
  4582. }
  4583. }
  4584. },
  4585. [
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(150, "feet"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Megamacro",
  4593. height: math.unit(5, "miles")
  4594. },
  4595. {
  4596. name: "Full-Size",
  4597. height: math.unit(600, "kiloparsecs")
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(2, "meter"),
  4606. weight: math.unit(50, "kg"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/erestrebah/front.svg",
  4610. extra: 1262/1162,
  4611. bottom: 96/1358
  4612. }
  4613. },
  4614. back: {
  4615. height: math.unit(2, "meter"),
  4616. weight: math.unit(50, "kg"),
  4617. name: "Back",
  4618. image: {
  4619. source: "./media/characters/erestrebah/back.svg",
  4620. extra: 1257/1139,
  4621. bottom: 13/1270
  4622. }
  4623. },
  4624. wing: {
  4625. height: math.unit(2, "meter"),
  4626. weight: math.unit(50, "kg"),
  4627. name: "Wing",
  4628. image: {
  4629. source: "./media/characters/erestrebah/wing.svg",
  4630. extra: 1262/1162,
  4631. bottom: 96/1358
  4632. }
  4633. },
  4634. mouth: {
  4635. height: math.unit(0.39, "feet"),
  4636. name: "Mouth",
  4637. image: {
  4638. source: "./media/characters/erestrebah/mouth.svg"
  4639. }
  4640. }
  4641. },
  4642. [
  4643. {
  4644. name: "Normal",
  4645. height: math.unit(10, "feet")
  4646. },
  4647. {
  4648. name: "Large",
  4649. height: math.unit(50, "feet"),
  4650. default: true
  4651. },
  4652. {
  4653. name: "Macro",
  4654. height: math.unit(300, "feet")
  4655. },
  4656. {
  4657. name: "Macro+",
  4658. height: math.unit(750, "feet")
  4659. },
  4660. {
  4661. name: "Megamacro",
  4662. height: math.unit(3, "miles")
  4663. }
  4664. ]
  4665. ))
  4666. characterMakers.push(() => makeCharacter(
  4667. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4668. {
  4669. front: {
  4670. height: math.unit(2, "meter"),
  4671. weight: math.unit(80, "kg"),
  4672. name: "Front",
  4673. image: {
  4674. source: "./media/characters/jennifer/front.svg",
  4675. bottom: 0.11,
  4676. extra: 1.16
  4677. }
  4678. },
  4679. frontAlt: {
  4680. height: math.unit(2, "meter"),
  4681. weight: math.unit(80, "kg"),
  4682. name: "Front (Alt)",
  4683. image: {
  4684. source: "./media/characters/jennifer/front-alt.svg"
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Canon Height",
  4691. height: math.unit(120, "feet"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Macro+",
  4696. height: math.unit(300, "feet")
  4697. },
  4698. {
  4699. name: "Megamacro",
  4700. height: math.unit(20000, "feet")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(2, "meter"),
  4709. weight: math.unit(50, "kg"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/kalista/front.svg",
  4713. extra: 1314/1145,
  4714. bottom: 101/1415
  4715. }
  4716. },
  4717. back: {
  4718. height: math.unit(2, "meter"),
  4719. weight: math.unit(50, "kg"),
  4720. name: "Back",
  4721. image: {
  4722. source: "./media/characters/kalista/back.svg",
  4723. extra: 1366 / 1156,
  4724. bottom: 33.9 / 1362.78
  4725. }
  4726. }
  4727. },
  4728. [
  4729. {
  4730. name: "Uncomfortably Small",
  4731. height: math.unit(10, "feet")
  4732. },
  4733. {
  4734. name: "Small",
  4735. height: math.unit(30, "feet")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(100, "feet"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Macro+",
  4744. height: math.unit(2000, "feet")
  4745. },
  4746. {
  4747. name: "True Form",
  4748. height: math.unit(8924, "miles")
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(2, "meter"),
  4757. weight: math.unit(120, "kg"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/ggv/front.svg"
  4761. }
  4762. },
  4763. side: {
  4764. height: math.unit(2, "meter"),
  4765. weight: math.unit(120, "kg"),
  4766. name: "Side",
  4767. image: {
  4768. source: "./media/characters/ggv/side.svg"
  4769. }
  4770. }
  4771. },
  4772. [
  4773. {
  4774. name: "Extremely Puny",
  4775. height: math.unit(9 + 5 / 12, "feet")
  4776. },
  4777. {
  4778. name: "Horribly Small",
  4779. height: math.unit(47.7, "miles"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Reasonably Sized",
  4784. height: math.unit(25000, "parsecs")
  4785. },
  4786. {
  4787. name: "Slightly Uncompressed",
  4788. height: math.unit(7.77e31, "parsecs")
  4789. },
  4790. {
  4791. name: "Omniversal",
  4792. height: math.unit(1e300, "meters")
  4793. },
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(2, "meter"),
  4801. weight: math.unit(75, "lb"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/napalm/front.svg"
  4805. }
  4806. },
  4807. back: {
  4808. height: math.unit(2, "meter"),
  4809. weight: math.unit(75, "lb"),
  4810. name: "Back",
  4811. image: {
  4812. source: "./media/characters/napalm/back.svg"
  4813. }
  4814. }
  4815. },
  4816. [
  4817. {
  4818. name: "Standard",
  4819. height: math.unit(55, "feet"),
  4820. default: true
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(7 + 5 / 6, "feet"),
  4829. weight: math.unit(325, "lb"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/asana/front.svg",
  4833. extra: 1133 / 1060,
  4834. bottom: 15.2 / 1148.6
  4835. }
  4836. },
  4837. back: {
  4838. height: math.unit(7 + 5 / 6, "feet"),
  4839. weight: math.unit(325, "lb"),
  4840. name: "Back",
  4841. image: {
  4842. source: "./media/characters/asana/back.svg",
  4843. extra: 1114 / 1043,
  4844. bottom: 5 / 1120
  4845. }
  4846. },
  4847. dressedDark: {
  4848. height: math.unit(7 + 5 / 6, "feet"),
  4849. weight: math.unit(325, "lb"),
  4850. name: "Dressed (Dark)",
  4851. image: {
  4852. source: "./media/characters/asana/dressed-dark.svg",
  4853. extra: 1133 / 1060,
  4854. bottom: 15.2 / 1148.6
  4855. }
  4856. },
  4857. dressedLight: {
  4858. height: math.unit(7 + 5 / 6, "feet"),
  4859. weight: math.unit(325, "lb"),
  4860. name: "Dressed (Light)",
  4861. image: {
  4862. source: "./media/characters/asana/dressed-light.svg",
  4863. extra: 1133 / 1060,
  4864. bottom: 15.2 / 1148.6
  4865. }
  4866. },
  4867. },
  4868. [
  4869. {
  4870. name: "Standard",
  4871. height: math.unit(7 + 5 / 6, "feet"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Large",
  4876. height: math.unit(10, "meters")
  4877. },
  4878. {
  4879. name: "Macro",
  4880. height: math.unit(2500, "meters")
  4881. },
  4882. {
  4883. name: "Megamacro",
  4884. height: math.unit(5e6, "meters")
  4885. },
  4886. {
  4887. name: "Examacro",
  4888. height: math.unit(5e12, "lightyears")
  4889. },
  4890. {
  4891. name: "Max Size",
  4892. height: math.unit(1e31, "lightyears")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4898. {
  4899. front: {
  4900. height: math.unit(2, "meter"),
  4901. weight: math.unit(60, "kg"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/ebony/front.svg",
  4905. bottom: 0.03,
  4906. extra: 1045 / 810 + 0.03
  4907. }
  4908. },
  4909. side: {
  4910. height: math.unit(2, "meter"),
  4911. weight: math.unit(60, "kg"),
  4912. name: "Side",
  4913. image: {
  4914. source: "./media/characters/ebony/side.svg",
  4915. bottom: 0.03,
  4916. extra: 1045 / 810 + 0.03
  4917. }
  4918. },
  4919. back: {
  4920. height: math.unit(2, "meter"),
  4921. weight: math.unit(60, "kg"),
  4922. name: "Back",
  4923. image: {
  4924. source: "./media/characters/ebony/back.svg",
  4925. bottom: 0.01,
  4926. extra: 1045 / 810 + 0.01
  4927. }
  4928. },
  4929. },
  4930. [
  4931. // TODO check why I did this lol
  4932. {
  4933. name: "Standard",
  4934. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4935. default: true
  4936. },
  4937. {
  4938. name: "Macro",
  4939. height: math.unit(200, "feet")
  4940. },
  4941. {
  4942. name: "Gigamacro",
  4943. height: math.unit(13000, "km")
  4944. }
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4949. {
  4950. front: {
  4951. height: math.unit(6, "feet"),
  4952. weight: math.unit(175, "lb"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/mountain/front.svg",
  4956. extra: 972 / 955,
  4957. bottom: 64 / 1036.6
  4958. }
  4959. },
  4960. back: {
  4961. height: math.unit(6, "feet"),
  4962. weight: math.unit(175, "lb"),
  4963. name: "Back",
  4964. image: {
  4965. source: "./media/characters/mountain/back.svg",
  4966. extra: 970 / 950,
  4967. bottom: 28.25 / 999
  4968. }
  4969. },
  4970. },
  4971. [
  4972. {
  4973. name: "Large",
  4974. height: math.unit(20, "meters")
  4975. },
  4976. {
  4977. name: "Macro",
  4978. height: math.unit(300, "meters")
  4979. },
  4980. {
  4981. name: "Gigamacro",
  4982. height: math.unit(10000, "km"),
  4983. default: true
  4984. },
  4985. {
  4986. name: "Examacro",
  4987. height: math.unit(10e9, "lightyears")
  4988. }
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(8, "feet"),
  4996. weight: math.unit(500, "lb"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/rick/front.svg"
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(8, "feet"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Macro",
  5011. height: math.unit(5, "km")
  5012. }
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(8, "feet"),
  5020. weight: math.unit(120, "lb"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/ona/front.svg"
  5024. }
  5025. },
  5026. frontAlt: {
  5027. height: math.unit(8, "feet"),
  5028. weight: math.unit(120, "lb"),
  5029. name: "Front (Alt)",
  5030. image: {
  5031. source: "./media/characters/ona/front-alt.svg"
  5032. }
  5033. },
  5034. back: {
  5035. height: math.unit(8, "feet"),
  5036. weight: math.unit(120, "lb"),
  5037. name: "Back",
  5038. image: {
  5039. source: "./media/characters/ona/back.svg"
  5040. }
  5041. },
  5042. foot: {
  5043. height: math.unit(1.1, "feet"),
  5044. name: "Foot",
  5045. image: {
  5046. source: "./media/characters/ona/foot.svg"
  5047. }
  5048. }
  5049. },
  5050. [
  5051. {
  5052. name: "Megamacro",
  5053. height: math.unit(70, "km"),
  5054. default: true
  5055. },
  5056. {
  5057. name: "Gigamacro",
  5058. height: math.unit(681818, "miles")
  5059. },
  5060. {
  5061. name: "Examacro",
  5062. height: math.unit(3800000, "lightyears")
  5063. },
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5068. {
  5069. front: {
  5070. height: math.unit(12, "feet"),
  5071. weight: math.unit(3000, "lb"),
  5072. name: "Front",
  5073. image: {
  5074. source: "./media/characters/mech/front.svg",
  5075. extra: 2900 / 2770,
  5076. bottom: 110 / 3010
  5077. }
  5078. },
  5079. back: {
  5080. height: math.unit(12, "feet"),
  5081. weight: math.unit(3000, "lb"),
  5082. name: "Back",
  5083. image: {
  5084. source: "./media/characters/mech/back.svg",
  5085. extra: 3011 / 2890,
  5086. bottom: 94 / 3105
  5087. }
  5088. },
  5089. maw: {
  5090. height: math.unit(3.07, "feet"),
  5091. name: "Maw",
  5092. image: {
  5093. source: "./media/characters/mech/maw.svg"
  5094. }
  5095. },
  5096. head: {
  5097. height: math.unit(3.07, "feet"),
  5098. name: "Head",
  5099. image: {
  5100. source: "./media/characters/mech/head.svg"
  5101. }
  5102. },
  5103. dick: {
  5104. height: math.unit(1.43, "feet"),
  5105. name: "Dick",
  5106. image: {
  5107. source: "./media/characters/mech/dick.svg"
  5108. }
  5109. },
  5110. },
  5111. [
  5112. {
  5113. name: "Normal",
  5114. height: math.unit(12, "feet")
  5115. },
  5116. {
  5117. name: "Macro",
  5118. height: math.unit(300, "feet"),
  5119. default: true
  5120. },
  5121. {
  5122. name: "Macro+",
  5123. height: math.unit(1500, "feet")
  5124. },
  5125. ]
  5126. ))
  5127. characterMakers.push(() => makeCharacter(
  5128. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5129. {
  5130. front: {
  5131. height: math.unit(1.3, "meter"),
  5132. weight: math.unit(30, "kg"),
  5133. name: "Front",
  5134. image: {
  5135. source: "./media/characters/gregory/front.svg",
  5136. }
  5137. }
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(1.3, "meter"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Macro",
  5147. height: math.unit(20, "meter")
  5148. }
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5153. {
  5154. front: {
  5155. height: math.unit(2.8, "meter"),
  5156. weight: math.unit(200, "kg"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/elory/front.svg",
  5160. }
  5161. }
  5162. },
  5163. [
  5164. {
  5165. name: "Normal",
  5166. height: math.unit(2.8, "meter"),
  5167. default: true
  5168. },
  5169. {
  5170. name: "Macro",
  5171. height: math.unit(38, "meter")
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5177. {
  5178. front: {
  5179. height: math.unit(470, "feet"),
  5180. weight: math.unit(924, "tons"),
  5181. name: "Front",
  5182. image: {
  5183. source: "./media/characters/angelpatamon/front.svg",
  5184. }
  5185. }
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(470, "feet"),
  5191. default: true
  5192. },
  5193. {
  5194. name: "Deity Size I",
  5195. height: math.unit(28651.2, "km")
  5196. },
  5197. {
  5198. name: "Deity Size II",
  5199. height: math.unit(171907.2, "km")
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5205. {
  5206. side: {
  5207. height: math.unit(7.2, "meter"),
  5208. weight: math.unit(8.2, "tons"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/cryae/side.svg",
  5212. extra: 3500 / 1500
  5213. }
  5214. }
  5215. },
  5216. [
  5217. {
  5218. name: "Normal",
  5219. height: math.unit(7.2, "meter"),
  5220. default: true
  5221. }
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5226. {
  5227. front: {
  5228. height: math.unit(6, "feet"),
  5229. weight: math.unit(175, "lb"),
  5230. name: "Front",
  5231. image: {
  5232. source: "./media/characters/xera/front.svg",
  5233. extra: 2377 / 1972,
  5234. bottom: 75.5 / 2452
  5235. }
  5236. },
  5237. side: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(175, "lb"),
  5240. name: "Side",
  5241. image: {
  5242. source: "./media/characters/xera/side.svg",
  5243. extra: 2345 / 2019,
  5244. bottom: 39.7 / 2384
  5245. }
  5246. },
  5247. back: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(175, "lb"),
  5250. name: "Back",
  5251. image: {
  5252. source: "./media/characters/xera/back.svg",
  5253. extra: 2095 / 1984,
  5254. bottom: 67 / 2166
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Small",
  5261. height: math.unit(10, "feet")
  5262. },
  5263. {
  5264. name: "Macro",
  5265. height: math.unit(500, "meters"),
  5266. default: true
  5267. },
  5268. {
  5269. name: "Macro+",
  5270. height: math.unit(10, "km")
  5271. },
  5272. {
  5273. name: "Gigamacro",
  5274. height: math.unit(25000, "km")
  5275. },
  5276. {
  5277. name: "Teramacro",
  5278. height: math.unit(3e6, "km")
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(175, "lb"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/nebula/front.svg",
  5291. extra: 2566 / 2362,
  5292. bottom: 81 / 2644
  5293. }
  5294. }
  5295. },
  5296. [
  5297. {
  5298. name: "Small",
  5299. height: math.unit(4.5, "meters")
  5300. },
  5301. {
  5302. name: "Macro",
  5303. height: math.unit(1500, "meters"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Megamacro",
  5308. height: math.unit(150, "km")
  5309. },
  5310. {
  5311. name: "Gigamacro",
  5312. height: math.unit(27000, "km")
  5313. }
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5318. {
  5319. front: {
  5320. height: math.unit(6, "feet"),
  5321. weight: math.unit(225, "lb"),
  5322. name: "Front",
  5323. image: {
  5324. source: "./media/characters/abysgar/front.svg",
  5325. extra: 1739/1614,
  5326. bottom: 71/1810
  5327. }
  5328. },
  5329. frontNsfw: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(225, "lb"),
  5332. name: "Front (NSFW)",
  5333. image: {
  5334. source: "./media/characters/abysgar/front-nsfw.svg",
  5335. extra: 1739/1614,
  5336. bottom: 71/1810
  5337. }
  5338. },
  5339. back: {
  5340. height: math.unit(4.6, "feet"),
  5341. weight: math.unit(225, "lb"),
  5342. name: "Back",
  5343. image: {
  5344. source: "./media/characters/abysgar/back.svg",
  5345. extra: 1384/1327,
  5346. bottom: 0/1384
  5347. }
  5348. },
  5349. head: {
  5350. height: math.unit(1.25, "feet"),
  5351. name: "Head",
  5352. image: {
  5353. source: "./media/characters/abysgar/head.svg",
  5354. extra: 669/569,
  5355. bottom: 0/669
  5356. }
  5357. },
  5358. },
  5359. [
  5360. {
  5361. name: "Small",
  5362. height: math.unit(4.5, "meters")
  5363. },
  5364. {
  5365. name: "Macro",
  5366. height: math.unit(1250, "meters"),
  5367. default: true
  5368. },
  5369. {
  5370. name: "Megamacro",
  5371. height: math.unit(125, "km")
  5372. },
  5373. {
  5374. name: "Gigamacro",
  5375. height: math.unit(26000, "km")
  5376. }
  5377. ]
  5378. ))
  5379. characterMakers.push(() => makeCharacter(
  5380. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5381. {
  5382. front: {
  5383. height: math.unit(6, "feet"),
  5384. weight: math.unit(180, "lb"),
  5385. name: "Front",
  5386. image: {
  5387. source: "./media/characters/yakuz/front.svg"
  5388. }
  5389. }
  5390. },
  5391. [
  5392. {
  5393. name: "Small",
  5394. height: math.unit(5, "meters")
  5395. },
  5396. {
  5397. name: "Macro",
  5398. height: math.unit(1500, "meters"),
  5399. default: true
  5400. },
  5401. {
  5402. name: "Megamacro",
  5403. height: math.unit(200, "km")
  5404. },
  5405. {
  5406. name: "Gigamacro",
  5407. height: math.unit(100000, "km")
  5408. }
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5413. {
  5414. front: {
  5415. height: math.unit(6, "feet"),
  5416. weight: math.unit(175, "lb"),
  5417. name: "Front",
  5418. image: {
  5419. source: "./media/characters/mirova/front.svg",
  5420. extra: 3334 / 3071,
  5421. bottom: 42 / 3375.6
  5422. }
  5423. }
  5424. },
  5425. [
  5426. {
  5427. name: "Small",
  5428. height: math.unit(5, "meters")
  5429. },
  5430. {
  5431. name: "Macro",
  5432. height: math.unit(900, "meters"),
  5433. default: true
  5434. },
  5435. {
  5436. name: "Megamacro",
  5437. height: math.unit(135, "km")
  5438. },
  5439. {
  5440. name: "Gigamacro",
  5441. height: math.unit(20000, "km")
  5442. }
  5443. ]
  5444. ))
  5445. characterMakers.push(() => makeCharacter(
  5446. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5447. {
  5448. side: {
  5449. height: math.unit(28.35, "feet"),
  5450. weight: math.unit(99.75, "tons"),
  5451. name: "Side",
  5452. image: {
  5453. source: "./media/characters/asana-mech/side.svg",
  5454. extra: 923 / 699,
  5455. bottom: 50 / 975
  5456. }
  5457. },
  5458. chaingun: {
  5459. height: math.unit(7, "feet"),
  5460. weight: math.unit(2400, "lb"),
  5461. name: "Chaingun",
  5462. image: {
  5463. source: "./media/characters/asana-mech/chaingun.svg"
  5464. }
  5465. },
  5466. laser: {
  5467. height: math.unit(7.12, "feet"),
  5468. weight: math.unit(2000, "lb"),
  5469. name: "Laser",
  5470. image: {
  5471. source: "./media/characters/asana-mech/laser.svg"
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(28.35, "feet"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Macro",
  5483. height: math.unit(2500, "feet")
  5484. },
  5485. {
  5486. name: "Megamacro",
  5487. height: math.unit(25, "miles")
  5488. },
  5489. {
  5490. name: "Examacro",
  5491. height: math.unit(6e8, "lightyears")
  5492. },
  5493. ]
  5494. ))
  5495. characterMakers.push(() => makeCharacter(
  5496. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5497. {
  5498. front: {
  5499. height: math.unit(5, "meters"),
  5500. weight: math.unit(1000, "kg"),
  5501. name: "Front",
  5502. image: {
  5503. source: "./media/characters/asche/front.svg",
  5504. extra: 1258 / 1190,
  5505. bottom: 47 / 1305
  5506. }
  5507. },
  5508. frontUnderwear: {
  5509. height: math.unit(5, "meters"),
  5510. weight: math.unit(1000, "kg"),
  5511. name: "Front (Underwear)",
  5512. image: {
  5513. source: "./media/characters/asche/front-underwear.svg",
  5514. extra: 1258 / 1190,
  5515. bottom: 47 / 1305
  5516. }
  5517. },
  5518. frontDressed: {
  5519. height: math.unit(5, "meters"),
  5520. weight: math.unit(1000, "kg"),
  5521. name: "Front (Dressed)",
  5522. image: {
  5523. source: "./media/characters/asche/front-dressed.svg",
  5524. extra: 1258 / 1190,
  5525. bottom: 47 / 1305
  5526. }
  5527. },
  5528. frontArmor: {
  5529. height: math.unit(5, "meters"),
  5530. weight: math.unit(1000, "kg"),
  5531. name: "Front (Armored)",
  5532. image: {
  5533. source: "./media/characters/asche/front-armored.svg",
  5534. extra: 1374 / 1308,
  5535. bottom: 23 / 1397
  5536. }
  5537. },
  5538. mp724: {
  5539. height: math.unit(0.96, "meters"),
  5540. weight: math.unit(38, "kg"),
  5541. name: "H&K MP724",
  5542. image: {
  5543. source: "./media/characters/asche/h&k-mp724.svg"
  5544. }
  5545. },
  5546. side: {
  5547. height: math.unit(5, "meters"),
  5548. weight: math.unit(1000, "kg"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/asche/side.svg",
  5552. extra: 1717 / 1609,
  5553. bottom: 0.005
  5554. }
  5555. },
  5556. back: {
  5557. height: math.unit(5, "meters"),
  5558. weight: math.unit(1000, "kg"),
  5559. name: "Back",
  5560. image: {
  5561. source: "./media/characters/asche/back.svg",
  5562. extra: 1570 / 1501
  5563. }
  5564. },
  5565. },
  5566. [
  5567. {
  5568. name: "DEFCON 5",
  5569. height: math.unit(5, "meters")
  5570. },
  5571. {
  5572. name: "DEFCON 4",
  5573. height: math.unit(500, "meters"),
  5574. default: true
  5575. },
  5576. {
  5577. name: "DEFCON 3",
  5578. height: math.unit(5, "km")
  5579. },
  5580. {
  5581. name: "DEFCON 2",
  5582. height: math.unit(500, "km")
  5583. },
  5584. {
  5585. name: "DEFCON 1",
  5586. height: math.unit(500000, "km")
  5587. },
  5588. {
  5589. name: "DEFCON 0",
  5590. height: math.unit(3, "gigaparsecs")
  5591. },
  5592. ]
  5593. ))
  5594. characterMakers.push(() => makeCharacter(
  5595. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5596. {
  5597. front: {
  5598. height: math.unit(7, "feet"),
  5599. weight: math.unit(92.7, "kg"),
  5600. name: "Front",
  5601. image: {
  5602. source: "./media/characters/gale/front.svg",
  5603. extra: 977/919,
  5604. bottom: 105/1082
  5605. }
  5606. },
  5607. side: {
  5608. height: math.unit(6.7, "feet"),
  5609. weight: math.unit(92.7, "kg"),
  5610. name: "Side",
  5611. image: {
  5612. source: "./media/characters/gale/side.svg",
  5613. extra: 978/922,
  5614. bottom: 140/1118
  5615. }
  5616. },
  5617. back: {
  5618. height: math.unit(7, "feet"),
  5619. weight: math.unit(92.7, "kg"),
  5620. name: "Back",
  5621. image: {
  5622. source: "./media/characters/gale/back.svg",
  5623. extra: 966/920,
  5624. bottom: 61/1027
  5625. }
  5626. },
  5627. maw: {
  5628. height: math.unit(2.23, "feet"),
  5629. name: "Maw",
  5630. image: {
  5631. source: "./media/characters/gale/maw.svg"
  5632. }
  5633. },
  5634. foot: {
  5635. height: math.unit(2.1, "feet"),
  5636. name: "Foot",
  5637. image: {
  5638. source: "./media/characters/gale/foot.svg"
  5639. }
  5640. },
  5641. },
  5642. [
  5643. {
  5644. name: "Normal",
  5645. height: math.unit(7, "feet")
  5646. },
  5647. {
  5648. name: "Macro",
  5649. height: math.unit(150, "feet"),
  5650. default: true
  5651. },
  5652. {
  5653. name: "Macro+",
  5654. height: math.unit(300, "feet")
  5655. },
  5656. ]
  5657. ))
  5658. characterMakers.push(() => makeCharacter(
  5659. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5660. {
  5661. front: {
  5662. height: math.unit(5 + 10/12, "feet"),
  5663. weight: math.unit(67, "kg"),
  5664. name: "Front",
  5665. image: {
  5666. source: "./media/characters/draylen/front.svg",
  5667. extra: 832/777,
  5668. bottom: 85/917
  5669. }
  5670. }
  5671. },
  5672. [
  5673. {
  5674. name: "Normal",
  5675. height: math.unit(5 + 10/12, "feet")
  5676. },
  5677. {
  5678. name: "Macro",
  5679. height: math.unit(150, "feet"),
  5680. default: true
  5681. }
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5686. {
  5687. front: {
  5688. height: math.unit(7 + 9 / 12, "feet"),
  5689. weight: math.unit(379, "lbs"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/chez/front.svg"
  5693. }
  5694. },
  5695. side: {
  5696. height: math.unit(7 + 9 / 12, "feet"),
  5697. weight: math.unit(379, "lbs"),
  5698. name: "Side",
  5699. image: {
  5700. source: "./media/characters/chez/side.svg"
  5701. }
  5702. }
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(7 + 9 / 12, "feet"),
  5708. default: true
  5709. },
  5710. {
  5711. name: "God King",
  5712. height: math.unit(9750000, "meters")
  5713. }
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5718. {
  5719. front: {
  5720. height: math.unit(6, "feet"),
  5721. weight: math.unit(275, "lbs"),
  5722. name: "Front",
  5723. image: {
  5724. source: "./media/characters/kaylum/front.svg",
  5725. bottom: 0.01,
  5726. extra: 1166 / 1031
  5727. }
  5728. },
  5729. frontWingless: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(275, "lbs"),
  5732. name: "Front (Wingless)",
  5733. image: {
  5734. source: "./media/characters/kaylum/front-wingless.svg",
  5735. bottom: 0.01,
  5736. extra: 1117 / 1031
  5737. }
  5738. }
  5739. },
  5740. [
  5741. {
  5742. name: "Normal",
  5743. height: math.unit(3.05, "meters")
  5744. },
  5745. {
  5746. name: "Master",
  5747. height: math.unit(5.5, "meters")
  5748. },
  5749. {
  5750. name: "Rampage",
  5751. height: math.unit(19, "meters")
  5752. },
  5753. {
  5754. name: "Macro Lite",
  5755. height: math.unit(37, "meters")
  5756. },
  5757. {
  5758. name: "Hyper Predator",
  5759. height: math.unit(61, "meters")
  5760. },
  5761. {
  5762. name: "Macro",
  5763. height: math.unit(138, "meters"),
  5764. default: true
  5765. }
  5766. ]
  5767. ))
  5768. characterMakers.push(() => makeCharacter(
  5769. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5770. {
  5771. front: {
  5772. height: math.unit(5 + 5 / 12, "feet"),
  5773. weight: math.unit(120, "lbs"),
  5774. name: "Front",
  5775. image: {
  5776. source: "./media/characters/geta/front.svg",
  5777. extra: 1003/933,
  5778. bottom: 21/1024
  5779. }
  5780. },
  5781. paw: {
  5782. height: math.unit(0.35, "feet"),
  5783. name: "Paw",
  5784. image: {
  5785. source: "./media/characters/geta/paw.svg"
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Micro",
  5792. height: math.unit(3, "inches"),
  5793. default: true
  5794. },
  5795. {
  5796. name: "Normal",
  5797. height: math.unit(5 + 5 / 12, "feet")
  5798. }
  5799. ]
  5800. ))
  5801. characterMakers.push(() => makeCharacter(
  5802. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5803. {
  5804. front: {
  5805. height: math.unit(6, "feet"),
  5806. weight: math.unit(300, "lbs"),
  5807. name: "Front",
  5808. image: {
  5809. source: "./media/characters/tyrnn/front.svg"
  5810. }
  5811. }
  5812. },
  5813. [
  5814. {
  5815. name: "Main Height",
  5816. height: math.unit(355, "feet"),
  5817. default: true
  5818. },
  5819. {
  5820. name: "Fave. Height",
  5821. height: math.unit(2400, "feet")
  5822. }
  5823. ]
  5824. ))
  5825. characterMakers.push(() => makeCharacter(
  5826. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5827. {
  5828. front: {
  5829. height: math.unit(6, "feet"),
  5830. weight: math.unit(300, "lbs"),
  5831. name: "Front",
  5832. image: {
  5833. source: "./media/characters/appledectomy/front.svg"
  5834. }
  5835. }
  5836. },
  5837. [
  5838. {
  5839. name: "Macro",
  5840. height: math.unit(2500, "feet")
  5841. },
  5842. {
  5843. name: "Megamacro",
  5844. height: math.unit(50, "miles"),
  5845. default: true
  5846. },
  5847. {
  5848. name: "Gigamacro",
  5849. height: math.unit(5000, "miles")
  5850. },
  5851. {
  5852. name: "Teramacro",
  5853. height: math.unit(250000, "miles")
  5854. },
  5855. ]
  5856. ))
  5857. characterMakers.push(() => makeCharacter(
  5858. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5859. {
  5860. front: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(200, "lbs"),
  5863. name: "Front",
  5864. image: {
  5865. source: "./media/characters/vulpes/front.svg",
  5866. extra: 573 / 543,
  5867. bottom: 0.033
  5868. }
  5869. },
  5870. side: {
  5871. height: math.unit(6, "feet"),
  5872. weight: math.unit(200, "lbs"),
  5873. name: "Side",
  5874. image: {
  5875. source: "./media/characters/vulpes/side.svg",
  5876. extra: 577 / 549,
  5877. bottom: 11 / 588
  5878. }
  5879. },
  5880. back: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(200, "lbs"),
  5883. name: "Back",
  5884. image: {
  5885. source: "./media/characters/vulpes/back.svg",
  5886. extra: 573 / 549,
  5887. bottom: 20 / 593
  5888. }
  5889. },
  5890. feet: {
  5891. height: math.unit(1.276, "feet"),
  5892. name: "Feet",
  5893. image: {
  5894. source: "./media/characters/vulpes/feet.svg"
  5895. }
  5896. },
  5897. maw: {
  5898. height: math.unit(1.18, "feet"),
  5899. name: "Maw",
  5900. image: {
  5901. source: "./media/characters/vulpes/maw.svg"
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Micro",
  5908. height: math.unit(2, "inches")
  5909. },
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(6.3, "feet")
  5913. },
  5914. {
  5915. name: "Macro",
  5916. height: math.unit(850, "feet")
  5917. },
  5918. {
  5919. name: "Megamacro",
  5920. height: math.unit(7500, "feet"),
  5921. default: true
  5922. },
  5923. {
  5924. name: "Gigamacro",
  5925. height: math.unit(570000, "miles")
  5926. }
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5931. {
  5932. front: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(210, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/rain-fallen/front.svg"
  5938. }
  5939. },
  5940. side: {
  5941. height: math.unit(6, "feet"),
  5942. weight: math.unit(210, "lbs"),
  5943. name: "Side",
  5944. image: {
  5945. source: "./media/characters/rain-fallen/side.svg"
  5946. }
  5947. },
  5948. back: {
  5949. height: math.unit(6, "feet"),
  5950. weight: math.unit(210, "lbs"),
  5951. name: "Back",
  5952. image: {
  5953. source: "./media/characters/rain-fallen/back.svg"
  5954. }
  5955. },
  5956. feral: {
  5957. height: math.unit(9, "feet"),
  5958. weight: math.unit(700, "lbs"),
  5959. name: "Feral",
  5960. image: {
  5961. source: "./media/characters/rain-fallen/feral.svg"
  5962. }
  5963. },
  5964. },
  5965. [
  5966. {
  5967. name: "Meddling with Mortals",
  5968. height: math.unit(8 + 8/12, "feet")
  5969. },
  5970. {
  5971. name: "Normal",
  5972. height: math.unit(5, "meter")
  5973. },
  5974. {
  5975. name: "Macro",
  5976. height: math.unit(150, "meter"),
  5977. default: true
  5978. },
  5979. {
  5980. name: "Megamacro",
  5981. height: math.unit(278e6, "meter")
  5982. },
  5983. {
  5984. name: "Gigamacro",
  5985. height: math.unit(2e9, "meter")
  5986. },
  5987. {
  5988. name: "Teramacro",
  5989. height: math.unit(8e12, "meter")
  5990. },
  5991. {
  5992. name: "Devourer",
  5993. height: math.unit(14, "zettameters")
  5994. },
  5995. {
  5996. name: "Scarlet King",
  5997. height: math.unit(18, "yottameters")
  5998. },
  5999. {
  6000. name: "Void",
  6001. height: math.unit(1e88, "yottameters")
  6002. }
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6007. {
  6008. standing: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(180, "lbs"),
  6011. name: "Standing",
  6012. image: {
  6013. source: "./media/characters/zaakira/standing.svg",
  6014. extra: 1599/1504,
  6015. bottom: 39/1638
  6016. }
  6017. },
  6018. laying: {
  6019. height: math.unit(3.3, "feet"),
  6020. weight: math.unit(180, "lbs"),
  6021. name: "Laying",
  6022. image: {
  6023. source: "./media/characters/zaakira/laying.svg"
  6024. }
  6025. },
  6026. },
  6027. [
  6028. {
  6029. name: "Normal",
  6030. height: math.unit(12, "feet")
  6031. },
  6032. {
  6033. name: "Macro",
  6034. height: math.unit(279, "feet"),
  6035. default: true
  6036. }
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6041. {
  6042. femSfw: {
  6043. height: math.unit(8, "feet"),
  6044. weight: math.unit(350, "lb"),
  6045. name: "Fem",
  6046. image: {
  6047. source: "./media/characters/sigvald/fem-sfw.svg",
  6048. extra: 182 / 164,
  6049. bottom: 8.7 / 190.5
  6050. }
  6051. },
  6052. femNsfw: {
  6053. height: math.unit(8, "feet"),
  6054. weight: math.unit(350, "lb"),
  6055. name: "Fem (NSFW)",
  6056. image: {
  6057. source: "./media/characters/sigvald/fem-nsfw.svg",
  6058. extra: 182 / 164,
  6059. bottom: 8.7 / 190.5
  6060. }
  6061. },
  6062. maleNsfw: {
  6063. height: math.unit(8, "feet"),
  6064. weight: math.unit(350, "lb"),
  6065. name: "Male (NSFW)",
  6066. image: {
  6067. source: "./media/characters/sigvald/male-nsfw.svg",
  6068. extra: 182 / 164,
  6069. bottom: 8.7 / 190.5
  6070. }
  6071. },
  6072. hermNsfw: {
  6073. height: math.unit(8, "feet"),
  6074. weight: math.unit(350, "lb"),
  6075. name: "Herm (NSFW)",
  6076. image: {
  6077. source: "./media/characters/sigvald/herm-nsfw.svg",
  6078. extra: 182 / 164,
  6079. bottom: 8.7 / 190.5
  6080. }
  6081. },
  6082. dick: {
  6083. height: math.unit(2.36, "feet"),
  6084. name: "Dick",
  6085. image: {
  6086. source: "./media/characters/sigvald/dick.svg"
  6087. }
  6088. },
  6089. eye: {
  6090. height: math.unit(0.31, "feet"),
  6091. name: "Eye",
  6092. image: {
  6093. source: "./media/characters/sigvald/eye.svg"
  6094. }
  6095. },
  6096. mouth: {
  6097. height: math.unit(0.92, "feet"),
  6098. name: "Mouth",
  6099. image: {
  6100. source: "./media/characters/sigvald/mouth.svg"
  6101. }
  6102. },
  6103. paws: {
  6104. height: math.unit(2.2, "feet"),
  6105. name: "Paws",
  6106. image: {
  6107. source: "./media/characters/sigvald/paws.svg"
  6108. }
  6109. }
  6110. },
  6111. [
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(8, "feet")
  6115. },
  6116. {
  6117. name: "Large",
  6118. height: math.unit(12, "feet")
  6119. },
  6120. {
  6121. name: "Larger",
  6122. height: math.unit(20, "feet")
  6123. },
  6124. {
  6125. name: "Macro",
  6126. height: math.unit(150, "feet")
  6127. },
  6128. {
  6129. name: "Macro+",
  6130. height: math.unit(200, "feet"),
  6131. default: true
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6137. {
  6138. anthro_front: {
  6139. height: math.unit(5 + 11/12, "feet"),
  6140. weight: math.unit(250, "lb"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/scott/anthro-front.svg",
  6144. extra: 851/781,
  6145. bottom: 54/905
  6146. },
  6147. form: "anthro",
  6148. default: true
  6149. },
  6150. anthro_side: {
  6151. height: math.unit(5.1, "feet"),
  6152. weight: math.unit(250, "lb"),
  6153. name: "Side",
  6154. image: {
  6155. source: "./media/characters/scott/anthro-side.svg"
  6156. },
  6157. form: "anthro",
  6158. },
  6159. anthro_dick: {
  6160. height: math.unit(1.33, "feet"),
  6161. name: "Dick",
  6162. image: {
  6163. source: "./media/characters/scott/anthro-dick.svg"
  6164. },
  6165. form: "anthro",
  6166. },
  6167. side: {
  6168. height: math.unit(12, "feet"),
  6169. weight: math.unit(2000, "kg"),
  6170. name: "Side",
  6171. image: {
  6172. source: "./media/characters/scott/side.svg",
  6173. extra: 754 / 724,
  6174. bottom: 0.069
  6175. },
  6176. form: "taur",
  6177. default: true
  6178. },
  6179. upright: {
  6180. height: math.unit(12, "feet"),
  6181. weight: math.unit(2000, "kg"),
  6182. name: "Upright",
  6183. image: {
  6184. source: "./media/characters/scott/upright.svg",
  6185. extra: 3881 / 3722,
  6186. bottom: 0.05
  6187. },
  6188. form: "taur",
  6189. },
  6190. },
  6191. [
  6192. {
  6193. name: "Normal",
  6194. height: math.unit(5 + 11/12, "feet"),
  6195. default: true,
  6196. form: "anthro"
  6197. },
  6198. {
  6199. name: "Normal",
  6200. height: math.unit(12, "feet"),
  6201. default: true,
  6202. form: "taur"
  6203. },
  6204. ],
  6205. {
  6206. "anthro": {
  6207. name: "Anthro",
  6208. default: true
  6209. },
  6210. "taur": {
  6211. name: "Taur",
  6212. },
  6213. }
  6214. ))
  6215. characterMakers.push(() => makeCharacter(
  6216. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6217. {
  6218. side: {
  6219. height: math.unit(8, "meters"),
  6220. weight: math.unit(84755, "lbs"),
  6221. name: "Side",
  6222. image: {
  6223. source: "./media/characters/tobias/side.svg",
  6224. extra: 1474 / 1096,
  6225. bottom: 38.9 / 1513.1235
  6226. }
  6227. },
  6228. maw: {
  6229. height: math.unit(2.3, "meters"),
  6230. name: "Maw",
  6231. image: {
  6232. source: "./media/characters/tobias/maw.svg"
  6233. }
  6234. },
  6235. burp: {
  6236. height: math.unit(2.85, "meters"),
  6237. name: "Burp",
  6238. image: {
  6239. source: "./media/characters/tobias/burp.svg"
  6240. }
  6241. },
  6242. },
  6243. [
  6244. {
  6245. name: "Normal",
  6246. height: math.unit(8, "meters"),
  6247. default: true
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6253. {
  6254. front: {
  6255. height: math.unit(5.5, "feet"),
  6256. weight: math.unit(400, "lbs"),
  6257. name: "Front",
  6258. image: {
  6259. source: "./media/characters/kieran/front.svg",
  6260. extra: 2694 / 2364,
  6261. bottom: 217 / 2908
  6262. }
  6263. },
  6264. side: {
  6265. height: math.unit(5.5, "feet"),
  6266. weight: math.unit(400, "lbs"),
  6267. name: "Side",
  6268. image: {
  6269. source: "./media/characters/kieran/side.svg",
  6270. extra: 875 / 777,
  6271. bottom: 84.6 / 959
  6272. }
  6273. },
  6274. },
  6275. [
  6276. {
  6277. name: "Normal",
  6278. height: math.unit(5.5, "feet"),
  6279. default: true
  6280. },
  6281. ]
  6282. ))
  6283. characterMakers.push(() => makeCharacter(
  6284. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6285. {
  6286. side: {
  6287. height: math.unit(2, "meters"),
  6288. weight: math.unit(70, "kg"),
  6289. name: "Side",
  6290. image: {
  6291. source: "./media/characters/sanya/side.svg",
  6292. bottom: 0.02,
  6293. extra: 1.02
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Small",
  6300. height: math.unit(2, "meters")
  6301. },
  6302. {
  6303. name: "Normal",
  6304. height: math.unit(3, "meters")
  6305. },
  6306. {
  6307. name: "Macro",
  6308. height: math.unit(16, "meters"),
  6309. default: true
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6315. {
  6316. front: {
  6317. height: math.unit(2, "meters"),
  6318. weight: math.unit(120, "kg"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/miranda/front.svg",
  6322. extra: 195 / 185,
  6323. bottom: 10.9 / 206.5
  6324. }
  6325. },
  6326. back: {
  6327. height: math.unit(2, "meters"),
  6328. weight: math.unit(120, "kg"),
  6329. name: "Back",
  6330. image: {
  6331. source: "./media/characters/miranda/back.svg",
  6332. extra: 201 / 193,
  6333. bottom: 2.3 / 203.7
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(10, "feet"),
  6341. default: true
  6342. }
  6343. ]
  6344. ))
  6345. characterMakers.push(() => makeCharacter(
  6346. { name: "James", species: ["deer"], tags: ["anthro"] },
  6347. {
  6348. side: {
  6349. height: math.unit(2, "meters"),
  6350. weight: math.unit(100, "kg"),
  6351. name: "Front",
  6352. image: {
  6353. source: "./media/characters/james/front.svg",
  6354. extra: 10 / 8.5
  6355. }
  6356. },
  6357. },
  6358. [
  6359. {
  6360. name: "Normal",
  6361. height: math.unit(8.5, "feet"),
  6362. default: true
  6363. }
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6368. {
  6369. side: {
  6370. height: math.unit(9.5, "feet"),
  6371. weight: math.unit(2500, "lbs"),
  6372. name: "Side",
  6373. image: {
  6374. source: "./media/characters/heather/side.svg"
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(9.5, "feet"),
  6382. default: true
  6383. }
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6388. {
  6389. side: {
  6390. height: math.unit(6.5, "feet"),
  6391. weight: math.unit(400, "lbs"),
  6392. name: "Side",
  6393. image: {
  6394. source: "./media/characters/lukas/side.svg",
  6395. extra: 7.25 / 6.5
  6396. }
  6397. },
  6398. },
  6399. [
  6400. {
  6401. name: "Normal",
  6402. height: math.unit(6.5, "feet"),
  6403. default: true
  6404. }
  6405. ]
  6406. ))
  6407. characterMakers.push(() => makeCharacter(
  6408. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6409. {
  6410. side: {
  6411. height: math.unit(5, "feet"),
  6412. weight: math.unit(3000, "lbs"),
  6413. name: "Side",
  6414. image: {
  6415. source: "./media/characters/louise/side.svg"
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Normal",
  6422. height: math.unit(5, "feet"),
  6423. default: true
  6424. }
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6429. {
  6430. side: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(150, "lbs"),
  6433. name: "Side",
  6434. image: {
  6435. source: "./media/characters/ramona/side.svg",
  6436. extra: 871/854,
  6437. bottom: 41/912
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(6 + 4/12, "feet")
  6445. },
  6446. {
  6447. name: "Minimacro",
  6448. height: math.unit(5.3, "meters"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Macro",
  6453. height: math.unit(20, "stories")
  6454. },
  6455. {
  6456. name: "Macro+",
  6457. height: math.unit(50, "stories")
  6458. },
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6463. {
  6464. standing: {
  6465. height: math.unit(5.75, "feet"),
  6466. weight: math.unit(160, "lbs"),
  6467. name: "Standing",
  6468. image: {
  6469. source: "./media/characters/deerpuff/standing.svg",
  6470. extra: 682 / 624
  6471. }
  6472. },
  6473. sitting: {
  6474. height: math.unit(5.75 / 1.79, "feet"),
  6475. weight: math.unit(160, "lbs"),
  6476. name: "Sitting",
  6477. image: {
  6478. source: "./media/characters/deerpuff/sitting.svg",
  6479. bottom: 44 / 400,
  6480. extra: 1
  6481. }
  6482. },
  6483. taurLaying: {
  6484. height: math.unit(6, "feet"),
  6485. weight: math.unit(400, "lbs"),
  6486. name: "Taur (Laying)",
  6487. image: {
  6488. source: "./media/characters/deerpuff/taur-laying.svg"
  6489. }
  6490. },
  6491. },
  6492. [
  6493. {
  6494. name: "Puffball",
  6495. height: math.unit(6, "inches")
  6496. },
  6497. {
  6498. name: "Normalpuff",
  6499. height: math.unit(5.75, "feet")
  6500. },
  6501. {
  6502. name: "Macropuff",
  6503. height: math.unit(1500, "feet"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Megapuff",
  6508. height: math.unit(500, "miles")
  6509. },
  6510. {
  6511. name: "Gigapuff",
  6512. height: math.unit(250000, "miles")
  6513. },
  6514. {
  6515. name: "Omegapuff",
  6516. height: math.unit(1000, "lightyears")
  6517. },
  6518. ]
  6519. ))
  6520. characterMakers.push(() => makeCharacter(
  6521. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6522. {
  6523. stomping: {
  6524. height: math.unit(6, "feet"),
  6525. weight: math.unit(170, "lbs"),
  6526. name: "Stomping",
  6527. image: {
  6528. source: "./media/characters/vivian/stomping.svg"
  6529. }
  6530. },
  6531. sitting: {
  6532. height: math.unit(6 / 1.75, "feet"),
  6533. weight: math.unit(170, "lbs"),
  6534. name: "Sitting",
  6535. image: {
  6536. source: "./media/characters/vivian/sitting.svg",
  6537. bottom: 1 / 6.4,
  6538. extra: 1,
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(7, "feet"),
  6546. default: true
  6547. },
  6548. {
  6549. name: "Macro",
  6550. height: math.unit(10, "stories")
  6551. },
  6552. {
  6553. name: "Macro+",
  6554. height: math.unit(30, "stories")
  6555. },
  6556. {
  6557. name: "Megamacro",
  6558. height: math.unit(10, "miles")
  6559. },
  6560. {
  6561. name: "Megamacro+",
  6562. height: math.unit(2750000, "meters")
  6563. },
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(160, "lbs"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/prince/front.svg",
  6575. extra: 1938/1682,
  6576. bottom: 45/1983
  6577. }
  6578. },
  6579. back: {
  6580. height: math.unit(6, "feet"),
  6581. weight: math.unit(160, "lbs"),
  6582. name: "Back",
  6583. image: {
  6584. source: "./media/characters/prince/back.svg",
  6585. extra: 1955/1726,
  6586. bottom: 6/1961
  6587. }
  6588. },
  6589. },
  6590. [
  6591. {
  6592. name: "Normal",
  6593. height: math.unit(7.75, "feet"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Not cute",
  6598. height: math.unit(17, "feet")
  6599. },
  6600. {
  6601. name: "I said NOT",
  6602. height: math.unit(91, "feet")
  6603. },
  6604. {
  6605. name: "Please stop",
  6606. height: math.unit(560, "feet")
  6607. },
  6608. {
  6609. name: "What have you done",
  6610. height: math.unit(2200, "feet")
  6611. },
  6612. {
  6613. name: "Deer God",
  6614. height: math.unit(3.6, "miles")
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6620. {
  6621. standing: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(300, "lbs"),
  6624. name: "Standing",
  6625. image: {
  6626. source: "./media/characters/psymon/standing.svg",
  6627. extra: 1888 / 1810,
  6628. bottom: 0.05
  6629. }
  6630. },
  6631. slithering: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(300, "lbs"),
  6634. name: "Slithering",
  6635. image: {
  6636. source: "./media/characters/psymon/slithering.svg",
  6637. extra: 1330 / 1224
  6638. }
  6639. },
  6640. slitheringAlt: {
  6641. height: math.unit(6, "feet"),
  6642. weight: math.unit(300, "lbs"),
  6643. name: "Slithering (Alt)",
  6644. image: {
  6645. source: "./media/characters/psymon/slithering-alt.svg",
  6646. extra: 1330 / 1224
  6647. }
  6648. },
  6649. },
  6650. [
  6651. {
  6652. name: "Normal",
  6653. height: math.unit(11.25, "feet"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Large",
  6658. height: math.unit(27, "feet")
  6659. },
  6660. {
  6661. name: "Giant",
  6662. height: math.unit(87, "feet")
  6663. },
  6664. {
  6665. name: "Macro",
  6666. height: math.unit(365, "feet")
  6667. },
  6668. {
  6669. name: "Megamacro",
  6670. height: math.unit(3, "miles")
  6671. },
  6672. {
  6673. name: "World Serpent",
  6674. height: math.unit(8000, "miles")
  6675. },
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6680. {
  6681. front: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(180, "lbs"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/daimos/front.svg",
  6687. extra: 4160 / 3897,
  6688. bottom: 0.021
  6689. }
  6690. }
  6691. },
  6692. [
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(8, "feet"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "Big Dog",
  6700. height: math.unit(22, "feet")
  6701. },
  6702. {
  6703. name: "Macro",
  6704. height: math.unit(127, "feet")
  6705. },
  6706. {
  6707. name: "Megamacro",
  6708. height: math.unit(3600, "feet")
  6709. },
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6714. {
  6715. side: {
  6716. height: math.unit(6, "feet"),
  6717. weight: math.unit(180, "lbs"),
  6718. name: "Side",
  6719. image: {
  6720. source: "./media/characters/blake/side.svg",
  6721. extra: 1212 / 1120,
  6722. bottom: 0.05
  6723. }
  6724. },
  6725. crouched: {
  6726. height: math.unit(6 * 0.57, "feet"),
  6727. weight: math.unit(180, "lbs"),
  6728. name: "Crouched",
  6729. image: {
  6730. source: "./media/characters/blake/crouched.svg",
  6731. extra: 840 / 587,
  6732. bottom: 0.04
  6733. }
  6734. },
  6735. bent: {
  6736. height: math.unit(6 * 0.75, "feet"),
  6737. weight: math.unit(180, "lbs"),
  6738. name: "Bent",
  6739. image: {
  6740. source: "./media/characters/blake/bent.svg",
  6741. extra: 592 / 544,
  6742. bottom: 0.035
  6743. }
  6744. },
  6745. },
  6746. [
  6747. {
  6748. name: "Normal",
  6749. height: math.unit(8 + 1 / 6, "feet"),
  6750. default: true
  6751. },
  6752. {
  6753. name: "Big Backside",
  6754. height: math.unit(37, "feet")
  6755. },
  6756. {
  6757. name: "Subway Shredder",
  6758. height: math.unit(72, "feet")
  6759. },
  6760. {
  6761. name: "City Carver",
  6762. height: math.unit(1675, "feet")
  6763. },
  6764. {
  6765. name: "Tectonic Tweaker",
  6766. height: math.unit(2300, "miles")
  6767. },
  6768. ]
  6769. ))
  6770. characterMakers.push(() => makeCharacter(
  6771. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6772. {
  6773. front: {
  6774. height: math.unit(6, "feet"),
  6775. weight: math.unit(180, "lbs"),
  6776. name: "Front",
  6777. image: {
  6778. source: "./media/characters/guisetto/front.svg",
  6779. extra: 856 / 817,
  6780. bottom: 0.06
  6781. }
  6782. },
  6783. airborne: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(180, "lbs"),
  6786. name: "Airborne",
  6787. image: {
  6788. source: "./media/characters/guisetto/airborne.svg",
  6789. extra: 584 / 525
  6790. }
  6791. },
  6792. },
  6793. [
  6794. {
  6795. name: "Normal",
  6796. height: math.unit(10 + 11 / 12, "feet"),
  6797. default: true
  6798. },
  6799. {
  6800. name: "Large",
  6801. height: math.unit(35, "feet")
  6802. },
  6803. {
  6804. name: "Macro",
  6805. height: math.unit(475, "feet")
  6806. },
  6807. ]
  6808. ))
  6809. characterMakers.push(() => makeCharacter(
  6810. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6811. {
  6812. front: {
  6813. height: math.unit(6, "feet"),
  6814. weight: math.unit(180, "lbs"),
  6815. name: "Front",
  6816. image: {
  6817. source: "./media/characters/luxor/front.svg",
  6818. extra: 2940 / 2152
  6819. }
  6820. },
  6821. back: {
  6822. height: math.unit(6, "feet"),
  6823. weight: math.unit(180, "lbs"),
  6824. name: "Back",
  6825. image: {
  6826. source: "./media/characters/luxor/back.svg",
  6827. extra: 1083 / 960
  6828. }
  6829. },
  6830. },
  6831. [
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(5 + 5 / 6, "feet"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Lamp",
  6839. height: math.unit(50, "feet")
  6840. },
  6841. {
  6842. name: "Lämp",
  6843. height: math.unit(300, "feet")
  6844. },
  6845. {
  6846. name: "The sun is a lamp",
  6847. height: math.unit(250000, "miles")
  6848. },
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6853. {
  6854. front: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(50, "lbs"),
  6857. name: "Front",
  6858. image: {
  6859. source: "./media/characters/huoyan/front.svg"
  6860. }
  6861. },
  6862. side: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(180, "lbs"),
  6865. name: "Side",
  6866. image: {
  6867. source: "./media/characters/huoyan/side.svg"
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Chef",
  6874. height: math.unit(9, "feet")
  6875. },
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(65, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(780, "feet")
  6884. },
  6885. {
  6886. name: "Flaming Mountain",
  6887. height: math.unit(4.8, "miles")
  6888. },
  6889. {
  6890. name: "Celestial",
  6891. height: math.unit(765000, "miles")
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(5 + 3 / 4, "feet"),
  6900. weight: math.unit(120, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/tails/front.svg"
  6904. }
  6905. }
  6906. },
  6907. [
  6908. {
  6909. name: "Normal",
  6910. height: math.unit(5 + 3 / 4, "feet"),
  6911. default: true
  6912. }
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6917. {
  6918. front: {
  6919. height: math.unit(4, "feet"),
  6920. weight: math.unit(50, "lbs"),
  6921. name: "Front",
  6922. image: {
  6923. source: "./media/characters/rainy/front.svg"
  6924. }
  6925. }
  6926. },
  6927. [
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(800, "feet"),
  6931. default: true
  6932. }
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6937. {
  6938. front: {
  6939. height: math.unit(6, "feet"),
  6940. weight: math.unit(150, "lbs"),
  6941. name: "Front",
  6942. image: {
  6943. source: "./media/characters/rainier/front.svg"
  6944. }
  6945. }
  6946. },
  6947. [
  6948. {
  6949. name: "Micro",
  6950. height: math.unit(2, "mm"),
  6951. default: true
  6952. }
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(8 + 4/12, "feet"),
  6960. weight: math.unit(450, "kilograms"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/andy-renard/front.svg",
  6964. extra: 862/809,
  6965. bottom: 85/947
  6966. },
  6967. extraAttributes: {
  6968. "pawSize": {
  6969. name: "Paw Size",
  6970. power: 2,
  6971. type: "area",
  6972. base: math.unit(0.45*0.3, "meters^2")
  6973. },
  6974. "handSize": {
  6975. name: "Hand Size",
  6976. power: 2,
  6977. type: "area",
  6978. base: math.unit(0.4 * 0.3, "meters^2")
  6979. },
  6980. "cockSize": {
  6981. name: "Cock Length",
  6982. power: 1,
  6983. type: "length",
  6984. base: math.unit(0.75, "meters")
  6985. },
  6986. "ballDiameter": {
  6987. name: "Ball Diameter",
  6988. power: 1,
  6989. type: "length",
  6990. base: math.unit(0.3, "meters")
  6991. },
  6992. "ballVolume": {
  6993. name: "Ball Volume",
  6994. power: 3,
  6995. type: "volume",
  6996. base: math.unit(0.01413716694, "meters^3")
  6997. },
  6998. }
  6999. },
  7000. back: {
  7001. height: math.unit(8 + 4/12, "feet"),
  7002. weight: math.unit(450, "kilograms"),
  7003. name: "Back",
  7004. image: {
  7005. source: "./media/characters/andy-renard/back.svg",
  7006. extra: 1112/1033,
  7007. bottom: 64/1176
  7008. },
  7009. extraAttributes: {
  7010. "pawSize": {
  7011. name: "Paw Size",
  7012. power: 2,
  7013. type: "area",
  7014. base: math.unit(0.45*0.3, "meters^2")
  7015. },
  7016. "handSize": {
  7017. name: "Hand Size",
  7018. power: 2,
  7019. type: "area",
  7020. base: math.unit(0.4 * 0.3, "meters^2")
  7021. },
  7022. "cockSize": {
  7023. name: "Cock Length",
  7024. power: 1,
  7025. type: "length",
  7026. base: math.unit(0.75, "meters")
  7027. },
  7028. "ballDiameter": {
  7029. name: "Ball Diameter",
  7030. power: 1,
  7031. type: "length",
  7032. base: math.unit(0.3, "meters")
  7033. },
  7034. "ballVolume": {
  7035. name: "Ball Volume",
  7036. power: 3,
  7037. type: "volume",
  7038. base: math.unit(0.01413716694, "meters^3")
  7039. },
  7040. }
  7041. },
  7042. },
  7043. [
  7044. {
  7045. name: "Tall",
  7046. height: math.unit(6 + 8/12, "feet")
  7047. },
  7048. {
  7049. name: "Very Tall",
  7050. height: math.unit(8 + 4/12, "feet")
  7051. },
  7052. {
  7053. name: "Mini Macro",
  7054. height: math.unit(15, "feet"),
  7055. default: true
  7056. },
  7057. {
  7058. name: "Giant",
  7059. height: math.unit(50, "feet")
  7060. },
  7061. {
  7062. name: "Nice",
  7063. height: math.unit(69, "feet")
  7064. },
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(100, "feet")
  7068. },
  7069. {
  7070. name: "Enormous",
  7071. height: math.unit(500, "feet")
  7072. },
  7073. {
  7074. name: "Gargantuan",
  7075. height: math.unit(1000, "feet")
  7076. },
  7077. {
  7078. name: "Mega",
  7079. height: math.unit(1, "mile")
  7080. },
  7081. {
  7082. name: "Giga",
  7083. height: math.unit(50, "miles")
  7084. },
  7085. {
  7086. name: "Tera",
  7087. height: math.unit(1000, "miles")
  7088. },
  7089. {
  7090. name: "Cosmic",
  7091. height: math.unit(1.5, "galaxies")
  7092. },
  7093. {
  7094. name: "God",
  7095. height: math.unit(1.5, "universes")
  7096. },
  7097. {
  7098. name: "Chief Execute God",
  7099. height: math.unit(1.5, "multiverses")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(6, "feet"),
  7108. weight: math.unit(210, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/cimmaron/front-sfw.svg",
  7112. extra: 701 / 676,
  7113. bottom: 0.046
  7114. }
  7115. },
  7116. back: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(210, "lbs"),
  7119. name: "Back",
  7120. image: {
  7121. source: "./media/characters/cimmaron/back-sfw.svg",
  7122. extra: 701 / 676,
  7123. bottom: 0.046
  7124. }
  7125. },
  7126. frontNsfw: {
  7127. height: math.unit(6, "feet"),
  7128. weight: math.unit(210, "lbs"),
  7129. name: "Front (NSFW)",
  7130. image: {
  7131. source: "./media/characters/cimmaron/front-nsfw.svg",
  7132. extra: 701 / 676,
  7133. bottom: 0.046
  7134. }
  7135. },
  7136. backNsfw: {
  7137. height: math.unit(6, "feet"),
  7138. weight: math.unit(210, "lbs"),
  7139. name: "Back (NSFW)",
  7140. image: {
  7141. source: "./media/characters/cimmaron/back-nsfw.svg",
  7142. extra: 701 / 676,
  7143. bottom: 0.046
  7144. }
  7145. },
  7146. dick: {
  7147. height: math.unit(1.714, "feet"),
  7148. name: "Dick",
  7149. image: {
  7150. source: "./media/characters/cimmaron/dick.svg"
  7151. }
  7152. },
  7153. },
  7154. [
  7155. {
  7156. name: "Normal",
  7157. height: math.unit(6, "feet"),
  7158. default: true
  7159. },
  7160. {
  7161. name: "Macro Mayor",
  7162. height: math.unit(350, "meters")
  7163. },
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7168. {
  7169. front: {
  7170. height: math.unit(6, "feet"),
  7171. weight: math.unit(200, "lbs"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/akari/front.svg",
  7175. extra: 962 / 901,
  7176. bottom: 0.04
  7177. }
  7178. }
  7179. },
  7180. [
  7181. {
  7182. name: "Micro",
  7183. height: math.unit(5, "inches"),
  7184. default: true
  7185. },
  7186. {
  7187. name: "Normal",
  7188. height: math.unit(7, "feet")
  7189. },
  7190. ]
  7191. ))
  7192. characterMakers.push(() => makeCharacter(
  7193. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7194. {
  7195. front: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(140, "lbs"),
  7198. name: "Front",
  7199. image: {
  7200. source: "./media/characters/cynosura/front.svg",
  7201. extra: 437/410,
  7202. bottom: 9/446
  7203. }
  7204. },
  7205. back: {
  7206. height: math.unit(6, "feet"),
  7207. weight: math.unit(140, "lbs"),
  7208. name: "Back",
  7209. image: {
  7210. source: "./media/characters/cynosura/back.svg",
  7211. extra: 1304/1160,
  7212. bottom: 71/1375
  7213. }
  7214. },
  7215. },
  7216. [
  7217. {
  7218. name: "Micro",
  7219. height: math.unit(4, "inches")
  7220. },
  7221. {
  7222. name: "Normal",
  7223. height: math.unit(5.75, "feet"),
  7224. default: true
  7225. },
  7226. {
  7227. name: "Tall",
  7228. height: math.unit(10, "feet")
  7229. },
  7230. {
  7231. name: "Big",
  7232. height: math.unit(20, "feet")
  7233. },
  7234. {
  7235. name: "Macro",
  7236. height: math.unit(50, "feet")
  7237. },
  7238. ]
  7239. ))
  7240. characterMakers.push(() => makeCharacter(
  7241. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7242. {
  7243. front: {
  7244. height: math.unit(13 + 2/12, "feet"),
  7245. weight: math.unit(800, "kg"),
  7246. name: "Front",
  7247. image: {
  7248. source: "./media/characters/gin/front.svg",
  7249. extra: 1312/1191,
  7250. bottom: 45/1357
  7251. }
  7252. },
  7253. mouth: {
  7254. height: math.unit(2.39 * 1.8, "feet"),
  7255. name: "Mouth",
  7256. image: {
  7257. source: "./media/characters/gin/mouth.svg"
  7258. }
  7259. },
  7260. hand: {
  7261. height: math.unit(1.57 * 2.19, "feet"),
  7262. name: "Hand",
  7263. image: {
  7264. source: "./media/characters/gin/hand.svg"
  7265. }
  7266. },
  7267. foot: {
  7268. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7269. name: "Foot",
  7270. image: {
  7271. source: "./media/characters/gin/foot.svg"
  7272. }
  7273. },
  7274. sole: {
  7275. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7276. name: "Sole",
  7277. image: {
  7278. source: "./media/characters/gin/sole.svg"
  7279. }
  7280. },
  7281. },
  7282. [
  7283. {
  7284. name: "Very Small",
  7285. height: math.unit(13 + 2 / 12, "feet")
  7286. },
  7287. {
  7288. name: "Micro",
  7289. height: math.unit(600, "miles")
  7290. },
  7291. {
  7292. name: "Regular",
  7293. height: math.unit(20, "earths"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Macro",
  7298. height: math.unit(2.2, "solarradii")
  7299. },
  7300. {
  7301. name: "Teramacro",
  7302. height: math.unit(1.2, "galaxies")
  7303. },
  7304. {
  7305. name: "Omegamacro",
  7306. height: math.unit(200, "universes")
  7307. },
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(6 + 1 / 6, "feet"),
  7315. weight: math.unit(178, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/guy/front.svg"
  7319. }
  7320. }
  7321. },
  7322. [
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(6 + 1 / 6, "feet"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Large",
  7330. height: math.unit(25 + 7 / 12, "feet")
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(60 + 9 / 12, "feet")
  7335. },
  7336. {
  7337. name: "Macro+",
  7338. height: math.unit(246, "feet")
  7339. },
  7340. {
  7341. name: "Macro++",
  7342. height: math.unit(878, "feet")
  7343. }
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7348. {
  7349. front: {
  7350. height: math.unit(9, "feet"),
  7351. weight: math.unit(800, "lbs"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/tiberius/front.svg",
  7355. extra: 2295 / 2071
  7356. }
  7357. },
  7358. back: {
  7359. height: math.unit(9, "feet"),
  7360. weight: math.unit(800, "lbs"),
  7361. name: "Back",
  7362. image: {
  7363. source: "./media/characters/tiberius/back.svg",
  7364. extra: 2373 / 2160
  7365. }
  7366. },
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(9, "feet"),
  7372. default: true
  7373. }
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7378. {
  7379. front: {
  7380. height: math.unit(6, "feet"),
  7381. weight: math.unit(600, "lbs"),
  7382. name: "Front",
  7383. image: {
  7384. source: "./media/characters/surgo/front.svg",
  7385. extra: 3591 / 2227
  7386. }
  7387. },
  7388. back: {
  7389. height: math.unit(6, "feet"),
  7390. weight: math.unit(600, "lbs"),
  7391. name: "Back",
  7392. image: {
  7393. source: "./media/characters/surgo/back.svg",
  7394. extra: 3557 / 2228
  7395. }
  7396. },
  7397. laying: {
  7398. height: math.unit(6 * 0.85, "feet"),
  7399. weight: math.unit(600, "lbs"),
  7400. name: "Laying",
  7401. image: {
  7402. source: "./media/characters/surgo/laying.svg"
  7403. }
  7404. },
  7405. },
  7406. [
  7407. {
  7408. name: "Normal",
  7409. height: math.unit(6, "feet"),
  7410. default: true
  7411. }
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7416. {
  7417. side: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(150, "lbs"),
  7420. name: "Side",
  7421. image: {
  7422. source: "./media/characters/cibus/side.svg",
  7423. extra: 800 / 400
  7424. }
  7425. },
  7426. },
  7427. [
  7428. {
  7429. name: "Normal",
  7430. height: math.unit(6, "feet"),
  7431. default: true
  7432. }
  7433. ]
  7434. ))
  7435. characterMakers.push(() => makeCharacter(
  7436. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7437. {
  7438. front: {
  7439. height: math.unit(6, "feet"),
  7440. weight: math.unit(240, "lbs"),
  7441. name: "Front",
  7442. image: {
  7443. source: "./media/characters/nibbles/front.svg"
  7444. }
  7445. },
  7446. side: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(240, "lbs"),
  7449. name: "Side",
  7450. image: {
  7451. source: "./media/characters/nibbles/side.svg"
  7452. }
  7453. },
  7454. },
  7455. [
  7456. {
  7457. name: "Normal",
  7458. height: math.unit(9, "feet"),
  7459. default: true
  7460. }
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7465. {
  7466. side: {
  7467. height: math.unit(5 + 1 / 6, "feet"),
  7468. weight: math.unit(130, "lbs"),
  7469. name: "Side",
  7470. image: {
  7471. source: "./media/characters/rikky/side.svg",
  7472. extra: 851 / 801
  7473. }
  7474. },
  7475. },
  7476. [
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(5 + 1 / 6, "feet")
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(152, "feet"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(7, "miles")
  7489. }
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7494. {
  7495. side: {
  7496. height: math.unit(370, "cm"),
  7497. weight: math.unit(350, "lbs"),
  7498. name: "Side",
  7499. image: {
  7500. source: "./media/characters/malfressa/side.svg"
  7501. }
  7502. },
  7503. walking: {
  7504. height: math.unit(370, "cm"),
  7505. weight: math.unit(350, "lbs"),
  7506. name: "Walking",
  7507. image: {
  7508. source: "./media/characters/malfressa/walking.svg"
  7509. }
  7510. },
  7511. feral: {
  7512. height: math.unit(2500, "cm"),
  7513. weight: math.unit(100000, "lbs"),
  7514. name: "Feral",
  7515. image: {
  7516. source: "./media/characters/malfressa/feral.svg",
  7517. extra: 2108 / 837,
  7518. bottom: 0.02
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Normal",
  7525. height: math.unit(370, "cm")
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(300, "meters"),
  7530. default: true
  7531. }
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7536. {
  7537. front: {
  7538. height: math.unit(6, "feet"),
  7539. weight: math.unit(60, "kg"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/jaro/front.svg",
  7543. extra: 845/817,
  7544. bottom: 45/890
  7545. }
  7546. },
  7547. back: {
  7548. height: math.unit(6, "feet"),
  7549. weight: math.unit(60, "kg"),
  7550. name: "Back",
  7551. image: {
  7552. source: "./media/characters/jaro/back.svg",
  7553. extra: 847/817,
  7554. bottom: 34/881
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(7, "inches")
  7562. },
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(5.5, "feet"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Minimacro",
  7570. height: math.unit(20, "feet")
  7571. },
  7572. {
  7573. name: "Macro",
  7574. height: math.unit(200, "meters")
  7575. }
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(195, "lb"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/rogue/front.svg"
  7587. }
  7588. },
  7589. },
  7590. [
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(90, "feet"),
  7594. default: true
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7600. {
  7601. standing: {
  7602. height: math.unit(5 + 8 / 12, "feet"),
  7603. weight: math.unit(140, "lb"),
  7604. name: "Standing",
  7605. image: {
  7606. source: "./media/characters/piper/standing.svg",
  7607. extra: 1440/1284,
  7608. bottom: 66/1506
  7609. }
  7610. },
  7611. running: {
  7612. height: math.unit(5 + 8 / 12, "feet"),
  7613. weight: math.unit(140, "lb"),
  7614. name: "Running",
  7615. image: {
  7616. source: "./media/characters/piper/running.svg",
  7617. extra: 3948/3655,
  7618. bottom: 0/3948
  7619. }
  7620. },
  7621. sole: {
  7622. height: math.unit(0.81, "feet"),
  7623. weight: math.unit(2, "kg"),
  7624. name: "Sole",
  7625. image: {
  7626. source: "./media/characters/piper/sole.svg"
  7627. }
  7628. },
  7629. nipple: {
  7630. height: math.unit(0.25, "feet"),
  7631. weight: math.unit(1.5, "lb"),
  7632. name: "Nipple",
  7633. image: {
  7634. source: "./media/characters/piper/nipple.svg"
  7635. }
  7636. },
  7637. head: {
  7638. height: math.unit(1.1, "feet"),
  7639. name: "Head",
  7640. image: {
  7641. source: "./media/characters/piper/head.svg"
  7642. }
  7643. },
  7644. },
  7645. [
  7646. {
  7647. name: "Micro",
  7648. height: math.unit(2, "inches")
  7649. },
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(5 + 8 / 12, "feet")
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(250, "feet"),
  7657. default: true
  7658. },
  7659. {
  7660. name: "Megamacro",
  7661. height: math.unit(7, "miles")
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(6, "feet"),
  7670. weight: math.unit(220, "lb"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/gemini/front.svg"
  7674. }
  7675. },
  7676. back: {
  7677. height: math.unit(6, "feet"),
  7678. weight: math.unit(220, "lb"),
  7679. name: "Back",
  7680. image: {
  7681. source: "./media/characters/gemini/back.svg"
  7682. }
  7683. },
  7684. kneeling: {
  7685. height: math.unit(6 / 1.5, "feet"),
  7686. weight: math.unit(220, "lb"),
  7687. name: "Kneeling",
  7688. image: {
  7689. source: "./media/characters/gemini/kneeling.svg",
  7690. bottom: 0.02
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(300, "meters"),
  7698. default: true
  7699. },
  7700. {
  7701. name: "Megamacro",
  7702. height: math.unit(6900, "meters")
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7708. {
  7709. anthro: {
  7710. height: math.unit(2.35, "meters"),
  7711. weight: math.unit(73, "kg"),
  7712. name: "Anthro",
  7713. image: {
  7714. source: "./media/characters/alicia/anthro.svg",
  7715. extra: 2571 / 2385,
  7716. bottom: 75 / 2648
  7717. }
  7718. },
  7719. paw: {
  7720. height: math.unit(1.32, "feet"),
  7721. name: "Paw",
  7722. image: {
  7723. source: "./media/characters/alicia/paw.svg"
  7724. }
  7725. },
  7726. feral: {
  7727. height: math.unit(1.69, "meters"),
  7728. weight: math.unit(73, "kg"),
  7729. name: "Feral",
  7730. image: {
  7731. source: "./media/characters/alicia/feral.svg",
  7732. extra: 2123 / 1715,
  7733. bottom: 222 / 2349
  7734. }
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "Normal",
  7740. height: math.unit(2.35, "meters")
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(60, "meters"),
  7745. default: true
  7746. },
  7747. {
  7748. name: "Megamacro",
  7749. height: math.unit(10000, "kilometers")
  7750. },
  7751. ]
  7752. ))
  7753. characterMakers.push(() => makeCharacter(
  7754. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7755. {
  7756. front: {
  7757. height: math.unit(7, "feet"),
  7758. weight: math.unit(250, "lbs"),
  7759. name: "Front",
  7760. image: {
  7761. source: "./media/characters/archy/front.svg"
  7762. }
  7763. }
  7764. },
  7765. [
  7766. {
  7767. name: "Micro",
  7768. height: math.unit(1, "inch")
  7769. },
  7770. {
  7771. name: "Shorty",
  7772. height: math.unit(5, "feet")
  7773. },
  7774. {
  7775. name: "Normal",
  7776. height: math.unit(7, "feet")
  7777. },
  7778. {
  7779. name: "Macro",
  7780. height: math.unit(600, "meters"),
  7781. default: true
  7782. },
  7783. {
  7784. name: "Megamacro",
  7785. height: math.unit(1, "mile")
  7786. },
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7791. {
  7792. front: {
  7793. height: math.unit(1.65, "meters"),
  7794. weight: math.unit(74, "kg"),
  7795. name: "Front",
  7796. image: {
  7797. source: "./media/characters/berri/front.svg",
  7798. extra: 857 / 837,
  7799. bottom: 18 / 877
  7800. }
  7801. },
  7802. bum: {
  7803. height: math.unit(1.46, "feet"),
  7804. name: "Bum",
  7805. image: {
  7806. source: "./media/characters/berri/bum.svg"
  7807. }
  7808. },
  7809. mouth: {
  7810. height: math.unit(0.44, "feet"),
  7811. name: "Mouth",
  7812. image: {
  7813. source: "./media/characters/berri/mouth.svg"
  7814. }
  7815. },
  7816. paw: {
  7817. height: math.unit(0.826, "feet"),
  7818. name: "Paw",
  7819. image: {
  7820. source: "./media/characters/berri/paw.svg"
  7821. }
  7822. },
  7823. },
  7824. [
  7825. {
  7826. name: "Normal",
  7827. height: math.unit(1.65, "meters")
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(60, "m"),
  7832. default: true
  7833. },
  7834. {
  7835. name: "Megamacro",
  7836. height: math.unit(9.213, "km")
  7837. },
  7838. {
  7839. name: "Planet Eater",
  7840. height: math.unit(489, "megameters")
  7841. },
  7842. {
  7843. name: "Teramacro",
  7844. height: math.unit(2471635000000, "meters")
  7845. },
  7846. {
  7847. name: "Examacro",
  7848. height: math.unit(8.0624e+26, "meters")
  7849. }
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(1.72, "meters"),
  7857. weight: math.unit(68, "kg"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/lexi/front.svg"
  7861. }
  7862. }
  7863. },
  7864. [
  7865. {
  7866. name: "Very Smol",
  7867. height: math.unit(10, "mm")
  7868. },
  7869. {
  7870. name: "Micro",
  7871. height: math.unit(6.8, "cm"),
  7872. default: true
  7873. },
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(1.72, "m")
  7877. }
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(1.69, "meters"),
  7885. weight: math.unit(68, "kg"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/martin/front.svg",
  7889. extra: 596 / 581
  7890. }
  7891. }
  7892. },
  7893. [
  7894. {
  7895. name: "Micro",
  7896. height: math.unit(6.85, "cm"),
  7897. default: true
  7898. },
  7899. {
  7900. name: "Normal",
  7901. height: math.unit(1.69, "m")
  7902. }
  7903. ]
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(1.69, "meters"),
  7910. weight: math.unit(68, "kg"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/juno/front.svg"
  7914. }
  7915. }
  7916. },
  7917. [
  7918. {
  7919. name: "Micro",
  7920. height: math.unit(7, "cm")
  7921. },
  7922. {
  7923. name: "Normal",
  7924. height: math.unit(1.89, "m")
  7925. },
  7926. {
  7927. name: "Macro",
  7928. height: math.unit(353, "meters"),
  7929. default: true
  7930. }
  7931. ]
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7935. {
  7936. front: {
  7937. height: math.unit(1.93, "meters"),
  7938. weight: math.unit(83, "kg"),
  7939. name: "Front",
  7940. image: {
  7941. source: "./media/characters/samantha/front.svg"
  7942. }
  7943. },
  7944. frontClothed: {
  7945. height: math.unit(1.93, "meters"),
  7946. weight: math.unit(83, "kg"),
  7947. name: "Front (Clothed)",
  7948. image: {
  7949. source: "./media/characters/samantha/front-clothed.svg"
  7950. }
  7951. },
  7952. back: {
  7953. height: math.unit(1.93, "meters"),
  7954. weight: math.unit(83, "kg"),
  7955. name: "Back",
  7956. image: {
  7957. source: "./media/characters/samantha/back.svg"
  7958. }
  7959. },
  7960. },
  7961. [
  7962. {
  7963. name: "Normal",
  7964. height: math.unit(1.93, "m")
  7965. },
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(74, "meters"),
  7969. default: true
  7970. },
  7971. {
  7972. name: "Macro+",
  7973. height: math.unit(223, "meters"),
  7974. },
  7975. {
  7976. name: "Megamacro",
  7977. height: math.unit(8381, "meters"),
  7978. },
  7979. {
  7980. name: "Megamacro+",
  7981. height: math.unit(12000, "kilometers")
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(1.92, "meters"),
  7990. weight: math.unit(80, "kg"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/dr-clay/front.svg"
  7994. }
  7995. },
  7996. frontClothed: {
  7997. height: math.unit(1.92, "meters"),
  7998. weight: math.unit(80, "kg"),
  7999. name: "Front (Clothed)",
  8000. image: {
  8001. source: "./media/characters/dr-clay/front-clothed.svg"
  8002. }
  8003. }
  8004. },
  8005. [
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(1.92, "m")
  8009. },
  8010. {
  8011. name: "Macro",
  8012. height: math.unit(214, "meters"),
  8013. default: true
  8014. },
  8015. {
  8016. name: "Macro+",
  8017. height: math.unit(12.237, "meters"),
  8018. },
  8019. {
  8020. name: "Megamacro",
  8021. height: math.unit(557, "megameters"),
  8022. },
  8023. {
  8024. name: "Unimaginable",
  8025. height: math.unit(120e9, "lightyears")
  8026. },
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8031. {
  8032. front: {
  8033. height: math.unit(2, "meters"),
  8034. weight: math.unit(80, "kg"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8038. }
  8039. }
  8040. },
  8041. [
  8042. {
  8043. name: "Teramacro",
  8044. height: math.unit(500000, "lightyears"),
  8045. default: true
  8046. },
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8051. {
  8052. crux: {
  8053. height: math.unit(2, "meters"),
  8054. weight: math.unit(150, "kg"),
  8055. name: "Crux",
  8056. image: {
  8057. source: "./media/characters/vemus/crux.svg",
  8058. extra: 1074/936,
  8059. bottom: 23/1097
  8060. }
  8061. },
  8062. skunkTanuki: {
  8063. height: math.unit(2, "meters"),
  8064. weight: math.unit(150, "kg"),
  8065. name: "Skunk-Tanuki",
  8066. image: {
  8067. source: "./media/characters/vemus/skunk-tanuki.svg",
  8068. extra: 926/893,
  8069. bottom: 20/946
  8070. }
  8071. },
  8072. },
  8073. [
  8074. {
  8075. name: "Normal",
  8076. height: math.unit(4, "meters"),
  8077. default: true
  8078. },
  8079. {
  8080. name: "Big",
  8081. height: math.unit(8, "meters")
  8082. },
  8083. {
  8084. name: "Macro",
  8085. height: math.unit(100, "meters")
  8086. },
  8087. {
  8088. name: "Macro+",
  8089. height: math.unit(1500, "meters")
  8090. },
  8091. {
  8092. name: "Stellar",
  8093. height: math.unit(14e8, "meters")
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(2, "meters"),
  8102. weight: math.unit(70, "kg"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/beherit/front.svg",
  8106. extra: 1234/1109,
  8107. bottom: 55/1289
  8108. }
  8109. }
  8110. },
  8111. [
  8112. {
  8113. name: "Normal",
  8114. height: math.unit(6, "feet")
  8115. },
  8116. {
  8117. name: "Lorg",
  8118. height: math.unit(25, "feet"),
  8119. default: true
  8120. },
  8121. {
  8122. name: "Lorger",
  8123. height: math.unit(75, "feet")
  8124. },
  8125. {
  8126. name: "Macro",
  8127. height: math.unit(200, "meters")
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8133. {
  8134. front: {
  8135. height: math.unit(2, "meters"),
  8136. weight: math.unit(150, "kg"),
  8137. name: "Front",
  8138. image: {
  8139. source: "./media/characters/everett/front.svg",
  8140. extra: 1017/866,
  8141. bottom: 86/1103
  8142. }
  8143. },
  8144. paw: {
  8145. height: math.unit(2 / 3.6, "meters"),
  8146. name: "Paw",
  8147. image: {
  8148. source: "./media/characters/everett/paw.svg"
  8149. }
  8150. },
  8151. },
  8152. [
  8153. {
  8154. name: "Normal",
  8155. height: math.unit(15, "feet"),
  8156. default: true
  8157. },
  8158. {
  8159. name: "Lorg",
  8160. height: math.unit(70, "feet"),
  8161. default: true
  8162. },
  8163. {
  8164. name: "Lorger",
  8165. height: math.unit(250, "feet")
  8166. },
  8167. {
  8168. name: "Macro",
  8169. height: math.unit(500, "meters")
  8170. },
  8171. ]
  8172. ))
  8173. characterMakers.push(() => makeCharacter(
  8174. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8175. {
  8176. front: {
  8177. height: math.unit(2, "meters"),
  8178. weight: math.unit(86, "kg"),
  8179. name: "Front",
  8180. image: {
  8181. source: "./media/characters/rose/front.svg",
  8182. extra: 1785/1636,
  8183. bottom: 30/1815
  8184. },
  8185. form: "liom",
  8186. default: true
  8187. },
  8188. frontSporty: {
  8189. height: math.unit(2, "meters"),
  8190. weight: math.unit(86, "kg"),
  8191. name: "Front (Sporty)",
  8192. image: {
  8193. source: "./media/characters/rose/front-sporty.svg",
  8194. extra: 350/335,
  8195. bottom: 10/360
  8196. },
  8197. form: "liom"
  8198. },
  8199. frontAlt: {
  8200. height: math.unit(1.6, "meters"),
  8201. weight: math.unit(86, "kg"),
  8202. name: "Front (Alt)",
  8203. image: {
  8204. source: "./media/characters/rose/front-alt.svg",
  8205. extra: 299/283,
  8206. bottom: 3/302
  8207. },
  8208. form: "liom"
  8209. },
  8210. plush: {
  8211. height: math.unit(2, "meters"),
  8212. weight: math.unit(86/3, "kg"),
  8213. name: "Plush",
  8214. image: {
  8215. source: "./media/characters/rose/plush.svg",
  8216. extra: 361/337,
  8217. bottom: 11/372
  8218. },
  8219. form: "plush",
  8220. default: true
  8221. },
  8222. faeStanding: {
  8223. height: math.unit(10, "cm"),
  8224. weight: math.unit(10, "grams"),
  8225. name: "Standing",
  8226. image: {
  8227. source: "./media/characters/rose/fae-standing.svg",
  8228. extra: 1189/1060,
  8229. bottom: 27/1216
  8230. },
  8231. form: "fae",
  8232. default: true
  8233. },
  8234. faeSitting: {
  8235. height: math.unit(5, "cm"),
  8236. weight: math.unit(10, "grams"),
  8237. name: "Sitting",
  8238. image: {
  8239. source: "./media/characters/rose/fae-sitting.svg",
  8240. extra: 737/577,
  8241. bottom: 356/1093
  8242. },
  8243. form: "fae"
  8244. },
  8245. faePaw: {
  8246. height: math.unit(1.35, "cm"),
  8247. name: "Paw",
  8248. image: {
  8249. source: "./media/characters/rose/fae-paw.svg"
  8250. },
  8251. form: "fae"
  8252. },
  8253. },
  8254. [
  8255. {
  8256. name: "True Micro",
  8257. height: math.unit(9, "cm"),
  8258. form: "liom"
  8259. },
  8260. {
  8261. name: "Micro",
  8262. height: math.unit(16, "cm"),
  8263. form: "liom"
  8264. },
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(1.85, "meters"),
  8268. default: true,
  8269. form: "liom"
  8270. },
  8271. {
  8272. name: "Mini-Macro",
  8273. height: math.unit(5, "meters"),
  8274. form: "liom"
  8275. },
  8276. {
  8277. name: "Macro",
  8278. height: math.unit(15, "meters"),
  8279. form: "liom"
  8280. },
  8281. {
  8282. name: "True Macro",
  8283. height: math.unit(40, "meters"),
  8284. form: "liom"
  8285. },
  8286. {
  8287. name: "City Scale",
  8288. height: math.unit(1, "km"),
  8289. form: "liom"
  8290. },
  8291. {
  8292. name: "Plushie",
  8293. height: math.unit(9, "cm"),
  8294. form: "plush",
  8295. default: true
  8296. },
  8297. {
  8298. name: "Fae",
  8299. height: math.unit(10, "cm"),
  8300. form: "fae",
  8301. default: true
  8302. },
  8303. ],
  8304. {
  8305. "liom": {
  8306. name: "Liom"
  8307. },
  8308. "plush": {
  8309. name: "Plush"
  8310. },
  8311. "fae": {
  8312. name: "Fae Fox",
  8313. default: true
  8314. }
  8315. }
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8319. {
  8320. front: {
  8321. height: math.unit(2, "meters"),
  8322. weight: math.unit(350, "lbs"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/regal/front.svg"
  8326. }
  8327. },
  8328. back: {
  8329. height: math.unit(2, "meters"),
  8330. weight: math.unit(350, "lbs"),
  8331. name: "Back",
  8332. image: {
  8333. source: "./media/characters/regal/back.svg"
  8334. }
  8335. },
  8336. },
  8337. [
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(350, "feet"),
  8341. default: true
  8342. }
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8347. {
  8348. standing: {
  8349. height: math.unit(4 + 11/12, "feet"),
  8350. weight: math.unit(100, "lb"),
  8351. name: "Standing",
  8352. image: {
  8353. source: "./media/characters/opal/standing.svg",
  8354. extra: 1588/1513,
  8355. bottom: 23/1611
  8356. }
  8357. },
  8358. sitting: {
  8359. height: math.unit(2.3, "feet"),
  8360. weight: math.unit(100, "lb"),
  8361. name: "Sitting",
  8362. image: {
  8363. source: "./media/characters/opal/sitting.svg",
  8364. extra: 1031/892,
  8365. bottom: 142/1173
  8366. }
  8367. },
  8368. hand: {
  8369. height: math.unit(0.59, "feet"),
  8370. name: "Hand",
  8371. image: {
  8372. source: "./media/characters/opal/hand.svg"
  8373. }
  8374. },
  8375. foot: {
  8376. height: math.unit(0.61, "feet"),
  8377. name: "Foot",
  8378. image: {
  8379. source: "./media/characters/opal/foot.svg"
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Small",
  8386. height: math.unit(4 + 11 / 12, "feet")
  8387. },
  8388. {
  8389. name: "Normal",
  8390. height: math.unit(20, "feet"),
  8391. default: true
  8392. },
  8393. {
  8394. name: "Macro",
  8395. height: math.unit(120, "feet")
  8396. },
  8397. {
  8398. name: "Megamacro",
  8399. height: math.unit(80, "miles")
  8400. },
  8401. {
  8402. name: "True Size",
  8403. height: math.unit(100000, "lightyears")
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(200, "lbs"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/vector-wuff/front.svg"
  8416. }
  8417. }
  8418. },
  8419. [
  8420. {
  8421. name: "Normal",
  8422. height: math.unit(2.8, "meters")
  8423. },
  8424. {
  8425. name: "Macro",
  8426. height: math.unit(450, "meters"),
  8427. default: true
  8428. },
  8429. {
  8430. name: "Megamacro",
  8431. height: math.unit(15, "kilometers")
  8432. }
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8437. {
  8438. front: {
  8439. height: math.unit(6, "feet"),
  8440. weight: math.unit(256, "lbs"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/dannik/front.svg"
  8444. }
  8445. }
  8446. },
  8447. [
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(69.57, "meters"),
  8451. default: true
  8452. },
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8457. {
  8458. front: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(120, "lbs"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/azura-saharah/front.svg"
  8464. }
  8465. },
  8466. back: {
  8467. height: math.unit(6, "feet"),
  8468. weight: math.unit(120, "lbs"),
  8469. name: "Back",
  8470. image: {
  8471. source: "./media/characters/azura-saharah/back.svg"
  8472. }
  8473. },
  8474. },
  8475. [
  8476. {
  8477. name: "Macro",
  8478. height: math.unit(100, "feet"),
  8479. default: true
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8485. {
  8486. side: {
  8487. height: math.unit(5 + 4 / 12, "feet"),
  8488. weight: math.unit(163, "lbs"),
  8489. name: "Side",
  8490. image: {
  8491. source: "./media/characters/kennedy/side.svg"
  8492. }
  8493. }
  8494. },
  8495. [
  8496. {
  8497. name: "Standard Doggo",
  8498. height: math.unit(5 + 4 / 12, "feet")
  8499. },
  8500. {
  8501. name: "Big Doggo",
  8502. height: math.unit(25 + 3 / 12, "feet"),
  8503. default: true
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8509. {
  8510. front: {
  8511. height: math.unit(5 + 5/12, "feet"),
  8512. weight: math.unit(100, "lbs"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/odios-de-lunar/front.svg",
  8516. extra: 1468/1323,
  8517. bottom: 22/1490
  8518. }
  8519. }
  8520. },
  8521. [
  8522. {
  8523. name: "Micro",
  8524. height: math.unit(3, "inches")
  8525. },
  8526. {
  8527. name: "Normal",
  8528. height: math.unit(5.5, "feet"),
  8529. default: true
  8530. },
  8531. {
  8532. name: "Macro",
  8533. height: math.unit(100, "feet")
  8534. },
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8539. {
  8540. back: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(220, "lbs"),
  8543. name: "Back",
  8544. image: {
  8545. source: "./media/characters/mandake/back.svg"
  8546. }
  8547. }
  8548. },
  8549. [
  8550. {
  8551. name: "Normal",
  8552. height: math.unit(7, "feet"),
  8553. default: true
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(78, "feet")
  8558. },
  8559. {
  8560. name: "Macro+",
  8561. height: math.unit(300, "meters")
  8562. },
  8563. {
  8564. name: "Macro++",
  8565. height: math.unit(2400, "feet")
  8566. },
  8567. {
  8568. name: "Megamacro",
  8569. height: math.unit(5167, "meters")
  8570. },
  8571. {
  8572. name: "Gigamacro",
  8573. height: math.unit(41769, "miles")
  8574. },
  8575. ]
  8576. ))
  8577. characterMakers.push(() => makeCharacter(
  8578. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8579. {
  8580. front: {
  8581. height: math.unit(6, "feet"),
  8582. weight: math.unit(120, "lbs"),
  8583. name: "Front",
  8584. image: {
  8585. source: "./media/characters/yozey/front.svg"
  8586. }
  8587. },
  8588. frontAlt: {
  8589. height: math.unit(6, "feet"),
  8590. weight: math.unit(120, "lbs"),
  8591. name: "Front (Alt)",
  8592. image: {
  8593. source: "./media/characters/yozey/front-alt.svg"
  8594. }
  8595. },
  8596. side: {
  8597. height: math.unit(6, "feet"),
  8598. weight: math.unit(120, "lbs"),
  8599. name: "Side",
  8600. image: {
  8601. source: "./media/characters/yozey/side.svg"
  8602. }
  8603. },
  8604. },
  8605. [
  8606. {
  8607. name: "Micro",
  8608. height: math.unit(3, "inches"),
  8609. default: true
  8610. },
  8611. {
  8612. name: "Normal",
  8613. height: math.unit(6, "feet")
  8614. }
  8615. ]
  8616. ))
  8617. characterMakers.push(() => makeCharacter(
  8618. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8619. {
  8620. front: {
  8621. height: math.unit(6, "feet"),
  8622. weight: math.unit(103, "lbs"),
  8623. name: "Front",
  8624. image: {
  8625. source: "./media/characters/valeska-voss/front.svg"
  8626. }
  8627. }
  8628. },
  8629. [
  8630. {
  8631. name: "Mini-Sized Sub",
  8632. height: math.unit(3.1, "inches")
  8633. },
  8634. {
  8635. name: "Mid-Sized Sub",
  8636. height: math.unit(6.2, "inches")
  8637. },
  8638. {
  8639. name: "Full-Sized Sub",
  8640. height: math.unit(9.3, "inches")
  8641. },
  8642. {
  8643. name: "Normal",
  8644. height: math.unit(5 + 2 / 12, "foot"),
  8645. default: true
  8646. },
  8647. ]
  8648. ))
  8649. characterMakers.push(() => makeCharacter(
  8650. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8651. {
  8652. front: {
  8653. height: math.unit(6, "feet"),
  8654. weight: math.unit(160, "lbs"),
  8655. name: "Front",
  8656. image: {
  8657. source: "./media/characters/gene-zeta/front.svg",
  8658. extra: 3006 / 2826,
  8659. bottom: 182 / 3188
  8660. }
  8661. }
  8662. },
  8663. [
  8664. {
  8665. name: "Micro",
  8666. height: math.unit(6, "inches")
  8667. },
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(5 + 11 / 12, "foot"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Macro",
  8675. height: math.unit(140, "feet")
  8676. },
  8677. {
  8678. name: "Supercharged",
  8679. height: math.unit(2500, "feet")
  8680. },
  8681. ]
  8682. ))
  8683. characterMakers.push(() => makeCharacter(
  8684. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8685. {
  8686. front: {
  8687. height: math.unit(6, "feet"),
  8688. weight: math.unit(350, "lbs"),
  8689. name: "Front",
  8690. image: {
  8691. source: "./media/characters/razinox/front.svg",
  8692. extra: 1686 / 1548,
  8693. bottom: 28.2 / 1868
  8694. }
  8695. },
  8696. back: {
  8697. height: math.unit(6, "feet"),
  8698. weight: math.unit(350, "lbs"),
  8699. name: "Back",
  8700. image: {
  8701. source: "./media/characters/razinox/back.svg",
  8702. extra: 1660 / 1590,
  8703. bottom: 15 / 1665
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(10 + 8 / 12, "foot")
  8711. },
  8712. {
  8713. name: "Minimacro",
  8714. height: math.unit(15, "foot")
  8715. },
  8716. {
  8717. name: "Macro",
  8718. height: math.unit(60, "foot"),
  8719. default: true
  8720. },
  8721. {
  8722. name: "Megamacro",
  8723. height: math.unit(5, "miles")
  8724. },
  8725. {
  8726. name: "Gigamacro",
  8727. height: math.unit(6000, "miles")
  8728. },
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(6, "feet"),
  8736. weight: math.unit(150, "lbs"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/cobalt/front.svg"
  8740. }
  8741. }
  8742. },
  8743. [
  8744. {
  8745. name: "Normal",
  8746. height: math.unit(8 + 1 / 12, "foot")
  8747. },
  8748. {
  8749. name: "Macro",
  8750. height: math.unit(111, "foot"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Supracosmic",
  8755. height: math.unit(1e42, "feet")
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(5, "inches"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/amanda/front.svg",
  8767. extra: 926/791,
  8768. bottom: 38/964
  8769. }
  8770. },
  8771. back: {
  8772. height: math.unit(5, "inches"),
  8773. name: "Back",
  8774. image: {
  8775. source: "./media/characters/amanda/back.svg",
  8776. extra: 909/805,
  8777. bottom: 43/952
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Micro",
  8784. height: math.unit(5, "inches"),
  8785. default: true
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(2.75, "meters"),
  8794. weight: math.unit(1200, "lb"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/teal/front.svg",
  8798. extra: 2463 / 2320,
  8799. bottom: 166 / 2629
  8800. }
  8801. },
  8802. back: {
  8803. height: math.unit(2.75, "meters"),
  8804. weight: math.unit(1200, "lb"),
  8805. name: "Back",
  8806. image: {
  8807. source: "./media/characters/teal/back.svg",
  8808. extra: 2580 / 2489,
  8809. bottom: 151 / 2731
  8810. }
  8811. },
  8812. sitting: {
  8813. height: math.unit(1.9, "meters"),
  8814. weight: math.unit(1200, "lb"),
  8815. name: "Sitting",
  8816. image: {
  8817. source: "./media/characters/teal/sitting.svg",
  8818. extra: 623 / 590,
  8819. bottom: 121 / 744
  8820. }
  8821. },
  8822. standing: {
  8823. height: math.unit(2.75, "meters"),
  8824. weight: math.unit(1200, "lb"),
  8825. name: "Standing",
  8826. image: {
  8827. source: "./media/characters/teal/standing.svg",
  8828. extra: 923 / 893,
  8829. bottom: 60 / 983
  8830. }
  8831. },
  8832. stretching: {
  8833. height: math.unit(3.65, "meters"),
  8834. weight: math.unit(1200, "lb"),
  8835. name: "Stretching",
  8836. image: {
  8837. source: "./media/characters/teal/stretching.svg",
  8838. extra: 1276 / 1244,
  8839. bottom: 0 / 1276
  8840. }
  8841. },
  8842. legged: {
  8843. height: math.unit(1.3, "meters"),
  8844. weight: math.unit(100, "lb"),
  8845. name: "Legged",
  8846. image: {
  8847. source: "./media/characters/teal/legged.svg",
  8848. extra: 462 / 437,
  8849. bottom: 24 / 486
  8850. }
  8851. },
  8852. naga: {
  8853. height: math.unit(5.4, "meters"),
  8854. weight: math.unit(4000, "lb"),
  8855. name: "Naga",
  8856. image: {
  8857. source: "./media/characters/teal/naga.svg",
  8858. extra: 1902 / 1858,
  8859. bottom: 0 / 1902
  8860. }
  8861. },
  8862. hand: {
  8863. height: math.unit(0.52, "meters"),
  8864. name: "Hand",
  8865. image: {
  8866. source: "./media/characters/teal/hand.svg"
  8867. }
  8868. },
  8869. maw: {
  8870. height: math.unit(0.43, "meters"),
  8871. name: "Maw",
  8872. image: {
  8873. source: "./media/characters/teal/maw.svg"
  8874. }
  8875. },
  8876. slit: {
  8877. height: math.unit(0.25, "meters"),
  8878. name: "Slit",
  8879. image: {
  8880. source: "./media/characters/teal/slit.svg"
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(2.75, "meters"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Macro",
  8892. height: math.unit(300, "feet")
  8893. },
  8894. {
  8895. name: "Macro+",
  8896. height: math.unit(2000, "feet")
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8902. {
  8903. frontCat: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(180, "lbs"),
  8906. name: "Front (Cat)",
  8907. image: {
  8908. source: "./media/characters/ravin-amulet/front-cat.svg"
  8909. }
  8910. },
  8911. frontCatAlt: {
  8912. height: math.unit(6, "feet"),
  8913. weight: math.unit(180, "lbs"),
  8914. name: "Front (Alt, Cat)",
  8915. image: {
  8916. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8917. }
  8918. },
  8919. frontWerewolf: {
  8920. height: math.unit(6 * 1.2, "feet"),
  8921. weight: math.unit(225, "lbs"),
  8922. name: "Front (Werewolf)",
  8923. image: {
  8924. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8925. }
  8926. },
  8927. backWerewolf: {
  8928. height: math.unit(6 * 1.2, "feet"),
  8929. weight: math.unit(225, "lbs"),
  8930. name: "Back (Werewolf)",
  8931. image: {
  8932. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8933. }
  8934. },
  8935. },
  8936. [
  8937. {
  8938. name: "Nano",
  8939. height: math.unit(1, "micrometer")
  8940. },
  8941. {
  8942. name: "Micro",
  8943. height: math.unit(1, "inch")
  8944. },
  8945. {
  8946. name: "Normal",
  8947. height: math.unit(6, "feet"),
  8948. default: true
  8949. },
  8950. {
  8951. name: "Macro",
  8952. height: math.unit(60, "feet")
  8953. }
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(6, "feet"),
  8961. weight: math.unit(165, "lbs"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/fluoresce/front.svg"
  8965. }
  8966. }
  8967. },
  8968. [
  8969. {
  8970. name: "Micro",
  8971. height: math.unit(6, "cm")
  8972. },
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(5 + 7 / 12, "feet"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(56, "feet")
  8981. },
  8982. {
  8983. name: "Megamacro",
  8984. height: math.unit(1.9, "miles")
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(9 + 6 / 12, "feet"),
  8993. weight: math.unit(523, "lbs"),
  8994. name: "Side",
  8995. image: {
  8996. source: "./media/characters/aurora/side.svg",
  8997. extra: 474/393,
  8998. bottom: 5/479
  8999. }
  9000. }
  9001. },
  9002. [
  9003. {
  9004. name: "Normal",
  9005. height: math.unit(9 + 6 / 12, "feet")
  9006. },
  9007. {
  9008. name: "Macro",
  9009. height: math.unit(96, "feet"),
  9010. default: true
  9011. },
  9012. {
  9013. name: "Macro+",
  9014. height: math.unit(243, "feet")
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9020. {
  9021. front: {
  9022. height: math.unit(194, "cm"),
  9023. weight: math.unit(90, "kg"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/ranek/front.svg",
  9027. extra: 1862/1791,
  9028. bottom: 80/1942
  9029. }
  9030. },
  9031. back: {
  9032. height: math.unit(194, "cm"),
  9033. weight: math.unit(90, "kg"),
  9034. name: "Back",
  9035. image: {
  9036. source: "./media/characters/ranek/back.svg",
  9037. extra: 1853/1787,
  9038. bottom: 74/1927
  9039. }
  9040. },
  9041. feral: {
  9042. height: math.unit(30, "cm"),
  9043. weight: math.unit(1.6, "lbs"),
  9044. name: "Feral",
  9045. image: {
  9046. source: "./media/characters/ranek/feral.svg",
  9047. extra: 990/631,
  9048. bottom: 29/1019
  9049. }
  9050. },
  9051. },
  9052. [
  9053. {
  9054. name: "Normal",
  9055. height: math.unit(194, "cm"),
  9056. default: true
  9057. },
  9058. {
  9059. name: "Macro",
  9060. height: math.unit(100, "meters")
  9061. },
  9062. ]
  9063. ))
  9064. characterMakers.push(() => makeCharacter(
  9065. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9066. {
  9067. front: {
  9068. height: math.unit(5 + 6 / 12, "feet"),
  9069. weight: math.unit(153, "lbs"),
  9070. name: "Front",
  9071. image: {
  9072. source: "./media/characters/andrew-cooper/front.svg"
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Nano",
  9079. height: math.unit(1, "mm")
  9080. },
  9081. {
  9082. name: "Micro",
  9083. height: math.unit(2, "inches")
  9084. },
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(5 + 6 / 12, "feet"),
  9088. default: true
  9089. }
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9094. {
  9095. front: {
  9096. height: math.unit(6, "feet"),
  9097. weight: math.unit(180, "lbs"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/akane-sato/front.svg",
  9101. extra: 1219 / 1140
  9102. }
  9103. },
  9104. back: {
  9105. height: math.unit(6, "feet"),
  9106. weight: math.unit(180, "lbs"),
  9107. name: "Back",
  9108. image: {
  9109. source: "./media/characters/akane-sato/back.svg",
  9110. extra: 1219 / 1170
  9111. }
  9112. },
  9113. },
  9114. [
  9115. {
  9116. name: "Normal",
  9117. height: math.unit(2.5, "meters")
  9118. },
  9119. {
  9120. name: "Macro",
  9121. height: math.unit(250, "meters"),
  9122. default: true
  9123. },
  9124. {
  9125. name: "Megamacro",
  9126. height: math.unit(25, "km")
  9127. },
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9132. {
  9133. front: {
  9134. height: math.unit(6, "feet"),
  9135. weight: math.unit(65, "kg"),
  9136. name: "Front",
  9137. image: {
  9138. source: "./media/characters/rook/front.svg",
  9139. extra: 960 / 950
  9140. }
  9141. }
  9142. },
  9143. [
  9144. {
  9145. name: "Normal",
  9146. height: math.unit(8.8, "feet")
  9147. },
  9148. {
  9149. name: "Macro",
  9150. height: math.unit(88, "feet"),
  9151. default: true
  9152. },
  9153. {
  9154. name: "Megamacro",
  9155. height: math.unit(8, "miles")
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(12 + 2 / 12, "feet"),
  9164. weight: math.unit(808, "lbs"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/prodigy/front.svg"
  9168. }
  9169. }
  9170. },
  9171. [
  9172. {
  9173. name: "Normal",
  9174. height: math.unit(12 + 2 / 12, "feet"),
  9175. default: true
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(143, "feet")
  9180. },
  9181. {
  9182. name: "Macro+",
  9183. height: math.unit(400, "feet")
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9189. {
  9190. front: {
  9191. height: math.unit(6, "feet"),
  9192. weight: math.unit(225, "lbs"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/daniel/front.svg"
  9196. }
  9197. },
  9198. leaning: {
  9199. height: math.unit(6, "feet"),
  9200. weight: math.unit(225, "lbs"),
  9201. name: "Leaning",
  9202. image: {
  9203. source: "./media/characters/daniel/leaning.svg"
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Macro",
  9210. height: math.unit(1000, "feet"),
  9211. default: true
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(6, "feet"),
  9220. weight: math.unit(88, "lbs"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/chiros/front.svg",
  9224. extra: 306 / 226
  9225. }
  9226. },
  9227. side: {
  9228. height: math.unit(6, "feet"),
  9229. weight: math.unit(88, "lbs"),
  9230. name: "Side",
  9231. image: {
  9232. source: "./media/characters/chiros/side.svg",
  9233. extra: 306 / 226
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Normal",
  9240. height: math.unit(6, "cm"),
  9241. default: true
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9247. {
  9248. front: {
  9249. height: math.unit(6, "feet"),
  9250. weight: math.unit(100, "lbs"),
  9251. name: "Front",
  9252. image: {
  9253. source: "./media/characters/selka/front.svg",
  9254. extra: 947 / 887
  9255. }
  9256. }
  9257. },
  9258. [
  9259. {
  9260. name: "Normal",
  9261. height: math.unit(5, "cm"),
  9262. default: true
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(8 + 3 / 12, "feet"),
  9271. weight: math.unit(424, "lbs"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/verin/front.svg",
  9275. extra: 1845 / 1550
  9276. }
  9277. },
  9278. frontArmored: {
  9279. height: math.unit(8 + 3 / 12, "feet"),
  9280. weight: math.unit(424, "lbs"),
  9281. name: "Front (Armored)",
  9282. image: {
  9283. source: "./media/characters/verin/front-armor.svg",
  9284. extra: 1845 / 1550,
  9285. bottom: 0.01
  9286. }
  9287. },
  9288. back: {
  9289. height: math.unit(8 + 3 / 12, "feet"),
  9290. weight: math.unit(424, "lbs"),
  9291. name: "Back",
  9292. image: {
  9293. source: "./media/characters/verin/back.svg",
  9294. bottom: 0.1,
  9295. extra: 1
  9296. }
  9297. },
  9298. foot: {
  9299. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9300. name: "Foot",
  9301. image: {
  9302. source: "./media/characters/verin/foot.svg"
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(8 + 3 / 12, "feet")
  9310. },
  9311. {
  9312. name: "Minimacro",
  9313. height: math.unit(21, "feet"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Macro",
  9318. height: math.unit(626, "feet")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(2.718, "meters"),
  9327. weight: math.unit(150, "lbs"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/sovrim-terraquian/front.svg",
  9331. extra: 1752/1689,
  9332. bottom: 36/1788
  9333. }
  9334. },
  9335. back: {
  9336. height: math.unit(2.718, "meters"),
  9337. weight: math.unit(150, "lbs"),
  9338. name: "Back",
  9339. image: {
  9340. source: "./media/characters/sovrim-terraquian/back.svg",
  9341. extra: 1698/1657,
  9342. bottom: 58/1756
  9343. }
  9344. },
  9345. tongue: {
  9346. height: math.unit(2.865, "feet"),
  9347. name: "Tongue",
  9348. image: {
  9349. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9350. }
  9351. },
  9352. hand: {
  9353. height: math.unit(1.61, "feet"),
  9354. name: "Hand",
  9355. image: {
  9356. source: "./media/characters/sovrim-terraquian/hand.svg"
  9357. }
  9358. },
  9359. foot: {
  9360. height: math.unit(1.05, "feet"),
  9361. name: "Foot",
  9362. image: {
  9363. source: "./media/characters/sovrim-terraquian/foot.svg"
  9364. }
  9365. },
  9366. footAlt: {
  9367. height: math.unit(0.88, "feet"),
  9368. name: "Foot (Alt)",
  9369. image: {
  9370. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(2, "inches")
  9378. },
  9379. {
  9380. name: "Small",
  9381. height: math.unit(1, "meter")
  9382. },
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(Math.E, "meters"),
  9386. default: true
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(20, "meters")
  9391. },
  9392. {
  9393. name: "Macro+",
  9394. height: math.unit(400, "meters")
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(7, "feet"),
  9403. weight: math.unit(489, "lbs"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/reece-silvermane/front.svg",
  9407. bottom: 0.02,
  9408. extra: 1
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Macro",
  9415. height: math.unit(1.5, "miles"),
  9416. default: true
  9417. },
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9422. {
  9423. front: {
  9424. height: math.unit(6, "feet"),
  9425. weight: math.unit(78, "kg"),
  9426. name: "Front",
  9427. image: {
  9428. source: "./media/characters/kane/front.svg",
  9429. extra: 978 / 899
  9430. }
  9431. },
  9432. back: {
  9433. height: math.unit(6, "feet"),
  9434. weight: math.unit(78, "kg"),
  9435. name: "Back",
  9436. image: {
  9437. source: "./media/characters/kane/back.svg",
  9438. extra: 1966/1800,
  9439. bottom: 0/1966
  9440. }
  9441. },
  9442. head: {
  9443. height: math.unit(1.4, "feet"),
  9444. name: "Head",
  9445. image: {
  9446. source: "./media/characters/kane/head.svg"
  9447. }
  9448. },
  9449. },
  9450. [
  9451. {
  9452. name: "Normal",
  9453. height: math.unit(2.1, "m"),
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(1, "km"),
  9458. default: true
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9464. {
  9465. front: {
  9466. height: math.unit(6, "feet"),
  9467. weight: math.unit(200, "kg"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/tegon/front.svg",
  9471. bottom: 0.01,
  9472. extra: 1
  9473. }
  9474. },
  9475. },
  9476. [
  9477. {
  9478. name: "Micro",
  9479. height: math.unit(1, "inch")
  9480. },
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(6 + 3 / 12, "feet"),
  9484. default: true
  9485. },
  9486. {
  9487. name: "Macro",
  9488. height: math.unit(300, "feet")
  9489. },
  9490. {
  9491. name: "Megamacro",
  9492. height: math.unit(69, "miles")
  9493. },
  9494. ]
  9495. ))
  9496. characterMakers.push(() => makeCharacter(
  9497. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9498. {
  9499. side: {
  9500. height: math.unit(6, "feet"),
  9501. weight: math.unit(2304, "lbs"),
  9502. name: "Side",
  9503. image: {
  9504. source: "./media/characters/arcturax/side.svg",
  9505. extra: 790 / 376,
  9506. bottom: 0.01
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Micro",
  9513. height: math.unit(2, "inch")
  9514. },
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(6, "feet")
  9518. },
  9519. {
  9520. name: "Macro",
  9521. height: math.unit(39, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Megamacro",
  9526. height: math.unit(7, "miles")
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(50, "lbs"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/sentri/front.svg",
  9539. extra: 1750 / 1570,
  9540. bottom: 0.025
  9541. }
  9542. },
  9543. frontAlt: {
  9544. height: math.unit(6, "feet"),
  9545. weight: math.unit(50, "lbs"),
  9546. name: "Front (Alt)",
  9547. image: {
  9548. source: "./media/characters/sentri/front-alt.svg",
  9549. extra: 1750 / 1570,
  9550. bottom: 0.025
  9551. }
  9552. },
  9553. },
  9554. [
  9555. {
  9556. name: "Normal",
  9557. height: math.unit(15, "feet"),
  9558. default: true
  9559. },
  9560. {
  9561. name: "Macro",
  9562. height: math.unit(2500, "feet")
  9563. }
  9564. ]
  9565. ))
  9566. characterMakers.push(() => makeCharacter(
  9567. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9568. {
  9569. front: {
  9570. height: math.unit(5 + 8 / 12, "feet"),
  9571. weight: math.unit(130, "lbs"),
  9572. name: "Front",
  9573. image: {
  9574. source: "./media/characters/corvin/front.svg",
  9575. extra: 1803 / 1629
  9576. }
  9577. },
  9578. frontShirt: {
  9579. height: math.unit(5 + 8 / 12, "feet"),
  9580. weight: math.unit(130, "lbs"),
  9581. name: "Front (Shirt)",
  9582. image: {
  9583. source: "./media/characters/corvin/front-shirt.svg",
  9584. extra: 1803 / 1629
  9585. }
  9586. },
  9587. frontPoncho: {
  9588. height: math.unit(5 + 8 / 12, "feet"),
  9589. weight: math.unit(130, "lbs"),
  9590. name: "Front (Poncho)",
  9591. image: {
  9592. source: "./media/characters/corvin/front-poncho.svg",
  9593. extra: 1803 / 1629
  9594. }
  9595. },
  9596. side: {
  9597. height: math.unit(5 + 8 / 12, "feet"),
  9598. weight: math.unit(130, "lbs"),
  9599. name: "Side",
  9600. image: {
  9601. source: "./media/characters/corvin/side.svg",
  9602. extra: 1012 / 945
  9603. }
  9604. },
  9605. back: {
  9606. height: math.unit(5 + 8 / 12, "feet"),
  9607. weight: math.unit(130, "lbs"),
  9608. name: "Back",
  9609. image: {
  9610. source: "./media/characters/corvin/back.svg",
  9611. extra: 1803 / 1629
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Micro",
  9618. height: math.unit(3, "inches")
  9619. },
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(5 + 8 / 12, "feet")
  9623. },
  9624. {
  9625. name: "Macro",
  9626. height: math.unit(300, "feet"),
  9627. default: true
  9628. },
  9629. {
  9630. name: "Megamacro",
  9631. height: math.unit(500, "miles")
  9632. }
  9633. ]
  9634. ))
  9635. characterMakers.push(() => makeCharacter(
  9636. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9637. {
  9638. front: {
  9639. height: math.unit(6, "feet"),
  9640. weight: math.unit(135, "lbs"),
  9641. name: "Front",
  9642. image: {
  9643. source: "./media/characters/q/front.svg",
  9644. extra: 854 / 752,
  9645. bottom: 0.005
  9646. }
  9647. },
  9648. back: {
  9649. height: math.unit(6, "feet"),
  9650. weight: math.unit(130, "lbs"),
  9651. name: "Back",
  9652. image: {
  9653. source: "./media/characters/q/back.svg",
  9654. extra: 854 / 752
  9655. }
  9656. },
  9657. },
  9658. [
  9659. {
  9660. name: "Macro",
  9661. height: math.unit(90, "feet"),
  9662. default: true
  9663. },
  9664. {
  9665. name: "Extra Macro",
  9666. height: math.unit(300, "feet"),
  9667. },
  9668. {
  9669. name: "BIG WALF",
  9670. height: math.unit(750, "feet"),
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(3, "feet"),
  9679. weight: math.unit(28, "lbs"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/citrine/front.svg"
  9683. }
  9684. }
  9685. },
  9686. [
  9687. {
  9688. name: "Normal",
  9689. height: math.unit(3, "feet"),
  9690. default: true
  9691. }
  9692. ]
  9693. ))
  9694. characterMakers.push(() => makeCharacter(
  9695. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9696. {
  9697. front: {
  9698. height: math.unit(14, "feet"),
  9699. weight: math.unit(1450, "kg"),
  9700. preyCapacity: math.unit(15, "people"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/aura-starwind/front.svg",
  9704. extra: 1440/1327,
  9705. bottom: 11/1451
  9706. }
  9707. },
  9708. side: {
  9709. height: math.unit(14, "feet"),
  9710. weight: math.unit(1450, "kg"),
  9711. preyCapacity: math.unit(15, "people"),
  9712. name: "Side",
  9713. image: {
  9714. source: "./media/characters/aura-starwind/side.svg",
  9715. extra: 1654 / 1497
  9716. }
  9717. },
  9718. taur: {
  9719. height: math.unit(18, "feet"),
  9720. weight: math.unit(5500, "kg"),
  9721. preyCapacity: math.unit(50, "people"),
  9722. name: "Taur",
  9723. image: {
  9724. source: "./media/characters/aura-starwind/taur.svg",
  9725. extra: 1760 / 1650
  9726. }
  9727. },
  9728. feral: {
  9729. height: math.unit(46, "feet"),
  9730. weight: math.unit(25000, "kg"),
  9731. preyCapacity: math.unit(120, "people"),
  9732. name: "Feral",
  9733. image: {
  9734. source: "./media/characters/aura-starwind/feral.svg"
  9735. }
  9736. },
  9737. },
  9738. [
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(14, "feet"),
  9742. default: true
  9743. },
  9744. {
  9745. name: "Macro",
  9746. height: math.unit(50, "meters")
  9747. },
  9748. {
  9749. name: "Megamacro",
  9750. height: math.unit(5000, "meters")
  9751. },
  9752. {
  9753. name: "Gigamacro",
  9754. height: math.unit(100000, "kilometers")
  9755. },
  9756. ]
  9757. ))
  9758. characterMakers.push(() => makeCharacter(
  9759. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9760. {
  9761. front: {
  9762. height: math.unit(2 + 7 / 12, "feet"),
  9763. weight: math.unit(32, "lbs"),
  9764. name: "Front",
  9765. image: {
  9766. source: "./media/characters/rivet/front.svg",
  9767. extra: 1716 / 1658,
  9768. bottom: 0.03
  9769. }
  9770. },
  9771. foot: {
  9772. height: math.unit(0.551, "feet"),
  9773. name: "Rivet's Foot",
  9774. image: {
  9775. source: "./media/characters/rivet/foot.svg"
  9776. },
  9777. rename: true
  9778. }
  9779. },
  9780. [
  9781. {
  9782. name: "Micro",
  9783. height: math.unit(1.5, "inches"),
  9784. },
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(2 + 7 / 12, "feet"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(85, "feet")
  9793. },
  9794. {
  9795. name: "Megamacro",
  9796. height: math.unit(2.2, "km")
  9797. }
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9802. {
  9803. front: {
  9804. height: math.unit(5 + 9 / 12, "feet"),
  9805. weight: math.unit(150, "lbs"),
  9806. name: "Front",
  9807. image: {
  9808. source: "./media/characters/coffee/front.svg",
  9809. extra: 946/880,
  9810. bottom: 66/1012
  9811. }
  9812. },
  9813. foot: {
  9814. height: math.unit(1.29, "feet"),
  9815. name: "Foot",
  9816. image: {
  9817. source: "./media/characters/coffee/foot.svg"
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Micro",
  9824. height: math.unit(2, "inches"),
  9825. },
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(5 + 9 / 12, "feet"),
  9829. default: true
  9830. },
  9831. {
  9832. name: "Macro",
  9833. height: math.unit(800, "feet")
  9834. },
  9835. {
  9836. name: "Megamacro",
  9837. height: math.unit(25, "miles")
  9838. }
  9839. ]
  9840. ))
  9841. characterMakers.push(() => makeCharacter(
  9842. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9843. {
  9844. front: {
  9845. height: math.unit(6, "feet"),
  9846. weight: math.unit(200, "lbs"),
  9847. name: "Front",
  9848. image: {
  9849. source: "./media/characters/chari-gal/front.svg",
  9850. extra: 735/649,
  9851. bottom: 55/790
  9852. },
  9853. form: "normal",
  9854. default: true
  9855. },
  9856. back: {
  9857. height: math.unit(6, "feet"),
  9858. weight: math.unit(200, "lb"),
  9859. name: "Back",
  9860. image: {
  9861. source: "./media/characters/chari-gal/back.svg",
  9862. extra: 762/666,
  9863. bottom: 31/793
  9864. },
  9865. form: "normal"
  9866. },
  9867. mouth: {
  9868. height: math.unit(1.35, "feet"),
  9869. name: "Mouth",
  9870. image: {
  9871. source: "./media/characters/chari-gal/mouth.svg"
  9872. },
  9873. form: "normal"
  9874. },
  9875. gigantamax: {
  9876. height: math.unit(6 * 16, "feet"),
  9877. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9878. name: "Gigantamax",
  9879. image: {
  9880. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9881. extra: 1507/1149,
  9882. bottom: 254/1761
  9883. },
  9884. form: "gigantamax",
  9885. default: true
  9886. },
  9887. },
  9888. [
  9889. {
  9890. name: "Normal",
  9891. height: math.unit(5 + 7 / 12, "feet"),
  9892. form: "normal",
  9893. },
  9894. {
  9895. name: "Macro",
  9896. height: math.unit(200, "feet"),
  9897. default: true,
  9898. form: "normal"
  9899. },
  9900. {
  9901. name: "Normal",
  9902. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9903. form: "gigantamax",
  9904. },
  9905. {
  9906. name: "Macro",
  9907. height: math.unit(16 * 200, "feet"),
  9908. default: true,
  9909. form: "gigantamax"
  9910. },
  9911. ],
  9912. {
  9913. "normal": {
  9914. name: "Normal",
  9915. default: true
  9916. },
  9917. "gigantamax": {
  9918. name: "Gigantamax",
  9919. },
  9920. }
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9924. {
  9925. front: {
  9926. height: math.unit(6, "feet"),
  9927. weight: math.unit(150, "lbs"),
  9928. name: "Front",
  9929. image: {
  9930. source: "./media/characters/nova/front.svg",
  9931. extra: 5000 / 4722,
  9932. bottom: 0.02
  9933. }
  9934. }
  9935. },
  9936. [
  9937. {
  9938. name: "Micro-",
  9939. height: math.unit(0.8, "inches")
  9940. },
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(2, "inches"),
  9944. default: true
  9945. },
  9946. ]
  9947. ))
  9948. characterMakers.push(() => makeCharacter(
  9949. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9950. {
  9951. koboldFront: {
  9952. height: math.unit(3 + 1 / 12, "feet"),
  9953. weight: math.unit(21.7, "lbs"),
  9954. name: "Front",
  9955. image: {
  9956. source: "./media/characters/argent/kobold-front.svg",
  9957. extra: 1471 / 1331,
  9958. bottom: 100.8 / 1575.5
  9959. },
  9960. form: "kobold",
  9961. default: true
  9962. },
  9963. dragonFront: {
  9964. height: math.unit(75, "inches"),
  9965. name: "Front",
  9966. image: {
  9967. source: "./media/characters/argent/dragon-front.svg",
  9968. extra: 1389/1248,
  9969. bottom: 54/1443
  9970. },
  9971. form: "dragon",
  9972. },
  9973. dragonBack: {
  9974. height: math.unit(75, "inches"),
  9975. name: "Back",
  9976. image: {
  9977. source: "./media/characters/argent/dragon-back.svg",
  9978. extra: 1399/1271,
  9979. bottom: 23/1422
  9980. },
  9981. form: "dragon",
  9982. },
  9983. dragonDressed: {
  9984. height: math.unit(75, "inches"),
  9985. name: "Dressed",
  9986. image: {
  9987. source: "./media/characters/argent/dragon-dressed.svg",
  9988. extra: 1350/1215,
  9989. bottom: 26/1376
  9990. },
  9991. form: "dragon"
  9992. },
  9993. dragonHead: {
  9994. height: math.unit(23.5, "inches"),
  9995. name: "Head",
  9996. image: {
  9997. source: "./media/characters/argent/dragon-head.svg"
  9998. },
  9999. form: "dragon",
  10000. },
  10001. },
  10002. [
  10003. {
  10004. name: "Micro",
  10005. height: math.unit(2, "inches"),
  10006. form: "kobold",
  10007. },
  10008. {
  10009. name: "Normal",
  10010. height: math.unit(3 + 1 / 12, "feet"),
  10011. form: "kobold",
  10012. default: true
  10013. },
  10014. {
  10015. name: "Macro",
  10016. height: math.unit(120, "feet"),
  10017. form: "kobold",
  10018. },
  10019. {
  10020. name: "Speck",
  10021. height: math.unit(1, "mm"),
  10022. form: "dragon",
  10023. },
  10024. {
  10025. name: "Tiny",
  10026. height: math.unit(1, "cm"),
  10027. form: "dragon",
  10028. },
  10029. {
  10030. name: "Micro",
  10031. height: math.unit(5, "cm"),
  10032. form: "dragon",
  10033. },
  10034. {
  10035. name: "Normal",
  10036. height: math.unit(75, "inches"),
  10037. form: "dragon",
  10038. default: true
  10039. },
  10040. {
  10041. name: "Extra Tall",
  10042. height: math.unit(9, "feet"),
  10043. form: "dragon",
  10044. },
  10045. {
  10046. name: "Inconvenient",
  10047. height: math.unit(5, "meters"),
  10048. form: "dragon",
  10049. },
  10050. {
  10051. name: "Macro",
  10052. height: math.unit(70, "meters"),
  10053. form: "dragon",
  10054. },
  10055. {
  10056. name: "Macro+",
  10057. height: math.unit(250, "meters"),
  10058. form: "dragon",
  10059. },
  10060. {
  10061. name: "Megamacro",
  10062. height: math.unit(20, "km"),
  10063. form: "dragon",
  10064. },
  10065. {
  10066. name: "Mountainous",
  10067. height: math.unit(100, "km"),
  10068. form: "dragon",
  10069. },
  10070. {
  10071. name: "Continental",
  10072. height: math.unit(2, "megameters"),
  10073. form: "dragon",
  10074. },
  10075. {
  10076. name: "Too Big",
  10077. height: math.unit(900, "megameters"),
  10078. form: "dragon",
  10079. },
  10080. ],
  10081. {
  10082. "kobold": {
  10083. name: "Kobold",
  10084. default: true
  10085. },
  10086. "dragon": {
  10087. name: "Dragon",
  10088. },
  10089. }
  10090. ))
  10091. characterMakers.push(() => makeCharacter(
  10092. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10093. {
  10094. lamp: {
  10095. height: math.unit(7 * 1559 / 989, "feet"),
  10096. name: "Magic Lamp",
  10097. image: {
  10098. source: "./media/characters/mira-al-cul/lamp.svg",
  10099. extra: 1617 / 1559
  10100. }
  10101. },
  10102. front: {
  10103. height: math.unit(7, "feet"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/mira-al-cul/front.svg",
  10107. extra: 1044 / 990
  10108. }
  10109. },
  10110. },
  10111. [
  10112. {
  10113. name: "Heavily Restricted",
  10114. height: math.unit(7 * 1559 / 989, "feet")
  10115. },
  10116. {
  10117. name: "Freshly Freed",
  10118. height: math.unit(50 * 1559 / 989, "feet")
  10119. },
  10120. {
  10121. name: "World Encompassing",
  10122. height: math.unit(10000 * 1559 / 989, "miles")
  10123. },
  10124. {
  10125. name: "Galactic",
  10126. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10127. },
  10128. {
  10129. name: "Palmed Universe",
  10130. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10131. default: true
  10132. },
  10133. {
  10134. name: "Multiversal Matriarch",
  10135. height: math.unit(8.87e10, "yottameters")
  10136. },
  10137. {
  10138. name: "Void Mother",
  10139. height: math.unit(3.14e110, "yottaparsecs")
  10140. },
  10141. {
  10142. name: "Toying with Transcendence",
  10143. height: math.unit(1e307, "meters")
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10149. {
  10150. front: {
  10151. height: math.unit(17 + 1 / 12, "feet"),
  10152. weight: math.unit(476.2 * 5, "lbs"),
  10153. name: "Front",
  10154. image: {
  10155. source: "./media/characters/kuro-shi-uchū/front.svg",
  10156. extra: 2329 / 1835,
  10157. bottom: 0.02
  10158. }
  10159. },
  10160. },
  10161. [
  10162. {
  10163. name: "Micro",
  10164. height: math.unit(2, "inches")
  10165. },
  10166. {
  10167. name: "Normal",
  10168. height: math.unit(12, "meters")
  10169. },
  10170. {
  10171. name: "Planetary",
  10172. height: math.unit(0.00929, "AU"),
  10173. default: true
  10174. },
  10175. {
  10176. name: "Universal",
  10177. height: math.unit(20, "gigaparsecs")
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10183. {
  10184. front: {
  10185. height: math.unit(5 + 2 / 12, "feet"),
  10186. weight: math.unit(120, "lbs"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/katherine/front.svg",
  10190. extra: 2075 / 1969
  10191. }
  10192. },
  10193. dress: {
  10194. height: math.unit(5 + 2 / 12, "feet"),
  10195. weight: math.unit(120, "lbs"),
  10196. name: "Dress",
  10197. image: {
  10198. source: "./media/characters/katherine/dress.svg",
  10199. extra: 2258 / 2064
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Micro",
  10206. height: math.unit(1, "inches"),
  10207. default: true
  10208. },
  10209. {
  10210. name: "Normal",
  10211. height: math.unit(5 + 2 / 12, "feet")
  10212. },
  10213. {
  10214. name: "Macro",
  10215. height: math.unit(100, "meters")
  10216. },
  10217. {
  10218. name: "Megamacro",
  10219. height: math.unit(80, "miles")
  10220. },
  10221. ]
  10222. ))
  10223. characterMakers.push(() => makeCharacter(
  10224. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10225. {
  10226. front: {
  10227. height: math.unit(7 + 8 / 12, "feet"),
  10228. weight: math.unit(250, "lbs"),
  10229. name: "Front",
  10230. image: {
  10231. source: "./media/characters/yevis/front.svg",
  10232. extra: 1938 / 1755
  10233. }
  10234. }
  10235. },
  10236. [
  10237. {
  10238. name: "Mortal",
  10239. height: math.unit(7 + 8 / 12, "feet")
  10240. },
  10241. {
  10242. name: "Battle",
  10243. height: math.unit(25 + 11 / 12, "feet")
  10244. },
  10245. {
  10246. name: "Wrath",
  10247. height: math.unit(1654 + 11 / 12, "feet")
  10248. },
  10249. {
  10250. name: "Planet Destroyer",
  10251. height: math.unit(12000, "miles")
  10252. },
  10253. {
  10254. name: "Galaxy Conqueror",
  10255. height: math.unit(1.45, "zettameters"),
  10256. default: true
  10257. },
  10258. {
  10259. name: "Universal War",
  10260. height: math.unit(184, "gigaparsecs")
  10261. },
  10262. {
  10263. name: "Eternity War",
  10264. height: math.unit(1.98e55, "yottaparsecs")
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(5 + 8 / 12, "feet"),
  10273. weight: math.unit(63, "kg"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/xavier/front.svg",
  10277. extra: 944 / 883
  10278. }
  10279. },
  10280. frontStretch: {
  10281. height: math.unit(5 + 8 / 12, "feet"),
  10282. weight: math.unit(63, "kg"),
  10283. name: "Stretching",
  10284. image: {
  10285. source: "./media/characters/xavier/front-stretch.svg",
  10286. extra: 962 / 820
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Normal",
  10293. height: math.unit(5 + 8 / 12, "feet")
  10294. },
  10295. {
  10296. name: "Macro",
  10297. height: math.unit(100, "meters"),
  10298. default: true
  10299. },
  10300. {
  10301. name: "McLargeHuge",
  10302. height: math.unit(10, "miles")
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(5 + 5 / 12, "feet"),
  10311. weight: math.unit(150, "lb"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/joshii/front.svg",
  10315. extra: 765 / 653,
  10316. bottom: 51 / 816
  10317. }
  10318. },
  10319. foot: {
  10320. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10321. name: "Foot",
  10322. image: {
  10323. source: "./media/characters/joshii/foot.svg"
  10324. }
  10325. },
  10326. },
  10327. [
  10328. {
  10329. name: "Micro",
  10330. height: math.unit(2, "inches")
  10331. },
  10332. {
  10333. name: "Normal",
  10334. height: math.unit(5 + 5 / 12, "feet")
  10335. },
  10336. {
  10337. name: "Macro",
  10338. height: math.unit(785, "feet"),
  10339. default: true
  10340. },
  10341. {
  10342. name: "Megamacro",
  10343. height: math.unit(24.5, "miles")
  10344. },
  10345. ]
  10346. ))
  10347. characterMakers.push(() => makeCharacter(
  10348. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10349. {
  10350. front: {
  10351. height: math.unit(6, "feet"),
  10352. weight: math.unit(150, "lb"),
  10353. name: "Front",
  10354. image: {
  10355. source: "./media/characters/goddess-elizabeth/front.svg",
  10356. extra: 1800 / 1525,
  10357. bottom: 0.005
  10358. }
  10359. },
  10360. foot: {
  10361. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10362. name: "Foot",
  10363. image: {
  10364. source: "./media/characters/goddess-elizabeth/foot.svg"
  10365. }
  10366. },
  10367. mouth: {
  10368. height: math.unit(6, "feet"),
  10369. name: "Mouth",
  10370. image: {
  10371. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10372. }
  10373. },
  10374. },
  10375. [
  10376. {
  10377. name: "Micro",
  10378. height: math.unit(12, "feet")
  10379. },
  10380. {
  10381. name: "Normal",
  10382. height: math.unit(80, "miles"),
  10383. default: true
  10384. },
  10385. {
  10386. name: "Macro",
  10387. height: math.unit(15000, "parsecs")
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10393. {
  10394. front: {
  10395. height: math.unit(5 + 9 / 12, "feet"),
  10396. weight: math.unit(144, "lb"),
  10397. name: "Front",
  10398. image: {
  10399. source: "./media/characters/kara/front.svg"
  10400. }
  10401. },
  10402. feet: {
  10403. height: math.unit(6 / 6.765, "feet"),
  10404. name: "Kara's Feet",
  10405. rename: true,
  10406. image: {
  10407. source: "./media/characters/kara/feet.svg"
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Normal",
  10414. height: math.unit(5 + 9 / 12, "feet")
  10415. },
  10416. {
  10417. name: "Macro",
  10418. height: math.unit(174, "feet"),
  10419. default: true
  10420. },
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10425. {
  10426. front: {
  10427. height: math.unit(18, "feet"),
  10428. weight: math.unit(4050, "lb"),
  10429. name: "Front",
  10430. image: {
  10431. source: "./media/characters/tyrone/front.svg",
  10432. extra: 2405 / 2270,
  10433. bottom: 182 / 2587
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(18, "feet"),
  10441. default: true
  10442. },
  10443. {
  10444. name: "Macro",
  10445. height: math.unit(300, "feet")
  10446. },
  10447. {
  10448. name: "Megamacro",
  10449. height: math.unit(15, "km")
  10450. },
  10451. {
  10452. name: "Gigamacro",
  10453. height: math.unit(500, "km")
  10454. },
  10455. {
  10456. name: "Teramacro",
  10457. height: math.unit(0.5, "gigameters")
  10458. },
  10459. {
  10460. name: "Omnimacro",
  10461. height: math.unit(1e252, "yottauniverse")
  10462. },
  10463. ]
  10464. ))
  10465. characterMakers.push(() => makeCharacter(
  10466. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10467. {
  10468. front: {
  10469. height: math.unit(7 + 8 / 12, "feet"),
  10470. weight: math.unit(120, "lb"),
  10471. name: "Front",
  10472. image: {
  10473. source: "./media/characters/danny/front.svg",
  10474. extra: 1490 / 1350
  10475. }
  10476. },
  10477. back: {
  10478. height: math.unit(7 + 8 / 12, "feet"),
  10479. weight: math.unit(120, "lb"),
  10480. name: "Back",
  10481. image: {
  10482. source: "./media/characters/danny/back.svg",
  10483. extra: 1490 / 1350
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Normal",
  10490. height: math.unit(7 + 8 / 12, "feet"),
  10491. default: true
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(3.5, "inches"),
  10500. weight: math.unit(19, "grams"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/mallow/front.svg",
  10504. extra: 471 / 431
  10505. }
  10506. },
  10507. back: {
  10508. height: math.unit(3.5, "inches"),
  10509. weight: math.unit(19, "grams"),
  10510. name: "Back",
  10511. image: {
  10512. source: "./media/characters/mallow/back.svg",
  10513. extra: 471 / 431
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(3.5, "inches"),
  10521. default: true
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10527. {
  10528. front: {
  10529. height: math.unit(9, "feet"),
  10530. weight: math.unit(230, "kg"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/starry-aqua/front.svg"
  10534. }
  10535. },
  10536. back: {
  10537. height: math.unit(9, "feet"),
  10538. weight: math.unit(230, "kg"),
  10539. name: "Back",
  10540. image: {
  10541. source: "./media/characters/starry-aqua/back.svg"
  10542. }
  10543. },
  10544. hand: {
  10545. height: math.unit(9 * 0.1168, "feet"),
  10546. name: "Hand",
  10547. image: {
  10548. source: "./media/characters/starry-aqua/hand.svg"
  10549. }
  10550. },
  10551. foot: {
  10552. height: math.unit(9 * 0.18, "feet"),
  10553. name: "Foot",
  10554. image: {
  10555. source: "./media/characters/starry-aqua/foot.svg"
  10556. }
  10557. }
  10558. },
  10559. [
  10560. {
  10561. name: "Micro",
  10562. height: math.unit(3, "inches")
  10563. },
  10564. {
  10565. name: "Normal",
  10566. height: math.unit(9, "feet")
  10567. },
  10568. {
  10569. name: "Macro",
  10570. height: math.unit(300, "feet"),
  10571. default: true
  10572. },
  10573. {
  10574. name: "Megamacro",
  10575. height: math.unit(3200, "feet")
  10576. }
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10581. {
  10582. front: {
  10583. height: math.unit(15, "feet"),
  10584. weight: math.unit(5026, "lb"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/luka-towers/front.svg",
  10588. extra: 1269/1133,
  10589. bottom: 51/1320
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Normal",
  10596. height: math.unit(15, "feet"),
  10597. default: true
  10598. },
  10599. {
  10600. name: "Minimacro",
  10601. height: math.unit(25, "feet")
  10602. },
  10603. {
  10604. name: "Macro",
  10605. height: math.unit(320, "feet")
  10606. },
  10607. {
  10608. name: "Megamacro",
  10609. height: math.unit(35000, "feet")
  10610. },
  10611. {
  10612. name: "Gigamacro",
  10613. height: math.unit(4000, "miles")
  10614. },
  10615. {
  10616. name: "Teramacro",
  10617. height: math.unit(15000, "miles")
  10618. },
  10619. ]
  10620. ))
  10621. characterMakers.push(() => makeCharacter(
  10622. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10623. {
  10624. front: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(150, "lb"),
  10627. name: "Front",
  10628. image: {
  10629. source: "./media/characters/natalie-nightring/front.svg",
  10630. extra: 1,
  10631. bottom: 0.06
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Uh Oh",
  10638. height: math.unit(0.1, "mm")
  10639. },
  10640. {
  10641. name: "Small",
  10642. height: math.unit(3, "inches")
  10643. },
  10644. {
  10645. name: "Human Scale",
  10646. height: math.unit(6, "feet")
  10647. },
  10648. {
  10649. name: "Librarian",
  10650. height: math.unit(50, "feet"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Immense",
  10655. height: math.unit(200, "miles")
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10661. {
  10662. front: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(180, "lbs"),
  10665. name: "Front",
  10666. image: {
  10667. source: "./media/characters/danni-rosie/front.svg",
  10668. extra: 1260 / 1128,
  10669. bottom: 0.022
  10670. }
  10671. },
  10672. },
  10673. [
  10674. {
  10675. name: "Micro",
  10676. height: math.unit(2, "inches"),
  10677. default: true
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(5 + 9 / 12, "feet"),
  10686. weight: math.unit(220, "lb"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/samantha-kruse/front.svg",
  10690. extra: (985 / 935),
  10691. bottom: 0.03
  10692. }
  10693. },
  10694. frontUndressed: {
  10695. height: math.unit(5 + 9 / 12, "feet"),
  10696. weight: math.unit(220, "lb"),
  10697. name: "Front (Undressed)",
  10698. image: {
  10699. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10700. extra: (973 / 923),
  10701. bottom: 0.025
  10702. }
  10703. },
  10704. fat: {
  10705. height: math.unit(5 + 9 / 12, "feet"),
  10706. weight: math.unit(900, "lb"),
  10707. name: "Front (Fat)",
  10708. image: {
  10709. source: "./media/characters/samantha-kruse/fat.svg",
  10710. extra: 2688 / 2561
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(5 + 9 / 12, "feet"),
  10718. default: true
  10719. }
  10720. ]
  10721. ))
  10722. characterMakers.push(() => makeCharacter(
  10723. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10724. {
  10725. back: {
  10726. height: math.unit(5 + 4 / 12, "feet"),
  10727. weight: math.unit(4963, "lb"),
  10728. name: "Back",
  10729. image: {
  10730. source: "./media/characters/amelia-rosie/back.svg",
  10731. extra: 1113 / 963,
  10732. bottom: 0.01
  10733. }
  10734. },
  10735. },
  10736. [
  10737. {
  10738. name: "Level 0",
  10739. height: math.unit(5 + 4 / 12, "feet")
  10740. },
  10741. {
  10742. name: "Level 1",
  10743. height: math.unit(164597, "feet"),
  10744. default: true
  10745. },
  10746. {
  10747. name: "Level 2",
  10748. height: math.unit(956243, "miles")
  10749. },
  10750. {
  10751. name: "Level 3",
  10752. height: math.unit(29421709423, "miles")
  10753. },
  10754. {
  10755. name: "Level 4",
  10756. height: math.unit(154, "lightyears")
  10757. },
  10758. {
  10759. name: "Level 5",
  10760. height: math.unit(4738272, "lightyears")
  10761. },
  10762. {
  10763. name: "Level 6",
  10764. height: math.unit(145787152896, "lightyears")
  10765. },
  10766. ]
  10767. ))
  10768. characterMakers.push(() => makeCharacter(
  10769. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10770. {
  10771. front: {
  10772. height: math.unit(5 + 11 / 12, "feet"),
  10773. weight: math.unit(65, "kg"),
  10774. name: "Front",
  10775. image: {
  10776. source: "./media/characters/rook-kitara/front.svg",
  10777. extra: 1347 / 1274,
  10778. bottom: 0.005
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Totally Unfair",
  10785. height: math.unit(1.8, "mm")
  10786. },
  10787. {
  10788. name: "Lap Rookie",
  10789. height: math.unit(1.4, "feet")
  10790. },
  10791. {
  10792. name: "Normal",
  10793. height: math.unit(5 + 11 / 12, "feet"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "How Did This Happen",
  10798. height: math.unit(80, "miles")
  10799. }
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10804. {
  10805. front: {
  10806. height: math.unit(7, "feet"),
  10807. weight: math.unit(300, "lb"),
  10808. name: "Front",
  10809. image: {
  10810. source: "./media/characters/pisces/front.svg",
  10811. extra: 2255 / 2115,
  10812. bottom: 0.03
  10813. }
  10814. },
  10815. back: {
  10816. height: math.unit(7, "feet"),
  10817. weight: math.unit(300, "lb"),
  10818. name: "Back",
  10819. image: {
  10820. source: "./media/characters/pisces/back.svg",
  10821. extra: 2146 / 2055,
  10822. bottom: 0.04
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(7, "feet"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Swimming Pool",
  10834. height: math.unit(12.2, "meters")
  10835. },
  10836. {
  10837. name: "Olympic Swimming Pool",
  10838. height: math.unit(56.3, "meters")
  10839. },
  10840. {
  10841. name: "Lake Superior",
  10842. height: math.unit(93900, "meters")
  10843. },
  10844. {
  10845. name: "Mediterranean Sea",
  10846. height: math.unit(644457, "meters")
  10847. },
  10848. {
  10849. name: "World's Oceans",
  10850. height: math.unit(4567491, "meters")
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10856. {
  10857. front: {
  10858. height: math.unit(2.3, "meters"),
  10859. weight: math.unit(120, "kg"),
  10860. name: "Front",
  10861. image: {
  10862. source: "./media/characters/zelas/front.svg"
  10863. }
  10864. },
  10865. side: {
  10866. height: math.unit(2.3, "meters"),
  10867. weight: math.unit(120, "kg"),
  10868. name: "Side",
  10869. image: {
  10870. source: "./media/characters/zelas/side.svg"
  10871. }
  10872. },
  10873. back: {
  10874. height: math.unit(2.3, "meters"),
  10875. weight: math.unit(120, "kg"),
  10876. name: "Back",
  10877. image: {
  10878. source: "./media/characters/zelas/back.svg"
  10879. }
  10880. },
  10881. foot: {
  10882. height: math.unit(1.116, "feet"),
  10883. name: "Foot",
  10884. image: {
  10885. source: "./media/characters/zelas/foot.svg"
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(2.3, "meters")
  10893. },
  10894. {
  10895. name: "Macro",
  10896. height: math.unit(30, "meters"),
  10897. default: true
  10898. },
  10899. ]
  10900. ))
  10901. characterMakers.push(() => makeCharacter(
  10902. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10903. {
  10904. front: {
  10905. height: math.unit(1, "inch"),
  10906. weight: math.unit(0.21, "grams"),
  10907. name: "Front",
  10908. image: {
  10909. source: "./media/characters/talbot/front.svg",
  10910. extra: 594 / 544
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Micro",
  10917. height: math.unit(1, "inch"),
  10918. default: true
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10924. {
  10925. front: {
  10926. height: math.unit(3 + 3 / 12, "feet"),
  10927. weight: math.unit(51.8, "lb"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/fliss/front.svg",
  10931. extra: 840 / 640
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Teeny Tiny",
  10938. height: math.unit(1, "mm")
  10939. },
  10940. {
  10941. name: "Small",
  10942. height: math.unit(1, "inch"),
  10943. default: true
  10944. },
  10945. {
  10946. name: "Standard Sylveon",
  10947. height: math.unit(3 + 3 / 12, "feet")
  10948. },
  10949. {
  10950. name: "Large Nuisance",
  10951. height: math.unit(33, "feet")
  10952. },
  10953. {
  10954. name: "City Filler",
  10955. height: math.unit(3000, "feet")
  10956. },
  10957. {
  10958. name: "New Horizon",
  10959. height: math.unit(6000, "miles")
  10960. },
  10961. ]
  10962. ))
  10963. characterMakers.push(() => makeCharacter(
  10964. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10965. {
  10966. front: {
  10967. height: math.unit(5, "cm"),
  10968. weight: math.unit(1.94, "g"),
  10969. name: "Front",
  10970. image: {
  10971. source: "./media/characters/fleta/front.svg",
  10972. extra: 835 / 803
  10973. }
  10974. },
  10975. back: {
  10976. height: math.unit(5, "cm"),
  10977. weight: math.unit(1.94, "g"),
  10978. name: "Back",
  10979. image: {
  10980. source: "./media/characters/fleta/back.svg",
  10981. extra: 835 / 803
  10982. }
  10983. },
  10984. },
  10985. [
  10986. {
  10987. name: "Micro",
  10988. height: math.unit(5, "cm"),
  10989. default: true
  10990. },
  10991. ]
  10992. ))
  10993. characterMakers.push(() => makeCharacter(
  10994. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10995. {
  10996. front: {
  10997. height: math.unit(6, "feet"),
  10998. weight: math.unit(225, "lb"),
  10999. name: "Front",
  11000. image: {
  11001. source: "./media/characters/dominic/front.svg",
  11002. extra: 1770 / 1620,
  11003. bottom: 0.025
  11004. }
  11005. },
  11006. back: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(225, "lb"),
  11009. name: "Back",
  11010. image: {
  11011. source: "./media/characters/dominic/back.svg",
  11012. extra: 1745 / 1620,
  11013. bottom: 0.065
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Nano",
  11020. height: math.unit(0.1, "mm")
  11021. },
  11022. {
  11023. name: "Micro-",
  11024. height: math.unit(1, "mm")
  11025. },
  11026. {
  11027. name: "Micro",
  11028. height: math.unit(4, "inches")
  11029. },
  11030. {
  11031. name: "Normal",
  11032. height: math.unit(6 + 4 / 12, "feet"),
  11033. default: true
  11034. },
  11035. {
  11036. name: "Macro",
  11037. height: math.unit(115, "feet")
  11038. },
  11039. {
  11040. name: "Macro+",
  11041. height: math.unit(955, "feet")
  11042. },
  11043. {
  11044. name: "Megamacro",
  11045. height: math.unit(8990, "feet")
  11046. },
  11047. {
  11048. name: "Gigmacro",
  11049. height: math.unit(9310, "miles")
  11050. },
  11051. {
  11052. name: "Teramacro",
  11053. height: math.unit(1567005010, "miles")
  11054. },
  11055. {
  11056. name: "Examacro",
  11057. height: math.unit(1425, "parsecs")
  11058. },
  11059. ]
  11060. ))
  11061. characterMakers.push(() => makeCharacter(
  11062. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11063. {
  11064. front: {
  11065. height: math.unit(400, "feet"),
  11066. weight: math.unit(44444444, "lb"),
  11067. name: "Front",
  11068. image: {
  11069. source: "./media/characters/major-colonel/front.svg"
  11070. }
  11071. },
  11072. back: {
  11073. height: math.unit(400, "feet"),
  11074. weight: math.unit(44444444, "lb"),
  11075. name: "Back",
  11076. image: {
  11077. source: "./media/characters/major-colonel/back.svg"
  11078. }
  11079. },
  11080. },
  11081. [
  11082. {
  11083. name: "Macro",
  11084. height: math.unit(400, "feet"),
  11085. default: true
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11091. {
  11092. catFront: {
  11093. height: math.unit(6, "feet"),
  11094. weight: math.unit(120, "lb"),
  11095. name: "Front (Cat Side)",
  11096. image: {
  11097. source: "./media/characters/axel-lycan/cat-front.svg",
  11098. extra: 430 / 402,
  11099. bottom: 43 / 472.35
  11100. }
  11101. },
  11102. catBack: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(120, "lb"),
  11105. name: "Back (Cat Side)",
  11106. image: {
  11107. source: "./media/characters/axel-lycan/cat-back.svg",
  11108. extra: 447 / 419,
  11109. bottom: 23.3 / 469
  11110. }
  11111. },
  11112. wolfFront: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(120, "lb"),
  11115. name: "Front (Wolf Side)",
  11116. image: {
  11117. source: "./media/characters/axel-lycan/wolf-front.svg",
  11118. extra: 485 / 456,
  11119. bottom: 19 / 504
  11120. }
  11121. },
  11122. wolfBack: {
  11123. height: math.unit(6, "feet"),
  11124. weight: math.unit(120, "lb"),
  11125. name: "Back (Wolf Side)",
  11126. image: {
  11127. source: "./media/characters/axel-lycan/wolf-back.svg",
  11128. extra: 475 / 438,
  11129. bottom: 39.2 / 514
  11130. }
  11131. },
  11132. },
  11133. [
  11134. {
  11135. name: "Macro",
  11136. height: math.unit(1, "km"),
  11137. default: true
  11138. },
  11139. ]
  11140. ))
  11141. characterMakers.push(() => makeCharacter(
  11142. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11143. {
  11144. front: {
  11145. height: math.unit(5 + 9 / 12, "feet"),
  11146. weight: math.unit(175, "lb"),
  11147. name: "Front",
  11148. image: {
  11149. source: "./media/characters/vanrel-hyena/front.svg",
  11150. extra: 1086 / 1010,
  11151. bottom: 0.04
  11152. }
  11153. },
  11154. },
  11155. [
  11156. {
  11157. name: "Normal",
  11158. height: math.unit(5 + 9 / 12, "feet"),
  11159. default: true
  11160. },
  11161. ]
  11162. ))
  11163. characterMakers.push(() => makeCharacter(
  11164. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11165. {
  11166. front: {
  11167. height: math.unit(6, "feet"),
  11168. weight: math.unit(103, "lb"),
  11169. name: "Front",
  11170. image: {
  11171. source: "./media/characters/abbott-absol/front.svg",
  11172. extra: 765/694,
  11173. bottom: 47/812
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Megamicro",
  11180. height: math.unit(0.1, "mm")
  11181. },
  11182. {
  11183. name: "Micro",
  11184. height: math.unit(1, "inch")
  11185. },
  11186. {
  11187. name: "Normal",
  11188. height: math.unit(6, "feet"),
  11189. default: true
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(6, "feet"),
  11198. weight: math.unit(264, "lb"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/hector/front.svg",
  11202. extra: 2280 / 2130,
  11203. bottom: 0.07
  11204. }
  11205. },
  11206. },
  11207. [
  11208. {
  11209. name: "Normal",
  11210. height: math.unit(12.25, "foot"),
  11211. default: true
  11212. },
  11213. {
  11214. name: "Macro",
  11215. height: math.unit(160, "feet")
  11216. },
  11217. ]
  11218. ))
  11219. characterMakers.push(() => makeCharacter(
  11220. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11221. {
  11222. front: {
  11223. height: math.unit(6, "feet"),
  11224. weight: math.unit(150, "lb"),
  11225. name: "Front",
  11226. image: {
  11227. source: "./media/characters/sal/front.svg",
  11228. extra: 1846 / 1699,
  11229. bottom: 0.04
  11230. }
  11231. },
  11232. },
  11233. [
  11234. {
  11235. name: "Megamacro",
  11236. height: math.unit(10, "miles"),
  11237. default: true
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11243. {
  11244. front: {
  11245. height: math.unit(3, "meters"),
  11246. weight: math.unit(450, "kg"),
  11247. name: "front",
  11248. image: {
  11249. source: "./media/characters/ranger/front.svg",
  11250. extra: 2401 / 2243,
  11251. bottom: 0.05
  11252. }
  11253. },
  11254. },
  11255. [
  11256. {
  11257. name: "Normal",
  11258. height: math.unit(3, "meters"),
  11259. default: true
  11260. },
  11261. ]
  11262. ))
  11263. characterMakers.push(() => makeCharacter(
  11264. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11265. {
  11266. front: {
  11267. height: math.unit(14, "feet"),
  11268. weight: math.unit(800, "kg"),
  11269. name: "Front",
  11270. image: {
  11271. source: "./media/characters/theresa/front.svg",
  11272. extra: 3575 / 3346,
  11273. bottom: 0.03
  11274. }
  11275. },
  11276. },
  11277. [
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(14, "feet"),
  11281. default: true
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11287. {
  11288. front: {
  11289. height: math.unit(6, "feet"),
  11290. weight: math.unit(3, "kg"),
  11291. name: "Front",
  11292. image: {
  11293. source: "./media/characters/ine/front.svg",
  11294. extra: 678 / 539,
  11295. bottom: 0.023
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Normal",
  11302. height: math.unit(2.265, "feet"),
  11303. default: true
  11304. },
  11305. ]
  11306. ))
  11307. characterMakers.push(() => makeCharacter(
  11308. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11309. {
  11310. front: {
  11311. height: math.unit(5, "feet"),
  11312. weight: math.unit(30, "kg"),
  11313. name: "Front",
  11314. image: {
  11315. source: "./media/characters/vial/front.svg",
  11316. extra: 1365 / 1277,
  11317. bottom: 0.04
  11318. }
  11319. },
  11320. },
  11321. [
  11322. {
  11323. name: "Normal",
  11324. height: math.unit(5, "feet"),
  11325. default: true
  11326. },
  11327. ]
  11328. ))
  11329. characterMakers.push(() => makeCharacter(
  11330. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11331. {
  11332. side: {
  11333. height: math.unit(3.4, "meters"),
  11334. weight: math.unit(1000, "lb"),
  11335. name: "Side",
  11336. image: {
  11337. source: "./media/characters/rovoska/side.svg",
  11338. extra: 4403 / 1515
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Normal",
  11345. height: math.unit(3.4, "meters"),
  11346. default: true
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11352. {
  11353. front: {
  11354. height: math.unit(8, "feet"),
  11355. weight: math.unit(315, "lb"),
  11356. name: "Front",
  11357. image: {
  11358. source: "./media/characters/gunner-rotthbauer/front.svg"
  11359. }
  11360. },
  11361. back: {
  11362. height: math.unit(8, "feet"),
  11363. weight: math.unit(315, "lb"),
  11364. name: "Back",
  11365. image: {
  11366. source: "./media/characters/gunner-rotthbauer/back.svg"
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Micro",
  11373. height: math.unit(3.5, "inches")
  11374. },
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(8, "feet"),
  11378. default: true
  11379. },
  11380. {
  11381. name: "Macro",
  11382. height: math.unit(250, "feet")
  11383. },
  11384. {
  11385. name: "Megamacro",
  11386. height: math.unit(1, "AU")
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(5 + 5 / 12, "feet"),
  11395. weight: math.unit(140, "lb"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/allatia/front.svg",
  11399. extra: 1227 / 1180,
  11400. bottom: 0.027
  11401. }
  11402. },
  11403. },
  11404. [
  11405. {
  11406. name: "Normal",
  11407. height: math.unit(5 + 5 / 12, "feet")
  11408. },
  11409. {
  11410. name: "Macro",
  11411. height: math.unit(250, "feet"),
  11412. default: true
  11413. },
  11414. {
  11415. name: "Megamacro",
  11416. height: math.unit(8, "miles")
  11417. }
  11418. ]
  11419. ))
  11420. characterMakers.push(() => makeCharacter(
  11421. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11422. {
  11423. front: {
  11424. height: math.unit(6, "feet"),
  11425. weight: math.unit(120, "lb"),
  11426. name: "Front",
  11427. image: {
  11428. source: "./media/characters/tene/front.svg",
  11429. extra: 814/750,
  11430. bottom: 36/850
  11431. }
  11432. },
  11433. stomping: {
  11434. height: math.unit(2.025, "meters"),
  11435. weight: math.unit(120, "lb"),
  11436. name: "Stomping",
  11437. image: {
  11438. source: "./media/characters/tene/stomping.svg",
  11439. extra: 885/821,
  11440. bottom: 15/900
  11441. }
  11442. },
  11443. sitting: {
  11444. height: math.unit(1, "meter"),
  11445. weight: math.unit(120, "lb"),
  11446. name: "Sitting",
  11447. image: {
  11448. source: "./media/characters/tene/sitting.svg",
  11449. extra: 396/366,
  11450. bottom: 79/475
  11451. }
  11452. },
  11453. smiling: {
  11454. height: math.unit(1.2, "feet"),
  11455. name: "Smiling",
  11456. image: {
  11457. source: "./media/characters/tene/smiling.svg",
  11458. extra: 1364/1071,
  11459. bottom: 0/1364
  11460. }
  11461. },
  11462. smug: {
  11463. height: math.unit(1.3, "feet"),
  11464. name: "Smug",
  11465. image: {
  11466. source: "./media/characters/tene/smug.svg",
  11467. extra: 1323/1082,
  11468. bottom: 0/1323
  11469. }
  11470. },
  11471. feral: {
  11472. height: math.unit(3.9, "feet"),
  11473. weight: math.unit(250, "lb"),
  11474. name: "Feral",
  11475. image: {
  11476. source: "./media/characters/tene/feral.svg",
  11477. extra: 717 / 458,
  11478. bottom: 0.179
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(6, "feet")
  11486. },
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(300, "feet"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Megamacro",
  11494. height: math.unit(5, "miles")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11500. {
  11501. side: {
  11502. height: math.unit(6, "feet"),
  11503. name: "Side",
  11504. image: {
  11505. source: "./media/characters/evander/side.svg",
  11506. extra: 877 / 477
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Normal",
  11513. height: math.unit(0.83, "meters"),
  11514. default: true
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11520. {
  11521. front: {
  11522. height: math.unit(12, "feet"),
  11523. weight: math.unit(1000, "lb"),
  11524. name: "Front",
  11525. image: {
  11526. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11527. extra: 1762 / 1611
  11528. }
  11529. },
  11530. back: {
  11531. height: math.unit(12, "feet"),
  11532. weight: math.unit(1000, "lb"),
  11533. name: "Back",
  11534. image: {
  11535. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11536. extra: 1762 / 1611
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Normal",
  11543. height: math.unit(12, "feet"),
  11544. default: true
  11545. },
  11546. {
  11547. name: "Kaiju",
  11548. height: math.unit(150, "feet")
  11549. },
  11550. ]
  11551. ))
  11552. characterMakers.push(() => makeCharacter(
  11553. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11554. {
  11555. front: {
  11556. height: math.unit(5 + 11/12, "feet"),
  11557. weight: math.unit(180, "lb"),
  11558. name: "Front",
  11559. image: {
  11560. source: "./media/characters/zero-alurus/front.svg",
  11561. extra: 1032/957,
  11562. bottom: 10/1042
  11563. }
  11564. },
  11565. back: {
  11566. height: math.unit(5 + 11/12, "feet"),
  11567. weight: math.unit(180, "lb"),
  11568. name: "Back",
  11569. image: {
  11570. source: "./media/characters/zero-alurus/back.svg",
  11571. extra: 1027/950,
  11572. bottom: 12/1039
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(5 + 11 / 12, "feet")
  11580. },
  11581. {
  11582. name: "Mini-Macro",
  11583. height: math.unit(25, "feet")
  11584. },
  11585. {
  11586. name: "Macro",
  11587. height: math.unit(90, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Macro+",
  11592. height: math.unit(500, "feet")
  11593. },
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(1200, "feet")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(200, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/mega-shi/front.svg",
  11609. extra: 1279 / 1250,
  11610. bottom: 0.02
  11611. }
  11612. },
  11613. back: {
  11614. height: math.unit(6, "feet"),
  11615. weight: math.unit(200, "lb"),
  11616. name: "Back",
  11617. image: {
  11618. source: "./media/characters/mega-shi/back.svg",
  11619. extra: 1279 / 1250,
  11620. bottom: 0.02
  11621. }
  11622. },
  11623. },
  11624. [
  11625. {
  11626. name: "Micro",
  11627. height: math.unit(16 + 6 / 12, "feet")
  11628. },
  11629. {
  11630. name: "Third Dimension",
  11631. height: math.unit(40, "meters")
  11632. },
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(660, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Megamacro",
  11640. height: math.unit(10, "miles")
  11641. },
  11642. {
  11643. name: "Planetary Launch",
  11644. height: math.unit(500, "miles")
  11645. },
  11646. {
  11647. name: "Interstellar",
  11648. height: math.unit(1e9, "miles")
  11649. },
  11650. {
  11651. name: "Leaving the Universe",
  11652. height: math.unit(1, "gigaparsec")
  11653. },
  11654. {
  11655. name: "Travelling Universes",
  11656. height: math.unit(30e15, "parsecs")
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(5 + 4/12, "feet"),
  11665. weight: math.unit(120, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/odyssey/front.svg",
  11669. extra: 1747/1571,
  11670. bottom: 47/1794
  11671. }
  11672. },
  11673. side: {
  11674. height: math.unit(5.1, "feet"),
  11675. weight: math.unit(120, "lb"),
  11676. name: "Side",
  11677. image: {
  11678. source: "./media/characters/odyssey/side.svg",
  11679. extra: 1847/1619,
  11680. bottom: 47/1894
  11681. }
  11682. },
  11683. lounging: {
  11684. height: math.unit(1.464, "feet"),
  11685. weight: math.unit(120, "lb"),
  11686. name: "Lounging",
  11687. image: {
  11688. source: "./media/characters/odyssey/lounging.svg",
  11689. extra: 1235/837,
  11690. bottom: 551/1786
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(5 + 4 / 12, "feet")
  11698. },
  11699. {
  11700. name: "Macro",
  11701. height: math.unit(1, "km")
  11702. },
  11703. {
  11704. name: "Megamacro",
  11705. height: math.unit(3000, "km")
  11706. },
  11707. {
  11708. name: "Gigamacro",
  11709. height: math.unit(1, "AU"),
  11710. default: true
  11711. },
  11712. {
  11713. name: "Omniversal",
  11714. height: math.unit(100e14, "lightyears")
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11720. {
  11721. front: {
  11722. height: math.unit(5 + 10/12, "feet"),
  11723. name: "Front",
  11724. image: {
  11725. source: "./media/characters/mekuto/front.svg",
  11726. extra: 875/835,
  11727. bottom: 46/921
  11728. }
  11729. },
  11730. },
  11731. [
  11732. {
  11733. name: "Minimicro",
  11734. height: math.unit(0.2, "inches")
  11735. },
  11736. {
  11737. name: "Micro",
  11738. height: math.unit(1.5, "inches")
  11739. },
  11740. {
  11741. name: "Normal",
  11742. height: math.unit(5 + 10 / 12, "feet"),
  11743. default: true
  11744. },
  11745. {
  11746. name: "Minimacro",
  11747. height: math.unit(17 + 9 / 12, "feet")
  11748. },
  11749. {
  11750. name: "Macro",
  11751. height: math.unit(177.5, "feet")
  11752. },
  11753. {
  11754. name: "Megamacro",
  11755. height: math.unit(152, "miles")
  11756. },
  11757. ]
  11758. ))
  11759. characterMakers.push(() => makeCharacter(
  11760. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11761. {
  11762. front: {
  11763. height: math.unit(6.5, "inches"),
  11764. weight: math.unit(13, "oz"),
  11765. name: "Front",
  11766. image: {
  11767. source: "./media/characters/dafydd-tomos/front.svg",
  11768. extra: 2990 / 2603,
  11769. bottom: 0.03
  11770. }
  11771. },
  11772. },
  11773. [
  11774. {
  11775. name: "Micro",
  11776. height: math.unit(6.5, "inches"),
  11777. default: true
  11778. },
  11779. ]
  11780. ))
  11781. characterMakers.push(() => makeCharacter(
  11782. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11783. {
  11784. front: {
  11785. height: math.unit(6, "feet"),
  11786. weight: math.unit(150, "lb"),
  11787. name: "Front",
  11788. image: {
  11789. source: "./media/characters/splinter/front.svg",
  11790. extra: 2990 / 2882,
  11791. bottom: 0.04
  11792. }
  11793. },
  11794. back: {
  11795. height: math.unit(6, "feet"),
  11796. weight: math.unit(150, "lb"),
  11797. name: "Back",
  11798. image: {
  11799. source: "./media/characters/splinter/back.svg",
  11800. extra: 2990 / 2882,
  11801. bottom: 0.04
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(6, "feet")
  11809. },
  11810. {
  11811. name: "Macro",
  11812. height: math.unit(230, "meters"),
  11813. default: true
  11814. },
  11815. ]
  11816. ))
  11817. characterMakers.push(() => makeCharacter(
  11818. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11819. {
  11820. front: {
  11821. height: math.unit(4 + 10 / 12, "feet"),
  11822. weight: math.unit(480, "lb"),
  11823. name: "Front",
  11824. image: {
  11825. source: "./media/characters/snow-gabumon/front.svg",
  11826. extra: 1140 / 963,
  11827. bottom: 0.058
  11828. }
  11829. },
  11830. back: {
  11831. height: math.unit(4 + 10 / 12, "feet"),
  11832. weight: math.unit(480, "lb"),
  11833. name: "Back",
  11834. image: {
  11835. source: "./media/characters/snow-gabumon/back.svg",
  11836. extra: 1115 / 962,
  11837. bottom: 0.041
  11838. }
  11839. },
  11840. frontUndresed: {
  11841. height: math.unit(4 + 10 / 12, "feet"),
  11842. weight: math.unit(480, "lb"),
  11843. name: "Front (Undressed)",
  11844. image: {
  11845. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11846. extra: 1061 / 960,
  11847. bottom: 0.045
  11848. }
  11849. },
  11850. },
  11851. [
  11852. {
  11853. name: "Micro",
  11854. height: math.unit(1, "inch")
  11855. },
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(4 + 10 / 12, "feet"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(200, "feet")
  11864. },
  11865. {
  11866. name: "Megamacro",
  11867. height: math.unit(120, "miles")
  11868. },
  11869. {
  11870. name: "Gigamacro",
  11871. height: math.unit(9800, "miles")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(1.7, "meters"),
  11880. weight: math.unit(140, "lb"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/moody/front.svg",
  11884. extra: 3226 / 3007,
  11885. bottom: 0.087
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Micro",
  11892. height: math.unit(1, "mm")
  11893. },
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(1.7, "meters"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Macro",
  11901. height: math.unit(80, "meters")
  11902. },
  11903. {
  11904. name: "Macro+",
  11905. height: math.unit(500, "meters")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(6, "feet"),
  11914. weight: math.unit(150, "lb"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/zyas/front.svg",
  11918. extra: 1180 / 1120,
  11919. bottom: 0.045
  11920. }
  11921. },
  11922. },
  11923. [
  11924. {
  11925. name: "Normal",
  11926. height: math.unit(10, "feet"),
  11927. default: true
  11928. },
  11929. {
  11930. name: "Macro",
  11931. height: math.unit(500, "feet")
  11932. },
  11933. {
  11934. name: "Megamacro",
  11935. height: math.unit(5, "miles")
  11936. },
  11937. {
  11938. name: "Teramacro",
  11939. height: math.unit(150000, "miles")
  11940. },
  11941. ]
  11942. ))
  11943. characterMakers.push(() => makeCharacter(
  11944. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11945. {
  11946. front: {
  11947. height: math.unit(6, "feet"),
  11948. weight: math.unit(150, "lb"),
  11949. name: "Front",
  11950. image: {
  11951. source: "./media/characters/cuon/front.svg",
  11952. extra: 1390 / 1320,
  11953. bottom: 0.008
  11954. }
  11955. },
  11956. },
  11957. [
  11958. {
  11959. name: "Micro",
  11960. height: math.unit(3, "inches")
  11961. },
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(18 + 9 / 12, "feet"),
  11965. default: true
  11966. },
  11967. {
  11968. name: "Macro",
  11969. height: math.unit(360, "feet")
  11970. },
  11971. {
  11972. name: "Megamacro",
  11973. height: math.unit(360, "miles")
  11974. },
  11975. ]
  11976. ))
  11977. characterMakers.push(() => makeCharacter(
  11978. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11979. {
  11980. front: {
  11981. height: math.unit(2.4, "meters"),
  11982. weight: math.unit(70, "kg"),
  11983. name: "Front",
  11984. image: {
  11985. source: "./media/characters/nyanuxk/front.svg",
  11986. extra: 1172 / 1084,
  11987. bottom: 0.065
  11988. }
  11989. },
  11990. side: {
  11991. height: math.unit(2.4, "meters"),
  11992. weight: math.unit(70, "kg"),
  11993. name: "Side",
  11994. image: {
  11995. source: "./media/characters/nyanuxk/side.svg",
  11996. extra: 1190 / 1132,
  11997. bottom: 0.007
  11998. }
  11999. },
  12000. back: {
  12001. height: math.unit(2.4, "meters"),
  12002. weight: math.unit(70, "kg"),
  12003. name: "Back",
  12004. image: {
  12005. source: "./media/characters/nyanuxk/back.svg",
  12006. extra: 1200 / 1141,
  12007. bottom: 0.015
  12008. }
  12009. },
  12010. foot: {
  12011. height: math.unit(0.52, "meters"),
  12012. name: "Foot",
  12013. image: {
  12014. source: "./media/characters/nyanuxk/foot.svg"
  12015. }
  12016. },
  12017. },
  12018. [
  12019. {
  12020. name: "Micro",
  12021. height: math.unit(2, "cm")
  12022. },
  12023. {
  12024. name: "Normal",
  12025. height: math.unit(2.4, "meters"),
  12026. default: true
  12027. },
  12028. {
  12029. name: "Smaller Macro",
  12030. height: math.unit(120, "meters")
  12031. },
  12032. {
  12033. name: "Bigger Macro",
  12034. height: math.unit(1.2, "km")
  12035. },
  12036. {
  12037. name: "Megamacro",
  12038. height: math.unit(15, "kilometers")
  12039. },
  12040. {
  12041. name: "Gigamacro",
  12042. height: math.unit(2000, "km")
  12043. },
  12044. {
  12045. name: "Teramacro",
  12046. height: math.unit(500000, "km")
  12047. },
  12048. ]
  12049. ))
  12050. characterMakers.push(() => makeCharacter(
  12051. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12052. {
  12053. side: {
  12054. height: math.unit(6, "feet"),
  12055. name: "Side",
  12056. image: {
  12057. source: "./media/characters/ailbhe/side.svg",
  12058. extra: 757 / 464,
  12059. bottom: 0.041
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Normal",
  12066. height: math.unit(1.07, "meters"),
  12067. default: true
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(6, "feet"),
  12076. weight: math.unit(120, "kg"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/zevulfius/front.svg",
  12080. extra: 965 / 903
  12081. }
  12082. },
  12083. side: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(120, "kg"),
  12086. name: "Side",
  12087. image: {
  12088. source: "./media/characters/zevulfius/side.svg",
  12089. extra: 939 / 900
  12090. }
  12091. },
  12092. back: {
  12093. height: math.unit(6, "feet"),
  12094. weight: math.unit(120, "kg"),
  12095. name: "Back",
  12096. image: {
  12097. source: "./media/characters/zevulfius/back.svg",
  12098. extra: 918 / 854,
  12099. bottom: 0.005
  12100. }
  12101. },
  12102. foot: {
  12103. height: math.unit(6 / 3.72, "feet"),
  12104. name: "Foot",
  12105. image: {
  12106. source: "./media/characters/zevulfius/foot.svg"
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Macro",
  12113. height: math.unit(750, "meters")
  12114. },
  12115. {
  12116. name: "Megamacro",
  12117. height: math.unit(20, "km"),
  12118. default: true
  12119. },
  12120. {
  12121. name: "Gigamacro",
  12122. height: math.unit(2000, "km")
  12123. },
  12124. {
  12125. name: "Teramacro",
  12126. height: math.unit(250000, "km")
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12132. {
  12133. front: {
  12134. height: math.unit(100, "feet"),
  12135. weight: math.unit(350, "kg"),
  12136. name: "Front",
  12137. image: {
  12138. source: "./media/characters/rikes/front.svg",
  12139. extra: 1565 / 1483,
  12140. bottom: 0.017
  12141. }
  12142. },
  12143. },
  12144. [
  12145. {
  12146. name: "Macro",
  12147. height: math.unit(100, "feet"),
  12148. default: true
  12149. },
  12150. ]
  12151. ))
  12152. characterMakers.push(() => makeCharacter(
  12153. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12154. {
  12155. front: {
  12156. height: math.unit(8, "feet"),
  12157. weight: math.unit(356, "lb"),
  12158. name: "Front",
  12159. image: {
  12160. source: "./media/characters/adam-silver-mane/front.svg",
  12161. extra: 1036/937,
  12162. bottom: 63/1099
  12163. }
  12164. },
  12165. side: {
  12166. height: math.unit(8, "feet"),
  12167. weight: math.unit(356, "lb"),
  12168. name: "Side",
  12169. image: {
  12170. source: "./media/characters/adam-silver-mane/side.svg",
  12171. extra: 997/901,
  12172. bottom: 59/1056
  12173. }
  12174. },
  12175. frontNsfw: {
  12176. height: math.unit(8, "feet"),
  12177. weight: math.unit(356, "lb"),
  12178. name: "Front (NSFW)",
  12179. image: {
  12180. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12181. extra: 1036/937,
  12182. bottom: 63/1099
  12183. }
  12184. },
  12185. sideNsfw: {
  12186. height: math.unit(8, "feet"),
  12187. weight: math.unit(356, "lb"),
  12188. name: "Side (NSFW)",
  12189. image: {
  12190. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12191. extra: 997/901,
  12192. bottom: 59/1056
  12193. }
  12194. },
  12195. dick: {
  12196. height: math.unit(2.1, "feet"),
  12197. name: "Dick",
  12198. image: {
  12199. source: "./media/characters/adam-silver-mane/dick.svg"
  12200. }
  12201. },
  12202. taur: {
  12203. height: math.unit(16, "feet"),
  12204. weight: math.unit(1500, "kg"),
  12205. name: "Taur",
  12206. image: {
  12207. source: "./media/characters/adam-silver-mane/taur.svg",
  12208. extra: 1713 / 1571,
  12209. bottom: 0.01
  12210. }
  12211. },
  12212. },
  12213. [
  12214. {
  12215. name: "Normal",
  12216. height: math.unit(8, "feet")
  12217. },
  12218. {
  12219. name: "Minimacro",
  12220. height: math.unit(80, "feet")
  12221. },
  12222. {
  12223. name: "MDA",
  12224. height: math.unit(80, "meters")
  12225. },
  12226. {
  12227. name: "Macro",
  12228. height: math.unit(800, "feet"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Megamacro",
  12233. height: math.unit(8000, "feet")
  12234. },
  12235. {
  12236. name: "Gigamacro",
  12237. height: math.unit(800, "miles")
  12238. },
  12239. {
  12240. name: "Teramacro",
  12241. height: math.unit(80000, "miles")
  12242. },
  12243. {
  12244. name: "Celestial",
  12245. height: math.unit(8e6, "miles")
  12246. },
  12247. {
  12248. name: "Star Dragon",
  12249. height: math.unit(800000, "parsecs")
  12250. },
  12251. {
  12252. name: "Godly",
  12253. height: math.unit(800, "teraparsecs")
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12259. {
  12260. front: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(150, "lb"),
  12263. name: "Front",
  12264. image: {
  12265. source: "./media/characters/ky'owin/front.svg",
  12266. extra: 3862/3053,
  12267. bottom: 74/3936
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Normal",
  12274. height: math.unit(6 + 8 / 12, "feet")
  12275. },
  12276. {
  12277. name: "Large",
  12278. height: math.unit(68, "feet")
  12279. },
  12280. {
  12281. name: "Macro",
  12282. height: math.unit(132, "feet")
  12283. },
  12284. {
  12285. name: "Macro+",
  12286. height: math.unit(340, "feet")
  12287. },
  12288. {
  12289. name: "Macro++",
  12290. height: math.unit(680, "feet"),
  12291. default: true
  12292. },
  12293. {
  12294. name: "Megamacro",
  12295. height: math.unit(1, "mile")
  12296. },
  12297. {
  12298. name: "Megamacro+",
  12299. height: math.unit(10, "miles")
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(4, "feet"),
  12308. weight: math.unit(50, "lb"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/mal/front.svg",
  12312. extra: 785 / 724,
  12313. bottom: 0.07
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Micro",
  12320. height: math.unit(4, "inches")
  12321. },
  12322. {
  12323. name: "Normal",
  12324. height: math.unit(4, "feet"),
  12325. default: true
  12326. },
  12327. {
  12328. name: "Macro",
  12329. height: math.unit(200, "feet")
  12330. },
  12331. ]
  12332. ))
  12333. characterMakers.push(() => makeCharacter(
  12334. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12335. {
  12336. front: {
  12337. height: math.unit(6, "feet"),
  12338. weight: math.unit(150, "lb"),
  12339. name: "Front",
  12340. image: {
  12341. source: "./media/characters/jordan-deware/front.svg",
  12342. extra: 1191 / 1012
  12343. }
  12344. },
  12345. },
  12346. [
  12347. {
  12348. name: "Nano",
  12349. height: math.unit(0.01, "mm")
  12350. },
  12351. {
  12352. name: "Minimicro",
  12353. height: math.unit(1, "mm")
  12354. },
  12355. {
  12356. name: "Micro",
  12357. height: math.unit(0.5, "inches")
  12358. },
  12359. {
  12360. name: "Normal",
  12361. height: math.unit(4, "feet"),
  12362. default: true
  12363. },
  12364. {
  12365. name: "Minimacro",
  12366. height: math.unit(40, "meters")
  12367. },
  12368. {
  12369. name: "Small Macro",
  12370. height: math.unit(400, "meters")
  12371. },
  12372. {
  12373. name: "Macro",
  12374. height: math.unit(4, "miles")
  12375. },
  12376. {
  12377. name: "Megamacro",
  12378. height: math.unit(40, "miles")
  12379. },
  12380. {
  12381. name: "Megamacro+",
  12382. height: math.unit(400, "miles")
  12383. },
  12384. {
  12385. name: "Gigamacro",
  12386. height: math.unit(400000, "miles")
  12387. },
  12388. ]
  12389. ))
  12390. characterMakers.push(() => makeCharacter(
  12391. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12392. {
  12393. front: {
  12394. height: math.unit(15, "feet"),
  12395. weight: math.unit(3000, "kg"),
  12396. preyCapacity: math.unit(450, "people"),
  12397. name: "Front",
  12398. image: {
  12399. source: "./media/characters/kimiko/front.svg",
  12400. extra: 875/832,
  12401. bottom: 36/911
  12402. },
  12403. extraAttributes: {
  12404. "pawSize": {
  12405. name: "Paw Size",
  12406. power: 1,
  12407. type: "length",
  12408. base: math.unit(0.9, "meters")
  12409. },
  12410. }
  12411. },
  12412. side: {
  12413. height: math.unit(15, "feet"),
  12414. weight: math.unit(3000, "kg"),
  12415. preyCapacity: math.unit(400, "people"),
  12416. name: "Side",
  12417. image: {
  12418. source: "./media/characters/kimiko/side.svg",
  12419. extra: 448/270,
  12420. bottom: 7/455
  12421. },
  12422. extraAttributes: {
  12423. "pawSize": {
  12424. name: "Paw Size",
  12425. power: 1,
  12426. type: "length",
  12427. base: math.unit(0.9, "meters")
  12428. },
  12429. }
  12430. },
  12431. maw: {
  12432. height: math.unit(0.81, "feet"),
  12433. name: "Maw",
  12434. image: {
  12435. source: "./media/characters/kimiko/maw.svg"
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Normal",
  12442. height: math.unit(15, "feet"),
  12443. default: true
  12444. },
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(220, "feet")
  12448. },
  12449. {
  12450. name: "Macro+",
  12451. height: math.unit(1450, "feet")
  12452. },
  12453. {
  12454. name: "Megamacro",
  12455. height: math.unit(11500, "feet")
  12456. },
  12457. {
  12458. name: "Gigamacro",
  12459. height: math.unit(9500, "miles")
  12460. },
  12461. {
  12462. name: "Teramacro",
  12463. height: math.unit(2208005005, "miles")
  12464. },
  12465. {
  12466. name: "Examacro",
  12467. height: math.unit(2750, "parsecs")
  12468. },
  12469. {
  12470. name: "Zettamacro",
  12471. height: math.unit(101500, "parsecs")
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12477. {
  12478. front: {
  12479. height: math.unit(6, "feet"),
  12480. weight: math.unit(70, "kg"),
  12481. name: "Front",
  12482. image: {
  12483. source: "./media/characters/andrew-sleepy/front.svg"
  12484. }
  12485. },
  12486. side: {
  12487. height: math.unit(6, "feet"),
  12488. weight: math.unit(70, "kg"),
  12489. name: "Side",
  12490. image: {
  12491. source: "./media/characters/andrew-sleepy/side.svg"
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Micro",
  12498. height: math.unit(1, "mm"),
  12499. default: true
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12505. {
  12506. front: {
  12507. height: math.unit(6, "feet"),
  12508. weight: math.unit(150, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/judio/front.svg",
  12512. extra: 1258 / 1110
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(5 + 6 / 12, "feet")
  12520. },
  12521. {
  12522. name: "Macro",
  12523. height: math.unit(1000, "feet"),
  12524. default: true
  12525. },
  12526. {
  12527. name: "Megamacro",
  12528. height: math.unit(10, "miles")
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12534. {
  12535. frontDressed: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(68, "kg"),
  12538. name: "Front (Dressed)",
  12539. image: {
  12540. source: "./media/characters/nomaxice/front-dressed.svg",
  12541. extra: 1137/824,
  12542. bottom: 74/1211
  12543. }
  12544. },
  12545. frontShorts: {
  12546. height: math.unit(6, "feet"),
  12547. weight: math.unit(68, "kg"),
  12548. name: "Front (Shorts)",
  12549. image: {
  12550. source: "./media/characters/nomaxice/front-shorts.svg",
  12551. extra: 1137/824,
  12552. bottom: 74/1211
  12553. }
  12554. },
  12555. back: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(68, "kg"),
  12558. name: "Back",
  12559. image: {
  12560. source: "./media/characters/nomaxice/back.svg",
  12561. extra: 822/786,
  12562. bottom: 39/861
  12563. }
  12564. },
  12565. hand: {
  12566. height: math.unit(0.565, "feet"),
  12567. name: "Hand",
  12568. image: {
  12569. source: "./media/characters/nomaxice/hand.svg"
  12570. }
  12571. },
  12572. foot: {
  12573. height: math.unit(1, "feet"),
  12574. name: "Foot",
  12575. image: {
  12576. source: "./media/characters/nomaxice/foot.svg"
  12577. }
  12578. },
  12579. },
  12580. [
  12581. {
  12582. name: "Micro",
  12583. height: math.unit(8, "cm")
  12584. },
  12585. {
  12586. name: "Norm",
  12587. height: math.unit(1.82, "m")
  12588. },
  12589. {
  12590. name: "Norm+",
  12591. height: math.unit(8.8, "feet"),
  12592. default: true
  12593. },
  12594. {
  12595. name: "Big",
  12596. height: math.unit(8, "meters")
  12597. },
  12598. {
  12599. name: "Macro",
  12600. height: math.unit(18, "meters")
  12601. },
  12602. {
  12603. name: "Macro+",
  12604. height: math.unit(88, "meters")
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(12, "feet"),
  12613. weight: math.unit(1.5, "tons"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/dydros/front.svg",
  12617. extra: 863 / 800,
  12618. bottom: 0.015
  12619. }
  12620. },
  12621. back: {
  12622. height: math.unit(12, "feet"),
  12623. weight: math.unit(1.5, "tons"),
  12624. name: "Back",
  12625. image: {
  12626. source: "./media/characters/dydros/back.svg",
  12627. extra: 900 / 843,
  12628. bottom: 0.005
  12629. }
  12630. },
  12631. },
  12632. [
  12633. {
  12634. name: "Normal",
  12635. height: math.unit(12, "feet"),
  12636. default: true
  12637. },
  12638. ]
  12639. ))
  12640. characterMakers.push(() => makeCharacter(
  12641. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12642. {
  12643. front: {
  12644. height: math.unit(6, "feet"),
  12645. weight: math.unit(100, "kg"),
  12646. name: "Front",
  12647. image: {
  12648. source: "./media/characters/riggi/front.svg",
  12649. extra: 5787 / 5303
  12650. }
  12651. },
  12652. hyper: {
  12653. height: math.unit(6 * 5 / 3, "feet"),
  12654. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12655. name: "Hyper",
  12656. image: {
  12657. source: "./media/characters/riggi/hyper.svg",
  12658. extra: 3595 / 3485
  12659. }
  12660. },
  12661. },
  12662. [
  12663. {
  12664. name: "Small Macro",
  12665. height: math.unit(50, "feet")
  12666. },
  12667. {
  12668. name: "Default",
  12669. height: math.unit(200, "feet"),
  12670. default: true
  12671. },
  12672. {
  12673. name: "Loom",
  12674. height: math.unit(10000, "feet")
  12675. },
  12676. {
  12677. name: "Cruising Altitude",
  12678. height: math.unit(30000, "feet")
  12679. },
  12680. {
  12681. name: "Megamacro",
  12682. height: math.unit(100, "miles")
  12683. },
  12684. {
  12685. name: "Continent Sized",
  12686. height: math.unit(2800, "miles")
  12687. },
  12688. {
  12689. name: "Earth Sized",
  12690. height: math.unit(8000, "miles")
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(6, "feet"),
  12699. weight: math.unit(250, "lb"),
  12700. name: "Front",
  12701. image: {
  12702. source: "./media/characters/alexi/front.svg",
  12703. extra: 3483 / 3291,
  12704. bottom: 0.04
  12705. }
  12706. },
  12707. back: {
  12708. height: math.unit(6, "feet"),
  12709. weight: math.unit(250, "lb"),
  12710. name: "Back",
  12711. image: {
  12712. source: "./media/characters/alexi/back.svg",
  12713. extra: 3533 / 3356,
  12714. bottom: 0.021
  12715. }
  12716. },
  12717. frontTransforming: {
  12718. height: math.unit(8.58, "feet"),
  12719. weight: math.unit(1300, "lb"),
  12720. name: "Transforming",
  12721. image: {
  12722. source: "./media/characters/alexi/front-transforming.svg",
  12723. extra: 437 / 409,
  12724. bottom: 19 / 458.66
  12725. }
  12726. },
  12727. frontTransformed: {
  12728. height: math.unit(12.5, "feet"),
  12729. weight: math.unit(4000, "lb"),
  12730. name: "Transformed",
  12731. image: {
  12732. source: "./media/characters/alexi/front-transformed.svg",
  12733. extra: 639 / 614,
  12734. bottom: 30.55 / 671
  12735. }
  12736. },
  12737. },
  12738. [
  12739. {
  12740. name: "Normal",
  12741. height: math.unit(14, "feet"),
  12742. default: true
  12743. },
  12744. {
  12745. name: "Minimacro",
  12746. height: math.unit(30, "meters")
  12747. },
  12748. {
  12749. name: "Macro",
  12750. height: math.unit(500, "meters")
  12751. },
  12752. {
  12753. name: "Megamacro",
  12754. height: math.unit(9000, "km")
  12755. },
  12756. {
  12757. name: "Teramacro",
  12758. height: math.unit(384000, "km")
  12759. },
  12760. ]
  12761. ))
  12762. characterMakers.push(() => makeCharacter(
  12763. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12764. {
  12765. front: {
  12766. height: math.unit(6, "feet"),
  12767. weight: math.unit(150, "lb"),
  12768. name: "Front",
  12769. image: {
  12770. source: "./media/characters/kayroo/front.svg",
  12771. extra: 1153 / 1038,
  12772. bottom: 0.06
  12773. }
  12774. },
  12775. foot: {
  12776. height: math.unit(6, "feet"),
  12777. weight: math.unit(150, "lb"),
  12778. name: "Foot",
  12779. image: {
  12780. source: "./media/characters/kayroo/foot.svg"
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Normal",
  12787. height: math.unit(8, "feet"),
  12788. default: true
  12789. },
  12790. {
  12791. name: "Minimacro",
  12792. height: math.unit(250, "feet")
  12793. },
  12794. {
  12795. name: "Macro",
  12796. height: math.unit(2800, "feet")
  12797. },
  12798. {
  12799. name: "Megamacro",
  12800. height: math.unit(5200, "feet")
  12801. },
  12802. {
  12803. name: "Gigamacro",
  12804. height: math.unit(27000, "feet")
  12805. },
  12806. {
  12807. name: "Omega",
  12808. height: math.unit(45000, "feet")
  12809. },
  12810. ]
  12811. ))
  12812. characterMakers.push(() => makeCharacter(
  12813. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12814. {
  12815. front: {
  12816. height: math.unit(18, "feet"),
  12817. weight: math.unit(5800, "lb"),
  12818. name: "Front",
  12819. image: {
  12820. source: "./media/characters/rhys/front.svg",
  12821. extra: 3386 / 3090,
  12822. bottom: 0.07
  12823. }
  12824. },
  12825. },
  12826. [
  12827. {
  12828. name: "Normal",
  12829. height: math.unit(18, "feet"),
  12830. default: true
  12831. },
  12832. {
  12833. name: "Working Size",
  12834. height: math.unit(200, "feet")
  12835. },
  12836. {
  12837. name: "Demolition Size",
  12838. height: math.unit(2000, "feet")
  12839. },
  12840. {
  12841. name: "Maximum Licensed Size",
  12842. height: math.unit(5, "miles")
  12843. },
  12844. {
  12845. name: "Maximum Observed Size",
  12846. height: math.unit(10, "yottameters")
  12847. },
  12848. ]
  12849. ))
  12850. characterMakers.push(() => makeCharacter(
  12851. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12852. {
  12853. front: {
  12854. height: math.unit(6, "feet"),
  12855. weight: math.unit(250, "lb"),
  12856. name: "Front",
  12857. image: {
  12858. source: "./media/characters/toto/front.svg",
  12859. extra: 527 / 479,
  12860. bottom: 0.05
  12861. }
  12862. },
  12863. },
  12864. [
  12865. {
  12866. name: "Micro",
  12867. height: math.unit(3, "feet")
  12868. },
  12869. {
  12870. name: "Normal",
  12871. height: math.unit(10, "feet")
  12872. },
  12873. {
  12874. name: "Macro",
  12875. height: math.unit(150, "feet"),
  12876. default: true
  12877. },
  12878. {
  12879. name: "Megamacro",
  12880. height: math.unit(1200, "feet")
  12881. },
  12882. ]
  12883. ))
  12884. characterMakers.push(() => makeCharacter(
  12885. { name: "King", species: ["lion"], tags: ["anthro"] },
  12886. {
  12887. back: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(150, "lb"),
  12890. name: "Back",
  12891. image: {
  12892. source: "./media/characters/king/back.svg"
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Micro",
  12899. height: math.unit(2, "inches")
  12900. },
  12901. {
  12902. name: "Normal",
  12903. height: math.unit(8, "feet")
  12904. },
  12905. {
  12906. name: "Macro",
  12907. height: math.unit(200, "feet"),
  12908. default: true
  12909. },
  12910. {
  12911. name: "Megamacro",
  12912. height: math.unit(50, "miles")
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12918. {
  12919. front: {
  12920. height: math.unit(11, "feet"),
  12921. weight: math.unit(1400, "lb"),
  12922. name: "Front",
  12923. image: {
  12924. source: "./media/characters/cordite/front.svg",
  12925. extra: 1919/1827,
  12926. bottom: 40/1959
  12927. }
  12928. },
  12929. side: {
  12930. height: math.unit(11, "feet"),
  12931. weight: math.unit(1400, "lb"),
  12932. name: "Side",
  12933. image: {
  12934. source: "./media/characters/cordite/side.svg",
  12935. extra: 1908/1793,
  12936. bottom: 38/1946
  12937. }
  12938. },
  12939. back: {
  12940. height: math.unit(11, "feet"),
  12941. weight: math.unit(1400, "lb"),
  12942. name: "Back",
  12943. image: {
  12944. source: "./media/characters/cordite/back.svg",
  12945. extra: 1938/1837,
  12946. bottom: 10/1948
  12947. }
  12948. },
  12949. feral: {
  12950. height: math.unit(2, "feet"),
  12951. weight: math.unit(90, "lb"),
  12952. name: "Feral",
  12953. image: {
  12954. source: "./media/characters/cordite/feral.svg",
  12955. extra: 1260 / 755,
  12956. bottom: 0.05
  12957. }
  12958. },
  12959. },
  12960. [
  12961. {
  12962. name: "Normal",
  12963. height: math.unit(11, "feet"),
  12964. default: true
  12965. },
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12970. {
  12971. front: {
  12972. height: math.unit(6, "feet"),
  12973. weight: math.unit(150, "lb"),
  12974. name: "Front",
  12975. image: {
  12976. source: "./media/characters/pianostrong/front.svg",
  12977. extra: 6577 / 6254,
  12978. bottom: 0.02
  12979. }
  12980. },
  12981. side: {
  12982. height: math.unit(6, "feet"),
  12983. weight: math.unit(150, "lb"),
  12984. name: "Side",
  12985. image: {
  12986. source: "./media/characters/pianostrong/side.svg",
  12987. extra: 6106 / 5730
  12988. }
  12989. },
  12990. back: {
  12991. height: math.unit(6, "feet"),
  12992. weight: math.unit(150, "lb"),
  12993. name: "Back",
  12994. image: {
  12995. source: "./media/characters/pianostrong/back.svg",
  12996. extra: 6085 / 5733,
  12997. bottom: 0.01
  12998. }
  12999. },
  13000. },
  13001. [
  13002. {
  13003. name: "Macro",
  13004. height: math.unit(100, "feet")
  13005. },
  13006. {
  13007. name: "Macro+",
  13008. height: math.unit(300, "feet"),
  13009. default: true
  13010. },
  13011. {
  13012. name: "Macro++",
  13013. height: math.unit(1000, "feet")
  13014. },
  13015. ]
  13016. ))
  13017. characterMakers.push(() => makeCharacter(
  13018. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13019. {
  13020. front: {
  13021. height: math.unit(6, "feet"),
  13022. weight: math.unit(150, "lb"),
  13023. name: "Front",
  13024. image: {
  13025. source: "./media/characters/kona/front.svg",
  13026. extra: 2960 / 2629,
  13027. bottom: 0.005
  13028. }
  13029. },
  13030. },
  13031. [
  13032. {
  13033. name: "Normal",
  13034. height: math.unit(11 + 8 / 12, "feet")
  13035. },
  13036. {
  13037. name: "Macro",
  13038. height: math.unit(850, "feet"),
  13039. default: true
  13040. },
  13041. {
  13042. name: "Macro+",
  13043. height: math.unit(1.5, "km"),
  13044. default: true
  13045. },
  13046. {
  13047. name: "Megamacro",
  13048. height: math.unit(80, "miles")
  13049. },
  13050. {
  13051. name: "Gigamacro",
  13052. height: math.unit(3500, "miles")
  13053. },
  13054. ]
  13055. ))
  13056. characterMakers.push(() => makeCharacter(
  13057. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13058. {
  13059. side: {
  13060. height: math.unit(1.9, "meters"),
  13061. weight: math.unit(326, "kg"),
  13062. name: "Side",
  13063. image: {
  13064. source: "./media/characters/levi/side.svg",
  13065. extra: 1704 / 1334,
  13066. bottom: 0.02
  13067. }
  13068. },
  13069. },
  13070. [
  13071. {
  13072. name: "Normal",
  13073. height: math.unit(1.9, "meters"),
  13074. default: true
  13075. },
  13076. {
  13077. name: "Macro",
  13078. height: math.unit(20, "meters")
  13079. },
  13080. {
  13081. name: "Macro+",
  13082. height: math.unit(200, "meters")
  13083. },
  13084. {
  13085. name: "Megamacro",
  13086. height: math.unit(2, "km")
  13087. },
  13088. {
  13089. name: "Megamacro+",
  13090. height: math.unit(20, "km")
  13091. },
  13092. {
  13093. name: "Gigamacro",
  13094. height: math.unit(2500, "km")
  13095. },
  13096. {
  13097. name: "Gigamacro+",
  13098. height: math.unit(120000, "km")
  13099. },
  13100. {
  13101. name: "Teramacro",
  13102. height: math.unit(7.77e6, "km")
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13108. {
  13109. front: {
  13110. height: math.unit(6 + 4/12, "feet"),
  13111. weight: math.unit(190, "lb"),
  13112. name: "Front",
  13113. image: {
  13114. source: "./media/characters/bmc/front.svg",
  13115. extra: 1626/1472,
  13116. bottom: 79/1705
  13117. }
  13118. },
  13119. back: {
  13120. height: math.unit(6 + 4/12, "feet"),
  13121. weight: math.unit(190, "lb"),
  13122. name: "Back",
  13123. image: {
  13124. source: "./media/characters/bmc/back.svg",
  13125. extra: 1640/1479,
  13126. bottom: 45/1685
  13127. }
  13128. },
  13129. frontArmor: {
  13130. height: math.unit(6 + 4/12, "feet"),
  13131. weight: math.unit(190, "lb"),
  13132. name: "Front-armor",
  13133. image: {
  13134. source: "./media/characters/bmc/front-armor.svg",
  13135. extra: 1538/1468,
  13136. bottom: 79/1617
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Human-sized",
  13143. height: math.unit(6 + 4 / 12, "feet")
  13144. },
  13145. {
  13146. name: "Interactive Size",
  13147. height: math.unit(25, "feet")
  13148. },
  13149. {
  13150. name: "Small",
  13151. height: math.unit(250, "feet")
  13152. },
  13153. {
  13154. name: "Normal",
  13155. height: math.unit(1250, "feet"),
  13156. default: true
  13157. },
  13158. {
  13159. name: "Good Day",
  13160. height: math.unit(88, "miles")
  13161. },
  13162. {
  13163. name: "Largest Measured Size",
  13164. height: math.unit(105.960, "galaxies")
  13165. },
  13166. ]
  13167. ))
  13168. characterMakers.push(() => makeCharacter(
  13169. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13170. {
  13171. front: {
  13172. height: math.unit(20, "feet"),
  13173. weight: math.unit(2016, "kg"),
  13174. name: "Front",
  13175. image: {
  13176. source: "./media/characters/sven-the-kaiju/front.svg",
  13177. extra: 1277/1250,
  13178. bottom: 35/1312
  13179. }
  13180. },
  13181. mouth: {
  13182. height: math.unit(1.85, "feet"),
  13183. name: "Mouth",
  13184. image: {
  13185. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13186. }
  13187. },
  13188. },
  13189. [
  13190. {
  13191. name: "Fairy",
  13192. height: math.unit(6, "inches")
  13193. },
  13194. {
  13195. name: "Normal",
  13196. height: math.unit(20, "feet"),
  13197. default: true
  13198. },
  13199. {
  13200. name: "Rampage",
  13201. height: math.unit(200, "feet")
  13202. },
  13203. {
  13204. name: "Archfey Forest Guardian",
  13205. height: math.unit(1, "mile")
  13206. },
  13207. ]
  13208. ))
  13209. characterMakers.push(() => makeCharacter(
  13210. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13211. {
  13212. front: {
  13213. height: math.unit(4, "meters"),
  13214. weight: math.unit(2, "tons"),
  13215. name: "Front",
  13216. image: {
  13217. source: "./media/characters/marik/front.svg",
  13218. extra: 1057 / 1003,
  13219. bottom: 0.08
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Normal",
  13226. height: math.unit(4, "meters"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Macro",
  13231. height: math.unit(20, "meters")
  13232. },
  13233. {
  13234. name: "Megamacro",
  13235. height: math.unit(50, "km")
  13236. },
  13237. {
  13238. name: "Gigamacro",
  13239. height: math.unit(100, "km")
  13240. },
  13241. {
  13242. name: "Alpha Macro",
  13243. height: math.unit(7.88e7, "yottameters")
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(110, "lb"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/mel/front.svg",
  13256. extra: 736 / 617,
  13257. bottom: 0.017
  13258. }
  13259. },
  13260. },
  13261. [
  13262. {
  13263. name: "Pico",
  13264. height: math.unit(3, "pm")
  13265. },
  13266. {
  13267. name: "Nano",
  13268. height: math.unit(3, "nm")
  13269. },
  13270. {
  13271. name: "Micro",
  13272. height: math.unit(0.3, "mm"),
  13273. default: true
  13274. },
  13275. {
  13276. name: "Micro+",
  13277. height: math.unit(3, "mm")
  13278. },
  13279. {
  13280. name: "Normal",
  13281. height: math.unit(5 + 10.5 / 12, "feet")
  13282. },
  13283. ]
  13284. ))
  13285. characterMakers.push(() => makeCharacter(
  13286. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13287. {
  13288. kaiju: {
  13289. height: math.unit(1.75, "meters"),
  13290. weight: math.unit(55, "kg"),
  13291. name: "Kaiju",
  13292. image: {
  13293. source: "./media/characters/lykonous/kaiju.svg",
  13294. extra: 1055 / 946,
  13295. bottom: 0.135
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(2.5, "meters"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Kaiju Dragon",
  13307. height: math.unit(60, "meters")
  13308. },
  13309. {
  13310. name: "Mega Kaiju",
  13311. height: math.unit(120, "km")
  13312. },
  13313. {
  13314. name: "Giga Kaiju",
  13315. height: math.unit(200, "megameters")
  13316. },
  13317. {
  13318. name: "Terra Kaiju",
  13319. height: math.unit(400, "gigameters")
  13320. },
  13321. {
  13322. name: "Kaiju Dragon God",
  13323. height: math.unit(13000, "exaparsecs")
  13324. },
  13325. ]
  13326. ))
  13327. characterMakers.push(() => makeCharacter(
  13328. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13329. {
  13330. front: {
  13331. height: math.unit(6, "feet"),
  13332. weight: math.unit(150, "lb"),
  13333. name: "Front",
  13334. image: {
  13335. source: "./media/characters/blü/front.svg",
  13336. extra: 1883 / 1564,
  13337. bottom: 0.031
  13338. }
  13339. },
  13340. },
  13341. [
  13342. {
  13343. name: "Normal",
  13344. height: math.unit(13, "feet"),
  13345. default: true
  13346. },
  13347. {
  13348. name: "Big Boi",
  13349. height: math.unit(150, "meters")
  13350. },
  13351. {
  13352. name: "Mini Stomper",
  13353. height: math.unit(300, "meters")
  13354. },
  13355. {
  13356. name: "Macro",
  13357. height: math.unit(1000, "meters")
  13358. },
  13359. {
  13360. name: "Megamacro",
  13361. height: math.unit(11000, "meters")
  13362. },
  13363. {
  13364. name: "Gigamacro",
  13365. height: math.unit(11000, "km")
  13366. },
  13367. {
  13368. name: "Teramacro",
  13369. height: math.unit(420000, "km")
  13370. },
  13371. {
  13372. name: "Examacro",
  13373. height: math.unit(120, "parsecs")
  13374. },
  13375. {
  13376. name: "God Tho",
  13377. height: math.unit(98000000000, "parsecs")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13383. {
  13384. taurFront: {
  13385. height: math.unit(6, "feet"),
  13386. weight: math.unit(200, "lb"),
  13387. name: "Taur (Front)",
  13388. image: {
  13389. source: "./media/characters/scales/taur-front.svg",
  13390. extra: 1,
  13391. bottom: 0.05
  13392. }
  13393. },
  13394. taurBack: {
  13395. height: math.unit(6, "feet"),
  13396. weight: math.unit(200, "lb"),
  13397. name: "Taur (Back)",
  13398. image: {
  13399. source: "./media/characters/scales/taur-back.svg",
  13400. extra: 1,
  13401. bottom: 0.08
  13402. }
  13403. },
  13404. anthro: {
  13405. height: math.unit(6 * 7 / 12, "feet"),
  13406. weight: math.unit(100, "lb"),
  13407. name: "Anthro",
  13408. image: {
  13409. source: "./media/characters/scales/anthro.svg",
  13410. extra: 1,
  13411. bottom: 0.06
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Normal",
  13418. height: math.unit(12, "feet"),
  13419. default: true
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(6, "feet"),
  13428. weight: math.unit(150, "lb"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/koragos/front.svg",
  13432. extra: 841 / 794,
  13433. bottom: 0.035
  13434. }
  13435. },
  13436. back: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(150, "lb"),
  13439. name: "Back",
  13440. image: {
  13441. source: "./media/characters/koragos/back.svg",
  13442. extra: 841 / 810,
  13443. bottom: 0.022
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Normal",
  13450. height: math.unit(6 + 11 / 12, "feet"),
  13451. default: true
  13452. },
  13453. {
  13454. name: "Macro",
  13455. height: math.unit(490, "feet")
  13456. },
  13457. {
  13458. name: "Megamacro",
  13459. height: math.unit(10, "miles")
  13460. },
  13461. {
  13462. name: "Gigamacro",
  13463. height: math.unit(50, "miles")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(6, "feet"),
  13472. weight: math.unit(250, "lb"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/xylrem/front.svg",
  13476. extra: 3323 / 3050,
  13477. bottom: 0.065
  13478. }
  13479. },
  13480. },
  13481. [
  13482. {
  13483. name: "Micro",
  13484. height: math.unit(4, "feet")
  13485. },
  13486. {
  13487. name: "Normal",
  13488. height: math.unit(16, "feet"),
  13489. default: true
  13490. },
  13491. {
  13492. name: "Macro",
  13493. height: math.unit(2720, "feet")
  13494. },
  13495. {
  13496. name: "Megamacro",
  13497. height: math.unit(25000, "miles")
  13498. },
  13499. ]
  13500. ))
  13501. characterMakers.push(() => makeCharacter(
  13502. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13503. {
  13504. front: {
  13505. height: math.unit(8, "feet"),
  13506. weight: math.unit(250, "kg"),
  13507. name: "Front",
  13508. image: {
  13509. source: "./media/characters/ikideru/front.svg",
  13510. extra: 930 / 870,
  13511. bottom: 0.087
  13512. }
  13513. },
  13514. back: {
  13515. height: math.unit(8, "feet"),
  13516. weight: math.unit(250, "kg"),
  13517. name: "Back",
  13518. image: {
  13519. source: "./media/characters/ikideru/back.svg",
  13520. extra: 919 / 852,
  13521. bottom: 0.055
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Rare",
  13528. height: math.unit(8, "feet"),
  13529. default: true
  13530. },
  13531. {
  13532. name: "Playful Loom",
  13533. height: math.unit(80, "feet")
  13534. },
  13535. {
  13536. name: "City Leaner",
  13537. height: math.unit(230, "feet")
  13538. },
  13539. {
  13540. name: "Megamacro",
  13541. height: math.unit(2500, "feet")
  13542. },
  13543. {
  13544. name: "Gigamacro",
  13545. height: math.unit(26400, "feet")
  13546. },
  13547. {
  13548. name: "Tectonic Shifter",
  13549. height: math.unit(1.7, "megameters")
  13550. },
  13551. {
  13552. name: "Planet Carer",
  13553. height: math.unit(21, "megameters")
  13554. },
  13555. {
  13556. name: "God",
  13557. height: math.unit(11157.22, "parsecs")
  13558. },
  13559. ]
  13560. ))
  13561. characterMakers.push(() => makeCharacter(
  13562. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13563. {
  13564. front: {
  13565. height: math.unit(6, "feet"),
  13566. weight: math.unit(120, "lb"),
  13567. name: "Front",
  13568. image: {
  13569. source: "./media/characters/neo/front.svg"
  13570. }
  13571. },
  13572. },
  13573. [
  13574. {
  13575. name: "Micro",
  13576. height: math.unit(2, "inches"),
  13577. default: true
  13578. },
  13579. {
  13580. name: "Human Size",
  13581. height: math.unit(5 + 8 / 12, "feet")
  13582. },
  13583. ]
  13584. ))
  13585. characterMakers.push(() => makeCharacter(
  13586. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13587. {
  13588. front: {
  13589. height: math.unit(13 + 10 / 12, "feet"),
  13590. weight: math.unit(5320, "lb"),
  13591. name: "Front",
  13592. image: {
  13593. source: "./media/characters/chauncey-chantz/front.svg",
  13594. extra: 1587 / 1435,
  13595. bottom: 0.02
  13596. }
  13597. },
  13598. },
  13599. [
  13600. {
  13601. name: "Normal",
  13602. height: math.unit(13 + 10 / 12, "feet"),
  13603. default: true
  13604. },
  13605. {
  13606. name: "Macro",
  13607. height: math.unit(45, "feet")
  13608. },
  13609. {
  13610. name: "Megamacro",
  13611. height: math.unit(250, "miles")
  13612. },
  13613. {
  13614. name: "Planetary",
  13615. height: math.unit(10000, "miles")
  13616. },
  13617. {
  13618. name: "Galactic",
  13619. height: math.unit(40000, "parsecs")
  13620. },
  13621. {
  13622. name: "Universal",
  13623. height: math.unit(1, "yottameter")
  13624. },
  13625. ]
  13626. ))
  13627. characterMakers.push(() => makeCharacter(
  13628. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13629. {
  13630. front: {
  13631. height: math.unit(6, "feet"),
  13632. weight: math.unit(150, "lb"),
  13633. name: "Front",
  13634. image: {
  13635. source: "./media/characters/epifox/front.svg",
  13636. extra: 1,
  13637. bottom: 0.075
  13638. }
  13639. },
  13640. },
  13641. [
  13642. {
  13643. name: "Micro",
  13644. height: math.unit(6, "inches")
  13645. },
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(12, "feet"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(3810, "feet")
  13654. },
  13655. {
  13656. name: "Megamacro",
  13657. height: math.unit(500, "miles")
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(1.8796, "m"),
  13666. weight: math.unit(230, "lb"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/colin-t/front.svg",
  13670. extra: 1272 / 1193,
  13671. bottom: 0.07
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Micro",
  13678. height: math.unit(0.571, "meters")
  13679. },
  13680. {
  13681. name: "Normal",
  13682. height: math.unit(1.8796, "meters"),
  13683. default: true
  13684. },
  13685. {
  13686. name: "Tall",
  13687. height: math.unit(4, "meters")
  13688. },
  13689. {
  13690. name: "Macro",
  13691. height: math.unit(67.241, "meters")
  13692. },
  13693. {
  13694. name: "Megamacro",
  13695. height: math.unit(371.856, "meters")
  13696. },
  13697. {
  13698. name: "Planetary",
  13699. height: math.unit(12631.5689, "km")
  13700. },
  13701. ]
  13702. ))
  13703. characterMakers.push(() => makeCharacter(
  13704. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13705. {
  13706. front: {
  13707. height: math.unit(1.85, "meters"),
  13708. weight: math.unit(80, "kg"),
  13709. name: "Front",
  13710. image: {
  13711. source: "./media/characters/matvei/front.svg",
  13712. extra: 456/447,
  13713. bottom: 8/464
  13714. }
  13715. },
  13716. back: {
  13717. height: math.unit(1.85, "meters"),
  13718. weight: math.unit(80, "kg"),
  13719. name: "Back",
  13720. image: {
  13721. source: "./media/characters/matvei/back.svg",
  13722. extra: 434/427,
  13723. bottom: 11/445
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Normal",
  13730. height: math.unit(1.85, "meters"),
  13731. default: true
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(5 + 9 / 12, "feet"),
  13740. weight: math.unit(70, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/quincy/front.svg",
  13744. extra: 3041 / 2751
  13745. }
  13746. },
  13747. back: {
  13748. height: math.unit(5 + 9 / 12, "feet"),
  13749. weight: math.unit(70, "lb"),
  13750. name: "Back",
  13751. image: {
  13752. source: "./media/characters/quincy/back.svg",
  13753. extra: 3041 / 2751
  13754. }
  13755. },
  13756. flying: {
  13757. height: math.unit(5 + 4 / 12, "feet"),
  13758. weight: math.unit(70, "lb"),
  13759. name: "Flying",
  13760. image: {
  13761. source: "./media/characters/quincy/flying.svg",
  13762. extra: 1044 / 930
  13763. }
  13764. },
  13765. },
  13766. [
  13767. {
  13768. name: "Micro",
  13769. height: math.unit(3, "cm")
  13770. },
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(5 + 9 / 12, "feet")
  13774. },
  13775. {
  13776. name: "Macro",
  13777. height: math.unit(200, "meters"),
  13778. default: true
  13779. },
  13780. {
  13781. name: "Megamacro",
  13782. height: math.unit(1000, "meters")
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13788. {
  13789. front: {
  13790. height: math.unit(3 + 11/12, "feet"),
  13791. weight: math.unit(50, "lb"),
  13792. name: "Front",
  13793. image: {
  13794. source: "./media/characters/vanrel/front.svg",
  13795. extra: 1104/949,
  13796. bottom: 52/1156
  13797. }
  13798. },
  13799. back: {
  13800. height: math.unit(3 + 11/12, "feet"),
  13801. weight: math.unit(50, "lb"),
  13802. name: "Back",
  13803. image: {
  13804. source: "./media/characters/vanrel/back.svg",
  13805. extra: 1119/976,
  13806. bottom: 37/1156
  13807. }
  13808. },
  13809. tome: {
  13810. height: math.unit(1.35, "feet"),
  13811. weight: math.unit(10, "lb"),
  13812. name: "Vanrel's Tome",
  13813. rename: true,
  13814. image: {
  13815. source: "./media/characters/vanrel/tome.svg"
  13816. }
  13817. },
  13818. beans: {
  13819. height: math.unit(0.89, "feet"),
  13820. name: "Beans",
  13821. image: {
  13822. source: "./media/characters/vanrel/beans.svg"
  13823. }
  13824. },
  13825. },
  13826. [
  13827. {
  13828. name: "Normal",
  13829. height: math.unit(3 + 11/12, "feet"),
  13830. default: true
  13831. },
  13832. ]
  13833. ))
  13834. characterMakers.push(() => makeCharacter(
  13835. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13836. {
  13837. front: {
  13838. height: math.unit(7 + 5 / 12, "feet"),
  13839. name: "Front",
  13840. image: {
  13841. source: "./media/characters/kuiper-vanrel/front.svg",
  13842. extra: 1219/1169,
  13843. bottom: 69/1288
  13844. }
  13845. },
  13846. back: {
  13847. height: math.unit(7 + 5 / 12, "feet"),
  13848. name: "Back",
  13849. image: {
  13850. source: "./media/characters/kuiper-vanrel/back.svg",
  13851. extra: 1236/1193,
  13852. bottom: 27/1263
  13853. }
  13854. },
  13855. foot: {
  13856. height: math.unit(0.55, "meters"),
  13857. name: "Foot",
  13858. image: {
  13859. source: "./media/characters/kuiper-vanrel/foot.svg",
  13860. }
  13861. },
  13862. battle: {
  13863. height: math.unit(6.824, "feet"),
  13864. name: "Battle",
  13865. image: {
  13866. source: "./media/characters/kuiper-vanrel/battle.svg",
  13867. extra: 1466 / 1327,
  13868. bottom: 29 / 1492.5
  13869. }
  13870. },
  13871. meerkui: {
  13872. height: math.unit(18, "inches"),
  13873. name: "Meerkui",
  13874. image: {
  13875. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13876. extra: 1354/1289,
  13877. bottom: 69/1423
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Normal",
  13884. height: math.unit(7 + 5 / 12, "feet"),
  13885. default: true
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(8 + 5 / 12, "feet"),
  13894. name: "Front",
  13895. image: {
  13896. source: "./media/characters/keset-vanrel/front.svg",
  13897. extra: 1231/1148,
  13898. bottom: 82/1313
  13899. }
  13900. },
  13901. back: {
  13902. height: math.unit(8 + 5 / 12, "feet"),
  13903. name: "Back",
  13904. image: {
  13905. source: "./media/characters/keset-vanrel/back.svg",
  13906. extra: 1240/1174,
  13907. bottom: 33/1273
  13908. }
  13909. },
  13910. hand: {
  13911. height: math.unit(0.6, "meters"),
  13912. name: "Hand",
  13913. image: {
  13914. source: "./media/characters/keset-vanrel/hand.svg"
  13915. }
  13916. },
  13917. foot: {
  13918. height: math.unit(0.94978, "meters"),
  13919. name: "Foot",
  13920. image: {
  13921. source: "./media/characters/keset-vanrel/foot.svg"
  13922. }
  13923. },
  13924. battle: {
  13925. height: math.unit(7.408, "feet"),
  13926. name: "Battle",
  13927. image: {
  13928. source: "./media/characters/keset-vanrel/battle.svg",
  13929. extra: 1890 / 1386,
  13930. bottom: 73.28 / 1970
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Normal",
  13937. height: math.unit(8 + 5 / 12, "feet"),
  13938. default: true
  13939. },
  13940. ]
  13941. ))
  13942. characterMakers.push(() => makeCharacter(
  13943. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13944. {
  13945. front: {
  13946. height: math.unit(6, "feet"),
  13947. weight: math.unit(150, "lb"),
  13948. name: "Front",
  13949. image: {
  13950. source: "./media/characters/neos/front.svg",
  13951. extra: 1696 / 992,
  13952. bottom: 0.14
  13953. }
  13954. },
  13955. },
  13956. [
  13957. {
  13958. name: "Normal",
  13959. height: math.unit(54, "cm"),
  13960. default: true
  13961. },
  13962. {
  13963. name: "Macro",
  13964. height: math.unit(100, "m")
  13965. },
  13966. {
  13967. name: "Megamacro",
  13968. height: math.unit(10, "km")
  13969. },
  13970. {
  13971. name: "Megamacro+",
  13972. height: math.unit(100, "km")
  13973. },
  13974. {
  13975. name: "Gigamacro",
  13976. height: math.unit(100, "Mm")
  13977. },
  13978. {
  13979. name: "Teramacro",
  13980. height: math.unit(100, "Gm")
  13981. },
  13982. {
  13983. name: "Examacro",
  13984. height: math.unit(100, "Em")
  13985. },
  13986. {
  13987. name: "Godly",
  13988. height: math.unit(10000, "Ym")
  13989. },
  13990. {
  13991. name: "Beyond Godly",
  13992. height: math.unit(25, "multiverses")
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13998. {
  13999. fluide_tame: {
  14000. height: math.unit(5, "feet"),
  14001. name: "Tame",
  14002. image: {
  14003. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14004. extra: 1655/1574,
  14005. bottom: 231/1886
  14006. },
  14007. form: "fluide",
  14008. default: true
  14009. },
  14010. fluide_nude: {
  14011. height: math.unit(5, "feet"),
  14012. name: "Nude",
  14013. image: {
  14014. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14015. extra: 1655/1574,
  14016. bottom: 231/1886
  14017. },
  14018. form: "fluide",
  14019. },
  14020. male_tame: {
  14021. height: math.unit(5, "feet"),
  14022. name: "Tame",
  14023. image: {
  14024. source: "./media/characters/sammy-mouse/male-tame.svg",
  14025. extra: 1655/1574,
  14026. bottom: 231/1886
  14027. },
  14028. form: "male",
  14029. default: true
  14030. },
  14031. male_nude: {
  14032. height: math.unit(5, "feet"),
  14033. name: "Nude",
  14034. image: {
  14035. source: "./media/characters/sammy-mouse/male-nude.svg",
  14036. extra: 1655/1574,
  14037. bottom: 231/1886
  14038. },
  14039. form: "male",
  14040. },
  14041. female_nude: {
  14042. height: math.unit(5, "feet"),
  14043. name: "Nude",
  14044. image: {
  14045. source: "./media/characters/sammy-mouse/female-nude.svg",
  14046. extra: 1655/1574,
  14047. bottom: 231/1886
  14048. },
  14049. form: "female",
  14050. default: true
  14051. },
  14052. mouth: {
  14053. height: math.unit(0.32, "feet"),
  14054. name: "Mouth",
  14055. image: {
  14056. source: "./media/characters/sammy-mouse/mouth.svg"
  14057. },
  14058. allForms: true
  14059. },
  14060. paw: {
  14061. height: math.unit(0.42, "feet"),
  14062. name: "Paw",
  14063. image: {
  14064. source: "./media/characters/sammy-mouse/paw.svg"
  14065. },
  14066. allForms: true
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Micro",
  14072. height: math.unit(5, "inches"),
  14073. allForms: true
  14074. },
  14075. {
  14076. name: "Normal",
  14077. height: math.unit(5, "feet"),
  14078. default: true,
  14079. allForms: true
  14080. },
  14081. {
  14082. name: "Macro",
  14083. height: math.unit(60, "feet"),
  14084. allForms: true
  14085. },
  14086. ],
  14087. {
  14088. "fluide": {
  14089. name: "Fluide",
  14090. default: true
  14091. },
  14092. "male": {
  14093. name: "Male",
  14094. },
  14095. "female": {
  14096. name: "Female",
  14097. },
  14098. }
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14102. {
  14103. front: {
  14104. height: math.unit(4, "feet"),
  14105. weight: math.unit(50, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/kole/front.svg",
  14109. extra: 1423 / 1303,
  14110. bottom: 0.025
  14111. }
  14112. },
  14113. back: {
  14114. height: math.unit(4, "feet"),
  14115. weight: math.unit(50, "lb"),
  14116. name: "Back",
  14117. image: {
  14118. source: "./media/characters/kole/back.svg",
  14119. extra: 1426 / 1280,
  14120. bottom: 0.02
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(4, "feet"),
  14128. default: true
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14134. {
  14135. front: {
  14136. height: math.unit(2.5, "feet"),
  14137. weight: math.unit(32, "lb"),
  14138. name: "Front",
  14139. image: {
  14140. source: "./media/characters/rufran/front.svg",
  14141. extra: 1313/885,
  14142. bottom: 94/1407
  14143. }
  14144. },
  14145. side: {
  14146. height: math.unit(2.5, "feet"),
  14147. weight: math.unit(32, "lb"),
  14148. name: "Side",
  14149. image: {
  14150. source: "./media/characters/rufran/side.svg",
  14151. extra: 1109/852,
  14152. bottom: 118/1227
  14153. }
  14154. },
  14155. back: {
  14156. height: math.unit(2.5, "feet"),
  14157. weight: math.unit(32, "lb"),
  14158. name: "Back",
  14159. image: {
  14160. source: "./media/characters/rufran/back.svg",
  14161. extra: 1280/878,
  14162. bottom: 131/1411
  14163. }
  14164. },
  14165. mouth: {
  14166. height: math.unit(1.13, "feet"),
  14167. name: "Mouth",
  14168. image: {
  14169. source: "./media/characters/rufran/mouth.svg"
  14170. }
  14171. },
  14172. foot: {
  14173. height: math.unit(1.33, "feet"),
  14174. name: "Foot",
  14175. image: {
  14176. source: "./media/characters/rufran/foot.svg"
  14177. }
  14178. },
  14179. koboldFront: {
  14180. height: math.unit(2 + 6 / 12, "feet"),
  14181. weight: math.unit(20, "lb"),
  14182. name: "Front (Kobold)",
  14183. image: {
  14184. source: "./media/characters/rufran/kobold-front.svg",
  14185. extra: 2041 / 1839,
  14186. bottom: 0.055
  14187. }
  14188. },
  14189. koboldBack: {
  14190. height: math.unit(2 + 6 / 12, "feet"),
  14191. weight: math.unit(20, "lb"),
  14192. name: "Back (Kobold)",
  14193. image: {
  14194. source: "./media/characters/rufran/kobold-back.svg",
  14195. extra: 2054 / 1839,
  14196. bottom: 0.01
  14197. }
  14198. },
  14199. koboldHand: {
  14200. height: math.unit(0.2166, "meters"),
  14201. name: "Hand (Kobold)",
  14202. image: {
  14203. source: "./media/characters/rufran/kobold-hand.svg"
  14204. }
  14205. },
  14206. koboldFoot: {
  14207. height: math.unit(0.185, "meters"),
  14208. name: "Foot (Kobold)",
  14209. image: {
  14210. source: "./media/characters/rufran/kobold-foot.svg"
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Micro",
  14217. height: math.unit(1, "inch")
  14218. },
  14219. {
  14220. name: "Normal",
  14221. height: math.unit(2 + 6 / 12, "feet"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Big",
  14226. height: math.unit(60, "feet")
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(325, "feet")
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14236. {
  14237. front: {
  14238. height: math.unit(0.3, "meters"),
  14239. weight: math.unit(3.5, "kg"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/chip/front.svg",
  14243. extra: 748 / 674
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Micro",
  14250. height: math.unit(1, "inch"),
  14251. default: true
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14257. {
  14258. side: {
  14259. height: math.unit(2.3, "meters"),
  14260. weight: math.unit(3500, "lb"),
  14261. name: "Side",
  14262. image: {
  14263. source: "./media/characters/torvid/side.svg",
  14264. extra: 1972 / 722,
  14265. bottom: 0.035
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Normal",
  14272. height: math.unit(2.3, "meters"),
  14273. default: true
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14279. {
  14280. front: {
  14281. height: math.unit(2, "meters"),
  14282. weight: math.unit(150.5, "kg"),
  14283. name: "Front",
  14284. image: {
  14285. source: "./media/characters/susan/front.svg",
  14286. extra: 693 / 635,
  14287. bottom: 0.05
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Megamacro",
  14294. height: math.unit(505, "miles"),
  14295. default: true
  14296. },
  14297. ]
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14301. {
  14302. front: {
  14303. height: math.unit(6, "feet"),
  14304. weight: math.unit(150, "lb"),
  14305. name: "Front",
  14306. image: {
  14307. source: "./media/characters/raindrops/front.svg",
  14308. extra: 2655 / 2461,
  14309. bottom: 49 / 2705
  14310. }
  14311. },
  14312. back: {
  14313. height: math.unit(6, "feet"),
  14314. weight: math.unit(150, "lb"),
  14315. name: "Back",
  14316. image: {
  14317. source: "./media/characters/raindrops/back.svg",
  14318. extra: 2574 / 2400,
  14319. bottom: 65 / 2634
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Micro",
  14326. height: math.unit(6, "inches")
  14327. },
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(6 + 2 / 12, "feet")
  14331. },
  14332. {
  14333. name: "Macro",
  14334. height: math.unit(131, "feet"),
  14335. default: true
  14336. },
  14337. {
  14338. name: "Megamacro",
  14339. height: math.unit(15, "miles")
  14340. },
  14341. {
  14342. name: "Gigamacro",
  14343. height: math.unit(4000, "miles")
  14344. },
  14345. {
  14346. name: "Teramacro",
  14347. height: math.unit(315000, "miles")
  14348. },
  14349. ]
  14350. ))
  14351. characterMakers.push(() => makeCharacter(
  14352. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14353. {
  14354. front: {
  14355. height: math.unit(2.794, "meters"),
  14356. weight: math.unit(325, "kg"),
  14357. name: "Front",
  14358. image: {
  14359. source: "./media/characters/tezwa/front.svg",
  14360. extra: 2083 / 1906,
  14361. bottom: 0.031
  14362. }
  14363. },
  14364. foot: {
  14365. height: math.unit(0.687, "meters"),
  14366. name: "Foot",
  14367. image: {
  14368. source: "./media/characters/tezwa/foot.svg"
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(9 + 2 / 12, "feet"),
  14376. default: true
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14382. {
  14383. front: {
  14384. height: math.unit(58, "feet"),
  14385. weight: math.unit(89000, "lb"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/typhus/front.svg",
  14389. extra: 816 / 800,
  14390. bottom: 0.065
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Macro",
  14397. height: math.unit(58, "feet"),
  14398. default: true
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14404. {
  14405. front: {
  14406. height: math.unit(12, "feet"),
  14407. weight: math.unit(6, "tonnes"),
  14408. name: "Front",
  14409. image: {
  14410. source: "./media/characters/lyra-von-wulf/front.svg",
  14411. extra: 1,
  14412. bottom: 0.10
  14413. }
  14414. },
  14415. frontMecha: {
  14416. height: math.unit(12, "feet"),
  14417. weight: math.unit(12, "tonnes"),
  14418. name: "Front (Mecha)",
  14419. image: {
  14420. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14421. extra: 1,
  14422. bottom: 0.042
  14423. }
  14424. },
  14425. maw: {
  14426. height: math.unit(2.2, "feet"),
  14427. name: "Maw",
  14428. image: {
  14429. source: "./media/characters/lyra-von-wulf/maw.svg"
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(12, "feet"),
  14437. default: true
  14438. },
  14439. {
  14440. name: "Classic",
  14441. height: math.unit(50, "feet")
  14442. },
  14443. {
  14444. name: "Macro",
  14445. height: math.unit(500, "feet")
  14446. },
  14447. {
  14448. name: "Megamacro",
  14449. height: math.unit(1, "mile")
  14450. },
  14451. {
  14452. name: "Gigamacro",
  14453. height: math.unit(400, "miles")
  14454. },
  14455. {
  14456. name: "Teramacro",
  14457. height: math.unit(22000, "miles")
  14458. },
  14459. {
  14460. name: "Solarmacro",
  14461. height: math.unit(8600000, "miles")
  14462. },
  14463. {
  14464. name: "Galactic",
  14465. height: math.unit(1057000, "lightyears")
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(6 + 10 / 12, "feet"),
  14474. weight: math.unit(150, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/dixon/front.svg",
  14478. extra: 3361 / 3209,
  14479. bottom: 0.01
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(6 + 10 / 12, "feet"),
  14487. default: true
  14488. },
  14489. {
  14490. name: "Big",
  14491. height: math.unit(12, "meters")
  14492. },
  14493. {
  14494. name: "Macro",
  14495. height: math.unit(500, "meters")
  14496. },
  14497. {
  14498. name: "Megamacro",
  14499. height: math.unit(2, "km")
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14505. {
  14506. kingCheetah_front: {
  14507. height: math.unit(1.85, "meters"),
  14508. weight: math.unit(68, "kg"),
  14509. name: "Front",
  14510. image: {
  14511. source: "./media/characters/kauko/king-cheetah-front.svg",
  14512. extra: 1007/972,
  14513. bottom: 35/1042
  14514. },
  14515. form: "king-cheetah",
  14516. default: true
  14517. },
  14518. kingCheetah_back: {
  14519. height: math.unit(1.85, "meters"),
  14520. weight: math.unit(68, "kg"),
  14521. name: "Back",
  14522. image: {
  14523. source: "./media/characters/kauko/king-cheetah-back.svg",
  14524. extra: 1015/980,
  14525. bottom: 11/1026
  14526. },
  14527. form: "king-cheetah",
  14528. },
  14529. kingCheetah_hand: {
  14530. height: math.unit(0.23, "meters"),
  14531. name: "Hand",
  14532. image: {
  14533. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14534. },
  14535. form: "king-cheetah",
  14536. },
  14537. kingCheetah_paw: {
  14538. height: math.unit(0.38, "meters"),
  14539. name: "Paw",
  14540. image: {
  14541. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14542. },
  14543. form: "king-cheetah",
  14544. },
  14545. kingCheetah_nape: {
  14546. height: math.unit(0.23, "meters"),
  14547. name: "Nape",
  14548. image: {
  14549. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14550. },
  14551. form: "king-cheetah",
  14552. },
  14553. wolf_front: {
  14554. height: math.unit(1.88, "meters"),
  14555. weight: math.unit(74, "kg"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/kauko/wolf-front.svg",
  14559. extra: 952/908,
  14560. bottom: 64/1016
  14561. },
  14562. form: "wolf",
  14563. default: true
  14564. },
  14565. wolf_dressed: {
  14566. height: math.unit(1.88, "meters"),
  14567. weight: math.unit(74, "kg"),
  14568. name: "Dressed",
  14569. image: {
  14570. source: "./media/characters/kauko/wolf-dressed.svg",
  14571. extra: 963/916,
  14572. bottom: 101/1064
  14573. },
  14574. form: "wolf",
  14575. },
  14576. wolf_hand: {
  14577. height: math.unit(0.3, "meters"),
  14578. name: "Hand",
  14579. image: {
  14580. source: "./media/characters/kauko/wolf-hand.svg"
  14581. },
  14582. form: "wolf",
  14583. },
  14584. wolf_paw: {
  14585. height: math.unit(0.407, "meters"),
  14586. name: "Paw",
  14587. image: {
  14588. source: "./media/characters/kauko/wolf-paw.svg"
  14589. },
  14590. form: "wolf",
  14591. },
  14592. wolf_nape: {
  14593. height: math.unit(0.25, "meters"),
  14594. name: "Nape",
  14595. image: {
  14596. source: "./media/characters/kauko/wolf-nape.svg"
  14597. },
  14598. form: "wolf",
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Normal",
  14604. height: math.unit(1.85, "m"),
  14605. default: true,
  14606. form: "king-cheetah"
  14607. },
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(1.88, "m"),
  14611. default: true,
  14612. form: "wolf"
  14613. },
  14614. ],
  14615. {
  14616. "king-cheetah": {
  14617. name: "King Cheetah",
  14618. default: true
  14619. },
  14620. "wolf": {
  14621. name: "Wolf",
  14622. },
  14623. }
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14627. {
  14628. frontSfw: {
  14629. height: math.unit(5, "meters"),
  14630. weight: math.unit(4250, "lb"),
  14631. name: "Front",
  14632. image: {
  14633. source: "./media/characters/varg/front-sfw.svg",
  14634. extra: 1103/1010,
  14635. bottom: 50/1153
  14636. },
  14637. form: "anthro",
  14638. default: true
  14639. },
  14640. backSfw: {
  14641. height: math.unit(5, "meters"),
  14642. weight: math.unit(4250, "lb"),
  14643. name: "Back",
  14644. image: {
  14645. source: "./media/characters/varg/back-sfw.svg",
  14646. extra: 1038/1022,
  14647. bottom: 36/1074
  14648. },
  14649. form: "anthro"
  14650. },
  14651. frontNsfw: {
  14652. height: math.unit(5, "meters"),
  14653. weight: math.unit(4250, "lb"),
  14654. name: "Front (NSFW)",
  14655. image: {
  14656. source: "./media/characters/varg/front-nsfw.svg",
  14657. extra: 1103/1010,
  14658. bottom: 50/1153
  14659. },
  14660. form: "anthro"
  14661. },
  14662. sheath: {
  14663. height: math.unit(3.8, "feet"),
  14664. weight: math.unit(90, "kilograms"),
  14665. name: "Sheath",
  14666. image: {
  14667. source: "./media/characters/varg/sheath.svg"
  14668. },
  14669. form: "anthro"
  14670. },
  14671. dick: {
  14672. height: math.unit(4.6, "feet"),
  14673. weight: math.unit(451, "kilograms"),
  14674. name: "Dick",
  14675. image: {
  14676. source: "./media/characters/varg/dick.svg"
  14677. },
  14678. form: "anthro"
  14679. },
  14680. feralSfw: {
  14681. height: math.unit(5, "meters"),
  14682. weight: math.unit(100000, "lb"),
  14683. name: "Side",
  14684. image: {
  14685. source: "./media/characters/varg/feral-sfw.svg",
  14686. extra: 1065/511,
  14687. bottom: 211/1276
  14688. },
  14689. form: "feral",
  14690. default: true
  14691. },
  14692. feralNsfw: {
  14693. height: math.unit(5, "meters"),
  14694. weight: math.unit(100000, "lb"),
  14695. name: "Side (NSFW)",
  14696. image: {
  14697. source: "./media/characters/varg/feral-nsfw.svg",
  14698. extra: 1065/511,
  14699. bottom: 211/1276
  14700. },
  14701. form: "feral",
  14702. },
  14703. feralSheath: {
  14704. height: math.unit(9.8, "feet"),
  14705. weight: math.unit(2000, "kilograms"),
  14706. name: "Sheath",
  14707. image: {
  14708. source: "./media/characters/varg/sheath.svg"
  14709. },
  14710. form: "feral"
  14711. },
  14712. feralDick: {
  14713. height: math.unit(13.11, "feet"),
  14714. weight: math.unit(10440, "kilograms"),
  14715. name: "Dick",
  14716. image: {
  14717. source: "./media/characters/varg/dick.svg"
  14718. },
  14719. form: "feral"
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(5, "meters"),
  14726. form: "anthro"
  14727. },
  14728. {
  14729. name: "Macro",
  14730. height: math.unit(200, "meters"),
  14731. form: "anthro"
  14732. },
  14733. {
  14734. name: "Megamacro",
  14735. height: math.unit(20, "kilometers"),
  14736. form: "anthro"
  14737. },
  14738. {
  14739. name: "True Size",
  14740. height: math.unit(211, "km"),
  14741. form: "anthro",
  14742. default: true
  14743. },
  14744. {
  14745. name: "Gigamacro",
  14746. height: math.unit(1000, "km"),
  14747. form: "anthro"
  14748. },
  14749. {
  14750. name: "Gigamacro+",
  14751. height: math.unit(8000, "km"),
  14752. form: "anthro"
  14753. },
  14754. {
  14755. name: "Teramacro",
  14756. height: math.unit(1000000, "km"),
  14757. form: "anthro"
  14758. },
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(5, "meters"),
  14762. form: "feral"
  14763. },
  14764. {
  14765. name: "Macro",
  14766. height: math.unit(200, "meters"),
  14767. form: "feral"
  14768. },
  14769. {
  14770. name: "Megamacro",
  14771. height: math.unit(20, "kilometers"),
  14772. form: "feral"
  14773. },
  14774. {
  14775. name: "True Size",
  14776. height: math.unit(211, "km"),
  14777. form: "feral",
  14778. default: true
  14779. },
  14780. {
  14781. name: "Gigamacro",
  14782. height: math.unit(1000, "km"),
  14783. form: "feral"
  14784. },
  14785. {
  14786. name: "Gigamacro+",
  14787. height: math.unit(8000, "km"),
  14788. form: "feral"
  14789. },
  14790. {
  14791. name: "Teramacro",
  14792. height: math.unit(1000000, "km"),
  14793. form: "feral"
  14794. },
  14795. ],
  14796. {
  14797. "anthro": {
  14798. name: "Anthro",
  14799. default: true
  14800. },
  14801. "feral": {
  14802. name: "Feral",
  14803. },
  14804. }
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(7 + 7 / 12, "feet"),
  14811. weight: math.unit(267, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/dayza/front.svg",
  14815. extra: 1262 / 1200,
  14816. bottom: 0.035
  14817. }
  14818. },
  14819. side: {
  14820. height: math.unit(7 + 7 / 12, "feet"),
  14821. weight: math.unit(267, "lb"),
  14822. name: "Side",
  14823. image: {
  14824. source: "./media/characters/dayza/side.svg",
  14825. extra: 1295 / 1245,
  14826. bottom: 0.05
  14827. }
  14828. },
  14829. back: {
  14830. height: math.unit(7 + 7 / 12, "feet"),
  14831. weight: math.unit(267, "lb"),
  14832. name: "Back",
  14833. image: {
  14834. source: "./media/characters/dayza/back.svg",
  14835. extra: 1241 / 1170
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(7 + 7 / 12, "feet"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "Macro",
  14847. height: math.unit(155, "feet")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(6 + 5 / 12, "feet"),
  14856. weight: math.unit(160, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/xanthos/front.svg",
  14860. extra: 1,
  14861. bottom: 0.04
  14862. }
  14863. },
  14864. back: {
  14865. height: math.unit(6 + 5 / 12, "feet"),
  14866. weight: math.unit(160, "lb"),
  14867. name: "Back",
  14868. image: {
  14869. source: "./media/characters/xanthos/back.svg",
  14870. extra: 1,
  14871. bottom: 0.03
  14872. }
  14873. },
  14874. hand: {
  14875. height: math.unit(0.928, "feet"),
  14876. name: "Hand",
  14877. image: {
  14878. source: "./media/characters/xanthos/hand.svg"
  14879. }
  14880. },
  14881. foot: {
  14882. height: math.unit(1.286, "feet"),
  14883. name: "Foot",
  14884. image: {
  14885. source: "./media/characters/xanthos/foot.svg"
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Normal",
  14892. height: math.unit(6 + 5 / 12, "feet"),
  14893. default: true
  14894. },
  14895. {
  14896. name: "Normal+",
  14897. height: math.unit(6, "meters")
  14898. },
  14899. {
  14900. name: "Macro",
  14901. height: math.unit(40, "feet")
  14902. },
  14903. {
  14904. name: "Macro+",
  14905. height: math.unit(200, "meters")
  14906. },
  14907. {
  14908. name: "Megamacro",
  14909. height: math.unit(20, "km")
  14910. },
  14911. {
  14912. name: "Megamacro+",
  14913. height: math.unit(100, "km")
  14914. },
  14915. {
  14916. name: "Gigamacro",
  14917. height: math.unit(200, "megameters")
  14918. },
  14919. {
  14920. name: "Gigamacro+",
  14921. height: math.unit(1.5, "gigameters")
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14927. {
  14928. front: {
  14929. height: math.unit(6 + 3 / 12, "feet"),
  14930. weight: math.unit(215, "lb"),
  14931. name: "Front",
  14932. image: {
  14933. source: "./media/characters/grynn/front.svg",
  14934. extra: 4627 / 4209,
  14935. bottom: 0.047
  14936. }
  14937. },
  14938. },
  14939. [
  14940. {
  14941. name: "Micro",
  14942. height: math.unit(6, "inches")
  14943. },
  14944. {
  14945. name: "Normal",
  14946. height: math.unit(6 + 3 / 12, "feet"),
  14947. default: true
  14948. },
  14949. {
  14950. name: "Big",
  14951. height: math.unit(104, "feet")
  14952. },
  14953. {
  14954. name: "Macro",
  14955. height: math.unit(944, "feet")
  14956. },
  14957. {
  14958. name: "Macro+",
  14959. height: math.unit(9480, "feet")
  14960. },
  14961. {
  14962. name: "Megamacro",
  14963. height: math.unit(78752, "feet")
  14964. },
  14965. {
  14966. name: "Megamacro+",
  14967. height: math.unit(630128, "feet")
  14968. },
  14969. {
  14970. name: "Megamacro++",
  14971. height: math.unit(3150695, "feet")
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14977. {
  14978. front: {
  14979. height: math.unit(7 + 5 / 12, "feet"),
  14980. weight: math.unit(450, "lb"),
  14981. name: "Front",
  14982. image: {
  14983. source: "./media/characters/mocha-aura/front.svg",
  14984. extra: 1907 / 1817,
  14985. bottom: 0.04
  14986. }
  14987. },
  14988. back: {
  14989. height: math.unit(7 + 5 / 12, "feet"),
  14990. weight: math.unit(450, "lb"),
  14991. name: "Back",
  14992. image: {
  14993. source: "./media/characters/mocha-aura/back.svg",
  14994. extra: 1900 / 1825,
  14995. bottom: 0.045
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Nano",
  15002. height: math.unit(1, "nm")
  15003. },
  15004. {
  15005. name: "Megamicro",
  15006. height: math.unit(1, "mm")
  15007. },
  15008. {
  15009. name: "Micro",
  15010. height: math.unit(3, "inches")
  15011. },
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(7 + 5 / 12, "feet"),
  15015. default: true
  15016. },
  15017. {
  15018. name: "Macro",
  15019. height: math.unit(30, "feet")
  15020. },
  15021. {
  15022. name: "Megamacro",
  15023. height: math.unit(3500, "feet")
  15024. },
  15025. {
  15026. name: "Teramacro",
  15027. height: math.unit(500000, "miles")
  15028. },
  15029. {
  15030. name: "Petamacro",
  15031. height: math.unit(50000000000000000, "parsecs")
  15032. },
  15033. ]
  15034. ))
  15035. characterMakers.push(() => makeCharacter(
  15036. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15037. {
  15038. front: {
  15039. height: math.unit(6, "feet"),
  15040. weight: math.unit(150, "lb"),
  15041. name: "Front",
  15042. image: {
  15043. source: "./media/characters/ilisha-devya/front.svg",
  15044. extra: 1053/1049,
  15045. bottom: 270/1323
  15046. }
  15047. },
  15048. back: {
  15049. height: math.unit(6, "feet"),
  15050. weight: math.unit(150, "lb"),
  15051. name: "Back",
  15052. image: {
  15053. source: "./media/characters/ilisha-devya/back.svg",
  15054. extra: 1131/1128,
  15055. bottom: 39/1170
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Macro",
  15062. height: math.unit(500, "feet"),
  15063. default: true
  15064. },
  15065. {
  15066. name: "Megamacro",
  15067. height: math.unit(10, "miles")
  15068. },
  15069. {
  15070. name: "Gigamacro",
  15071. height: math.unit(100000, "miles")
  15072. },
  15073. {
  15074. name: "Examacro",
  15075. height: math.unit(1e9, "lightyears")
  15076. },
  15077. {
  15078. name: "Omniversal",
  15079. height: math.unit(1e33, "lightyears")
  15080. },
  15081. {
  15082. name: "Beyond Infinite",
  15083. height: math.unit(1e100, "lightyears")
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15089. {
  15090. Side: {
  15091. height: math.unit(6, "feet"),
  15092. weight: math.unit(150, "lb"),
  15093. name: "Side",
  15094. image: {
  15095. source: "./media/characters/mira/side.svg",
  15096. extra: 900 / 799,
  15097. bottom: 0.02
  15098. }
  15099. },
  15100. },
  15101. [
  15102. {
  15103. name: "Human Size",
  15104. height: math.unit(6, "feet")
  15105. },
  15106. {
  15107. name: "Macro",
  15108. height: math.unit(100, "feet"),
  15109. default: true
  15110. },
  15111. {
  15112. name: "Megamacro",
  15113. height: math.unit(10, "miles")
  15114. },
  15115. {
  15116. name: "Gigamacro",
  15117. height: math.unit(25000, "miles")
  15118. },
  15119. {
  15120. name: "Teramacro",
  15121. height: math.unit(300, "AU")
  15122. },
  15123. {
  15124. name: "Full Size",
  15125. height: math.unit(4.5e10, "lightyears")
  15126. },
  15127. ]
  15128. ))
  15129. characterMakers.push(() => makeCharacter(
  15130. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15131. {
  15132. front: {
  15133. height: math.unit(6, "feet"),
  15134. weight: math.unit(150, "lb"),
  15135. name: "Front",
  15136. image: {
  15137. source: "./media/characters/holly/front.svg",
  15138. extra: 639 / 606
  15139. }
  15140. },
  15141. back: {
  15142. height: math.unit(6, "feet"),
  15143. weight: math.unit(150, "lb"),
  15144. name: "Back",
  15145. image: {
  15146. source: "./media/characters/holly/back.svg",
  15147. extra: 623 / 598
  15148. }
  15149. },
  15150. frontWorking: {
  15151. height: math.unit(6, "feet"),
  15152. weight: math.unit(150, "lb"),
  15153. name: "Front (Working)",
  15154. image: {
  15155. source: "./media/characters/holly/front-working.svg",
  15156. extra: 607 / 577,
  15157. bottom: 0.048
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Normal",
  15164. height: math.unit(12 + 3 / 12, "feet"),
  15165. default: true
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(6, "feet"),
  15174. weight: math.unit(150, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/porter/front.svg",
  15178. extra: 1,
  15179. bottom: 0.01
  15180. }
  15181. },
  15182. frontRobes: {
  15183. height: math.unit(6, "feet"),
  15184. weight: math.unit(150, "lb"),
  15185. name: "Front (Robes)",
  15186. image: {
  15187. source: "./media/characters/porter/front-robes.svg",
  15188. extra: 1.01,
  15189. bottom: 0.01
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Normal",
  15196. height: math.unit(11 + 9 / 12, "feet"),
  15197. default: true
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15203. {
  15204. legendary: {
  15205. height: math.unit(6, "feet"),
  15206. weight: math.unit(150, "lb"),
  15207. name: "Legendary",
  15208. image: {
  15209. source: "./media/characters/lucy/legendary.svg",
  15210. extra: 1355 / 1100,
  15211. bottom: 0.045
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Legendary",
  15218. height: math.unit(86882 * 2, "miles"),
  15219. default: true
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15225. {
  15226. front: {
  15227. height: math.unit(6, "feet"),
  15228. weight: math.unit(150, "lb"),
  15229. name: "Front",
  15230. image: {
  15231. source: "./media/characters/drusilla/front.svg",
  15232. extra: 678 / 635,
  15233. bottom: 0.03
  15234. }
  15235. },
  15236. back: {
  15237. height: math.unit(6, "feet"),
  15238. weight: math.unit(150, "lb"),
  15239. name: "Back",
  15240. image: {
  15241. source: "./media/characters/drusilla/back.svg",
  15242. extra: 678 / 635,
  15243. bottom: 0.005
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Macro",
  15250. height: math.unit(100, "feet")
  15251. },
  15252. {
  15253. name: "Canon Height",
  15254. height: math.unit(2000, "feet"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(6, "feet"),
  15264. weight: math.unit(180, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/renard-thatch/front.svg",
  15268. extra: 2411 / 2275,
  15269. bottom: 0.01
  15270. }
  15271. },
  15272. frontPosing: {
  15273. height: math.unit(6, "feet"),
  15274. weight: math.unit(180, "lb"),
  15275. name: "Front (Posing)",
  15276. image: {
  15277. source: "./media/characters/renard-thatch/front-posing.svg",
  15278. extra: 2381 / 2261,
  15279. bottom: 0.01
  15280. }
  15281. },
  15282. back: {
  15283. height: math.unit(6, "feet"),
  15284. weight: math.unit(180, "lb"),
  15285. name: "Back",
  15286. image: {
  15287. source: "./media/characters/renard-thatch/back.svg",
  15288. extra: 2428 / 2288
  15289. }
  15290. },
  15291. },
  15292. [
  15293. {
  15294. name: "Micro",
  15295. height: math.unit(3, "inches")
  15296. },
  15297. {
  15298. name: "Default",
  15299. height: math.unit(6, "feet"),
  15300. default: true
  15301. },
  15302. {
  15303. name: "Macro",
  15304. height: math.unit(75, "feet")
  15305. },
  15306. ]
  15307. ))
  15308. characterMakers.push(() => makeCharacter(
  15309. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15310. {
  15311. front: {
  15312. height: math.unit(1450, "feet"),
  15313. weight: math.unit(1.21e6, "tons"),
  15314. name: "Front",
  15315. image: {
  15316. source: "./media/characters/sekvra/front.svg",
  15317. extra: 1193/1190,
  15318. bottom: 78/1271
  15319. }
  15320. },
  15321. side: {
  15322. height: math.unit(1450, "feet"),
  15323. weight: math.unit(1.21e6, "tons"),
  15324. name: "Side",
  15325. image: {
  15326. source: "./media/characters/sekvra/side.svg",
  15327. extra: 1193/1190,
  15328. bottom: 52/1245
  15329. }
  15330. },
  15331. back: {
  15332. height: math.unit(1450, "feet"),
  15333. weight: math.unit(1.21e6, "tons"),
  15334. name: "Back",
  15335. image: {
  15336. source: "./media/characters/sekvra/back.svg",
  15337. extra: 1219/1216,
  15338. bottom: 21/1240
  15339. }
  15340. },
  15341. frontClothed: {
  15342. height: math.unit(1450, "feet"),
  15343. weight: math.unit(1.21e6, "tons"),
  15344. name: "Front (Clothed)",
  15345. image: {
  15346. source: "./media/characters/sekvra/front-clothed.svg",
  15347. extra: 1192/1189,
  15348. bottom: 79/1271
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Macro",
  15355. height: math.unit(1450, "feet"),
  15356. default: true
  15357. },
  15358. {
  15359. name: "Megamacro",
  15360. height: math.unit(15000, "feet")
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(6, "feet"),
  15369. weight: math.unit(150, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/carmine/front.svg",
  15373. extra: 1557/1538,
  15374. bottom: 68/1625
  15375. }
  15376. },
  15377. frontArmor: {
  15378. height: math.unit(6, "feet"),
  15379. weight: math.unit(150, "lb"),
  15380. name: "Front (Armor)",
  15381. image: {
  15382. source: "./media/characters/carmine/front-armor.svg",
  15383. extra: 1549/1530,
  15384. bottom: 82/1631
  15385. }
  15386. },
  15387. mouth: {
  15388. height: math.unit(0.55, "feet"),
  15389. name: "Mouth",
  15390. image: {
  15391. source: "./media/characters/carmine/mouth.svg"
  15392. }
  15393. },
  15394. hand: {
  15395. height: math.unit(1.05, "feet"),
  15396. name: "Hand",
  15397. image: {
  15398. source: "./media/characters/carmine/hand.svg"
  15399. }
  15400. },
  15401. foot: {
  15402. height: math.unit(0.6, "feet"),
  15403. name: "Foot",
  15404. image: {
  15405. source: "./media/characters/carmine/foot.svg"
  15406. }
  15407. },
  15408. },
  15409. [
  15410. {
  15411. name: "Large",
  15412. height: math.unit(1, "mile")
  15413. },
  15414. {
  15415. name: "Huge",
  15416. height: math.unit(40, "miles"),
  15417. default: true
  15418. },
  15419. {
  15420. name: "Colossal",
  15421. height: math.unit(2500, "miles")
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(6, "feet"),
  15430. weight: math.unit(150, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/elyssia/front.svg",
  15434. extra: 2201 / 2035,
  15435. bottom: 0.05
  15436. }
  15437. },
  15438. frontClothed: {
  15439. height: math.unit(6, "feet"),
  15440. weight: math.unit(150, "lb"),
  15441. name: "Front (Clothed)",
  15442. image: {
  15443. source: "./media/characters/elyssia/front-clothed.svg",
  15444. extra: 2201 / 2035,
  15445. bottom: 0.05
  15446. }
  15447. },
  15448. back: {
  15449. height: math.unit(6, "feet"),
  15450. weight: math.unit(150, "lb"),
  15451. name: "Back",
  15452. image: {
  15453. source: "./media/characters/elyssia/back.svg",
  15454. extra: 2201 / 2035,
  15455. bottom: 0.013
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Smaller",
  15462. height: math.unit(150, "feet")
  15463. },
  15464. {
  15465. name: "Standard",
  15466. height: math.unit(1400, "feet"),
  15467. default: true
  15468. },
  15469. {
  15470. name: "Distracted",
  15471. height: math.unit(15000, "feet")
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(7 + 4/12, "feet"),
  15480. weight: math.unit(690, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/geno-maxwell/front.svg",
  15484. extra: 984/856,
  15485. bottom: 87/1071
  15486. }
  15487. },
  15488. back: {
  15489. height: math.unit(7 + 4/12, "feet"),
  15490. weight: math.unit(690, "lb"),
  15491. name: "Back",
  15492. image: {
  15493. source: "./media/characters/geno-maxwell/back.svg",
  15494. extra: 981/854,
  15495. bottom: 57/1038
  15496. }
  15497. },
  15498. frontCostume: {
  15499. height: math.unit(7 + 4/12, "feet"),
  15500. weight: math.unit(690, "lb"),
  15501. name: "Front (Costume)",
  15502. image: {
  15503. source: "./media/characters/geno-maxwell/front-costume.svg",
  15504. extra: 984/856,
  15505. bottom: 87/1071
  15506. }
  15507. },
  15508. backcostume: {
  15509. height: math.unit(7 + 4/12, "feet"),
  15510. weight: math.unit(690, "lb"),
  15511. name: "Back (Costume)",
  15512. image: {
  15513. source: "./media/characters/geno-maxwell/back-costume.svg",
  15514. extra: 981/854,
  15515. bottom: 57/1038
  15516. }
  15517. },
  15518. },
  15519. [
  15520. {
  15521. name: "Micro",
  15522. height: math.unit(3, "inches")
  15523. },
  15524. {
  15525. name: "Normal",
  15526. height: math.unit(7 + 4 / 12, "feet"),
  15527. default: true
  15528. },
  15529. {
  15530. name: "Macro",
  15531. height: math.unit(220, "feet")
  15532. },
  15533. {
  15534. name: "Megamacro",
  15535. height: math.unit(11, "miles")
  15536. },
  15537. ]
  15538. ))
  15539. characterMakers.push(() => makeCharacter(
  15540. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15541. {
  15542. front: {
  15543. height: math.unit(7 + 4/12, "feet"),
  15544. weight: math.unit(750, "lb"),
  15545. name: "Front",
  15546. image: {
  15547. source: "./media/characters/regena-maxwell/front.svg",
  15548. extra: 984/856,
  15549. bottom: 87/1071
  15550. }
  15551. },
  15552. back: {
  15553. height: math.unit(7 + 4/12, "feet"),
  15554. weight: math.unit(750, "lb"),
  15555. name: "Back",
  15556. image: {
  15557. source: "./media/characters/regena-maxwell/back.svg",
  15558. extra: 981/854,
  15559. bottom: 57/1038
  15560. }
  15561. },
  15562. frontCostume: {
  15563. height: math.unit(7 + 4/12, "feet"),
  15564. weight: math.unit(750, "lb"),
  15565. name: "Front (Costume)",
  15566. image: {
  15567. source: "./media/characters/regena-maxwell/front-costume.svg",
  15568. extra: 984/856,
  15569. bottom: 87/1071
  15570. }
  15571. },
  15572. backcostume: {
  15573. height: math.unit(7 + 4/12, "feet"),
  15574. weight: math.unit(750, "lb"),
  15575. name: "Back (Costume)",
  15576. image: {
  15577. source: "./media/characters/regena-maxwell/back-costume.svg",
  15578. extra: 981/854,
  15579. bottom: 57/1038
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Normal",
  15586. height: math.unit(7 + 4 / 12, "feet"),
  15587. default: true
  15588. },
  15589. {
  15590. name: "Macro",
  15591. height: math.unit(220, "feet")
  15592. },
  15593. {
  15594. name: "Megamacro",
  15595. height: math.unit(11, "miles")
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15601. {
  15602. front: {
  15603. height: math.unit(6, "feet"),
  15604. weight: math.unit(150, "lb"),
  15605. name: "Front",
  15606. image: {
  15607. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15608. extra: 860 / 690,
  15609. bottom: 0.03
  15610. }
  15611. },
  15612. },
  15613. [
  15614. {
  15615. name: "Normal",
  15616. height: math.unit(1.7, "meters"),
  15617. default: true
  15618. },
  15619. ]
  15620. ))
  15621. characterMakers.push(() => makeCharacter(
  15622. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15623. {
  15624. front: {
  15625. height: math.unit(6, "feet"),
  15626. weight: math.unit(150, "lb"),
  15627. name: "Front",
  15628. image: {
  15629. source: "./media/characters/quilly/front.svg",
  15630. extra: 890 / 776
  15631. }
  15632. },
  15633. },
  15634. [
  15635. {
  15636. name: "Gigamacro",
  15637. height: math.unit(404090, "miles"),
  15638. default: true
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(7 + 8 / 12, "feet"),
  15647. weight: math.unit(350, "lb"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/tempest/front.svg",
  15651. extra: 1175 / 1086,
  15652. bottom: 0.02
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(7 + 8 / 12, "feet"),
  15660. default: true
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15666. {
  15667. side: {
  15668. height: math.unit(4 + 5 / 12, "feet"),
  15669. weight: math.unit(80, "lb"),
  15670. name: "Side",
  15671. image: {
  15672. source: "./media/characters/rodger/side.svg",
  15673. extra: 1235 / 1118
  15674. }
  15675. },
  15676. },
  15677. [
  15678. {
  15679. name: "Micro",
  15680. height: math.unit(1, "inch")
  15681. },
  15682. {
  15683. name: "Normal",
  15684. height: math.unit(4 + 5 / 12, "feet"),
  15685. default: true
  15686. },
  15687. {
  15688. name: "Macro",
  15689. height: math.unit(120, "feet")
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(6, "feet"),
  15698. weight: math.unit(150, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/danyel/front.svg",
  15702. extra: 1185 / 1123,
  15703. bottom: 0.05
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Shrunken",
  15710. height: math.unit(0.5, "mm")
  15711. },
  15712. {
  15713. name: "Micro",
  15714. height: math.unit(1, "mm"),
  15715. default: true
  15716. },
  15717. {
  15718. name: "Upsized",
  15719. height: math.unit(5 + 5 / 12, "feet")
  15720. },
  15721. ]
  15722. ))
  15723. characterMakers.push(() => makeCharacter(
  15724. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15725. {
  15726. front: {
  15727. height: math.unit(5 + 6 / 12, "feet"),
  15728. weight: math.unit(200, "lb"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/vivian-bijoux/front.svg",
  15732. extra: 1217/1209,
  15733. bottom: 76/1293
  15734. }
  15735. },
  15736. back: {
  15737. height: math.unit(5 + 6 / 12, "feet"),
  15738. weight: math.unit(200, "lb"),
  15739. name: "Back",
  15740. image: {
  15741. source: "./media/characters/vivian-bijoux/back.svg",
  15742. extra: 1214/1208,
  15743. bottom: 51/1265
  15744. }
  15745. },
  15746. dressed: {
  15747. height: math.unit(5 + 6 / 12, "feet"),
  15748. weight: math.unit(200, "lb"),
  15749. name: "Dressed",
  15750. image: {
  15751. source: "./media/characters/vivian-bijoux/dressed.svg",
  15752. extra: 1217/1209,
  15753. bottom: 76/1293
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(5 + 6 / 12, "feet"),
  15761. default: true
  15762. },
  15763. {
  15764. name: "Bad Dream",
  15765. height: math.unit(500, "feet")
  15766. },
  15767. {
  15768. name: "Nightmare",
  15769. height: math.unit(500, "miles")
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(6 + 1 / 12, "feet"),
  15778. weight: math.unit(260, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/zeta/front.svg",
  15782. extra: 1968 / 1889,
  15783. bottom: 0.06
  15784. }
  15785. },
  15786. back: {
  15787. height: math.unit(6 + 1 / 12, "feet"),
  15788. weight: math.unit(260, "lb"),
  15789. name: "Back",
  15790. image: {
  15791. source: "./media/characters/zeta/back.svg",
  15792. extra: 1944 / 1858,
  15793. bottom: 0.03
  15794. }
  15795. },
  15796. hand: {
  15797. height: math.unit(1.112, "feet"),
  15798. name: "Hand",
  15799. image: {
  15800. source: "./media/characters/zeta/hand.svg"
  15801. }
  15802. },
  15803. foot: {
  15804. height: math.unit(1.48, "feet"),
  15805. name: "Foot",
  15806. image: {
  15807. source: "./media/characters/zeta/foot.svg"
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Micro",
  15814. height: math.unit(6, "inches")
  15815. },
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(6 + 1 / 12, "feet"),
  15819. default: true
  15820. },
  15821. {
  15822. name: "Macro",
  15823. height: math.unit(20, "feet")
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(6, "feet"),
  15832. weight: math.unit(150, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/jamie-larsen/front.svg",
  15836. extra: 962 / 933,
  15837. bottom: 0.02
  15838. }
  15839. },
  15840. back: {
  15841. height: math.unit(6, "feet"),
  15842. weight: math.unit(150, "lb"),
  15843. name: "Back",
  15844. image: {
  15845. source: "./media/characters/jamie-larsen/back.svg",
  15846. extra: 997 / 946
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Macro",
  15853. height: math.unit(28 + 7 / 12, "feet"),
  15854. default: true
  15855. },
  15856. {
  15857. name: "Macro+",
  15858. height: math.unit(180, "feet")
  15859. },
  15860. {
  15861. name: "Megamacro",
  15862. height: math.unit(10, "miles")
  15863. },
  15864. {
  15865. name: "Gigamacro",
  15866. height: math.unit(200000, "miles")
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(6, "feet"),
  15875. weight: math.unit(120, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/vance/front.svg",
  15879. extra: 1980 / 1890,
  15880. bottom: 0.09
  15881. }
  15882. },
  15883. back: {
  15884. height: math.unit(6, "feet"),
  15885. weight: math.unit(120, "lb"),
  15886. name: "Back",
  15887. image: {
  15888. source: "./media/characters/vance/back.svg",
  15889. extra: 2081 / 1994,
  15890. bottom: 0.014
  15891. }
  15892. },
  15893. hand: {
  15894. height: math.unit(0.88, "feet"),
  15895. name: "Hand",
  15896. image: {
  15897. source: "./media/characters/vance/hand.svg"
  15898. }
  15899. },
  15900. foot: {
  15901. height: math.unit(0.64, "feet"),
  15902. name: "Foot",
  15903. image: {
  15904. source: "./media/characters/vance/foot.svg"
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Small",
  15911. height: math.unit(90, "feet"),
  15912. default: true
  15913. },
  15914. {
  15915. name: "Macro",
  15916. height: math.unit(100, "meters")
  15917. },
  15918. {
  15919. name: "Megamacro",
  15920. height: math.unit(15, "miles")
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(6, "feet"),
  15929. weight: math.unit(180, "lb"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/xochitl/front.svg",
  15933. extra: 2297 / 2261,
  15934. bottom: 0.065
  15935. }
  15936. },
  15937. back: {
  15938. height: math.unit(6, "feet"),
  15939. weight: math.unit(180, "lb"),
  15940. name: "Back",
  15941. image: {
  15942. source: "./media/characters/xochitl/back.svg",
  15943. extra: 2386 / 2354,
  15944. bottom: 0.01
  15945. }
  15946. },
  15947. foot: {
  15948. height: math.unit(6 / 5 * 1.15, "feet"),
  15949. weight: math.unit(150, "lb"),
  15950. name: "Foot",
  15951. image: {
  15952. source: "./media/characters/xochitl/foot.svg"
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Macro",
  15959. height: math.unit(80, "feet")
  15960. },
  15961. {
  15962. name: "Macro+",
  15963. height: math.unit(400, "feet"),
  15964. default: true
  15965. },
  15966. {
  15967. name: "Gigamacro",
  15968. height: math.unit(80000, "miles")
  15969. },
  15970. {
  15971. name: "Gigamacro+",
  15972. height: math.unit(400000, "miles")
  15973. },
  15974. {
  15975. name: "Teramacro",
  15976. height: math.unit(300, "AU")
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15982. {
  15983. front: {
  15984. height: math.unit(6, "feet"),
  15985. weight: math.unit(150, "lb"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/vincent/front.svg",
  15989. extra: 1130 / 1080,
  15990. bottom: 0.055
  15991. }
  15992. },
  15993. beak: {
  15994. height: math.unit(6 * 0.1, "feet"),
  15995. name: "Beak",
  15996. image: {
  15997. source: "./media/characters/vincent/beak.svg"
  15998. }
  15999. },
  16000. hand: {
  16001. height: math.unit(6 * 0.85, "feet"),
  16002. weight: math.unit(150, "lb"),
  16003. name: "Hand",
  16004. image: {
  16005. source: "./media/characters/vincent/hand.svg"
  16006. }
  16007. },
  16008. foot: {
  16009. height: math.unit(6 * 0.19, "feet"),
  16010. weight: math.unit(150, "lb"),
  16011. name: "Foot",
  16012. image: {
  16013. source: "./media/characters/vincent/foot.svg"
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Base",
  16020. height: math.unit(6 + 5 / 12, "feet"),
  16021. default: true
  16022. },
  16023. {
  16024. name: "Macro",
  16025. height: math.unit(300, "feet")
  16026. },
  16027. {
  16028. name: "Megamacro",
  16029. height: math.unit(2, "miles")
  16030. },
  16031. {
  16032. name: "Gigamacro",
  16033. height: math.unit(1000, "miles")
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(2, "meters"),
  16042. weight: math.unit(500, "kg"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/coatl/front.svg",
  16046. extra: 3948 / 3500,
  16047. bottom: 0.082
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(4, "meters")
  16055. },
  16056. {
  16057. name: "Macro",
  16058. height: math.unit(100, "meters"),
  16059. default: true
  16060. },
  16061. {
  16062. name: "Macro+",
  16063. height: math.unit(300, "meters")
  16064. },
  16065. {
  16066. name: "Megamacro",
  16067. height: math.unit(3, "gigameters")
  16068. },
  16069. {
  16070. name: "Megamacro+",
  16071. height: math.unit(300, "terameters")
  16072. },
  16073. {
  16074. name: "Megamacro++",
  16075. height: math.unit(3, "lightyears")
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16081. {
  16082. front: {
  16083. height: math.unit(6, "feet"),
  16084. weight: math.unit(50, "kg"),
  16085. name: "front",
  16086. image: {
  16087. source: "./media/characters/shiroryu/front.svg",
  16088. extra: 1990 / 1935
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Mortal Mingling",
  16095. height: math.unit(3, "meters")
  16096. },
  16097. {
  16098. name: "Kaiju-ish",
  16099. height: math.unit(250, "meters")
  16100. },
  16101. {
  16102. name: "Somewhat Godly",
  16103. height: math.unit(400, "km"),
  16104. default: true
  16105. },
  16106. {
  16107. name: "Planetary",
  16108. height: math.unit(300, "megameters")
  16109. },
  16110. {
  16111. name: "Galaxy-dwarfing",
  16112. height: math.unit(450, "kiloparsecs")
  16113. },
  16114. {
  16115. name: "Universe Eater",
  16116. height: math.unit(150, "gigaparsecs")
  16117. },
  16118. {
  16119. name: "Almost Immeasurable",
  16120. height: math.unit(1.3e266, "yottaparsecs")
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(6, "feet"),
  16129. weight: math.unit(150, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/umeko/front.svg",
  16133. extra: 1,
  16134. bottom: 0.019
  16135. }
  16136. },
  16137. frontArmored: {
  16138. height: math.unit(6, "feet"),
  16139. weight: math.unit(150, "lb"),
  16140. name: "Front (Armored)",
  16141. image: {
  16142. source: "./media/characters/umeko/front-armored.svg",
  16143. extra: 1,
  16144. bottom: 0.021
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Macro",
  16151. height: math.unit(220, "feet"),
  16152. default: true
  16153. },
  16154. {
  16155. name: "Guardian Dragon",
  16156. height: math.unit(50, "miles")
  16157. },
  16158. {
  16159. name: "Cosmic",
  16160. height: math.unit(800000, "miles")
  16161. },
  16162. ]
  16163. ))
  16164. characterMakers.push(() => makeCharacter(
  16165. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16166. {
  16167. front: {
  16168. height: math.unit(6, "feet"),
  16169. weight: math.unit(150, "lb"),
  16170. name: "Front",
  16171. image: {
  16172. source: "./media/characters/cassidy/front.svg",
  16173. extra: 810/808,
  16174. bottom: 41/851
  16175. }
  16176. },
  16177. },
  16178. [
  16179. {
  16180. name: "Canon Height",
  16181. height: math.unit(120, "feet"),
  16182. default: true
  16183. },
  16184. {
  16185. name: "Macro+",
  16186. height: math.unit(400, "feet")
  16187. },
  16188. {
  16189. name: "Macro++",
  16190. height: math.unit(4000, "feet")
  16191. },
  16192. {
  16193. name: "Megamacro",
  16194. height: math.unit(3, "miles")
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(6, "feet"),
  16203. weight: math.unit(150, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/isaac/front.svg",
  16207. extra: 896 / 815,
  16208. bottom: 0.11
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Human Size",
  16215. height: math.unit(8, "feet"),
  16216. default: true
  16217. },
  16218. {
  16219. name: "Macro",
  16220. height: math.unit(400, "feet")
  16221. },
  16222. {
  16223. name: "Megamacro",
  16224. height: math.unit(50, "miles")
  16225. },
  16226. {
  16227. name: "Canon Height",
  16228. height: math.unit(200, "AU")
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(6, "feet"),
  16237. weight: math.unit(72, "kg"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/sleekit/front.svg",
  16241. extra: 4693 / 4487,
  16242. bottom: 0.012
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Minimum Height",
  16249. height: math.unit(10, "meters")
  16250. },
  16251. {
  16252. name: "Smaller",
  16253. height: math.unit(25, "meters")
  16254. },
  16255. {
  16256. name: "Larger",
  16257. height: math.unit(38, "meters"),
  16258. default: true
  16259. },
  16260. {
  16261. name: "Maximum height",
  16262. height: math.unit(100, "meters")
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(6, "feet"),
  16271. weight: math.unit(150, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/nillia/front.svg",
  16275. extra: 719/665,
  16276. bottom: 6/725
  16277. }
  16278. },
  16279. back: {
  16280. height: math.unit(6, "feet"),
  16281. weight: math.unit(150, "lb"),
  16282. name: "Back",
  16283. image: {
  16284. source: "./media/characters/nillia/back.svg",
  16285. extra: 705/651,
  16286. bottom: 5/710
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Canon Height",
  16293. height: math.unit(489, "feet"),
  16294. default: true
  16295. }
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(150, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/mesmyriza/front.svg",
  16307. extra: 1541/1291,
  16308. bottom: 87/1628
  16309. }
  16310. },
  16311. foot: {
  16312. height: math.unit(6 / (250 / 35), "feet"),
  16313. name: "Foot",
  16314. image: {
  16315. source: "./media/characters/mesmyriza/foot.svg"
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "Macro",
  16322. height: math.unit(457, "meters"),
  16323. default: true
  16324. },
  16325. {
  16326. name: "Megamacro",
  16327. height: math.unit(8, "megameters")
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(6, "feet"),
  16336. weight: math.unit(250, "lb"),
  16337. name: "Front",
  16338. image: {
  16339. source: "./media/characters/saudade/front.svg",
  16340. extra: 1172 / 1139,
  16341. bottom: 0.035
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Micro",
  16348. height: math.unit(3, "inches")
  16349. },
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(6, "feet"),
  16353. default: true
  16354. },
  16355. {
  16356. name: "Macro",
  16357. height: math.unit(50, "feet")
  16358. },
  16359. {
  16360. name: "Megamacro",
  16361. height: math.unit(2800, "feet")
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16367. {
  16368. front: {
  16369. height: math.unit(5 + 4 / 12, "feet"),
  16370. weight: math.unit(100, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/keireer/front.svg",
  16374. extra: 716 / 666,
  16375. bottom: 0.05
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(5 + 4 / 12, "feet"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(5.5, "feet"),
  16392. weight: math.unit(90, "kg"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/mirja/front.svg",
  16396. extra: 1452/1262,
  16397. bottom: 67/1519
  16398. }
  16399. },
  16400. frontDressed: {
  16401. height: math.unit(5.5, "feet"),
  16402. weight: math.unit(90, "lb"),
  16403. name: "Front (Dressed)",
  16404. image: {
  16405. source: "./media/characters/mirja/dressed.svg",
  16406. extra: 1452/1262,
  16407. bottom: 67/1519
  16408. }
  16409. },
  16410. back: {
  16411. height: math.unit(6, "feet"),
  16412. weight: math.unit(90, "lb"),
  16413. name: "Back",
  16414. image: {
  16415. source: "./media/characters/mirja/back.svg",
  16416. extra: 1892/1795,
  16417. bottom: 48/1940
  16418. }
  16419. },
  16420. maw: {
  16421. height: math.unit(1.312, "feet"),
  16422. name: "Maw",
  16423. image: {
  16424. source: "./media/characters/mirja/maw.svg"
  16425. }
  16426. },
  16427. paw: {
  16428. height: math.unit(1.15, "feet"),
  16429. name: "Paw",
  16430. image: {
  16431. source: "./media/characters/mirja/paw.svg"
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "\"Incognito\"",
  16438. height: math.unit(3, "meters")
  16439. },
  16440. {
  16441. name: "Strolling Size",
  16442. height: math.unit(15, "km")
  16443. },
  16444. {
  16445. name: "Larger Strolling Size",
  16446. height: math.unit(400, "km")
  16447. },
  16448. {
  16449. name: "Preferred Size",
  16450. height: math.unit(5000, "km"),
  16451. default: true
  16452. },
  16453. {
  16454. name: "True Size",
  16455. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16461. {
  16462. front: {
  16463. height: math.unit(15, "feet"),
  16464. weight: math.unit(880, "kg"),
  16465. name: "Front",
  16466. image: {
  16467. source: "./media/characters/nightraver/front.svg",
  16468. extra: 2444 / 2160,
  16469. bottom: 0.027
  16470. }
  16471. },
  16472. back: {
  16473. height: math.unit(15, "feet"),
  16474. weight: math.unit(880, "kg"),
  16475. name: "Back",
  16476. image: {
  16477. source: "./media/characters/nightraver/back.svg",
  16478. extra: 2309 / 2180,
  16479. bottom: 0.005
  16480. }
  16481. },
  16482. sole: {
  16483. height: math.unit(2.878, "feet"),
  16484. name: "Sole",
  16485. image: {
  16486. source: "./media/characters/nightraver/sole.svg"
  16487. }
  16488. },
  16489. foot: {
  16490. height: math.unit(2.285, "feet"),
  16491. name: "Foot",
  16492. image: {
  16493. source: "./media/characters/nightraver/foot.svg"
  16494. }
  16495. },
  16496. maw: {
  16497. height: math.unit(2.67, "feet"),
  16498. name: "Maw",
  16499. image: {
  16500. source: "./media/characters/nightraver/maw.svg"
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Micro",
  16507. height: math.unit(1, "cm")
  16508. },
  16509. {
  16510. name: "Normal",
  16511. height: math.unit(15, "feet"),
  16512. default: true
  16513. },
  16514. {
  16515. name: "Macro",
  16516. height: math.unit(300, "feet")
  16517. },
  16518. {
  16519. name: "Megamacro",
  16520. height: math.unit(300, "miles")
  16521. },
  16522. {
  16523. name: "Gigamacro",
  16524. height: math.unit(10000, "miles")
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16530. {
  16531. side: {
  16532. height: math.unit(2, "inches"),
  16533. weight: math.unit(5, "grams"),
  16534. name: "Side",
  16535. image: {
  16536. source: "./media/characters/arc/side.svg"
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Micro",
  16543. height: math.unit(2, "inches"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16550. {
  16551. front: {
  16552. height: math.unit(1.1938, "meters"),
  16553. weight: math.unit(54, "kg"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/nebula-shahar/front.svg",
  16557. extra: 1642 / 1436,
  16558. bottom: 0.06
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Megamicro",
  16565. height: math.unit(0.3, "mm")
  16566. },
  16567. {
  16568. name: "Micro",
  16569. height: math.unit(3, "cm")
  16570. },
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(138, "cm"),
  16574. default: true
  16575. },
  16576. {
  16577. name: "Macro",
  16578. height: math.unit(30, "m")
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(5.24, "feet"),
  16587. weight: math.unit(150, "lb"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/shayla/front.svg",
  16591. extra: 1512 / 1414,
  16592. bottom: 0.01
  16593. }
  16594. },
  16595. back: {
  16596. height: math.unit(5.24, "feet"),
  16597. weight: math.unit(150, "lb"),
  16598. name: "Back",
  16599. image: {
  16600. source: "./media/characters/shayla/back.svg",
  16601. extra: 1512 / 1414
  16602. }
  16603. },
  16604. hand: {
  16605. height: math.unit(0.7781496062992126, "feet"),
  16606. name: "Hand",
  16607. image: {
  16608. source: "./media/characters/shayla/hand.svg"
  16609. }
  16610. },
  16611. foot: {
  16612. height: math.unit(1.4206036745406823, "feet"),
  16613. name: "Foot",
  16614. image: {
  16615. source: "./media/characters/shayla/foot.svg"
  16616. }
  16617. },
  16618. },
  16619. [
  16620. {
  16621. name: "Micro",
  16622. height: math.unit(0.32, "feet")
  16623. },
  16624. {
  16625. name: "Normal",
  16626. height: math.unit(5.24, "feet"),
  16627. default: true
  16628. },
  16629. {
  16630. name: "Macro",
  16631. height: math.unit(492.12, "feet")
  16632. },
  16633. {
  16634. name: "Megamacro",
  16635. height: math.unit(186.41, "miles")
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16641. {
  16642. front: {
  16643. height: math.unit(2.2, "m"),
  16644. weight: math.unit(120, "kg"),
  16645. name: "Front",
  16646. image: {
  16647. source: "./media/characters/pia-jr/front.svg",
  16648. extra: 1000 / 970,
  16649. bottom: 0.035
  16650. }
  16651. },
  16652. hand: {
  16653. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16654. name: "Hand",
  16655. image: {
  16656. source: "./media/characters/pia-jr/hand.svg"
  16657. }
  16658. },
  16659. paw: {
  16660. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16661. name: "Paw",
  16662. image: {
  16663. source: "./media/characters/pia-jr/paw.svg"
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Micro",
  16670. height: math.unit(1.2, "cm")
  16671. },
  16672. {
  16673. name: "Normal",
  16674. height: math.unit(2.2, "m"),
  16675. default: true
  16676. },
  16677. {
  16678. name: "Macro",
  16679. height: math.unit(180, "m")
  16680. },
  16681. {
  16682. name: "Megamacro",
  16683. height: math.unit(420, "km")
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16689. {
  16690. front: {
  16691. height: math.unit(2, "m"),
  16692. weight: math.unit(115, "kg"),
  16693. name: "Front",
  16694. image: {
  16695. source: "./media/characters/pia-sr/front.svg",
  16696. extra: 760 / 730,
  16697. bottom: 0.015
  16698. }
  16699. },
  16700. back: {
  16701. height: math.unit(2, "m"),
  16702. weight: math.unit(115, "kg"),
  16703. name: "Back",
  16704. image: {
  16705. source: "./media/characters/pia-sr/back.svg",
  16706. extra: 760 / 730,
  16707. bottom: 0.01
  16708. }
  16709. },
  16710. hand: {
  16711. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16712. name: "Hand",
  16713. image: {
  16714. source: "./media/characters/pia-sr/hand.svg"
  16715. }
  16716. },
  16717. foot: {
  16718. height: math.unit(1.83, "feet"),
  16719. name: "Foot",
  16720. image: {
  16721. source: "./media/characters/pia-sr/foot.svg"
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Micro",
  16728. height: math.unit(88, "mm")
  16729. },
  16730. {
  16731. name: "Normal",
  16732. height: math.unit(2, "m"),
  16733. default: true
  16734. },
  16735. {
  16736. name: "Macro",
  16737. height: math.unit(200, "m")
  16738. },
  16739. {
  16740. name: "Megamacro",
  16741. height: math.unit(420, "km")
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16747. {
  16748. front: {
  16749. height: math.unit(8 + 2 / 12, "feet"),
  16750. weight: math.unit(300, "lb"),
  16751. name: "Front",
  16752. image: {
  16753. source: "./media/characters/kibibyte/front.svg",
  16754. extra: 2221 / 2098,
  16755. bottom: 0.04
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Normal",
  16762. height: math.unit(8 + 2 / 12, "feet"),
  16763. default: true
  16764. },
  16765. {
  16766. name: "Socialable Macro",
  16767. height: math.unit(50, "feet")
  16768. },
  16769. {
  16770. name: "Macro",
  16771. height: math.unit(300, "feet")
  16772. },
  16773. {
  16774. name: "Megamacro",
  16775. height: math.unit(500, "miles")
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(6, "feet"),
  16784. weight: math.unit(150, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/felix/front.svg",
  16788. extra: 762 / 722,
  16789. bottom: 0.02
  16790. }
  16791. },
  16792. frontClothed: {
  16793. height: math.unit(6, "feet"),
  16794. weight: math.unit(150, "lb"),
  16795. name: "Front (Clothed)",
  16796. image: {
  16797. source: "./media/characters/felix/front-clothed.svg",
  16798. extra: 762 / 722,
  16799. bottom: 0.02
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(6 + 8 / 12, "feet"),
  16807. default: true
  16808. },
  16809. {
  16810. name: "Macro",
  16811. height: math.unit(2600, "feet")
  16812. },
  16813. {
  16814. name: "Megamacro",
  16815. height: math.unit(450, "miles")
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(6 + 1 / 12, "feet"),
  16824. weight: math.unit(250, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/tobo/front.svg",
  16828. extra: 608 / 586,
  16829. bottom: 0.023
  16830. }
  16831. },
  16832. back: {
  16833. height: math.unit(6 + 1 / 12, "feet"),
  16834. weight: math.unit(250, "lb"),
  16835. name: "Back",
  16836. image: {
  16837. source: "./media/characters/tobo/back.svg",
  16838. extra: 608 / 586
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Nano",
  16845. height: math.unit(2, "nm")
  16846. },
  16847. {
  16848. name: "Megamicro",
  16849. height: math.unit(0.1, "mm")
  16850. },
  16851. {
  16852. name: "Micro",
  16853. height: math.unit(1, "inch"),
  16854. default: true
  16855. },
  16856. {
  16857. name: "Human-sized",
  16858. height: math.unit(6 + 1 / 12, "feet")
  16859. },
  16860. {
  16861. name: "Macro",
  16862. height: math.unit(250, "feet")
  16863. },
  16864. {
  16865. name: "Megamacro",
  16866. height: math.unit(75, "miles")
  16867. },
  16868. {
  16869. name: "Texas-sized",
  16870. height: math.unit(750, "miles")
  16871. },
  16872. {
  16873. name: "Teramacro",
  16874. height: math.unit(50000, "miles")
  16875. },
  16876. ]
  16877. ))
  16878. characterMakers.push(() => makeCharacter(
  16879. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16880. {
  16881. front: {
  16882. height: math.unit(6, "feet"),
  16883. weight: math.unit(269, "lb"),
  16884. name: "Front",
  16885. image: {
  16886. source: "./media/characters/danny-kapowsky/front.svg",
  16887. extra: 766 / 736,
  16888. bottom: 0.044
  16889. }
  16890. },
  16891. back: {
  16892. height: math.unit(6, "feet"),
  16893. weight: math.unit(269, "lb"),
  16894. name: "Back",
  16895. image: {
  16896. source: "./media/characters/danny-kapowsky/back.svg",
  16897. extra: 797 / 760,
  16898. bottom: 0.025
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Macro",
  16905. height: math.unit(150, "feet"),
  16906. default: true
  16907. },
  16908. {
  16909. name: "Macro+",
  16910. height: math.unit(200, "feet")
  16911. },
  16912. {
  16913. name: "Macro++",
  16914. height: math.unit(300, "feet")
  16915. },
  16916. {
  16917. name: "Macro+++",
  16918. height: math.unit(400, "feet")
  16919. },
  16920. ]
  16921. ))
  16922. characterMakers.push(() => makeCharacter(
  16923. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16924. {
  16925. side: {
  16926. height: math.unit(6, "feet"),
  16927. weight: math.unit(170, "lb"),
  16928. name: "Side",
  16929. image: {
  16930. source: "./media/characters/finn/side.svg",
  16931. extra: 1953 / 1807,
  16932. bottom: 0.057
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Megamacro",
  16939. height: math.unit(14445, "feet"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(5 + 6 / 12, "feet"),
  16949. weight: math.unit(125, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/roy/front.svg",
  16953. extra: 1,
  16954. bottom: 0.11
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Micro",
  16961. height: math.unit(3, "inches"),
  16962. default: true
  16963. },
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(5 + 6 / 12, "feet")
  16967. },
  16968. {
  16969. name: "Lesser Macro",
  16970. height: math.unit(60, "feet")
  16971. },
  16972. {
  16973. name: "Greater Macro",
  16974. height: math.unit(120, "feet")
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16980. {
  16981. front: {
  16982. height: math.unit(6, "feet"),
  16983. weight: math.unit(100, "lb"),
  16984. name: "Front",
  16985. image: {
  16986. source: "./media/characters/aevsivs/front.svg",
  16987. extra: 1,
  16988. bottom: 0.03
  16989. }
  16990. },
  16991. back: {
  16992. height: math.unit(6, "feet"),
  16993. weight: math.unit(100, "lb"),
  16994. name: "Back",
  16995. image: {
  16996. source: "./media/characters/aevsivs/back.svg"
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Micro",
  17003. height: math.unit(2, "inches"),
  17004. default: true
  17005. },
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(5, "feet")
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(5 + 7 / 12, "feet"),
  17017. weight: math.unit(159, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/hildegard/front.svg",
  17021. extra: 289 / 269,
  17022. bottom: 7.63 / 297.8
  17023. }
  17024. },
  17025. back: {
  17026. height: math.unit(5 + 7 / 12, "feet"),
  17027. weight: math.unit(159, "lb"),
  17028. name: "Back",
  17029. image: {
  17030. source: "./media/characters/hildegard/back.svg",
  17031. extra: 280 / 260,
  17032. bottom: 2.3 / 282
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(5 + 7 / 12, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17046. {
  17047. bernard: {
  17048. height: math.unit(2 + 7 / 12, "feet"),
  17049. weight: math.unit(66, "lb"),
  17050. name: "Bernard",
  17051. rename: true,
  17052. image: {
  17053. source: "./media/characters/bernard-wilder/bernard.svg",
  17054. extra: 192 / 128,
  17055. bottom: 0.05
  17056. }
  17057. },
  17058. wilder: {
  17059. height: math.unit(5 + 8 / 12, "feet"),
  17060. weight: math.unit(143, "lb"),
  17061. name: "Wilder",
  17062. rename: true,
  17063. image: {
  17064. source: "./media/characters/bernard-wilder/wilder.svg",
  17065. extra: 361 / 312,
  17066. bottom: 0.02
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(2 + 7 / 12, "feet"),
  17074. default: true
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17080. {
  17081. anthro: {
  17082. height: math.unit(6 + 1 / 12, "feet"),
  17083. weight: math.unit(155, "lb"),
  17084. name: "Anthro",
  17085. image: {
  17086. source: "./media/characters/hearth/anthro.svg",
  17087. extra: 1178/1136,
  17088. bottom: 28/1206
  17089. }
  17090. },
  17091. feral: {
  17092. height: math.unit(3.78, "feet"),
  17093. weight: math.unit(35, "kg"),
  17094. name: "Feral",
  17095. image: {
  17096. source: "./media/characters/hearth/feral.svg",
  17097. extra: 153 / 135,
  17098. bottom: 0.03
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(6 + 1 / 12, "feet"),
  17106. default: true
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17112. {
  17113. front: {
  17114. height: math.unit(6, "feet"),
  17115. weight: math.unit(182, "lb"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/ingrid/front.svg",
  17119. extra: 294 / 268,
  17120. bottom: 0.027
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(6, "feet"),
  17128. default: true
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17134. {
  17135. eevee: {
  17136. height: math.unit(2 + 10 / 12, "feet"),
  17137. weight: math.unit(86, "lb"),
  17138. name: "Malgam",
  17139. image: {
  17140. source: "./media/characters/malgam/eevee.svg",
  17141. extra: 952/784,
  17142. bottom: 38/990
  17143. }
  17144. },
  17145. sylveon: {
  17146. height: math.unit(4, "feet"),
  17147. weight: math.unit(101, "lb"),
  17148. name: "Future Malgam",
  17149. rename: true,
  17150. image: {
  17151. source: "./media/characters/malgam/sylveon.svg",
  17152. extra: 371 / 325,
  17153. bottom: 0.015
  17154. }
  17155. },
  17156. gigantamax: {
  17157. height: math.unit(50, "feet"),
  17158. name: "Gigantamax Malgam",
  17159. rename: true,
  17160. image: {
  17161. source: "./media/characters/malgam/gigantamax.svg"
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(2 + 10 / 12, "feet"),
  17169. default: true
  17170. },
  17171. ]
  17172. ))
  17173. characterMakers.push(() => makeCharacter(
  17174. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17175. {
  17176. front: {
  17177. height: math.unit(5 + 11 / 12, "feet"),
  17178. weight: math.unit(188, "lb"),
  17179. name: "Front",
  17180. image: {
  17181. source: "./media/characters/fleur/front.svg",
  17182. extra: 309 / 283,
  17183. bottom: 0.007
  17184. }
  17185. },
  17186. },
  17187. [
  17188. {
  17189. name: "Normal",
  17190. height: math.unit(5 + 11 / 12, "feet"),
  17191. default: true
  17192. },
  17193. ]
  17194. ))
  17195. characterMakers.push(() => makeCharacter(
  17196. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17197. {
  17198. front: {
  17199. height: math.unit(5 + 4 / 12, "feet"),
  17200. weight: math.unit(122, "lb"),
  17201. name: "Front",
  17202. image: {
  17203. source: "./media/characters/jude/front.svg",
  17204. extra: 288 / 273,
  17205. bottom: 0.03
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(5 + 4 / 12, "feet"),
  17213. default: true
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17219. {
  17220. front: {
  17221. height: math.unit(5 + 11 / 12, "feet"),
  17222. weight: math.unit(190, "lb"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/seara/front.svg",
  17226. extra: 1,
  17227. bottom: 0.05
  17228. }
  17229. },
  17230. },
  17231. [
  17232. {
  17233. name: "Normal",
  17234. height: math.unit(5 + 11 / 12, "feet"),
  17235. default: true
  17236. },
  17237. ]
  17238. ))
  17239. characterMakers.push(() => makeCharacter(
  17240. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17241. {
  17242. front: {
  17243. height: math.unit(16 + 5 / 12, "feet"),
  17244. weight: math.unit(524, "lb"),
  17245. name: "Front",
  17246. image: {
  17247. source: "./media/characters/caspian-lugia/front.svg",
  17248. extra: 1,
  17249. bottom: 0.04
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Normal",
  17256. height: math.unit(16 + 5 / 12, "feet"),
  17257. default: true
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17263. {
  17264. front: {
  17265. height: math.unit(5 + 7 / 12, "feet"),
  17266. weight: math.unit(170, "lb"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/mika/front.svg",
  17270. extra: 1,
  17271. bottom: 0.016
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Normal",
  17278. height: math.unit(5 + 7 / 12, "feet"),
  17279. default: true
  17280. },
  17281. ]
  17282. ))
  17283. characterMakers.push(() => makeCharacter(
  17284. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17285. {
  17286. front: {
  17287. height: math.unit(6 + 2 / 12, "feet"),
  17288. weight: math.unit(268, "lb"),
  17289. name: "Front",
  17290. image: {
  17291. source: "./media/characters/sol/front.svg",
  17292. extra: 247 / 231,
  17293. bottom: 0.05
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(6 + 2 / 12, "feet"),
  17301. default: true
  17302. },
  17303. ]
  17304. ))
  17305. characterMakers.push(() => makeCharacter(
  17306. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17307. {
  17308. buizel: {
  17309. height: math.unit(2 + 5 / 12, "feet"),
  17310. weight: math.unit(87, "lb"),
  17311. name: "Front",
  17312. image: {
  17313. source: "./media/characters/umiko/buizel.svg",
  17314. extra: 172 / 157,
  17315. bottom: 0.01
  17316. },
  17317. form: "buizel",
  17318. default: true
  17319. },
  17320. floatzel: {
  17321. height: math.unit(5 + 9 / 12, "feet"),
  17322. weight: math.unit(250, "lb"),
  17323. name: "Front",
  17324. image: {
  17325. source: "./media/characters/umiko/floatzel.svg",
  17326. extra: 1076/1006,
  17327. bottom: 15/1091
  17328. },
  17329. form: "floatzel",
  17330. default: true
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(2 + 5 / 12, "feet"),
  17337. form: "buizel",
  17338. default: true
  17339. },
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(5 + 9 / 12, "feet"),
  17343. form: "floatzel",
  17344. default: true
  17345. },
  17346. ],
  17347. {
  17348. "buizel": {
  17349. name: "Buizel"
  17350. },
  17351. "floatzel": {
  17352. name: "Floatzel",
  17353. default: true
  17354. }
  17355. }
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17359. {
  17360. front: {
  17361. height: math.unit(6 + 2 / 12, "feet"),
  17362. weight: math.unit(146, "lb"),
  17363. name: "Front",
  17364. image: {
  17365. source: "./media/characters/iliac/front.svg",
  17366. extra: 389 / 365,
  17367. bottom: 0.035
  17368. }
  17369. },
  17370. },
  17371. [
  17372. {
  17373. name: "Normal",
  17374. height: math.unit(6 + 2 / 12, "feet"),
  17375. default: true
  17376. },
  17377. ]
  17378. ))
  17379. characterMakers.push(() => makeCharacter(
  17380. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17381. {
  17382. front: {
  17383. height: math.unit(6, "feet"),
  17384. weight: math.unit(170, "lb"),
  17385. name: "Front",
  17386. image: {
  17387. source: "./media/characters/topaz/front.svg",
  17388. extra: 317 / 303,
  17389. bottom: 0.055
  17390. }
  17391. },
  17392. },
  17393. [
  17394. {
  17395. name: "Normal",
  17396. height: math.unit(6, "feet"),
  17397. default: true
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(5 + 11 / 12, "feet"),
  17406. weight: math.unit(144, "lb"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/gabriel/front.svg",
  17410. extra: 285 / 262,
  17411. bottom: 0.004
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Normal",
  17418. height: math.unit(5 + 11 / 12, "feet"),
  17419. default: true
  17420. },
  17421. ]
  17422. ))
  17423. characterMakers.push(() => makeCharacter(
  17424. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17425. {
  17426. side: {
  17427. height: math.unit(6 + 5 / 12, "feet"),
  17428. weight: math.unit(300, "lb"),
  17429. name: "Side",
  17430. image: {
  17431. source: "./media/characters/tempest-suicune/side.svg",
  17432. extra: 195 / 154,
  17433. bottom: 0.04
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(6 + 5 / 12, "feet"),
  17441. default: true
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17447. {
  17448. front: {
  17449. height: math.unit(7 + 2 / 12, "feet"),
  17450. weight: math.unit(322, "lb"),
  17451. name: "Front",
  17452. image: {
  17453. source: "./media/characters/vulcan/front.svg",
  17454. extra: 154 / 147,
  17455. bottom: 0.04
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(7 + 2 / 12, "feet"),
  17463. default: true
  17464. },
  17465. ]
  17466. ))
  17467. characterMakers.push(() => makeCharacter(
  17468. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17469. {
  17470. front: {
  17471. height: math.unit(5 + 10 / 12, "feet"),
  17472. weight: math.unit(264, "lb"),
  17473. name: "Front",
  17474. image: {
  17475. source: "./media/characters/gault/front.svg",
  17476. extra: 161 / 140,
  17477. bottom: 0.028
  17478. }
  17479. },
  17480. },
  17481. [
  17482. {
  17483. name: "Normal",
  17484. height: math.unit(5 + 10 / 12, "feet"),
  17485. default: true
  17486. },
  17487. ]
  17488. ))
  17489. characterMakers.push(() => makeCharacter(
  17490. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17491. {
  17492. front: {
  17493. height: math.unit(6, "feet"),
  17494. weight: math.unit(150, "lb"),
  17495. name: "Front",
  17496. image: {
  17497. source: "./media/characters/shard/front.svg",
  17498. extra: 273 / 238,
  17499. bottom: 0.02
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(3 + 6 / 12, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(5 + 11 / 12, "feet"),
  17516. weight: math.unit(146, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/ashe/front.svg",
  17520. extra: 400 / 373,
  17521. bottom: 0.01
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(5 + 11 / 12, "feet"),
  17529. default: true
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(5 + 5 / 12, "feet"),
  17538. weight: math.unit(135, "lb"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/beatrix/front.svg",
  17542. extra: 392 / 379,
  17543. bottom: 0.01
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(6, "feet"),
  17551. default: true
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17557. {
  17558. front: {
  17559. height: math.unit(6 + 2/12, "feet"),
  17560. weight: math.unit(135, "lb"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/ignatius/front.svg",
  17564. extra: 1380/1259,
  17565. bottom: 27/1407
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Normal",
  17572. height: math.unit(6 + 2/12, "feet"),
  17573. default: true
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(6 + 2 / 12, "feet"),
  17582. weight: math.unit(138, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/mei-li/front.svg",
  17586. extra: 237 / 229,
  17587. bottom: 0.03
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(6 + 2 / 12, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(2 + 4 / 12, "feet"),
  17604. weight: math.unit(62, "lb"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/puru/front.svg",
  17608. extra: 206 / 149,
  17609. bottom: 0.06
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(2 + 4 / 12, "feet"),
  17617. default: true
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17623. {
  17624. anthro: {
  17625. height: math.unit(5 + 8/12, "feet"),
  17626. weight: math.unit(200, "lb"),
  17627. energyNeed: math.unit(2000, "kcal"),
  17628. name: "Anthro",
  17629. image: {
  17630. source: "./media/characters/kee/anthro.svg",
  17631. extra: 3251/3184,
  17632. bottom: 250/3501
  17633. }
  17634. },
  17635. taur: {
  17636. height: math.unit(11, "feet"),
  17637. weight: math.unit(500, "lb"),
  17638. energyNeed: math.unit(5000, "kcal"),
  17639. name: "Taur",
  17640. image: {
  17641. source: "./media/characters/kee/taur.svg",
  17642. extra: 1362/1320,
  17643. bottom: 83/1445
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(5 + 8/12, "feet"),
  17651. default: true
  17652. },
  17653. {
  17654. name: "Macro",
  17655. height: math.unit(35, "feet")
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17661. {
  17662. anthro: {
  17663. height: math.unit(7, "feet"),
  17664. weight: math.unit(190, "lb"),
  17665. name: "Anthro",
  17666. image: {
  17667. source: "./media/characters/cobalt-dracha/anthro.svg",
  17668. extra: 231 / 225,
  17669. bottom: 0.04
  17670. }
  17671. },
  17672. feral: {
  17673. height: math.unit(9 + 7 / 12, "feet"),
  17674. weight: math.unit(294, "lb"),
  17675. name: "Feral",
  17676. image: {
  17677. source: "./media/characters/cobalt-dracha/feral.svg",
  17678. extra: 692 / 633,
  17679. bottom: 0.05
  17680. }
  17681. },
  17682. },
  17683. [
  17684. {
  17685. name: "Normal",
  17686. height: math.unit(7, "feet"),
  17687. default: true
  17688. },
  17689. ]
  17690. ))
  17691. characterMakers.push(() => makeCharacter(
  17692. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17693. {
  17694. fallen: {
  17695. height: math.unit(11 + 8 / 12, "feet"),
  17696. weight: math.unit(485, "lb"),
  17697. name: "Java (Fallen)",
  17698. rename: true,
  17699. image: {
  17700. source: "./media/characters/java/fallen.svg",
  17701. extra: 226 / 208,
  17702. bottom: 0.005
  17703. }
  17704. },
  17705. godkin: {
  17706. height: math.unit(10 + 6 / 12, "feet"),
  17707. weight: math.unit(328, "lb"),
  17708. name: "Java (Godkin)",
  17709. rename: true,
  17710. image: {
  17711. source: "./media/characters/java/godkin.svg",
  17712. extra: 1104/1068,
  17713. bottom: 36/1140
  17714. }
  17715. },
  17716. },
  17717. [
  17718. {
  17719. name: "Normal",
  17720. height: math.unit(11 + 8 / 12, "feet"),
  17721. default: true
  17722. },
  17723. ]
  17724. ))
  17725. characterMakers.push(() => makeCharacter(
  17726. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17727. {
  17728. front: {
  17729. height: math.unit(5 + 9 / 12, "feet"),
  17730. weight: math.unit(170, "lb"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/purna/front.svg",
  17734. extra: 239 / 229,
  17735. bottom: 0.01
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(5 + 9 / 12, "feet"),
  17743. default: true
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(5 + 9 / 12, "feet"),
  17752. weight: math.unit(142, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/kuva/front.svg",
  17756. extra: 281 / 271,
  17757. bottom: 0.006
  17758. }
  17759. },
  17760. },
  17761. [
  17762. {
  17763. name: "Normal",
  17764. height: math.unit(5 + 9 / 12, "feet"),
  17765. default: true
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17771. {
  17772. anthro: {
  17773. height: math.unit(9 + 2 / 12, "feet"),
  17774. weight: math.unit(270, "lb"),
  17775. name: "Anthro",
  17776. image: {
  17777. source: "./media/characters/embra/anthro.svg",
  17778. extra: 200 / 187,
  17779. bottom: 0.02
  17780. }
  17781. },
  17782. feral: {
  17783. height: math.unit(18 + 8 / 12, "feet"),
  17784. weight: math.unit(576, "lb"),
  17785. name: "Feral",
  17786. image: {
  17787. source: "./media/characters/embra/feral.svg",
  17788. extra: 152 / 137,
  17789. bottom: 0.037
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Normal",
  17796. height: math.unit(9 + 2 / 12, "feet"),
  17797. default: true
  17798. },
  17799. ]
  17800. ))
  17801. characterMakers.push(() => makeCharacter(
  17802. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17803. {
  17804. anthro: {
  17805. height: math.unit(10 + 9 / 12, "feet"),
  17806. weight: math.unit(224, "lb"),
  17807. name: "Anthro",
  17808. image: {
  17809. source: "./media/characters/grottos/anthro.svg",
  17810. extra: 350 / 332,
  17811. bottom: 0.045
  17812. }
  17813. },
  17814. feral: {
  17815. height: math.unit(20 + 7 / 12, "feet"),
  17816. weight: math.unit(629, "lb"),
  17817. name: "Feral",
  17818. image: {
  17819. source: "./media/characters/grottos/feral.svg",
  17820. extra: 207 / 190,
  17821. bottom: 0.05
  17822. }
  17823. },
  17824. },
  17825. [
  17826. {
  17827. name: "Normal",
  17828. height: math.unit(10 + 9 / 12, "feet"),
  17829. default: true
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17835. {
  17836. anthro: {
  17837. height: math.unit(9 + 6 / 12, "feet"),
  17838. weight: math.unit(298, "lb"),
  17839. name: "Anthro",
  17840. image: {
  17841. source: "./media/characters/frifna/anthro.svg",
  17842. extra: 282 / 269,
  17843. bottom: 0.015
  17844. }
  17845. },
  17846. feral: {
  17847. height: math.unit(16 + 2 / 12, "feet"),
  17848. weight: math.unit(624, "lb"),
  17849. name: "Feral",
  17850. image: {
  17851. source: "./media/characters/frifna/feral.svg"
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(9 + 6 / 12, "feet"),
  17859. default: true
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(6 + 2 / 12, "feet"),
  17868. weight: math.unit(168, "lb"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/elise/front.svg",
  17872. extra: 276 / 271
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(6 + 2 / 12, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(5 + 10 / 12, "feet"),
  17889. weight: math.unit(210, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/glade/front.svg",
  17893. extra: 258 / 247,
  17894. bottom: 0.008
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(5 + 10 / 12, "feet"),
  17902. default: true
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17908. {
  17909. front: {
  17910. height: math.unit(5 + 10 / 12, "feet"),
  17911. weight: math.unit(129, "lb"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/rina/front.svg",
  17915. extra: 266 / 255,
  17916. bottom: 0.005
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(5 + 10 / 12, "feet"),
  17924. default: true
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(6 + 1 / 12, "feet"),
  17933. weight: math.unit(192, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/veronica/front.svg",
  17937. extra: 319 / 309,
  17938. bottom: 0.005
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(6 + 1 / 12, "feet"),
  17946. default: true
  17947. },
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17952. {
  17953. front: {
  17954. height: math.unit(9 + 3 / 12, "feet"),
  17955. weight: math.unit(1100, "lb"),
  17956. name: "Front",
  17957. image: {
  17958. source: "./media/characters/braxton/front.svg",
  17959. extra: 1057 / 984,
  17960. bottom: 0.05
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Normal",
  17967. height: math.unit(9 + 3 / 12, "feet")
  17968. },
  17969. {
  17970. name: "Giant",
  17971. height: math.unit(300, "feet"),
  17972. default: true
  17973. },
  17974. {
  17975. name: "Macro",
  17976. height: math.unit(700, "feet")
  17977. },
  17978. {
  17979. name: "Megamacro",
  17980. height: math.unit(6000, "feet")
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(6 + 7 / 12, "feet"),
  17989. weight: math.unit(150, "lb"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/blue-feyonics/front.svg",
  17993. extra: 1403 / 1306,
  17994. bottom: 0.047
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(6 + 7 / 12, "feet"),
  18002. default: true
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18008. {
  18009. front: {
  18010. height: math.unit(1.8, "meters"),
  18011. weight: math.unit(60, "kg"),
  18012. name: "Front",
  18013. image: {
  18014. source: "./media/characters/maxwell/front.svg",
  18015. extra: 2060 / 1873
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Micro",
  18022. height: math.unit(1, "mm")
  18023. },
  18024. {
  18025. name: "Normal",
  18026. height: math.unit(1.8, "meter"),
  18027. default: true
  18028. },
  18029. {
  18030. name: "Macro",
  18031. height: math.unit(30, "meters")
  18032. },
  18033. {
  18034. name: "Megamacro",
  18035. height: math.unit(10, "km")
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18041. {
  18042. front: {
  18043. height: math.unit(6, "feet"),
  18044. weight: math.unit(150, "lb"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/jack/front.svg",
  18048. extra: 1754 / 1640,
  18049. bottom: 0.01
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(80000, "feet"),
  18057. default: true
  18058. },
  18059. {
  18060. name: "Max size",
  18061. height: math.unit(10, "lightyears")
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18067. {
  18068. urban: {
  18069. height: math.unit(5, "feet"),
  18070. weight: math.unit(240, "lb"),
  18071. name: "Urban",
  18072. image: {
  18073. source: "./media/characters/cafat/urban.svg",
  18074. extra: 1223/1126,
  18075. bottom: 205/1428
  18076. }
  18077. },
  18078. summer: {
  18079. height: math.unit(5, "feet"),
  18080. weight: math.unit(240, "lb"),
  18081. name: "Summer",
  18082. image: {
  18083. source: "./media/characters/cafat/summer.svg",
  18084. extra: 1223/1126,
  18085. bottom: 205/1428
  18086. }
  18087. },
  18088. winter: {
  18089. height: math.unit(5, "feet"),
  18090. weight: math.unit(240, "lb"),
  18091. name: "Winter",
  18092. image: {
  18093. source: "./media/characters/cafat/winter.svg",
  18094. extra: 1223/1126,
  18095. bottom: 205/1428
  18096. }
  18097. },
  18098. lingerie: {
  18099. height: math.unit(5, "feet"),
  18100. weight: math.unit(240, "lb"),
  18101. name: "Lingerie",
  18102. image: {
  18103. source: "./media/characters/cafat/lingerie.svg",
  18104. extra: 1223/1126,
  18105. bottom: 205/1428
  18106. }
  18107. },
  18108. upright: {
  18109. height: math.unit(6.3, "feet"),
  18110. weight: math.unit(240, "lb"),
  18111. name: "Upright",
  18112. image: {
  18113. source: "./media/characters/cafat/upright.svg",
  18114. bottom: 0.01
  18115. }
  18116. },
  18117. uprightFull: {
  18118. height: math.unit(6.3, "feet"),
  18119. weight: math.unit(240, "lb"),
  18120. name: "Upright (Full)",
  18121. image: {
  18122. source: "./media/characters/cafat/upright-full.svg",
  18123. bottom: 0.01
  18124. }
  18125. },
  18126. },
  18127. [
  18128. {
  18129. name: "Small",
  18130. height: math.unit(5, "feet"),
  18131. default: true
  18132. },
  18133. {
  18134. name: "Large",
  18135. height: math.unit(13, "feet")
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(6, "feet"),
  18144. weight: math.unit(150, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/verin-raharra/front.svg",
  18148. extra: 5019 / 4835,
  18149. bottom: 0.023
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Normal",
  18156. height: math.unit(7 + 5 / 12, "feet"),
  18157. default: true
  18158. },
  18159. {
  18160. name: "Upsized",
  18161. height: math.unit(20, "feet")
  18162. },
  18163. ]
  18164. ))
  18165. characterMakers.push(() => makeCharacter(
  18166. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18167. {
  18168. front: {
  18169. height: math.unit(7, "feet"),
  18170. weight: math.unit(230, "lb"),
  18171. name: "Front",
  18172. image: {
  18173. source: "./media/characters/nakata/front.svg",
  18174. extra: 1.005,
  18175. bottom: 0.01
  18176. }
  18177. },
  18178. },
  18179. [
  18180. {
  18181. name: "Normal",
  18182. height: math.unit(7, "feet"),
  18183. default: true
  18184. },
  18185. {
  18186. name: "Big",
  18187. height: math.unit(14, "feet")
  18188. },
  18189. {
  18190. name: "Macro",
  18191. height: math.unit(400, "feet")
  18192. },
  18193. ]
  18194. ))
  18195. characterMakers.push(() => makeCharacter(
  18196. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18197. {
  18198. front: {
  18199. height: math.unit(4.91, "feet"),
  18200. weight: math.unit(100, "lb"),
  18201. name: "Front",
  18202. image: {
  18203. source: "./media/characters/lily/front.svg",
  18204. extra: 1585 / 1415,
  18205. bottom: 0.02
  18206. }
  18207. },
  18208. },
  18209. [
  18210. {
  18211. name: "Normal",
  18212. height: math.unit(4.91, "feet"),
  18213. default: true
  18214. },
  18215. ]
  18216. ))
  18217. characterMakers.push(() => makeCharacter(
  18218. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18219. {
  18220. laying: {
  18221. height: math.unit(4 + 4 / 12, "feet"),
  18222. weight: math.unit(600, "lb"),
  18223. name: "Laying",
  18224. image: {
  18225. source: "./media/characters/sheila/laying.svg",
  18226. extra: 1333 / 1265,
  18227. bottom: 0.16
  18228. }
  18229. },
  18230. },
  18231. [
  18232. {
  18233. name: "Normal",
  18234. height: math.unit(4 + 4 / 12, "feet"),
  18235. default: true
  18236. },
  18237. ]
  18238. ))
  18239. characterMakers.push(() => makeCharacter(
  18240. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18241. {
  18242. front: {
  18243. height: math.unit(6, "feet"),
  18244. weight: math.unit(190, "lb"),
  18245. name: "Front",
  18246. image: {
  18247. source: "./media/characters/sax/front.svg",
  18248. extra: 1187 / 973,
  18249. bottom: 0.042
  18250. }
  18251. },
  18252. },
  18253. [
  18254. {
  18255. name: "Micro",
  18256. height: math.unit(4, "inches"),
  18257. default: true
  18258. },
  18259. ]
  18260. ))
  18261. characterMakers.push(() => makeCharacter(
  18262. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18263. {
  18264. front: {
  18265. height: math.unit(6, "feet"),
  18266. weight: math.unit(150, "lb"),
  18267. name: "Front",
  18268. image: {
  18269. source: "./media/characters/pandora/front.svg",
  18270. extra: 2720 / 2556,
  18271. bottom: 0.015
  18272. }
  18273. },
  18274. back: {
  18275. height: math.unit(6, "feet"),
  18276. weight: math.unit(150, "lb"),
  18277. name: "Back",
  18278. image: {
  18279. source: "./media/characters/pandora/back.svg",
  18280. extra: 2720 / 2556,
  18281. bottom: 0.01
  18282. }
  18283. },
  18284. beans: {
  18285. height: math.unit(6 / 8, "feet"),
  18286. name: "Beans",
  18287. image: {
  18288. source: "./media/characters/pandora/beans.svg"
  18289. }
  18290. },
  18291. collar: {
  18292. height: math.unit(0.31, "feet"),
  18293. name: "Collar",
  18294. image: {
  18295. source: "./media/characters/pandora/collar.svg"
  18296. }
  18297. },
  18298. skirt: {
  18299. height: math.unit(6, "feet"),
  18300. weight: math.unit(150, "lb"),
  18301. name: "Skirt",
  18302. image: {
  18303. source: "./media/characters/pandora/skirt.svg",
  18304. extra: 1622 / 1525,
  18305. bottom: 0.015
  18306. }
  18307. },
  18308. hoodie: {
  18309. height: math.unit(6, "feet"),
  18310. weight: math.unit(150, "lb"),
  18311. name: "Hoodie",
  18312. image: {
  18313. source: "./media/characters/pandora/hoodie.svg",
  18314. extra: 1622 / 1525,
  18315. bottom: 0.015
  18316. }
  18317. },
  18318. casual: {
  18319. height: math.unit(6, "feet"),
  18320. weight: math.unit(150, "lb"),
  18321. name: "Casual",
  18322. image: {
  18323. source: "./media/characters/pandora/casual.svg",
  18324. extra: 1622 / 1525,
  18325. bottom: 0.015
  18326. }
  18327. },
  18328. },
  18329. [
  18330. {
  18331. name: "Normal",
  18332. height: math.unit(6, "feet")
  18333. },
  18334. {
  18335. name: "Big Steppy",
  18336. height: math.unit(1, "km"),
  18337. default: true
  18338. },
  18339. {
  18340. name: "Galactic Steppy",
  18341. height: math.unit(2, "gigameters")
  18342. },
  18343. ]
  18344. ))
  18345. characterMakers.push(() => makeCharacter(
  18346. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18347. {
  18348. side: {
  18349. height: math.unit(10, "feet"),
  18350. weight: math.unit(800, "kg"),
  18351. name: "Side",
  18352. image: {
  18353. source: "./media/characters/venio-darcony/side.svg",
  18354. extra: 1373 / 1003,
  18355. bottom: 0.037
  18356. }
  18357. },
  18358. front: {
  18359. height: math.unit(19, "feet"),
  18360. weight: math.unit(800, "kg"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/venio-darcony/front.svg"
  18364. }
  18365. },
  18366. back: {
  18367. height: math.unit(19, "feet"),
  18368. weight: math.unit(800, "kg"),
  18369. name: "Back",
  18370. image: {
  18371. source: "./media/characters/venio-darcony/back.svg"
  18372. }
  18373. },
  18374. sideNsfw: {
  18375. height: math.unit(10, "feet"),
  18376. weight: math.unit(800, "kg"),
  18377. name: "Side (NSFW)",
  18378. image: {
  18379. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18380. extra: 1373 / 1003,
  18381. bottom: 0.037
  18382. }
  18383. },
  18384. frontNsfw: {
  18385. height: math.unit(19, "feet"),
  18386. weight: math.unit(800, "kg"),
  18387. name: "Front (NSFW)",
  18388. image: {
  18389. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18390. }
  18391. },
  18392. backNsfw: {
  18393. height: math.unit(19, "feet"),
  18394. weight: math.unit(800, "kg"),
  18395. name: "Back (NSFW)",
  18396. image: {
  18397. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18398. }
  18399. },
  18400. sideArmored: {
  18401. height: math.unit(10, "feet"),
  18402. weight: math.unit(800, "kg"),
  18403. name: "Side (Armored)",
  18404. image: {
  18405. source: "./media/characters/venio-darcony/side-armored.svg",
  18406. extra: 1373 / 1003,
  18407. bottom: 0.037
  18408. }
  18409. },
  18410. frontArmored: {
  18411. height: math.unit(19, "feet"),
  18412. weight: math.unit(900, "kg"),
  18413. name: "Front (Armored)",
  18414. image: {
  18415. source: "./media/characters/venio-darcony/front-armored.svg"
  18416. }
  18417. },
  18418. backArmored: {
  18419. height: math.unit(19, "feet"),
  18420. weight: math.unit(900, "kg"),
  18421. name: "Back (Armored)",
  18422. image: {
  18423. source: "./media/characters/venio-darcony/back-armored.svg"
  18424. }
  18425. },
  18426. sword: {
  18427. height: math.unit(10, "feet"),
  18428. weight: math.unit(50, "lb"),
  18429. name: "Sword",
  18430. image: {
  18431. source: "./media/characters/venio-darcony/sword.svg"
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(10, "feet")
  18439. },
  18440. {
  18441. name: "Macro",
  18442. height: math.unit(130, "feet"),
  18443. default: true
  18444. },
  18445. {
  18446. name: "Macro+",
  18447. height: math.unit(240, "feet")
  18448. },
  18449. ]
  18450. ))
  18451. characterMakers.push(() => makeCharacter(
  18452. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18453. {
  18454. front: {
  18455. height: math.unit(6, "feet"),
  18456. weight: math.unit(150, "lb"),
  18457. name: "Front",
  18458. image: {
  18459. source: "./media/characters/veski/front.svg",
  18460. extra: 1299 / 1225,
  18461. bottom: 0.04
  18462. }
  18463. },
  18464. back: {
  18465. height: math.unit(6, "feet"),
  18466. weight: math.unit(150, "lb"),
  18467. name: "Back",
  18468. image: {
  18469. source: "./media/characters/veski/back.svg",
  18470. extra: 1299 / 1225,
  18471. bottom: 0.008
  18472. }
  18473. },
  18474. maw: {
  18475. height: math.unit(1.5 * 1.21, "feet"),
  18476. name: "Maw",
  18477. image: {
  18478. source: "./media/characters/veski/maw.svg"
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Macro",
  18485. height: math.unit(2, "km"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18492. {
  18493. front: {
  18494. height: math.unit(5 + 7 / 12, "feet"),
  18495. name: "Front",
  18496. image: {
  18497. source: "./media/characters/isabelle/front.svg",
  18498. extra: 2130 / 1976,
  18499. bottom: 0.05
  18500. }
  18501. },
  18502. },
  18503. [
  18504. {
  18505. name: "Supermicro",
  18506. height: math.unit(10, "micrometers")
  18507. },
  18508. {
  18509. name: "Micro",
  18510. height: math.unit(1, "inch")
  18511. },
  18512. {
  18513. name: "Tiny",
  18514. height: math.unit(5, "inches")
  18515. },
  18516. {
  18517. name: "Standard",
  18518. height: math.unit(5 + 7 / 12, "inches")
  18519. },
  18520. {
  18521. name: "Macro",
  18522. height: math.unit(80, "meters"),
  18523. default: true
  18524. },
  18525. {
  18526. name: "Megamacro",
  18527. height: math.unit(250, "meters")
  18528. },
  18529. {
  18530. name: "Gigamacro",
  18531. height: math.unit(5, "km")
  18532. },
  18533. {
  18534. name: "Cosmic",
  18535. height: math.unit(2.5e6, "miles")
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(6, "feet"),
  18544. weight: math.unit(150, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/hanzo/front.svg",
  18548. extra: 374 / 344,
  18549. bottom: 0.02
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(8, "feet"),
  18557. default: true
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(7, "feet"),
  18566. weight: math.unit(130, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/anna/front.svg",
  18570. extra: 169 / 145,
  18571. bottom: 0.06
  18572. }
  18573. },
  18574. full: {
  18575. height: math.unit(4.96, "feet"),
  18576. weight: math.unit(220, "lb"),
  18577. name: "Full",
  18578. image: {
  18579. source: "./media/characters/anna/full.svg",
  18580. extra: 138 / 114,
  18581. bottom: 0.15
  18582. }
  18583. },
  18584. tongue: {
  18585. height: math.unit(2.53, "feet"),
  18586. name: "Tongue",
  18587. image: {
  18588. source: "./media/characters/anna/tongue.svg"
  18589. }
  18590. },
  18591. },
  18592. [
  18593. {
  18594. name: "Normal",
  18595. height: math.unit(7, "feet"),
  18596. default: true
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18602. {
  18603. front: {
  18604. height: math.unit(7 + 1/12, "feet"),
  18605. weight: math.unit(150, "lb"),
  18606. name: "Front",
  18607. image: {
  18608. source: "./media/characters/ian-corvid/front.svg",
  18609. extra: 621/591,
  18610. bottom: 14/635
  18611. }
  18612. },
  18613. back: {
  18614. height: math.unit(7 + 1/12, "feet"),
  18615. weight: math.unit(150, "lb"),
  18616. name: "Back",
  18617. image: {
  18618. source: "./media/characters/ian-corvid/back.svg",
  18619. extra: 621/600,
  18620. bottom: 10/631
  18621. }
  18622. },
  18623. stomping: {
  18624. height: math.unit(7 + 1/12, "feet"),
  18625. weight: math.unit(150, "lb"),
  18626. name: "Stomping",
  18627. image: {
  18628. source: "./media/characters/ian-corvid/stomping.svg",
  18629. extra: 309/291,
  18630. bottom: 7/316
  18631. }
  18632. },
  18633. tongue: {
  18634. height: math.unit(3.9, "feet"),
  18635. name: "Tongue",
  18636. image: {
  18637. source: "./media/characters/ian-corvid/tongue.svg"
  18638. }
  18639. },
  18640. beak: {
  18641. height: math.unit(0.9, "feet"),
  18642. name: "Beak",
  18643. image: {
  18644. source: "./media/characters/ian-corvid/beak.svg"
  18645. }
  18646. },
  18647. sitting: {
  18648. height: math.unit(7 / 1.8, "feet"),
  18649. weight: math.unit(150, "lb"),
  18650. name: "Sitting",
  18651. image: {
  18652. source: "./media/characters/ian-corvid/sitting.svg",
  18653. extra: 1400 / 1269,
  18654. bottom: 0.15
  18655. }
  18656. },
  18657. },
  18658. [
  18659. {
  18660. name: "Tiny Microw",
  18661. height: math.unit(1, "inch")
  18662. },
  18663. {
  18664. name: "Microw",
  18665. height: math.unit(6, "inches")
  18666. },
  18667. {
  18668. name: "Crow",
  18669. height: math.unit(7 + 1 / 12, "feet"),
  18670. default: true
  18671. },
  18672. {
  18673. name: "Macrow",
  18674. height: math.unit(176, "feet")
  18675. },
  18676. ]
  18677. ))
  18678. characterMakers.push(() => makeCharacter(
  18679. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18680. {
  18681. front: {
  18682. height: math.unit(5 + 7 / 12, "feet"),
  18683. weight: math.unit(147, "lb"),
  18684. name: "Front",
  18685. image: {
  18686. source: "./media/characters/natalie-kellon/front.svg",
  18687. extra: 1214 / 1141,
  18688. bottom: 0.02
  18689. }
  18690. },
  18691. },
  18692. [
  18693. {
  18694. name: "Micro",
  18695. height: math.unit(1 / 16, "inch")
  18696. },
  18697. {
  18698. name: "Tiny",
  18699. height: math.unit(4, "inches")
  18700. },
  18701. {
  18702. name: "Normal",
  18703. height: math.unit(5 + 7 / 12, "feet"),
  18704. default: true
  18705. },
  18706. {
  18707. name: "Amazon",
  18708. height: math.unit(12, "feet")
  18709. },
  18710. {
  18711. name: "Giantess",
  18712. height: math.unit(160, "meters")
  18713. },
  18714. {
  18715. name: "Titaness",
  18716. height: math.unit(800, "meters")
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18722. {
  18723. front: {
  18724. height: math.unit(6, "feet"),
  18725. weight: math.unit(150, "lb"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/alluria/front.svg",
  18729. extra: 806 / 738,
  18730. bottom: 0.01
  18731. }
  18732. },
  18733. side: {
  18734. height: math.unit(6, "feet"),
  18735. weight: math.unit(150, "lb"),
  18736. name: "Side",
  18737. image: {
  18738. source: "./media/characters/alluria/side.svg",
  18739. extra: 800 / 750,
  18740. }
  18741. },
  18742. back: {
  18743. height: math.unit(6, "feet"),
  18744. weight: math.unit(150, "lb"),
  18745. name: "Back",
  18746. image: {
  18747. source: "./media/characters/alluria/back.svg",
  18748. extra: 806 / 738,
  18749. }
  18750. },
  18751. frontMaid: {
  18752. height: math.unit(6, "feet"),
  18753. weight: math.unit(150, "lb"),
  18754. name: "Front (Maid)",
  18755. image: {
  18756. source: "./media/characters/alluria/front-maid.svg",
  18757. extra: 806 / 738,
  18758. bottom: 0.01
  18759. }
  18760. },
  18761. sideMaid: {
  18762. height: math.unit(6, "feet"),
  18763. weight: math.unit(150, "lb"),
  18764. name: "Side (Maid)",
  18765. image: {
  18766. source: "./media/characters/alluria/side-maid.svg",
  18767. extra: 800 / 750,
  18768. bottom: 0.005
  18769. }
  18770. },
  18771. backMaid: {
  18772. height: math.unit(6, "feet"),
  18773. weight: math.unit(150, "lb"),
  18774. name: "Back (Maid)",
  18775. image: {
  18776. source: "./media/characters/alluria/back-maid.svg",
  18777. extra: 806 / 738,
  18778. }
  18779. },
  18780. },
  18781. [
  18782. {
  18783. name: "Micro",
  18784. height: math.unit(6, "inches"),
  18785. default: true
  18786. },
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18791. {
  18792. front: {
  18793. height: math.unit(6, "feet"),
  18794. weight: math.unit(150, "lb"),
  18795. name: "Front",
  18796. image: {
  18797. source: "./media/characters/kyle/front.svg",
  18798. extra: 1069 / 962,
  18799. bottom: 77.228 / 1727.45
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Macro",
  18806. height: math.unit(150, "feet"),
  18807. default: true
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(6, "feet"),
  18816. weight: math.unit(300, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/duncan/front.svg",
  18820. extra: 1650 / 1482,
  18821. bottom: 0.05
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Macro",
  18828. height: math.unit(100, "feet"),
  18829. default: true
  18830. },
  18831. ]
  18832. ))
  18833. characterMakers.push(() => makeCharacter(
  18834. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18835. {
  18836. front: {
  18837. height: math.unit(5 + 4 / 12, "feet"),
  18838. weight: math.unit(220, "lb"),
  18839. name: "Front",
  18840. image: {
  18841. source: "./media/characters/memory/front.svg",
  18842. extra: 3641 / 3545,
  18843. bottom: 0.03
  18844. }
  18845. },
  18846. back: {
  18847. height: math.unit(5 + 4 / 12, "feet"),
  18848. weight: math.unit(220, "lb"),
  18849. name: "Back",
  18850. image: {
  18851. source: "./media/characters/memory/back.svg",
  18852. extra: 3641 / 3545,
  18853. bottom: 0.025
  18854. }
  18855. },
  18856. frontSkirt: {
  18857. height: math.unit(5 + 4 / 12, "feet"),
  18858. weight: math.unit(220, "lb"),
  18859. name: "Front (Skirt)",
  18860. image: {
  18861. source: "./media/characters/memory/front-skirt.svg",
  18862. extra: 3641 / 3545,
  18863. bottom: 0.03
  18864. }
  18865. },
  18866. frontDress: {
  18867. height: math.unit(5 + 4 / 12, "feet"),
  18868. weight: math.unit(220, "lb"),
  18869. name: "Front (Dress)",
  18870. image: {
  18871. source: "./media/characters/memory/front-dress.svg",
  18872. extra: 3641 / 3545,
  18873. bottom: 0.03
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Micro",
  18880. height: math.unit(6, "inches"),
  18881. default: true
  18882. },
  18883. {
  18884. name: "Normal",
  18885. height: math.unit(5 + 4 / 12, "feet")
  18886. },
  18887. ]
  18888. ))
  18889. characterMakers.push(() => makeCharacter(
  18890. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18891. {
  18892. front: {
  18893. height: math.unit(4 + 11 / 12, "feet"),
  18894. weight: math.unit(100, "lb"),
  18895. name: "Front",
  18896. image: {
  18897. source: "./media/characters/luno/front.svg",
  18898. extra: 1535 / 1487,
  18899. bottom: 0.03
  18900. }
  18901. },
  18902. },
  18903. [
  18904. {
  18905. name: "Micro",
  18906. height: math.unit(3, "inches")
  18907. },
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(4 + 11 / 12, "feet"),
  18911. default: true
  18912. },
  18913. {
  18914. name: "Macro",
  18915. height: math.unit(300, "feet")
  18916. },
  18917. {
  18918. name: "Megamacro",
  18919. height: math.unit(700, "miles")
  18920. },
  18921. ]
  18922. ))
  18923. characterMakers.push(() => makeCharacter(
  18924. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18925. {
  18926. front: {
  18927. height: math.unit(6 + 2 / 12, "feet"),
  18928. weight: math.unit(170, "lb"),
  18929. name: "Front",
  18930. image: {
  18931. source: "./media/characters/jamesy/front.svg",
  18932. extra: 440 / 382,
  18933. bottom: 0.005
  18934. }
  18935. },
  18936. },
  18937. [
  18938. {
  18939. name: "Micro",
  18940. height: math.unit(3, "inches")
  18941. },
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(6 + 2 / 12, "feet"),
  18945. default: true
  18946. },
  18947. {
  18948. name: "Macro",
  18949. height: math.unit(300, "feet")
  18950. },
  18951. {
  18952. name: "Megamacro",
  18953. height: math.unit(700, "miles")
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18959. {
  18960. front: {
  18961. height: math.unit(6, "feet"),
  18962. weight: math.unit(160, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/mark/front.svg",
  18966. extra: 3300 / 3100,
  18967. bottom: 136.42 / 3440.47
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Macro",
  18974. height: math.unit(120, "meters")
  18975. },
  18976. {
  18977. name: "Bigger Macro",
  18978. height: math.unit(350, "meters")
  18979. },
  18980. {
  18981. name: "Megamacro",
  18982. height: math.unit(8, "km"),
  18983. default: true
  18984. },
  18985. {
  18986. name: "Continental",
  18987. height: math.unit(4550, "km")
  18988. },
  18989. {
  18990. name: "Planetary",
  18991. height: math.unit(65000, "km")
  18992. },
  18993. ]
  18994. ))
  18995. characterMakers.push(() => makeCharacter(
  18996. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18997. {
  18998. front: {
  18999. height: math.unit(6, "feet"),
  19000. weight: math.unit(400, "lb"),
  19001. name: "Front",
  19002. image: {
  19003. source: "./media/characters/mac/front.svg",
  19004. extra: 1048 / 987.7,
  19005. bottom: 60 / 1107.6,
  19006. }
  19007. },
  19008. },
  19009. [
  19010. {
  19011. name: "Macro",
  19012. height: math.unit(500, "feet"),
  19013. default: true
  19014. },
  19015. ]
  19016. ))
  19017. characterMakers.push(() => makeCharacter(
  19018. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19019. {
  19020. front: {
  19021. height: math.unit(5 + 2 / 12, "feet"),
  19022. weight: math.unit(190, "lb"),
  19023. name: "Front",
  19024. image: {
  19025. source: "./media/characters/bari/front.svg",
  19026. extra: 3156 / 2880,
  19027. bottom: 0.03
  19028. }
  19029. },
  19030. back: {
  19031. height: math.unit(5 + 2 / 12, "feet"),
  19032. weight: math.unit(190, "lb"),
  19033. name: "Back",
  19034. image: {
  19035. source: "./media/characters/bari/back.svg",
  19036. extra: 3260 / 2834,
  19037. bottom: 0.025
  19038. }
  19039. },
  19040. frontPlush: {
  19041. height: math.unit(5 + 2 / 12, "feet"),
  19042. weight: math.unit(190, "lb"),
  19043. name: "Front (Plush)",
  19044. image: {
  19045. source: "./media/characters/bari/front-plush.svg",
  19046. extra: 1112 / 1061,
  19047. bottom: 0.002
  19048. }
  19049. },
  19050. },
  19051. [
  19052. {
  19053. name: "Micro",
  19054. height: math.unit(3, "inches")
  19055. },
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(5 + 2 / 12, "feet"),
  19059. default: true
  19060. },
  19061. {
  19062. name: "Macro",
  19063. height: math.unit(20, "feet")
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19069. {
  19070. front: {
  19071. height: math.unit(6 + 1 / 12, "feet"),
  19072. weight: math.unit(275, "lb"),
  19073. name: "Front",
  19074. image: {
  19075. source: "./media/characters/hunter-misha-raven/front.svg"
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Mortal",
  19082. height: math.unit(6 + 1 / 12, "feet")
  19083. },
  19084. {
  19085. name: "Divine",
  19086. height: math.unit(1.12134e34, "parsecs"),
  19087. default: true
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(6 + 3 / 12, "feet"),
  19096. weight: math.unit(220, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/max-calore/front.svg",
  19100. extra: 1700 / 1648,
  19101. bottom: 0.01
  19102. }
  19103. },
  19104. back: {
  19105. height: math.unit(6 + 3 / 12, "feet"),
  19106. weight: math.unit(220, "lb"),
  19107. name: "Back",
  19108. image: {
  19109. source: "./media/characters/max-calore/back.svg",
  19110. extra: 1700 / 1648,
  19111. bottom: 0.01
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Normal",
  19118. height: math.unit(6 + 3 / 12, "feet"),
  19119. default: true
  19120. },
  19121. ]
  19122. ))
  19123. characterMakers.push(() => makeCharacter(
  19124. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19125. {
  19126. side: {
  19127. height: math.unit(2 + 8 / 12, "feet"),
  19128. weight: math.unit(99, "lb"),
  19129. name: "Side",
  19130. image: {
  19131. source: "./media/characters/aspen/side.svg",
  19132. extra: 152 / 138,
  19133. bottom: 0.032
  19134. }
  19135. },
  19136. },
  19137. [
  19138. {
  19139. name: "Normal",
  19140. height: math.unit(2 + 8 / 12, "feet"),
  19141. default: true
  19142. },
  19143. ]
  19144. ))
  19145. characterMakers.push(() => makeCharacter(
  19146. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19147. {
  19148. side: {
  19149. height: math.unit(3 + 2 / 12, "feet"),
  19150. weight: math.unit(224, "lb"),
  19151. name: "Side",
  19152. image: {
  19153. source: "./media/characters/sheila-feral-wolf/side.svg",
  19154. extra: 179 / 166,
  19155. bottom: 0.03
  19156. }
  19157. },
  19158. },
  19159. [
  19160. {
  19161. name: "Normal",
  19162. height: math.unit(3 + 2 / 12, "feet"),
  19163. default: true
  19164. },
  19165. ]
  19166. ))
  19167. characterMakers.push(() => makeCharacter(
  19168. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19169. {
  19170. side: {
  19171. height: math.unit(1 + 9 / 12, "feet"),
  19172. weight: math.unit(38, "lb"),
  19173. name: "Side",
  19174. image: {
  19175. source: "./media/characters/michelle/side.svg",
  19176. extra: 147 / 136.7,
  19177. bottom: 0.03
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(1 + 9 / 12, "feet"),
  19185. default: true
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19191. {
  19192. front: {
  19193. height: math.unit(1.54, "feet"),
  19194. weight: math.unit(50, "lb"),
  19195. name: "Front",
  19196. image: {
  19197. source: "./media/characters/nino/front.svg"
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(1.54, "feet"),
  19205. default: true
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19211. {
  19212. front: {
  19213. height: math.unit(1.49, "feet"),
  19214. weight: math.unit(45, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/viola/front.svg"
  19218. }
  19219. },
  19220. },
  19221. [
  19222. {
  19223. name: "Normal",
  19224. height: math.unit(1.49, "feet"),
  19225. default: true
  19226. },
  19227. ]
  19228. ))
  19229. characterMakers.push(() => makeCharacter(
  19230. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19231. {
  19232. front: {
  19233. height: math.unit(6 + 5 / 12, "feet"),
  19234. weight: math.unit(580, "lb"),
  19235. name: "Front",
  19236. image: {
  19237. source: "./media/characters/atlas/front.svg",
  19238. extra: 298.5 / 290,
  19239. bottom: 0.015
  19240. }
  19241. },
  19242. },
  19243. [
  19244. {
  19245. name: "Normal",
  19246. height: math.unit(6 + 5 / 12, "feet"),
  19247. default: true
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19253. {
  19254. side: {
  19255. height: math.unit(15.6, "inches"),
  19256. weight: math.unit(10, "lb"),
  19257. name: "Side",
  19258. image: {
  19259. source: "./media/characters/davy/side.svg",
  19260. extra: 200 / 170,
  19261. bottom: 0.01
  19262. }
  19263. },
  19264. },
  19265. [
  19266. {
  19267. name: "Normal",
  19268. height: math.unit(15.6, "inches"),
  19269. default: true
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19275. {
  19276. side: {
  19277. height: math.unit(4 + 8 / 12, "feet"),
  19278. weight: math.unit(166, "lb"),
  19279. name: "Side",
  19280. image: {
  19281. source: "./media/characters/fiona/side.svg",
  19282. extra: 232 / 220,
  19283. bottom: 0.03
  19284. }
  19285. },
  19286. },
  19287. [
  19288. {
  19289. name: "Normal",
  19290. height: math.unit(4 + 8 / 12, "feet"),
  19291. default: true
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19297. {
  19298. front: {
  19299. height: math.unit(26, "inches"),
  19300. weight: math.unit(35, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/lyla/front.svg",
  19304. bottom: 0.1
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Normal",
  19311. height: math.unit(3, "feet"),
  19312. default: true
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19318. {
  19319. side: {
  19320. height: math.unit(1.8, "feet"),
  19321. weight: math.unit(44, "lb"),
  19322. name: "Side",
  19323. image: {
  19324. source: "./media/characters/perseus/side.svg",
  19325. bottom: 0.21
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(1.8, "feet"),
  19333. default: true
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19339. {
  19340. side: {
  19341. height: math.unit(4 + 2 / 12, "feet"),
  19342. weight: math.unit(20, "lb"),
  19343. name: "Side",
  19344. image: {
  19345. source: "./media/characters/remus/side.svg"
  19346. }
  19347. },
  19348. },
  19349. [
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(4 + 2 / 12, "feet"),
  19353. default: true
  19354. },
  19355. ]
  19356. ))
  19357. characterMakers.push(() => makeCharacter(
  19358. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19359. {
  19360. front: {
  19361. height: math.unit(4 + 11 / 12, "feet"),
  19362. weight: math.unit(114, "lb"),
  19363. name: "Front",
  19364. image: {
  19365. source: "./media/characters/raf/front.svg",
  19366. extra: 1504/1339,
  19367. bottom: 26/1530
  19368. }
  19369. },
  19370. side: {
  19371. height: math.unit(4 + 11 / 12, "feet"),
  19372. weight: math.unit(114, "lb"),
  19373. name: "Side",
  19374. image: {
  19375. source: "./media/characters/raf/side.svg",
  19376. extra: 1466/1316,
  19377. bottom: 29/1495
  19378. }
  19379. },
  19380. paw: {
  19381. height: math.unit(1.45, "feet"),
  19382. name: "Paw",
  19383. image: {
  19384. source: "./media/characters/raf/paw.svg"
  19385. },
  19386. extraAttributes: {
  19387. "toeSize": {
  19388. name: "Toe Size",
  19389. power: 2,
  19390. type: "area",
  19391. base: math.unit(0.004, "m^2")
  19392. },
  19393. "padSize": {
  19394. name: "Pad Size",
  19395. power: 2,
  19396. type: "area",
  19397. base: math.unit(0.04, "m^2")
  19398. },
  19399. "footSize": {
  19400. name: "Foot Size",
  19401. power: 2,
  19402. type: "area",
  19403. base: math.unit(0.08, "m^2")
  19404. },
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Micro",
  19411. height: math.unit(2, "inches")
  19412. },
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(4 + 11 / 12, "feet"),
  19416. default: true
  19417. },
  19418. {
  19419. name: "Macro",
  19420. height: math.unit(70, "feet")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(1.5, "meters"),
  19429. weight: math.unit(68, "kg"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/liam-einarr/front.svg",
  19433. extra: 2822 / 2666
  19434. }
  19435. },
  19436. back: {
  19437. height: math.unit(1.5, "meters"),
  19438. weight: math.unit(68, "kg"),
  19439. name: "Back",
  19440. image: {
  19441. source: "./media/characters/liam-einarr/back.svg",
  19442. extra: 2822 / 2666,
  19443. bottom: 0.015
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(1.5, "meters"),
  19451. default: true
  19452. },
  19453. {
  19454. name: "Macro",
  19455. height: math.unit(150, "meters")
  19456. },
  19457. {
  19458. name: "Megamacro",
  19459. height: math.unit(35, "km")
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19465. {
  19466. front: {
  19467. height: math.unit(6, "feet"),
  19468. weight: math.unit(75, "kg"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/linda/front.svg",
  19472. extra: 930 / 874,
  19473. bottom: 0.004
  19474. }
  19475. },
  19476. },
  19477. [
  19478. {
  19479. name: "Normal",
  19480. height: math.unit(6, "feet"),
  19481. default: true
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19487. {
  19488. front: {
  19489. height: math.unit(6 + 8 / 12, "feet"),
  19490. weight: math.unit(220, "lb"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/caylex/front.svg",
  19494. extra: 821 / 772,
  19495. bottom: 0.07
  19496. }
  19497. },
  19498. back: {
  19499. height: math.unit(6 + 8 / 12, "feet"),
  19500. weight: math.unit(220, "lb"),
  19501. name: "Back",
  19502. image: {
  19503. source: "./media/characters/caylex/back.svg",
  19504. extra: 821 / 772,
  19505. bottom: 0.022
  19506. }
  19507. },
  19508. hand: {
  19509. height: math.unit(1.25, "feet"),
  19510. name: "Hand",
  19511. image: {
  19512. source: "./media/characters/caylex/hand.svg"
  19513. }
  19514. },
  19515. foot: {
  19516. height: math.unit(1.6, "feet"),
  19517. name: "Foot",
  19518. image: {
  19519. source: "./media/characters/caylex/foot.svg"
  19520. }
  19521. },
  19522. armored: {
  19523. height: math.unit(6 + 8 / 12, "feet"),
  19524. weight: math.unit(250, "lb"),
  19525. name: "Armored",
  19526. image: {
  19527. source: "./media/characters/caylex/armored.svg",
  19528. extra: 1420 / 1310,
  19529. bottom: 0.045
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Normal",
  19536. height: math.unit(6 + 8 / 12, "feet"),
  19537. default: true
  19538. },
  19539. {
  19540. name: "Normal+",
  19541. height: math.unit(12, "feet")
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19547. {
  19548. front: {
  19549. height: math.unit(7 + 6 / 12, "feet"),
  19550. weight: math.unit(288, "lb"),
  19551. name: "Front",
  19552. image: {
  19553. source: "./media/characters/alana/front.svg",
  19554. extra: 679 / 653,
  19555. bottom: 22.5 / 701
  19556. }
  19557. },
  19558. },
  19559. [
  19560. {
  19561. name: "Normal",
  19562. height: math.unit(7 + 6 / 12, "feet")
  19563. },
  19564. {
  19565. name: "Large",
  19566. height: math.unit(50, "feet")
  19567. },
  19568. {
  19569. name: "Macro",
  19570. height: math.unit(100, "feet"),
  19571. default: true
  19572. },
  19573. {
  19574. name: "Macro+",
  19575. height: math.unit(200, "feet")
  19576. },
  19577. ]
  19578. ))
  19579. characterMakers.push(() => makeCharacter(
  19580. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19581. {
  19582. front: {
  19583. height: math.unit(6 + 1 / 12, "feet"),
  19584. weight: math.unit(210, "lb"),
  19585. name: "Front",
  19586. image: {
  19587. source: "./media/characters/hasani/front.svg",
  19588. extra: 244 / 232,
  19589. bottom: 0.01
  19590. }
  19591. },
  19592. back: {
  19593. height: math.unit(6 + 1 / 12, "feet"),
  19594. weight: math.unit(210, "lb"),
  19595. name: "Back",
  19596. image: {
  19597. source: "./media/characters/hasani/back.svg",
  19598. extra: 244 / 232,
  19599. bottom: 0.01
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(6 + 1 / 12, "feet")
  19607. },
  19608. {
  19609. name: "Macro",
  19610. height: math.unit(175, "feet"),
  19611. default: true
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19617. {
  19618. front: {
  19619. height: math.unit(1.82, "meters"),
  19620. weight: math.unit(140, "lb"),
  19621. name: "Front",
  19622. image: {
  19623. source: "./media/characters/nita/front.svg",
  19624. extra: 2473 / 2363,
  19625. bottom: 0.01
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(1.82, "m")
  19633. },
  19634. {
  19635. name: "Macro",
  19636. height: math.unit(300, "m")
  19637. },
  19638. {
  19639. name: "Mistake Canon",
  19640. height: math.unit(0.5, "miles"),
  19641. default: true
  19642. },
  19643. {
  19644. name: "Big Mistake",
  19645. height: math.unit(13, "miles")
  19646. },
  19647. {
  19648. name: "Playing God",
  19649. height: math.unit(2450, "miles")
  19650. },
  19651. ]
  19652. ))
  19653. characterMakers.push(() => makeCharacter(
  19654. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19655. {
  19656. front: {
  19657. height: math.unit(4, "feet"),
  19658. weight: math.unit(120, "lb"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/shiriko/front.svg",
  19662. extra: 970/934,
  19663. bottom: 5/975
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Normal",
  19670. height: math.unit(4, "feet"),
  19671. default: true
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19677. {
  19678. front: {
  19679. height: math.unit(6, "feet"),
  19680. name: "front",
  19681. image: {
  19682. source: "./media/characters/deja/front.svg",
  19683. extra: 926 / 840,
  19684. bottom: 0.07
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Planck Length",
  19691. height: math.unit(1.6e-35, "meters")
  19692. },
  19693. {
  19694. name: "Normal",
  19695. height: math.unit(30.48, "meters"),
  19696. default: true
  19697. },
  19698. {
  19699. name: "Universal",
  19700. height: math.unit(8.8e26, "meters")
  19701. },
  19702. ]
  19703. ))
  19704. characterMakers.push(() => makeCharacter(
  19705. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19706. {
  19707. side: {
  19708. height: math.unit(8, "feet"),
  19709. weight: math.unit(6300, "lb"),
  19710. name: "Side",
  19711. image: {
  19712. source: "./media/characters/anima/side.svg",
  19713. bottom: 0.035
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(8, "feet"),
  19721. default: true
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19727. {
  19728. front: {
  19729. height: math.unit(8, "feet"),
  19730. weight: math.unit(350, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/bianca/front.svg",
  19734. extra: 234 / 225,
  19735. bottom: 0.03
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(8, "feet"),
  19743. default: true
  19744. },
  19745. ]
  19746. ))
  19747. characterMakers.push(() => makeCharacter(
  19748. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19749. {
  19750. front: {
  19751. height: math.unit(11 + 5/12, "feet"),
  19752. weight: math.unit(1200, "lb"),
  19753. name: "Front",
  19754. image: {
  19755. source: "./media/characters/adinia/front.svg",
  19756. extra: 1767/1641,
  19757. bottom: 44/1811
  19758. },
  19759. extraAttributes: {
  19760. "energyIntake": {
  19761. name: "Energy Intake",
  19762. power: 3,
  19763. type: "energy",
  19764. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19765. },
  19766. }
  19767. },
  19768. back: {
  19769. height: math.unit(11 + 5/12, "feet"),
  19770. weight: math.unit(1200, "lb"),
  19771. name: "Back",
  19772. image: {
  19773. source: "./media/characters/adinia/back.svg",
  19774. extra: 1834/1684,
  19775. bottom: 14/1848
  19776. },
  19777. extraAttributes: {
  19778. "energyIntake": {
  19779. name: "Energy Intake",
  19780. power: 3,
  19781. type: "energy",
  19782. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19783. },
  19784. }
  19785. },
  19786. maw: {
  19787. height: math.unit(3.79, "feet"),
  19788. name: "Maw",
  19789. image: {
  19790. source: "./media/characters/adinia/maw.svg"
  19791. }
  19792. },
  19793. rump: {
  19794. height: math.unit(4.6, "feet"),
  19795. name: "Rump",
  19796. image: {
  19797. source: "./media/characters/adinia/rump.svg"
  19798. }
  19799. },
  19800. },
  19801. [
  19802. {
  19803. name: "Normal",
  19804. height: math.unit(11 + 5 / 12, "feet"),
  19805. default: true
  19806. },
  19807. ]
  19808. ))
  19809. characterMakers.push(() => makeCharacter(
  19810. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19811. {
  19812. front: {
  19813. height: math.unit(3, "meters"),
  19814. weight: math.unit(200, "kg"),
  19815. name: "Front",
  19816. image: {
  19817. source: "./media/characters/lykasa/front.svg",
  19818. extra: 1076 / 976,
  19819. bottom: 0.06
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(3, "meters")
  19827. },
  19828. {
  19829. name: "Kaiju",
  19830. height: math.unit(120, "meters"),
  19831. default: true
  19832. },
  19833. {
  19834. name: "Mega Kaiju",
  19835. height: math.unit(240, "km")
  19836. },
  19837. {
  19838. name: "Giga Kaiju",
  19839. height: math.unit(400, "megameters")
  19840. },
  19841. {
  19842. name: "Tera Kaiju",
  19843. height: math.unit(800, "gigameters")
  19844. },
  19845. {
  19846. name: "Kaiju Dragon Goddess",
  19847. height: math.unit(26, "zettaparsecs")
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19853. {
  19854. side: {
  19855. height: math.unit(283 / 124 * 6, "feet"),
  19856. weight: math.unit(35000, "lb"),
  19857. name: "Side",
  19858. image: {
  19859. source: "./media/characters/malfaren/side.svg",
  19860. extra: 1310/529,
  19861. bottom: 24/1334
  19862. }
  19863. },
  19864. front: {
  19865. height: math.unit(22.36, "feet"),
  19866. weight: math.unit(35000, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/malfaren/front.svg",
  19870. extra: 1237/1115,
  19871. bottom: 32/1269
  19872. }
  19873. },
  19874. maw: {
  19875. height: math.unit(6.9, "feet"),
  19876. name: "Maw",
  19877. image: {
  19878. source: "./media/characters/malfaren/maw.svg"
  19879. }
  19880. },
  19881. dick: {
  19882. height: math.unit(6.19, "feet"),
  19883. name: "Dick",
  19884. image: {
  19885. source: "./media/characters/malfaren/dick.svg"
  19886. }
  19887. },
  19888. eye: {
  19889. height: math.unit(0.69, "feet"),
  19890. name: "Eye",
  19891. image: {
  19892. source: "./media/characters/malfaren/eye.svg"
  19893. }
  19894. },
  19895. },
  19896. [
  19897. {
  19898. name: "Big",
  19899. height: math.unit(283 / 162 * 6, "feet"),
  19900. },
  19901. {
  19902. name: "Bigger",
  19903. height: math.unit(283 / 124 * 6, "feet")
  19904. },
  19905. {
  19906. name: "Massive",
  19907. height: math.unit(283 / 92 * 6, "feet"),
  19908. default: true
  19909. },
  19910. {
  19911. name: "👀💦",
  19912. height: math.unit(283 / 73 * 6, "feet"),
  19913. },
  19914. ]
  19915. ))
  19916. characterMakers.push(() => makeCharacter(
  19917. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19918. {
  19919. front: {
  19920. height: math.unit(1.7, "m"),
  19921. weight: math.unit(70, "kg"),
  19922. name: "Front",
  19923. image: {
  19924. source: "./media/characters/kernel/front.svg",
  19925. extra: 1960/1821,
  19926. bottom: 17/1977
  19927. }
  19928. },
  19929. },
  19930. [
  19931. {
  19932. name: "Nano",
  19933. height: math.unit(17, "micrometers")
  19934. },
  19935. {
  19936. name: "Micro",
  19937. height: math.unit(1.7, "mm")
  19938. },
  19939. {
  19940. name: "Small",
  19941. height: math.unit(1.7, "cm")
  19942. },
  19943. {
  19944. name: "Normal",
  19945. height: math.unit(1.7, "m"),
  19946. default: true
  19947. },
  19948. ]
  19949. ))
  19950. characterMakers.push(() => makeCharacter(
  19951. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19952. {
  19953. front: {
  19954. height: math.unit(1.75, "meters"),
  19955. weight: math.unit(65, "kg"),
  19956. name: "Front",
  19957. image: {
  19958. source: "./media/characters/jayne-folest/front.svg",
  19959. extra: 2115 / 2007,
  19960. bottom: 0.02
  19961. }
  19962. },
  19963. back: {
  19964. height: math.unit(1.75, "meters"),
  19965. weight: math.unit(65, "kg"),
  19966. name: "Back",
  19967. image: {
  19968. source: "./media/characters/jayne-folest/back.svg",
  19969. extra: 2115 / 2007,
  19970. bottom: 0.005
  19971. }
  19972. },
  19973. frontClothed: {
  19974. height: math.unit(1.75, "meters"),
  19975. weight: math.unit(65, "kg"),
  19976. name: "Front (Clothed)",
  19977. image: {
  19978. source: "./media/characters/jayne-folest/front-clothed.svg",
  19979. extra: 2115 / 2007,
  19980. bottom: 0.035
  19981. }
  19982. },
  19983. hand: {
  19984. height: math.unit(1 / 1.260, "feet"),
  19985. name: "Hand",
  19986. image: {
  19987. source: "./media/characters/jayne-folest/hand.svg"
  19988. }
  19989. },
  19990. foot: {
  19991. height: math.unit(1 / 0.918, "feet"),
  19992. name: "Foot",
  19993. image: {
  19994. source: "./media/characters/jayne-folest/foot.svg"
  19995. }
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Micro",
  20001. height: math.unit(4, "cm")
  20002. },
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(1.75, "meters")
  20006. },
  20007. {
  20008. name: "Macro",
  20009. height: math.unit(47.5, "meters"),
  20010. default: true
  20011. },
  20012. ]
  20013. ))
  20014. characterMakers.push(() => makeCharacter(
  20015. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20016. {
  20017. front: {
  20018. height: math.unit(180, "cm"),
  20019. weight: math.unit(70, "kg"),
  20020. name: "Front",
  20021. image: {
  20022. source: "./media/characters/algier/front.svg",
  20023. extra: 596 / 572,
  20024. bottom: 0.04
  20025. }
  20026. },
  20027. back: {
  20028. height: math.unit(180, "cm"),
  20029. weight: math.unit(70, "kg"),
  20030. name: "Back",
  20031. image: {
  20032. source: "./media/characters/algier/back.svg",
  20033. extra: 596 / 572,
  20034. bottom: 0.025
  20035. }
  20036. },
  20037. frontdressed: {
  20038. height: math.unit(180, "cm"),
  20039. weight: math.unit(150, "kg"),
  20040. name: "Front-dressed",
  20041. image: {
  20042. source: "./media/characters/algier/front-dressed.svg",
  20043. extra: 596 / 572,
  20044. bottom: 0.038
  20045. }
  20046. },
  20047. },
  20048. [
  20049. {
  20050. name: "Micro",
  20051. height: math.unit(5, "cm")
  20052. },
  20053. {
  20054. name: "Normal",
  20055. height: math.unit(180, "cm"),
  20056. default: true
  20057. },
  20058. {
  20059. name: "Macro",
  20060. height: math.unit(64, "m")
  20061. },
  20062. ]
  20063. ))
  20064. characterMakers.push(() => makeCharacter(
  20065. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20066. {
  20067. upright: {
  20068. height: math.unit(7, "feet"),
  20069. weight: math.unit(300, "lb"),
  20070. name: "Upright",
  20071. image: {
  20072. source: "./media/characters/pretzel/upright.svg",
  20073. extra: 534 / 522,
  20074. bottom: 0.065
  20075. }
  20076. },
  20077. sprawling: {
  20078. height: math.unit(3.75, "feet"),
  20079. weight: math.unit(300, "lb"),
  20080. name: "Sprawling",
  20081. image: {
  20082. source: "./media/characters/pretzel/sprawling.svg",
  20083. extra: 314 / 281,
  20084. bottom: 0.1
  20085. }
  20086. },
  20087. tongue: {
  20088. height: math.unit(2, "feet"),
  20089. name: "Tongue",
  20090. image: {
  20091. source: "./media/characters/pretzel/tongue.svg"
  20092. }
  20093. },
  20094. },
  20095. [
  20096. {
  20097. name: "Normal",
  20098. height: math.unit(7, "feet"),
  20099. default: true
  20100. },
  20101. {
  20102. name: "Oversized",
  20103. height: math.unit(15, "feet")
  20104. },
  20105. {
  20106. name: "Huge",
  20107. height: math.unit(30, "feet")
  20108. },
  20109. {
  20110. name: "Macro",
  20111. height: math.unit(250, "feet")
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20117. {
  20118. sideFront: {
  20119. height: math.unit(5 + 2 / 12, "feet"),
  20120. weight: math.unit(120, "lb"),
  20121. name: "Front Side",
  20122. image: {
  20123. source: "./media/characters/roxi/side-front.svg",
  20124. extra: 2924 / 2717,
  20125. bottom: 0.08
  20126. }
  20127. },
  20128. sideBack: {
  20129. height: math.unit(5 + 2 / 12, "feet"),
  20130. weight: math.unit(120, "lb"),
  20131. name: "Back Side",
  20132. image: {
  20133. source: "./media/characters/roxi/side-back.svg",
  20134. extra: 2904 / 2693,
  20135. bottom: 0.06
  20136. }
  20137. },
  20138. front: {
  20139. height: math.unit(5 + 2 / 12, "feet"),
  20140. weight: math.unit(120, "lb"),
  20141. name: "Front",
  20142. image: {
  20143. source: "./media/characters/roxi/front.svg",
  20144. extra: 2028 / 1907,
  20145. bottom: 0.01
  20146. }
  20147. },
  20148. frontAlt: {
  20149. height: math.unit(5 + 2 / 12, "feet"),
  20150. weight: math.unit(120, "lb"),
  20151. name: "Front (Alt)",
  20152. image: {
  20153. source: "./media/characters/roxi/front-alt.svg",
  20154. extra: 1828 / 1798,
  20155. bottom: 0.01
  20156. }
  20157. },
  20158. sitting: {
  20159. height: math.unit(2.8, "feet"),
  20160. weight: math.unit(120, "lb"),
  20161. name: "Sitting",
  20162. image: {
  20163. source: "./media/characters/roxi/sitting.svg",
  20164. extra: 2660 / 2462,
  20165. bottom: 0.1
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Normal",
  20172. height: math.unit(5 + 2 / 12, "feet"),
  20173. default: true
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20179. {
  20180. side: {
  20181. height: math.unit(55, "feet"),
  20182. weight: math.unit(153, "tons"),
  20183. name: "Side",
  20184. image: {
  20185. source: "./media/characters/shadow/side.svg",
  20186. extra: 701 / 628,
  20187. bottom: 0.02
  20188. }
  20189. },
  20190. flying: {
  20191. height: math.unit(145, "feet"),
  20192. weight: math.unit(153, "tons"),
  20193. name: "Flying",
  20194. image: {
  20195. source: "./media/characters/shadow/flying.svg"
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(55, "feet"),
  20203. default: true
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20209. {
  20210. front: {
  20211. height: math.unit(6, "feet"),
  20212. weight: math.unit(200, "lb"),
  20213. name: "Front",
  20214. image: {
  20215. source: "./media/characters/marcie/front.svg",
  20216. extra: 960 / 876,
  20217. bottom: 58 / 1017.87
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Macro",
  20224. height: math.unit(1, "mile"),
  20225. default: true
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(7, "feet"),
  20234. weight: math.unit(200, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/kachina/front.svg",
  20238. extra: 3206/2764,
  20239. bottom: 140/3346
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(7, "feet"),
  20247. default: true
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20253. {
  20254. looking: {
  20255. height: math.unit(2, "meters"),
  20256. weight: math.unit(300, "kg"),
  20257. name: "Looking",
  20258. image: {
  20259. source: "./media/characters/kash/looking.svg",
  20260. extra: 474 / 344,
  20261. bottom: 0.03
  20262. }
  20263. },
  20264. side: {
  20265. height: math.unit(2, "meters"),
  20266. weight: math.unit(300, "kg"),
  20267. name: "Side",
  20268. image: {
  20269. source: "./media/characters/kash/side.svg",
  20270. extra: 302 / 251,
  20271. bottom: 0.03
  20272. }
  20273. },
  20274. front: {
  20275. height: math.unit(2, "meters"),
  20276. weight: math.unit(300, "kg"),
  20277. name: "Front",
  20278. image: {
  20279. source: "./media/characters/kash/front.svg",
  20280. extra: 495 / 360,
  20281. bottom: 0.015
  20282. }
  20283. },
  20284. },
  20285. [
  20286. {
  20287. name: "Normal",
  20288. height: math.unit(2, "meters"),
  20289. default: true
  20290. },
  20291. {
  20292. name: "Big",
  20293. height: math.unit(3, "meters")
  20294. },
  20295. {
  20296. name: "Large",
  20297. height: math.unit(5, "meters")
  20298. },
  20299. ]
  20300. ))
  20301. characterMakers.push(() => makeCharacter(
  20302. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20303. {
  20304. feeding: {
  20305. height: math.unit(6.7, "feet"),
  20306. weight: math.unit(350, "lb"),
  20307. name: "Feeding",
  20308. image: {
  20309. source: "./media/characters/lalim/feeding.svg",
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(6.7, "feet"),
  20317. default: true
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(9.5, "feet"),
  20326. weight: math.unit(600, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/de'vout/front.svg",
  20330. extra: 1443 / 1328,
  20331. bottom: 0.025
  20332. }
  20333. },
  20334. back: {
  20335. height: math.unit(9.5, "feet"),
  20336. weight: math.unit(600, "lb"),
  20337. name: "Back",
  20338. image: {
  20339. source: "./media/characters/de'vout/back.svg",
  20340. extra: 1443 / 1328
  20341. }
  20342. },
  20343. frontDressed: {
  20344. height: math.unit(9.5, "feet"),
  20345. weight: math.unit(600, "lb"),
  20346. name: "Front (Dressed",
  20347. image: {
  20348. source: "./media/characters/de'vout/front-dressed.svg",
  20349. extra: 1443 / 1328,
  20350. bottom: 0.025
  20351. }
  20352. },
  20353. backDressed: {
  20354. height: math.unit(9.5, "feet"),
  20355. weight: math.unit(600, "lb"),
  20356. name: "Back (Dressed",
  20357. image: {
  20358. source: "./media/characters/de'vout/back-dressed.svg",
  20359. extra: 1443 / 1328
  20360. }
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Normal",
  20366. height: math.unit(9.5, "feet"),
  20367. default: true
  20368. },
  20369. ]
  20370. ))
  20371. characterMakers.push(() => makeCharacter(
  20372. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20373. {
  20374. front: {
  20375. height: math.unit(8, "feet"),
  20376. weight: math.unit(225, "lb"),
  20377. name: "Front",
  20378. image: {
  20379. source: "./media/characters/talana/front.svg",
  20380. extra: 1410 / 1300,
  20381. bottom: 0.015
  20382. }
  20383. },
  20384. frontDressed: {
  20385. height: math.unit(8, "feet"),
  20386. weight: math.unit(225, "lb"),
  20387. name: "Front (Dressed",
  20388. image: {
  20389. source: "./media/characters/talana/front-dressed.svg",
  20390. extra: 1410 / 1300,
  20391. bottom: 0.015
  20392. }
  20393. },
  20394. },
  20395. [
  20396. {
  20397. name: "Normal",
  20398. height: math.unit(8, "feet"),
  20399. default: true
  20400. },
  20401. ]
  20402. ))
  20403. characterMakers.push(() => makeCharacter(
  20404. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20405. {
  20406. side: {
  20407. height: math.unit(7.2, "feet"),
  20408. weight: math.unit(150, "lb"),
  20409. name: "Side",
  20410. image: {
  20411. source: "./media/characters/xeauvok/side.svg",
  20412. extra: 1975 / 1523,
  20413. bottom: 0.07
  20414. }
  20415. },
  20416. },
  20417. [
  20418. {
  20419. name: "Normal",
  20420. height: math.unit(7.2, "feet"),
  20421. default: true
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20427. {
  20428. side: {
  20429. height: math.unit(4, "meters"),
  20430. weight: math.unit(2200, "kg"),
  20431. name: "Side",
  20432. image: {
  20433. source: "./media/characters/zara/side.svg",
  20434. extra: 765/744,
  20435. bottom: 156/921
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Normal",
  20442. height: math.unit(4, "meters"),
  20443. default: true
  20444. },
  20445. ]
  20446. ))
  20447. characterMakers.push(() => makeCharacter(
  20448. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20449. {
  20450. side: {
  20451. height: math.unit(6, "feet"),
  20452. weight: math.unit(150, "lb"),
  20453. name: "Side",
  20454. image: {
  20455. source: "./media/characters/richard-dragon/side.svg",
  20456. extra: 845 / 340,
  20457. bottom: 0.017
  20458. }
  20459. },
  20460. maw: {
  20461. height: math.unit(2.97, "feet"),
  20462. name: "Maw",
  20463. image: {
  20464. source: "./media/characters/richard-dragon/maw.svg"
  20465. }
  20466. },
  20467. },
  20468. [
  20469. ]
  20470. ))
  20471. characterMakers.push(() => makeCharacter(
  20472. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20473. {
  20474. front: {
  20475. height: math.unit(4, "feet"),
  20476. weight: math.unit(100, "lb"),
  20477. name: "Front",
  20478. image: {
  20479. source: "./media/characters/richard-smeargle/front.svg",
  20480. extra: 2952 / 2820,
  20481. bottom: 0.028
  20482. }
  20483. },
  20484. },
  20485. [
  20486. {
  20487. name: "Normal",
  20488. height: math.unit(4, "feet"),
  20489. default: true
  20490. },
  20491. {
  20492. name: "Dynamax",
  20493. height: math.unit(20, "meters")
  20494. },
  20495. ]
  20496. ))
  20497. characterMakers.push(() => makeCharacter(
  20498. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20499. {
  20500. front: {
  20501. height: math.unit(6, "feet"),
  20502. weight: math.unit(110, "lb"),
  20503. name: "Front",
  20504. image: {
  20505. source: "./media/characters/klay/front.svg",
  20506. extra: 962 / 883,
  20507. bottom: 0.04
  20508. }
  20509. },
  20510. back: {
  20511. height: math.unit(6, "feet"),
  20512. weight: math.unit(110, "lb"),
  20513. name: "Back",
  20514. image: {
  20515. source: "./media/characters/klay/back.svg",
  20516. extra: 962 / 883
  20517. }
  20518. },
  20519. beans: {
  20520. height: math.unit(1.15, "feet"),
  20521. name: "Beans",
  20522. image: {
  20523. source: "./media/characters/klay/beans.svg"
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "Micro",
  20530. height: math.unit(6, "inches")
  20531. },
  20532. {
  20533. name: "Mini",
  20534. height: math.unit(3, "feet")
  20535. },
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(6, "feet"),
  20539. default: true
  20540. },
  20541. {
  20542. name: "Big",
  20543. height: math.unit(25, "feet")
  20544. },
  20545. {
  20546. name: "Macro",
  20547. height: math.unit(100, "feet")
  20548. },
  20549. {
  20550. name: "Megamacro",
  20551. height: math.unit(400, "feet")
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20557. {
  20558. front: {
  20559. height: math.unit(6, "feet"),
  20560. weight: math.unit(160, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/marcus/front.svg",
  20564. extra: 734 / 676,
  20565. bottom: 0.03
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Little",
  20572. height: math.unit(6, "feet")
  20573. },
  20574. {
  20575. name: "Normal",
  20576. height: math.unit(110, "feet"),
  20577. default: true
  20578. },
  20579. {
  20580. name: "Macro",
  20581. height: math.unit(250, "feet")
  20582. },
  20583. {
  20584. name: "Megamacro",
  20585. height: math.unit(1000, "feet")
  20586. },
  20587. ]
  20588. ))
  20589. characterMakers.push(() => makeCharacter(
  20590. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20591. {
  20592. front: {
  20593. height: math.unit(7, "feet"),
  20594. weight: math.unit(275, "lb"),
  20595. name: "Front",
  20596. image: {
  20597. source: "./media/characters/claude-delroute/front.svg",
  20598. extra: 902/827,
  20599. bottom: 26/928
  20600. }
  20601. },
  20602. side: {
  20603. height: math.unit(7, "feet"),
  20604. weight: math.unit(275, "lb"),
  20605. name: "Side",
  20606. image: {
  20607. source: "./media/characters/claude-delroute/side.svg",
  20608. extra: 908/853,
  20609. bottom: 16/924
  20610. }
  20611. },
  20612. back: {
  20613. height: math.unit(7, "feet"),
  20614. weight: math.unit(275, "lb"),
  20615. name: "Back",
  20616. image: {
  20617. source: "./media/characters/claude-delroute/back.svg",
  20618. extra: 911/829,
  20619. bottom: 18/929
  20620. }
  20621. },
  20622. maw: {
  20623. height: math.unit(0.6407, "meters"),
  20624. name: "Maw",
  20625. image: {
  20626. source: "./media/characters/claude-delroute/maw.svg"
  20627. }
  20628. },
  20629. },
  20630. [
  20631. {
  20632. name: "Normal",
  20633. height: math.unit(7, "feet"),
  20634. default: true
  20635. },
  20636. {
  20637. name: "Lorge",
  20638. height: math.unit(20, "feet")
  20639. },
  20640. ]
  20641. ))
  20642. characterMakers.push(() => makeCharacter(
  20643. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20644. {
  20645. front: {
  20646. height: math.unit(8 + 4 / 12, "feet"),
  20647. weight: math.unit(600, "lb"),
  20648. name: "Front",
  20649. image: {
  20650. source: "./media/characters/dragonien/front.svg",
  20651. extra: 100 / 94,
  20652. bottom: 3.3 / 103.3445
  20653. }
  20654. },
  20655. back: {
  20656. height: math.unit(8 + 4 / 12, "feet"),
  20657. weight: math.unit(600, "lb"),
  20658. name: "Back",
  20659. image: {
  20660. source: "./media/characters/dragonien/back.svg",
  20661. extra: 776 / 746,
  20662. bottom: 6.4 / 782.0616
  20663. }
  20664. },
  20665. foot: {
  20666. height: math.unit(1.54, "feet"),
  20667. name: "Foot",
  20668. image: {
  20669. source: "./media/characters/dragonien/foot.svg",
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(8 + 4 / 12, "feet"),
  20677. default: true
  20678. },
  20679. {
  20680. name: "Macro",
  20681. height: math.unit(200, "feet")
  20682. },
  20683. {
  20684. name: "Megamacro",
  20685. height: math.unit(1, "mile")
  20686. },
  20687. {
  20688. name: "Gigamacro",
  20689. height: math.unit(1000, "miles")
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20695. {
  20696. front: {
  20697. height: math.unit(5 + 2 / 12, "feet"),
  20698. weight: math.unit(110, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/desta/front.svg",
  20702. extra: 767 / 726,
  20703. bottom: 11.7 / 779
  20704. }
  20705. },
  20706. back: {
  20707. height: math.unit(5 + 2 / 12, "feet"),
  20708. weight: math.unit(110, "lb"),
  20709. name: "Back",
  20710. image: {
  20711. source: "./media/characters/desta/back.svg",
  20712. extra: 777 / 728,
  20713. bottom: 6 / 784
  20714. }
  20715. },
  20716. frontAlt: {
  20717. height: math.unit(5 + 2 / 12, "feet"),
  20718. weight: math.unit(110, "lb"),
  20719. name: "Front",
  20720. image: {
  20721. source: "./media/characters/desta/front-alt.svg",
  20722. extra: 1482 / 1417
  20723. }
  20724. },
  20725. side: {
  20726. height: math.unit(5 + 2 / 12, "feet"),
  20727. weight: math.unit(110, "lb"),
  20728. name: "Side",
  20729. image: {
  20730. source: "./media/characters/desta/side.svg",
  20731. extra: 2579 / 2491,
  20732. bottom: 0.053
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Micro",
  20739. height: math.unit(6, "inches")
  20740. },
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(5 + 2 / 12, "feet"),
  20744. default: true
  20745. },
  20746. {
  20747. name: "Macro",
  20748. height: math.unit(62, "feet")
  20749. },
  20750. {
  20751. name: "Megamacro",
  20752. height: math.unit(1800, "feet")
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(10, "feet"),
  20761. weight: math.unit(700, "lb"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/storm-alystar/front.svg",
  20765. extra: 2112 / 1898,
  20766. bottom: 0.034
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Micro",
  20773. height: math.unit(3.5, "inches")
  20774. },
  20775. {
  20776. name: "Normal",
  20777. height: math.unit(10, "feet"),
  20778. default: true
  20779. },
  20780. {
  20781. name: "Macro",
  20782. height: math.unit(400, "feet")
  20783. },
  20784. {
  20785. name: "Deific",
  20786. height: math.unit(60, "miles")
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20792. {
  20793. front: {
  20794. height: math.unit(2.35, "meters"),
  20795. weight: math.unit(119, "kg"),
  20796. name: "Front",
  20797. image: {
  20798. source: "./media/characters/ilia/front.svg",
  20799. extra: 1285 / 1255,
  20800. bottom: 0.06
  20801. }
  20802. },
  20803. },
  20804. [
  20805. {
  20806. name: "Normal",
  20807. height: math.unit(2.35, "meters")
  20808. },
  20809. {
  20810. name: "Macro",
  20811. height: math.unit(140, "meters"),
  20812. default: true
  20813. },
  20814. {
  20815. name: "Megamacro",
  20816. height: math.unit(100, "miles")
  20817. },
  20818. ]
  20819. ))
  20820. characterMakers.push(() => makeCharacter(
  20821. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20822. {
  20823. front: {
  20824. height: math.unit(6 + 5 / 12, "feet"),
  20825. weight: math.unit(190, "lb"),
  20826. name: "Front",
  20827. image: {
  20828. source: "./media/characters/kingdead/front.svg",
  20829. extra: 1228 / 1177
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Micro",
  20836. height: math.unit(7, "inches")
  20837. },
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(6 + 5 / 12, "feet")
  20841. },
  20842. {
  20843. name: "Macro",
  20844. height: math.unit(150, "feet"),
  20845. default: true
  20846. },
  20847. {
  20848. name: "Megamacro",
  20849. height: math.unit(200, "miles")
  20850. },
  20851. ]
  20852. ))
  20853. characterMakers.push(() => makeCharacter(
  20854. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20855. {
  20856. front: {
  20857. height: math.unit(8, "feet"),
  20858. weight: math.unit(600, "lb"),
  20859. name: "Front",
  20860. image: {
  20861. source: "./media/characters/kyrehx/front.svg",
  20862. extra: 1195 / 1095,
  20863. bottom: 0.034
  20864. }
  20865. },
  20866. },
  20867. [
  20868. {
  20869. name: "Micro",
  20870. height: math.unit(2, "inches")
  20871. },
  20872. {
  20873. name: "Normal",
  20874. height: math.unit(8, "feet"),
  20875. default: true
  20876. },
  20877. {
  20878. name: "Macro",
  20879. height: math.unit(255, "feet")
  20880. },
  20881. ]
  20882. ))
  20883. characterMakers.push(() => makeCharacter(
  20884. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20885. {
  20886. front: {
  20887. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20888. weight: math.unit(184, "lb"),
  20889. name: "Front",
  20890. image: {
  20891. source: "./media/characters/xang/front.svg",
  20892. extra: 845 / 755
  20893. }
  20894. },
  20895. },
  20896. [
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20900. default: true
  20901. },
  20902. {
  20903. name: "Macro",
  20904. height: math.unit(0.935 * 146, "feet")
  20905. },
  20906. {
  20907. name: "Megamacro",
  20908. height: math.unit(0.935 * 3, "miles")
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20914. {
  20915. frontDressed: {
  20916. height: math.unit(5 + 7 / 12, "feet"),
  20917. weight: math.unit(140, "lb"),
  20918. name: "Front (Dressed)",
  20919. image: {
  20920. source: "./media/characters/doc-weardno/front-dressed.svg",
  20921. extra: 263 / 234
  20922. }
  20923. },
  20924. backDressed: {
  20925. height: math.unit(5 + 7 / 12, "feet"),
  20926. weight: math.unit(140, "lb"),
  20927. name: "Back (Dressed)",
  20928. image: {
  20929. source: "./media/characters/doc-weardno/back-dressed.svg",
  20930. extra: 266 / 238
  20931. }
  20932. },
  20933. front: {
  20934. height: math.unit(5 + 7 / 12, "feet"),
  20935. weight: math.unit(140, "lb"),
  20936. name: "Front",
  20937. image: {
  20938. source: "./media/characters/doc-weardno/front.svg",
  20939. extra: 254 / 233
  20940. }
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Micro",
  20946. height: math.unit(3, "inches")
  20947. },
  20948. {
  20949. name: "Normal",
  20950. height: math.unit(5 + 7 / 12, "feet"),
  20951. default: true
  20952. },
  20953. {
  20954. name: "Macro",
  20955. height: math.unit(25, "feet")
  20956. },
  20957. {
  20958. name: "Megamacro",
  20959. height: math.unit(2, "miles")
  20960. },
  20961. ]
  20962. ))
  20963. characterMakers.push(() => makeCharacter(
  20964. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20965. {
  20966. front: {
  20967. height: math.unit(6 + 2 / 12, "feet"),
  20968. weight: math.unit(153, "lb"),
  20969. name: "Front",
  20970. image: {
  20971. source: "./media/characters/seth-whilst/front.svg",
  20972. bottom: 0.07
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Micro",
  20979. height: math.unit(5, "inches")
  20980. },
  20981. {
  20982. name: "Normal",
  20983. height: math.unit(6 + 2 / 12, "feet"),
  20984. default: true
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20990. {
  20991. front: {
  20992. height: math.unit(3, "inches"),
  20993. weight: math.unit(8, "grams"),
  20994. name: "Front",
  20995. image: {
  20996. source: "./media/characters/pocket-jabari/front.svg",
  20997. extra: 1024 / 974,
  20998. bottom: 0.039
  20999. }
  21000. },
  21001. },
  21002. [
  21003. {
  21004. name: "Minimicro",
  21005. height: math.unit(8, "mm")
  21006. },
  21007. {
  21008. name: "Micro",
  21009. height: math.unit(3, "inches"),
  21010. default: true
  21011. },
  21012. {
  21013. name: "Normal",
  21014. height: math.unit(3, "feet")
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21020. {
  21021. frontDressed: {
  21022. height: math.unit(15, "feet"),
  21023. weight: math.unit(3280, "lb"),
  21024. name: "Front (Dressed)",
  21025. image: {
  21026. source: "./media/characters/sapphy/front-dressed.svg",
  21027. extra: 1951/1654,
  21028. bottom: 194/2145
  21029. },
  21030. form: "anthro",
  21031. default: true
  21032. },
  21033. backDressed: {
  21034. height: math.unit(15, "feet"),
  21035. weight: math.unit(3280, "lb"),
  21036. name: "Back (Dressed)",
  21037. image: {
  21038. source: "./media/characters/sapphy/back-dressed.svg",
  21039. extra: 2058/1918,
  21040. bottom: 125/2183
  21041. },
  21042. form: "anthro"
  21043. },
  21044. frontNude: {
  21045. height: math.unit(15, "feet"),
  21046. weight: math.unit(3280, "lb"),
  21047. name: "Front (Nude)",
  21048. image: {
  21049. source: "./media/characters/sapphy/front-nude.svg",
  21050. extra: 1951/1654,
  21051. bottom: 194/2145
  21052. },
  21053. form: "anthro"
  21054. },
  21055. backNude: {
  21056. height: math.unit(15, "feet"),
  21057. weight: math.unit(3280, "lb"),
  21058. name: "Back (Nude)",
  21059. image: {
  21060. source: "./media/characters/sapphy/back-nude.svg",
  21061. extra: 2058/1918,
  21062. bottom: 125/2183
  21063. },
  21064. form: "anthro"
  21065. },
  21066. full: {
  21067. height: math.unit(15, "feet"),
  21068. weight: math.unit(3280, "lb"),
  21069. name: "Full",
  21070. image: {
  21071. source: "./media/characters/sapphy/full.svg",
  21072. extra: 1396/1317,
  21073. bottom: 44/1440
  21074. },
  21075. form: "anthro"
  21076. },
  21077. dick: {
  21078. height: math.unit(3.8, "feet"),
  21079. name: "Dick",
  21080. image: {
  21081. source: "./media/characters/sapphy/dick.svg"
  21082. },
  21083. form: "anthro"
  21084. },
  21085. feral: {
  21086. height: math.unit(35, "feet"),
  21087. weight: math.unit(160, "tons"),
  21088. name: "Feral",
  21089. image: {
  21090. source: "./media/characters/sapphy/feral.svg",
  21091. extra: 1050/573,
  21092. bottom: 60/1110
  21093. },
  21094. form: "feral",
  21095. default: true
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(15, "feet"),
  21102. form: "anthro"
  21103. },
  21104. {
  21105. name: "Casual Macro",
  21106. height: math.unit(120, "feet"),
  21107. form: "anthro"
  21108. },
  21109. {
  21110. name: "Macro",
  21111. height: math.unit(2150, "feet"),
  21112. default: true,
  21113. form: "anthro"
  21114. },
  21115. {
  21116. name: "Megamacro",
  21117. height: math.unit(8, "miles"),
  21118. form: "anthro"
  21119. },
  21120. {
  21121. name: "Galaxy Mom",
  21122. height: math.unit(6, "megalightyears"),
  21123. form: "anthro"
  21124. },
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(35, "feet"),
  21128. form: "feral",
  21129. default: true
  21130. },
  21131. {
  21132. name: "Macro",
  21133. height: math.unit(300, "feet"),
  21134. form: "feral"
  21135. },
  21136. {
  21137. name: "Galaxy Mom",
  21138. height: math.unit(10, "megalightyears"),
  21139. form: "feral"
  21140. },
  21141. ],
  21142. {
  21143. "anthro": {
  21144. name: "Anthro",
  21145. default: true
  21146. },
  21147. "feral": {
  21148. name: "Feral"
  21149. }
  21150. }
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21154. {
  21155. hyenaFront: {
  21156. height: math.unit(6, "feet"),
  21157. weight: math.unit(190, "lb"),
  21158. name: "Front",
  21159. image: {
  21160. source: "./media/characters/kiro/hyena-front.svg",
  21161. extra: 927/839,
  21162. bottom: 91/1018
  21163. },
  21164. form: "hyena",
  21165. default: true
  21166. },
  21167. front: {
  21168. height: math.unit(6, "feet"),
  21169. weight: math.unit(170, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/kiro/front.svg",
  21173. extra: 1064 / 1012,
  21174. bottom: 0.052
  21175. },
  21176. form: "folf",
  21177. default: true
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Micro",
  21183. height: math.unit(6, "inches"),
  21184. form: "folf"
  21185. },
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(6, "feet"),
  21189. form: "folf",
  21190. default: true
  21191. },
  21192. {
  21193. name: "Macro",
  21194. height: math.unit(72, "feet"),
  21195. form: "folf"
  21196. },
  21197. {
  21198. name: "Micro",
  21199. height: math.unit(6, "inches"),
  21200. form: "hyena"
  21201. },
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(6, "feet"),
  21205. form: "hyena",
  21206. default: true
  21207. },
  21208. {
  21209. name: "Macro",
  21210. height: math.unit(72, "feet"),
  21211. form: "hyena"
  21212. },
  21213. ],
  21214. {
  21215. "hyena": {
  21216. name: "Hyena",
  21217. default: true
  21218. },
  21219. "folf": {
  21220. name: "Folf",
  21221. },
  21222. }
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(5 + 9 / 12, "feet"),
  21229. weight: math.unit(175, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/irishfox/front.svg",
  21233. extra: 1912 / 1680,
  21234. bottom: 0.02
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Nano",
  21241. height: math.unit(1, "mm")
  21242. },
  21243. {
  21244. name: "Micro",
  21245. height: math.unit(2, "inches")
  21246. },
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(5 + 9 / 12, "feet"),
  21250. default: true
  21251. },
  21252. {
  21253. name: "Macro",
  21254. height: math.unit(45, "feet")
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21260. {
  21261. front: {
  21262. height: math.unit(6 + 1 / 12, "feet"),
  21263. weight: math.unit(75, "lb"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/aronai-sieyes/front.svg",
  21267. extra: 1532/1450,
  21268. bottom: 42/1574
  21269. }
  21270. },
  21271. side: {
  21272. height: math.unit(6 + 1 / 12, "feet"),
  21273. weight: math.unit(75, "lb"),
  21274. name: "Side",
  21275. image: {
  21276. source: "./media/characters/aronai-sieyes/side.svg",
  21277. extra: 1422/1365,
  21278. bottom: 148/1570
  21279. }
  21280. },
  21281. back: {
  21282. height: math.unit(6 + 1 / 12, "feet"),
  21283. weight: math.unit(75, "lb"),
  21284. name: "Back",
  21285. image: {
  21286. source: "./media/characters/aronai-sieyes/back.svg",
  21287. extra: 1526/1464,
  21288. bottom: 51/1577
  21289. }
  21290. },
  21291. dressed: {
  21292. height: math.unit(6 + 1 / 12, "feet"),
  21293. weight: math.unit(75, "lb"),
  21294. name: "Dressed",
  21295. image: {
  21296. source: "./media/characters/aronai-sieyes/dressed.svg",
  21297. extra: 1559/1483,
  21298. bottom: 39/1598
  21299. }
  21300. },
  21301. slit: {
  21302. height: math.unit(1.3, "feet"),
  21303. name: "Slit",
  21304. image: {
  21305. source: "./media/characters/aronai-sieyes/slit.svg"
  21306. }
  21307. },
  21308. slitSpread: {
  21309. height: math.unit(0.9, "feet"),
  21310. name: "Slit (Spread)",
  21311. image: {
  21312. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21313. }
  21314. },
  21315. rump: {
  21316. height: math.unit(1.3, "feet"),
  21317. name: "Rump",
  21318. image: {
  21319. source: "./media/characters/aronai-sieyes/rump.svg"
  21320. }
  21321. },
  21322. maw: {
  21323. height: math.unit(1.25, "feet"),
  21324. name: "Maw",
  21325. image: {
  21326. source: "./media/characters/aronai-sieyes/maw.svg"
  21327. }
  21328. },
  21329. feral: {
  21330. height: math.unit(18, "feet"),
  21331. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21332. name: "Feral",
  21333. image: {
  21334. source: "./media/characters/aronai-sieyes/feral.svg",
  21335. extra: 1530 / 1240,
  21336. bottom: 0.035
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Micro",
  21343. height: math.unit(2, "inches")
  21344. },
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(6 + 1 / 12, "feet"),
  21348. default: true
  21349. }
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21354. {
  21355. front: {
  21356. height: math.unit(12, "feet"),
  21357. weight: math.unit(410, "kg"),
  21358. name: "Front",
  21359. image: {
  21360. source: "./media/characters/xuna/front.svg",
  21361. extra: 2184 / 1980
  21362. }
  21363. },
  21364. side: {
  21365. height: math.unit(12, "feet"),
  21366. weight: math.unit(410, "kg"),
  21367. name: "Side",
  21368. image: {
  21369. source: "./media/characters/xuna/side.svg",
  21370. extra: 2184 / 1980
  21371. }
  21372. },
  21373. back: {
  21374. height: math.unit(12, "feet"),
  21375. weight: math.unit(410, "kg"),
  21376. name: "Back",
  21377. image: {
  21378. source: "./media/characters/xuna/back.svg",
  21379. extra: 2184 / 1980
  21380. }
  21381. },
  21382. },
  21383. [
  21384. {
  21385. name: "Nano glow",
  21386. height: math.unit(10, "nm")
  21387. },
  21388. {
  21389. name: "Micro floof",
  21390. height: math.unit(0.3, "m")
  21391. },
  21392. {
  21393. name: "Huggable softy boi",
  21394. height: math.unit(3.6576, "m"),
  21395. default: true
  21396. },
  21397. {
  21398. name: "Admirable floof",
  21399. height: math.unit(80, "meters")
  21400. },
  21401. {
  21402. name: "Gentle macro",
  21403. height: math.unit(300, "meters")
  21404. },
  21405. {
  21406. name: "Very careful floof",
  21407. height: math.unit(3200, "meters")
  21408. },
  21409. {
  21410. name: "The mega floof",
  21411. height: math.unit(36000, "meters")
  21412. },
  21413. {
  21414. name: "Giga-fur-Wicker",
  21415. height: math.unit(4800000, "meters")
  21416. },
  21417. {
  21418. name: "Licky world",
  21419. height: math.unit(20000000, "meters")
  21420. },
  21421. {
  21422. name: "Floofy cyan sun",
  21423. height: math.unit(1500000000, "meters")
  21424. },
  21425. {
  21426. name: "Milky Wicker",
  21427. height: math.unit(1000000000000000000000, "meters")
  21428. },
  21429. {
  21430. name: "The observing Wicker",
  21431. height: math.unit(999999999999999999999999999, "meters")
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21437. {
  21438. front: {
  21439. height: math.unit(5 + 9 / 12, "feet"),
  21440. weight: math.unit(150, "lb"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/arokha-sieyes/front.svg",
  21444. extra: 1425 / 1284,
  21445. bottom: 0.05
  21446. }
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(5 + 9 / 12, "feet")
  21453. },
  21454. {
  21455. name: "Macro",
  21456. height: math.unit(30, "meters"),
  21457. default: true
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21463. {
  21464. front: {
  21465. height: math.unit(6, "feet"),
  21466. weight: math.unit(180, "lb"),
  21467. name: "Front",
  21468. image: {
  21469. source: "./media/characters/arokh-sieyes/front.svg",
  21470. extra: 1830 / 1769,
  21471. bottom: 0.01
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(6, "feet")
  21479. },
  21480. {
  21481. name: "Macro",
  21482. height: math.unit(30, "meters"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21489. {
  21490. side: {
  21491. height: math.unit(13 + 1 / 12, "feet"),
  21492. weight: math.unit(8.5, "tonnes"),
  21493. preyCapacity: math.unit(36, "people"),
  21494. name: "Side",
  21495. image: {
  21496. source: "./media/characters/goldeneye/side.svg",
  21497. extra: 1139/741,
  21498. bottom: 98/1237
  21499. }
  21500. },
  21501. front: {
  21502. height: math.unit(5.1, "feet"),
  21503. weight: math.unit(8.5, "tonnes"),
  21504. preyCapacity: math.unit(36, "people"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/goldeneye/front.svg",
  21508. extra: 635/365,
  21509. bottom: 598/1233
  21510. }
  21511. },
  21512. maw: {
  21513. height: math.unit(6.6, "feet"),
  21514. name: "Maw",
  21515. image: {
  21516. source: "./media/characters/goldeneye/maw.svg"
  21517. }
  21518. },
  21519. headFront: {
  21520. height: math.unit(8, "feet"),
  21521. name: "Head (Front)",
  21522. image: {
  21523. source: "./media/characters/goldeneye/head-front.svg"
  21524. }
  21525. },
  21526. headSide: {
  21527. height: math.unit(6, "feet"),
  21528. name: "Head (Side)",
  21529. image: {
  21530. source: "./media/characters/goldeneye/head-side.svg"
  21531. }
  21532. },
  21533. headBack: {
  21534. height: math.unit(8, "feet"),
  21535. name: "Head (Back)",
  21536. image: {
  21537. source: "./media/characters/goldeneye/head-back.svg"
  21538. }
  21539. },
  21540. paw: {
  21541. height: math.unit(3.4, "feet"),
  21542. name: "Paw",
  21543. image: {
  21544. source: "./media/characters/goldeneye/paw.svg"
  21545. }
  21546. },
  21547. toering: {
  21548. height: math.unit(0.45, "feet"),
  21549. name: "Toering",
  21550. image: {
  21551. source: "./media/characters/goldeneye/toering.svg"
  21552. }
  21553. },
  21554. eyes: {
  21555. height: math.unit(0.5, "feet"),
  21556. name: "Eyes",
  21557. image: {
  21558. source: "./media/characters/goldeneye/eyes.svg"
  21559. }
  21560. },
  21561. },
  21562. [
  21563. {
  21564. name: "Normal",
  21565. height: math.unit(13 + 1 / 12, "feet"),
  21566. default: true
  21567. },
  21568. ]
  21569. ))
  21570. characterMakers.push(() => makeCharacter(
  21571. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21572. {
  21573. front: {
  21574. height: math.unit(6 + 1 / 12, "feet"),
  21575. weight: math.unit(210, "lb"),
  21576. name: "Front",
  21577. image: {
  21578. source: "./media/characters/leonardo-lycheborne/front.svg",
  21579. extra: 776/723,
  21580. bottom: 34/810
  21581. }
  21582. },
  21583. side: {
  21584. height: math.unit(6 + 1 / 12, "feet"),
  21585. weight: math.unit(210, "lb"),
  21586. name: "Side",
  21587. image: {
  21588. source: "./media/characters/leonardo-lycheborne/side.svg",
  21589. extra: 780/728,
  21590. bottom: 12/792
  21591. }
  21592. },
  21593. back: {
  21594. height: math.unit(6 + 1 / 12, "feet"),
  21595. weight: math.unit(210, "lb"),
  21596. name: "Back",
  21597. image: {
  21598. source: "./media/characters/leonardo-lycheborne/back.svg",
  21599. extra: 775/721,
  21600. bottom: 17/792
  21601. }
  21602. },
  21603. hand: {
  21604. height: math.unit(1.08, "feet"),
  21605. name: "Hand",
  21606. image: {
  21607. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21608. }
  21609. },
  21610. foot: {
  21611. height: math.unit(1.32, "feet"),
  21612. name: "Foot",
  21613. image: {
  21614. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21615. }
  21616. },
  21617. maw: {
  21618. height: math.unit(1, "feet"),
  21619. name: "Maw",
  21620. image: {
  21621. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21622. }
  21623. },
  21624. were: {
  21625. height: math.unit(20, "feet"),
  21626. weight: math.unit(7800, "lb"),
  21627. name: "Were",
  21628. image: {
  21629. source: "./media/characters/leonardo-lycheborne/were.svg",
  21630. extra: 1224/1165,
  21631. bottom: 72/1296
  21632. }
  21633. },
  21634. feral: {
  21635. height: math.unit(7.5, "feet"),
  21636. weight: math.unit(600, "lb"),
  21637. name: "Feral",
  21638. image: {
  21639. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21640. extra: 797/702,
  21641. bottom: 139/936
  21642. }
  21643. },
  21644. taur: {
  21645. height: math.unit(11, "feet"),
  21646. weight: math.unit(3300, "lb"),
  21647. name: "Taur",
  21648. image: {
  21649. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21650. extra: 1271/1197,
  21651. bottom: 47/1318
  21652. }
  21653. },
  21654. barghest: {
  21655. height: math.unit(11, "feet"),
  21656. weight: math.unit(1300, "lb"),
  21657. name: "Barghest",
  21658. image: {
  21659. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21660. extra: 1291/1204,
  21661. bottom: 37/1328
  21662. }
  21663. },
  21664. dick: {
  21665. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21666. name: "Dick",
  21667. image: {
  21668. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21669. }
  21670. },
  21671. dickWere: {
  21672. height: math.unit((20) / 3.8, "feet"),
  21673. name: "Dick (Were)",
  21674. image: {
  21675. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Normal",
  21682. height: math.unit(6 + 1 / 12, "feet"),
  21683. default: true
  21684. },
  21685. ]
  21686. ))
  21687. characterMakers.push(() => makeCharacter(
  21688. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21689. {
  21690. front: {
  21691. height: math.unit(10, "feet"),
  21692. weight: math.unit(350, "lb"),
  21693. name: "Front",
  21694. image: {
  21695. source: "./media/characters/jet/front.svg",
  21696. extra: 2050 / 1980,
  21697. bottom: 0.013
  21698. }
  21699. },
  21700. back: {
  21701. height: math.unit(10, "feet"),
  21702. weight: math.unit(350, "lb"),
  21703. name: "Back",
  21704. image: {
  21705. source: "./media/characters/jet/back.svg",
  21706. extra: 2050 / 1980,
  21707. bottom: 0.013
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Micro",
  21714. height: math.unit(6, "inches")
  21715. },
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(10, "feet"),
  21719. default: true
  21720. },
  21721. {
  21722. name: "Macro",
  21723. height: math.unit(100, "feet")
  21724. },
  21725. ]
  21726. ))
  21727. characterMakers.push(() => makeCharacter(
  21728. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21729. {
  21730. front: {
  21731. height: math.unit(15, "feet"),
  21732. weight: math.unit(2800, "lb"),
  21733. name: "Front",
  21734. image: {
  21735. source: "./media/characters/tanarath/front.svg",
  21736. extra: 2392 / 2220,
  21737. bottom: 0.03
  21738. }
  21739. },
  21740. back: {
  21741. height: math.unit(15, "feet"),
  21742. weight: math.unit(2800, "lb"),
  21743. name: "Back",
  21744. image: {
  21745. source: "./media/characters/tanarath/back.svg",
  21746. extra: 2392 / 2220,
  21747. bottom: 0.03
  21748. }
  21749. },
  21750. },
  21751. [
  21752. {
  21753. name: "Normal",
  21754. height: math.unit(15, "feet"),
  21755. default: true
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21761. {
  21762. front: {
  21763. height: math.unit(7 + 1 / 12, "feet"),
  21764. weight: math.unit(175, "lb"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/patty-cattybatty/front.svg",
  21768. extra: 908 / 874,
  21769. bottom: 0.025
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Micro",
  21776. height: math.unit(1, "inch")
  21777. },
  21778. {
  21779. name: "Normal",
  21780. height: math.unit(7 + 1 / 12, "feet")
  21781. },
  21782. {
  21783. name: "Mini Macro",
  21784. height: math.unit(155, "feet")
  21785. },
  21786. {
  21787. name: "Macro",
  21788. height: math.unit(1077, "feet")
  21789. },
  21790. {
  21791. name: "Mega Macro",
  21792. height: math.unit(47650, "feet"),
  21793. default: true
  21794. },
  21795. {
  21796. name: "Giga Macro",
  21797. height: math.unit(440, "miles")
  21798. },
  21799. {
  21800. name: "Tera Macro",
  21801. height: math.unit(8700, "miles")
  21802. },
  21803. {
  21804. name: "Planetary Macro",
  21805. height: math.unit(32700, "miles")
  21806. },
  21807. {
  21808. name: "Solar Macro",
  21809. height: math.unit(550000, "miles")
  21810. },
  21811. {
  21812. name: "Celestial Macro",
  21813. height: math.unit(2.5, "AU")
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(4 + 5 / 12, "feet"),
  21822. weight: math.unit(90, "lb"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/cappu/front.svg",
  21826. extra: 1247 / 1152,
  21827. bottom: 0.012
  21828. }
  21829. },
  21830. },
  21831. [
  21832. {
  21833. name: "Normal",
  21834. height: math.unit(4 + 5 / 12, "feet"),
  21835. default: true
  21836. },
  21837. ]
  21838. ))
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21841. {
  21842. frontDressed: {
  21843. height: math.unit(70, "cm"),
  21844. weight: math.unit(6, "kg"),
  21845. name: "Front (Dressed)",
  21846. image: {
  21847. source: "./media/characters/sebi/front-dressed.svg",
  21848. extra: 713.5 / 686.5,
  21849. bottom: 0.003
  21850. }
  21851. },
  21852. front: {
  21853. height: math.unit(70, "cm"),
  21854. weight: math.unit(5, "kg"),
  21855. name: "Front",
  21856. image: {
  21857. source: "./media/characters/sebi/front.svg",
  21858. extra: 713.5 / 686.5,
  21859. bottom: 0.003
  21860. }
  21861. }
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(70, "cm"),
  21867. default: true
  21868. },
  21869. {
  21870. name: "Macro",
  21871. height: math.unit(8, "meters")
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21877. {
  21878. front: {
  21879. height: math.unit(6, "feet"),
  21880. weight: math.unit(150, "lb"),
  21881. name: "Front",
  21882. image: {
  21883. source: "./media/characters/typhek/front.svg",
  21884. extra: 1948 / 1929,
  21885. bottom: 0.025
  21886. }
  21887. },
  21888. side: {
  21889. height: math.unit(6, "feet"),
  21890. weight: math.unit(150, "lb"),
  21891. name: "Side",
  21892. image: {
  21893. source: "./media/characters/typhek/side.svg",
  21894. extra: 2034 / 2010,
  21895. bottom: 0.003
  21896. }
  21897. },
  21898. back: {
  21899. height: math.unit(6, "feet"),
  21900. weight: math.unit(150, "lb"),
  21901. name: "Back",
  21902. image: {
  21903. source: "./media/characters/typhek/back.svg",
  21904. extra: 2005 / 1978,
  21905. bottom: 0.004
  21906. }
  21907. },
  21908. palm: {
  21909. height: math.unit(1.2, "feet"),
  21910. name: "Palm",
  21911. image: {
  21912. source: "./media/characters/typhek/palm.svg"
  21913. }
  21914. },
  21915. fist: {
  21916. height: math.unit(1.1, "feet"),
  21917. name: "Fist",
  21918. image: {
  21919. source: "./media/characters/typhek/fist.svg"
  21920. }
  21921. },
  21922. foot: {
  21923. height: math.unit(1.57, "feet"),
  21924. name: "Foot",
  21925. image: {
  21926. source: "./media/characters/typhek/foot.svg"
  21927. }
  21928. },
  21929. sole: {
  21930. height: math.unit(2.05, "feet"),
  21931. name: "Sole",
  21932. image: {
  21933. source: "./media/characters/typhek/sole.svg"
  21934. }
  21935. },
  21936. },
  21937. [
  21938. {
  21939. name: "Macro",
  21940. height: math.unit(40, "stories"),
  21941. default: true
  21942. },
  21943. {
  21944. name: "Megamacro",
  21945. height: math.unit(1, "mile")
  21946. },
  21947. {
  21948. name: "Gigamacro",
  21949. height: math.unit(4000, "solarradii")
  21950. },
  21951. {
  21952. name: "Universal",
  21953. height: math.unit(1.1, "universes")
  21954. }
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21959. {
  21960. side: {
  21961. height: math.unit(5 + 7 / 12, "feet"),
  21962. weight: math.unit(150, "lb"),
  21963. name: "Side",
  21964. image: {
  21965. source: "./media/characters/kassy/side.svg",
  21966. extra: 1280 / 1225,
  21967. bottom: 0.002
  21968. }
  21969. },
  21970. front: {
  21971. height: math.unit(5 + 7 / 12, "feet"),
  21972. weight: math.unit(150, "lb"),
  21973. name: "Front",
  21974. image: {
  21975. source: "./media/characters/kassy/front.svg",
  21976. extra: 1280 / 1225,
  21977. bottom: 0.025
  21978. }
  21979. },
  21980. back: {
  21981. height: math.unit(5 + 7 / 12, "feet"),
  21982. weight: math.unit(150, "lb"),
  21983. name: "Back",
  21984. image: {
  21985. source: "./media/characters/kassy/back.svg",
  21986. extra: 1280 / 1225,
  21987. bottom: 0.002
  21988. }
  21989. },
  21990. foot: {
  21991. height: math.unit(1.266, "feet"),
  21992. name: "Foot",
  21993. image: {
  21994. source: "./media/characters/kassy/foot.svg"
  21995. }
  21996. },
  21997. },
  21998. [
  21999. {
  22000. name: "Normal",
  22001. height: math.unit(5 + 7 / 12, "feet")
  22002. },
  22003. {
  22004. name: "Macro",
  22005. height: math.unit(137, "feet"),
  22006. default: true
  22007. },
  22008. {
  22009. name: "Megamacro",
  22010. height: math.unit(1, "mile")
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22016. {
  22017. front: {
  22018. height: math.unit(6 + 1 / 12, "feet"),
  22019. weight: math.unit(200, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/neil/front.svg",
  22023. extra: 1326 / 1250,
  22024. bottom: 0.023
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(6 + 1 / 12, "feet"),
  22032. default: true
  22033. },
  22034. {
  22035. name: "Macro",
  22036. height: math.unit(200, "feet")
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(5 + 9 / 12, "feet"),
  22045. weight: math.unit(190, "lb"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/atticus/front.svg",
  22049. extra: 2934 / 2785,
  22050. bottom: 0.025
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(5 + 9 / 12, "feet"),
  22058. default: true
  22059. },
  22060. {
  22061. name: "Macro",
  22062. height: math.unit(180, "feet")
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22068. {
  22069. side: {
  22070. height: math.unit(9, "feet"),
  22071. weight: math.unit(650, "lb"),
  22072. name: "Side",
  22073. image: {
  22074. source: "./media/characters/milo/side.svg",
  22075. extra: 2644 / 2310,
  22076. bottom: 0.032
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(9, "feet"),
  22084. default: true
  22085. },
  22086. {
  22087. name: "Macro",
  22088. height: math.unit(300, "feet")
  22089. },
  22090. ]
  22091. ))
  22092. characterMakers.push(() => makeCharacter(
  22093. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22094. {
  22095. side: {
  22096. height: math.unit(8, "meters"),
  22097. weight: math.unit(90000, "kg"),
  22098. name: "Side",
  22099. image: {
  22100. source: "./media/characters/ijzer/side.svg",
  22101. extra: 2756 / 1600,
  22102. bottom: 0.01
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Small",
  22109. height: math.unit(3, "meters")
  22110. },
  22111. {
  22112. name: "Normal",
  22113. height: math.unit(8, "meters"),
  22114. default: true
  22115. },
  22116. {
  22117. name: "Normal+",
  22118. height: math.unit(10, "meters")
  22119. },
  22120. {
  22121. name: "Bigger",
  22122. height: math.unit(24, "meters")
  22123. },
  22124. {
  22125. name: "Huge",
  22126. height: math.unit(80, "meters")
  22127. },
  22128. ]
  22129. ))
  22130. characterMakers.push(() => makeCharacter(
  22131. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22132. {
  22133. front: {
  22134. height: math.unit(6 + 2 / 12, "feet"),
  22135. weight: math.unit(153, "lb"),
  22136. name: "Front",
  22137. image: {
  22138. source: "./media/characters/luca-cervicum/front.svg",
  22139. extra: 370 / 327,
  22140. bottom: 0.015
  22141. }
  22142. },
  22143. back: {
  22144. height: math.unit(6 + 2 / 12, "feet"),
  22145. weight: math.unit(153, "lb"),
  22146. name: "Back",
  22147. image: {
  22148. source: "./media/characters/luca-cervicum/back.svg",
  22149. extra: 367 / 333,
  22150. bottom: 0.005
  22151. }
  22152. },
  22153. frontGear: {
  22154. height: math.unit(6 + 2 / 12, "feet"),
  22155. weight: math.unit(173, "lb"),
  22156. name: "Front (Gear)",
  22157. image: {
  22158. source: "./media/characters/luca-cervicum/front-gear.svg",
  22159. extra: 377 / 333,
  22160. bottom: 0.006
  22161. }
  22162. },
  22163. },
  22164. [
  22165. {
  22166. name: "Normal",
  22167. height: math.unit(6 + 2 / 12, "feet"),
  22168. default: true
  22169. },
  22170. ]
  22171. ))
  22172. characterMakers.push(() => makeCharacter(
  22173. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22174. {
  22175. front: {
  22176. height: math.unit(6 + 1 / 12, "feet"),
  22177. weight: math.unit(304, "lb"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/oliver/front.svg",
  22181. extra: 157 / 143,
  22182. bottom: 0.08
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Normal",
  22189. height: math.unit(6 + 1 / 12, "feet"),
  22190. default: true
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22196. {
  22197. front: {
  22198. height: math.unit(5 + 7 / 12, "feet"),
  22199. weight: math.unit(140, "lb"),
  22200. name: "Front",
  22201. image: {
  22202. source: "./media/characters/shane/front.svg",
  22203. extra: 304 / 289,
  22204. bottom: 0.005
  22205. }
  22206. },
  22207. },
  22208. [
  22209. {
  22210. name: "Normal",
  22211. height: math.unit(5 + 7 / 12, "feet"),
  22212. default: true
  22213. },
  22214. ]
  22215. ))
  22216. characterMakers.push(() => makeCharacter(
  22217. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22218. {
  22219. front: {
  22220. height: math.unit(5 + 9 / 12, "feet"),
  22221. weight: math.unit(178, "lb"),
  22222. name: "Front",
  22223. image: {
  22224. source: "./media/characters/shin/front.svg",
  22225. extra: 159 / 151,
  22226. bottom: 0.015
  22227. }
  22228. },
  22229. },
  22230. [
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(5 + 9 / 12, "feet"),
  22234. default: true
  22235. },
  22236. ]
  22237. ))
  22238. characterMakers.push(() => makeCharacter(
  22239. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22240. {
  22241. front: {
  22242. height: math.unit(5 + 10 / 12, "feet"),
  22243. weight: math.unit(168, "lb"),
  22244. name: "Front",
  22245. image: {
  22246. source: "./media/characters/xerxes/front.svg",
  22247. extra: 282 / 260,
  22248. bottom: 0.045
  22249. }
  22250. },
  22251. },
  22252. [
  22253. {
  22254. name: "Normal",
  22255. height: math.unit(5 + 10 / 12, "feet"),
  22256. default: true
  22257. },
  22258. ]
  22259. ))
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22262. {
  22263. front: {
  22264. height: math.unit(6 + 7 / 12, "feet"),
  22265. weight: math.unit(208, "lb"),
  22266. name: "Front",
  22267. image: {
  22268. source: "./media/characters/chaska/front.svg",
  22269. extra: 332 / 319,
  22270. bottom: 0.015
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Normal",
  22277. height: math.unit(6 + 7 / 12, "feet"),
  22278. default: true
  22279. },
  22280. ]
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(5 + 8 / 12, "feet"),
  22287. weight: math.unit(208, "lb"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/enuk/front.svg",
  22291. extra: 437 / 406,
  22292. bottom: 0.02
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(5 + 8 / 12, "feet"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22306. {
  22307. front: {
  22308. height: math.unit(5 + 10 / 12, "feet"),
  22309. weight: math.unit(252, "lb"),
  22310. name: "Front",
  22311. image: {
  22312. source: "./media/characters/bruun/front.svg",
  22313. extra: 197 / 187,
  22314. bottom: 0.012
  22315. }
  22316. },
  22317. },
  22318. [
  22319. {
  22320. name: "Normal",
  22321. height: math.unit(5 + 10 / 12, "feet"),
  22322. default: true
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22328. {
  22329. front: {
  22330. height: math.unit(6 + 10 / 12, "feet"),
  22331. weight: math.unit(255, "lb"),
  22332. name: "Front",
  22333. image: {
  22334. source: "./media/characters/alexeev/front.svg",
  22335. extra: 213 / 200,
  22336. bottom: 0.05
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Normal",
  22343. height: math.unit(6 + 10 / 12, "feet"),
  22344. default: true
  22345. },
  22346. ]
  22347. ))
  22348. characterMakers.push(() => makeCharacter(
  22349. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22350. {
  22351. front: {
  22352. height: math.unit(2 + 8 / 12, "feet"),
  22353. weight: math.unit(22, "lb"),
  22354. name: "Front",
  22355. image: {
  22356. source: "./media/characters/evelyn/front.svg",
  22357. extra: 208 / 180
  22358. }
  22359. },
  22360. },
  22361. [
  22362. {
  22363. name: "Normal",
  22364. height: math.unit(2 + 8 / 12, "feet"),
  22365. default: true
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22371. {
  22372. front: {
  22373. height: math.unit(5 + 9 / 12, "feet"),
  22374. weight: math.unit(139, "lb"),
  22375. name: "Front",
  22376. image: {
  22377. source: "./media/characters/inca/front.svg",
  22378. extra: 294 / 291,
  22379. bottom: 0.03
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Normal",
  22386. height: math.unit(5 + 9 / 12, "feet"),
  22387. default: true
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(6 + 3 / 12, "feet"),
  22396. weight: math.unit(185, "lb"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/mera/front.svg",
  22400. extra: 291 / 277,
  22401. bottom: 0.03
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Normal",
  22408. height: math.unit(6 + 3 / 12, "feet"),
  22409. default: true
  22410. },
  22411. ]
  22412. ))
  22413. characterMakers.push(() => makeCharacter(
  22414. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22415. {
  22416. front: {
  22417. height: math.unit(6 + 7 / 12, "feet"),
  22418. weight: math.unit(160, "lb"),
  22419. name: "Front",
  22420. image: {
  22421. source: "./media/characters/ceres/front.svg",
  22422. extra: 1023 / 950,
  22423. bottom: 0.027
  22424. }
  22425. },
  22426. back: {
  22427. height: math.unit(6 + 7 / 12, "feet"),
  22428. weight: math.unit(160, "lb"),
  22429. name: "Back",
  22430. image: {
  22431. source: "./media/characters/ceres/back.svg",
  22432. extra: 1023 / 950
  22433. }
  22434. },
  22435. },
  22436. [
  22437. {
  22438. name: "Normal",
  22439. height: math.unit(6 + 7 / 12, "feet"),
  22440. default: true
  22441. },
  22442. ]
  22443. ))
  22444. characterMakers.push(() => makeCharacter(
  22445. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22446. {
  22447. front: {
  22448. height: math.unit(5 + 10 / 12, "feet"),
  22449. weight: math.unit(150, "lb"),
  22450. name: "Front",
  22451. image: {
  22452. source: "./media/characters/kris/front.svg",
  22453. extra: 885 / 803,
  22454. bottom: 0.03
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Normal",
  22461. height: math.unit(5 + 10 / 12, "feet"),
  22462. default: true
  22463. },
  22464. ]
  22465. ))
  22466. characterMakers.push(() => makeCharacter(
  22467. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22468. {
  22469. dragon_front: {
  22470. height: math.unit(5, "feet"),
  22471. name: "Front",
  22472. image: {
  22473. source: "./media/characters/taluthus/dragon-front.svg",
  22474. extra: 1203/1098,
  22475. bottom: 46/1249
  22476. },
  22477. form: "dragon",
  22478. default: true
  22479. },
  22480. dragon_maw: {
  22481. height: math.unit(2.35, "feet"),
  22482. name: "Maw",
  22483. image: {
  22484. source: "./media/characters/taluthus/dragon-maw.svg"
  22485. },
  22486. form: "dragon",
  22487. },
  22488. kitsune_front: {
  22489. height: math.unit(7, "feet"),
  22490. name: "Front",
  22491. image: {
  22492. source: "./media/characters/taluthus/kitsune-front.svg",
  22493. extra: 900/841,
  22494. bottom: 65/965
  22495. },
  22496. form: "kitsune",
  22497. default: true
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(5, "feet"),
  22504. form: "dragon",
  22505. default: true,
  22506. },
  22507. {
  22508. name: "Normal",
  22509. height: math.unit(7, "feet"),
  22510. form: "kitsune",
  22511. default: true
  22512. },
  22513. {
  22514. name: "Macro",
  22515. height: math.unit(300, "feet"),
  22516. allForms: true
  22517. },
  22518. ],
  22519. {
  22520. "dragon": {
  22521. name: "Dragon",
  22522. default: true
  22523. },
  22524. "kitsune": {
  22525. name: "Kitsune",
  22526. },
  22527. }
  22528. ))
  22529. characterMakers.push(() => makeCharacter(
  22530. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22531. {
  22532. front: {
  22533. height: math.unit(5 + 9 / 12, "feet"),
  22534. weight: math.unit(145, "lb"),
  22535. name: "Front",
  22536. image: {
  22537. source: "./media/characters/dawn/front.svg",
  22538. extra: 2094 / 2016,
  22539. bottom: 0.025
  22540. }
  22541. },
  22542. back: {
  22543. height: math.unit(5 + 9 / 12, "feet"),
  22544. weight: math.unit(160, "lb"),
  22545. name: "Back",
  22546. image: {
  22547. source: "./media/characters/dawn/back.svg",
  22548. extra: 2112 / 2080,
  22549. bottom: 0.005
  22550. }
  22551. },
  22552. },
  22553. [
  22554. {
  22555. name: "Normal",
  22556. height: math.unit(6 + 7 / 12, "feet"),
  22557. default: true
  22558. },
  22559. ]
  22560. ))
  22561. characterMakers.push(() => makeCharacter(
  22562. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22563. {
  22564. anthro: {
  22565. height: math.unit(8 + 3 / 12, "feet"),
  22566. weight: math.unit(450, "lb"),
  22567. name: "Anthro",
  22568. image: {
  22569. source: "./media/characters/arador/anthro.svg",
  22570. extra: 1835 / 1718,
  22571. bottom: 0.025
  22572. }
  22573. },
  22574. feral: {
  22575. height: math.unit(4, "feet"),
  22576. weight: math.unit(200, "lb"),
  22577. name: "Feral",
  22578. image: {
  22579. source: "./media/characters/arador/feral.svg",
  22580. extra: 1683 / 1514,
  22581. bottom: 0.07
  22582. }
  22583. },
  22584. },
  22585. [
  22586. {
  22587. name: "Normal",
  22588. height: math.unit(8 + 3 / 12, "feet")
  22589. },
  22590. {
  22591. name: "Macro",
  22592. height: math.unit(82.5, "feet"),
  22593. default: true
  22594. },
  22595. ]
  22596. ))
  22597. characterMakers.push(() => makeCharacter(
  22598. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22599. {
  22600. front: {
  22601. height: math.unit(5 + 10 / 12, "feet"),
  22602. weight: math.unit(125, "lb"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/dharsi/front.svg",
  22606. extra: 716 / 630,
  22607. bottom: 0.035
  22608. }
  22609. },
  22610. },
  22611. [
  22612. {
  22613. name: "Nano",
  22614. height: math.unit(100, "nm")
  22615. },
  22616. {
  22617. name: "Micro",
  22618. height: math.unit(2, "inches")
  22619. },
  22620. {
  22621. name: "Normal",
  22622. height: math.unit(5 + 10 / 12, "feet"),
  22623. default: true
  22624. },
  22625. {
  22626. name: "Macro",
  22627. height: math.unit(1000, "feet")
  22628. },
  22629. {
  22630. name: "Megamacro",
  22631. height: math.unit(10, "miles")
  22632. },
  22633. {
  22634. name: "Gigamacro",
  22635. height: math.unit(3000, "miles")
  22636. },
  22637. {
  22638. name: "Teramacro",
  22639. height: math.unit(500000, "miles")
  22640. },
  22641. {
  22642. name: "Teramacro+",
  22643. height: math.unit(30, "galaxies")
  22644. },
  22645. ]
  22646. ))
  22647. characterMakers.push(() => makeCharacter(
  22648. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22649. {
  22650. front: {
  22651. height: math.unit(6, "feet"),
  22652. weight: math.unit(150, "lb"),
  22653. name: "Front",
  22654. image: {
  22655. source: "./media/characters/deathy/front.svg",
  22656. extra: 1552 / 1463,
  22657. bottom: 0.025
  22658. }
  22659. },
  22660. side: {
  22661. height: math.unit(6, "feet"),
  22662. weight: math.unit(150, "lb"),
  22663. name: "Side",
  22664. image: {
  22665. source: "./media/characters/deathy/side.svg",
  22666. extra: 1604 / 1455,
  22667. bottom: 0.025
  22668. }
  22669. },
  22670. back: {
  22671. height: math.unit(6, "feet"),
  22672. weight: math.unit(150, "lb"),
  22673. name: "Back",
  22674. image: {
  22675. source: "./media/characters/deathy/back.svg",
  22676. extra: 1580 / 1463,
  22677. bottom: 0.005
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Micro",
  22684. height: math.unit(5, "millimeters")
  22685. },
  22686. {
  22687. name: "Normal",
  22688. height: math.unit(6 + 5 / 12, "feet"),
  22689. default: true
  22690. },
  22691. ]
  22692. ))
  22693. characterMakers.push(() => makeCharacter(
  22694. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22695. {
  22696. front: {
  22697. height: math.unit(16, "feet"),
  22698. weight: math.unit(4000, "lb"),
  22699. name: "Front",
  22700. image: {
  22701. source: "./media/characters/juniper/front.svg",
  22702. bottom: 0.04
  22703. }
  22704. },
  22705. },
  22706. [
  22707. {
  22708. name: "Normal",
  22709. height: math.unit(16, "feet"),
  22710. default: true
  22711. },
  22712. ]
  22713. ))
  22714. characterMakers.push(() => makeCharacter(
  22715. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22716. {
  22717. front: {
  22718. height: math.unit(6, "feet"),
  22719. weight: math.unit(150, "lb"),
  22720. name: "Front",
  22721. image: {
  22722. source: "./media/characters/hipster/front.svg",
  22723. extra: 1312 / 1209,
  22724. bottom: 0.025
  22725. }
  22726. },
  22727. back: {
  22728. height: math.unit(6, "feet"),
  22729. weight: math.unit(150, "lb"),
  22730. name: "Back",
  22731. image: {
  22732. source: "./media/characters/hipster/back.svg",
  22733. extra: 1281 / 1196,
  22734. bottom: 0.01
  22735. }
  22736. },
  22737. },
  22738. [
  22739. {
  22740. name: "Micro",
  22741. height: math.unit(1, "mm")
  22742. },
  22743. {
  22744. name: "Normal",
  22745. height: math.unit(4, "inches"),
  22746. default: true
  22747. },
  22748. {
  22749. name: "Macro",
  22750. height: math.unit(500, "feet")
  22751. },
  22752. {
  22753. name: "Megamacro",
  22754. height: math.unit(1000, "miles")
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(6, "feet"),
  22763. weight: math.unit(150, "lb"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/tendirmuldr/front.svg",
  22767. extra: 1878 / 1772,
  22768. bottom: 0.015
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Megamacro",
  22775. height: math.unit(1500, "miles"),
  22776. default: true
  22777. },
  22778. ]
  22779. ))
  22780. characterMakers.push(() => makeCharacter(
  22781. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22782. {
  22783. front: {
  22784. height: math.unit(14, "feet"),
  22785. weight: math.unit(12000, "lb"),
  22786. name: "Front",
  22787. image: {
  22788. source: "./media/characters/mort/front.svg",
  22789. extra: 365 / 318,
  22790. bottom: 0.01
  22791. }
  22792. },
  22793. side: {
  22794. height: math.unit(14, "feet"),
  22795. weight: math.unit(12000, "lb"),
  22796. name: "Side",
  22797. image: {
  22798. source: "./media/characters/mort/side.svg",
  22799. extra: 365 / 318,
  22800. bottom: 0.052
  22801. },
  22802. default: true
  22803. },
  22804. back: {
  22805. height: math.unit(14, "feet"),
  22806. weight: math.unit(12000, "lb"),
  22807. name: "Back",
  22808. image: {
  22809. source: "./media/characters/mort/back.svg",
  22810. extra: 371 / 332,
  22811. bottom: 0.18
  22812. }
  22813. },
  22814. },
  22815. [
  22816. {
  22817. name: "Normal",
  22818. height: math.unit(14, "feet"),
  22819. default: true
  22820. },
  22821. ]
  22822. ))
  22823. characterMakers.push(() => makeCharacter(
  22824. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22825. {
  22826. front: {
  22827. height: math.unit(8, "feet"),
  22828. weight: math.unit(1, "ton"),
  22829. name: "Front",
  22830. image: {
  22831. source: "./media/characters/lycoa/front.svg",
  22832. extra: 1836/1728,
  22833. bottom: 81/1917
  22834. }
  22835. },
  22836. back: {
  22837. height: math.unit(8, "feet"),
  22838. weight: math.unit(1, "ton"),
  22839. name: "Back",
  22840. image: {
  22841. source: "./media/characters/lycoa/back.svg",
  22842. extra: 1785/1720,
  22843. bottom: 91/1876
  22844. }
  22845. },
  22846. head: {
  22847. height: math.unit(1.6243, "feet"),
  22848. name: "Head",
  22849. image: {
  22850. source: "./media/characters/lycoa/head.svg",
  22851. extra: 1011/782,
  22852. bottom: 0/1011
  22853. }
  22854. },
  22855. tailmaw: {
  22856. height: math.unit(1.9, "feet"),
  22857. name: "Tailmaw",
  22858. image: {
  22859. source: "./media/characters/lycoa/tailmaw.svg"
  22860. }
  22861. },
  22862. tentacles: {
  22863. height: math.unit(2.1, "feet"),
  22864. name: "Tentacles",
  22865. image: {
  22866. source: "./media/characters/lycoa/tentacles.svg"
  22867. }
  22868. },
  22869. dick: {
  22870. height: math.unit(1.73, "feet"),
  22871. name: "Dick",
  22872. image: {
  22873. source: "./media/characters/lycoa/dick.svg"
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Normal",
  22880. height: math.unit(8, "feet"),
  22881. default: true
  22882. },
  22883. {
  22884. name: "Macro",
  22885. height: math.unit(30, "feet")
  22886. },
  22887. ]
  22888. ))
  22889. characterMakers.push(() => makeCharacter(
  22890. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22891. {
  22892. front: {
  22893. height: math.unit(4 + 2 / 12, "feet"),
  22894. weight: math.unit(70, "lb"),
  22895. name: "Front",
  22896. image: {
  22897. source: "./media/characters/naldara/front.svg",
  22898. extra: 1664/1387,
  22899. bottom: 81/1745
  22900. },
  22901. form: "anthro",
  22902. default: true
  22903. },
  22904. naga: {
  22905. height: math.unit(20, "feet"),
  22906. weight: math.unit(15000, "kg"),
  22907. name: "Front",
  22908. image: {
  22909. source: "./media/characters/naldara/naga.svg",
  22910. extra: 1590/1396,
  22911. bottom: 285/1875
  22912. },
  22913. form: "naga",
  22914. default: true
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Normal",
  22920. height: math.unit(4 + 2 / 12, "feet"),
  22921. form: "anthro",
  22922. default: true
  22923. },
  22924. {
  22925. name: "Normal",
  22926. height: math.unit(20, "feet"),
  22927. form: "naga",
  22928. default: true
  22929. },
  22930. ],
  22931. {
  22932. "anthro": {
  22933. name: "Anthro",
  22934. default: true
  22935. },
  22936. "naga": {
  22937. name: "Naga"
  22938. }
  22939. }
  22940. ))
  22941. characterMakers.push(() => makeCharacter(
  22942. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22943. {
  22944. front: {
  22945. height: math.unit(13 + 7 / 12, "feet"),
  22946. weight: math.unit(1500, "lb"),
  22947. name: "Front",
  22948. image: {
  22949. source: "./media/characters/briar/front.svg",
  22950. extra: 1223/1157,
  22951. bottom: 123/1346
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Normal",
  22958. height: math.unit(13 + 7 / 12, "feet"),
  22959. default: true
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22965. {
  22966. side: {
  22967. height: math.unit(16, "feet"),
  22968. weight: math.unit(500, "lb"),
  22969. name: "Side",
  22970. image: {
  22971. source: "./media/characters/vanguard/side.svg",
  22972. extra: 1022/914,
  22973. bottom: 30/1052
  22974. }
  22975. },
  22976. sideAlt: {
  22977. height: math.unit(10, "feet"),
  22978. weight: math.unit(500, "lb"),
  22979. name: "Side (Alt)",
  22980. image: {
  22981. source: "./media/characters/vanguard/side-alt.svg",
  22982. extra: 502 / 425,
  22983. bottom: 0.087
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Normal",
  22990. height: math.unit(17.71, "feet"),
  22991. default: true
  22992. },
  22993. ]
  22994. ))
  22995. characterMakers.push(() => makeCharacter(
  22996. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22997. {
  22998. front: {
  22999. height: math.unit(7.5, "feet"),
  23000. weight: math.unit(2, "lb"),
  23001. name: "Front",
  23002. image: {
  23003. source: "./media/characters/artemis/work-safe-front.svg",
  23004. extra: 1192 / 1075,
  23005. bottom: 0.07
  23006. },
  23007. form: "work-safe",
  23008. default: true
  23009. },
  23010. frontNsfw: {
  23011. height: math.unit(7.5, "feet"),
  23012. weight: math.unit(2, "lb"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/artemis/calibrating-front.svg",
  23016. extra: 1192 / 1075,
  23017. bottom: 0.07
  23018. },
  23019. form: "calibrating",
  23020. default: true
  23021. },
  23022. frontNsfwer: {
  23023. height: math.unit(7.5, "feet"),
  23024. weight: math.unit(2, "lb"),
  23025. name: "Front",
  23026. image: {
  23027. source: "./media/characters/artemis/oversize-load-front.svg",
  23028. extra: 1192 / 1075,
  23029. bottom: 0.07
  23030. },
  23031. form: "oversize-load",
  23032. default: true
  23033. },
  23034. side: {
  23035. height: math.unit(7.5, "feet"),
  23036. weight: math.unit(2, "lb"),
  23037. name: "Side",
  23038. image: {
  23039. source: "./media/characters/artemis/work-safe-side.svg",
  23040. extra: 1192 / 1075,
  23041. bottom: 0.07
  23042. },
  23043. form: "work-safe"
  23044. },
  23045. sideNsfw: {
  23046. height: math.unit(7.5, "feet"),
  23047. weight: math.unit(2, "lb"),
  23048. name: "Side",
  23049. image: {
  23050. source: "./media/characters/artemis/calibrating-side.svg",
  23051. extra: 1192 / 1075,
  23052. bottom: 0.07
  23053. },
  23054. form: "calibrating"
  23055. },
  23056. sideNsfwer: {
  23057. height: math.unit(7.5, "feet"),
  23058. weight: math.unit(2, "lb"),
  23059. name: "Side",
  23060. image: {
  23061. source: "./media/characters/artemis/oversize-load-side.svg",
  23062. extra: 1192 / 1075,
  23063. bottom: 0.07
  23064. },
  23065. form: "oversize-load"
  23066. },
  23067. maw: {
  23068. height: math.unit(1.1, "feet"),
  23069. name: "Maw",
  23070. image: {
  23071. source: "./media/characters/artemis/maw.svg"
  23072. },
  23073. form: "work-safe"
  23074. },
  23075. stomach: {
  23076. height: math.unit(0.95, "feet"),
  23077. name: "Stomach",
  23078. image: {
  23079. source: "./media/characters/artemis/stomach.svg"
  23080. },
  23081. form: "work-safe"
  23082. },
  23083. dickCanine: {
  23084. height: math.unit(1, "feet"),
  23085. name: "Dick (Canine)",
  23086. image: {
  23087. source: "./media/characters/artemis/dick-canine.svg"
  23088. },
  23089. form: "calibrating"
  23090. },
  23091. dickEquine: {
  23092. height: math.unit(0.85, "feet"),
  23093. name: "Dick (Equine)",
  23094. image: {
  23095. source: "./media/characters/artemis/dick-equine.svg"
  23096. },
  23097. form: "calibrating"
  23098. },
  23099. dickExotic: {
  23100. height: math.unit(0.85, "feet"),
  23101. name: "Dick (Exotic)",
  23102. image: {
  23103. source: "./media/characters/artemis/dick-exotic.svg"
  23104. },
  23105. form: "calibrating"
  23106. },
  23107. dickCanineBigger: {
  23108. height: math.unit(1 * 1.33, "feet"),
  23109. name: "Dick (Canine)",
  23110. image: {
  23111. source: "./media/characters/artemis/dick-canine.svg"
  23112. },
  23113. form: "oversize-load"
  23114. },
  23115. dickEquineBigger: {
  23116. height: math.unit(0.85 * 1.33, "feet"),
  23117. name: "Dick (Equine)",
  23118. image: {
  23119. source: "./media/characters/artemis/dick-equine.svg"
  23120. },
  23121. form: "oversize-load"
  23122. },
  23123. dickExoticBigger: {
  23124. height: math.unit(0.85 * 1.33, "feet"),
  23125. name: "Dick (Exotic)",
  23126. image: {
  23127. source: "./media/characters/artemis/dick-exotic.svg"
  23128. },
  23129. form: "oversize-load"
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "Normal",
  23135. height: math.unit(7.5, "feet"),
  23136. form: "work-safe",
  23137. default: true
  23138. },
  23139. {
  23140. name: "Normal",
  23141. height: math.unit(7.5, "feet"),
  23142. form: "calibrating",
  23143. default: true
  23144. },
  23145. {
  23146. name: "Normal",
  23147. height: math.unit(7.5, "feet"),
  23148. form: "oversize-load",
  23149. default: true
  23150. },
  23151. {
  23152. name: "Enlarged",
  23153. height: math.unit(12, "feet"),
  23154. form: "work-safe",
  23155. },
  23156. {
  23157. name: "Enlarged",
  23158. height: math.unit(12, "feet"),
  23159. form: "calibrating",
  23160. },
  23161. {
  23162. name: "Enlarged",
  23163. height: math.unit(12, "feet"),
  23164. form: "oversize-load",
  23165. },
  23166. ],
  23167. {
  23168. "work-safe": {
  23169. name: "Work-Safe",
  23170. default: true
  23171. },
  23172. "calibrating": {
  23173. name: "Calibrating"
  23174. },
  23175. "oversize-load": {
  23176. name: "Oversize Load"
  23177. }
  23178. }
  23179. ))
  23180. characterMakers.push(() => makeCharacter(
  23181. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23182. {
  23183. front: {
  23184. height: math.unit(5 + 3 / 12, "feet"),
  23185. weight: math.unit(160, "lb"),
  23186. name: "Front",
  23187. image: {
  23188. source: "./media/characters/kira/front.svg",
  23189. extra: 906 / 786,
  23190. bottom: 0.01
  23191. }
  23192. },
  23193. back: {
  23194. height: math.unit(5 + 3 / 12, "feet"),
  23195. weight: math.unit(160, "lb"),
  23196. name: "Back",
  23197. image: {
  23198. source: "./media/characters/kira/back.svg",
  23199. extra: 882 / 757,
  23200. bottom: 0.005
  23201. }
  23202. },
  23203. frontDressed: {
  23204. height: math.unit(5 + 3 / 12, "feet"),
  23205. weight: math.unit(160, "lb"),
  23206. name: "Front (Dressed)",
  23207. image: {
  23208. source: "./media/characters/kira/front-dressed.svg",
  23209. extra: 906 / 786,
  23210. bottom: 0.01
  23211. }
  23212. },
  23213. beans: {
  23214. height: math.unit(0.92, "feet"),
  23215. name: "Beans",
  23216. image: {
  23217. source: "./media/characters/kira/beans.svg"
  23218. }
  23219. },
  23220. },
  23221. [
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(5 + 3 / 12, "feet"),
  23225. default: true
  23226. },
  23227. ]
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23231. {
  23232. front: {
  23233. height: math.unit(5 + 4 / 12, "feet"),
  23234. weight: math.unit(145, "lb"),
  23235. name: "Front",
  23236. image: {
  23237. source: "./media/characters/scramble/front.svg",
  23238. extra: 763 / 727,
  23239. bottom: 0.05
  23240. }
  23241. },
  23242. back: {
  23243. height: math.unit(5 + 4 / 12, "feet"),
  23244. weight: math.unit(145, "lb"),
  23245. name: "Back",
  23246. image: {
  23247. source: "./media/characters/scramble/back.svg",
  23248. extra: 826 / 737,
  23249. bottom: 0.002
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(5 + 4 / 12, "feet"),
  23257. default: true
  23258. },
  23259. ]
  23260. ))
  23261. characterMakers.push(() => makeCharacter(
  23262. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23263. {
  23264. side: {
  23265. height: math.unit(6 + 2 / 12, "feet"),
  23266. weight: math.unit(190, "lb"),
  23267. name: "Side",
  23268. image: {
  23269. source: "./media/characters/biscuit/side.svg",
  23270. extra: 858 / 791,
  23271. bottom: 0.044
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(6 + 2 / 12, "feet"),
  23279. default: true
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23285. {
  23286. front: {
  23287. height: math.unit(5 + 2 / 12, "feet"),
  23288. weight: math.unit(120, "lb"),
  23289. name: "Front",
  23290. image: {
  23291. source: "./media/characters/poffin/front.svg",
  23292. extra: 786 / 680,
  23293. bottom: 0.005
  23294. }
  23295. },
  23296. },
  23297. [
  23298. {
  23299. name: "Normal",
  23300. height: math.unit(5 + 2 / 12, "feet"),
  23301. default: true
  23302. },
  23303. ]
  23304. ))
  23305. characterMakers.push(() => makeCharacter(
  23306. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23307. {
  23308. front: {
  23309. height: math.unit(6 + 3 / 12, "feet"),
  23310. weight: math.unit(519, "lb"),
  23311. name: "Front",
  23312. image: {
  23313. source: "./media/characters/dhari/front.svg",
  23314. extra: 1048 / 946,
  23315. bottom: 0.015
  23316. }
  23317. },
  23318. back: {
  23319. height: math.unit(6 + 3 / 12, "feet"),
  23320. weight: math.unit(519, "lb"),
  23321. name: "Back",
  23322. image: {
  23323. source: "./media/characters/dhari/back.svg",
  23324. extra: 1048 / 931,
  23325. bottom: 0.005
  23326. }
  23327. },
  23328. frontDressed: {
  23329. height: math.unit(6 + 3 / 12, "feet"),
  23330. weight: math.unit(519, "lb"),
  23331. name: "Front (Dressed)",
  23332. image: {
  23333. source: "./media/characters/dhari/front-dressed.svg",
  23334. extra: 1713 / 1546,
  23335. bottom: 0.02
  23336. }
  23337. },
  23338. backDressed: {
  23339. height: math.unit(6 + 3 / 12, "feet"),
  23340. weight: math.unit(519, "lb"),
  23341. name: "Back (Dressed)",
  23342. image: {
  23343. source: "./media/characters/dhari/back-dressed.svg",
  23344. extra: 1699 / 1537,
  23345. bottom: 0.01
  23346. }
  23347. },
  23348. maw: {
  23349. height: math.unit(0.95, "feet"),
  23350. name: "Maw",
  23351. image: {
  23352. source: "./media/characters/dhari/maw.svg"
  23353. }
  23354. },
  23355. wereFront: {
  23356. height: math.unit(12 + 8 / 12, "feet"),
  23357. weight: math.unit(4000, "lb"),
  23358. name: "Front (Were)",
  23359. image: {
  23360. source: "./media/characters/dhari/were-front.svg",
  23361. extra: 1065 / 969,
  23362. bottom: 0.015
  23363. }
  23364. },
  23365. wereBack: {
  23366. height: math.unit(12 + 8 / 12, "feet"),
  23367. weight: math.unit(4000, "lb"),
  23368. name: "Back (Were)",
  23369. image: {
  23370. source: "./media/characters/dhari/were-back.svg",
  23371. extra: 1065 / 969,
  23372. bottom: 0.012
  23373. }
  23374. },
  23375. wereMaw: {
  23376. height: math.unit(0.625, "meters"),
  23377. name: "Maw (Were)",
  23378. image: {
  23379. source: "./media/characters/dhari/were-maw.svg"
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Normal",
  23386. height: math.unit(6 + 3 / 12, "feet"),
  23387. default: true
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23393. {
  23394. anthro: {
  23395. height: math.unit(5 + 7 / 12, "feet"),
  23396. weight: math.unit(175, "lb"),
  23397. name: "Anthro",
  23398. image: {
  23399. source: "./media/characters/rena-dyne/anthro.svg",
  23400. extra: 1849 / 1785,
  23401. bottom: 0.005
  23402. }
  23403. },
  23404. taur: {
  23405. height: math.unit(15 + 6 / 12, "feet"),
  23406. weight: math.unit(8000, "lb"),
  23407. name: "Taur",
  23408. image: {
  23409. source: "./media/characters/rena-dyne/taur.svg",
  23410. extra: 2315 / 2234,
  23411. bottom: 0.033
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(5 + 7 / 12, "feet"),
  23419. default: true
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23425. {
  23426. front: {
  23427. height: math.unit(8, "feet"),
  23428. weight: math.unit(600, "lb"),
  23429. name: "Front",
  23430. image: {
  23431. source: "./media/characters/weremeep/front.svg",
  23432. extra: 970/849,
  23433. bottom: 7/977
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Normal",
  23440. height: math.unit(8, "feet"),
  23441. default: true
  23442. },
  23443. {
  23444. name: "Lorg",
  23445. height: math.unit(12, "feet")
  23446. },
  23447. {
  23448. name: "Oh Lawd She Comin'",
  23449. height: math.unit(20, "feet")
  23450. },
  23451. ]
  23452. ))
  23453. characterMakers.push(() => makeCharacter(
  23454. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23455. {
  23456. front: {
  23457. height: math.unit(4, "feet"),
  23458. weight: math.unit(90, "lb"),
  23459. name: "Front",
  23460. image: {
  23461. source: "./media/characters/reza/front.svg",
  23462. extra: 1183 / 1111,
  23463. bottom: 0.017
  23464. }
  23465. },
  23466. back: {
  23467. height: math.unit(4, "feet"),
  23468. weight: math.unit(90, "lb"),
  23469. name: "Back",
  23470. image: {
  23471. source: "./media/characters/reza/back.svg",
  23472. extra: 1183 / 1111,
  23473. bottom: 0.01
  23474. }
  23475. },
  23476. drake: {
  23477. height: math.unit(30, "feet"),
  23478. weight: math.unit(246960, "lb"),
  23479. name: "Drake",
  23480. image: {
  23481. source: "./media/characters/reza/drake.svg",
  23482. extra: 2350 / 2024,
  23483. bottom: 60.7 / 2403
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "Normal",
  23490. height: math.unit(4, "feet"),
  23491. default: true
  23492. },
  23493. ]
  23494. ))
  23495. characterMakers.push(() => makeCharacter(
  23496. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23497. {
  23498. side: {
  23499. height: math.unit(15, "feet"),
  23500. weight: math.unit(14, "tons"),
  23501. name: "Side",
  23502. image: {
  23503. source: "./media/characters/athea/side.svg",
  23504. extra: 960 / 540,
  23505. bottom: 0.003
  23506. }
  23507. },
  23508. sitting: {
  23509. height: math.unit(6 * 2.85, "feet"),
  23510. weight: math.unit(14, "tons"),
  23511. name: "Sitting",
  23512. image: {
  23513. source: "./media/characters/athea/sitting.svg",
  23514. extra: 621 / 581,
  23515. bottom: 0.075
  23516. }
  23517. },
  23518. maw: {
  23519. height: math.unit(7.59498031496063, "feet"),
  23520. name: "Maw",
  23521. image: {
  23522. source: "./media/characters/athea/maw.svg"
  23523. }
  23524. },
  23525. },
  23526. [
  23527. {
  23528. name: "Lap Cat",
  23529. height: math.unit(2.5, "feet")
  23530. },
  23531. {
  23532. name: "Minimacro",
  23533. height: math.unit(15, "feet"),
  23534. default: true
  23535. },
  23536. {
  23537. name: "Macro",
  23538. height: math.unit(120, "feet")
  23539. },
  23540. {
  23541. name: "Macro+",
  23542. height: math.unit(640, "feet")
  23543. },
  23544. {
  23545. name: "Colossus",
  23546. height: math.unit(2.2, "miles")
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23552. {
  23553. front: {
  23554. height: math.unit(8 + 8 / 12, "feet"),
  23555. weight: math.unit(130, "kg"),
  23556. name: "Front",
  23557. image: {
  23558. source: "./media/characters/seroko/front.svg",
  23559. extra: 1385 / 1280,
  23560. bottom: 0.025
  23561. }
  23562. },
  23563. back: {
  23564. height: math.unit(8 + 8 / 12, "feet"),
  23565. weight: math.unit(130, "kg"),
  23566. name: "Back",
  23567. image: {
  23568. source: "./media/characters/seroko/back.svg",
  23569. extra: 1369 / 1238,
  23570. bottom: 0.018
  23571. }
  23572. },
  23573. frontDressed: {
  23574. height: math.unit(8 + 8 / 12, "feet"),
  23575. weight: math.unit(130, "kg"),
  23576. name: "Front (Dressed)",
  23577. image: {
  23578. source: "./media/characters/seroko/front-dressed.svg",
  23579. extra: 1366 / 1275,
  23580. bottom: 0.03
  23581. }
  23582. },
  23583. },
  23584. [
  23585. {
  23586. name: "Normal",
  23587. height: math.unit(8 + 8 / 12, "feet"),
  23588. default: true
  23589. },
  23590. ]
  23591. ))
  23592. characterMakers.push(() => makeCharacter(
  23593. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23594. {
  23595. front: {
  23596. height: math.unit(5.5, "feet"),
  23597. weight: math.unit(160, "lb"),
  23598. name: "Front",
  23599. image: {
  23600. source: "./media/characters/quatzi/front.svg",
  23601. extra: 2346 / 2242,
  23602. bottom: 0.015
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Normal",
  23609. height: math.unit(5.5, "feet"),
  23610. default: true
  23611. },
  23612. {
  23613. name: "Big",
  23614. height: math.unit(7.7, "feet")
  23615. },
  23616. ]
  23617. ))
  23618. characterMakers.push(() => makeCharacter(
  23619. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23620. {
  23621. front: {
  23622. height: math.unit(5 + 11 / 12, "feet"),
  23623. weight: math.unit(180, "lb"),
  23624. name: "Front",
  23625. image: {
  23626. source: "./media/characters/sen/front.svg",
  23627. extra: 1321 / 1254,
  23628. bottom: 0.015
  23629. }
  23630. },
  23631. side: {
  23632. height: math.unit(5 + 11 / 12, "feet"),
  23633. weight: math.unit(180, "lb"),
  23634. name: "Side",
  23635. image: {
  23636. source: "./media/characters/sen/side.svg",
  23637. extra: 1321 / 1254,
  23638. bottom: 0.007
  23639. }
  23640. },
  23641. back: {
  23642. height: math.unit(5 + 11 / 12, "feet"),
  23643. weight: math.unit(180, "lb"),
  23644. name: "Back",
  23645. image: {
  23646. source: "./media/characters/sen/back.svg",
  23647. extra: 1321 / 1254
  23648. }
  23649. },
  23650. },
  23651. [
  23652. {
  23653. name: "Normal",
  23654. height: math.unit(5 + 11 / 12, "feet"),
  23655. default: true
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23661. {
  23662. front: {
  23663. height: math.unit(166.6, "cm"),
  23664. weight: math.unit(66.6, "kg"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/fruity/front.svg",
  23668. extra: 1510 / 1386,
  23669. bottom: 0.04
  23670. }
  23671. },
  23672. back: {
  23673. height: math.unit(166.6, "cm"),
  23674. weight: math.unit(66.6, "lb"),
  23675. name: "Back",
  23676. image: {
  23677. source: "./media/characters/fruity/back.svg",
  23678. extra: 1563 / 1435,
  23679. bottom: 0.005
  23680. }
  23681. },
  23682. },
  23683. [
  23684. {
  23685. name: "Normal",
  23686. height: math.unit(166.6, "cm"),
  23687. default: true
  23688. },
  23689. {
  23690. name: "Demonic",
  23691. height: math.unit(166.6, "feet")
  23692. },
  23693. ]
  23694. ))
  23695. characterMakers.push(() => makeCharacter(
  23696. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23697. {
  23698. side: {
  23699. height: math.unit(10, "feet"),
  23700. weight: math.unit(500, "lb"),
  23701. name: "Side",
  23702. image: {
  23703. source: "./media/characters/zost/side.svg",
  23704. extra: 2870/2533,
  23705. bottom: 252/3122
  23706. }
  23707. },
  23708. mawFront: {
  23709. height: math.unit(1.08, "meters"),
  23710. name: "Maw (Front)",
  23711. image: {
  23712. source: "./media/characters/zost/maw-front.svg"
  23713. }
  23714. },
  23715. mawSide: {
  23716. height: math.unit(2.66, "feet"),
  23717. name: "Maw (Side)",
  23718. image: {
  23719. source: "./media/characters/zost/maw-side.svg"
  23720. }
  23721. },
  23722. wingspan: {
  23723. height: math.unit(7.4, "feet"),
  23724. name: "Wingspan",
  23725. image: {
  23726. source: "./media/characters/zost/wingspan.svg"
  23727. }
  23728. },
  23729. },
  23730. [
  23731. {
  23732. name: "Normal",
  23733. height: math.unit(10, "feet"),
  23734. default: true
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23740. {
  23741. front: {
  23742. height: math.unit(5 + 4 / 12, "feet"),
  23743. weight: math.unit(120, "lb"),
  23744. name: "Front",
  23745. image: {
  23746. source: "./media/characters/luci/front.svg",
  23747. extra: 1985 / 1884,
  23748. bottom: 0.04
  23749. }
  23750. },
  23751. back: {
  23752. height: math.unit(5 + 4 / 12, "feet"),
  23753. weight: math.unit(120, "lb"),
  23754. name: "Back",
  23755. image: {
  23756. source: "./media/characters/luci/back.svg",
  23757. extra: 1892 / 1791,
  23758. bottom: 0.002
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(5 + 4 / 12, "feet"),
  23766. default: true
  23767. },
  23768. ]
  23769. ))
  23770. characterMakers.push(() => makeCharacter(
  23771. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23772. {
  23773. front: {
  23774. height: math.unit(1500, "feet"),
  23775. weight: math.unit(3.8e6, "tons"),
  23776. name: "Front",
  23777. image: {
  23778. source: "./media/characters/2th/front.svg",
  23779. extra: 3489 / 3350,
  23780. bottom: 0.1
  23781. }
  23782. },
  23783. foot: {
  23784. height: math.unit(461, "feet"),
  23785. name: "Foot",
  23786. image: {
  23787. source: "./media/characters/2th/foot.svg"
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "\"Micro\"",
  23794. height: math.unit(15 + 7 / 12, "feet")
  23795. },
  23796. {
  23797. name: "Normal",
  23798. height: math.unit(1500, "feet"),
  23799. default: true
  23800. },
  23801. {
  23802. name: "Macro",
  23803. height: math.unit(5000, "feet")
  23804. },
  23805. {
  23806. name: "Megamacro",
  23807. height: math.unit(15, "miles")
  23808. },
  23809. {
  23810. name: "Gigamacro",
  23811. height: math.unit(4000, "miles")
  23812. },
  23813. {
  23814. name: "Galactic",
  23815. height: math.unit(50, "AU")
  23816. },
  23817. ]
  23818. ))
  23819. characterMakers.push(() => makeCharacter(
  23820. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23821. {
  23822. front: {
  23823. height: math.unit(5 + 6 / 12, "feet"),
  23824. weight: math.unit(220, "lb"),
  23825. name: "Front",
  23826. image: {
  23827. source: "./media/characters/amethyst/front.svg",
  23828. extra: 2078 / 2040,
  23829. bottom: 0.045
  23830. }
  23831. },
  23832. back: {
  23833. height: math.unit(5 + 6 / 12, "feet"),
  23834. weight: math.unit(220, "lb"),
  23835. name: "Back",
  23836. image: {
  23837. source: "./media/characters/amethyst/back.svg",
  23838. extra: 2021 / 1989,
  23839. bottom: 0.02
  23840. }
  23841. },
  23842. },
  23843. [
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(5 + 6 / 12, "feet"),
  23847. default: true
  23848. },
  23849. ]
  23850. ))
  23851. characterMakers.push(() => makeCharacter(
  23852. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23853. {
  23854. front: {
  23855. height: math.unit(4 + 11 / 12, "feet"),
  23856. weight: math.unit(120, "lb"),
  23857. name: "Front",
  23858. image: {
  23859. source: "./media/characters/yumi-akiyama/front.svg",
  23860. extra: 2638/2432,
  23861. bottom: 70/2708
  23862. }
  23863. },
  23864. back: {
  23865. height: math.unit(4 + 11 / 12, "feet"),
  23866. weight: math.unit(120, "lb"),
  23867. name: "Back",
  23868. image: {
  23869. source: "./media/characters/yumi-akiyama/back.svg",
  23870. extra: 2502/2397,
  23871. bottom: 80/2582
  23872. }
  23873. },
  23874. casual: {
  23875. height: math.unit(4 + 11 / 12, "feet"),
  23876. weight: math.unit(120, "lb"),
  23877. name: "Casual",
  23878. image: {
  23879. source: "./media/characters/yumi-akiyama/casual.svg",
  23880. extra: 958/887,
  23881. bottom: 41/999
  23882. }
  23883. },
  23884. jammies: {
  23885. height: math.unit(4 + 11 / 12, "feet"),
  23886. weight: math.unit(120, "lb"),
  23887. name: "Jammies",
  23888. image: {
  23889. source: "./media/characters/yumi-akiyama/jammies.svg",
  23890. extra: 958/894,
  23891. bottom: 37/995
  23892. }
  23893. },
  23894. warmWeather: {
  23895. height: math.unit(4 + 11 / 12, "feet"),
  23896. weight: math.unit(120, "lb"),
  23897. name: "Warm Weather",
  23898. image: {
  23899. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23900. extra: 929/865,
  23901. bottom: 76/1005
  23902. }
  23903. },
  23904. mouth: {
  23905. height: math.unit(0.35, "feet"),
  23906. name: "Mouth",
  23907. image: {
  23908. source: "./media/characters/yumi-akiyama/mouth.svg"
  23909. }
  23910. },
  23911. paws: {
  23912. height: math.unit(1.05, "feet"),
  23913. name: "Paws",
  23914. image: {
  23915. source: "./media/characters/yumi-akiyama/paws.svg"
  23916. }
  23917. },
  23918. cockRing: {
  23919. height: math.unit(0.225, "feet"),
  23920. name: "Cock Ring",
  23921. image: {
  23922. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Galactic",
  23929. height: math.unit(50, "galaxies"),
  23930. default: true
  23931. },
  23932. {
  23933. name: "Universal",
  23934. height: math.unit(100, "universes")
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23940. {
  23941. front: {
  23942. height: math.unit(8, "feet"),
  23943. weight: math.unit(500, "lb"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/rifter-yrmori/front.svg",
  23947. extra: 1180 / 1125,
  23948. bottom: 0.02
  23949. }
  23950. },
  23951. back: {
  23952. height: math.unit(8, "feet"),
  23953. weight: math.unit(500, "lb"),
  23954. name: "Back",
  23955. image: {
  23956. source: "./media/characters/rifter-yrmori/back.svg",
  23957. extra: 1190 / 1145,
  23958. bottom: 0.001
  23959. }
  23960. },
  23961. wings: {
  23962. height: math.unit(7.75, "feet"),
  23963. weight: math.unit(500, "lb"),
  23964. name: "Wings",
  23965. image: {
  23966. source: "./media/characters/rifter-yrmori/wings.svg",
  23967. extra: 1357 / 1285
  23968. }
  23969. },
  23970. maw: {
  23971. height: math.unit(0.8, "feet"),
  23972. name: "Maw",
  23973. image: {
  23974. source: "./media/characters/rifter-yrmori/maw.svg"
  23975. }
  23976. },
  23977. mawfront: {
  23978. height: math.unit(1.45, "feet"),
  23979. name: "Maw (Front)",
  23980. image: {
  23981. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23982. }
  23983. },
  23984. },
  23985. [
  23986. {
  23987. name: "Normal",
  23988. height: math.unit(8, "feet"),
  23989. default: true
  23990. },
  23991. {
  23992. name: "Macro",
  23993. height: math.unit(42, "meters")
  23994. },
  23995. ]
  23996. ))
  23997. characterMakers.push(() => makeCharacter(
  23998. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23999. {
  24000. were: {
  24001. height: math.unit(25 + 6 / 12, "feet"),
  24002. weight: math.unit(10000, "lb"),
  24003. name: "Were",
  24004. image: {
  24005. source: "./media/characters/tahajin/were.svg",
  24006. extra: 801 / 770,
  24007. bottom: 0.042
  24008. }
  24009. },
  24010. aquatic: {
  24011. height: math.unit(6 + 4 / 12, "feet"),
  24012. weight: math.unit(160, "lb"),
  24013. name: "Aquatic",
  24014. image: {
  24015. source: "./media/characters/tahajin/aquatic.svg",
  24016. extra: 572 / 542,
  24017. bottom: 0.04
  24018. }
  24019. },
  24020. chow: {
  24021. height: math.unit(8 + 11 / 12, "feet"),
  24022. weight: math.unit(450, "lb"),
  24023. name: "Chow",
  24024. image: {
  24025. source: "./media/characters/tahajin/chow.svg",
  24026. extra: 660 / 640,
  24027. bottom: 0.015
  24028. }
  24029. },
  24030. demiNaga: {
  24031. height: math.unit(6 + 8 / 12, "feet"),
  24032. weight: math.unit(300, "lb"),
  24033. name: "Demi Naga",
  24034. image: {
  24035. source: "./media/characters/tahajin/demi-naga.svg",
  24036. extra: 643 / 615,
  24037. bottom: 0.1
  24038. }
  24039. },
  24040. data: {
  24041. height: math.unit(5, "inches"),
  24042. weight: math.unit(0.1, "lb"),
  24043. name: "Data",
  24044. image: {
  24045. source: "./media/characters/tahajin/data.svg"
  24046. }
  24047. },
  24048. fluu: {
  24049. height: math.unit(5 + 7 / 12, "feet"),
  24050. weight: math.unit(140, "lb"),
  24051. name: "Fluu",
  24052. image: {
  24053. source: "./media/characters/tahajin/fluu.svg",
  24054. extra: 628 / 592,
  24055. bottom: 0.02
  24056. }
  24057. },
  24058. starWarrior: {
  24059. height: math.unit(4 + 5 / 12, "feet"),
  24060. weight: math.unit(50, "lb"),
  24061. name: "Star Warrior",
  24062. image: {
  24063. source: "./media/characters/tahajin/star-warrior.svg"
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Normal",
  24070. height: math.unit(25 + 6 / 12, "feet"),
  24071. default: true
  24072. },
  24073. ]
  24074. ))
  24075. characterMakers.push(() => makeCharacter(
  24076. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24077. {
  24078. front: {
  24079. height: math.unit(8, "feet"),
  24080. weight: math.unit(350, "lb"),
  24081. name: "Front",
  24082. image: {
  24083. source: "./media/characters/gabira/front.svg",
  24084. extra: 1261/1154,
  24085. bottom: 51/1312
  24086. }
  24087. },
  24088. back: {
  24089. height: math.unit(8, "feet"),
  24090. weight: math.unit(350, "lb"),
  24091. name: "Back",
  24092. image: {
  24093. source: "./media/characters/gabira/back.svg",
  24094. extra: 1265/1163,
  24095. bottom: 46/1311
  24096. }
  24097. },
  24098. head: {
  24099. height: math.unit(2.85, "feet"),
  24100. name: "Head",
  24101. image: {
  24102. source: "./media/characters/gabira/head.svg"
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Normal",
  24109. height: math.unit(8, "feet"),
  24110. default: true
  24111. },
  24112. ]
  24113. ))
  24114. characterMakers.push(() => makeCharacter(
  24115. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24116. {
  24117. front: {
  24118. height: math.unit(5 + 3 / 12, "feet"),
  24119. weight: math.unit(137, "lb"),
  24120. name: "Front",
  24121. image: {
  24122. source: "./media/characters/sasha-katraine/front.svg",
  24123. extra: 1745/1694,
  24124. bottom: 37/1782
  24125. }
  24126. },
  24127. back: {
  24128. height: math.unit(5 + 3 / 12, "feet"),
  24129. weight: math.unit(137, "lb"),
  24130. name: "Back",
  24131. image: {
  24132. source: "./media/characters/sasha-katraine/back.svg",
  24133. extra: 1776/1699,
  24134. bottom: 26/1802
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Micro",
  24141. height: math.unit(5, "inches")
  24142. },
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(5 + 3 / 12, "feet"),
  24146. default: true
  24147. },
  24148. ]
  24149. ))
  24150. characterMakers.push(() => makeCharacter(
  24151. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24152. {
  24153. side: {
  24154. height: math.unit(4, "inches"),
  24155. weight: math.unit(200, "grams"),
  24156. name: "Side",
  24157. image: {
  24158. source: "./media/characters/der/side.svg",
  24159. extra: 719 / 400,
  24160. bottom: 30.6 / 749.9187
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Micro",
  24167. height: math.unit(4, "inches"),
  24168. default: true
  24169. },
  24170. ]
  24171. ))
  24172. characterMakers.push(() => makeCharacter(
  24173. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24174. {
  24175. side: {
  24176. height: math.unit(30, "meters"),
  24177. weight: math.unit(700, "tonnes"),
  24178. name: "Side",
  24179. image: {
  24180. source: "./media/characters/fixerdragon/side.svg",
  24181. extra: (1293.0514 - 116.03) / 1106.86,
  24182. bottom: 116.03 / 1293.0514
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Planck",
  24189. height: math.unit(1.6e-35, "meters")
  24190. },
  24191. {
  24192. name: "Micro",
  24193. height: math.unit(0.4, "meters")
  24194. },
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(30, "meters"),
  24198. default: true
  24199. },
  24200. {
  24201. name: "Megamacro",
  24202. height: math.unit(1.2, "megameters")
  24203. },
  24204. {
  24205. name: "Teramacro",
  24206. height: math.unit(130, "terameters")
  24207. },
  24208. {
  24209. name: "Yottamacro",
  24210. height: math.unit(6200, "yottameters")
  24211. },
  24212. ]
  24213. ));
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24216. {
  24217. front: {
  24218. height: math.unit(8, "feet"),
  24219. weight: math.unit(250, "lb"),
  24220. name: "Front",
  24221. image: {
  24222. source: "./media/characters/kite/front.svg",
  24223. extra: 2796 / 2659,
  24224. bottom: 0.002
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(8, "feet"),
  24232. default: true
  24233. },
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(360, "feet")
  24237. },
  24238. {
  24239. name: "Megamacro",
  24240. height: math.unit(1500, "feet")
  24241. },
  24242. ]
  24243. ))
  24244. characterMakers.push(() => makeCharacter(
  24245. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24246. {
  24247. anthro_front: {
  24248. height: math.unit(5 + 11/12, "feet"),
  24249. weight: math.unit(170, "lb"),
  24250. name: "Front",
  24251. image: {
  24252. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24253. extra: 1735/1585,
  24254. bottom: 96/1831
  24255. },
  24256. form: "anthro",
  24257. default: true
  24258. },
  24259. anthro_back: {
  24260. height: math.unit(5 + 11/12, "feet"),
  24261. weight: math.unit(170, "lb"),
  24262. name: "Back",
  24263. image: {
  24264. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24265. extra: 1749/1607,
  24266. bottom: 28/1777
  24267. },
  24268. form: "anthro"
  24269. },
  24270. anthro_male: {
  24271. height: math.unit(5 + 11/12, "feet"),
  24272. weight: math.unit(170, "lb"),
  24273. name: "Male",
  24274. image: {
  24275. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24276. extra: 1855/1713,
  24277. bottom: 63/1918
  24278. },
  24279. form: "anthro"
  24280. },
  24281. taur_front: {
  24282. height: math.unit(5 + 7/12, "feet"),
  24283. weight: math.unit(170, "lb"),
  24284. name: "Front",
  24285. image: {
  24286. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24287. extra: 1151/1059,
  24288. bottom: 356/1507
  24289. },
  24290. form: "taur",
  24291. default: true
  24292. },
  24293. anthro_frontDressed: {
  24294. height: math.unit(5 + 11/12, "feet"),
  24295. weight: math.unit(170, "lb"),
  24296. name: "Front (Dressed)",
  24297. image: {
  24298. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24299. extra: 1735/1585,
  24300. bottom: 96/1831
  24301. },
  24302. form: "anthro"
  24303. },
  24304. anthro_backDressed: {
  24305. height: math.unit(5 + 11/12, "feet"),
  24306. weight: math.unit(170, "lb"),
  24307. name: "Back (Dressed)",
  24308. image: {
  24309. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24310. extra: 1749/1607,
  24311. bottom: 28/1777
  24312. },
  24313. form: "anthro"
  24314. },
  24315. anthro_maleDressed: {
  24316. height: math.unit(5 + 11/12, "feet"),
  24317. weight: math.unit(170, "lb"),
  24318. name: "Male (Dressed)",
  24319. image: {
  24320. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24321. extra: 1855/1713,
  24322. bottom: 63/1918
  24323. },
  24324. form: "anthro"
  24325. },
  24326. taur_frontDressed: {
  24327. height: math.unit(5 + 7/12, "feet"),
  24328. weight: math.unit(170, "lb"),
  24329. name: "Front (Dressed)",
  24330. image: {
  24331. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24332. extra: 1151/1059,
  24333. bottom: 356/1507
  24334. },
  24335. form: "taur"
  24336. },
  24337. maw: {
  24338. height: math.unit(1.46, "feet"),
  24339. name: "Maw",
  24340. image: {
  24341. source: "./media/characters/poojawa-vynar/maw.svg"
  24342. },
  24343. allForms: true
  24344. },
  24345. head: {
  24346. height: math.unit(2.34, "feet"),
  24347. name: "Head",
  24348. image: {
  24349. source: "./media/characters/poojawa-vynar/head.svg"
  24350. },
  24351. allForms: true
  24352. },
  24353. leftPaw: {
  24354. height: math.unit(1.72, "feet"),
  24355. name: "Left Paw",
  24356. image: {
  24357. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24358. },
  24359. allForms: true
  24360. },
  24361. rightPaw: {
  24362. height: math.unit(1.61, "feet"),
  24363. name: "Right Paw",
  24364. image: {
  24365. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24366. },
  24367. allForms: true
  24368. },
  24369. toering: {
  24370. height: math.unit(2.9, "inches"),
  24371. name: "Toering",
  24372. image: {
  24373. source: "./media/characters/poojawa-vynar/toering.svg"
  24374. },
  24375. allForms: true
  24376. },
  24377. shaft: {
  24378. height: math.unit(0.625, "feet"),
  24379. name: "Shaft",
  24380. image: {
  24381. source: "./media/characters/poojawa-vynar/shaft.svg"
  24382. },
  24383. allForms: true
  24384. },
  24385. spade: {
  24386. height: math.unit(0.42, "feet"),
  24387. name: "Spade",
  24388. image: {
  24389. source: "./media/characters/poojawa-vynar/spade.svg"
  24390. },
  24391. allForms: true
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Shortstack",
  24397. height: math.unit(4, "feet"),
  24398. form: "anthro"
  24399. },
  24400. {
  24401. name: "Normal",
  24402. height: math.unit(5 + 11 / 12, "feet"),
  24403. form: "anthro",
  24404. default: true
  24405. },
  24406. {
  24407. name: "Tauric",
  24408. height: math.unit(4, "meters"),
  24409. form: "taur",
  24410. default: true
  24411. },
  24412. ],
  24413. {
  24414. "anthro": {
  24415. name: "Anthro",
  24416. default: true
  24417. },
  24418. "taur": {
  24419. name: "Taur",
  24420. },
  24421. }
  24422. ))
  24423. characterMakers.push(() => makeCharacter(
  24424. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24425. {
  24426. front: {
  24427. height: math.unit(293, "meters"),
  24428. weight: math.unit(70400, "tons"),
  24429. name: "Front",
  24430. image: {
  24431. source: "./media/characters/violette/front.svg",
  24432. extra: 1227 / 1180,
  24433. bottom: 0.005
  24434. }
  24435. },
  24436. back: {
  24437. height: math.unit(293, "meters"),
  24438. weight: math.unit(70400, "tons"),
  24439. name: "Back",
  24440. image: {
  24441. source: "./media/characters/violette/back.svg",
  24442. extra: 1227 / 1180,
  24443. bottom: 0.005
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Macro",
  24450. height: math.unit(293, "meters"),
  24451. default: true
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24457. {
  24458. front: {
  24459. height: math.unit(1050, "feet"),
  24460. weight: math.unit(200000, "tons"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/alessandra/front.svg",
  24464. extra: 960 / 912,
  24465. bottom: 0.06
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Macro",
  24472. height: math.unit(1050, "feet")
  24473. },
  24474. {
  24475. name: "Macro+",
  24476. height: math.unit(900, "meters"),
  24477. default: true
  24478. },
  24479. ]
  24480. ))
  24481. characterMakers.push(() => makeCharacter(
  24482. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24483. {
  24484. front: {
  24485. height: math.unit(5, "feet"),
  24486. weight: math.unit(187, "lb"),
  24487. name: "Front",
  24488. image: {
  24489. source: "./media/characters/person/front.svg",
  24490. extra: 3087 / 2945,
  24491. bottom: 91 / 3181
  24492. }
  24493. },
  24494. },
  24495. [
  24496. {
  24497. name: "Micro",
  24498. height: math.unit(3, "inches")
  24499. },
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(5, "feet"),
  24503. default: true
  24504. },
  24505. {
  24506. name: "Macro",
  24507. height: math.unit(90, "feet")
  24508. },
  24509. {
  24510. name: "Max Size",
  24511. height: math.unit(280, "feet")
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24517. {
  24518. front: {
  24519. height: math.unit(4.5, "meters"),
  24520. weight: math.unit(3200, "lb"),
  24521. name: "Front",
  24522. image: {
  24523. source: "./media/characters/ty/front.svg",
  24524. extra: 1038 / 960,
  24525. bottom: 31.156 / 1068
  24526. }
  24527. },
  24528. back: {
  24529. height: math.unit(4.5, "meters"),
  24530. weight: math.unit(3200, "lb"),
  24531. name: "Back",
  24532. image: {
  24533. source: "./media/characters/ty/back.svg",
  24534. extra: 1044 / 966,
  24535. bottom: 7.48 / 1049
  24536. }
  24537. },
  24538. },
  24539. [
  24540. {
  24541. name: "Normal",
  24542. height: math.unit(4.5, "meters"),
  24543. default: true
  24544. },
  24545. ]
  24546. ))
  24547. characterMakers.push(() => makeCharacter(
  24548. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24549. {
  24550. front: {
  24551. height: math.unit(5 + 4 / 12, "feet"),
  24552. weight: math.unit(115, "lb"),
  24553. name: "Front",
  24554. image: {
  24555. source: "./media/characters/rocky/front.svg",
  24556. extra: 1012 / 975,
  24557. bottom: 54 / 1066
  24558. }
  24559. },
  24560. },
  24561. [
  24562. {
  24563. name: "Normal",
  24564. height: math.unit(5 + 4 / 12, "feet"),
  24565. default: true
  24566. },
  24567. ]
  24568. ))
  24569. characterMakers.push(() => makeCharacter(
  24570. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24571. {
  24572. upright: {
  24573. height: math.unit(6, "meters"),
  24574. weight: math.unit(4000, "kg"),
  24575. name: "Upright",
  24576. image: {
  24577. source: "./media/characters/ruin/upright.svg",
  24578. extra: 668 / 661,
  24579. bottom: 42 / 799.8396
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Normal",
  24586. height: math.unit(6, "meters"),
  24587. default: true
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24593. {
  24594. front: {
  24595. height: math.unit(5, "feet"),
  24596. weight: math.unit(106, "lb"),
  24597. name: "Front",
  24598. image: {
  24599. source: "./media/characters/robin/front.svg",
  24600. extra: 862 / 799,
  24601. bottom: 42.4 / 914.8856
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(5, "feet"),
  24609. default: true
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24615. {
  24616. side: {
  24617. height: math.unit(3, "feet"),
  24618. weight: math.unit(225, "lb"),
  24619. name: "Side",
  24620. image: {
  24621. source: "./media/characters/saian/side.svg",
  24622. extra: 566 / 356,
  24623. bottom: 79.7 / 643
  24624. }
  24625. },
  24626. maw: {
  24627. height: math.unit(2.85, "feet"),
  24628. name: "Maw",
  24629. image: {
  24630. source: "./media/characters/saian/maw.svg"
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Normal",
  24637. height: math.unit(3, "feet"),
  24638. default: true
  24639. },
  24640. ]
  24641. ))
  24642. characterMakers.push(() => makeCharacter(
  24643. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24644. {
  24645. side: {
  24646. height: math.unit(8, "feet"),
  24647. weight: math.unit(300, "lb"),
  24648. name: "Side",
  24649. image: {
  24650. source: "./media/characters/equus-silvermane/side.svg",
  24651. extra: 2176 / 2050,
  24652. bottom: 65.7 / 2245
  24653. }
  24654. },
  24655. front: {
  24656. height: math.unit(8, "feet"),
  24657. weight: math.unit(300, "lb"),
  24658. name: "Front",
  24659. image: {
  24660. source: "./media/characters/equus-silvermane/front.svg",
  24661. extra: 4633 / 4400,
  24662. bottom: 71.3 / 4706.915
  24663. }
  24664. },
  24665. sideStepping: {
  24666. height: math.unit(8, "feet"),
  24667. weight: math.unit(300, "lb"),
  24668. name: "Side (Stepping)",
  24669. image: {
  24670. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24671. extra: 1968 / 1860,
  24672. bottom: 16.4 / 1989
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(8, "feet")
  24680. },
  24681. {
  24682. name: "Minimacro",
  24683. height: math.unit(75, "feet"),
  24684. default: true
  24685. },
  24686. {
  24687. name: "Macro",
  24688. height: math.unit(150, "feet")
  24689. },
  24690. {
  24691. name: "Macro+",
  24692. height: math.unit(1000, "feet")
  24693. },
  24694. {
  24695. name: "Megamacro",
  24696. height: math.unit(1, "mile")
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24702. {
  24703. side: {
  24704. height: math.unit(20, "feet"),
  24705. weight: math.unit(30000, "kg"),
  24706. name: "Side",
  24707. image: {
  24708. source: "./media/characters/windar/side.svg",
  24709. extra: 1491 / 1248,
  24710. bottom: 82.56 / 1568
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(20, "feet"),
  24718. default: true
  24719. },
  24720. ]
  24721. ))
  24722. characterMakers.push(() => makeCharacter(
  24723. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24724. {
  24725. side: {
  24726. height: math.unit(15.66, "feet"),
  24727. weight: math.unit(150, "lb"),
  24728. name: "Side",
  24729. image: {
  24730. source: "./media/characters/melody/side.svg",
  24731. extra: 1097 / 944,
  24732. bottom: 11.8 / 1109
  24733. }
  24734. },
  24735. sideOutfit: {
  24736. height: math.unit(15.66, "feet"),
  24737. weight: math.unit(150, "lb"),
  24738. name: "Side (Outfit)",
  24739. image: {
  24740. source: "./media/characters/melody/side-outfit.svg",
  24741. extra: 1097 / 944,
  24742. bottom: 11.8 / 1109
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Normal",
  24749. height: math.unit(15.66, "feet"),
  24750. default: true
  24751. },
  24752. ]
  24753. ))
  24754. characterMakers.push(() => makeCharacter(
  24755. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24756. {
  24757. armoredFront: {
  24758. height: math.unit(8, "feet"),
  24759. weight: math.unit(325, "lb"),
  24760. name: "Front",
  24761. image: {
  24762. source: "./media/characters/windera/armored-front.svg",
  24763. extra: 1830/1598,
  24764. bottom: 151/1981
  24765. },
  24766. form: "armored",
  24767. default: true
  24768. },
  24769. macroFront: {
  24770. height: math.unit(70, "feet"),
  24771. weight: math.unit(315453, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/windera/macro-front.svg",
  24775. extra: 963/883,
  24776. bottom: 23/986
  24777. },
  24778. form: "macro",
  24779. default: true
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Normal",
  24785. height: math.unit(8, "feet"),
  24786. default: true,
  24787. form: "armored"
  24788. },
  24789. {
  24790. name: "Normal",
  24791. height: math.unit(70, "feet"),
  24792. default: true,
  24793. form: "macro"
  24794. },
  24795. ],
  24796. {
  24797. "armored": {
  24798. name: "Armored",
  24799. default: true
  24800. },
  24801. "macro": {
  24802. name: "Macro",
  24803. },
  24804. }
  24805. ))
  24806. characterMakers.push(() => makeCharacter(
  24807. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24808. {
  24809. front: {
  24810. height: math.unit(28.75, "feet"),
  24811. weight: math.unit(2000, "kg"),
  24812. name: "Front",
  24813. image: {
  24814. source: "./media/characters/sonear/front.svg",
  24815. extra: 1041.1 / 964.9,
  24816. bottom: 53.7 / 1096.6
  24817. }
  24818. },
  24819. },
  24820. [
  24821. {
  24822. name: "Normal",
  24823. height: math.unit(28.75, "feet"),
  24824. default: true
  24825. },
  24826. ]
  24827. ))
  24828. characterMakers.push(() => makeCharacter(
  24829. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24830. {
  24831. side: {
  24832. height: math.unit(25.5, "feet"),
  24833. weight: math.unit(23000, "kg"),
  24834. name: "Side",
  24835. image: {
  24836. source: "./media/characters/kanara/side.svg"
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Normal",
  24843. height: math.unit(25.5, "feet"),
  24844. default: true
  24845. },
  24846. ]
  24847. ))
  24848. characterMakers.push(() => makeCharacter(
  24849. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24850. {
  24851. side: {
  24852. height: math.unit(10, "feet"),
  24853. weight: math.unit(1000, "kg"),
  24854. name: "Side",
  24855. image: {
  24856. source: "./media/characters/ereus/side.svg",
  24857. extra: 1157 / 959,
  24858. bottom: 153 / 1312.5
  24859. }
  24860. },
  24861. },
  24862. [
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(10, "feet"),
  24866. default: true
  24867. },
  24868. ]
  24869. ))
  24870. characterMakers.push(() => makeCharacter(
  24871. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24872. {
  24873. side: {
  24874. height: math.unit(4.5, "feet"),
  24875. weight: math.unit(500, "lb"),
  24876. name: "Side",
  24877. image: {
  24878. source: "./media/characters/e-ter/side.svg",
  24879. extra: 1550 / 1248,
  24880. bottom: 146 / 1694
  24881. }
  24882. },
  24883. },
  24884. [
  24885. {
  24886. name: "Normal",
  24887. height: math.unit(4.5, "feet"),
  24888. default: true
  24889. },
  24890. ]
  24891. ))
  24892. characterMakers.push(() => makeCharacter(
  24893. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24894. {
  24895. side: {
  24896. height: math.unit(9.7, "feet"),
  24897. weight: math.unit(4000, "kg"),
  24898. name: "Side",
  24899. image: {
  24900. source: "./media/characters/yamie/side.svg"
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "Normal",
  24907. height: math.unit(9.7, "feet"),
  24908. default: true
  24909. },
  24910. ]
  24911. ))
  24912. characterMakers.push(() => makeCharacter(
  24913. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24914. {
  24915. front: {
  24916. height: math.unit(50, "feet"),
  24917. weight: math.unit(50000, "kg"),
  24918. name: "Front",
  24919. image: {
  24920. source: "./media/characters/anders/front.svg",
  24921. extra: 570 / 539,
  24922. bottom: 14.7 / 586.7
  24923. }
  24924. },
  24925. },
  24926. [
  24927. {
  24928. name: "Large",
  24929. height: math.unit(50, "feet")
  24930. },
  24931. {
  24932. name: "Macro",
  24933. height: math.unit(2000, "feet"),
  24934. default: true
  24935. },
  24936. {
  24937. name: "Megamacro",
  24938. height: math.unit(12, "miles")
  24939. },
  24940. ]
  24941. ))
  24942. characterMakers.push(() => makeCharacter(
  24943. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24944. {
  24945. front: {
  24946. height: math.unit(7 + 2 / 12, "feet"),
  24947. weight: math.unit(300, "lb"),
  24948. name: "Front",
  24949. image: {
  24950. source: "./media/characters/reban/front.svg",
  24951. extra: 1287/1212,
  24952. bottom: 148/1435
  24953. }
  24954. },
  24955. head: {
  24956. height: math.unit(1.95, "feet"),
  24957. name: "Head",
  24958. image: {
  24959. source: "./media/characters/reban/head.svg"
  24960. }
  24961. },
  24962. maw: {
  24963. height: math.unit(0.95, "feet"),
  24964. name: "Maw",
  24965. image: {
  24966. source: "./media/characters/reban/maw.svg"
  24967. }
  24968. },
  24969. foot: {
  24970. height: math.unit(1.65, "feet"),
  24971. name: "Foot",
  24972. image: {
  24973. source: "./media/characters/reban/foot.svg"
  24974. }
  24975. },
  24976. dick: {
  24977. height: math.unit(7 / 5, "feet"),
  24978. name: "Dick",
  24979. image: {
  24980. source: "./media/characters/reban/dick.svg"
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Natural Height",
  24987. height: math.unit(7 + 2 / 12, "feet")
  24988. },
  24989. {
  24990. name: "Macro",
  24991. height: math.unit(500, "feet"),
  24992. default: true
  24993. },
  24994. {
  24995. name: "Canon Height",
  24996. height: math.unit(50, "AU")
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(6, "feet"),
  25005. weight: math.unit(150, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/terrance-keayes/front.svg",
  25009. extra: 1.005,
  25010. bottom: 151 / 1615
  25011. }
  25012. },
  25013. side: {
  25014. height: math.unit(6, "feet"),
  25015. weight: math.unit(150, "lb"),
  25016. name: "Side",
  25017. image: {
  25018. source: "./media/characters/terrance-keayes/side.svg",
  25019. extra: 1.005,
  25020. bottom: 129.4 / 1544
  25021. }
  25022. },
  25023. back: {
  25024. height: math.unit(6, "feet"),
  25025. weight: math.unit(150, "lb"),
  25026. name: "Back",
  25027. image: {
  25028. source: "./media/characters/terrance-keayes/back.svg",
  25029. extra: 1.005,
  25030. bottom: 58.4 / 1557.3
  25031. }
  25032. },
  25033. dick: {
  25034. height: math.unit(6 * 0.208, "feet"),
  25035. name: "Dick",
  25036. image: {
  25037. source: "./media/characters/terrance-keayes/dick.svg"
  25038. }
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Canon Height",
  25044. height: math.unit(35, "miles"),
  25045. default: true
  25046. },
  25047. ]
  25048. ))
  25049. characterMakers.push(() => makeCharacter(
  25050. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25051. {
  25052. front: {
  25053. height: math.unit(6, "feet"),
  25054. weight: math.unit(150, "lb"),
  25055. name: "Front",
  25056. image: {
  25057. source: "./media/characters/ofelia/front.svg",
  25058. extra: 1130/1117,
  25059. bottom: 91/1221
  25060. }
  25061. },
  25062. back: {
  25063. height: math.unit(6, "feet"),
  25064. weight: math.unit(150, "lb"),
  25065. name: "Back",
  25066. image: {
  25067. source: "./media/characters/ofelia/back.svg",
  25068. extra: 1172/1159,
  25069. bottom: 28/1200
  25070. }
  25071. },
  25072. maw: {
  25073. height: math.unit(1, "feet"),
  25074. name: "Maw",
  25075. image: {
  25076. source: "./media/characters/ofelia/maw.svg"
  25077. }
  25078. },
  25079. foot: {
  25080. height: math.unit(1.949, "feet"),
  25081. name: "Foot",
  25082. image: {
  25083. source: "./media/characters/ofelia/foot.svg"
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Canon Height",
  25090. height: math.unit(2000, "miles"),
  25091. default: true
  25092. },
  25093. ]
  25094. ))
  25095. characterMakers.push(() => makeCharacter(
  25096. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25097. {
  25098. front: {
  25099. height: math.unit(6, "feet"),
  25100. weight: math.unit(150, "lb"),
  25101. name: "Front",
  25102. image: {
  25103. source: "./media/characters/samuel/front.svg",
  25104. extra: 265 / 258,
  25105. bottom: 2 / 266.1566
  25106. }
  25107. },
  25108. },
  25109. [
  25110. {
  25111. name: "Macro",
  25112. height: math.unit(100, "feet"),
  25113. default: true
  25114. },
  25115. {
  25116. name: "Full Size",
  25117. height: math.unit(1000, "miles")
  25118. },
  25119. ]
  25120. ))
  25121. characterMakers.push(() => makeCharacter(
  25122. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25123. {
  25124. front: {
  25125. height: math.unit(6, "feet"),
  25126. weight: math.unit(300, "lb"),
  25127. name: "Front",
  25128. image: {
  25129. source: "./media/characters/beishir-kiel/front.svg",
  25130. extra: 569 / 547,
  25131. bottom: 41.9 / 609
  25132. }
  25133. },
  25134. maw: {
  25135. height: math.unit(6 * 0.202, "feet"),
  25136. name: "Maw",
  25137. image: {
  25138. source: "./media/characters/beishir-kiel/maw.svg"
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Macro",
  25145. height: math.unit(300, "feet"),
  25146. default: true
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25152. {
  25153. front: {
  25154. height: math.unit(5 + 7/12, "feet"),
  25155. weight: math.unit(120, "lb"),
  25156. name: "Front",
  25157. image: {
  25158. source: "./media/characters/logan-grey/front.svg",
  25159. extra: 1836/1738,
  25160. bottom: 108/1944
  25161. }
  25162. },
  25163. back: {
  25164. height: math.unit(5 + 7/12, "feet"),
  25165. weight: math.unit(120, "lb"),
  25166. name: "Back",
  25167. image: {
  25168. source: "./media/characters/logan-grey/back.svg",
  25169. extra: 1880/1794,
  25170. bottom: 24/1904
  25171. }
  25172. },
  25173. frontSfw: {
  25174. height: math.unit(5 + 7/12, "feet"),
  25175. weight: math.unit(120, "lb"),
  25176. name: "Front (SFW)",
  25177. image: {
  25178. source: "./media/characters/logan-grey/front-sfw.svg",
  25179. extra: 1836/1738,
  25180. bottom: 108/1944
  25181. }
  25182. },
  25183. backSfw: {
  25184. height: math.unit(5 + 7/12, "feet"),
  25185. weight: math.unit(120, "lb"),
  25186. name: "Back (SFW)",
  25187. image: {
  25188. source: "./media/characters/logan-grey/back-sfw.svg",
  25189. extra: 1880/1794,
  25190. bottom: 24/1904
  25191. }
  25192. },
  25193. hands: {
  25194. height: math.unit(0.84, "feet"),
  25195. name: "Hands",
  25196. image: {
  25197. source: "./media/characters/logan-grey/hands.svg"
  25198. }
  25199. },
  25200. paws: {
  25201. height: math.unit(0.72, "feet"),
  25202. name: "Paws",
  25203. image: {
  25204. source: "./media/characters/logan-grey/paws.svg"
  25205. }
  25206. },
  25207. cock: {
  25208. height: math.unit(1.45, "feet"),
  25209. name: "Cock",
  25210. image: {
  25211. source: "./media/characters/logan-grey/cock.svg"
  25212. }
  25213. },
  25214. cockAlt: {
  25215. height: math.unit(1.437, "feet"),
  25216. name: "Cock (alt)",
  25217. image: {
  25218. source: "./media/characters/logan-grey/cock-alt.svg"
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(5 + 8 / 12, "feet")
  25226. },
  25227. {
  25228. name: "The 500 Foot Femboy",
  25229. height: math.unit(500, "feet"),
  25230. default: true
  25231. },
  25232. {
  25233. name: "Megmacro",
  25234. height: math.unit(20, "miles")
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25240. {
  25241. front: {
  25242. height: math.unit(8 + 2 / 12, "feet"),
  25243. weight: math.unit(275, "lb"),
  25244. name: "Front",
  25245. image: {
  25246. source: "./media/characters/draganta/front.svg",
  25247. extra: 1177 / 1135,
  25248. bottom: 33.46 / 1212.1
  25249. }
  25250. },
  25251. },
  25252. [
  25253. {
  25254. name: "Normal",
  25255. height: math.unit(8 + 6 / 12, "feet"),
  25256. default: true
  25257. },
  25258. {
  25259. name: "Macro",
  25260. height: math.unit(150, "feet")
  25261. },
  25262. {
  25263. name: "Megamacro",
  25264. height: math.unit(1000, "miles")
  25265. },
  25266. ]
  25267. ))
  25268. characterMakers.push(() => makeCharacter(
  25269. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25270. {
  25271. front: {
  25272. height: math.unit(1.72, "m"),
  25273. weight: math.unit(80, "lb"),
  25274. name: "Front",
  25275. image: {
  25276. source: "./media/characters/voski/front.svg",
  25277. extra: 2076.22 / 2022.4,
  25278. bottom: 102.7 / 2177.3866
  25279. }
  25280. },
  25281. frontFlaccid: {
  25282. height: math.unit(1.72, "m"),
  25283. weight: math.unit(80, "lb"),
  25284. name: "Front (Flaccid)",
  25285. image: {
  25286. source: "./media/characters/voski/front-flaccid.svg",
  25287. extra: 2076.22 / 2022.4,
  25288. bottom: 102.7 / 2177.3866
  25289. }
  25290. },
  25291. frontErect: {
  25292. height: math.unit(1.72, "m"),
  25293. weight: math.unit(80, "lb"),
  25294. name: "Front (Erect)",
  25295. image: {
  25296. source: "./media/characters/voski/front-erect.svg",
  25297. extra: 2076.22 / 2022.4,
  25298. bottom: 102.7 / 2177.3866
  25299. }
  25300. },
  25301. back: {
  25302. height: math.unit(1.72, "m"),
  25303. weight: math.unit(80, "lb"),
  25304. name: "Back",
  25305. image: {
  25306. source: "./media/characters/voski/back.svg",
  25307. extra: 2104 / 2051,
  25308. bottom: 10.45 / 2113.63
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Normal",
  25315. height: math.unit(1.72, "m")
  25316. },
  25317. {
  25318. name: "Macro",
  25319. height: math.unit(55, "m"),
  25320. default: true
  25321. },
  25322. {
  25323. name: "Macro+",
  25324. height: math.unit(300, "m")
  25325. },
  25326. {
  25327. name: "Macro++",
  25328. height: math.unit(700, "m")
  25329. },
  25330. {
  25331. name: "Macro+++",
  25332. height: math.unit(4500, "m")
  25333. },
  25334. {
  25335. name: "Macro++++",
  25336. height: math.unit(45, "km")
  25337. },
  25338. {
  25339. name: "Macro+++++",
  25340. height: math.unit(1220, "km")
  25341. },
  25342. ]
  25343. ))
  25344. characterMakers.push(() => makeCharacter(
  25345. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25346. {
  25347. front: {
  25348. height: math.unit(2.3, "m"),
  25349. weight: math.unit(304, "kg"),
  25350. name: "Front",
  25351. image: {
  25352. source: "./media/characters/icowom-lee/front.svg",
  25353. extra: 985 / 955,
  25354. bottom: 25.4 / 1012
  25355. }
  25356. },
  25357. fronttentacles: {
  25358. height: math.unit(2.3, "m"),
  25359. weight: math.unit(304, "kg"),
  25360. name: "Front-tentacles",
  25361. image: {
  25362. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25363. extra: 985 / 955,
  25364. bottom: 25.4 / 1012
  25365. }
  25366. },
  25367. back: {
  25368. height: math.unit(2.3, "m"),
  25369. weight: math.unit(304, "kg"),
  25370. name: "Back",
  25371. image: {
  25372. source: "./media/characters/icowom-lee/back.svg",
  25373. extra: 975 / 954,
  25374. bottom: 9.5 / 985
  25375. }
  25376. },
  25377. backtentacles: {
  25378. height: math.unit(2.3, "m"),
  25379. weight: math.unit(304, "kg"),
  25380. name: "Back-tentacles",
  25381. image: {
  25382. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25383. extra: 975 / 954,
  25384. bottom: 9.5 / 985
  25385. }
  25386. },
  25387. frontDressed: {
  25388. height: math.unit(2.3, "m"),
  25389. weight: math.unit(304, "kg"),
  25390. name: "Front (Dressed)",
  25391. image: {
  25392. source: "./media/characters/icowom-lee/front-dressed.svg",
  25393. extra: 3076 / 2933,
  25394. bottom: 51.4 / 3125.1889
  25395. }
  25396. },
  25397. rump: {
  25398. height: math.unit(0.776, "meters"),
  25399. name: "Rump",
  25400. image: {
  25401. source: "./media/characters/icowom-lee/rump.svg"
  25402. }
  25403. },
  25404. genitals: {
  25405. height: math.unit(0.78, "meters"),
  25406. name: "Genitals",
  25407. image: {
  25408. source: "./media/characters/icowom-lee/genitals.svg"
  25409. }
  25410. },
  25411. },
  25412. [
  25413. {
  25414. name: "Normal",
  25415. height: math.unit(2.3, "meters"),
  25416. default: true
  25417. },
  25418. {
  25419. name: "Macro",
  25420. height: math.unit(94, "meters"),
  25421. default: true
  25422. },
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25427. {
  25428. front: {
  25429. height: math.unit(22, "meters"),
  25430. weight: math.unit(21000, "kg"),
  25431. name: "Front",
  25432. image: {
  25433. source: "./media/characters/shock-diamond/front.svg",
  25434. extra: 2204 / 2053,
  25435. bottom: 65 / 2239.47
  25436. }
  25437. },
  25438. frontNude: {
  25439. height: math.unit(22, "meters"),
  25440. weight: math.unit(21000, "kg"),
  25441. name: "Front (Nude)",
  25442. image: {
  25443. source: "./media/characters/shock-diamond/front-nude.svg",
  25444. extra: 2514 / 2285,
  25445. bottom: 13 / 2527.56
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Normal",
  25452. height: math.unit(3, "meters")
  25453. },
  25454. {
  25455. name: "Macro",
  25456. height: math.unit(22, "meters"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(5 + 4/12, "feet"),
  25466. weight: math.unit(125, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/rory/front.svg",
  25470. extra: 1790/1681,
  25471. bottom: 66/1856
  25472. },
  25473. form: "normal",
  25474. default: true
  25475. },
  25476. back: {
  25477. height: math.unit(5 + 4/12, "feet"),
  25478. weight: math.unit(125, "lb"),
  25479. name: "Back",
  25480. image: {
  25481. source: "./media/characters/rory/back.svg",
  25482. extra: 1805/1690,
  25483. bottom: 56/1861
  25484. },
  25485. form: "normal"
  25486. },
  25487. frontDressed: {
  25488. height: math.unit(5 + 4/12, "feet"),
  25489. weight: math.unit(125, "lb"),
  25490. name: "Front (Dressed)",
  25491. image: {
  25492. source: "./media/characters/rory/front-dressed.svg",
  25493. extra: 1790/1681,
  25494. bottom: 66/1856
  25495. },
  25496. form: "normal"
  25497. },
  25498. backDressed: {
  25499. height: math.unit(5 + 4/12, "feet"),
  25500. weight: math.unit(125, "lb"),
  25501. name: "Back (Dressed)",
  25502. image: {
  25503. source: "./media/characters/rory/back-dressed.svg",
  25504. extra: 1805/1690,
  25505. bottom: 56/1861
  25506. },
  25507. form: "normal"
  25508. },
  25509. frontNsfw: {
  25510. height: math.unit(5 + 4/12, "feet"),
  25511. weight: math.unit(125, "lb"),
  25512. name: "Front (NSFW)",
  25513. image: {
  25514. source: "./media/characters/rory/front-nsfw.svg",
  25515. extra: 1790/1681,
  25516. bottom: 66/1856
  25517. },
  25518. form: "normal"
  25519. },
  25520. backNsfw: {
  25521. height: math.unit(5 + 4/12, "feet"),
  25522. weight: math.unit(125, "lb"),
  25523. name: "Back (NSFW)",
  25524. image: {
  25525. source: "./media/characters/rory/back-nsfw.svg",
  25526. extra: 1805/1690,
  25527. bottom: 56/1861
  25528. },
  25529. form: "normal"
  25530. },
  25531. dick: {
  25532. height: math.unit(0.8, "feet"),
  25533. name: "Dick",
  25534. image: {
  25535. source: "./media/characters/rory/dick.svg"
  25536. },
  25537. form: "normal"
  25538. },
  25539. thicc_front: {
  25540. height: math.unit(5 + 4/12, "feet"),
  25541. weight: math.unit(195, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/rory/thicc-front.svg",
  25545. extra: 1220/1100,
  25546. bottom: 103/1323
  25547. },
  25548. form: "thicc",
  25549. default: true
  25550. },
  25551. thicc_back: {
  25552. height: math.unit(5 + 4/12, "feet"),
  25553. weight: math.unit(195, "lb"),
  25554. name: "Back",
  25555. image: {
  25556. source: "./media/characters/rory/thicc-back.svg",
  25557. extra: 1166/1086,
  25558. bottom: 35/1201
  25559. },
  25560. form: "thicc"
  25561. },
  25562. },
  25563. [
  25564. {
  25565. name: "Micro",
  25566. height: math.unit(3, "inches"),
  25567. allForms: true
  25568. },
  25569. {
  25570. name: "Normal",
  25571. height: math.unit(5 + 4/12, "feet"),
  25572. allForms: true,
  25573. default: true
  25574. },
  25575. {
  25576. name: "Macro",
  25577. height: math.unit(90, "feet"),
  25578. allForms: true
  25579. },
  25580. {
  25581. name: "Supercharged",
  25582. height: math.unit(270, "feet"),
  25583. allForms: true
  25584. },
  25585. ],
  25586. {
  25587. "normal": {
  25588. name: "Normal",
  25589. default: true
  25590. },
  25591. "thicc": {
  25592. name: "Thicc",
  25593. },
  25594. }
  25595. ))
  25596. characterMakers.push(() => makeCharacter(
  25597. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25598. {
  25599. front: {
  25600. height: math.unit(5 + 9 / 12, "feet"),
  25601. weight: math.unit(190, "lb"),
  25602. name: "Front",
  25603. image: {
  25604. source: "./media/characters/sprisk/front.svg",
  25605. extra: 1225 / 1180,
  25606. bottom: 42.7 / 1266.4
  25607. }
  25608. },
  25609. frontNsfw: {
  25610. height: math.unit(5 + 9 / 12, "feet"),
  25611. weight: math.unit(190, "lb"),
  25612. name: "Front (NSFW)",
  25613. image: {
  25614. source: "./media/characters/sprisk/front-nsfw.svg",
  25615. extra: 1225 / 1180,
  25616. bottom: 42.7 / 1266.4
  25617. }
  25618. },
  25619. back: {
  25620. height: math.unit(5 + 9 / 12, "feet"),
  25621. weight: math.unit(190, "lb"),
  25622. name: "Back",
  25623. image: {
  25624. source: "./media/characters/sprisk/back.svg",
  25625. extra: 1247 / 1200,
  25626. bottom: 5.6 / 1253.04
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Tiny",
  25633. height: math.unit(2, "inches")
  25634. },
  25635. {
  25636. name: "Normal",
  25637. height: math.unit(5 + 9 / 12, "feet"),
  25638. default: true
  25639. },
  25640. {
  25641. name: "Mini Macro",
  25642. height: math.unit(18, "feet")
  25643. },
  25644. {
  25645. name: "Macro",
  25646. height: math.unit(100, "feet")
  25647. },
  25648. {
  25649. name: "MACRO",
  25650. height: math.unit(50, "miles")
  25651. },
  25652. {
  25653. name: "M A C R O",
  25654. height: math.unit(300, "miles")
  25655. },
  25656. ]
  25657. ))
  25658. characterMakers.push(() => makeCharacter(
  25659. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25660. {
  25661. side: {
  25662. height: math.unit(15.6, "meters"),
  25663. weight: math.unit(700000, "kg"),
  25664. name: "Side",
  25665. image: {
  25666. source: "./media/characters/bunsen/side.svg",
  25667. extra: 1644 / 358
  25668. }
  25669. },
  25670. foot: {
  25671. height: math.unit(1.611 * 1644 / 358, "meter"),
  25672. name: "Foot",
  25673. image: {
  25674. source: "./media/characters/bunsen/foot.svg"
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Small",
  25681. height: math.unit(10, "feet")
  25682. },
  25683. {
  25684. name: "Normal",
  25685. height: math.unit(15.6, "meters"),
  25686. default: true
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25692. {
  25693. front: {
  25694. height: math.unit(4 + 11 / 12, "feet"),
  25695. weight: math.unit(140, "lb"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/sesh/front.svg",
  25699. extra: 3420 / 3231,
  25700. bottom: 72 / 3949.5
  25701. }
  25702. },
  25703. },
  25704. [
  25705. {
  25706. name: "Normal",
  25707. height: math.unit(4 + 11 / 12, "feet")
  25708. },
  25709. {
  25710. name: "Grown",
  25711. height: math.unit(15, "feet"),
  25712. default: true
  25713. },
  25714. {
  25715. name: "Macro",
  25716. height: math.unit(1500, "feet")
  25717. },
  25718. {
  25719. name: "Megamacro",
  25720. height: math.unit(30, "miles")
  25721. },
  25722. {
  25723. name: "Continental",
  25724. height: math.unit(3000, "miles")
  25725. },
  25726. {
  25727. name: "Gravity Mass",
  25728. height: math.unit(300000, "miles")
  25729. },
  25730. {
  25731. name: "Planet Buster",
  25732. height: math.unit(30000000, "miles")
  25733. },
  25734. {
  25735. name: "Big",
  25736. height: math.unit(3000000000, "miles")
  25737. },
  25738. ]
  25739. ))
  25740. characterMakers.push(() => makeCharacter(
  25741. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25742. {
  25743. front: {
  25744. height: math.unit(9, "feet"),
  25745. weight: math.unit(350, "lb"),
  25746. name: "Front",
  25747. image: {
  25748. source: "./media/characters/pepper/front.svg",
  25749. extra: 1448 / 1312,
  25750. bottom: 9.4 / 1457.88
  25751. }
  25752. },
  25753. back: {
  25754. height: math.unit(9, "feet"),
  25755. weight: math.unit(350, "lb"),
  25756. name: "Back",
  25757. image: {
  25758. source: "./media/characters/pepper/back.svg",
  25759. extra: 1423 / 1300,
  25760. bottom: 4.6 / 1429
  25761. }
  25762. },
  25763. maw: {
  25764. height: math.unit(0.932, "feet"),
  25765. name: "Maw",
  25766. image: {
  25767. source: "./media/characters/pepper/maw.svg"
  25768. }
  25769. },
  25770. },
  25771. [
  25772. {
  25773. name: "Normal",
  25774. height: math.unit(9, "feet"),
  25775. default: true
  25776. },
  25777. ]
  25778. ))
  25779. characterMakers.push(() => makeCharacter(
  25780. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25781. {
  25782. front: {
  25783. height: math.unit(6, "feet"),
  25784. weight: math.unit(150, "lb"),
  25785. name: "Front",
  25786. image: {
  25787. source: "./media/characters/maelstrom/front.svg",
  25788. extra: 2100 / 1883,
  25789. bottom: 94 / 2196.7
  25790. }
  25791. },
  25792. },
  25793. [
  25794. {
  25795. name: "Less Kaiju",
  25796. height: math.unit(200, "feet")
  25797. },
  25798. {
  25799. name: "Kaiju",
  25800. height: math.unit(400, "feet"),
  25801. default: true
  25802. },
  25803. {
  25804. name: "Kaiju-er",
  25805. height: math.unit(600, "feet")
  25806. },
  25807. ]
  25808. ))
  25809. characterMakers.push(() => makeCharacter(
  25810. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25811. {
  25812. front: {
  25813. height: math.unit(6 + 5 / 12, "feet"),
  25814. weight: math.unit(180, "lb"),
  25815. name: "Front",
  25816. image: {
  25817. source: "./media/characters/lexir/front.svg",
  25818. extra: 180 / 172,
  25819. bottom: 12 / 192
  25820. }
  25821. },
  25822. back: {
  25823. height: math.unit(6 + 5 / 12, "feet"),
  25824. weight: math.unit(180, "lb"),
  25825. name: "Back",
  25826. image: {
  25827. source: "./media/characters/lexir/back.svg",
  25828. extra: 1273/1201,
  25829. bottom: 39/1312
  25830. }
  25831. },
  25832. },
  25833. [
  25834. {
  25835. name: "Very Smal",
  25836. height: math.unit(1, "nm")
  25837. },
  25838. {
  25839. name: "Normal",
  25840. height: math.unit(6 + 5 / 12, "feet"),
  25841. default: true
  25842. },
  25843. {
  25844. name: "Macro",
  25845. height: math.unit(1, "mile")
  25846. },
  25847. {
  25848. name: "Megamacro",
  25849. height: math.unit(50, "miles")
  25850. },
  25851. ]
  25852. ))
  25853. characterMakers.push(() => makeCharacter(
  25854. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25855. {
  25856. front: {
  25857. height: math.unit(1.5, "meters"),
  25858. weight: math.unit(100, "lb"),
  25859. name: "Front",
  25860. image: {
  25861. source: "./media/characters/maksio/front.svg",
  25862. extra: 1549 / 1531,
  25863. bottom: 123.7 / 1674.5429
  25864. }
  25865. },
  25866. back: {
  25867. height: math.unit(1.5, "meters"),
  25868. weight: math.unit(100, "lb"),
  25869. name: "Back",
  25870. image: {
  25871. source: "./media/characters/maksio/back.svg",
  25872. extra: 1541 / 1509,
  25873. bottom: 97 / 1639
  25874. }
  25875. },
  25876. hand: {
  25877. height: math.unit(0.621, "feet"),
  25878. name: "Hand",
  25879. image: {
  25880. source: "./media/characters/maksio/hand.svg"
  25881. }
  25882. },
  25883. foot: {
  25884. height: math.unit(1.611, "feet"),
  25885. name: "Foot",
  25886. image: {
  25887. source: "./media/characters/maksio/foot.svg"
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Shrunken",
  25894. height: math.unit(10, "cm")
  25895. },
  25896. {
  25897. name: "Normal",
  25898. height: math.unit(150, "cm"),
  25899. default: true
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(100, "feet"),
  25908. name: "Front",
  25909. image: {
  25910. source: "./media/characters/erza-bear/front.svg",
  25911. extra: 2449 / 2390,
  25912. bottom: 46 / 2494
  25913. }
  25914. },
  25915. back: {
  25916. height: math.unit(100, "feet"),
  25917. name: "Back",
  25918. image: {
  25919. source: "./media/characters/erza-bear/back.svg",
  25920. extra: 2489 / 2430,
  25921. bottom: 85.4 / 2480
  25922. }
  25923. },
  25924. tail: {
  25925. height: math.unit(42, "feet"),
  25926. name: "Tail",
  25927. image: {
  25928. source: "./media/characters/erza-bear/tail.svg"
  25929. }
  25930. },
  25931. tongue: {
  25932. height: math.unit(8, "feet"),
  25933. name: "Tongue",
  25934. image: {
  25935. source: "./media/characters/erza-bear/tongue.svg"
  25936. }
  25937. },
  25938. dick: {
  25939. height: math.unit(10.5, "feet"),
  25940. name: "Dick",
  25941. image: {
  25942. source: "./media/characters/erza-bear/dick.svg"
  25943. }
  25944. },
  25945. dickVertical: {
  25946. height: math.unit(16.9, "feet"),
  25947. name: "Dick (Vertical)",
  25948. image: {
  25949. source: "./media/characters/erza-bear/dick-vertical.svg"
  25950. }
  25951. },
  25952. },
  25953. [
  25954. {
  25955. name: "Macro",
  25956. height: math.unit(100, "feet"),
  25957. default: true
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25963. {
  25964. front: {
  25965. height: math.unit(172, "cm"),
  25966. weight: math.unit(73, "kg"),
  25967. name: "Front",
  25968. image: {
  25969. source: "./media/characters/violet-flor/front.svg",
  25970. extra: 1474/1379,
  25971. bottom: 113/1587
  25972. }
  25973. },
  25974. back: {
  25975. height: math.unit(180, "cm"),
  25976. weight: math.unit(73, "kg"),
  25977. name: "Back",
  25978. image: {
  25979. source: "./media/characters/violet-flor/back.svg",
  25980. extra: 1660/1567,
  25981. bottom: 49/1709
  25982. }
  25983. },
  25984. },
  25985. [
  25986. {
  25987. name: "Normal",
  25988. height: math.unit(172, "cm"),
  25989. default: true
  25990. },
  25991. ]
  25992. ))
  25993. characterMakers.push(() => makeCharacter(
  25994. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25995. {
  25996. front: {
  25997. height: math.unit(6, "feet"),
  25998. weight: math.unit(220, "lb"),
  25999. name: "Front",
  26000. image: {
  26001. source: "./media/characters/lynn-rhea/front.svg",
  26002. extra: 310 / 273
  26003. }
  26004. },
  26005. back: {
  26006. height: math.unit(6, "feet"),
  26007. weight: math.unit(220, "lb"),
  26008. name: "Back",
  26009. image: {
  26010. source: "./media/characters/lynn-rhea/back.svg",
  26011. extra: 310 / 273
  26012. }
  26013. },
  26014. dicks: {
  26015. height: math.unit(0.9, "feet"),
  26016. name: "Dicks",
  26017. image: {
  26018. source: "./media/characters/lynn-rhea/dicks.svg"
  26019. }
  26020. },
  26021. slit: {
  26022. height: math.unit(0.4, "feet"),
  26023. name: "Slit",
  26024. image: {
  26025. source: "./media/characters/lynn-rhea/slit.svg"
  26026. }
  26027. },
  26028. },
  26029. [
  26030. {
  26031. name: "Micro",
  26032. height: math.unit(1, "inch")
  26033. },
  26034. {
  26035. name: "Macro",
  26036. height: math.unit(60, "feet"),
  26037. default: true
  26038. },
  26039. {
  26040. name: "Megamacro",
  26041. height: math.unit(2, "miles")
  26042. },
  26043. {
  26044. name: "Gigamacro",
  26045. height: math.unit(3, "earths")
  26046. },
  26047. {
  26048. name: "Galactic",
  26049. height: math.unit(0.8, "galaxies")
  26050. },
  26051. ]
  26052. ))
  26053. characterMakers.push(() => makeCharacter(
  26054. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26055. {
  26056. front: {
  26057. height: math.unit(1600, "feet"),
  26058. weight: math.unit(85758785169, "kg"),
  26059. name: "Front",
  26060. image: {
  26061. source: "./media/characters/valathos/front.svg",
  26062. extra: 1451 / 1339
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Macro",
  26069. height: math.unit(1600, "feet"),
  26070. default: true
  26071. },
  26072. ]
  26073. ))
  26074. characterMakers.push(() => makeCharacter(
  26075. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26076. {
  26077. front: {
  26078. height: math.unit(7 + 5 / 12, "feet"),
  26079. weight: math.unit(300, "lb"),
  26080. name: "Front",
  26081. image: {
  26082. source: "./media/characters/azula/front.svg",
  26083. extra: 3208 / 2880,
  26084. bottom: 80.2 / 3277
  26085. }
  26086. },
  26087. back: {
  26088. height: math.unit(7 + 5 / 12, "feet"),
  26089. weight: math.unit(300, "lb"),
  26090. name: "Back",
  26091. image: {
  26092. source: "./media/characters/azula/back.svg",
  26093. extra: 3169 / 2822,
  26094. bottom: 150.6 / 3321
  26095. }
  26096. },
  26097. },
  26098. [
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(7 + 5 / 12, "feet"),
  26102. default: true
  26103. },
  26104. {
  26105. name: "Big",
  26106. height: math.unit(20, "feet")
  26107. },
  26108. ]
  26109. ))
  26110. characterMakers.push(() => makeCharacter(
  26111. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26112. {
  26113. front: {
  26114. height: math.unit(5 + 1 / 12, "feet"),
  26115. weight: math.unit(110, "lb"),
  26116. name: "Front",
  26117. image: {
  26118. source: "./media/characters/rupert/front.svg",
  26119. extra: 1549 / 1495,
  26120. bottom: 54.2 / 1604.4
  26121. }
  26122. },
  26123. },
  26124. [
  26125. {
  26126. name: "Normal",
  26127. height: math.unit(5 + 1 / 12, "feet"),
  26128. default: true
  26129. },
  26130. ]
  26131. ))
  26132. characterMakers.push(() => makeCharacter(
  26133. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26134. {
  26135. front: {
  26136. height: math.unit(8 + 4 / 12, "feet"),
  26137. weight: math.unit(350, "lb"),
  26138. name: "Front",
  26139. image: {
  26140. source: "./media/characters/sheera-castellar/front.svg",
  26141. extra: 1957 / 1894,
  26142. bottom: 26.97 / 1975.017
  26143. }
  26144. },
  26145. side: {
  26146. height: math.unit(8 + 4 / 12, "feet"),
  26147. weight: math.unit(350, "lb"),
  26148. name: "Side",
  26149. image: {
  26150. source: "./media/characters/sheera-castellar/side.svg",
  26151. extra: 1957 / 1894
  26152. }
  26153. },
  26154. back: {
  26155. height: math.unit(8 + 4 / 12, "feet"),
  26156. weight: math.unit(350, "lb"),
  26157. name: "Back",
  26158. image: {
  26159. source: "./media/characters/sheera-castellar/back.svg",
  26160. extra: 1957 / 1894
  26161. }
  26162. },
  26163. angled: {
  26164. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26165. weight: math.unit(350, "lb"),
  26166. name: "Angled",
  26167. image: {
  26168. source: "./media/characters/sheera-castellar/angled.svg",
  26169. extra: 1807 / 1707,
  26170. bottom: 68 / 1875
  26171. }
  26172. },
  26173. genitals: {
  26174. height: math.unit(2.2, "feet"),
  26175. name: "Genitals",
  26176. image: {
  26177. source: "./media/characters/sheera-castellar/genitals.svg"
  26178. }
  26179. },
  26180. taur: {
  26181. height: math.unit(10 + 6/12, "feet"),
  26182. name: "Taur",
  26183. image: {
  26184. source: "./media/characters/sheera-castellar/taur.svg",
  26185. extra: 2017/1909,
  26186. bottom: 185/2202
  26187. }
  26188. },
  26189. },
  26190. [
  26191. {
  26192. name: "Normal",
  26193. height: math.unit(8 + 4 / 12, "feet")
  26194. },
  26195. {
  26196. name: "Macro",
  26197. height: math.unit(150, "feet"),
  26198. default: true
  26199. },
  26200. {
  26201. name: "Macro+",
  26202. height: math.unit(800, "feet")
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(6, "feet"),
  26211. weight: math.unit(150, "lb"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/jaipur/front.svg",
  26215. extra: 3860 / 3731,
  26216. bottom: 287 / 4140
  26217. }
  26218. },
  26219. back: {
  26220. height: math.unit(6, "feet"),
  26221. weight: math.unit(150, "lb"),
  26222. name: "Back",
  26223. image: {
  26224. source: "./media/characters/jaipur/back.svg",
  26225. extra: 1637/1561,
  26226. bottom: 154/1791
  26227. }
  26228. },
  26229. },
  26230. [
  26231. {
  26232. name: "Normal",
  26233. height: math.unit(1.85, "meters"),
  26234. default: true
  26235. },
  26236. {
  26237. name: "Macro",
  26238. height: math.unit(150, "meters")
  26239. },
  26240. {
  26241. name: "Macro+",
  26242. height: math.unit(0.5, "miles")
  26243. },
  26244. {
  26245. name: "Macro++",
  26246. height: math.unit(2.5, "miles")
  26247. },
  26248. {
  26249. name: "Macro+++",
  26250. height: math.unit(12, "miles")
  26251. },
  26252. {
  26253. name: "Macro++++",
  26254. height: math.unit(120, "miles")
  26255. },
  26256. {
  26257. name: "Macro+++++",
  26258. height: math.unit(1200, "miles")
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(6, "feet"),
  26267. weight: math.unit(150, "lb"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/sheila-wolf/front.svg",
  26271. extra: 1931 / 1808,
  26272. bottom: 29.5 / 1960
  26273. }
  26274. },
  26275. dick: {
  26276. height: math.unit(1.464, "feet"),
  26277. name: "Dick",
  26278. image: {
  26279. source: "./media/characters/sheila-wolf/dick.svg"
  26280. }
  26281. },
  26282. muzzle: {
  26283. height: math.unit(0.513, "feet"),
  26284. name: "Muzzle",
  26285. image: {
  26286. source: "./media/characters/sheila-wolf/muzzle.svg"
  26287. }
  26288. },
  26289. },
  26290. [
  26291. {
  26292. name: "Macro",
  26293. height: math.unit(70, "feet"),
  26294. default: true
  26295. },
  26296. ]
  26297. ))
  26298. characterMakers.push(() => makeCharacter(
  26299. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26300. {
  26301. front: {
  26302. height: math.unit(32, "meters"),
  26303. weight: math.unit(300000, "kg"),
  26304. name: "Front",
  26305. image: {
  26306. source: "./media/characters/almor/front.svg",
  26307. extra: 1408 / 1322,
  26308. bottom: 94.6 / 1506.5
  26309. }
  26310. },
  26311. },
  26312. [
  26313. {
  26314. name: "Macro",
  26315. height: math.unit(32, "meters"),
  26316. default: true
  26317. },
  26318. ]
  26319. ))
  26320. characterMakers.push(() => makeCharacter(
  26321. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26322. {
  26323. front: {
  26324. height: math.unit(7, "feet"),
  26325. weight: math.unit(200, "lb"),
  26326. name: "Front",
  26327. image: {
  26328. source: "./media/characters/silver/front.svg",
  26329. extra: 472.1 / 450.5,
  26330. bottom: 26.5 / 499.424
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(7, "feet"),
  26338. default: true
  26339. },
  26340. {
  26341. name: "Macro",
  26342. height: math.unit(800, "feet")
  26343. },
  26344. {
  26345. name: "Megamacro",
  26346. height: math.unit(250, "miles")
  26347. },
  26348. ]
  26349. ))
  26350. characterMakers.push(() => makeCharacter(
  26351. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26352. {
  26353. front: {
  26354. height: math.unit(6, "feet"),
  26355. weight: math.unit(150, "lb"),
  26356. name: "Front",
  26357. image: {
  26358. source: "./media/characters/pliskin/front.svg",
  26359. extra: 1469 / 1359,
  26360. bottom: 70 / 1540
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Micro",
  26367. height: math.unit(3, "inches")
  26368. },
  26369. {
  26370. name: "Normal",
  26371. height: math.unit(5 + 11 / 12, "feet"),
  26372. default: true
  26373. },
  26374. {
  26375. name: "Macro",
  26376. height: math.unit(120, "feet")
  26377. },
  26378. ]
  26379. ))
  26380. characterMakers.push(() => makeCharacter(
  26381. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26382. {
  26383. front: {
  26384. height: math.unit(6, "feet"),
  26385. weight: math.unit(150, "lb"),
  26386. name: "Front",
  26387. image: {
  26388. source: "./media/characters/sammy/front.svg",
  26389. extra: 1193 / 1089,
  26390. bottom: 30.5 / 1226
  26391. }
  26392. },
  26393. },
  26394. [
  26395. {
  26396. name: "Macro",
  26397. height: math.unit(1700, "feet"),
  26398. default: true
  26399. },
  26400. {
  26401. name: "Examacro",
  26402. height: math.unit(2.5e9, "lightyears")
  26403. },
  26404. ]
  26405. ))
  26406. characterMakers.push(() => makeCharacter(
  26407. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26408. {
  26409. front: {
  26410. height: math.unit(21, "meters"),
  26411. weight: math.unit(12, "tonnes"),
  26412. name: "Front",
  26413. image: {
  26414. source: "./media/characters/kuru/front.svg",
  26415. extra: 4301 / 3785,
  26416. bottom: 371.3 / 4691
  26417. }
  26418. },
  26419. },
  26420. [
  26421. {
  26422. name: "Macro",
  26423. height: math.unit(21, "meters"),
  26424. default: true
  26425. },
  26426. ]
  26427. ))
  26428. characterMakers.push(() => makeCharacter(
  26429. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26430. {
  26431. front: {
  26432. height: math.unit(23, "meters"),
  26433. weight: math.unit(12.2, "tonnes"),
  26434. name: "Front",
  26435. image: {
  26436. source: "./media/characters/rakka/front.svg",
  26437. extra: 4670 / 4169,
  26438. bottom: 301 / 4968.7
  26439. }
  26440. },
  26441. },
  26442. [
  26443. {
  26444. name: "Macro",
  26445. height: math.unit(23, "meters"),
  26446. default: true
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26452. {
  26453. front: {
  26454. height: math.unit(6, "feet"),
  26455. weight: math.unit(150, "lb"),
  26456. name: "Front",
  26457. image: {
  26458. source: "./media/characters/rhys-feline/front.svg",
  26459. extra: 2488 / 2308,
  26460. bottom: 35.67 / 2519.19
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Really Small",
  26467. height: math.unit(1, "nm")
  26468. },
  26469. {
  26470. name: "Micro",
  26471. height: math.unit(4, "inches")
  26472. },
  26473. {
  26474. name: "Normal",
  26475. height: math.unit(4 + 10 / 12, "feet"),
  26476. default: true
  26477. },
  26478. {
  26479. name: "Macro",
  26480. height: math.unit(100, "feet")
  26481. },
  26482. {
  26483. name: "Megamacto",
  26484. height: math.unit(50, "miles")
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26490. {
  26491. side: {
  26492. height: math.unit(30, "feet"),
  26493. weight: math.unit(35000, "kg"),
  26494. name: "Side",
  26495. image: {
  26496. source: "./media/characters/alydar/side.svg",
  26497. extra: 234 / 222,
  26498. bottom: 6.5 / 241
  26499. }
  26500. },
  26501. front: {
  26502. height: math.unit(30, "feet"),
  26503. weight: math.unit(35000, "kg"),
  26504. name: "Front",
  26505. image: {
  26506. source: "./media/characters/alydar/front.svg",
  26507. extra: 223.37 / 210.2,
  26508. bottom: 22.3 / 246.76
  26509. }
  26510. },
  26511. top: {
  26512. height: math.unit(64.54, "feet"),
  26513. weight: math.unit(35000, "kg"),
  26514. name: "Top",
  26515. image: {
  26516. source: "./media/characters/alydar/top.svg"
  26517. }
  26518. },
  26519. anthro: {
  26520. height: math.unit(30, "feet"),
  26521. weight: math.unit(9000, "kg"),
  26522. name: "Anthro",
  26523. image: {
  26524. source: "./media/characters/alydar/anthro.svg",
  26525. extra: 432 / 421,
  26526. bottom: 7.18 / 440
  26527. }
  26528. },
  26529. maw: {
  26530. height: math.unit(11.693, "feet"),
  26531. name: "Maw",
  26532. image: {
  26533. source: "./media/characters/alydar/maw.svg"
  26534. }
  26535. },
  26536. head: {
  26537. height: math.unit(11.693, "feet"),
  26538. name: "Head",
  26539. image: {
  26540. source: "./media/characters/alydar/head.svg"
  26541. }
  26542. },
  26543. headAlt: {
  26544. height: math.unit(12.861, "feet"),
  26545. name: "Head (Alt)",
  26546. image: {
  26547. source: "./media/characters/alydar/head-alt.svg"
  26548. }
  26549. },
  26550. wing: {
  26551. height: math.unit(20.712, "feet"),
  26552. name: "Wing",
  26553. image: {
  26554. source: "./media/characters/alydar/wing.svg"
  26555. }
  26556. },
  26557. wingFeather: {
  26558. height: math.unit(9.662, "feet"),
  26559. name: "Wing Feather",
  26560. image: {
  26561. source: "./media/characters/alydar/wing-feather.svg"
  26562. }
  26563. },
  26564. countourFeather: {
  26565. height: math.unit(4.154, "feet"),
  26566. name: "Contour Feather",
  26567. image: {
  26568. source: "./media/characters/alydar/contour-feather.svg"
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Diplomatic",
  26575. height: math.unit(13, "feet"),
  26576. default: true
  26577. },
  26578. {
  26579. name: "Small",
  26580. height: math.unit(30, "feet")
  26581. },
  26582. {
  26583. name: "Normal",
  26584. height: math.unit(95, "feet"),
  26585. default: true
  26586. },
  26587. {
  26588. name: "Large",
  26589. height: math.unit(285, "feet")
  26590. },
  26591. {
  26592. name: "Incomprehensible",
  26593. height: math.unit(450, "megameters")
  26594. },
  26595. ]
  26596. ))
  26597. characterMakers.push(() => makeCharacter(
  26598. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26599. {
  26600. side: {
  26601. height: math.unit(11, "feet"),
  26602. weight: math.unit(1750, "kg"),
  26603. name: "Side",
  26604. image: {
  26605. source: "./media/characters/selicia/side.svg",
  26606. extra: 440 / 396,
  26607. bottom: 24.8 / 465.979
  26608. }
  26609. },
  26610. maw: {
  26611. height: math.unit(4.665, "feet"),
  26612. name: "Maw",
  26613. image: {
  26614. source: "./media/characters/selicia/maw.svg"
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(11, "feet"),
  26622. default: true
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26628. {
  26629. side: {
  26630. height: math.unit(2 + 6 / 12, "feet"),
  26631. weight: math.unit(30, "lb"),
  26632. name: "Side",
  26633. image: {
  26634. source: "./media/characters/layla/side.svg",
  26635. extra: 244 / 188,
  26636. bottom: 18.2 / 262.1
  26637. }
  26638. },
  26639. back: {
  26640. height: math.unit(2 + 6 / 12, "feet"),
  26641. weight: math.unit(30, "lb"),
  26642. name: "Back",
  26643. image: {
  26644. source: "./media/characters/layla/back.svg",
  26645. extra: 308 / 241.5,
  26646. bottom: 8.9 / 316.8
  26647. }
  26648. },
  26649. cumming: {
  26650. height: math.unit(2 + 6 / 12, "feet"),
  26651. weight: math.unit(30, "lb"),
  26652. name: "Cumming",
  26653. image: {
  26654. source: "./media/characters/layla/cumming.svg",
  26655. extra: 342 / 279,
  26656. bottom: 595 / 938
  26657. }
  26658. },
  26659. dickFlaccid: {
  26660. height: math.unit(2.595, "feet"),
  26661. name: "Flaccid Genitals",
  26662. image: {
  26663. source: "./media/characters/layla/dick-flaccid.svg"
  26664. }
  26665. },
  26666. dickErect: {
  26667. height: math.unit(2.359, "feet"),
  26668. name: "Erect Genitals",
  26669. image: {
  26670. source: "./media/characters/layla/dick-erect.svg"
  26671. }
  26672. },
  26673. dragon: {
  26674. height: math.unit(40, "feet"),
  26675. name: "Dragon",
  26676. image: {
  26677. source: "./media/characters/layla/dragon.svg",
  26678. extra: 610/535,
  26679. bottom: 367/977
  26680. }
  26681. },
  26682. taur: {
  26683. height: math.unit(30, "feet"),
  26684. name: "Taur",
  26685. image: {
  26686. source: "./media/characters/layla/taur.svg",
  26687. extra: 1268/1199,
  26688. bottom: 112/1380
  26689. }
  26690. },
  26691. },
  26692. [
  26693. {
  26694. name: "Micro",
  26695. height: math.unit(1, "inch")
  26696. },
  26697. {
  26698. name: "Small",
  26699. height: math.unit(1, "foot")
  26700. },
  26701. {
  26702. name: "Normal",
  26703. height: math.unit(2 + 6 / 12, "feet"),
  26704. default: true
  26705. },
  26706. {
  26707. name: "Macro",
  26708. height: math.unit(200, "feet")
  26709. },
  26710. {
  26711. name: "Megamacro",
  26712. height: math.unit(1000, "miles")
  26713. },
  26714. {
  26715. name: "Planetary",
  26716. height: math.unit(8000, "miles")
  26717. },
  26718. {
  26719. name: "True Layla",
  26720. height: math.unit(200000 * 7, "multiverses")
  26721. },
  26722. ]
  26723. ))
  26724. characterMakers.push(() => makeCharacter(
  26725. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26726. {
  26727. back: {
  26728. height: math.unit(10.5, "feet"),
  26729. weight: math.unit(800, "lb"),
  26730. name: "Back",
  26731. image: {
  26732. source: "./media/characters/knox/back.svg",
  26733. extra: 1486 / 1089,
  26734. bottom: 107 / 1601.4
  26735. }
  26736. },
  26737. side: {
  26738. height: math.unit(10.5, "feet"),
  26739. weight: math.unit(800, "lb"),
  26740. name: "Side",
  26741. image: {
  26742. source: "./media/characters/knox/side.svg",
  26743. extra: 244 / 218,
  26744. bottom: 14 / 260
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Compact",
  26751. height: math.unit(10.5, "feet"),
  26752. default: true
  26753. },
  26754. {
  26755. name: "Dynamax",
  26756. height: math.unit(210, "feet")
  26757. },
  26758. {
  26759. name: "Full Macro",
  26760. height: math.unit(850, "feet")
  26761. },
  26762. ]
  26763. ))
  26764. characterMakers.push(() => makeCharacter(
  26765. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26766. {
  26767. front: {
  26768. height: math.unit(28, "feet"),
  26769. weight: math.unit(10500, "lb"),
  26770. name: "Front",
  26771. image: {
  26772. source: "./media/characters/kayda/front.svg",
  26773. extra: 1536 / 1428,
  26774. bottom: 68.7 / 1603
  26775. }
  26776. },
  26777. back: {
  26778. height: math.unit(28, "feet"),
  26779. weight: math.unit(10500, "lb"),
  26780. name: "Back",
  26781. image: {
  26782. source: "./media/characters/kayda/back.svg",
  26783. extra: 1557 / 1464,
  26784. bottom: 39.5 / 1597.49
  26785. }
  26786. },
  26787. dick: {
  26788. height: math.unit(3.858, "feet"),
  26789. name: "Dick",
  26790. image: {
  26791. source: "./media/characters/kayda/dick.svg"
  26792. }
  26793. },
  26794. },
  26795. [
  26796. {
  26797. name: "Macro",
  26798. height: math.unit(28, "feet"),
  26799. default: true
  26800. },
  26801. ]
  26802. ))
  26803. characterMakers.push(() => makeCharacter(
  26804. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26805. {
  26806. front: {
  26807. height: math.unit(10 + 11 / 12, "feet"),
  26808. weight: math.unit(1400, "lb"),
  26809. name: "Front",
  26810. image: {
  26811. source: "./media/characters/brian/front.svg",
  26812. extra: 737 / 692,
  26813. bottom: 55.4 / 785
  26814. }
  26815. },
  26816. },
  26817. [
  26818. {
  26819. name: "Normal",
  26820. height: math.unit(10 + 11 / 12, "feet"),
  26821. default: true
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(5 + 8 / 12, "feet"),
  26830. weight: math.unit(140, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/khemri/front.svg",
  26834. extra: 4780 / 4059,
  26835. bottom: 80.1 / 4859.25
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Micro",
  26842. height: math.unit(6, "inches")
  26843. },
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(5 + 8 / 12, "feet"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26853. {
  26854. front: {
  26855. height: math.unit(13, "feet"),
  26856. weight: math.unit(1700, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/felix-braveheart/front.svg",
  26860. extra: 1222 / 1157,
  26861. bottom: 53.2 / 1280
  26862. }
  26863. },
  26864. back: {
  26865. height: math.unit(13, "feet"),
  26866. weight: math.unit(1700, "lb"),
  26867. name: "Back",
  26868. image: {
  26869. source: "./media/characters/felix-braveheart/back.svg",
  26870. extra: 1277 / 1203,
  26871. bottom: 50.2 / 1327
  26872. }
  26873. },
  26874. feral: {
  26875. height: math.unit(6, "feet"),
  26876. weight: math.unit(400, "lb"),
  26877. name: "Feral",
  26878. image: {
  26879. source: "./media/characters/felix-braveheart/feral.svg",
  26880. extra: 682 / 625,
  26881. bottom: 6.9 / 688
  26882. }
  26883. },
  26884. },
  26885. [
  26886. {
  26887. name: "Normal",
  26888. height: math.unit(13, "feet"),
  26889. default: true
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26895. {
  26896. side: {
  26897. height: math.unit(5 + 11 / 12, "feet"),
  26898. weight: math.unit(1400, "lb"),
  26899. name: "Side",
  26900. image: {
  26901. source: "./media/characters/shadow-blade/side.svg",
  26902. extra: 1726 / 1267,
  26903. bottom: 58.4 / 1785
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(5 + 11 / 12, "feet"),
  26911. default: true
  26912. },
  26913. ]
  26914. ))
  26915. characterMakers.push(() => makeCharacter(
  26916. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26917. {
  26918. front: {
  26919. height: math.unit(1 + 6 / 12, "feet"),
  26920. weight: math.unit(25, "lb"),
  26921. name: "Front",
  26922. image: {
  26923. source: "./media/characters/karla-halldor/front.svg",
  26924. extra: 1459 / 1383,
  26925. bottom: 12 / 1472
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(1 + 6 / 12, "feet"),
  26933. default: true
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(6 + 2 / 12, "feet"),
  26942. weight: math.unit(160, "lb"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/ariam/front.svg",
  26946. extra: 1073/976,
  26947. bottom: 52/1125
  26948. }
  26949. },
  26950. back: {
  26951. height: math.unit(6 + 2/12, "feet"),
  26952. weight: math.unit(160, "lb"),
  26953. name: "Back",
  26954. image: {
  26955. source: "./media/characters/ariam/back.svg",
  26956. extra: 1103/1023,
  26957. bottom: 9/1112
  26958. }
  26959. },
  26960. dressed: {
  26961. height: math.unit(6 + 2/12, "feet"),
  26962. weight: math.unit(160, "lb"),
  26963. name: "Dressed",
  26964. image: {
  26965. source: "./media/characters/ariam/dressed.svg",
  26966. extra: 1099/1009,
  26967. bottom: 25/1124
  26968. }
  26969. },
  26970. squatting: {
  26971. height: math.unit(4.1, "feet"),
  26972. weight: math.unit(160, "lb"),
  26973. name: "Squatting",
  26974. image: {
  26975. source: "./media/characters/ariam/squatting.svg",
  26976. extra: 2617 / 2112,
  26977. bottom: 61.2 / 2681,
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Normal",
  26984. height: math.unit(6 + 2 / 12, "feet"),
  26985. default: true
  26986. },
  26987. {
  26988. name: "Normal+",
  26989. height: math.unit(4, "meters")
  26990. },
  26991. {
  26992. name: "Macro",
  26993. height: math.unit(50, "meters")
  26994. },
  26995. {
  26996. name: "Macro+",
  26997. height: math.unit(100, "meters")
  26998. },
  26999. {
  27000. name: "Megamacro",
  27001. height: math.unit(20, "km")
  27002. },
  27003. {
  27004. name: "Caretaker",
  27005. height: math.unit(444, "megameters")
  27006. },
  27007. ]
  27008. ))
  27009. characterMakers.push(() => makeCharacter(
  27010. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27011. {
  27012. front: {
  27013. height: math.unit(1.67, "meters"),
  27014. weight: math.unit(140, "lb"),
  27015. name: "Front",
  27016. image: {
  27017. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27018. extra: 438 / 410,
  27019. bottom: 0.75 / 439
  27020. }
  27021. },
  27022. },
  27023. [
  27024. {
  27025. name: "Shrunken",
  27026. height: math.unit(7.6, "cm")
  27027. },
  27028. {
  27029. name: "Human Scale",
  27030. height: math.unit(1.67, "meters")
  27031. },
  27032. {
  27033. name: "Wolxi Scale",
  27034. height: math.unit(36.7, "meters"),
  27035. default: true
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(1.73, "meters"),
  27044. weight: math.unit(240, "lb"),
  27045. name: "Front",
  27046. image: {
  27047. source: "./media/characters/izue-two-mothers/front.svg",
  27048. extra: 469 / 437,
  27049. bottom: 1.24 / 470.6
  27050. }
  27051. },
  27052. },
  27053. [
  27054. {
  27055. name: "Shrunken",
  27056. height: math.unit(7.86, "cm")
  27057. },
  27058. {
  27059. name: "Human Scale",
  27060. height: math.unit(1.73, "meters")
  27061. },
  27062. {
  27063. name: "Wolxi Scale",
  27064. height: math.unit(38, "meters"),
  27065. default: true
  27066. },
  27067. ]
  27068. ))
  27069. characterMakers.push(() => makeCharacter(
  27070. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27071. {
  27072. front: {
  27073. height: math.unit(1.55, "meters"),
  27074. weight: math.unit(120, "lb"),
  27075. name: "Front",
  27076. image: {
  27077. source: "./media/characters/teeku-love-shack/front.svg",
  27078. extra: 387 / 362,
  27079. bottom: 1.51 / 388
  27080. }
  27081. },
  27082. },
  27083. [
  27084. {
  27085. name: "Shrunken",
  27086. height: math.unit(7, "cm")
  27087. },
  27088. {
  27089. name: "Human Scale",
  27090. height: math.unit(1.55, "meters")
  27091. },
  27092. {
  27093. name: "Wolxi Scale",
  27094. height: math.unit(34.1, "meters"),
  27095. default: true
  27096. },
  27097. ]
  27098. ))
  27099. characterMakers.push(() => makeCharacter(
  27100. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27101. {
  27102. front: {
  27103. height: math.unit(1.83, "meters"),
  27104. weight: math.unit(135, "lb"),
  27105. name: "Front",
  27106. image: {
  27107. source: "./media/characters/dejma-the-red/front.svg",
  27108. extra: 480 / 458,
  27109. bottom: 1.8 / 482
  27110. }
  27111. },
  27112. },
  27113. [
  27114. {
  27115. name: "Shrunken",
  27116. height: math.unit(8.3, "cm")
  27117. },
  27118. {
  27119. name: "Human Scale",
  27120. height: math.unit(1.83, "meters")
  27121. },
  27122. {
  27123. name: "Wolxi Scale",
  27124. height: math.unit(40, "meters"),
  27125. default: true
  27126. },
  27127. ]
  27128. ))
  27129. characterMakers.push(() => makeCharacter(
  27130. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27131. {
  27132. front: {
  27133. height: math.unit(1.78, "meters"),
  27134. weight: math.unit(65, "kg"),
  27135. name: "Front",
  27136. image: {
  27137. source: "./media/characters/aki/front.svg",
  27138. extra: 452 / 415
  27139. }
  27140. },
  27141. frontNsfw: {
  27142. height: math.unit(1.78, "meters"),
  27143. weight: math.unit(65, "kg"),
  27144. name: "Front (NSFW)",
  27145. image: {
  27146. source: "./media/characters/aki/front-nsfw.svg",
  27147. extra: 452 / 415
  27148. }
  27149. },
  27150. back: {
  27151. height: math.unit(1.78, "meters"),
  27152. weight: math.unit(65, "kg"),
  27153. name: "Back",
  27154. image: {
  27155. source: "./media/characters/aki/back.svg",
  27156. extra: 452 / 415
  27157. }
  27158. },
  27159. rump: {
  27160. height: math.unit(2.05, "feet"),
  27161. name: "Rump",
  27162. image: {
  27163. source: "./media/characters/aki/rump.svg"
  27164. }
  27165. },
  27166. dick: {
  27167. height: math.unit(0.95, "feet"),
  27168. name: "Dick",
  27169. image: {
  27170. source: "./media/characters/aki/dick.svg"
  27171. }
  27172. },
  27173. },
  27174. [
  27175. {
  27176. name: "Micro",
  27177. height: math.unit(15, "cm")
  27178. },
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(178, "cm"),
  27182. default: true
  27183. },
  27184. {
  27185. name: "Macro",
  27186. height: math.unit(214, "m")
  27187. },
  27188. {
  27189. name: "Macro+",
  27190. height: math.unit(534, "m")
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(5 + 5 / 12, "feet"),
  27199. weight: math.unit(120, "lb"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/ari/front.svg",
  27203. extra: 1550/1471,
  27204. bottom: 39/1589
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Normal",
  27211. height: math.unit(5 + 5 / 12, "feet")
  27212. },
  27213. {
  27214. name: "Macro",
  27215. height: math.unit(100, "feet"),
  27216. default: true
  27217. },
  27218. {
  27219. name: "Megamacro",
  27220. height: math.unit(100, "miles")
  27221. },
  27222. {
  27223. name: "Gigamacro",
  27224. height: math.unit(80000, "miles")
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27230. {
  27231. side: {
  27232. height: math.unit(9, "feet"),
  27233. weight: math.unit(400, "kg"),
  27234. name: "Side",
  27235. image: {
  27236. source: "./media/characters/bolt/side.svg",
  27237. extra: 1126 / 896,
  27238. bottom: 60 / 1187.3,
  27239. }
  27240. },
  27241. },
  27242. [
  27243. {
  27244. name: "Micro",
  27245. height: math.unit(5, "inches")
  27246. },
  27247. {
  27248. name: "Normal",
  27249. height: math.unit(9, "feet"),
  27250. default: true
  27251. },
  27252. {
  27253. name: "Macro",
  27254. height: math.unit(700, "feet")
  27255. },
  27256. {
  27257. name: "Max Size",
  27258. height: math.unit(1.52e22, "yottameters")
  27259. },
  27260. ]
  27261. ))
  27262. characterMakers.push(() => makeCharacter(
  27263. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27264. {
  27265. front: {
  27266. height: math.unit(4.3, "meters"),
  27267. weight: math.unit(3, "tons"),
  27268. name: "Front",
  27269. image: {
  27270. source: "./media/characters/draekon-sylviar/front.svg",
  27271. extra: 2072/1512,
  27272. bottom: 74/2146
  27273. }
  27274. },
  27275. back: {
  27276. height: math.unit(4.3, "meters"),
  27277. weight: math.unit(3, "tons"),
  27278. name: "Back",
  27279. image: {
  27280. source: "./media/characters/draekon-sylviar/back.svg",
  27281. extra: 1639/1483,
  27282. bottom: 41/1680
  27283. }
  27284. },
  27285. feral: {
  27286. height: math.unit(1.15, "meters"),
  27287. weight: math.unit(3, "tons"),
  27288. name: "Feral",
  27289. image: {
  27290. source: "./media/characters/draekon-sylviar/feral.svg",
  27291. extra: 1033/395,
  27292. bottom: 130/1163
  27293. }
  27294. },
  27295. maw: {
  27296. height: math.unit(1.3, "meters"),
  27297. name: "Maw",
  27298. image: {
  27299. source: "./media/characters/draekon-sylviar/maw.svg"
  27300. }
  27301. },
  27302. mawSeparated: {
  27303. height: math.unit(1.53, "meters"),
  27304. name: "Separated Maw",
  27305. image: {
  27306. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27307. }
  27308. },
  27309. tail: {
  27310. height: math.unit(1.15, "meters"),
  27311. name: "Tail",
  27312. image: {
  27313. source: "./media/characters/draekon-sylviar/tail.svg"
  27314. }
  27315. },
  27316. tailDick: {
  27317. height: math.unit(1.15, "meters"),
  27318. name: "Tail (Dick)",
  27319. image: {
  27320. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27321. }
  27322. },
  27323. tailDickSeparated: {
  27324. height: math.unit(1.19, "meters"),
  27325. name: "Tail (Separated Dick)",
  27326. image: {
  27327. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27328. }
  27329. },
  27330. slit: {
  27331. height: math.unit(1, "meters"),
  27332. name: "Slit",
  27333. image: {
  27334. source: "./media/characters/draekon-sylviar/slit.svg"
  27335. }
  27336. },
  27337. dick: {
  27338. height: math.unit(1.15, "meters"),
  27339. name: "Dick",
  27340. image: {
  27341. source: "./media/characters/draekon-sylviar/dick.svg"
  27342. }
  27343. },
  27344. dickSeparated: {
  27345. height: math.unit(1.1, "meters"),
  27346. name: "Separated Dick",
  27347. image: {
  27348. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27349. }
  27350. },
  27351. sheath: {
  27352. height: math.unit(1.15, "meters"),
  27353. name: "Sheath",
  27354. image: {
  27355. source: "./media/characters/draekon-sylviar/sheath.svg"
  27356. }
  27357. },
  27358. },
  27359. [
  27360. {
  27361. name: "Small",
  27362. height: math.unit(4.53 / 2, "meters"),
  27363. default: true
  27364. },
  27365. {
  27366. name: "Normal",
  27367. height: math.unit(4.53, "meters"),
  27368. default: true
  27369. },
  27370. {
  27371. name: "Large",
  27372. height: math.unit(4.53 * 2, "meters"),
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(6 + 2 / 12, "feet"),
  27381. weight: math.unit(180, "lb"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/brawler/front.svg",
  27385. extra: 3301 / 3027,
  27386. bottom: 138 / 3439
  27387. }
  27388. },
  27389. },
  27390. [
  27391. {
  27392. name: "Normal",
  27393. height: math.unit(6 + 2 / 12, "feet"),
  27394. default: true
  27395. },
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27400. {
  27401. front: {
  27402. height: math.unit(11, "feet"),
  27403. weight: math.unit(1000, "lb"),
  27404. name: "Front",
  27405. image: {
  27406. source: "./media/characters/alex/front.svg",
  27407. bottom: 44.5 / 620
  27408. }
  27409. },
  27410. },
  27411. [
  27412. {
  27413. name: "Micro",
  27414. height: math.unit(5, "inches")
  27415. },
  27416. {
  27417. name: "Normal",
  27418. height: math.unit(11, "feet"),
  27419. default: true
  27420. },
  27421. {
  27422. name: "Macro",
  27423. height: math.unit(9.5e9, "feet")
  27424. },
  27425. {
  27426. name: "Max Size",
  27427. height: math.unit(1.4e283, "yottameters")
  27428. },
  27429. ]
  27430. ))
  27431. characterMakers.push(() => makeCharacter(
  27432. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27433. {
  27434. female: {
  27435. height: math.unit(29.9, "m"),
  27436. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27437. name: "Female",
  27438. image: {
  27439. source: "./media/characters/zenari/female.svg",
  27440. extra: 3281.6 / 3217,
  27441. bottom: 72.2 / 3353
  27442. }
  27443. },
  27444. male: {
  27445. height: math.unit(27.7, "m"),
  27446. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27447. name: "Male",
  27448. image: {
  27449. source: "./media/characters/zenari/male.svg",
  27450. extra: 3008 / 2991,
  27451. bottom: 54.6 / 3069
  27452. }
  27453. },
  27454. },
  27455. [
  27456. {
  27457. name: "Macro",
  27458. height: math.unit(29.7, "meters"),
  27459. default: true
  27460. },
  27461. ]
  27462. ))
  27463. characterMakers.push(() => makeCharacter(
  27464. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27465. {
  27466. female: {
  27467. height: math.unit(23.8, "m"),
  27468. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27469. name: "Female",
  27470. image: {
  27471. source: "./media/characters/mactarian/female.svg",
  27472. extra: 2662 / 2569,
  27473. bottom: 73 / 2736
  27474. }
  27475. },
  27476. male: {
  27477. height: math.unit(23.8, "m"),
  27478. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27479. name: "Male",
  27480. image: {
  27481. source: "./media/characters/mactarian/male.svg",
  27482. extra: 2673 / 2600,
  27483. bottom: 76 / 2750
  27484. }
  27485. },
  27486. },
  27487. [
  27488. {
  27489. name: "Macro",
  27490. height: math.unit(23.8, "meters"),
  27491. default: true
  27492. },
  27493. ]
  27494. ))
  27495. characterMakers.push(() => makeCharacter(
  27496. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27497. {
  27498. female: {
  27499. height: math.unit(19.3, "m"),
  27500. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27501. name: "Female",
  27502. image: {
  27503. source: "./media/characters/umok/female.svg",
  27504. extra: 2186 / 2078,
  27505. bottom: 87 / 2277
  27506. }
  27507. },
  27508. male: {
  27509. height: math.unit(19.5, "m"),
  27510. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27511. name: "Male",
  27512. image: {
  27513. source: "./media/characters/umok/male.svg",
  27514. extra: 2233 / 2140,
  27515. bottom: 24.4 / 2258
  27516. }
  27517. },
  27518. },
  27519. [
  27520. {
  27521. name: "Macro",
  27522. height: math.unit(19.3, "meters"),
  27523. default: true
  27524. },
  27525. ]
  27526. ))
  27527. characterMakers.push(() => makeCharacter(
  27528. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27529. {
  27530. female: {
  27531. height: math.unit(26.15, "m"),
  27532. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27533. name: "Female",
  27534. image: {
  27535. source: "./media/characters/joraxian/female.svg",
  27536. extra: 2912 / 2824,
  27537. bottom: 36 / 2956
  27538. }
  27539. },
  27540. male: {
  27541. height: math.unit(25.4, "m"),
  27542. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27543. name: "Male",
  27544. image: {
  27545. source: "./media/characters/joraxian/male.svg",
  27546. extra: 2877 / 2721,
  27547. bottom: 82 / 2967
  27548. }
  27549. },
  27550. },
  27551. [
  27552. {
  27553. name: "Macro",
  27554. height: math.unit(26.15, "meters"),
  27555. default: true
  27556. },
  27557. ]
  27558. ))
  27559. characterMakers.push(() => makeCharacter(
  27560. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27561. {
  27562. female: {
  27563. height: math.unit(21.6, "m"),
  27564. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27565. name: "Female",
  27566. image: {
  27567. source: "./media/characters/sthara/female.svg",
  27568. extra: 2516 / 2347,
  27569. bottom: 21.5 / 2537
  27570. }
  27571. },
  27572. male: {
  27573. height: math.unit(24, "m"),
  27574. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27575. name: "Male",
  27576. image: {
  27577. source: "./media/characters/sthara/male.svg",
  27578. extra: 2732 / 2607,
  27579. bottom: 23 / 2732
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Macro",
  27586. height: math.unit(21.6, "meters"),
  27587. default: true
  27588. },
  27589. ]
  27590. ))
  27591. characterMakers.push(() => makeCharacter(
  27592. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27593. {
  27594. front: {
  27595. height: math.unit(6 + 4 / 12, "feet"),
  27596. weight: math.unit(175, "lb"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/luka-bryzant/front.svg",
  27600. extra: 311 / 289,
  27601. bottom: 4 / 315
  27602. }
  27603. },
  27604. back: {
  27605. height: math.unit(6 + 4 / 12, "feet"),
  27606. weight: math.unit(175, "lb"),
  27607. name: "Back",
  27608. image: {
  27609. source: "./media/characters/luka-bryzant/back.svg",
  27610. extra: 311 / 289,
  27611. bottom: 3.8 / 313.7
  27612. }
  27613. },
  27614. },
  27615. [
  27616. {
  27617. name: "Micro",
  27618. height: math.unit(10, "inches")
  27619. },
  27620. {
  27621. name: "Normal",
  27622. height: math.unit(6 + 4 / 12, "feet"),
  27623. default: true
  27624. },
  27625. {
  27626. name: "Large",
  27627. height: math.unit(12, "feet")
  27628. },
  27629. ]
  27630. ))
  27631. characterMakers.push(() => makeCharacter(
  27632. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27633. {
  27634. front: {
  27635. height: math.unit(5 + 7 / 12, "feet"),
  27636. weight: math.unit(185, "lb"),
  27637. name: "Front",
  27638. image: {
  27639. source: "./media/characters/aman-aquila/front.svg",
  27640. extra: 1013 / 976,
  27641. bottom: 45.6 / 1057
  27642. }
  27643. },
  27644. side: {
  27645. height: math.unit(5 + 7 / 12, "feet"),
  27646. weight: math.unit(185, "lb"),
  27647. name: "Side",
  27648. image: {
  27649. source: "./media/characters/aman-aquila/side.svg",
  27650. extra: 1054 / 1011,
  27651. bottom: 15 / 1070
  27652. }
  27653. },
  27654. back: {
  27655. height: math.unit(5 + 7 / 12, "feet"),
  27656. weight: math.unit(185, "lb"),
  27657. name: "Back",
  27658. image: {
  27659. source: "./media/characters/aman-aquila/back.svg",
  27660. extra: 1026 / 970,
  27661. bottom: 12 / 1039
  27662. }
  27663. },
  27664. head: {
  27665. height: math.unit(1.211, "feet"),
  27666. name: "Head",
  27667. image: {
  27668. source: "./media/characters/aman-aquila/head.svg",
  27669. }
  27670. },
  27671. },
  27672. [
  27673. {
  27674. name: "Minimicro",
  27675. height: math.unit(0.057, "inches")
  27676. },
  27677. {
  27678. name: "Micro",
  27679. height: math.unit(7, "inches")
  27680. },
  27681. {
  27682. name: "Mini",
  27683. height: math.unit(3 + 7 / 12, "feet")
  27684. },
  27685. {
  27686. name: "Normal",
  27687. height: math.unit(5 + 7 / 12, "feet"),
  27688. default: true
  27689. },
  27690. {
  27691. name: "Macro",
  27692. height: math.unit(157 + 7 / 12, "feet")
  27693. },
  27694. {
  27695. name: "Megamacro",
  27696. height: math.unit(1557 + 7 / 12, "feet")
  27697. },
  27698. {
  27699. name: "Gigamacro",
  27700. height: math.unit(15557 + 7 / 12, "feet")
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27706. {
  27707. front: {
  27708. height: math.unit(3 + 2 / 12, "inches"),
  27709. weight: math.unit(0.3, "ounces"),
  27710. name: "Front",
  27711. image: {
  27712. source: "./media/characters/hiphae/front.svg",
  27713. extra: 1931 / 1683,
  27714. bottom: 24 / 1955
  27715. }
  27716. },
  27717. },
  27718. [
  27719. {
  27720. name: "Normal",
  27721. height: math.unit(3 + 1 / 2, "inches"),
  27722. default: true
  27723. },
  27724. ]
  27725. ))
  27726. characterMakers.push(() => makeCharacter(
  27727. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27728. {
  27729. front: {
  27730. height: math.unit(5 + 10 / 12, "feet"),
  27731. weight: math.unit(165, "lb"),
  27732. name: "Front",
  27733. image: {
  27734. source: "./media/characters/nicky/front.svg",
  27735. extra: 3144 / 2886,
  27736. bottom: 45.6 / 3192
  27737. }
  27738. },
  27739. back: {
  27740. height: math.unit(5 + 10 / 12, "feet"),
  27741. weight: math.unit(165, "lb"),
  27742. name: "Back",
  27743. image: {
  27744. source: "./media/characters/nicky/back.svg",
  27745. extra: 3055 / 2804,
  27746. bottom: 28.4 / 3087
  27747. }
  27748. },
  27749. frontclothed: {
  27750. height: math.unit(5 + 10 / 12, "feet"),
  27751. weight: math.unit(165, "lb"),
  27752. name: "Front-clothed",
  27753. image: {
  27754. source: "./media/characters/nicky/front-clothed.svg",
  27755. extra: 3184.9 / 2926.9,
  27756. bottom: 86.5 / 3239.9
  27757. }
  27758. },
  27759. foot: {
  27760. height: math.unit(1.16, "feet"),
  27761. name: "Foot",
  27762. image: {
  27763. source: "./media/characters/nicky/foot.svg"
  27764. }
  27765. },
  27766. feet: {
  27767. height: math.unit(1.34, "feet"),
  27768. name: "Feet",
  27769. image: {
  27770. source: "./media/characters/nicky/feet.svg"
  27771. }
  27772. },
  27773. maw: {
  27774. height: math.unit(0.9, "feet"),
  27775. name: "Maw",
  27776. image: {
  27777. source: "./media/characters/nicky/maw.svg"
  27778. }
  27779. },
  27780. },
  27781. [
  27782. {
  27783. name: "Normal",
  27784. height: math.unit(5 + 10 / 12, "feet"),
  27785. default: true
  27786. },
  27787. {
  27788. name: "Macro",
  27789. height: math.unit(60, "feet")
  27790. },
  27791. {
  27792. name: "Megamacro",
  27793. height: math.unit(1, "mile")
  27794. },
  27795. ]
  27796. ))
  27797. characterMakers.push(() => makeCharacter(
  27798. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27799. {
  27800. side: {
  27801. height: math.unit(10, "feet"),
  27802. weight: math.unit(600, "lb"),
  27803. name: "Side",
  27804. image: {
  27805. source: "./media/characters/blair/side.svg",
  27806. bottom: 16.6 / 475,
  27807. extra: 458 / 431
  27808. }
  27809. },
  27810. },
  27811. [
  27812. {
  27813. name: "Micro",
  27814. height: math.unit(8, "inches")
  27815. },
  27816. {
  27817. name: "Normal",
  27818. height: math.unit(10, "feet"),
  27819. default: true
  27820. },
  27821. {
  27822. name: "Macro",
  27823. height: math.unit(180, "feet")
  27824. },
  27825. ]
  27826. ))
  27827. characterMakers.push(() => makeCharacter(
  27828. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27829. {
  27830. front: {
  27831. height: math.unit(5 + 4 / 12, "feet"),
  27832. weight: math.unit(125, "lb"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/fisher/front.svg",
  27836. extra: 444 / 390,
  27837. bottom: 2 / 444.8
  27838. }
  27839. },
  27840. },
  27841. [
  27842. {
  27843. name: "Micro",
  27844. height: math.unit(4, "inches")
  27845. },
  27846. {
  27847. name: "Normal",
  27848. height: math.unit(5 + 4 / 12, "feet"),
  27849. default: true
  27850. },
  27851. {
  27852. name: "Macro",
  27853. height: math.unit(100, "feet")
  27854. },
  27855. ]
  27856. ))
  27857. characterMakers.push(() => makeCharacter(
  27858. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27859. {
  27860. front: {
  27861. height: math.unit(6.71, "feet"),
  27862. weight: math.unit(200, "lb"),
  27863. preyCapacity: math.unit(1000000, "people"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/gliss/front.svg",
  27867. extra: 2347 / 2231,
  27868. bottom: 113 / 2462
  27869. }
  27870. },
  27871. hammerspaceSize: {
  27872. height: math.unit(6.71 * 717, "feet"),
  27873. weight: math.unit(200, "lb"),
  27874. preyCapacity: math.unit(1000000, "people"),
  27875. name: "Hammerspace Size",
  27876. image: {
  27877. source: "./media/characters/gliss/front.svg",
  27878. extra: 2347 / 2231,
  27879. bottom: 113 / 2462
  27880. }
  27881. },
  27882. },
  27883. [
  27884. {
  27885. name: "Normal",
  27886. height: math.unit(6.71, "feet"),
  27887. default: true
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27893. {
  27894. side: {
  27895. height: math.unit(1.44, "m"),
  27896. weight: math.unit(80, "kg"),
  27897. name: "Side",
  27898. image: {
  27899. source: "./media/characters/dune-anderson/side.svg",
  27900. bottom: 49 / 1426
  27901. }
  27902. },
  27903. },
  27904. [
  27905. {
  27906. name: "Wolf-sized",
  27907. height: math.unit(1.44, "meters")
  27908. },
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(5.05, "meters"),
  27912. default: true
  27913. },
  27914. {
  27915. name: "Big",
  27916. height: math.unit(14.4, "meters")
  27917. },
  27918. {
  27919. name: "Huge",
  27920. height: math.unit(144, "meters")
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(6, "feet"),
  27929. weight: math.unit(220, "lb"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/hind/front.svg",
  27933. extra: 1912/1787,
  27934. bottom: 52/1964
  27935. }
  27936. },
  27937. back: {
  27938. height: math.unit(6, "feet"),
  27939. weight: math.unit(220, "lb"),
  27940. name: "Back",
  27941. image: {
  27942. source: "./media/characters/hind/back.svg",
  27943. extra: 1901/1794,
  27944. bottom: 26/1927
  27945. }
  27946. },
  27947. },
  27948. [
  27949. {
  27950. name: "Normal",
  27951. height: math.unit(6, "feet"),
  27952. default: true
  27953. },
  27954. ]
  27955. ))
  27956. characterMakers.push(() => makeCharacter(
  27957. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27958. {
  27959. front: {
  27960. height: math.unit(2.1, "meters"),
  27961. weight: math.unit(150, "lb"),
  27962. name: "Front",
  27963. image: {
  27964. source: "./media/characters/tharquench-sizestealer/front.svg",
  27965. extra: 1605/1470,
  27966. bottom: 36/1641
  27967. }
  27968. },
  27969. frontAlt: {
  27970. height: math.unit(2.1, "meters"),
  27971. weight: math.unit(150, "lb"),
  27972. name: "Front (Alt)",
  27973. image: {
  27974. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27975. extra: 2318 / 2063,
  27976. bottom: 93.4 / 2410
  27977. }
  27978. },
  27979. },
  27980. [
  27981. {
  27982. name: "Nano",
  27983. height: math.unit(1, "mm")
  27984. },
  27985. {
  27986. name: "Micro",
  27987. height: math.unit(1, "cm")
  27988. },
  27989. {
  27990. name: "Normal",
  27991. height: math.unit(2.1, "meters"),
  27992. default: true
  27993. },
  27994. ]
  27995. ))
  27996. characterMakers.push(() => makeCharacter(
  27997. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27998. {
  27999. front: {
  28000. height: math.unit(7 + 5 / 12, "feet"),
  28001. weight: math.unit(357, "lb"),
  28002. name: "Front",
  28003. image: {
  28004. source: "./media/characters/solex-draconov/front.svg",
  28005. extra: 1993 / 1865,
  28006. bottom: 117 / 2111
  28007. }
  28008. },
  28009. },
  28010. [
  28011. {
  28012. name: "Natural Height",
  28013. height: math.unit(7 + 5 / 12, "feet"),
  28014. default: true
  28015. },
  28016. {
  28017. name: "Macro",
  28018. height: math.unit(350, "feet")
  28019. },
  28020. {
  28021. name: "Macro+",
  28022. height: math.unit(1000, "feet")
  28023. },
  28024. {
  28025. name: "Megamacro",
  28026. height: math.unit(20, "km")
  28027. },
  28028. {
  28029. name: "Megamacro+",
  28030. height: math.unit(1000, "km")
  28031. },
  28032. {
  28033. name: "Gigamacro",
  28034. height: math.unit(2.5, "Gm")
  28035. },
  28036. {
  28037. name: "Teramacro",
  28038. height: math.unit(15, "Tm")
  28039. },
  28040. {
  28041. name: "Galactic",
  28042. height: math.unit(30, "Zm")
  28043. },
  28044. {
  28045. name: "Universal",
  28046. height: math.unit(21000, "Ym")
  28047. },
  28048. {
  28049. name: "Omniversal",
  28050. height: math.unit(9.861e50, "Ym")
  28051. },
  28052. {
  28053. name: "Existential",
  28054. height: math.unit(1e300, "meters")
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28060. {
  28061. side: {
  28062. height: math.unit(25, "feet"),
  28063. weight: math.unit(90000, "lb"),
  28064. name: "Side",
  28065. image: {
  28066. source: "./media/characters/mandarax/side.svg",
  28067. extra: 614 / 332,
  28068. bottom: 55 / 630
  28069. }
  28070. },
  28071. lounging: {
  28072. height: math.unit(15.4, "feet"),
  28073. weight: math.unit(90000, "lb"),
  28074. name: "Lounging",
  28075. image: {
  28076. source: "./media/characters/mandarax/lounging.svg",
  28077. extra: 817/609,
  28078. bottom: 685/1502
  28079. }
  28080. },
  28081. head: {
  28082. height: math.unit(11.4, "feet"),
  28083. name: "Head",
  28084. image: {
  28085. source: "./media/characters/mandarax/head.svg"
  28086. }
  28087. },
  28088. belly: {
  28089. height: math.unit(33, "feet"),
  28090. name: "Belly",
  28091. preyCapacity: math.unit(500, "people"),
  28092. image: {
  28093. source: "./media/characters/mandarax/belly.svg"
  28094. }
  28095. },
  28096. dick: {
  28097. height: math.unit(8.46, "feet"),
  28098. name: "Dick",
  28099. image: {
  28100. source: "./media/characters/mandarax/dick.svg"
  28101. }
  28102. },
  28103. top: {
  28104. height: math.unit(28, "meters"),
  28105. name: "Top",
  28106. image: {
  28107. source: "./media/characters/mandarax/top.svg"
  28108. }
  28109. },
  28110. },
  28111. [
  28112. {
  28113. name: "Normal",
  28114. height: math.unit(25, "feet"),
  28115. default: true
  28116. },
  28117. ]
  28118. ))
  28119. characterMakers.push(() => makeCharacter(
  28120. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28121. {
  28122. front: {
  28123. height: math.unit(5, "feet"),
  28124. weight: math.unit(90, "lb"),
  28125. name: "Front",
  28126. image: {
  28127. source: "./media/characters/pixil/front.svg",
  28128. extra: 2000 / 1618,
  28129. bottom: 12.3 / 2011
  28130. }
  28131. },
  28132. },
  28133. [
  28134. {
  28135. name: "Normal",
  28136. height: math.unit(5, "feet"),
  28137. default: true
  28138. },
  28139. {
  28140. name: "Megamacro",
  28141. height: math.unit(10, "miles"),
  28142. },
  28143. ]
  28144. ))
  28145. characterMakers.push(() => makeCharacter(
  28146. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28147. {
  28148. front: {
  28149. height: math.unit(7 + 2 / 12, "feet"),
  28150. weight: math.unit(200, "lb"),
  28151. name: "Front",
  28152. image: {
  28153. source: "./media/characters/angel/front.svg",
  28154. extra: 1946/1840,
  28155. bottom: 30/1976
  28156. }
  28157. },
  28158. },
  28159. [
  28160. {
  28161. name: "Normal",
  28162. height: math.unit(7 + 2 / 12, "feet"),
  28163. default: true
  28164. },
  28165. {
  28166. name: "Macro",
  28167. height: math.unit(1000, "feet")
  28168. },
  28169. {
  28170. name: "Megamacro",
  28171. height: math.unit(2, "miles")
  28172. },
  28173. {
  28174. name: "Gigamacro",
  28175. height: math.unit(20, "earths")
  28176. },
  28177. ]
  28178. ))
  28179. characterMakers.push(() => makeCharacter(
  28180. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28181. {
  28182. front: {
  28183. height: math.unit(5, "feet"),
  28184. weight: math.unit(180, "lb"),
  28185. name: "Front",
  28186. image: {
  28187. source: "./media/characters/mekana/front.svg",
  28188. extra: 1671 / 1605,
  28189. bottom: 3.5 / 1691
  28190. }
  28191. },
  28192. side: {
  28193. height: math.unit(5, "feet"),
  28194. weight: math.unit(180, "lb"),
  28195. name: "Side",
  28196. image: {
  28197. source: "./media/characters/mekana/side.svg",
  28198. extra: 1671 / 1605,
  28199. bottom: 3.5 / 1691
  28200. }
  28201. },
  28202. back: {
  28203. height: math.unit(5, "feet"),
  28204. weight: math.unit(180, "lb"),
  28205. name: "Back",
  28206. image: {
  28207. source: "./media/characters/mekana/back.svg",
  28208. extra: 1671 / 1605,
  28209. bottom: 3.5 / 1691
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(5, "feet"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28223. {
  28224. front: {
  28225. height: math.unit(4 + 6 / 12, "feet"),
  28226. weight: math.unit(80, "lb"),
  28227. name: "Front",
  28228. image: {
  28229. source: "./media/characters/pixie/front.svg",
  28230. extra: 1924 / 1825,
  28231. bottom: 22.4 / 1946
  28232. }
  28233. },
  28234. },
  28235. [
  28236. {
  28237. name: "Normal",
  28238. height: math.unit(4 + 6 / 12, "feet"),
  28239. default: true
  28240. },
  28241. {
  28242. name: "Macro",
  28243. height: math.unit(40, "feet")
  28244. },
  28245. ]
  28246. ))
  28247. characterMakers.push(() => makeCharacter(
  28248. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28249. {
  28250. front: {
  28251. height: math.unit(2.1, "meters"),
  28252. weight: math.unit(200, "lb"),
  28253. name: "Front",
  28254. image: {
  28255. source: "./media/characters/the-lascivious/front.svg",
  28256. extra: 1 / 0.893,
  28257. bottom: 3.5 / 573.7
  28258. }
  28259. },
  28260. },
  28261. [
  28262. {
  28263. name: "Human Scale",
  28264. height: math.unit(2.1, "meters")
  28265. },
  28266. {
  28267. name: "Wolxi Scale",
  28268. height: math.unit(46.2, "m"),
  28269. default: true
  28270. },
  28271. {
  28272. name: "Boinker of Buildings",
  28273. height: math.unit(10, "km")
  28274. },
  28275. {
  28276. name: "Shagger of Skyscrapers",
  28277. height: math.unit(40, "km")
  28278. },
  28279. {
  28280. name: "Banger of Boroughs",
  28281. height: math.unit(4000, "km")
  28282. },
  28283. {
  28284. name: "Screwer of States",
  28285. height: math.unit(100000, "km")
  28286. },
  28287. {
  28288. name: "Pounder of Planets",
  28289. height: math.unit(2000000, "km")
  28290. },
  28291. ]
  28292. ))
  28293. characterMakers.push(() => makeCharacter(
  28294. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28295. {
  28296. front: {
  28297. height: math.unit(6, "feet"),
  28298. weight: math.unit(150, "lb"),
  28299. name: "Front",
  28300. image: {
  28301. source: "./media/characters/aj/front.svg",
  28302. extra: 2039 / 1562,
  28303. bottom: 40 / 2079
  28304. }
  28305. },
  28306. },
  28307. [
  28308. {
  28309. name: "Normal",
  28310. height: math.unit(11 + 6 / 12, "feet"),
  28311. default: true
  28312. },
  28313. {
  28314. name: "Megamacro",
  28315. height: math.unit(60, "megameters")
  28316. },
  28317. ]
  28318. ))
  28319. characterMakers.push(() => makeCharacter(
  28320. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28321. {
  28322. side: {
  28323. height: math.unit(31 + 8 / 12, "feet"),
  28324. weight: math.unit(75000, "kg"),
  28325. name: "Side",
  28326. image: {
  28327. source: "./media/characters/koros/side.svg",
  28328. extra: 1442 / 1297,
  28329. bottom: 122.7 / 1562
  28330. }
  28331. },
  28332. dicksKingsCrown: {
  28333. height: math.unit(6, "feet"),
  28334. name: "Dicks (King's Crown)",
  28335. image: {
  28336. source: "./media/characters/koros/dicks-kings-crown.svg"
  28337. }
  28338. },
  28339. dicksTailSet: {
  28340. height: math.unit(3, "feet"),
  28341. name: "Dicks (Tail Set)",
  28342. image: {
  28343. source: "./media/characters/koros/dicks-tail-set.svg"
  28344. }
  28345. },
  28346. dickCumming: {
  28347. height: math.unit(7.98, "feet"),
  28348. name: "Dick (Cumming)",
  28349. image: {
  28350. source: "./media/characters/koros/dick-cumming.svg"
  28351. }
  28352. },
  28353. dicksBack: {
  28354. height: math.unit(5.9, "feet"),
  28355. name: "Dicks (Back)",
  28356. image: {
  28357. source: "./media/characters/koros/dicks-back.svg"
  28358. }
  28359. },
  28360. dicksFront: {
  28361. height: math.unit(3.72, "feet"),
  28362. name: "Dicks (Front)",
  28363. image: {
  28364. source: "./media/characters/koros/dicks-front.svg"
  28365. }
  28366. },
  28367. dicksPeeking: {
  28368. height: math.unit(3.0, "feet"),
  28369. name: "Dicks (Peeking)",
  28370. image: {
  28371. source: "./media/characters/koros/dicks-peeking.svg"
  28372. }
  28373. },
  28374. eye: {
  28375. height: math.unit(1.7, "feet"),
  28376. name: "Eye",
  28377. image: {
  28378. source: "./media/characters/koros/eye.svg"
  28379. }
  28380. },
  28381. headFront: {
  28382. height: math.unit(11.69, "feet"),
  28383. name: "Head (Front)",
  28384. image: {
  28385. source: "./media/characters/koros/head-front.svg"
  28386. }
  28387. },
  28388. headSide: {
  28389. height: math.unit(14, "feet"),
  28390. name: "Head (Side)",
  28391. image: {
  28392. source: "./media/characters/koros/head-side.svg"
  28393. }
  28394. },
  28395. leg: {
  28396. height: math.unit(17, "feet"),
  28397. name: "Leg",
  28398. image: {
  28399. source: "./media/characters/koros/leg.svg"
  28400. }
  28401. },
  28402. mawSide: {
  28403. height: math.unit(12.8, "feet"),
  28404. name: "Maw (Side)",
  28405. image: {
  28406. source: "./media/characters/koros/maw-side.svg"
  28407. }
  28408. },
  28409. mawSpitting: {
  28410. height: math.unit(17, "feet"),
  28411. name: "Maw (Spitting)",
  28412. image: {
  28413. source: "./media/characters/koros/maw-spitting.svg"
  28414. }
  28415. },
  28416. slit: {
  28417. height: math.unit(2.8, "feet"),
  28418. name: "Slit",
  28419. image: {
  28420. source: "./media/characters/koros/slit.svg"
  28421. }
  28422. },
  28423. stomach: {
  28424. height: math.unit(6.8, "feet"),
  28425. preyCapacity: math.unit(20, "people"),
  28426. name: "Stomach",
  28427. image: {
  28428. source: "./media/characters/koros/stomach.svg"
  28429. }
  28430. },
  28431. wingspanBottom: {
  28432. height: math.unit(114, "feet"),
  28433. name: "Wingspan (Bottom)",
  28434. image: {
  28435. source: "./media/characters/koros/wingspan-bottom.svg"
  28436. }
  28437. },
  28438. wingspanTop: {
  28439. height: math.unit(104, "feet"),
  28440. name: "Wingspan (Top)",
  28441. image: {
  28442. source: "./media/characters/koros/wingspan-top.svg"
  28443. }
  28444. },
  28445. },
  28446. [
  28447. {
  28448. name: "Normal",
  28449. height: math.unit(31 + 8 / 12, "feet"),
  28450. default: true
  28451. },
  28452. ]
  28453. ))
  28454. characterMakers.push(() => makeCharacter(
  28455. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28456. {
  28457. front: {
  28458. height: math.unit(18 + 5 / 12, "feet"),
  28459. weight: math.unit(3750, "kg"),
  28460. name: "Front",
  28461. image: {
  28462. source: "./media/characters/vexx/front.svg",
  28463. extra: 426 / 396,
  28464. bottom: 31.5 / 458
  28465. }
  28466. },
  28467. maw: {
  28468. height: math.unit(6, "feet"),
  28469. name: "Maw",
  28470. image: {
  28471. source: "./media/characters/vexx/maw.svg"
  28472. }
  28473. },
  28474. },
  28475. [
  28476. {
  28477. name: "Normal",
  28478. height: math.unit(18 + 5 / 12, "feet"),
  28479. default: true
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28485. {
  28486. front: {
  28487. height: math.unit(17 + 6 / 12, "feet"),
  28488. weight: math.unit(150, "lb"),
  28489. name: "Front",
  28490. image: {
  28491. source: "./media/characters/baadra/front.svg",
  28492. extra: 1694/1553,
  28493. bottom: 179/1873
  28494. }
  28495. },
  28496. frontAlt: {
  28497. height: math.unit(17 + 6 / 12, "feet"),
  28498. weight: math.unit(150, "lb"),
  28499. name: "Front (Alt)",
  28500. image: {
  28501. source: "./media/characters/baadra/front-alt.svg",
  28502. extra: 3137 / 2890,
  28503. bottom: 168.4 / 3305
  28504. }
  28505. },
  28506. back: {
  28507. height: math.unit(17 + 6 / 12, "feet"),
  28508. weight: math.unit(150, "lb"),
  28509. name: "Back",
  28510. image: {
  28511. source: "./media/characters/baadra/back.svg",
  28512. extra: 3142 / 2890,
  28513. bottom: 220 / 3371
  28514. }
  28515. },
  28516. head: {
  28517. height: math.unit(5.45, "feet"),
  28518. name: "Head",
  28519. image: {
  28520. source: "./media/characters/baadra/head.svg"
  28521. }
  28522. },
  28523. headAngry: {
  28524. height: math.unit(4.95, "feet"),
  28525. name: "Head (Angry)",
  28526. image: {
  28527. source: "./media/characters/baadra/head-angry.svg"
  28528. }
  28529. },
  28530. headOpen: {
  28531. height: math.unit(6, "feet"),
  28532. name: "Head (Open)",
  28533. image: {
  28534. source: "./media/characters/baadra/head-open.svg"
  28535. }
  28536. },
  28537. },
  28538. [
  28539. {
  28540. name: "Normal",
  28541. height: math.unit(17 + 6 / 12, "feet"),
  28542. default: true
  28543. },
  28544. ]
  28545. ))
  28546. characterMakers.push(() => makeCharacter(
  28547. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28548. {
  28549. front: {
  28550. height: math.unit(7 + 3 / 12, "feet"),
  28551. weight: math.unit(180, "lb"),
  28552. name: "Front",
  28553. image: {
  28554. source: "./media/characters/juri/front.svg",
  28555. extra: 1401 / 1237,
  28556. bottom: 18.5 / 1418
  28557. }
  28558. },
  28559. side: {
  28560. height: math.unit(7 + 3 / 12, "feet"),
  28561. weight: math.unit(180, "lb"),
  28562. name: "Side",
  28563. image: {
  28564. source: "./media/characters/juri/side.svg",
  28565. extra: 1424 / 1242,
  28566. bottom: 18.5 / 1447
  28567. }
  28568. },
  28569. sitting: {
  28570. height: math.unit(6, "feet"),
  28571. weight: math.unit(180, "lb"),
  28572. name: "Sitting",
  28573. image: {
  28574. source: "./media/characters/juri/sitting.svg",
  28575. extra: 1270 / 1143,
  28576. bottom: 100 / 1343
  28577. }
  28578. },
  28579. back: {
  28580. height: math.unit(7 + 3 / 12, "feet"),
  28581. weight: math.unit(180, "lb"),
  28582. name: "Back",
  28583. image: {
  28584. source: "./media/characters/juri/back.svg",
  28585. extra: 1377 / 1240,
  28586. bottom: 23.7 / 1405
  28587. }
  28588. },
  28589. maw: {
  28590. height: math.unit(2.8, "feet"),
  28591. name: "Maw",
  28592. image: {
  28593. source: "./media/characters/juri/maw.svg"
  28594. }
  28595. },
  28596. stomach: {
  28597. height: math.unit(0.89, "feet"),
  28598. preyCapacity: math.unit(4, "liters"),
  28599. name: "Stomach",
  28600. image: {
  28601. source: "./media/characters/juri/stomach.svg"
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Normal",
  28608. height: math.unit(7 + 3 / 12, "feet"),
  28609. default: true
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28615. {
  28616. fox: {
  28617. height: math.unit(5 + 6 / 12, "feet"),
  28618. weight: math.unit(140, "lb"),
  28619. name: "Fox",
  28620. image: {
  28621. source: "./media/characters/maxene-sita/fox.svg",
  28622. extra: 146 / 138,
  28623. bottom: 2.1 / 148.19
  28624. }
  28625. },
  28626. foxLaying: {
  28627. height: math.unit(1.70, "feet"),
  28628. weight: math.unit(140, "lb"),
  28629. name: "Fox (Laying)",
  28630. image: {
  28631. source: "./media/characters/maxene-sita/fox-laying.svg",
  28632. extra: 910 / 572,
  28633. bottom: 71 / 981
  28634. }
  28635. },
  28636. kitsune: {
  28637. height: math.unit(10, "feet"),
  28638. weight: math.unit(800, "lb"),
  28639. name: "Kitsune",
  28640. image: {
  28641. source: "./media/characters/maxene-sita/kitsune.svg",
  28642. extra: 185 / 176,
  28643. bottom: 4.7 / 189.9
  28644. }
  28645. },
  28646. hellhound: {
  28647. height: math.unit(10, "feet"),
  28648. weight: math.unit(700, "lb"),
  28649. name: "Hellhound",
  28650. image: {
  28651. source: "./media/characters/maxene-sita/hellhound.svg",
  28652. extra: 1600 / 1545,
  28653. bottom: 81 / 1681
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Normal",
  28660. height: math.unit(5 + 6 / 12, "feet"),
  28661. default: true
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28667. {
  28668. front: {
  28669. height: math.unit(3 + 4 / 12, "feet"),
  28670. weight: math.unit(70, "lb"),
  28671. name: "Front",
  28672. image: {
  28673. source: "./media/characters/maia/front.svg",
  28674. extra: 227 / 219.5,
  28675. bottom: 40 / 267
  28676. }
  28677. },
  28678. back: {
  28679. height: math.unit(3 + 4 / 12, "feet"),
  28680. weight: math.unit(70, "lb"),
  28681. name: "Back",
  28682. image: {
  28683. source: "./media/characters/maia/back.svg",
  28684. extra: 237 / 225
  28685. }
  28686. },
  28687. },
  28688. [
  28689. {
  28690. name: "Normal",
  28691. height: math.unit(3 + 4 / 12, "feet"),
  28692. default: true
  28693. },
  28694. ]
  28695. ))
  28696. characterMakers.push(() => makeCharacter(
  28697. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28698. {
  28699. front: {
  28700. height: math.unit(5 + 10 / 12, "feet"),
  28701. weight: math.unit(197, "lb"),
  28702. name: "Front",
  28703. image: {
  28704. source: "./media/characters/jabaro/front.svg",
  28705. extra: 225 / 216,
  28706. bottom: 5.06 / 230
  28707. }
  28708. },
  28709. back: {
  28710. height: math.unit(5 + 10 / 12, "feet"),
  28711. weight: math.unit(197, "lb"),
  28712. name: "Back",
  28713. image: {
  28714. source: "./media/characters/jabaro/back.svg",
  28715. extra: 225 / 219,
  28716. bottom: 1.9 / 227
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Normal",
  28723. height: math.unit(5 + 10 / 12, "feet"),
  28724. default: true
  28725. },
  28726. ]
  28727. ))
  28728. characterMakers.push(() => makeCharacter(
  28729. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28730. {
  28731. front: {
  28732. height: math.unit(5 + 8 / 12, "feet"),
  28733. weight: math.unit(139, "lb"),
  28734. name: "Front",
  28735. image: {
  28736. source: "./media/characters/risa/front.svg",
  28737. extra: 270 / 260,
  28738. bottom: 11.2 / 282
  28739. }
  28740. },
  28741. back: {
  28742. height: math.unit(5 + 8 / 12, "feet"),
  28743. weight: math.unit(139, "lb"),
  28744. name: "Back",
  28745. image: {
  28746. source: "./media/characters/risa/back.svg",
  28747. extra: 264 / 255,
  28748. bottom: 4 / 268
  28749. }
  28750. },
  28751. },
  28752. [
  28753. {
  28754. name: "Normal",
  28755. height: math.unit(5 + 8 / 12, "feet"),
  28756. default: true
  28757. },
  28758. ]
  28759. ))
  28760. characterMakers.push(() => makeCharacter(
  28761. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28762. {
  28763. front: {
  28764. height: math.unit(2 + 11 / 12, "feet"),
  28765. weight: math.unit(30, "lb"),
  28766. name: "Front",
  28767. image: {
  28768. source: "./media/characters/weatley/front.svg",
  28769. bottom: 10.7 / 414,
  28770. extra: 403.5 / 362
  28771. }
  28772. },
  28773. back: {
  28774. height: math.unit(2 + 11 / 12, "feet"),
  28775. weight: math.unit(30, "lb"),
  28776. name: "Back",
  28777. image: {
  28778. source: "./media/characters/weatley/back.svg",
  28779. bottom: 10.7 / 414,
  28780. extra: 403.5 / 362
  28781. }
  28782. },
  28783. },
  28784. [
  28785. {
  28786. name: "Normal",
  28787. height: math.unit(2 + 11 / 12, "feet"),
  28788. default: true
  28789. },
  28790. ]
  28791. ))
  28792. characterMakers.push(() => makeCharacter(
  28793. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28794. {
  28795. front: {
  28796. height: math.unit(5 + 2 / 12, "feet"),
  28797. weight: math.unit(50, "kg"),
  28798. name: "Front",
  28799. image: {
  28800. source: "./media/characters/mercury-crescent/front.svg",
  28801. extra: 1088 / 1033,
  28802. bottom: 18.9 / 1109
  28803. }
  28804. },
  28805. },
  28806. [
  28807. {
  28808. name: "Normal",
  28809. height: math.unit(5 + 2 / 12, "feet"),
  28810. default: true
  28811. },
  28812. ]
  28813. ))
  28814. characterMakers.push(() => makeCharacter(
  28815. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28816. {
  28817. front: {
  28818. height: math.unit(2, "feet"),
  28819. weight: math.unit(15, "kg"),
  28820. name: "Front",
  28821. image: {
  28822. source: "./media/characters/diamond-jones/front.svg",
  28823. extra: 727/723,
  28824. bottom: 46/773
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Normal",
  28831. height: math.unit(2, "feet"),
  28832. default: true
  28833. },
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28838. {
  28839. front: {
  28840. height: math.unit(3, "feet"),
  28841. weight: math.unit(30, "kg"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/sweet-bit/front.svg",
  28845. extra: 675 / 567,
  28846. bottom: 27.7 / 703
  28847. }
  28848. },
  28849. },
  28850. [
  28851. {
  28852. name: "Normal",
  28853. height: math.unit(3, "feet"),
  28854. default: true
  28855. },
  28856. ]
  28857. ))
  28858. characterMakers.push(() => makeCharacter(
  28859. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28860. {
  28861. side: {
  28862. height: math.unit(9.178, "feet"),
  28863. weight: math.unit(500, "lb"),
  28864. name: "Side",
  28865. image: {
  28866. source: "./media/characters/umbrazen/side.svg",
  28867. extra: 1730 / 1473,
  28868. bottom: 34.6 / 1765
  28869. }
  28870. },
  28871. },
  28872. [
  28873. {
  28874. name: "Normal",
  28875. height: math.unit(9.178, "feet"),
  28876. default: true
  28877. },
  28878. ]
  28879. ))
  28880. characterMakers.push(() => makeCharacter(
  28881. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28882. {
  28883. front: {
  28884. height: math.unit(10, "feet"),
  28885. weight: math.unit(750, "lb"),
  28886. name: "Front",
  28887. image: {
  28888. source: "./media/characters/arlist/front.svg",
  28889. extra: 961 / 778,
  28890. bottom: 6.2 / 986
  28891. }
  28892. },
  28893. },
  28894. [
  28895. {
  28896. name: "Normal",
  28897. height: math.unit(10, "feet"),
  28898. default: true
  28899. },
  28900. ]
  28901. ))
  28902. characterMakers.push(() => makeCharacter(
  28903. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28904. {
  28905. front: {
  28906. height: math.unit(5 + 1 / 12, "feet"),
  28907. weight: math.unit(110, "lb"),
  28908. name: "Front",
  28909. image: {
  28910. source: "./media/characters/aradel/front.svg",
  28911. extra: 324 / 303,
  28912. bottom: 3.6 / 329.4
  28913. }
  28914. },
  28915. },
  28916. [
  28917. {
  28918. name: "Normal",
  28919. height: math.unit(5 + 1 / 12, "feet"),
  28920. default: true
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28926. {
  28927. dressed: {
  28928. height: math.unit(3 + 8 / 12, "feet"),
  28929. weight: math.unit(50, "lb"),
  28930. name: "Dressed",
  28931. image: {
  28932. source: "./media/characters/serryn/dressed.svg",
  28933. extra: 1792 / 1656,
  28934. bottom: 43.5 / 1840
  28935. }
  28936. },
  28937. nude: {
  28938. height: math.unit(3 + 8 / 12, "feet"),
  28939. weight: math.unit(50, "lb"),
  28940. name: "Nude",
  28941. image: {
  28942. source: "./media/characters/serryn/nude.svg",
  28943. extra: 1792 / 1656,
  28944. bottom: 43.5 / 1840
  28945. }
  28946. },
  28947. },
  28948. [
  28949. {
  28950. name: "Normal",
  28951. height: math.unit(3 + 8 / 12, "feet"),
  28952. default: true
  28953. },
  28954. ]
  28955. ))
  28956. characterMakers.push(() => makeCharacter(
  28957. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28958. {
  28959. front: {
  28960. height: math.unit(7 + 10 / 12, "feet"),
  28961. weight: math.unit(255, "lb"),
  28962. name: "Front",
  28963. image: {
  28964. source: "./media/characters/xavier-thyme/front.svg",
  28965. extra: 3733 / 3642,
  28966. bottom: 131 / 3869
  28967. }
  28968. },
  28969. frontRaven: {
  28970. height: math.unit(7 + 10 / 12, "feet"),
  28971. weight: math.unit(255, "lb"),
  28972. name: "Front (Raven)",
  28973. image: {
  28974. source: "./media/characters/xavier-thyme/front-raven.svg",
  28975. extra: 4385 / 3642,
  28976. bottom: 131 / 4517
  28977. }
  28978. },
  28979. },
  28980. [
  28981. {
  28982. name: "Normal",
  28983. height: math.unit(7 + 10 / 12, "feet"),
  28984. default: true
  28985. },
  28986. ]
  28987. ))
  28988. characterMakers.push(() => makeCharacter(
  28989. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28990. {
  28991. front: {
  28992. height: math.unit(1.6, "m"),
  28993. weight: math.unit(50, "kg"),
  28994. name: "Front",
  28995. image: {
  28996. source: "./media/characters/kiki/front.svg",
  28997. extra: 4682 / 3610,
  28998. bottom: 115 / 4777
  28999. }
  29000. },
  29001. },
  29002. [
  29003. {
  29004. name: "Normal",
  29005. height: math.unit(1.6, "meters"),
  29006. default: true
  29007. },
  29008. ]
  29009. ))
  29010. characterMakers.push(() => makeCharacter(
  29011. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29012. {
  29013. front: {
  29014. height: math.unit(50, "m"),
  29015. weight: math.unit(500, "tonnes"),
  29016. name: "Front",
  29017. image: {
  29018. source: "./media/characters/ryoko/front.svg",
  29019. extra: 4632 / 3926,
  29020. bottom: 193 / 4823
  29021. }
  29022. },
  29023. },
  29024. [
  29025. {
  29026. name: "Normal",
  29027. height: math.unit(50, "meters"),
  29028. default: true
  29029. },
  29030. ]
  29031. ))
  29032. characterMakers.push(() => makeCharacter(
  29033. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29034. {
  29035. front: {
  29036. height: math.unit(30, "m"),
  29037. weight: math.unit(22, "tonnes"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/elio/front.svg",
  29041. extra: 4582 / 3720,
  29042. bottom: 236 / 4828
  29043. }
  29044. },
  29045. },
  29046. [
  29047. {
  29048. name: "Normal",
  29049. height: math.unit(30, "meters"),
  29050. default: true
  29051. },
  29052. ]
  29053. ))
  29054. characterMakers.push(() => makeCharacter(
  29055. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29056. {
  29057. front: {
  29058. height: math.unit(6 + 3 / 12, "feet"),
  29059. weight: math.unit(120, "lb"),
  29060. name: "Front",
  29061. image: {
  29062. source: "./media/characters/azura/front.svg",
  29063. extra: 1149 / 1135,
  29064. bottom: 45 / 1194
  29065. }
  29066. },
  29067. frontClothed: {
  29068. height: math.unit(6 + 3 / 12, "feet"),
  29069. weight: math.unit(120, "lb"),
  29070. name: "Front (Clothed)",
  29071. image: {
  29072. source: "./media/characters/azura/front-clothed.svg",
  29073. extra: 1149 / 1135,
  29074. bottom: 45 / 1194
  29075. }
  29076. },
  29077. },
  29078. [
  29079. {
  29080. name: "Normal",
  29081. height: math.unit(6 + 3 / 12, "feet"),
  29082. default: true
  29083. },
  29084. {
  29085. name: "Macro",
  29086. height: math.unit(20 + 6 / 12, "feet")
  29087. },
  29088. {
  29089. name: "Megamacro",
  29090. height: math.unit(12, "miles")
  29091. },
  29092. {
  29093. name: "Gigamacro",
  29094. height: math.unit(10000, "miles")
  29095. },
  29096. {
  29097. name: "Teramacro",
  29098. height: math.unit(900000, "miles")
  29099. },
  29100. ]
  29101. ))
  29102. characterMakers.push(() => makeCharacter(
  29103. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29104. {
  29105. front: {
  29106. height: math.unit(12, "feet"),
  29107. weight: math.unit(1, "ton"),
  29108. capacity: math.unit(660000, "gallons"),
  29109. name: "Front",
  29110. image: {
  29111. source: "./media/characters/zeus/front.svg",
  29112. extra: 5005 / 4717,
  29113. bottom: 363 / 5388
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Normal",
  29120. height: math.unit(12, "feet")
  29121. },
  29122. {
  29123. name: "Preferred Size",
  29124. height: math.unit(0.5, "miles"),
  29125. default: true
  29126. },
  29127. {
  29128. name: "Giga Horse",
  29129. height: math.unit(300, "miles")
  29130. },
  29131. {
  29132. name: "Riding Planets",
  29133. height: math.unit(30, "megameters")
  29134. },
  29135. {
  29136. name: "Cosmic Giant",
  29137. height: math.unit(3, "zettameters")
  29138. },
  29139. {
  29140. name: "Breeding God",
  29141. height: math.unit(9.92e22, "yottameters")
  29142. },
  29143. ]
  29144. ))
  29145. characterMakers.push(() => makeCharacter(
  29146. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29147. {
  29148. side: {
  29149. height: math.unit(9, "feet"),
  29150. weight: math.unit(1500, "kg"),
  29151. name: "Side",
  29152. image: {
  29153. source: "./media/characters/fang/side.svg",
  29154. extra: 924 / 866,
  29155. bottom: 47.5 / 972.3
  29156. }
  29157. },
  29158. },
  29159. [
  29160. {
  29161. name: "Normal",
  29162. height: math.unit(9, "feet"),
  29163. default: true
  29164. },
  29165. {
  29166. name: "Macro",
  29167. height: math.unit(75 + 6 / 12, "feet")
  29168. },
  29169. {
  29170. name: "Teramacro",
  29171. height: math.unit(50000, "miles")
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29177. {
  29178. front: {
  29179. height: math.unit(10, "feet"),
  29180. weight: math.unit(2, "tons"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/rekhit/front.svg",
  29184. extra: 2796 / 2590,
  29185. bottom: 225 / 3022
  29186. }
  29187. },
  29188. },
  29189. [
  29190. {
  29191. name: "Normal",
  29192. height: math.unit(10, "feet"),
  29193. default: true
  29194. },
  29195. {
  29196. name: "Macro",
  29197. height: math.unit(500, "feet")
  29198. },
  29199. ]
  29200. ))
  29201. characterMakers.push(() => makeCharacter(
  29202. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29203. {
  29204. front: {
  29205. height: math.unit(7 + 6.451 / 12, "feet"),
  29206. weight: math.unit(310, "lb"),
  29207. name: "Front",
  29208. image: {
  29209. source: "./media/characters/dahlia-verrick/front.svg",
  29210. extra: 1488 / 1365,
  29211. bottom: 6.2 / 1495
  29212. }
  29213. },
  29214. back: {
  29215. height: math.unit(7 + 6.451 / 12, "feet"),
  29216. weight: math.unit(310, "lb"),
  29217. name: "Back",
  29218. image: {
  29219. source: "./media/characters/dahlia-verrick/back.svg",
  29220. extra: 1472 / 1351,
  29221. bottom: 5.28 / 1477
  29222. }
  29223. },
  29224. frontBusiness: {
  29225. height: math.unit(7 + 6.451 / 12, "feet"),
  29226. weight: math.unit(200, "lb"),
  29227. name: "Front (Business)",
  29228. image: {
  29229. source: "./media/characters/dahlia-verrick/front-business.svg",
  29230. extra: 1478 / 1381,
  29231. bottom: 5.5 / 1484
  29232. }
  29233. },
  29234. frontCasual: {
  29235. height: math.unit(7 + 6.451 / 12, "feet"),
  29236. weight: math.unit(200, "lb"),
  29237. name: "Front (Casual)",
  29238. image: {
  29239. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29240. extra: 1478 / 1381,
  29241. bottom: 5.5 / 1484
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Travel-Sized",
  29248. height: math.unit(7.45, "inches")
  29249. },
  29250. {
  29251. name: "Normal",
  29252. height: math.unit(7 + 6.451 / 12, "feet"),
  29253. default: true
  29254. },
  29255. {
  29256. name: "Hitting the Town",
  29257. height: math.unit(37 + 8 / 12, "feet")
  29258. },
  29259. {
  29260. name: "Stomp in the Suburbs",
  29261. height: math.unit(964 + 9.728 / 12, "feet")
  29262. },
  29263. {
  29264. name: "Sit on the City",
  29265. height: math.unit(61747 + 10.592 / 12, "feet")
  29266. },
  29267. {
  29268. name: "Glomp the Globe",
  29269. height: math.unit(252919327 + 4.832 / 12, "feet")
  29270. },
  29271. ]
  29272. ))
  29273. characterMakers.push(() => makeCharacter(
  29274. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29275. {
  29276. front: {
  29277. height: math.unit(6 + 4 / 12, "feet"),
  29278. weight: math.unit(320, "lb"),
  29279. name: "Front",
  29280. image: {
  29281. source: "./media/characters/balina-mahigan/front.svg",
  29282. extra: 447 / 428,
  29283. bottom: 18 / 466
  29284. }
  29285. },
  29286. back: {
  29287. height: math.unit(6 + 4 / 12, "feet"),
  29288. weight: math.unit(320, "lb"),
  29289. name: "Back",
  29290. image: {
  29291. source: "./media/characters/balina-mahigan/back.svg",
  29292. extra: 445 / 428,
  29293. bottom: 4.07 / 448
  29294. }
  29295. },
  29296. arm: {
  29297. height: math.unit(1.88, "feet"),
  29298. name: "Arm",
  29299. image: {
  29300. source: "./media/characters/balina-mahigan/arm.svg"
  29301. }
  29302. },
  29303. backPort: {
  29304. height: math.unit(0.685, "feet"),
  29305. name: "Back Port",
  29306. image: {
  29307. source: "./media/characters/balina-mahigan/back-port.svg"
  29308. }
  29309. },
  29310. hoofpaw: {
  29311. height: math.unit(1.41, "feet"),
  29312. name: "Hoofpaw",
  29313. image: {
  29314. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29315. }
  29316. },
  29317. leftHandBack: {
  29318. height: math.unit(0.938, "feet"),
  29319. name: "Left Hand (Back)",
  29320. image: {
  29321. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29322. }
  29323. },
  29324. leftHandFront: {
  29325. height: math.unit(0.938, "feet"),
  29326. name: "Left Hand (Front)",
  29327. image: {
  29328. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29329. }
  29330. },
  29331. rightHandBack: {
  29332. height: math.unit(0.95, "feet"),
  29333. name: "Right Hand (Back)",
  29334. image: {
  29335. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29336. }
  29337. },
  29338. rightHandFront: {
  29339. height: math.unit(0.95, "feet"),
  29340. name: "Right Hand (Front)",
  29341. image: {
  29342. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29343. }
  29344. },
  29345. },
  29346. [
  29347. {
  29348. name: "Normal",
  29349. height: math.unit(6 + 4 / 12, "feet"),
  29350. default: true
  29351. },
  29352. ]
  29353. ))
  29354. characterMakers.push(() => makeCharacter(
  29355. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29356. {
  29357. front: {
  29358. height: math.unit(6, "feet"),
  29359. weight: math.unit(320, "lb"),
  29360. name: "Front",
  29361. image: {
  29362. source: "./media/characters/balina-mejeri/front.svg",
  29363. extra: 517 / 488,
  29364. bottom: 44.2 / 561
  29365. }
  29366. },
  29367. },
  29368. [
  29369. {
  29370. name: "Normal",
  29371. height: math.unit(6 + 4 / 12, "feet")
  29372. },
  29373. {
  29374. name: "Business",
  29375. height: math.unit(155, "feet"),
  29376. default: true
  29377. },
  29378. ]
  29379. ))
  29380. characterMakers.push(() => makeCharacter(
  29381. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29382. {
  29383. kneeling: {
  29384. height: math.unit(6 + 4 / 12, "feet"),
  29385. weight: math.unit(300 * 20, "lb"),
  29386. name: "Kneeling",
  29387. image: {
  29388. source: "./media/characters/balbarian/kneeling.svg",
  29389. extra: 922 / 862,
  29390. bottom: 42.4 / 965
  29391. }
  29392. },
  29393. },
  29394. [
  29395. {
  29396. name: "Normal",
  29397. height: math.unit(6 + 4 / 12, "feet")
  29398. },
  29399. {
  29400. name: "Treasured",
  29401. height: math.unit(18 + 9 / 12, "feet"),
  29402. default: true
  29403. },
  29404. {
  29405. name: "Macro",
  29406. height: math.unit(900, "feet")
  29407. },
  29408. ]
  29409. ))
  29410. characterMakers.push(() => makeCharacter(
  29411. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29412. {
  29413. front: {
  29414. height: math.unit(6 + 4 / 12, "feet"),
  29415. weight: math.unit(325, "lb"),
  29416. name: "Front",
  29417. image: {
  29418. source: "./media/characters/balina-amarini/front.svg",
  29419. extra: 415 / 403,
  29420. bottom: 19 / 433.4
  29421. }
  29422. },
  29423. back: {
  29424. height: math.unit(6 + 4 / 12, "feet"),
  29425. weight: math.unit(325, "lb"),
  29426. name: "Back",
  29427. image: {
  29428. source: "./media/characters/balina-amarini/back.svg",
  29429. extra: 415 / 403,
  29430. bottom: 13.5 / 432
  29431. }
  29432. },
  29433. overdrive: {
  29434. height: math.unit(6 + 4 / 12, "feet"),
  29435. weight: math.unit(400, "lb"),
  29436. name: "Overdrive",
  29437. image: {
  29438. source: "./media/characters/balina-amarini/overdrive.svg",
  29439. extra: 269 / 259,
  29440. bottom: 12 / 282
  29441. }
  29442. },
  29443. },
  29444. [
  29445. {
  29446. name: "Boom",
  29447. height: math.unit(9 + 10 / 12, "feet"),
  29448. default: true
  29449. },
  29450. {
  29451. name: "Macro",
  29452. height: math.unit(280, "feet")
  29453. },
  29454. ]
  29455. ))
  29456. characterMakers.push(() => makeCharacter(
  29457. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29458. {
  29459. goddess: {
  29460. height: math.unit(600, "feet"),
  29461. weight: math.unit(2000000, "tons"),
  29462. name: "Goddess",
  29463. image: {
  29464. source: "./media/characters/lady-kubwa/goddess.svg",
  29465. extra: 1240.5 / 1223,
  29466. bottom: 22 / 1263
  29467. }
  29468. },
  29469. goddesser: {
  29470. height: math.unit(900, "feet"),
  29471. weight: math.unit(20000000, "lb"),
  29472. name: "Goddess-er",
  29473. image: {
  29474. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29475. extra: 899 / 888,
  29476. bottom: 12.6 / 912
  29477. }
  29478. },
  29479. },
  29480. [
  29481. {
  29482. name: "Macro",
  29483. height: math.unit(600, "feet"),
  29484. default: true
  29485. },
  29486. {
  29487. name: "Megamacro",
  29488. height: math.unit(250, "miles")
  29489. },
  29490. ]
  29491. ))
  29492. characterMakers.push(() => makeCharacter(
  29493. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29494. {
  29495. front: {
  29496. height: math.unit(7 + 7 / 12, "feet"),
  29497. weight: math.unit(250, "lb"),
  29498. name: "Front",
  29499. image: {
  29500. source: "./media/characters/tala-grovehorn/front.svg",
  29501. extra: 2636 / 2525,
  29502. bottom: 147 / 2781
  29503. }
  29504. },
  29505. back: {
  29506. height: math.unit(7 + 7 / 12, "feet"),
  29507. weight: math.unit(250, "lb"),
  29508. name: "Back",
  29509. image: {
  29510. source: "./media/characters/tala-grovehorn/back.svg",
  29511. extra: 2635 / 2539,
  29512. bottom: 100 / 2732.8
  29513. }
  29514. },
  29515. mouth: {
  29516. height: math.unit(1.15, "feet"),
  29517. name: "Mouth",
  29518. image: {
  29519. source: "./media/characters/tala-grovehorn/mouth.svg"
  29520. }
  29521. },
  29522. dick: {
  29523. height: math.unit(2.36, "feet"),
  29524. name: "Dick",
  29525. image: {
  29526. source: "./media/characters/tala-grovehorn/dick.svg"
  29527. }
  29528. },
  29529. slit: {
  29530. height: math.unit(0.61, "feet"),
  29531. name: "Slit",
  29532. image: {
  29533. source: "./media/characters/tala-grovehorn/slit.svg"
  29534. }
  29535. },
  29536. },
  29537. [
  29538. ]
  29539. ))
  29540. characterMakers.push(() => makeCharacter(
  29541. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29542. {
  29543. front: {
  29544. height: math.unit(7 + 7 / 12, "feet"),
  29545. weight: math.unit(225, "lb"),
  29546. name: "Front",
  29547. image: {
  29548. source: "./media/characters/epona/front.svg",
  29549. extra: 2445 / 2290,
  29550. bottom: 251 / 2696
  29551. }
  29552. },
  29553. back: {
  29554. height: math.unit(7 + 7 / 12, "feet"),
  29555. weight: math.unit(225, "lb"),
  29556. name: "Back",
  29557. image: {
  29558. source: "./media/characters/epona/back.svg",
  29559. extra: 2546 / 2408,
  29560. bottom: 44 / 2589
  29561. }
  29562. },
  29563. genitals: {
  29564. height: math.unit(1.5, "feet"),
  29565. name: "Genitals",
  29566. image: {
  29567. source: "./media/characters/epona/genitals.svg"
  29568. }
  29569. },
  29570. },
  29571. [
  29572. {
  29573. name: "Normal",
  29574. height: math.unit(7 + 7 / 12, "feet"),
  29575. default: true
  29576. },
  29577. ]
  29578. ))
  29579. characterMakers.push(() => makeCharacter(
  29580. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29581. {
  29582. front: {
  29583. height: math.unit(7, "feet"),
  29584. weight: math.unit(518, "lb"),
  29585. name: "Front",
  29586. image: {
  29587. source: "./media/characters/avia-bloodbourn/front.svg",
  29588. extra: 1466 / 1350,
  29589. bottom: 65 / 1527
  29590. }
  29591. },
  29592. },
  29593. [
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(9.35, "feet"),
  29601. weight: math.unit(600, "lb"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/amera/front.svg",
  29605. extra: 891 / 818,
  29606. bottom: 30 / 922.7
  29607. }
  29608. },
  29609. back: {
  29610. height: math.unit(9.35, "feet"),
  29611. weight: math.unit(600, "lb"),
  29612. name: "Back",
  29613. image: {
  29614. source: "./media/characters/amera/back.svg",
  29615. extra: 876 / 824,
  29616. bottom: 6.8 / 884
  29617. }
  29618. },
  29619. dick: {
  29620. height: math.unit(2.14, "feet"),
  29621. name: "Dick",
  29622. image: {
  29623. source: "./media/characters/amera/dick.svg"
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(9.35, "feet"),
  29631. default: true
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29637. {
  29638. kneeling: {
  29639. height: math.unit(3 + 4 / 12, "feet"),
  29640. weight: math.unit(90, "lb"),
  29641. name: "Kneeling",
  29642. image: {
  29643. source: "./media/characters/rosewen/kneeling.svg",
  29644. extra: 1835 / 1571,
  29645. bottom: 27.7 / 1862
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Normal",
  29652. height: math.unit(3 + 4 / 12, "feet"),
  29653. default: true
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(5 + 10 / 12, "feet"),
  29662. weight: math.unit(200, "lb"),
  29663. name: "Front",
  29664. image: {
  29665. source: "./media/characters/sabah/front.svg",
  29666. extra: 849 / 763,
  29667. bottom: 33.9 / 881
  29668. }
  29669. },
  29670. },
  29671. [
  29672. {
  29673. name: "Normal",
  29674. height: math.unit(5 + 10 / 12, "feet"),
  29675. default: true
  29676. },
  29677. ]
  29678. ))
  29679. characterMakers.push(() => makeCharacter(
  29680. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29681. {
  29682. front: {
  29683. height: math.unit(3 + 5 / 12, "feet"),
  29684. weight: math.unit(40, "kg"),
  29685. name: "Front",
  29686. image: {
  29687. source: "./media/characters/purple-flame/front.svg",
  29688. extra: 1577 / 1412,
  29689. bottom: 97 / 1694
  29690. }
  29691. },
  29692. frontDressed: {
  29693. height: math.unit(3 + 5 / 12, "feet"),
  29694. weight: math.unit(40, "kg"),
  29695. name: "Front (Dressed)",
  29696. image: {
  29697. source: "./media/characters/purple-flame/front-dressed.svg",
  29698. extra: 1577 / 1412,
  29699. bottom: 97 / 1694
  29700. }
  29701. },
  29702. headphones: {
  29703. height: math.unit(0.85, "feet"),
  29704. name: "Headphones",
  29705. image: {
  29706. source: "./media/characters/purple-flame/headphones.svg"
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Really Small",
  29713. height: math.unit(5, "cm")
  29714. },
  29715. {
  29716. name: "Micro",
  29717. height: math.unit(1 + 5 / 12, "feet")
  29718. },
  29719. {
  29720. name: "Normal",
  29721. height: math.unit(3 + 5 / 12, "feet"),
  29722. default: true
  29723. },
  29724. {
  29725. name: "Minimacro",
  29726. height: math.unit(125, "feet")
  29727. },
  29728. {
  29729. name: "Macro",
  29730. height: math.unit(0.5, "miles")
  29731. },
  29732. {
  29733. name: "Megamacro",
  29734. height: math.unit(50, "miles")
  29735. },
  29736. {
  29737. name: "Gigantic",
  29738. height: math.unit(750, "miles")
  29739. },
  29740. {
  29741. name: "Planetary",
  29742. height: math.unit(15000, "miles")
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29748. {
  29749. front: {
  29750. height: math.unit(14, "feet"),
  29751. weight: math.unit(959, "lb"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/arsenal/front.svg",
  29755. extra: 2357 / 2157,
  29756. bottom: 93 / 2458
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Normal",
  29763. height: math.unit(14, "feet"),
  29764. default: true
  29765. },
  29766. ]
  29767. ))
  29768. characterMakers.push(() => makeCharacter(
  29769. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29770. {
  29771. front: {
  29772. height: math.unit(6, "feet"),
  29773. weight: math.unit(150, "lb"),
  29774. name: "Front",
  29775. image: {
  29776. source: "./media/characters/adira/front.svg",
  29777. extra: 2121/2013,
  29778. bottom: 206/2327
  29779. }
  29780. },
  29781. },
  29782. [
  29783. {
  29784. name: "Micro",
  29785. height: math.unit(4, "inches"),
  29786. default: true
  29787. },
  29788. {
  29789. name: "Macro",
  29790. height: math.unit(50, "feet")
  29791. },
  29792. ]
  29793. ))
  29794. characterMakers.push(() => makeCharacter(
  29795. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29796. {
  29797. front: {
  29798. height: math.unit(16, "feet"),
  29799. weight: math.unit(1000, "lb"),
  29800. name: "Front",
  29801. image: {
  29802. source: "./media/characters/grim/front.svg",
  29803. extra: 622 / 614,
  29804. bottom: 18.1 / 642
  29805. }
  29806. },
  29807. back: {
  29808. height: math.unit(16, "feet"),
  29809. weight: math.unit(1000, "lb"),
  29810. name: "Back",
  29811. image: {
  29812. source: "./media/characters/grim/back.svg",
  29813. extra: 610.6 / 602,
  29814. bottom: 40.8 / 652
  29815. }
  29816. },
  29817. hunched: {
  29818. height: math.unit(9.75, "feet"),
  29819. weight: math.unit(1000, "lb"),
  29820. name: "Hunched",
  29821. image: {
  29822. source: "./media/characters/grim/hunched.svg",
  29823. extra: 304 / 297,
  29824. bottom: 35.4 / 394
  29825. }
  29826. },
  29827. },
  29828. [
  29829. {
  29830. name: "Normal",
  29831. height: math.unit(16, "feet"),
  29832. default: true
  29833. },
  29834. ]
  29835. ))
  29836. characterMakers.push(() => makeCharacter(
  29837. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29838. {
  29839. front: {
  29840. height: math.unit(2.3, "meters"),
  29841. weight: math.unit(300, "lb"),
  29842. name: "Front",
  29843. image: {
  29844. source: "./media/characters/sinja/front-sfw.svg",
  29845. extra: 1393 / 1294,
  29846. bottom: 70 / 1463
  29847. }
  29848. },
  29849. frontNsfw: {
  29850. height: math.unit(2.3, "meters"),
  29851. weight: math.unit(300, "lb"),
  29852. name: "Front (NSFW)",
  29853. image: {
  29854. source: "./media/characters/sinja/front-nsfw.svg",
  29855. extra: 1393 / 1294,
  29856. bottom: 70 / 1463
  29857. }
  29858. },
  29859. back: {
  29860. height: math.unit(2.3, "meters"),
  29861. weight: math.unit(300, "lb"),
  29862. name: "Back",
  29863. image: {
  29864. source: "./media/characters/sinja/back.svg",
  29865. extra: 1393 / 1294,
  29866. bottom: 70 / 1463
  29867. }
  29868. },
  29869. head: {
  29870. height: math.unit(1.771, "feet"),
  29871. name: "Head",
  29872. image: {
  29873. source: "./media/characters/sinja/head.svg"
  29874. }
  29875. },
  29876. slit: {
  29877. height: math.unit(0.8, "feet"),
  29878. name: "Slit",
  29879. image: {
  29880. source: "./media/characters/sinja/slit.svg"
  29881. }
  29882. },
  29883. },
  29884. [
  29885. {
  29886. name: "Normal",
  29887. height: math.unit(2.3, "meters")
  29888. },
  29889. {
  29890. name: "Macro",
  29891. height: math.unit(91, "meters"),
  29892. default: true
  29893. },
  29894. {
  29895. name: "Megamacro",
  29896. height: math.unit(91440, "meters")
  29897. },
  29898. {
  29899. name: "Gigamacro",
  29900. height: math.unit(60960000, "meters")
  29901. },
  29902. {
  29903. name: "Teramacro",
  29904. height: math.unit(9144000000, "meters")
  29905. },
  29906. ]
  29907. ))
  29908. characterMakers.push(() => makeCharacter(
  29909. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29910. {
  29911. front: {
  29912. height: math.unit(1.7, "meters"),
  29913. weight: math.unit(130, "lb"),
  29914. name: "Front",
  29915. image: {
  29916. source: "./media/characters/kyu/front.svg",
  29917. extra: 415 / 395,
  29918. bottom: 5 / 420
  29919. }
  29920. },
  29921. head: {
  29922. height: math.unit(1.75, "feet"),
  29923. name: "Head",
  29924. image: {
  29925. source: "./media/characters/kyu/head.svg"
  29926. }
  29927. },
  29928. foot: {
  29929. height: math.unit(0.81, "feet"),
  29930. name: "Foot",
  29931. image: {
  29932. source: "./media/characters/kyu/foot.svg"
  29933. }
  29934. },
  29935. },
  29936. [
  29937. {
  29938. name: "Normal",
  29939. height: math.unit(1.7, "meters")
  29940. },
  29941. {
  29942. name: "Macro",
  29943. height: math.unit(131, "feet"),
  29944. default: true
  29945. },
  29946. {
  29947. name: "Megamacro",
  29948. height: math.unit(91440, "meters")
  29949. },
  29950. {
  29951. name: "Gigamacro",
  29952. height: math.unit(60960000, "meters")
  29953. },
  29954. {
  29955. name: "Teramacro",
  29956. height: math.unit(9144000000, "meters")
  29957. },
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29962. {
  29963. front: {
  29964. height: math.unit(7 + 1 / 12, "feet"),
  29965. weight: math.unit(250, "lb"),
  29966. name: "Front",
  29967. image: {
  29968. source: "./media/characters/joey/front.svg",
  29969. extra: 1791 / 1537,
  29970. bottom: 28 / 1816
  29971. }
  29972. },
  29973. },
  29974. [
  29975. {
  29976. name: "Micro",
  29977. height: math.unit(3, "inches")
  29978. },
  29979. {
  29980. name: "Normal",
  29981. height: math.unit(7 + 1 / 12, "feet"),
  29982. default: true
  29983. },
  29984. ]
  29985. ))
  29986. characterMakers.push(() => makeCharacter(
  29987. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29988. {
  29989. front: {
  29990. height: math.unit(165, "cm"),
  29991. weight: math.unit(140, "lb"),
  29992. name: "Front",
  29993. image: {
  29994. source: "./media/characters/sam-evans/front.svg",
  29995. extra: 3417 / 3230,
  29996. bottom: 41.3 / 3417
  29997. }
  29998. },
  29999. frontSixTails: {
  30000. height: math.unit(165, "cm"),
  30001. weight: math.unit(140, "lb"),
  30002. name: "Front-six-tails",
  30003. image: {
  30004. source: "./media/characters/sam-evans/front-six-tails.svg",
  30005. extra: 3417 / 3230,
  30006. bottom: 41.3 / 3417
  30007. }
  30008. },
  30009. back: {
  30010. height: math.unit(165, "cm"),
  30011. weight: math.unit(140, "lb"),
  30012. name: "Back",
  30013. image: {
  30014. source: "./media/characters/sam-evans/back.svg",
  30015. extra: 3227 / 3032,
  30016. bottom: 6.8 / 3234
  30017. }
  30018. },
  30019. face: {
  30020. height: math.unit(0.68, "feet"),
  30021. name: "Face",
  30022. image: {
  30023. source: "./media/characters/sam-evans/face.svg"
  30024. }
  30025. },
  30026. },
  30027. [
  30028. {
  30029. name: "Normal",
  30030. height: math.unit(165, "cm"),
  30031. default: true
  30032. },
  30033. {
  30034. name: "Macro",
  30035. height: math.unit(100, "meters")
  30036. },
  30037. {
  30038. name: "Macro+",
  30039. height: math.unit(800, "meters")
  30040. },
  30041. {
  30042. name: "Macro++",
  30043. height: math.unit(3, "km")
  30044. },
  30045. {
  30046. name: "Macro+++",
  30047. height: math.unit(30, "km")
  30048. },
  30049. ]
  30050. ))
  30051. characterMakers.push(() => makeCharacter(
  30052. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30053. {
  30054. front: {
  30055. height: math.unit(10, "feet"),
  30056. weight: math.unit(750, "lb"),
  30057. name: "Front",
  30058. image: {
  30059. source: "./media/characters/juliet-a/front.svg",
  30060. extra: 1766 / 1720,
  30061. bottom: 43 / 1809
  30062. }
  30063. },
  30064. back: {
  30065. height: math.unit(10, "feet"),
  30066. weight: math.unit(750, "lb"),
  30067. name: "Back",
  30068. image: {
  30069. source: "./media/characters/juliet-a/back.svg",
  30070. extra: 1781 / 1734,
  30071. bottom: 35 / 1810,
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Normal",
  30078. height: math.unit(10, "feet"),
  30079. default: true
  30080. },
  30081. {
  30082. name: "Dragon Form",
  30083. height: math.unit(250, "feet")
  30084. },
  30085. {
  30086. name: "Macro",
  30087. height: math.unit(1000, "feet")
  30088. },
  30089. {
  30090. name: "Megamacro",
  30091. height: math.unit(10000, "feet")
  30092. }
  30093. ]
  30094. ))
  30095. characterMakers.push(() => makeCharacter(
  30096. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30097. {
  30098. regular: {
  30099. height: math.unit(7 + 3 / 12, "feet"),
  30100. weight: math.unit(260, "lb"),
  30101. name: "Regular",
  30102. image: {
  30103. source: "./media/characters/wild/regular.svg",
  30104. extra: 97.45 / 92,
  30105. bottom: 6.8 / 104.3
  30106. }
  30107. },
  30108. biggums: {
  30109. height: math.unit(8 + 6 / 12, "feet"),
  30110. weight: math.unit(425, "lb"),
  30111. name: "Biggums",
  30112. image: {
  30113. source: "./media/characters/wild/biggums.svg",
  30114. extra: 97.45 / 92,
  30115. bottom: 7.5 / 132.34
  30116. }
  30117. },
  30118. mawRegular: {
  30119. height: math.unit(1.24, "feet"),
  30120. name: "Maw (Regular)",
  30121. image: {
  30122. source: "./media/characters/wild/maw.svg"
  30123. }
  30124. },
  30125. mawBiggums: {
  30126. height: math.unit(1.47, "feet"),
  30127. name: "Maw (Biggums)",
  30128. image: {
  30129. source: "./media/characters/wild/maw.svg"
  30130. }
  30131. },
  30132. },
  30133. [
  30134. {
  30135. name: "Normal",
  30136. height: math.unit(7 + 3 / 12, "feet"),
  30137. default: true
  30138. },
  30139. ]
  30140. ))
  30141. characterMakers.push(() => makeCharacter(
  30142. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30143. {
  30144. front: {
  30145. height: math.unit(2.5, "meters"),
  30146. weight: math.unit(200, "kg"),
  30147. name: "Front",
  30148. image: {
  30149. source: "./media/characters/vidar/front.svg",
  30150. extra: 2994 / 2795,
  30151. bottom: 56 / 3061
  30152. }
  30153. },
  30154. back: {
  30155. height: math.unit(2.5, "meters"),
  30156. weight: math.unit(200, "kg"),
  30157. name: "Back",
  30158. image: {
  30159. source: "./media/characters/vidar/back.svg",
  30160. extra: 3131 / 2928,
  30161. bottom: 13.5 / 3141.5
  30162. }
  30163. },
  30164. feral: {
  30165. height: math.unit(2.5, "meters"),
  30166. weight: math.unit(2000, "kg"),
  30167. name: "Feral",
  30168. image: {
  30169. source: "./media/characters/vidar/feral.svg",
  30170. extra: 2790 / 1765,
  30171. bottom: 6 / 2796
  30172. }
  30173. },
  30174. },
  30175. [
  30176. {
  30177. name: "Normal",
  30178. height: math.unit(2.5, "meters"),
  30179. default: true
  30180. },
  30181. {
  30182. name: "Macro",
  30183. height: math.unit(100, "meters")
  30184. },
  30185. ]
  30186. ))
  30187. characterMakers.push(() => makeCharacter(
  30188. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30189. {
  30190. front: {
  30191. height: math.unit(5 + 9 / 12, "feet"),
  30192. weight: math.unit(120, "lb"),
  30193. name: "Front",
  30194. image: {
  30195. source: "./media/characters/ash/front.svg",
  30196. extra: 2189 / 1961,
  30197. bottom: 5.2 / 2194
  30198. }
  30199. },
  30200. },
  30201. [
  30202. {
  30203. name: "Normal",
  30204. height: math.unit(5 + 9 / 12, "feet"),
  30205. default: true
  30206. },
  30207. ]
  30208. ))
  30209. characterMakers.push(() => makeCharacter(
  30210. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30211. {
  30212. front: {
  30213. height: math.unit(9, "feet"),
  30214. weight: math.unit(10000, "lb"),
  30215. name: "Front",
  30216. image: {
  30217. source: "./media/characters/gygabite/front.svg",
  30218. bottom: 31.7 / 537.8,
  30219. extra: 505 / 370
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Normal",
  30226. height: math.unit(9, "feet"),
  30227. default: true
  30228. },
  30229. ]
  30230. ))
  30231. characterMakers.push(() => makeCharacter(
  30232. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30233. {
  30234. front: {
  30235. height: math.unit(12, "feet"),
  30236. weight: math.unit(4000, "lb"),
  30237. name: "Front",
  30238. image: {
  30239. source: "./media/characters/p0tat0/front.svg",
  30240. extra: 1065 / 921,
  30241. bottom: 55.7 / 1121.25
  30242. }
  30243. },
  30244. },
  30245. [
  30246. {
  30247. name: "Normal",
  30248. height: math.unit(12, "feet"),
  30249. default: true
  30250. },
  30251. ]
  30252. ))
  30253. characterMakers.push(() => makeCharacter(
  30254. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30255. {
  30256. side: {
  30257. height: math.unit(6.5, "feet"),
  30258. weight: math.unit(800, "lb"),
  30259. name: "Side",
  30260. image: {
  30261. source: "./media/characters/dusk/side.svg",
  30262. extra: 615 / 373,
  30263. bottom: 53 / 664
  30264. }
  30265. },
  30266. sitting: {
  30267. height: math.unit(7, "feet"),
  30268. weight: math.unit(800, "lb"),
  30269. name: "Sitting",
  30270. image: {
  30271. source: "./media/characters/dusk/sitting.svg",
  30272. extra: 753 / 425,
  30273. bottom: 33 / 774
  30274. }
  30275. },
  30276. head: {
  30277. height: math.unit(6.1, "feet"),
  30278. name: "Head",
  30279. image: {
  30280. source: "./media/characters/dusk/head.svg"
  30281. }
  30282. },
  30283. },
  30284. [
  30285. {
  30286. name: "Normal",
  30287. height: math.unit(7, "feet"),
  30288. default: true
  30289. },
  30290. ]
  30291. ))
  30292. characterMakers.push(() => makeCharacter(
  30293. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30294. {
  30295. front: {
  30296. height: math.unit(15, "feet"),
  30297. weight: math.unit(7000, "lb"),
  30298. name: "Front",
  30299. image: {
  30300. source: "./media/characters/jay-direwolf/front.svg",
  30301. extra: 1810 / 1732,
  30302. bottom: 66 / 1892
  30303. }
  30304. },
  30305. },
  30306. [
  30307. {
  30308. name: "Normal",
  30309. height: math.unit(15, "feet"),
  30310. default: true
  30311. },
  30312. ]
  30313. ))
  30314. characterMakers.push(() => makeCharacter(
  30315. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30316. {
  30317. front: {
  30318. height: math.unit(4 + 9 / 12, "feet"),
  30319. weight: math.unit(130, "lb"),
  30320. name: "Front",
  30321. image: {
  30322. source: "./media/characters/anchovie/front.svg",
  30323. extra: 382 / 350,
  30324. bottom: 25 / 409
  30325. }
  30326. },
  30327. back: {
  30328. height: math.unit(4 + 9 / 12, "feet"),
  30329. weight: math.unit(130, "lb"),
  30330. name: "Back",
  30331. image: {
  30332. source: "./media/characters/anchovie/back.svg",
  30333. extra: 385 / 352,
  30334. bottom: 16.6 / 402
  30335. }
  30336. },
  30337. frontDressed: {
  30338. height: math.unit(4 + 9 / 12, "feet"),
  30339. weight: math.unit(130, "lb"),
  30340. name: "Front (Dressed)",
  30341. image: {
  30342. source: "./media/characters/anchovie/front-dressed.svg",
  30343. extra: 382 / 350,
  30344. bottom: 25 / 409
  30345. }
  30346. },
  30347. backDressed: {
  30348. height: math.unit(4 + 9 / 12, "feet"),
  30349. weight: math.unit(130, "lb"),
  30350. name: "Back (Dressed)",
  30351. image: {
  30352. source: "./media/characters/anchovie/back-dressed.svg",
  30353. extra: 385 / 352,
  30354. bottom: 16.6 / 402
  30355. }
  30356. },
  30357. },
  30358. [
  30359. {
  30360. name: "Micro",
  30361. height: math.unit(6.4, "inches")
  30362. },
  30363. {
  30364. name: "Normal",
  30365. height: math.unit(4 + 9 / 12, "feet"),
  30366. default: true
  30367. },
  30368. ]
  30369. ))
  30370. characterMakers.push(() => makeCharacter(
  30371. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30372. {
  30373. front: {
  30374. height: math.unit(2, "meters"),
  30375. weight: math.unit(180, "lb"),
  30376. name: "Front",
  30377. image: {
  30378. source: "./media/characters/acidrenamon/front.svg",
  30379. extra: 987 / 890,
  30380. bottom: 22.8 / 1009
  30381. }
  30382. },
  30383. back: {
  30384. height: math.unit(2, "meters"),
  30385. weight: math.unit(180, "lb"),
  30386. name: "Back",
  30387. image: {
  30388. source: "./media/characters/acidrenamon/back.svg",
  30389. extra: 983 / 891,
  30390. bottom: 8.4 / 992
  30391. }
  30392. },
  30393. head: {
  30394. height: math.unit(1.92, "feet"),
  30395. name: "Head",
  30396. image: {
  30397. source: "./media/characters/acidrenamon/head.svg"
  30398. }
  30399. },
  30400. rump: {
  30401. height: math.unit(1.72, "feet"),
  30402. name: "Rump",
  30403. image: {
  30404. source: "./media/characters/acidrenamon/rump.svg"
  30405. }
  30406. },
  30407. tail: {
  30408. height: math.unit(4.2, "feet"),
  30409. name: "Tail",
  30410. image: {
  30411. source: "./media/characters/acidrenamon/tail.svg"
  30412. }
  30413. },
  30414. },
  30415. [
  30416. {
  30417. name: "Normal",
  30418. height: math.unit(2, "meters"),
  30419. default: true
  30420. },
  30421. {
  30422. name: "Minimacro",
  30423. height: math.unit(7, "meters")
  30424. },
  30425. {
  30426. name: "Macro",
  30427. height: math.unit(200, "meters")
  30428. },
  30429. {
  30430. name: "Gigamacro",
  30431. height: math.unit(0.2, "earths")
  30432. },
  30433. ]
  30434. ))
  30435. characterMakers.push(() => makeCharacter(
  30436. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30437. {
  30438. front: {
  30439. height: math.unit(152, "feet"),
  30440. name: "Front",
  30441. image: {
  30442. source: "./media/characters/kenzie-lee/front.svg",
  30443. extra: 1869/1774,
  30444. bottom: 128/1997
  30445. }
  30446. },
  30447. side: {
  30448. height: math.unit(86, "feet"),
  30449. name: "Side",
  30450. image: {
  30451. source: "./media/characters/kenzie-lee/side.svg",
  30452. extra: 930/815,
  30453. bottom: 177/1107
  30454. }
  30455. },
  30456. paw: {
  30457. height: math.unit(15, "feet"),
  30458. name: "Paw",
  30459. image: {
  30460. source: "./media/characters/kenzie-lee/paw.svg"
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Kenzie Flea",
  30467. height: math.unit(2, "mm"),
  30468. default: true
  30469. },
  30470. {
  30471. name: "Micro",
  30472. height: math.unit(2, "inches")
  30473. },
  30474. {
  30475. name: "Normal",
  30476. height: math.unit(152, "feet")
  30477. },
  30478. {
  30479. name: "Megamacro",
  30480. height: math.unit(7, "miles")
  30481. },
  30482. {
  30483. name: "Gigamacro",
  30484. height: math.unit(8000, "miles")
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30490. {
  30491. front: {
  30492. height: math.unit(6, "feet"),
  30493. name: "Front",
  30494. image: {
  30495. source: "./media/characters/withers/front.svg",
  30496. extra: 1935/1760,
  30497. bottom: 72/2007
  30498. }
  30499. },
  30500. back: {
  30501. height: math.unit(6, "feet"),
  30502. name: "Back",
  30503. image: {
  30504. source: "./media/characters/withers/back.svg",
  30505. extra: 1944/1792,
  30506. bottom: 12/1956
  30507. }
  30508. },
  30509. dressed: {
  30510. height: math.unit(6, "feet"),
  30511. name: "Dressed",
  30512. image: {
  30513. source: "./media/characters/withers/dressed.svg",
  30514. extra: 1937/1765,
  30515. bottom: 73/2010
  30516. }
  30517. },
  30518. phase1: {
  30519. height: math.unit(1.1, "feet"),
  30520. name: "Phase 1",
  30521. image: {
  30522. source: "./media/characters/withers/phase-1.svg",
  30523. extra: 1885/1232,
  30524. bottom: 0/1885
  30525. }
  30526. },
  30527. phase2: {
  30528. height: math.unit(1.05, "feet"),
  30529. name: "Phase 2",
  30530. image: {
  30531. source: "./media/characters/withers/phase-2.svg",
  30532. extra: 1792/1090,
  30533. bottom: 0/1792
  30534. }
  30535. },
  30536. partyWipe: {
  30537. height: math.unit(1.1, "feet"),
  30538. name: "Party Wipe",
  30539. image: {
  30540. source: "./media/characters/withers/party-wipe.svg",
  30541. extra: 1864/1207,
  30542. bottom: 0/1864
  30543. }
  30544. },
  30545. },
  30546. [
  30547. {
  30548. name: "Macro",
  30549. height: math.unit(167, "feet"),
  30550. default: true
  30551. },
  30552. {
  30553. name: "Megamacro",
  30554. height: math.unit(15, "miles")
  30555. }
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30560. {
  30561. front: {
  30562. height: math.unit(6 + 7 / 12, "feet"),
  30563. weight: math.unit(250, "lb"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/nemoskii/front.svg",
  30567. extra: 2270 / 1734,
  30568. bottom: 86 / 2354
  30569. }
  30570. },
  30571. back: {
  30572. height: math.unit(6 + 7 / 12, "feet"),
  30573. weight: math.unit(250, "lb"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/nemoskii/back.svg",
  30577. extra: 1845 / 1788,
  30578. bottom: 10.5 / 1852
  30579. }
  30580. },
  30581. head: {
  30582. height: math.unit(1.31, "feet"),
  30583. name: "Head",
  30584. image: {
  30585. source: "./media/characters/nemoskii/head.svg"
  30586. }
  30587. },
  30588. },
  30589. [
  30590. {
  30591. name: "Micro",
  30592. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30593. },
  30594. {
  30595. name: "Normal",
  30596. height: math.unit(6 + 7 / 12, "feet"),
  30597. default: true
  30598. },
  30599. {
  30600. name: "Macro",
  30601. height: math.unit((6 + 7 / 12) * 150, "feet")
  30602. },
  30603. {
  30604. name: "Macro+",
  30605. height: math.unit((6 + 7 / 12) * 500, "feet")
  30606. },
  30607. {
  30608. name: "Megamacro",
  30609. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30610. },
  30611. ]
  30612. ))
  30613. characterMakers.push(() => makeCharacter(
  30614. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30615. {
  30616. front: {
  30617. height: math.unit(1, "mile"),
  30618. weight: math.unit(265261.9, "lb"),
  30619. name: "Front",
  30620. image: {
  30621. source: "./media/characters/shui/front.svg",
  30622. extra: 1633 / 1564,
  30623. bottom: 91.5 / 1726
  30624. }
  30625. },
  30626. },
  30627. [
  30628. {
  30629. name: "Macro",
  30630. height: math.unit(1, "mile"),
  30631. default: true
  30632. },
  30633. ]
  30634. ))
  30635. characterMakers.push(() => makeCharacter(
  30636. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30637. {
  30638. front: {
  30639. height: math.unit(12 + 6 / 12, "feet"),
  30640. weight: math.unit(1342, "lb"),
  30641. name: "Front",
  30642. image: {
  30643. source: "./media/characters/arokh-takakura/front.svg",
  30644. extra: 1089 / 1043,
  30645. bottom: 77.4 / 1176.7
  30646. }
  30647. },
  30648. back: {
  30649. height: math.unit(12 + 6 / 12, "feet"),
  30650. weight: math.unit(1342, "lb"),
  30651. name: "Back",
  30652. image: {
  30653. source: "./media/characters/arokh-takakura/back.svg",
  30654. extra: 1046 / 1019,
  30655. bottom: 102 / 1150
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Big",
  30662. height: math.unit(12 + 6 / 12, "feet"),
  30663. default: true
  30664. },
  30665. ]
  30666. ))
  30667. characterMakers.push(() => makeCharacter(
  30668. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30669. {
  30670. front: {
  30671. height: math.unit(5 + 6 / 12, "feet"),
  30672. weight: math.unit(150, "lb"),
  30673. name: "Front",
  30674. image: {
  30675. source: "./media/characters/theo/front.svg",
  30676. extra: 1184 / 1131,
  30677. bottom: 7.4 / 1191
  30678. }
  30679. },
  30680. },
  30681. [
  30682. {
  30683. name: "Micro",
  30684. height: math.unit(5, "inches")
  30685. },
  30686. {
  30687. name: "Normal",
  30688. height: math.unit(5 + 6 / 12, "feet"),
  30689. default: true
  30690. },
  30691. ]
  30692. ))
  30693. characterMakers.push(() => makeCharacter(
  30694. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30695. {
  30696. front: {
  30697. height: math.unit(5 + 9 / 12, "feet"),
  30698. weight: math.unit(130, "lb"),
  30699. name: "Front",
  30700. image: {
  30701. source: "./media/characters/cecelia-swift/front.svg",
  30702. extra: 502 / 484,
  30703. bottom: 23 / 523
  30704. }
  30705. },
  30706. back: {
  30707. height: math.unit(5 + 9 / 12, "feet"),
  30708. weight: math.unit(130, "lb"),
  30709. name: "Back",
  30710. image: {
  30711. source: "./media/characters/cecelia-swift/back.svg",
  30712. extra: 499 / 485,
  30713. bottom: 12 / 511
  30714. }
  30715. },
  30716. head: {
  30717. height: math.unit(0.90, "feet"),
  30718. name: "Head",
  30719. image: {
  30720. source: "./media/characters/cecelia-swift/head.svg"
  30721. }
  30722. },
  30723. rump: {
  30724. height: math.unit(1.75, "feet"),
  30725. name: "Rump",
  30726. image: {
  30727. source: "./media/characters/cecelia-swift/rump.svg"
  30728. }
  30729. },
  30730. },
  30731. [
  30732. {
  30733. name: "Normal",
  30734. height: math.unit(5 + 9 / 12, "feet"),
  30735. default: true
  30736. },
  30737. {
  30738. name: "Big",
  30739. height: math.unit(50, "feet")
  30740. },
  30741. {
  30742. name: "Macro",
  30743. height: math.unit(100, "feet")
  30744. },
  30745. {
  30746. name: "Macro+",
  30747. height: math.unit(500, "feet")
  30748. },
  30749. {
  30750. name: "Macro++",
  30751. height: math.unit(1000, "feet")
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30757. {
  30758. front: {
  30759. height: math.unit(6, "feet"),
  30760. weight: math.unit(150, "lb"),
  30761. name: "Front",
  30762. image: {
  30763. source: "./media/characters/kaunan/front.svg",
  30764. extra: 2890 / 2523,
  30765. bottom: 49 / 2939
  30766. }
  30767. },
  30768. },
  30769. [
  30770. {
  30771. name: "Macro",
  30772. height: math.unit(150, "feet"),
  30773. default: true
  30774. },
  30775. ]
  30776. ))
  30777. characterMakers.push(() => makeCharacter(
  30778. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30779. {
  30780. dressed: {
  30781. height: math.unit(175, "cm"),
  30782. weight: math.unit(60, "kg"),
  30783. name: "Dressed",
  30784. image: {
  30785. source: "./media/characters/fei/dressed.svg",
  30786. extra: 1402/1278,
  30787. bottom: 27/1429
  30788. }
  30789. },
  30790. nude: {
  30791. height: math.unit(175, "cm"),
  30792. weight: math.unit(60, "kg"),
  30793. name: "Nude",
  30794. image: {
  30795. source: "./media/characters/fei/nude.svg",
  30796. extra: 1402/1278,
  30797. bottom: 27/1429
  30798. }
  30799. },
  30800. heels: {
  30801. height: math.unit(0.466, "feet"),
  30802. name: "Heels",
  30803. image: {
  30804. source: "./media/characters/fei/heels.svg",
  30805. extra: 156/152,
  30806. bottom: 28/184
  30807. }
  30808. },
  30809. },
  30810. [
  30811. {
  30812. name: "Mortal",
  30813. height: math.unit(175, "cm")
  30814. },
  30815. {
  30816. name: "Normal",
  30817. height: math.unit(3500, "m")
  30818. },
  30819. {
  30820. name: "Stroll",
  30821. height: math.unit(18.4, "km"),
  30822. default: true
  30823. },
  30824. {
  30825. name: "Showoff",
  30826. height: math.unit(175, "km")
  30827. },
  30828. ]
  30829. ))
  30830. characterMakers.push(() => makeCharacter(
  30831. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30832. {
  30833. front: {
  30834. height: math.unit(7, "feet"),
  30835. weight: math.unit(1000, "kg"),
  30836. name: "Front",
  30837. image: {
  30838. source: "./media/characters/edrax/front.svg",
  30839. extra: 2838 / 2550,
  30840. bottom: 130 / 2968
  30841. }
  30842. },
  30843. },
  30844. [
  30845. {
  30846. name: "Small",
  30847. height: math.unit(7, "feet")
  30848. },
  30849. {
  30850. name: "Normal",
  30851. height: math.unit(1500, "meters")
  30852. },
  30853. {
  30854. name: "Mega",
  30855. height: math.unit(12000000, "km"),
  30856. default: true
  30857. },
  30858. {
  30859. name: "Megamacro",
  30860. height: math.unit(10600000, "lightyears")
  30861. },
  30862. {
  30863. name: "Hypermacro",
  30864. height: math.unit(256, "yottameters")
  30865. },
  30866. ]
  30867. ))
  30868. characterMakers.push(() => makeCharacter(
  30869. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30870. {
  30871. front: {
  30872. height: math.unit(10, "feet"),
  30873. weight: math.unit(750, "lb"),
  30874. name: "Front",
  30875. image: {
  30876. source: "./media/characters/clove/front.svg",
  30877. extra: 1918/1751,
  30878. bottom: 52/1970
  30879. }
  30880. },
  30881. back: {
  30882. height: math.unit(10, "feet"),
  30883. weight: math.unit(750, "lb"),
  30884. name: "Back",
  30885. image: {
  30886. source: "./media/characters/clove/back.svg",
  30887. extra: 1912/1747,
  30888. bottom: 50/1962
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Normal",
  30895. height: math.unit(10, "feet"),
  30896. default: true
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30902. {
  30903. front: {
  30904. height: math.unit(4, "feet"),
  30905. weight: math.unit(50, "lb"),
  30906. name: "Front",
  30907. image: {
  30908. source: "./media/characters/alex-rabbit/front.svg",
  30909. extra: 507 / 458,
  30910. bottom: 18.5 / 527
  30911. }
  30912. },
  30913. back: {
  30914. height: math.unit(4, "feet"),
  30915. weight: math.unit(50, "lb"),
  30916. name: "Back",
  30917. image: {
  30918. source: "./media/characters/alex-rabbit/back.svg",
  30919. extra: 502 / 460,
  30920. bottom: 18.9 / 521
  30921. }
  30922. },
  30923. },
  30924. [
  30925. {
  30926. name: "Normal",
  30927. height: math.unit(4, "feet"),
  30928. default: true
  30929. },
  30930. ]
  30931. ))
  30932. characterMakers.push(() => makeCharacter(
  30933. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30934. {
  30935. front: {
  30936. height: math.unit(1 + 3 / 12, "feet"),
  30937. weight: math.unit(80, "lb"),
  30938. name: "Front",
  30939. image: {
  30940. source: "./media/characters/zander-rose/front.svg",
  30941. extra: 916 / 797,
  30942. bottom: 17 / 933
  30943. }
  30944. },
  30945. back: {
  30946. height: math.unit(1 + 3 / 12, "feet"),
  30947. weight: math.unit(80, "lb"),
  30948. name: "Back",
  30949. image: {
  30950. source: "./media/characters/zander-rose/back.svg",
  30951. extra: 903 / 779,
  30952. bottom: 31 / 934
  30953. }
  30954. },
  30955. },
  30956. [
  30957. {
  30958. name: "Normal",
  30959. height: math.unit(1 + 3 / 12, "feet"),
  30960. default: true
  30961. },
  30962. ]
  30963. ))
  30964. characterMakers.push(() => makeCharacter(
  30965. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30966. {
  30967. anthro: {
  30968. height: math.unit(6, "feet"),
  30969. weight: math.unit(150, "lb"),
  30970. name: "Anthro",
  30971. image: {
  30972. source: "./media/characters/razz/anthro.svg",
  30973. extra: 1437 / 1343,
  30974. bottom: 48 / 1485
  30975. }
  30976. },
  30977. feral: {
  30978. height: math.unit(6, "feet"),
  30979. weight: math.unit(150, "lb"),
  30980. name: "Feral",
  30981. image: {
  30982. source: "./media/characters/razz/feral.svg",
  30983. extra: 2569 / 1385,
  30984. bottom: 95 / 2664
  30985. }
  30986. },
  30987. },
  30988. [
  30989. {
  30990. name: "Normal",
  30991. height: math.unit(6, "feet"),
  30992. default: true
  30993. },
  30994. ]
  30995. ))
  30996. characterMakers.push(() => makeCharacter(
  30997. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30998. {
  30999. front: {
  31000. height: math.unit(9 + 4 / 12, "feet"),
  31001. weight: math.unit(500, "lb"),
  31002. name: "Front",
  31003. image: {
  31004. source: "./media/characters/morrigan/front.svg",
  31005. extra: 2707 / 2579,
  31006. bottom: 156 / 2863
  31007. }
  31008. },
  31009. },
  31010. [
  31011. {
  31012. name: "Normal",
  31013. height: math.unit(9 + 4 / 12, "feet"),
  31014. default: true
  31015. },
  31016. ]
  31017. ))
  31018. characterMakers.push(() => makeCharacter(
  31019. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31020. {
  31021. front: {
  31022. height: math.unit(5, "stories"),
  31023. weight: math.unit(4000, "lb"),
  31024. name: "Front",
  31025. image: {
  31026. source: "./media/characters/jenene/front.svg",
  31027. extra: 1780 / 1710,
  31028. bottom: 57 / 1837
  31029. }
  31030. },
  31031. },
  31032. [
  31033. {
  31034. name: "Normal",
  31035. height: math.unit(5, "stories"),
  31036. default: true
  31037. },
  31038. ]
  31039. ))
  31040. characterMakers.push(() => makeCharacter(
  31041. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31042. {
  31043. taurSfw: {
  31044. height: math.unit(10, "meters"),
  31045. weight: math.unit(17500, "kg"),
  31046. name: "Taur",
  31047. image: {
  31048. source: "./media/characters/faey/taur-sfw.svg",
  31049. extra: 1200 / 968,
  31050. bottom: 41 / 1241
  31051. }
  31052. },
  31053. chestmaw: {
  31054. height: math.unit(2.01, "meters"),
  31055. name: "Chestmaw",
  31056. image: {
  31057. source: "./media/characters/faey/chestmaw.svg"
  31058. }
  31059. },
  31060. foot: {
  31061. height: math.unit(2.43, "meters"),
  31062. name: "Foot",
  31063. image: {
  31064. source: "./media/characters/faey/foot.svg"
  31065. }
  31066. },
  31067. jaws: {
  31068. height: math.unit(1.66, "meters"),
  31069. name: "Jaws",
  31070. image: {
  31071. source: "./media/characters/faey/jaws.svg"
  31072. }
  31073. },
  31074. tongues: {
  31075. height: math.unit(2.01, "meters"),
  31076. name: "Tongues",
  31077. image: {
  31078. source: "./media/characters/faey/tongues.svg"
  31079. }
  31080. },
  31081. },
  31082. [
  31083. {
  31084. name: "Small",
  31085. height: math.unit(10, "meters"),
  31086. default: true
  31087. },
  31088. {
  31089. name: "Big",
  31090. height: math.unit(500000, "km")
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31096. {
  31097. front: {
  31098. height: math.unit(7, "feet"),
  31099. weight: math.unit(275, "lb"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/roku/front.svg",
  31103. extra: 903 / 878,
  31104. bottom: 37 / 940
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Normal",
  31111. height: math.unit(7, "feet"),
  31112. default: true
  31113. },
  31114. {
  31115. name: "Macro",
  31116. height: math.unit(500, "feet")
  31117. },
  31118. {
  31119. name: "Megamacro",
  31120. height: math.unit(200, "miles")
  31121. },
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31126. {
  31127. front: {
  31128. height: math.unit(6 + 2 / 12, "feet"),
  31129. weight: math.unit(150, "lb"),
  31130. name: "Front",
  31131. image: {
  31132. source: "./media/characters/lira/front.svg",
  31133. extra: 1727 / 1605,
  31134. bottom: 26 / 1753
  31135. }
  31136. },
  31137. back: {
  31138. height: math.unit(6 + 2 / 12, "feet"),
  31139. weight: math.unit(150, "lb"),
  31140. name: "Back",
  31141. image: {
  31142. source: "./media/characters/lira/back.svg",
  31143. extra: 1713/1621,
  31144. bottom: 20/1733
  31145. }
  31146. },
  31147. hand: {
  31148. height: math.unit(0.75, "feet"),
  31149. name: "Hand",
  31150. image: {
  31151. source: "./media/characters/lira/hand.svg"
  31152. }
  31153. },
  31154. maw: {
  31155. height: math.unit(0.65, "feet"),
  31156. name: "Maw",
  31157. image: {
  31158. source: "./media/characters/lira/maw.svg"
  31159. }
  31160. },
  31161. pawDigi: {
  31162. height: math.unit(1.6, "feet"),
  31163. name: "Paw Digi",
  31164. image: {
  31165. source: "./media/characters/lira/paw-digi.svg"
  31166. }
  31167. },
  31168. pawPlanti: {
  31169. height: math.unit(1.4, "feet"),
  31170. name: "Paw Planti",
  31171. image: {
  31172. source: "./media/characters/lira/paw-planti.svg"
  31173. }
  31174. },
  31175. },
  31176. [
  31177. {
  31178. name: "Normal",
  31179. height: math.unit(6 + 2 / 12, "feet"),
  31180. default: true
  31181. },
  31182. {
  31183. name: "Macro",
  31184. height: math.unit(100, "feet")
  31185. },
  31186. {
  31187. name: "Macro²",
  31188. height: math.unit(1600, "feet")
  31189. },
  31190. {
  31191. name: "Planetary",
  31192. height: math.unit(20, "earths")
  31193. },
  31194. ]
  31195. ))
  31196. characterMakers.push(() => makeCharacter(
  31197. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31198. {
  31199. front: {
  31200. height: math.unit(6, "feet"),
  31201. weight: math.unit(150, "lb"),
  31202. name: "Front",
  31203. image: {
  31204. source: "./media/characters/hadjet/front.svg",
  31205. extra: 1480 / 1346,
  31206. bottom: 26 / 1506
  31207. }
  31208. },
  31209. frontNsfw: {
  31210. height: math.unit(6, "feet"),
  31211. weight: math.unit(150, "lb"),
  31212. name: "Front (NSFW)",
  31213. image: {
  31214. source: "./media/characters/hadjet/front-nsfw.svg",
  31215. extra: 1440 / 1358,
  31216. bottom: 52 / 1492
  31217. }
  31218. },
  31219. },
  31220. [
  31221. {
  31222. name: "Macro",
  31223. height: math.unit(10, "stories"),
  31224. default: true
  31225. },
  31226. {
  31227. name: "Megamacro",
  31228. height: math.unit(1.5, "miles")
  31229. },
  31230. {
  31231. name: "Megamacro+",
  31232. height: math.unit(5, "miles")
  31233. },
  31234. ]
  31235. ))
  31236. characterMakers.push(() => makeCharacter(
  31237. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31238. {
  31239. side: {
  31240. height: math.unit(106, "feet"),
  31241. weight: math.unit(500, "tonnes"),
  31242. name: "Side",
  31243. image: {
  31244. source: "./media/characters/kodran/side.svg",
  31245. extra: 553 / 480,
  31246. bottom: 33 / 586
  31247. }
  31248. },
  31249. front: {
  31250. height: math.unit(132, "feet"),
  31251. weight: math.unit(500, "tonnes"),
  31252. name: "Front",
  31253. image: {
  31254. source: "./media/characters/kodran/front.svg",
  31255. extra: 667 / 643,
  31256. bottom: 42 / 709
  31257. }
  31258. },
  31259. flying: {
  31260. height: math.unit(350, "feet"),
  31261. weight: math.unit(500, "tonnes"),
  31262. name: "Flying",
  31263. image: {
  31264. source: "./media/characters/kodran/flying.svg"
  31265. }
  31266. },
  31267. foot: {
  31268. height: math.unit(33, "feet"),
  31269. name: "Foot",
  31270. image: {
  31271. source: "./media/characters/kodran/foot.svg"
  31272. }
  31273. },
  31274. footFront: {
  31275. height: math.unit(19, "feet"),
  31276. name: "Foot (Front)",
  31277. image: {
  31278. source: "./media/characters/kodran/foot-front.svg",
  31279. extra: 261 / 261,
  31280. bottom: 91 / 352
  31281. }
  31282. },
  31283. headFront: {
  31284. height: math.unit(53, "feet"),
  31285. name: "Head (Front)",
  31286. image: {
  31287. source: "./media/characters/kodran/head-front.svg"
  31288. }
  31289. },
  31290. headSide: {
  31291. height: math.unit(65, "feet"),
  31292. name: "Head (Side)",
  31293. image: {
  31294. source: "./media/characters/kodran/head-side.svg"
  31295. }
  31296. },
  31297. throat: {
  31298. height: math.unit(79, "feet"),
  31299. name: "Throat",
  31300. image: {
  31301. source: "./media/characters/kodran/throat.svg"
  31302. }
  31303. },
  31304. },
  31305. [
  31306. {
  31307. name: "Large",
  31308. height: math.unit(106, "feet"),
  31309. default: true
  31310. },
  31311. ]
  31312. ))
  31313. characterMakers.push(() => makeCharacter(
  31314. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31315. {
  31316. side: {
  31317. height: math.unit(11, "feet"),
  31318. weight: math.unit(150, "lb"),
  31319. name: "Side",
  31320. image: {
  31321. source: "./media/characters/pyxaron/side.svg",
  31322. extra: 305 / 195,
  31323. bottom: 17 / 322
  31324. }
  31325. },
  31326. },
  31327. [
  31328. {
  31329. name: "Normal",
  31330. height: math.unit(11, "feet"),
  31331. default: true
  31332. },
  31333. ]
  31334. ))
  31335. characterMakers.push(() => makeCharacter(
  31336. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31337. {
  31338. front: {
  31339. height: math.unit(6, "feet"),
  31340. weight: math.unit(150, "lb"),
  31341. name: "Front",
  31342. image: {
  31343. source: "./media/characters/meep/front.svg",
  31344. extra: 88 / 80,
  31345. bottom: 6 / 94
  31346. }
  31347. },
  31348. },
  31349. [
  31350. {
  31351. name: "Fun Sized",
  31352. height: math.unit(2, "inches"),
  31353. default: true
  31354. },
  31355. {
  31356. name: "Friend Sized",
  31357. height: math.unit(8, "inches")
  31358. },
  31359. ]
  31360. ))
  31361. characterMakers.push(() => makeCharacter(
  31362. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31363. {
  31364. front: {
  31365. height: math.unit(15, "feet"),
  31366. weight: math.unit(2500, "lb"),
  31367. name: "Front",
  31368. image: {
  31369. source: "./media/characters/holly-rabbit/front.svg",
  31370. extra: 1433 / 1233,
  31371. bottom: 125 / 1558
  31372. }
  31373. },
  31374. dick: {
  31375. height: math.unit(4.6, "feet"),
  31376. name: "Dick",
  31377. image: {
  31378. source: "./media/characters/holly-rabbit/dick.svg"
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(15, "feet"),
  31386. default: true
  31387. },
  31388. {
  31389. name: "Macro",
  31390. height: math.unit(250, "feet")
  31391. },
  31392. {
  31393. name: "Macro+",
  31394. height: math.unit(2500, "feet")
  31395. },
  31396. ]
  31397. ))
  31398. characterMakers.push(() => makeCharacter(
  31399. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31400. {
  31401. front: {
  31402. height: math.unit(3.02, "meters"),
  31403. weight: math.unit(500, "kg"),
  31404. name: "Front",
  31405. image: {
  31406. source: "./media/characters/drena/front.svg",
  31407. extra: 282 / 243,
  31408. bottom: 8 / 290
  31409. }
  31410. },
  31411. side: {
  31412. height: math.unit(3.02, "meters"),
  31413. weight: math.unit(500, "kg"),
  31414. name: "Side",
  31415. image: {
  31416. source: "./media/characters/drena/side.svg",
  31417. extra: 280 / 245,
  31418. bottom: 10 / 290
  31419. }
  31420. },
  31421. back: {
  31422. height: math.unit(3.02, "meters"),
  31423. weight: math.unit(500, "kg"),
  31424. name: "Back",
  31425. image: {
  31426. source: "./media/characters/drena/back.svg",
  31427. extra: 278 / 243,
  31428. bottom: 2 / 280
  31429. }
  31430. },
  31431. foot: {
  31432. height: math.unit(0.75, "meters"),
  31433. name: "Foot",
  31434. image: {
  31435. source: "./media/characters/drena/foot.svg"
  31436. }
  31437. },
  31438. maw: {
  31439. height: math.unit(0.82, "meters"),
  31440. name: "Maw",
  31441. image: {
  31442. source: "./media/characters/drena/maw.svg"
  31443. }
  31444. },
  31445. eating: {
  31446. height: math.unit(0.75, "meters"),
  31447. name: "Eating",
  31448. image: {
  31449. source: "./media/characters/drena/eating.svg"
  31450. }
  31451. },
  31452. rump: {
  31453. height: math.unit(0.93, "meters"),
  31454. name: "Rump",
  31455. image: {
  31456. source: "./media/characters/drena/rump.svg"
  31457. }
  31458. },
  31459. },
  31460. [
  31461. {
  31462. name: "Normal",
  31463. height: math.unit(3.02, "meters"),
  31464. default: true
  31465. },
  31466. ]
  31467. ))
  31468. characterMakers.push(() => makeCharacter(
  31469. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31470. {
  31471. front: {
  31472. height: math.unit(6 + 4 / 12, "feet"),
  31473. weight: math.unit(250, "lb"),
  31474. name: "Front",
  31475. image: {
  31476. source: "./media/characters/remmyzilla/front.svg",
  31477. extra: 4033 / 3588,
  31478. bottom: 123 / 4156
  31479. }
  31480. },
  31481. back: {
  31482. height: math.unit(6 + 4 / 12, "feet"),
  31483. weight: math.unit(250, "lb"),
  31484. name: "Back",
  31485. image: {
  31486. source: "./media/characters/remmyzilla/back.svg",
  31487. extra: 1696/1602,
  31488. bottom: 63/1759
  31489. }
  31490. },
  31491. paw: {
  31492. height: math.unit(1.73, "feet"),
  31493. name: "Paw",
  31494. image: {
  31495. source: "./media/characters/remmyzilla/paw.svg"
  31496. },
  31497. extraAttributes: {
  31498. "toeSize": {
  31499. name: "Toe Size",
  31500. power: 2,
  31501. type: "area",
  31502. base: math.unit(0.0035, "m^2")
  31503. },
  31504. "padSize": {
  31505. name: "Pad Size",
  31506. power: 2,
  31507. type: "area",
  31508. base: math.unit(0.015, "m^2")
  31509. },
  31510. "pawsize": {
  31511. name: "Paw Size",
  31512. power: 2,
  31513. type: "area",
  31514. base: math.unit(0.072, "m^2")
  31515. },
  31516. }
  31517. },
  31518. maw: {
  31519. height: math.unit(1.73, "feet"),
  31520. name: "Maw",
  31521. image: {
  31522. source: "./media/characters/remmyzilla/maw.svg"
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Normal",
  31529. height: math.unit(6 + 4 / 12, "feet")
  31530. },
  31531. {
  31532. name: "Minimacro",
  31533. height: math.unit(12 + 8 / 12, "feet")
  31534. },
  31535. {
  31536. name: "Normal",
  31537. height: math.unit(640, "feet"),
  31538. default: true
  31539. },
  31540. {
  31541. name: "Megamacro",
  31542. height: math.unit(6400, "feet")
  31543. },
  31544. {
  31545. name: "Gigamacro",
  31546. height: math.unit(64000, "miles")
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31552. {
  31553. front: {
  31554. height: math.unit(2.5, "meters"),
  31555. weight: math.unit(300, "lb"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/lawrence/front.svg",
  31559. extra: 357 / 335,
  31560. bottom: 30 / 387
  31561. }
  31562. },
  31563. back: {
  31564. height: math.unit(2.5, "meters"),
  31565. weight: math.unit(300, "lb"),
  31566. name: "Back",
  31567. image: {
  31568. source: "./media/characters/lawrence/back.svg",
  31569. extra: 357 / 338,
  31570. bottom: 16 / 373
  31571. }
  31572. },
  31573. head: {
  31574. height: math.unit(0.9, "meter"),
  31575. name: "Head",
  31576. image: {
  31577. source: "./media/characters/lawrence/head.svg"
  31578. }
  31579. },
  31580. maw: {
  31581. height: math.unit(0.7, "meter"),
  31582. name: "Maw",
  31583. image: {
  31584. source: "./media/characters/lawrence/maw.svg"
  31585. }
  31586. },
  31587. footBottom: {
  31588. height: math.unit(0.5, "meter"),
  31589. name: "Foot (Bottom)",
  31590. image: {
  31591. source: "./media/characters/lawrence/foot-bottom.svg"
  31592. }
  31593. },
  31594. footTop: {
  31595. height: math.unit(0.5, "meter"),
  31596. name: "Foot (Top)",
  31597. image: {
  31598. source: "./media/characters/lawrence/foot-top.svg"
  31599. }
  31600. },
  31601. },
  31602. [
  31603. {
  31604. name: "Normal",
  31605. height: math.unit(2.5, "meters"),
  31606. default: true
  31607. },
  31608. {
  31609. name: "Macro",
  31610. height: math.unit(95, "meters")
  31611. },
  31612. {
  31613. name: "Megamacro",
  31614. height: math.unit(150, "km")
  31615. },
  31616. ]
  31617. ))
  31618. characterMakers.push(() => makeCharacter(
  31619. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31620. {
  31621. front: {
  31622. height: math.unit(4.2, "meters"),
  31623. preyCapacity: math.unit(50, "m^3"),
  31624. weight: math.unit(30, "tonnes"),
  31625. name: "Front",
  31626. image: {
  31627. source: "./media/characters/sydney/front.svg",
  31628. extra: 1177/1129,
  31629. bottom: 197/1374
  31630. },
  31631. extraAttributes: {
  31632. "length": {
  31633. name: "Length",
  31634. power: 1,
  31635. type: "length",
  31636. base: math.unit(21, "meters")
  31637. },
  31638. }
  31639. },
  31640. },
  31641. [
  31642. {
  31643. name: "Normal",
  31644. height: math.unit(4.2, "meters"),
  31645. default: true
  31646. },
  31647. ]
  31648. ))
  31649. characterMakers.push(() => makeCharacter(
  31650. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31651. {
  31652. back: {
  31653. height: math.unit(201, "feet"),
  31654. name: "Back",
  31655. image: {
  31656. source: "./media/characters/jessica/back.svg",
  31657. extra: 273 / 259,
  31658. bottom: 7 / 280
  31659. }
  31660. },
  31661. },
  31662. [
  31663. {
  31664. name: "Normal",
  31665. height: math.unit(201, "feet"),
  31666. default: true
  31667. },
  31668. {
  31669. name: "Megamacro",
  31670. height: math.unit(8, "miles")
  31671. },
  31672. ]
  31673. ))
  31674. characterMakers.push(() => makeCharacter(
  31675. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31676. {
  31677. side: {
  31678. height: math.unit(5.6, "m"),
  31679. weight: math.unit(8000, "kg"),
  31680. name: "Side",
  31681. image: {
  31682. source: "./media/characters/victoria/side.svg",
  31683. extra: 1542/1229,
  31684. bottom: 124/1666
  31685. }
  31686. },
  31687. maw: {
  31688. height: math.unit(7.14, "feet"),
  31689. name: "Maw",
  31690. image: {
  31691. source: "./media/characters/victoria/maw.svg"
  31692. }
  31693. },
  31694. },
  31695. [
  31696. {
  31697. name: "Normal",
  31698. height: math.unit(5.6, "m"),
  31699. default: true
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31705. {
  31706. front: {
  31707. height: math.unit(5 + 6 / 12, "feet"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/cat/cat-front.svg",
  31711. extra: 1422/1262,
  31712. bottom: 61/1483
  31713. },
  31714. form: "cat",
  31715. default: true
  31716. },
  31717. back: {
  31718. height: math.unit(5 + 6 / 12, "feet"),
  31719. name: "Back",
  31720. image: {
  31721. source: "./media/characters/cat/cat-back.svg",
  31722. extra: 1466/1301,
  31723. bottom: 19/1485
  31724. },
  31725. form: "cat"
  31726. },
  31727. taur: {
  31728. height: math.unit(7, "feet"),
  31729. name: "Side",
  31730. image: {
  31731. source: "./media/characters/cat/taur-side.svg",
  31732. extra: 1389/1233,
  31733. bottom: 83/1472
  31734. },
  31735. form: "taur",
  31736. default: true
  31737. },
  31738. lucarioFront: {
  31739. height: math.unit(4, "feet"),
  31740. name: "Front",
  31741. image: {
  31742. source: "./media/characters/cat/lucario-front.svg",
  31743. extra: 1149/1019,
  31744. bottom: 84/1233
  31745. },
  31746. form: "lucario",
  31747. default: true
  31748. },
  31749. lucarioBack: {
  31750. height: math.unit(4, "feet"),
  31751. name: "Back",
  31752. image: {
  31753. source: "./media/characters/cat/lucario-back.svg",
  31754. extra: 1190/1059,
  31755. bottom: 33/1223
  31756. },
  31757. form: "lucario"
  31758. },
  31759. riolu_front: {
  31760. height: math.unit(2 + 4/12, "feet"),
  31761. name: "Front",
  31762. image: {
  31763. source: "./media/characters/cat/riolu-front.svg",
  31764. extra: 1104/956,
  31765. bottom: 70/1174
  31766. },
  31767. form: "riolu",
  31768. default: true
  31769. },
  31770. nickit: {
  31771. height: math.unit(2, "feet"),
  31772. name: "Side",
  31773. image: {
  31774. source: "./media/characters/cat/nickit-side.svg",
  31775. extra: 1087/852,
  31776. bottom: 67/1154
  31777. },
  31778. form: "nickit",
  31779. default: true
  31780. },
  31781. lopunnyFront: {
  31782. height: math.unit(5, "feet"),
  31783. name: "Front",
  31784. image: {
  31785. source: "./media/characters/cat/lopunny-front.svg",
  31786. extra: 1217/1078,
  31787. bottom: 23/1240
  31788. },
  31789. form: "lopunny",
  31790. default: true
  31791. },
  31792. lopunnyBack: {
  31793. height: math.unit(5, "feet"),
  31794. name: "Back",
  31795. image: {
  31796. source: "./media/characters/cat/lopunny-back.svg",
  31797. extra: 1205/1057,
  31798. bottom: 33/1238
  31799. },
  31800. form: "lopunny"
  31801. },
  31802. dog_front: {
  31803. height: math.unit(5 + 9/12, "feet"),
  31804. name: "Front",
  31805. image: {
  31806. source: "./media/characters/cat/dog-front.svg",
  31807. extra: 1403/1309,
  31808. bottom: 31/1434
  31809. },
  31810. form: "dog",
  31811. default: true
  31812. },
  31813. dog_back: {
  31814. height: math.unit(5 + 9/12, "feet"),
  31815. name: "Back",
  31816. image: {
  31817. source: "./media/characters/cat/dog-back.svg",
  31818. extra: 1393/1297,
  31819. bottom: 38/1431
  31820. },
  31821. form: "dog",
  31822. },
  31823. pikachu_front: {
  31824. height: math.unit(2.64, "feet"),
  31825. name: "Front",
  31826. image: {
  31827. source: "./media/characters/cat/pikachu-front.svg",
  31828. extra: 1224/958,
  31829. bottom: 34/1258
  31830. },
  31831. form: "pikachu",
  31832. default: true
  31833. },
  31834. pikachu_back: {
  31835. height: math.unit(2.64, "feet"),
  31836. name: "Back",
  31837. image: {
  31838. source: "./media/characters/cat/pikachu-back.svg",
  31839. extra: 1228/958,
  31840. bottom: 16/1244
  31841. },
  31842. form: "pikachu",
  31843. },
  31844. gigachuFront: {
  31845. height: math.unit(75, "feet"),
  31846. name: "Front",
  31847. image: {
  31848. source: "./media/characters/cat/gigachu-front.svg",
  31849. extra: 1239/1027,
  31850. bottom: 32/1271
  31851. },
  31852. form: "gigachu",
  31853. default: true
  31854. },
  31855. gigachuBack: {
  31856. height: math.unit(75, "feet"),
  31857. name: "Back",
  31858. image: {
  31859. source: "./media/characters/cat/gigachu-back.svg",
  31860. extra: 1229/1030,
  31861. bottom: 9/1238
  31862. },
  31863. form: "gigachu"
  31864. },
  31865. },
  31866. [
  31867. {
  31868. name: "Really small",
  31869. height: math.unit(1, "nm"),
  31870. allForms: true
  31871. },
  31872. {
  31873. name: "Micro",
  31874. height: math.unit(5, "inches"),
  31875. allForms: true
  31876. },
  31877. {
  31878. name: "Normal",
  31879. height: math.unit(5 + 6 / 12, "feet"),
  31880. default: true,
  31881. form: "cat"
  31882. },
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(7, "feet"),
  31886. default: true,
  31887. form: "taur"
  31888. },
  31889. {
  31890. name: "Normal",
  31891. height: math.unit(4, "feet"),
  31892. default: true,
  31893. form: "lucario"
  31894. },
  31895. {
  31896. name: "Normal",
  31897. height: math.unit(2, "feet"),
  31898. default: true,
  31899. form: "nickit"
  31900. },
  31901. {
  31902. name: "Normal",
  31903. height: math.unit(5, "feet"),
  31904. default: true,
  31905. form: "lopunny"
  31906. },
  31907. {
  31908. name: "Normal",
  31909. height: math.unit(2 + 4/12, "feet"),
  31910. default: true,
  31911. form: "riolu"
  31912. },
  31913. {
  31914. name: "Normal",
  31915. height: math.unit(5 + 6 / 12, "feet"),
  31916. default: true,
  31917. form: "dog"
  31918. },
  31919. {
  31920. name: "Macro",
  31921. height: math.unit(50, "feet"),
  31922. allForms: true
  31923. },
  31924. {
  31925. name: "Normal",
  31926. height: math.unit(2.64, "feet"),
  31927. default: true,
  31928. form: "pikachu"
  31929. },
  31930. {
  31931. name: "Dynamax",
  31932. height: math.unit(75, "feet"),
  31933. form: "gigachu",
  31934. default: true
  31935. },
  31936. {
  31937. name: "Macro+",
  31938. height: math.unit(150, "feet"),
  31939. allForms: true
  31940. },
  31941. {
  31942. name: "Megamacro",
  31943. height: math.unit(100, "miles"),
  31944. allForms: true
  31945. },
  31946. ],
  31947. {
  31948. "cat": {
  31949. name: "Cat",
  31950. default: true
  31951. },
  31952. "taur": {
  31953. name: "Taur",
  31954. },
  31955. "lucario": {
  31956. name: "Lucario",
  31957. },
  31958. "riolu": {
  31959. name: "Riolu",
  31960. },
  31961. "nickit": {
  31962. name: "Nickit",
  31963. },
  31964. "lopunny": {
  31965. name: "Lopunny",
  31966. },
  31967. "dog": {
  31968. name: "Dog",
  31969. },
  31970. "pikachu": {
  31971. name: "Pikachu",
  31972. },
  31973. "gigachu": {
  31974. name: "Gigachu",
  31975. ignoreAllFormSizes: true
  31976. }
  31977. }
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31981. {
  31982. front: {
  31983. height: math.unit(63.4, "meters"),
  31984. weight: math.unit(3.28349e+6, "kilograms"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/kirina-violet/front.svg",
  31988. extra: 2812 / 2725,
  31989. bottom: 0 / 2812
  31990. }
  31991. },
  31992. back: {
  31993. height: math.unit(63.4, "meters"),
  31994. weight: math.unit(3.28349e+6, "kilograms"),
  31995. name: "Back",
  31996. image: {
  31997. source: "./media/characters/kirina-violet/back.svg",
  31998. extra: 2812 / 2725,
  31999. bottom: 0 / 2812
  32000. }
  32001. },
  32002. mouth: {
  32003. height: math.unit(4.35, "meters"),
  32004. name: "Mouth",
  32005. image: {
  32006. source: "./media/characters/kirina-violet/mouth.svg"
  32007. }
  32008. },
  32009. paw: {
  32010. height: math.unit(5.6, "meters"),
  32011. name: "Paw",
  32012. image: {
  32013. source: "./media/characters/kirina-violet/paw.svg"
  32014. }
  32015. },
  32016. tail: {
  32017. height: math.unit(18, "meters"),
  32018. name: "Tail",
  32019. image: {
  32020. source: "./media/characters/kirina-violet/tail.svg"
  32021. }
  32022. },
  32023. },
  32024. [
  32025. {
  32026. name: "Macro",
  32027. height: math.unit(63.4, "meters"),
  32028. default: true
  32029. },
  32030. ]
  32031. ))
  32032. characterMakers.push(() => makeCharacter(
  32033. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32034. {
  32035. front: {
  32036. height: math.unit(6, "feet"),
  32037. weight: math.unit(150, "lb"),
  32038. name: "Front",
  32039. image: {
  32040. source: "./media/characters/sfaiyan/front.svg",
  32041. extra: 999 / 978,
  32042. bottom: 5 / 1004
  32043. }
  32044. },
  32045. },
  32046. [
  32047. {
  32048. name: "Normal",
  32049. height: math.unit(1.82, "meters")
  32050. },
  32051. {
  32052. name: "Giant",
  32053. height: math.unit(2.27, "km"),
  32054. default: true
  32055. },
  32056. ]
  32057. ))
  32058. characterMakers.push(() => makeCharacter(
  32059. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32060. {
  32061. front: {
  32062. height: math.unit(179, "cm"),
  32063. weight: math.unit(100, "kg"),
  32064. name: "Front",
  32065. image: {
  32066. source: "./media/characters/raunehkeli/front.svg",
  32067. extra: 1934 / 1926,
  32068. bottom: 0 / 1934
  32069. }
  32070. },
  32071. },
  32072. [
  32073. {
  32074. name: "Normal",
  32075. height: math.unit(179, "cm")
  32076. },
  32077. {
  32078. name: "Maximum",
  32079. height: math.unit(575, "meters"),
  32080. default: true
  32081. },
  32082. ]
  32083. ))
  32084. characterMakers.push(() => makeCharacter(
  32085. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32086. {
  32087. front: {
  32088. height: math.unit(6 + 2/12, "feet"),
  32089. weight: math.unit(150, "lb"),
  32090. name: "Front",
  32091. image: {
  32092. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  32093. extra: 2620/2496,
  32094. bottom: 66/2686
  32095. }
  32096. },
  32097. },
  32098. [
  32099. {
  32100. name: "Normal",
  32101. height: math.unit(6 + 2 / 12, "feet")
  32102. },
  32103. {
  32104. name: "Max Height",
  32105. height: math.unit(1181, "feet"),
  32106. default: true
  32107. },
  32108. ]
  32109. ))
  32110. characterMakers.push(() => makeCharacter(
  32111. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32112. {
  32113. front: {
  32114. height: math.unit(5 + 6 / 12, "feet"),
  32115. weight: math.unit(108, "lb"),
  32116. name: "Front",
  32117. image: {
  32118. source: "./media/characters/lilith-zott/front.svg",
  32119. extra: 2415/2133,
  32120. bottom: 193/2608
  32121. }
  32122. },
  32123. },
  32124. [
  32125. {
  32126. name: "Base Height",
  32127. height: math.unit(5 + 6 / 12, "feet")
  32128. },
  32129. {
  32130. name: "Preferred Height",
  32131. height: math.unit(200, "feet")
  32132. },
  32133. {
  32134. name: "Max Height",
  32135. height: math.unit(1030, "feet"),
  32136. default: true
  32137. },
  32138. ]
  32139. ))
  32140. characterMakers.push(() => makeCharacter(
  32141. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32142. {
  32143. super: {
  32144. height: math.unit(6 + 2/12, "feet"),
  32145. weight: math.unit(150, "lb"),
  32146. name: "Super",
  32147. image: {
  32148. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32149. extra: 2555/2387,
  32150. bottom: 50/2605
  32151. }
  32152. },
  32153. casual: {
  32154. height: math.unit(6 + 2/12, "feet"),
  32155. weight: math.unit(150, "lb"),
  32156. name: "Casual",
  32157. image: {
  32158. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32159. extra: 2555/2387,
  32160. bottom: 50/2605
  32161. }
  32162. },
  32163. hand: {
  32164. height: math.unit(1.08, "feet"),
  32165. name: "Hand",
  32166. image: {
  32167. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32168. }
  32169. },
  32170. paw: {
  32171. height: math.unit(1.33, "feet"),
  32172. name: "Paw",
  32173. image: {
  32174. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Normal",
  32181. height: math.unit(6 + 2/12, "feet")
  32182. },
  32183. {
  32184. name: "Preferred Height",
  32185. height: math.unit(220, "feet")
  32186. },
  32187. {
  32188. name: "Max Height",
  32189. height: math.unit(1100, "feet"),
  32190. default: true
  32191. },
  32192. ]
  32193. ))
  32194. characterMakers.push(() => makeCharacter(
  32195. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32196. {
  32197. front: {
  32198. height: math.unit(100, "miles"),
  32199. name: "Front",
  32200. image: {
  32201. source: "./media/characters/sona/front.svg",
  32202. extra: 2433 / 2201,
  32203. bottom: 53 / 2486
  32204. }
  32205. },
  32206. foot: {
  32207. height: math.unit(16.1, "miles"),
  32208. name: "Foot",
  32209. image: {
  32210. source: "./media/characters/sona/foot.svg"
  32211. }
  32212. },
  32213. },
  32214. [
  32215. {
  32216. name: "Macro",
  32217. height: math.unit(100, "miles"),
  32218. default: true
  32219. },
  32220. ]
  32221. ))
  32222. characterMakers.push(() => makeCharacter(
  32223. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32224. {
  32225. front: {
  32226. height: math.unit(6, "feet"),
  32227. weight: math.unit(150, "lb"),
  32228. name: "Front",
  32229. image: {
  32230. source: "./media/characters/bailey/front.svg",
  32231. extra: 1778 / 1724,
  32232. bottom: 30 / 1808
  32233. }
  32234. },
  32235. },
  32236. [
  32237. {
  32238. name: "Micro",
  32239. height: math.unit(4, "inches")
  32240. },
  32241. {
  32242. name: "Normal",
  32243. height: math.unit(5 + 5 / 12, "feet"),
  32244. default: true
  32245. },
  32246. {
  32247. name: "Macro",
  32248. height: math.unit(250, "feet")
  32249. },
  32250. {
  32251. name: "Megamacro",
  32252. height: math.unit(100, "miles")
  32253. },
  32254. ]
  32255. ))
  32256. characterMakers.push(() => makeCharacter(
  32257. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32258. {
  32259. front: {
  32260. height: math.unit(5 + 2 / 12, "feet"),
  32261. weight: math.unit(120, "lb"),
  32262. name: "Front",
  32263. image: {
  32264. source: "./media/characters/snaps/front.svg",
  32265. extra: 2370 / 2177,
  32266. bottom: 48 / 2418
  32267. }
  32268. },
  32269. back: {
  32270. height: math.unit(5 + 2 / 12, "feet"),
  32271. weight: math.unit(120, "lb"),
  32272. name: "Back",
  32273. image: {
  32274. source: "./media/characters/snaps/back.svg",
  32275. extra: 2408 / 2258,
  32276. bottom: 15 / 2423
  32277. }
  32278. },
  32279. },
  32280. [
  32281. {
  32282. name: "Micro",
  32283. height: math.unit(9, "inches")
  32284. },
  32285. {
  32286. name: "Normal",
  32287. height: math.unit(5 + 2 / 12, "feet"),
  32288. default: true
  32289. },
  32290. {
  32291. name: "Mini Macro",
  32292. height: math.unit(10, "feet")
  32293. },
  32294. ]
  32295. ))
  32296. characterMakers.push(() => makeCharacter(
  32297. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32298. {
  32299. front: {
  32300. height: math.unit(1.8, "meters"),
  32301. weight: math.unit(85, "kg"),
  32302. name: "Front",
  32303. image: {
  32304. source: "./media/characters/azteck/front.svg",
  32305. extra: 2815 / 2625,
  32306. bottom: 89 / 2904
  32307. }
  32308. },
  32309. back: {
  32310. height: math.unit(1.8, "meters"),
  32311. weight: math.unit(85, "kg"),
  32312. name: "Back",
  32313. image: {
  32314. source: "./media/characters/azteck/back.svg",
  32315. extra: 2856 / 2648,
  32316. bottom: 85 / 2941
  32317. }
  32318. },
  32319. frontDressed: {
  32320. height: math.unit(1.8, "meters"),
  32321. weight: math.unit(85, "kg"),
  32322. name: "Front (Dressed)",
  32323. image: {
  32324. source: "./media/characters/azteck/front-dressed.svg",
  32325. extra: 2147 / 2003,
  32326. bottom: 68 / 2215
  32327. }
  32328. },
  32329. head: {
  32330. height: math.unit(0.47, "meters"),
  32331. weight: math.unit(85, "kg"),
  32332. name: "Head",
  32333. image: {
  32334. source: "./media/characters/azteck/head.svg"
  32335. }
  32336. },
  32337. },
  32338. [
  32339. {
  32340. name: "Bite sized",
  32341. height: math.unit(16, "cm")
  32342. },
  32343. {
  32344. name: "Normal",
  32345. height: math.unit(1.8, "meters"),
  32346. default: true
  32347. },
  32348. ]
  32349. ))
  32350. characterMakers.push(() => makeCharacter(
  32351. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32352. {
  32353. front: {
  32354. height: math.unit(6, "feet"),
  32355. weight: math.unit(150, "lb"),
  32356. name: "Front",
  32357. image: {
  32358. source: "./media/characters/pidge/front.svg",
  32359. extra: 1936/1820,
  32360. bottom: 0/1936
  32361. }
  32362. },
  32363. back: {
  32364. height: math.unit(6, "feet"),
  32365. weight: math.unit(150, "lb"),
  32366. name: "Back",
  32367. image: {
  32368. source: "./media/characters/pidge/back.svg",
  32369. extra: 1938/1843,
  32370. bottom: 0/1938
  32371. }
  32372. },
  32373. casual: {
  32374. height: math.unit(6, "feet"),
  32375. weight: math.unit(150, "lb"),
  32376. name: "Casual",
  32377. image: {
  32378. source: "./media/characters/pidge/casual.svg",
  32379. extra: 1936/1820,
  32380. bottom: 0/1936
  32381. }
  32382. },
  32383. tech: {
  32384. height: math.unit(6, "feet"),
  32385. weight: math.unit(150, "lb"),
  32386. name: "Tech",
  32387. image: {
  32388. source: "./media/characters/pidge/tech.svg",
  32389. extra: 1802/1682,
  32390. bottom: 0/1802
  32391. }
  32392. },
  32393. head: {
  32394. height: math.unit(1.61, "feet"),
  32395. name: "Head",
  32396. image: {
  32397. source: "./media/characters/pidge/head.svg"
  32398. }
  32399. },
  32400. collar: {
  32401. height: math.unit(0.82, "feet"),
  32402. name: "Collar",
  32403. image: {
  32404. source: "./media/characters/pidge/collar.svg"
  32405. }
  32406. },
  32407. },
  32408. [
  32409. {
  32410. name: "Macro",
  32411. height: math.unit(2, "mile"),
  32412. default: true
  32413. },
  32414. {
  32415. name: "PUPPY",
  32416. height: math.unit(20, "miles")
  32417. },
  32418. ]
  32419. ))
  32420. characterMakers.push(() => makeCharacter(
  32421. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32422. {
  32423. front: {
  32424. height: math.unit(6, "feet"),
  32425. weight: math.unit(150, "lb"),
  32426. name: "Front",
  32427. image: {
  32428. source: "./media/characters/en/front.svg",
  32429. extra: 1697 / 1563,
  32430. bottom: 103 / 1800
  32431. }
  32432. },
  32433. back: {
  32434. height: math.unit(6, "feet"),
  32435. weight: math.unit(150, "lb"),
  32436. name: "Back",
  32437. image: {
  32438. source: "./media/characters/en/back.svg",
  32439. extra: 1700 / 1570,
  32440. bottom: 51 / 1751
  32441. }
  32442. },
  32443. frontDressed: {
  32444. height: math.unit(6, "feet"),
  32445. weight: math.unit(150, "lb"),
  32446. name: "Front (Dressed)",
  32447. image: {
  32448. source: "./media/characters/en/front-dressed.svg",
  32449. extra: 1697 / 1563,
  32450. bottom: 103 / 1800
  32451. }
  32452. },
  32453. backDressed: {
  32454. height: math.unit(6, "feet"),
  32455. weight: math.unit(150, "lb"),
  32456. name: "Back (Dressed)",
  32457. image: {
  32458. source: "./media/characters/en/back-dressed.svg",
  32459. extra: 1700 / 1570,
  32460. bottom: 51 / 1751
  32461. }
  32462. },
  32463. },
  32464. [
  32465. {
  32466. name: "Macro",
  32467. height: math.unit(210, "feet"),
  32468. default: true
  32469. },
  32470. ]
  32471. ))
  32472. characterMakers.push(() => makeCharacter(
  32473. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32474. {
  32475. front: {
  32476. height: math.unit(6, "feet"),
  32477. weight: math.unit(150, "lb"),
  32478. name: "Front",
  32479. image: {
  32480. source: "./media/characters/haze-orris/front.svg",
  32481. extra: 3975 / 3525,
  32482. bottom: 137 / 4112
  32483. }
  32484. },
  32485. },
  32486. [
  32487. {
  32488. name: "Micro",
  32489. height: math.unit(150, "mm"),
  32490. default: true
  32491. },
  32492. ]
  32493. ))
  32494. characterMakers.push(() => makeCharacter(
  32495. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32496. {
  32497. front: {
  32498. height: math.unit(6, "feet"),
  32499. weight: math.unit(150, "lb"),
  32500. name: "Front",
  32501. image: {
  32502. source: "./media/characters/casselene-yaro/front.svg",
  32503. extra: 4721 / 4541,
  32504. bottom: 82 / 4803
  32505. }
  32506. },
  32507. back: {
  32508. height: math.unit(6, "feet"),
  32509. weight: math.unit(150, "lb"),
  32510. name: "Back",
  32511. image: {
  32512. source: "./media/characters/casselene-yaro/back.svg",
  32513. extra: 4569 / 4377,
  32514. bottom: 69 / 4638
  32515. }
  32516. },
  32517. dressed: {
  32518. height: math.unit(6, "feet"),
  32519. weight: math.unit(150, "lb"),
  32520. name: "Dressed",
  32521. image: {
  32522. source: "./media/characters/casselene-yaro/dressed.svg",
  32523. extra: 4721 / 4541,
  32524. bottom: 82 / 4803
  32525. }
  32526. },
  32527. maw: {
  32528. height: math.unit(1, "feet"),
  32529. name: "Maw",
  32530. image: {
  32531. source: "./media/characters/casselene-yaro/maw.svg"
  32532. }
  32533. },
  32534. },
  32535. [
  32536. {
  32537. name: "Macro",
  32538. height: math.unit(190, "feet"),
  32539. default: true
  32540. },
  32541. ]
  32542. ))
  32543. characterMakers.push(() => makeCharacter(
  32544. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32545. {
  32546. front: {
  32547. height: math.unit(10, "feet"),
  32548. weight: math.unit(15015, "lb"),
  32549. name: "Front",
  32550. image: {
  32551. source: "./media/characters/platine/front.svg",
  32552. extra: 1741/1650,
  32553. bottom: 84/1825
  32554. }
  32555. },
  32556. side: {
  32557. height: math.unit(10, "feet"),
  32558. weight: math.unit(15015, "lb"),
  32559. name: "Side",
  32560. image: {
  32561. source: "./media/characters/platine/side.svg",
  32562. extra: 1790/1705,
  32563. bottom: 29/1819
  32564. }
  32565. },
  32566. },
  32567. [
  32568. {
  32569. name: "Normal",
  32570. height: math.unit(10, "feet"),
  32571. default: true
  32572. },
  32573. {
  32574. name: "Macro",
  32575. height: math.unit(100, "feet")
  32576. },
  32577. {
  32578. name: "Megamacro",
  32579. height: math.unit(1000, "feet")
  32580. },
  32581. ]
  32582. ))
  32583. characterMakers.push(() => makeCharacter(
  32584. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32585. {
  32586. front: {
  32587. height: math.unit(15 + 5 / 12, "feet"),
  32588. weight: math.unit(4600, "lb"),
  32589. name: "Front",
  32590. image: {
  32591. source: "./media/characters/neapolitan-ananassa/front.svg",
  32592. extra: 2903 / 2736,
  32593. bottom: 0 / 2903
  32594. }
  32595. },
  32596. side: {
  32597. height: math.unit(15 + 5 / 12, "feet"),
  32598. weight: math.unit(4600, "lb"),
  32599. name: "Side",
  32600. image: {
  32601. source: "./media/characters/neapolitan-ananassa/side.svg",
  32602. extra: 2925 / 2719,
  32603. bottom: 0 / 2925
  32604. }
  32605. },
  32606. back: {
  32607. height: math.unit(15 + 5 / 12, "feet"),
  32608. weight: math.unit(4600, "lb"),
  32609. name: "Back",
  32610. image: {
  32611. source: "./media/characters/neapolitan-ananassa/back.svg",
  32612. extra: 2903 / 2736,
  32613. bottom: 0 / 2903
  32614. }
  32615. },
  32616. },
  32617. [
  32618. {
  32619. name: "Normal",
  32620. height: math.unit(15 + 5 / 12, "feet"),
  32621. default: true
  32622. },
  32623. {
  32624. name: "Post-Millenium",
  32625. height: math.unit(35 + 5 / 12, "feet")
  32626. },
  32627. {
  32628. name: "Post-Era",
  32629. height: math.unit(450 + 5 / 12, "feet")
  32630. },
  32631. ]
  32632. ))
  32633. characterMakers.push(() => makeCharacter(
  32634. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32635. {
  32636. front: {
  32637. height: math.unit(300, "meters"),
  32638. weight: math.unit(125000, "tonnes"),
  32639. name: "Front",
  32640. image: {
  32641. source: "./media/characters/pazuzu/front.svg",
  32642. extra: 877 / 794,
  32643. bottom: 47 / 924
  32644. }
  32645. },
  32646. },
  32647. [
  32648. {
  32649. name: "Macro",
  32650. height: math.unit(300, "meters"),
  32651. default: true
  32652. },
  32653. ]
  32654. ))
  32655. characterMakers.push(() => makeCharacter(
  32656. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32657. {
  32658. side: {
  32659. height: math.unit(10 + 7 / 12, "feet"),
  32660. weight: math.unit(2.5, "tons"),
  32661. name: "Side",
  32662. image: {
  32663. source: "./media/characters/aasha/side.svg",
  32664. extra: 1345 / 1245,
  32665. bottom: 111 / 1456
  32666. }
  32667. },
  32668. back: {
  32669. height: math.unit(10 + 7 / 12, "feet"),
  32670. weight: math.unit(2.5, "tons"),
  32671. name: "Back",
  32672. image: {
  32673. source: "./media/characters/aasha/back.svg",
  32674. extra: 1133 / 1057,
  32675. bottom: 257 / 1390
  32676. }
  32677. },
  32678. },
  32679. [
  32680. {
  32681. name: "Normal",
  32682. height: math.unit(10 + 7 / 12, "feet"),
  32683. default: true
  32684. },
  32685. ]
  32686. ))
  32687. characterMakers.push(() => makeCharacter(
  32688. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32689. {
  32690. front: {
  32691. height: math.unit(6 + 3 / 12, "feet"),
  32692. name: "Front",
  32693. image: {
  32694. source: "./media/characters/nevan/front.svg",
  32695. extra: 704 / 704,
  32696. bottom: 28 / 732
  32697. }
  32698. },
  32699. back: {
  32700. height: math.unit(6 + 3 / 12, "feet"),
  32701. name: "Back",
  32702. image: {
  32703. source: "./media/characters/nevan/back.svg",
  32704. extra: 714 / 714,
  32705. bottom: 21 / 735
  32706. }
  32707. },
  32708. frontFlaccid: {
  32709. height: math.unit(6 + 3 / 12, "feet"),
  32710. name: "Front (Flaccid)",
  32711. image: {
  32712. source: "./media/characters/nevan/front-flaccid.svg",
  32713. extra: 704 / 704,
  32714. bottom: 28 / 732
  32715. }
  32716. },
  32717. frontErect: {
  32718. height: math.unit(6 + 3 / 12, "feet"),
  32719. name: "Front (Erect)",
  32720. image: {
  32721. source: "./media/characters/nevan/front-erect.svg",
  32722. extra: 704 / 704,
  32723. bottom: 28 / 732
  32724. }
  32725. },
  32726. backFlaccid: {
  32727. height: math.unit(6 + 3 / 12, "feet"),
  32728. name: "Back (Flaccid)",
  32729. image: {
  32730. source: "./media/characters/nevan/back-flaccid.svg",
  32731. extra: 714 / 714,
  32732. bottom: 21 / 735
  32733. }
  32734. },
  32735. },
  32736. [
  32737. {
  32738. name: "Normal",
  32739. height: math.unit(6 + 3 / 12, "feet"),
  32740. default: true
  32741. },
  32742. ]
  32743. ))
  32744. characterMakers.push(() => makeCharacter(
  32745. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32746. {
  32747. front: {
  32748. height: math.unit(4, "feet"),
  32749. name: "Front",
  32750. image: {
  32751. source: "./media/characters/arhan/front.svg",
  32752. extra: 3368 / 3133,
  32753. bottom: 0 / 3368
  32754. }
  32755. },
  32756. side: {
  32757. height: math.unit(4, "feet"),
  32758. name: "Side",
  32759. image: {
  32760. source: "./media/characters/arhan/side.svg",
  32761. extra: 3347 / 3105,
  32762. bottom: 0 / 3347
  32763. }
  32764. },
  32765. tongue: {
  32766. height: math.unit(1.42, "feet"),
  32767. name: "Tongue",
  32768. image: {
  32769. source: "./media/characters/arhan/tongue.svg"
  32770. }
  32771. },
  32772. head: {
  32773. height: math.unit(0.85, "feet"),
  32774. name: "Head",
  32775. image: {
  32776. source: "./media/characters/arhan/head.svg"
  32777. }
  32778. },
  32779. },
  32780. [
  32781. {
  32782. name: "Normal",
  32783. height: math.unit(4, "feet"),
  32784. default: true
  32785. },
  32786. ]
  32787. ))
  32788. characterMakers.push(() => makeCharacter(
  32789. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32790. {
  32791. front: {
  32792. height: math.unit(5 + 7.5 / 12, "feet"),
  32793. weight: math.unit(120, "lb"),
  32794. name: "Front",
  32795. image: {
  32796. source: "./media/characters/digi-duncan/front.svg",
  32797. extra: 330 / 326,
  32798. bottom: 16 / 346
  32799. }
  32800. },
  32801. side: {
  32802. height: math.unit(5 + 7.5 / 12, "feet"),
  32803. weight: math.unit(120, "lb"),
  32804. name: "Side",
  32805. image: {
  32806. source: "./media/characters/digi-duncan/side.svg",
  32807. extra: 341 / 337,
  32808. bottom: 1 / 342
  32809. }
  32810. },
  32811. back: {
  32812. height: math.unit(5 + 7.5 / 12, "feet"),
  32813. weight: math.unit(120, "lb"),
  32814. name: "Back",
  32815. image: {
  32816. source: "./media/characters/digi-duncan/back.svg",
  32817. extra: 330 / 326,
  32818. bottom: 12 / 342
  32819. }
  32820. },
  32821. },
  32822. [
  32823. {
  32824. name: "Speck",
  32825. height: math.unit(0.25, "mm")
  32826. },
  32827. {
  32828. name: "Micro",
  32829. height: math.unit(5, "mm")
  32830. },
  32831. {
  32832. name: "Tiny",
  32833. height: math.unit(0.5, "inches"),
  32834. default: true
  32835. },
  32836. {
  32837. name: "Human",
  32838. height: math.unit(5 + 7.5 / 12, "feet")
  32839. },
  32840. {
  32841. name: "Minigiant",
  32842. height: math.unit(8 + 5.25, "feet")
  32843. },
  32844. {
  32845. name: "Giant",
  32846. height: math.unit(2000, "feet")
  32847. },
  32848. {
  32849. name: "Mega",
  32850. height: math.unit(371.1, "miles")
  32851. },
  32852. ]
  32853. ))
  32854. characterMakers.push(() => makeCharacter(
  32855. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32856. {
  32857. front: {
  32858. height: math.unit(2, "meters"),
  32859. weight: math.unit(350, "kg"),
  32860. name: "Front",
  32861. image: {
  32862. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32863. extra: 898 / 838,
  32864. bottom: 9 / 907
  32865. }
  32866. },
  32867. },
  32868. [
  32869. {
  32870. name: "Micro",
  32871. height: math.unit(8, "meters")
  32872. },
  32873. {
  32874. name: "Normal",
  32875. height: math.unit(50, "meters"),
  32876. default: true
  32877. },
  32878. {
  32879. name: "Macro",
  32880. height: math.unit(500, "meters")
  32881. },
  32882. ]
  32883. ))
  32884. characterMakers.push(() => makeCharacter(
  32885. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32886. {
  32887. front: {
  32888. height: math.unit(6 + 6 / 12, "feet"),
  32889. name: "Front",
  32890. image: {
  32891. source: "./media/characters/khardesh/front.svg",
  32892. extra: 1788/1596,
  32893. bottom: 66/1854
  32894. }
  32895. },
  32896. back: {
  32897. height: math.unit(6 + 6 / 12, "feet"),
  32898. name: "Back",
  32899. image: {
  32900. source: "./media/characters/khardesh/back.svg",
  32901. extra: 1781/1584,
  32902. bottom: 68/1849
  32903. }
  32904. },
  32905. },
  32906. [
  32907. {
  32908. name: "Normal",
  32909. height: math.unit(6 + 6 / 12, "feet"),
  32910. default: true
  32911. },
  32912. {
  32913. name: "Normal+",
  32914. height: math.unit(4, "meters")
  32915. },
  32916. {
  32917. name: "Macro",
  32918. height: math.unit(50, "meters")
  32919. },
  32920. {
  32921. name: "Macro+",
  32922. height: math.unit(100, "meters")
  32923. },
  32924. {
  32925. name: "Megamacro",
  32926. height: math.unit(20, "km")
  32927. },
  32928. ]
  32929. ))
  32930. characterMakers.push(() => makeCharacter(
  32931. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32932. {
  32933. front: {
  32934. height: math.unit(6, "feet"),
  32935. weight: math.unit(150, "lb"),
  32936. name: "Front",
  32937. image: {
  32938. source: "./media/characters/kosho/front.svg",
  32939. extra: 1847 / 1847,
  32940. bottom: 86 / 1933
  32941. }
  32942. },
  32943. },
  32944. [
  32945. {
  32946. name: "Second-stage micro",
  32947. height: math.unit(0.5, "inches")
  32948. },
  32949. {
  32950. name: "First-stage micro",
  32951. height: math.unit(6, "inches")
  32952. },
  32953. {
  32954. name: "Normal",
  32955. height: math.unit(6, "feet"),
  32956. default: true
  32957. },
  32958. {
  32959. name: "First-stage macro",
  32960. height: math.unit(72, "feet")
  32961. },
  32962. {
  32963. name: "Second-stage macro",
  32964. height: math.unit(864, "feet")
  32965. },
  32966. ]
  32967. ))
  32968. characterMakers.push(() => makeCharacter(
  32969. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32970. {
  32971. normal: {
  32972. height: math.unit(4 + 6 / 12, "feet"),
  32973. name: "Normal",
  32974. image: {
  32975. source: "./media/characters/hydra/normal.svg",
  32976. extra: 2833 / 2634,
  32977. bottom: 68 / 2901
  32978. }
  32979. },
  32980. smol: {
  32981. height: math.unit(0.705, "inches"),
  32982. name: "Smol",
  32983. image: {
  32984. source: "./media/characters/hydra/smol.svg",
  32985. extra: 2715 / 2540,
  32986. bottom: 0 / 2715
  32987. }
  32988. },
  32989. },
  32990. [
  32991. {
  32992. name: "Normal",
  32993. height: math.unit(4 + 6 / 12, "feet"),
  32994. default: true
  32995. }
  32996. ]
  32997. ))
  32998. characterMakers.push(() => makeCharacter(
  32999. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33000. {
  33001. front: {
  33002. height: math.unit(0.6, "cm"),
  33003. name: "Front",
  33004. image: {
  33005. source: "./media/characters/daz/front.svg",
  33006. extra: 1682 / 1164,
  33007. bottom: 42 / 1724
  33008. }
  33009. },
  33010. },
  33011. [
  33012. {
  33013. name: "Normal",
  33014. height: math.unit(0.6, "cm"),
  33015. default: true
  33016. },
  33017. ]
  33018. ))
  33019. characterMakers.push(() => makeCharacter(
  33020. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33021. {
  33022. front: {
  33023. height: math.unit(6, "feet"),
  33024. weight: math.unit(235, "lb"),
  33025. name: "Front",
  33026. image: {
  33027. source: "./media/characters/theo-pangolin/front.svg",
  33028. extra: 1996 / 1969,
  33029. bottom: 115 / 2111
  33030. }
  33031. },
  33032. back: {
  33033. height: math.unit(6, "feet"),
  33034. weight: math.unit(235, "lb"),
  33035. name: "Back",
  33036. image: {
  33037. source: "./media/characters/theo-pangolin/back.svg",
  33038. extra: 1979 / 1979,
  33039. bottom: 40 / 2019
  33040. }
  33041. },
  33042. feral: {
  33043. height: math.unit(2, "feet"),
  33044. weight: math.unit(30, "lb"),
  33045. name: "Feral",
  33046. image: {
  33047. source: "./media/characters/theo-pangolin/feral.svg",
  33048. extra: 803 / 791,
  33049. bottom: 181 / 984
  33050. }
  33051. },
  33052. footFive: {
  33053. height: math.unit(1.43, "feet"),
  33054. name: "Foot (Five Toes)",
  33055. image: {
  33056. source: "./media/characters/theo-pangolin/foot-five.svg"
  33057. }
  33058. },
  33059. footFour: {
  33060. height: math.unit(1.43, "feet"),
  33061. name: "Foot (Four Toes)",
  33062. image: {
  33063. source: "./media/characters/theo-pangolin/foot-four.svg"
  33064. }
  33065. },
  33066. handFour: {
  33067. height: math.unit(0.81, "feet"),
  33068. name: "Hand (Four Fingers)",
  33069. image: {
  33070. source: "./media/characters/theo-pangolin/hand-four.svg"
  33071. }
  33072. },
  33073. handThree: {
  33074. height: math.unit(0.81, "feet"),
  33075. name: "Hand (Three Fingers)",
  33076. image: {
  33077. source: "./media/characters/theo-pangolin/hand-three.svg"
  33078. }
  33079. },
  33080. headFront: {
  33081. height: math.unit(1.37, "feet"),
  33082. name: "Head (Front)",
  33083. image: {
  33084. source: "./media/characters/theo-pangolin/head-front.svg"
  33085. }
  33086. },
  33087. headSide: {
  33088. height: math.unit(1.43, "feet"),
  33089. name: "Head (Side)",
  33090. image: {
  33091. source: "./media/characters/theo-pangolin/head-side.svg"
  33092. }
  33093. },
  33094. tongue: {
  33095. height: math.unit(2.29, "feet"),
  33096. name: "Tongue",
  33097. image: {
  33098. source: "./media/characters/theo-pangolin/tongue.svg"
  33099. }
  33100. },
  33101. },
  33102. [
  33103. {
  33104. name: "Normal",
  33105. height: math.unit(6, "feet")
  33106. },
  33107. {
  33108. name: "Macro",
  33109. height: math.unit(400, "feet"),
  33110. default: true
  33111. },
  33112. ]
  33113. ))
  33114. characterMakers.push(() => makeCharacter(
  33115. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33116. {
  33117. front: {
  33118. height: math.unit(6, "inches"),
  33119. weight: math.unit(0.036, "kg"),
  33120. name: "Front",
  33121. image: {
  33122. source: "./media/characters/renée/front.svg",
  33123. extra: 900 / 886,
  33124. bottom: 8 / 908
  33125. }
  33126. },
  33127. },
  33128. [
  33129. {
  33130. name: "Nano",
  33131. height: math.unit(1, "nm")
  33132. },
  33133. {
  33134. name: "Micro",
  33135. height: math.unit(1, "mm")
  33136. },
  33137. {
  33138. name: "Normal",
  33139. height: math.unit(6, "inches")
  33140. },
  33141. {
  33142. name: "Macro",
  33143. height: math.unit(2000, "feet"),
  33144. default: true
  33145. },
  33146. {
  33147. name: "Megamacro",
  33148. height: math.unit(2, "km")
  33149. },
  33150. {
  33151. name: "Gigamacro",
  33152. height: math.unit(2000, "km")
  33153. },
  33154. {
  33155. name: "Teramacro",
  33156. height: math.unit(250000, "km")
  33157. },
  33158. ]
  33159. ))
  33160. characterMakers.push(() => makeCharacter(
  33161. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33162. {
  33163. front: {
  33164. height: math.unit(4, "meters"),
  33165. weight: math.unit(150, "kg"),
  33166. name: "Front",
  33167. image: {
  33168. source: "./media/characters/caledvwlch/front.svg",
  33169. extra: 1757/1537,
  33170. bottom: 31/1788
  33171. }
  33172. },
  33173. side: {
  33174. height: math.unit(4, "meters"),
  33175. weight: math.unit(150, "kg"),
  33176. name: "Side",
  33177. image: {
  33178. source: "./media/characters/caledvwlch/side.svg",
  33179. extra: 1605 / 1536,
  33180. bottom: 31 / 1636
  33181. }
  33182. },
  33183. back: {
  33184. height: math.unit(4, "meters"),
  33185. weight: math.unit(150, "kg"),
  33186. name: "Back",
  33187. image: {
  33188. source: "./media/characters/caledvwlch/back.svg",
  33189. extra: 1635 / 1565,
  33190. bottom: 27 / 1662
  33191. }
  33192. },
  33193. },
  33194. [
  33195. {
  33196. name: "\"Incognito\"",
  33197. height: math.unit(4, "meters")
  33198. },
  33199. {
  33200. name: "Small rampage",
  33201. height: math.unit(600, "meters")
  33202. },
  33203. {
  33204. name: "Mega",
  33205. height: math.unit(30, "km")
  33206. },
  33207. {
  33208. name: "Home-size",
  33209. height: math.unit(50, "km"),
  33210. default: true
  33211. },
  33212. {
  33213. name: "Giga",
  33214. height: math.unit(300, "km")
  33215. },
  33216. {
  33217. name: "Lounging",
  33218. height: math.unit(11000, "km")
  33219. },
  33220. {
  33221. name: "Planet snacking",
  33222. height: math.unit(2000000, "km")
  33223. },
  33224. ]
  33225. ))
  33226. characterMakers.push(() => makeCharacter(
  33227. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33228. {
  33229. front: {
  33230. height: math.unit(6, "feet"),
  33231. weight: math.unit(215, "lb"),
  33232. name: "Front",
  33233. image: {
  33234. source: "./media/characters/sapphire-svell/front.svg",
  33235. extra: 495 / 455,
  33236. bottom: 20 / 515
  33237. }
  33238. },
  33239. back: {
  33240. height: math.unit(6, "feet"),
  33241. weight: math.unit(216, "lb"),
  33242. name: "Back",
  33243. image: {
  33244. source: "./media/characters/sapphire-svell/back.svg",
  33245. extra: 497 / 477,
  33246. bottom: 7 / 504
  33247. }
  33248. },
  33249. maw: {
  33250. height: math.unit(1.57, "feet"),
  33251. name: "Maw",
  33252. image: {
  33253. source: "./media/characters/sapphire-svell/maw.svg"
  33254. }
  33255. },
  33256. foot: {
  33257. height: math.unit(1.07, "feet"),
  33258. name: "Foot",
  33259. image: {
  33260. source: "./media/characters/sapphire-svell/foot.svg"
  33261. }
  33262. },
  33263. toering: {
  33264. height: math.unit(1.7, "inch"),
  33265. name: "Toering",
  33266. image: {
  33267. source: "./media/characters/sapphire-svell/toering.svg"
  33268. }
  33269. },
  33270. },
  33271. [
  33272. {
  33273. name: "Normal",
  33274. height: math.unit(300, "feet"),
  33275. default: true
  33276. },
  33277. {
  33278. name: "Augmented",
  33279. height: math.unit(1250, "feet")
  33280. },
  33281. {
  33282. name: "Unleashed",
  33283. height: math.unit(3000, "feet")
  33284. },
  33285. ]
  33286. ))
  33287. characterMakers.push(() => makeCharacter(
  33288. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33289. {
  33290. side: {
  33291. height: math.unit(2 + 3 / 12, "feet"),
  33292. weight: math.unit(110, "lb"),
  33293. name: "Side",
  33294. image: {
  33295. source: "./media/characters/glitch-flux/side.svg",
  33296. extra: 997 / 805,
  33297. bottom: 20 / 1017
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Normal",
  33304. height: math.unit(2 + 3 / 12, "feet"),
  33305. default: true
  33306. },
  33307. ]
  33308. ))
  33309. characterMakers.push(() => makeCharacter(
  33310. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33311. {
  33312. front: {
  33313. height: math.unit(4, "meters"),
  33314. name: "Front",
  33315. image: {
  33316. source: "./media/characters/mid/front.svg",
  33317. extra: 507 / 476,
  33318. bottom: 17 / 524
  33319. }
  33320. },
  33321. back: {
  33322. height: math.unit(4, "meters"),
  33323. name: "Back",
  33324. image: {
  33325. source: "./media/characters/mid/back.svg",
  33326. extra: 519 / 487,
  33327. bottom: 7 / 526
  33328. }
  33329. },
  33330. stuck: {
  33331. height: math.unit(2.2, "meters"),
  33332. name: "Stuck",
  33333. image: {
  33334. source: "./media/characters/mid/stuck.svg",
  33335. extra: 1951 / 1869,
  33336. bottom: 88 / 2039
  33337. }
  33338. }
  33339. },
  33340. [
  33341. {
  33342. name: "Normal",
  33343. height: math.unit(4, "meters"),
  33344. default: true
  33345. },
  33346. {
  33347. name: "Big",
  33348. height: math.unit(10, "meters")
  33349. },
  33350. {
  33351. name: "Macro",
  33352. height: math.unit(800, "meters")
  33353. },
  33354. {
  33355. name: "Megamacro",
  33356. height: math.unit(100, "km")
  33357. },
  33358. {
  33359. name: "Overgrown",
  33360. height: math.unit(1, "parsec")
  33361. },
  33362. ]
  33363. ))
  33364. characterMakers.push(() => makeCharacter(
  33365. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33366. {
  33367. front: {
  33368. height: math.unit(2.5, "meters"),
  33369. weight: math.unit(225, "kg"),
  33370. name: "Front",
  33371. image: {
  33372. source: "./media/characters/iris/front.svg",
  33373. extra: 3348 / 3251,
  33374. bottom: 205 / 3553
  33375. }
  33376. },
  33377. maw: {
  33378. height: math.unit(0.56, "meter"),
  33379. name: "Maw",
  33380. image: {
  33381. source: "./media/characters/iris/maw.svg"
  33382. }
  33383. },
  33384. },
  33385. [
  33386. {
  33387. name: "Mewter cat",
  33388. height: math.unit(1.2, "meters")
  33389. },
  33390. {
  33391. name: "Normal",
  33392. height: math.unit(2.5, "meters"),
  33393. default: true
  33394. },
  33395. {
  33396. name: "Minimacro",
  33397. height: math.unit(18, "feet")
  33398. },
  33399. {
  33400. name: "Macro",
  33401. height: math.unit(140, "feet")
  33402. },
  33403. {
  33404. name: "Macro+",
  33405. height: math.unit(180, "meters")
  33406. },
  33407. {
  33408. name: "Megamacro",
  33409. height: math.unit(2746, "meters")
  33410. },
  33411. ]
  33412. ))
  33413. characterMakers.push(() => makeCharacter(
  33414. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33415. {
  33416. front: {
  33417. height: math.unit(6, "feet"),
  33418. weight: math.unit(135, "lb"),
  33419. name: "Front",
  33420. image: {
  33421. source: "./media/characters/axel/front.svg",
  33422. extra: 908 / 908,
  33423. bottom: 58 / 966
  33424. }
  33425. },
  33426. side: {
  33427. height: math.unit(6, "feet"),
  33428. weight: math.unit(135, "lb"),
  33429. name: "Side",
  33430. image: {
  33431. source: "./media/characters/axel/side.svg",
  33432. extra: 958 / 958,
  33433. bottom: 11 / 969
  33434. }
  33435. },
  33436. back: {
  33437. height: math.unit(6, "feet"),
  33438. weight: math.unit(135, "lb"),
  33439. name: "Back",
  33440. image: {
  33441. source: "./media/characters/axel/back.svg",
  33442. extra: 887 / 887,
  33443. bottom: 34 / 921
  33444. }
  33445. },
  33446. head: {
  33447. height: math.unit(1.07, "feet"),
  33448. name: "Head",
  33449. image: {
  33450. source: "./media/characters/axel/head.svg"
  33451. }
  33452. },
  33453. beak: {
  33454. height: math.unit(1.4, "feet"),
  33455. name: "Beak",
  33456. image: {
  33457. source: "./media/characters/axel/beak.svg"
  33458. }
  33459. },
  33460. beakSide: {
  33461. height: math.unit(1.4, "feet"),
  33462. name: "Beak Side",
  33463. image: {
  33464. source: "./media/characters/axel/beak-side.svg"
  33465. }
  33466. },
  33467. sheath: {
  33468. height: math.unit(0.5, "feet"),
  33469. name: "Sheath",
  33470. image: {
  33471. source: "./media/characters/axel/sheath.svg"
  33472. }
  33473. },
  33474. dick: {
  33475. height: math.unit(0.98, "feet"),
  33476. name: "Dick",
  33477. image: {
  33478. source: "./media/characters/axel/dick.svg"
  33479. }
  33480. },
  33481. },
  33482. [
  33483. {
  33484. name: "Macro",
  33485. height: math.unit(68, "meters"),
  33486. default: true
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(3.5, "meters"),
  33495. weight: math.unit(1200, "kg"),
  33496. name: "Front",
  33497. image: {
  33498. source: "./media/characters/joanna/front.svg",
  33499. extra: 1596 / 1488,
  33500. bottom: 29 / 1625
  33501. }
  33502. },
  33503. back: {
  33504. height: math.unit(3.5, "meters"),
  33505. weight: math.unit(1200, "kg"),
  33506. name: "Back",
  33507. image: {
  33508. source: "./media/characters/joanna/back.svg",
  33509. extra: 1594 / 1495,
  33510. bottom: 26 / 1620
  33511. }
  33512. },
  33513. frontShorts: {
  33514. height: math.unit(3.5, "meters"),
  33515. weight: math.unit(1200, "kg"),
  33516. name: "Front (Shorts)",
  33517. image: {
  33518. source: "./media/characters/joanna/front-shorts.svg",
  33519. extra: 1596 / 1488,
  33520. bottom: 29 / 1625
  33521. }
  33522. },
  33523. frontBiker: {
  33524. height: math.unit(3.5, "meters"),
  33525. weight: math.unit(1200, "kg"),
  33526. name: "Front (Biker)",
  33527. image: {
  33528. source: "./media/characters/joanna/front-biker.svg",
  33529. extra: 1596 / 1488,
  33530. bottom: 29 / 1625
  33531. }
  33532. },
  33533. backBiker: {
  33534. height: math.unit(3.5, "meters"),
  33535. weight: math.unit(1200, "kg"),
  33536. name: "Back (Biker)",
  33537. image: {
  33538. source: "./media/characters/joanna/back-biker.svg",
  33539. extra: 1594 / 1495,
  33540. bottom: 88 / 1682
  33541. }
  33542. },
  33543. bikeLeft: {
  33544. height: math.unit(2.4, "meters"),
  33545. weight: math.unit(1600, "kg"),
  33546. name: "Bike (Left)",
  33547. image: {
  33548. source: "./media/characters/joanna/bike-left.svg",
  33549. extra: 720 / 720,
  33550. bottom: 8 / 728
  33551. }
  33552. },
  33553. bikeRight: {
  33554. height: math.unit(2.4, "meters"),
  33555. weight: math.unit(1600, "kg"),
  33556. name: "Bike (Right)",
  33557. image: {
  33558. source: "./media/characters/joanna/bike-right.svg",
  33559. extra: 720 / 720,
  33560. bottom: 8 / 728
  33561. }
  33562. },
  33563. },
  33564. [
  33565. {
  33566. name: "Incognito",
  33567. height: math.unit(3.5, "meters")
  33568. },
  33569. {
  33570. name: "Casual Big",
  33571. height: math.unit(200, "meters")
  33572. },
  33573. {
  33574. name: "Macro",
  33575. height: math.unit(600, "meters")
  33576. },
  33577. {
  33578. name: "Original",
  33579. height: math.unit(20, "km"),
  33580. default: true
  33581. },
  33582. {
  33583. name: "Giga",
  33584. height: math.unit(400, "km")
  33585. },
  33586. {
  33587. name: "Lounging",
  33588. height: math.unit(1500, "km")
  33589. },
  33590. {
  33591. name: "Planetary",
  33592. height: math.unit(200000, "km")
  33593. },
  33594. ]
  33595. ))
  33596. characterMakers.push(() => makeCharacter(
  33597. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33598. {
  33599. front: {
  33600. height: math.unit(6, "feet"),
  33601. weight: math.unit(150, "lb"),
  33602. name: "Front",
  33603. image: {
  33604. source: "./media/characters/hugo-sigil/front.svg",
  33605. extra: 522 / 500,
  33606. bottom: 2 / 524
  33607. }
  33608. },
  33609. back: {
  33610. height: math.unit(6, "feet"),
  33611. weight: math.unit(150, "lb"),
  33612. name: "Back",
  33613. image: {
  33614. source: "./media/characters/hugo-sigil/back.svg",
  33615. extra: 519 / 495,
  33616. bottom: 5 / 524
  33617. }
  33618. },
  33619. maw: {
  33620. height: math.unit(1.4, "feet"),
  33621. weight: math.unit(150, "lb"),
  33622. name: "Maw",
  33623. image: {
  33624. source: "./media/characters/hugo-sigil/maw.svg"
  33625. }
  33626. },
  33627. feet: {
  33628. height: math.unit(1.56, "feet"),
  33629. weight: math.unit(150, "lb"),
  33630. name: "Feet",
  33631. image: {
  33632. source: "./media/characters/hugo-sigil/feet.svg",
  33633. extra: 177 / 177,
  33634. bottom: 12 / 189
  33635. }
  33636. },
  33637. },
  33638. [
  33639. {
  33640. name: "Normal",
  33641. height: math.unit(6, "feet")
  33642. },
  33643. {
  33644. name: "Macro",
  33645. height: math.unit(200, "feet"),
  33646. default: true
  33647. },
  33648. ]
  33649. ))
  33650. characterMakers.push(() => makeCharacter(
  33651. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33652. {
  33653. front: {
  33654. height: math.unit(6, "feet"),
  33655. weight: math.unit(150, "lb"),
  33656. name: "Front",
  33657. image: {
  33658. source: "./media/characters/peri/front.svg",
  33659. extra: 2354 / 2233,
  33660. bottom: 49 / 2403
  33661. }
  33662. },
  33663. },
  33664. [
  33665. {
  33666. name: "Really Small",
  33667. height: math.unit(1, "nm")
  33668. },
  33669. {
  33670. name: "Micro",
  33671. height: math.unit(4, "inches")
  33672. },
  33673. {
  33674. name: "Normal",
  33675. height: math.unit(7, "inches"),
  33676. default: true
  33677. },
  33678. {
  33679. name: "Macro",
  33680. height: math.unit(400, "feet")
  33681. },
  33682. {
  33683. name: "Megamacro",
  33684. height: math.unit(100, "miles")
  33685. },
  33686. ]
  33687. ))
  33688. characterMakers.push(() => makeCharacter(
  33689. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33690. {
  33691. frontSlim: {
  33692. height: math.unit(7, "feet"),
  33693. name: "Front (Slim)",
  33694. image: {
  33695. source: "./media/characters/issilora/front-slim.svg",
  33696. extra: 529 / 449,
  33697. bottom: 53 / 582
  33698. }
  33699. },
  33700. sideSlim: {
  33701. height: math.unit(7, "feet"),
  33702. name: "Side (Slim)",
  33703. image: {
  33704. source: "./media/characters/issilora/side-slim.svg",
  33705. extra: 570 / 480,
  33706. bottom: 30 / 600
  33707. }
  33708. },
  33709. backSlim: {
  33710. height: math.unit(7, "feet"),
  33711. name: "Back (Slim)",
  33712. image: {
  33713. source: "./media/characters/issilora/back-slim.svg",
  33714. extra: 537 / 455,
  33715. bottom: 46 / 583
  33716. }
  33717. },
  33718. frontBuff: {
  33719. height: math.unit(7, "feet"),
  33720. name: "Front (Buff)",
  33721. image: {
  33722. source: "./media/characters/issilora/front-buff.svg",
  33723. extra: 2310 / 2035,
  33724. bottom: 335 / 2645
  33725. }
  33726. },
  33727. head: {
  33728. height: math.unit(1.94, "feet"),
  33729. name: "Head",
  33730. image: {
  33731. source: "./media/characters/issilora/head.svg"
  33732. }
  33733. },
  33734. },
  33735. [
  33736. {
  33737. name: "Minimum",
  33738. height: math.unit(7, "feet")
  33739. },
  33740. {
  33741. name: "Comfortable",
  33742. height: math.unit(17, "feet")
  33743. },
  33744. {
  33745. name: "Fun Size",
  33746. height: math.unit(47, "feet")
  33747. },
  33748. {
  33749. name: "Natural Macro",
  33750. height: math.unit(137, "feet"),
  33751. default: true
  33752. },
  33753. {
  33754. name: "Maximum Kaiju",
  33755. height: math.unit(397, "feet")
  33756. },
  33757. ]
  33758. ))
  33759. characterMakers.push(() => makeCharacter(
  33760. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33761. {
  33762. front: {
  33763. height: math.unit(50 + 9/12, "feet"),
  33764. weight: math.unit(32.8, "tons"),
  33765. name: "Front",
  33766. image: {
  33767. source: "./media/characters/irb'iiritaahn/front.svg",
  33768. extra: 1878/1826,
  33769. bottom: 326/2204
  33770. }
  33771. },
  33772. back: {
  33773. height: math.unit(50 + 9/12, "feet"),
  33774. weight: math.unit(32.8, "tons"),
  33775. name: "Back",
  33776. image: {
  33777. source: "./media/characters/irb'iiritaahn/back.svg",
  33778. extra: 2052/2018,
  33779. bottom: 152/2204
  33780. }
  33781. },
  33782. head: {
  33783. height: math.unit(12.86, "feet"),
  33784. name: "Head",
  33785. image: {
  33786. source: "./media/characters/irb'iiritaahn/head.svg"
  33787. }
  33788. },
  33789. maw: {
  33790. height: math.unit(9.66, "feet"),
  33791. name: "Maw",
  33792. image: {
  33793. source: "./media/characters/irb'iiritaahn/maw.svg"
  33794. }
  33795. },
  33796. frontDick: {
  33797. height: math.unit(8.78461, "feet"),
  33798. name: "Front Dick",
  33799. image: {
  33800. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33801. }
  33802. },
  33803. rearDick: {
  33804. height: math.unit(8.78461, "feet"),
  33805. name: "Rear Dick",
  33806. image: {
  33807. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33808. }
  33809. },
  33810. rearDickUnfolded: {
  33811. height: math.unit(8.78, "feet"),
  33812. name: "Rear Dick (Unfolded)",
  33813. image: {
  33814. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33815. }
  33816. },
  33817. wings: {
  33818. height: math.unit(43, "feet"),
  33819. name: "Wings",
  33820. image: {
  33821. source: "./media/characters/irb'iiritaahn/wings.svg"
  33822. }
  33823. },
  33824. },
  33825. [
  33826. {
  33827. name: "Macro",
  33828. height: math.unit(50 + 9/12, "feet"),
  33829. default: true
  33830. },
  33831. ]
  33832. ))
  33833. characterMakers.push(() => makeCharacter(
  33834. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33835. {
  33836. front: {
  33837. height: math.unit(205, "cm"),
  33838. weight: math.unit(102, "kg"),
  33839. name: "Front",
  33840. image: {
  33841. source: "./media/characters/irbisgreif/front.svg",
  33842. extra: 785/706,
  33843. bottom: 13/798
  33844. }
  33845. },
  33846. back: {
  33847. height: math.unit(205, "cm"),
  33848. weight: math.unit(102, "kg"),
  33849. name: "Back",
  33850. image: {
  33851. source: "./media/characters/irbisgreif/back.svg",
  33852. extra: 713/701,
  33853. bottom: 26/739
  33854. }
  33855. },
  33856. frontDressed: {
  33857. height: math.unit(216, "cm"),
  33858. weight: math.unit(102, "kg"),
  33859. name: "Front-dressed",
  33860. image: {
  33861. source: "./media/characters/irbisgreif/front-dressed.svg",
  33862. extra: 902/776,
  33863. bottom: 14/916
  33864. }
  33865. },
  33866. sideDressed: {
  33867. height: math.unit(195, "cm"),
  33868. weight: math.unit(102, "kg"),
  33869. name: "Side-dressed",
  33870. image: {
  33871. source: "./media/characters/irbisgreif/side-dressed.svg",
  33872. extra: 788/688,
  33873. bottom: 21/809
  33874. }
  33875. },
  33876. backDressed: {
  33877. height: math.unit(216, "cm"),
  33878. weight: math.unit(102, "kg"),
  33879. name: "Back-dressed",
  33880. image: {
  33881. source: "./media/characters/irbisgreif/back-dressed.svg",
  33882. extra: 901/783,
  33883. bottom: 10/911
  33884. }
  33885. },
  33886. dick: {
  33887. height: math.unit(0.49, "feet"),
  33888. name: "Dick",
  33889. image: {
  33890. source: "./media/characters/irbisgreif/dick.svg"
  33891. }
  33892. },
  33893. wingTop: {
  33894. height: math.unit(1.93 , "feet"),
  33895. name: "Wing-top",
  33896. image: {
  33897. source: "./media/characters/irbisgreif/wing-top.svg"
  33898. }
  33899. },
  33900. wingBottom: {
  33901. height: math.unit(1.93 , "feet"),
  33902. name: "Wing-bottom",
  33903. image: {
  33904. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33905. }
  33906. },
  33907. },
  33908. [
  33909. {
  33910. name: "Normal",
  33911. height: math.unit(216, "cm"),
  33912. default: true
  33913. },
  33914. ]
  33915. ))
  33916. characterMakers.push(() => makeCharacter(
  33917. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33918. {
  33919. front: {
  33920. height: math.unit(6, "feet"),
  33921. weight: math.unit(150, "lb"),
  33922. name: "Front",
  33923. image: {
  33924. source: "./media/characters/pride/front.svg",
  33925. extra: 1299/1230,
  33926. bottom: 18/1317
  33927. }
  33928. },
  33929. },
  33930. [
  33931. {
  33932. name: "Normal",
  33933. height: math.unit(7, "feet")
  33934. },
  33935. {
  33936. name: "Mini-macro",
  33937. height: math.unit(11, "feet")
  33938. },
  33939. {
  33940. name: "Macro",
  33941. height: math.unit(15, "meters"),
  33942. default: true
  33943. },
  33944. {
  33945. name: "Macro+",
  33946. height: math.unit(40, "meters")
  33947. },
  33948. ]
  33949. ))
  33950. characterMakers.push(() => makeCharacter(
  33951. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33952. {
  33953. front: {
  33954. height: math.unit(4 + 2 / 12, "feet"),
  33955. weight: math.unit(95, "lb"),
  33956. name: "Front",
  33957. image: {
  33958. source: "./media/characters/vaelophis-nyx/front.svg",
  33959. extra: 2532/2330,
  33960. bottom: 0/2532
  33961. }
  33962. },
  33963. back: {
  33964. height: math.unit(4 + 2 / 12, "feet"),
  33965. weight: math.unit(95, "lb"),
  33966. name: "Back",
  33967. image: {
  33968. source: "./media/characters/vaelophis-nyx/back.svg",
  33969. extra: 2484/2361,
  33970. bottom: 0/2484
  33971. }
  33972. },
  33973. feralSide: {
  33974. height: math.unit(2 + 1/12, "feet"),
  33975. weight: math.unit(20, "lb"),
  33976. name: "Feral (Side)",
  33977. image: {
  33978. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33979. extra: 1721/1581,
  33980. bottom: 70/1791
  33981. }
  33982. },
  33983. feralLazing: {
  33984. height: math.unit(1.08, "feet"),
  33985. weight: math.unit(20, "lb"),
  33986. name: "Feral (Lazing)",
  33987. image: {
  33988. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33989. extra: 822/822,
  33990. bottom: 248/1070
  33991. }
  33992. },
  33993. ear: {
  33994. height: math.unit(0.416, "feet"),
  33995. name: "Ear",
  33996. image: {
  33997. source: "./media/characters/vaelophis-nyx/ear.svg"
  33998. }
  33999. },
  34000. eye: {
  34001. height: math.unit(0.0748, "feet"),
  34002. name: "Eye",
  34003. image: {
  34004. source: "./media/characters/vaelophis-nyx/eye.svg"
  34005. }
  34006. },
  34007. mouth: {
  34008. height: math.unit(0.378, "feet"),
  34009. name: "Mouth",
  34010. image: {
  34011. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34012. }
  34013. },
  34014. spade: {
  34015. height: math.unit(0.55, "feet"),
  34016. name: "Spade",
  34017. image: {
  34018. source: "./media/characters/vaelophis-nyx/spade.svg"
  34019. }
  34020. },
  34021. },
  34022. [
  34023. {
  34024. name: "Normal",
  34025. height: math.unit(4 + 2/12, "feet"),
  34026. default: true
  34027. },
  34028. ]
  34029. ))
  34030. characterMakers.push(() => makeCharacter(
  34031. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34032. {
  34033. front: {
  34034. height: math.unit(7, "feet"),
  34035. weight: math.unit(231, "lb"),
  34036. name: "Front",
  34037. image: {
  34038. source: "./media/characters/flux/front.svg",
  34039. extra: 919/871,
  34040. bottom: 0/919
  34041. }
  34042. },
  34043. back: {
  34044. height: math.unit(7, "feet"),
  34045. weight: math.unit(231, "lb"),
  34046. name: "Back",
  34047. image: {
  34048. source: "./media/characters/flux/back.svg",
  34049. extra: 1040/992,
  34050. bottom: 0/1040
  34051. }
  34052. },
  34053. frontDressed: {
  34054. height: math.unit(7, "feet"),
  34055. weight: math.unit(231, "lb"),
  34056. name: "Front (Dressed)",
  34057. image: {
  34058. source: "./media/characters/flux/front-dressed.svg",
  34059. extra: 919/871,
  34060. bottom: 0/919
  34061. }
  34062. },
  34063. feralSide: {
  34064. height: math.unit(5, "feet"),
  34065. weight: math.unit(150, "lb"),
  34066. name: "Feral (Side)",
  34067. image: {
  34068. source: "./media/characters/flux/feral-side.svg",
  34069. extra: 598/528,
  34070. bottom: 28/626
  34071. }
  34072. },
  34073. head: {
  34074. height: math.unit(1.585, "feet"),
  34075. name: "Head",
  34076. image: {
  34077. source: "./media/characters/flux/head.svg"
  34078. }
  34079. },
  34080. headSide: {
  34081. height: math.unit(1.74, "feet"),
  34082. name: "Head (Side)",
  34083. image: {
  34084. source: "./media/characters/flux/head-side.svg"
  34085. }
  34086. },
  34087. headSideFire: {
  34088. height: math.unit(1.76, "feet"),
  34089. name: "Head (Side, Fire)",
  34090. image: {
  34091. source: "./media/characters/flux/head-side-fire.svg"
  34092. }
  34093. },
  34094. },
  34095. [
  34096. {
  34097. name: "Normal",
  34098. height: math.unit(7, "feet"),
  34099. default: true
  34100. },
  34101. ]
  34102. ))
  34103. characterMakers.push(() => makeCharacter(
  34104. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34105. {
  34106. front: {
  34107. height: math.unit(9, "feet"),
  34108. weight: math.unit(1012, "lb"),
  34109. name: "Front",
  34110. image: {
  34111. source: "./media/characters/ulfra-lupae/front.svg",
  34112. extra: 1083/1011,
  34113. bottom: 67/1150
  34114. }
  34115. },
  34116. },
  34117. [
  34118. {
  34119. name: "Micro",
  34120. height: math.unit(6, "inches")
  34121. },
  34122. {
  34123. name: "Socializing",
  34124. height: math.unit(6 + 5/12, "feet")
  34125. },
  34126. {
  34127. name: "Normal",
  34128. height: math.unit(9, "feet"),
  34129. default: true
  34130. },
  34131. {
  34132. name: "Macro",
  34133. height: math.unit(150, "feet")
  34134. },
  34135. ]
  34136. ))
  34137. characterMakers.push(() => makeCharacter(
  34138. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34139. {
  34140. front: {
  34141. height: math.unit(5 + 2/12, "feet"),
  34142. weight: math.unit(120, "lb"),
  34143. name: "Front",
  34144. image: {
  34145. source: "./media/characters/timber/front.svg",
  34146. extra: 2814/2705,
  34147. bottom: 181/2995
  34148. }
  34149. },
  34150. },
  34151. [
  34152. {
  34153. name: "Normal",
  34154. height: math.unit(5 + 2/12, "feet"),
  34155. default: true
  34156. },
  34157. ]
  34158. ))
  34159. characterMakers.push(() => makeCharacter(
  34160. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34161. {
  34162. front: {
  34163. height: math.unit(9, "feet"),
  34164. name: "Front",
  34165. image: {
  34166. source: "./media/characters/nicki/front.svg",
  34167. extra: 1240/990,
  34168. bottom: 45/1285
  34169. },
  34170. form: "anthro",
  34171. default: true
  34172. },
  34173. side: {
  34174. height: math.unit(9, "feet"),
  34175. name: "Side",
  34176. image: {
  34177. source: "./media/characters/nicki/side.svg",
  34178. extra: 1047/973,
  34179. bottom: 61/1108
  34180. },
  34181. form: "anthro"
  34182. },
  34183. back: {
  34184. height: math.unit(9, "feet"),
  34185. name: "Back",
  34186. image: {
  34187. source: "./media/characters/nicki/back.svg",
  34188. extra: 1006/965,
  34189. bottom: 39/1045
  34190. },
  34191. form: "anthro"
  34192. },
  34193. taur: {
  34194. height: math.unit(15, "feet"),
  34195. name: "Taur",
  34196. image: {
  34197. source: "./media/characters/nicki/taur.svg",
  34198. extra: 1592/1347,
  34199. bottom: 0/1592
  34200. },
  34201. form: "taur",
  34202. default: true
  34203. },
  34204. },
  34205. [
  34206. {
  34207. name: "Normal",
  34208. height: math.unit(9, "feet"),
  34209. form: "anthro",
  34210. default: true
  34211. },
  34212. {
  34213. name: "Normal",
  34214. height: math.unit(15, "feet"),
  34215. form: "taur",
  34216. default: true
  34217. }
  34218. ],
  34219. {
  34220. "anthro": {
  34221. name: "Anthro",
  34222. default: true
  34223. },
  34224. "taur": {
  34225. name: "Taur"
  34226. }
  34227. }
  34228. ))
  34229. characterMakers.push(() => makeCharacter(
  34230. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34231. {
  34232. front: {
  34233. height: math.unit(7 + 10/12, "feet"),
  34234. weight: math.unit(3.5, "tons"),
  34235. name: "Front",
  34236. image: {
  34237. source: "./media/characters/lee/front.svg",
  34238. extra: 1773/1615,
  34239. bottom: 86/1859
  34240. }
  34241. },
  34242. hand: {
  34243. height: math.unit(1.78, "feet"),
  34244. name: "Hand",
  34245. image: {
  34246. source: "./media/characters/lee/hand.svg"
  34247. }
  34248. },
  34249. maw: {
  34250. height: math.unit(1.18, "feet"),
  34251. name: "Maw",
  34252. image: {
  34253. source: "./media/characters/lee/maw.svg"
  34254. }
  34255. },
  34256. },
  34257. [
  34258. {
  34259. name: "Normal",
  34260. height: math.unit(7 + 10/12, "feet"),
  34261. default: true
  34262. },
  34263. ]
  34264. ))
  34265. characterMakers.push(() => makeCharacter(
  34266. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34267. {
  34268. front: {
  34269. height: math.unit(9, "feet"),
  34270. name: "Front",
  34271. image: {
  34272. source: "./media/characters/guti/front.svg",
  34273. extra: 4551/4355,
  34274. bottom: 123/4674
  34275. }
  34276. },
  34277. tongue: {
  34278. height: math.unit(1, "feet"),
  34279. name: "Tongue",
  34280. image: {
  34281. source: "./media/characters/guti/tongue.svg"
  34282. }
  34283. },
  34284. paw: {
  34285. height: math.unit(1.18, "feet"),
  34286. name: "Paw",
  34287. image: {
  34288. source: "./media/characters/guti/paw.svg"
  34289. }
  34290. },
  34291. },
  34292. [
  34293. {
  34294. name: "Normal",
  34295. height: math.unit(9, "feet"),
  34296. default: true
  34297. },
  34298. ]
  34299. ))
  34300. characterMakers.push(() => makeCharacter(
  34301. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34302. {
  34303. side: {
  34304. height: math.unit(5, "meters"),
  34305. name: "Side",
  34306. image: {
  34307. source: "./media/characters/vesper/side.svg",
  34308. extra: 1605/1518,
  34309. bottom: 0/1605
  34310. }
  34311. },
  34312. },
  34313. [
  34314. {
  34315. name: "Small",
  34316. height: math.unit(5, "meters")
  34317. },
  34318. {
  34319. name: "Sage",
  34320. height: math.unit(100, "meters"),
  34321. default: true
  34322. },
  34323. {
  34324. name: "Fun Size",
  34325. height: math.unit(600, "meters")
  34326. },
  34327. {
  34328. name: "Goddess",
  34329. height: math.unit(20000, "km")
  34330. },
  34331. {
  34332. name: "Maximum",
  34333. height: math.unit(5, "galaxies")
  34334. },
  34335. ]
  34336. ))
  34337. characterMakers.push(() => makeCharacter(
  34338. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34339. {
  34340. front: {
  34341. height: math.unit(6 + 3/12, "feet"),
  34342. weight: math.unit(190, "lb"),
  34343. name: "Front",
  34344. image: {
  34345. source: "./media/characters/gawain/front.svg",
  34346. extra: 2222/2139,
  34347. bottom: 90/2312
  34348. }
  34349. },
  34350. back: {
  34351. height: math.unit(6 + 3/12, "feet"),
  34352. weight: math.unit(190, "lb"),
  34353. name: "Back",
  34354. image: {
  34355. source: "./media/characters/gawain/back.svg",
  34356. extra: 2199/2111,
  34357. bottom: 73/2272
  34358. }
  34359. },
  34360. },
  34361. [
  34362. {
  34363. name: "Normal",
  34364. height: math.unit(6 + 3/12, "feet"),
  34365. default: true
  34366. },
  34367. ]
  34368. ))
  34369. characterMakers.push(() => makeCharacter(
  34370. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34371. {
  34372. side: {
  34373. height: math.unit(3.5, "meters"),
  34374. weight: math.unit(16000, "lb"),
  34375. name: "Side",
  34376. image: {
  34377. source: "./media/characters/dascalti/side.svg",
  34378. extra: 392/273,
  34379. bottom: 47/439
  34380. }
  34381. },
  34382. breath: {
  34383. height: math.unit(7.4, "feet"),
  34384. name: "Breath",
  34385. image: {
  34386. source: "./media/characters/dascalti/breath.svg"
  34387. }
  34388. },
  34389. fed: {
  34390. height: math.unit(3.6, "meters"),
  34391. weight: math.unit(16000, "lb"),
  34392. name: "Fed",
  34393. image: {
  34394. source: "./media/characters/dascalti/fed.svg",
  34395. extra: 1419/820,
  34396. bottom: 95/1514
  34397. }
  34398. },
  34399. },
  34400. [
  34401. {
  34402. name: "Normal",
  34403. height: math.unit(3.5, "meters"),
  34404. default: true
  34405. },
  34406. ]
  34407. ))
  34408. characterMakers.push(() => makeCharacter(
  34409. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34410. {
  34411. front: {
  34412. height: math.unit(3 + 5/12, "feet"),
  34413. name: "Front",
  34414. image: {
  34415. source: "./media/characters/mauve/front.svg",
  34416. extra: 1126/1033,
  34417. bottom: 65/1191
  34418. }
  34419. },
  34420. side: {
  34421. height: math.unit(3 + 5/12, "feet"),
  34422. name: "Side",
  34423. image: {
  34424. source: "./media/characters/mauve/side.svg",
  34425. extra: 1089/1001,
  34426. bottom: 29/1118
  34427. }
  34428. },
  34429. back: {
  34430. height: math.unit(3 + 5/12, "feet"),
  34431. name: "Back",
  34432. image: {
  34433. source: "./media/characters/mauve/back.svg",
  34434. extra: 1173/1053,
  34435. bottom: 109/1282
  34436. }
  34437. },
  34438. },
  34439. [
  34440. {
  34441. name: "Normal",
  34442. height: math.unit(3 + 5/12, "feet"),
  34443. default: true
  34444. },
  34445. ]
  34446. ))
  34447. characterMakers.push(() => makeCharacter(
  34448. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34449. {
  34450. front: {
  34451. height: math.unit(6 + 3/12, "feet"),
  34452. weight: math.unit(430, "lb"),
  34453. name: "Front",
  34454. image: {
  34455. source: "./media/characters/carlos/front.svg",
  34456. extra: 1964/1913,
  34457. bottom: 70/2034
  34458. }
  34459. },
  34460. },
  34461. [
  34462. {
  34463. name: "Normal",
  34464. height: math.unit(6 + 3/12, "feet"),
  34465. default: true
  34466. },
  34467. ]
  34468. ))
  34469. characterMakers.push(() => makeCharacter(
  34470. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34471. {
  34472. back: {
  34473. height: math.unit(5 + 10/12, "feet"),
  34474. weight: math.unit(200, "lb"),
  34475. name: "Back",
  34476. image: {
  34477. source: "./media/characters/jax/back.svg",
  34478. extra: 764/739,
  34479. bottom: 25/789
  34480. }
  34481. },
  34482. },
  34483. [
  34484. {
  34485. name: "Normal",
  34486. height: math.unit(5 + 10/12, "feet"),
  34487. default: true
  34488. },
  34489. ]
  34490. ))
  34491. characterMakers.push(() => makeCharacter(
  34492. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34493. {
  34494. front: {
  34495. height: math.unit(8, "feet"),
  34496. weight: math.unit(250, "lb"),
  34497. name: "Front",
  34498. image: {
  34499. source: "./media/characters/eikthynir/front.svg",
  34500. extra: 1332/1166,
  34501. bottom: 82/1414
  34502. }
  34503. },
  34504. back: {
  34505. height: math.unit(8, "feet"),
  34506. weight: math.unit(250, "lb"),
  34507. name: "Back",
  34508. image: {
  34509. source: "./media/characters/eikthynir/back.svg",
  34510. extra: 1342/1190,
  34511. bottom: 19/1361
  34512. }
  34513. },
  34514. dick: {
  34515. height: math.unit(2.35, "feet"),
  34516. name: "Dick",
  34517. image: {
  34518. source: "./media/characters/eikthynir/dick.svg"
  34519. }
  34520. },
  34521. },
  34522. [
  34523. {
  34524. name: "Normal",
  34525. height: math.unit(8, "feet"),
  34526. default: true
  34527. },
  34528. ]
  34529. ))
  34530. characterMakers.push(() => makeCharacter(
  34531. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34532. {
  34533. front: {
  34534. height: math.unit(99, "meters"),
  34535. weight: math.unit(13000, "tons"),
  34536. name: "Front",
  34537. image: {
  34538. source: "./media/characters/zlmos/front.svg",
  34539. extra: 2202/1992,
  34540. bottom: 315/2517
  34541. }
  34542. },
  34543. },
  34544. [
  34545. {
  34546. name: "Macro",
  34547. height: math.unit(99, "meters"),
  34548. default: true
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34554. {
  34555. front: {
  34556. height: math.unit(6 + 5/12, "feet"),
  34557. name: "Front",
  34558. image: {
  34559. source: "./media/characters/purri/front.svg",
  34560. extra: 1698/1610,
  34561. bottom: 32/1730
  34562. }
  34563. },
  34564. frontAlt: {
  34565. height: math.unit(6 + 5/12, "feet"),
  34566. name: "Front (Alt)",
  34567. image: {
  34568. source: "./media/characters/purri/front-alt.svg",
  34569. extra: 450/420,
  34570. bottom: 26/476
  34571. }
  34572. },
  34573. boots: {
  34574. height: math.unit(5.5, "feet"),
  34575. name: "Boots",
  34576. image: {
  34577. source: "./media/characters/purri/boots.svg",
  34578. extra: 905/853,
  34579. bottom: 18/923
  34580. },
  34581. extraAttributes: {
  34582. "shoeSize": {
  34583. name: "Shoe Size",
  34584. power: 1,
  34585. type: "length",
  34586. base: math.unit(12, "ShoeSizeMensUS")
  34587. },
  34588. "platformHeight": {
  34589. name: "Platform Height",
  34590. power: 1,
  34591. type: "length",
  34592. base: math.unit(2, "inches")
  34593. },
  34594. }
  34595. },
  34596. lying: {
  34597. height: math.unit(2, "feet"),
  34598. name: "Lying",
  34599. image: {
  34600. source: "./media/characters/purri/lying.svg",
  34601. extra: 940/843,
  34602. bottom: 146/1086
  34603. }
  34604. },
  34605. devious: {
  34606. height: math.unit(1.77, "feet"),
  34607. name: "Devious",
  34608. image: {
  34609. source: "./media/characters/purri/devious.svg",
  34610. extra: 1440/1155,
  34611. bottom: 147/1587
  34612. }
  34613. },
  34614. bean: {
  34615. height: math.unit(1.94, "feet"),
  34616. name: "Bean",
  34617. image: {
  34618. source: "./media/characters/purri/bean.svg"
  34619. }
  34620. },
  34621. },
  34622. [
  34623. {
  34624. name: "Micro",
  34625. height: math.unit(1, "mm")
  34626. },
  34627. {
  34628. name: "Normal",
  34629. height: math.unit(6 + 5/12, "feet"),
  34630. default: true
  34631. },
  34632. {
  34633. name: "Macro :3c",
  34634. height: math.unit(2, "miles")
  34635. },
  34636. ]
  34637. ))
  34638. characterMakers.push(() => makeCharacter(
  34639. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34640. {
  34641. front: {
  34642. height: math.unit(6 + 2/12, "feet"),
  34643. weight: math.unit(250, "lb"),
  34644. name: "Front",
  34645. image: {
  34646. source: "./media/characters/moonlight/front.svg",
  34647. extra: 1044/908,
  34648. bottom: 56/1100
  34649. }
  34650. },
  34651. feral: {
  34652. height: math.unit(3 + 1/12, "feet"),
  34653. weight: math.unit(50, "kg"),
  34654. name: "Feral",
  34655. image: {
  34656. source: "./media/characters/moonlight/feral.svg",
  34657. extra: 3705/2791,
  34658. bottom: 145/3850
  34659. }
  34660. },
  34661. paw: {
  34662. height: math.unit(1, "feet"),
  34663. name: "Paw",
  34664. image: {
  34665. source: "./media/characters/moonlight/paw.svg"
  34666. }
  34667. },
  34668. paws: {
  34669. height: math.unit(0.98, "feet"),
  34670. name: "Paws",
  34671. image: {
  34672. source: "./media/characters/moonlight/paws.svg",
  34673. extra: 939/939,
  34674. bottom: 50/989
  34675. }
  34676. },
  34677. mouth: {
  34678. height: math.unit(0.48, "feet"),
  34679. name: "Mouth",
  34680. image: {
  34681. source: "./media/characters/moonlight/mouth.svg"
  34682. }
  34683. },
  34684. dick: {
  34685. height: math.unit(1.46, "feet"),
  34686. name: "Dick",
  34687. image: {
  34688. source: "./media/characters/moonlight/dick.svg"
  34689. }
  34690. },
  34691. },
  34692. [
  34693. {
  34694. name: "Normal",
  34695. height: math.unit(6 + 2/12, "feet"),
  34696. default: true
  34697. },
  34698. {
  34699. name: "Macro",
  34700. height: math.unit(300, "feet")
  34701. },
  34702. {
  34703. name: "Macro+",
  34704. height: math.unit(1, "mile")
  34705. },
  34706. {
  34707. name: "Mt. Moon",
  34708. height: math.unit(5, "miles")
  34709. },
  34710. {
  34711. name: "Megamacro",
  34712. height: math.unit(15, "miles")
  34713. },
  34714. ]
  34715. ))
  34716. characterMakers.push(() => makeCharacter(
  34717. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34718. {
  34719. back: {
  34720. height: math.unit(6, "feet"),
  34721. weight: math.unit(150, "lb"),
  34722. name: "Back",
  34723. image: {
  34724. source: "./media/characters/sylen/back.svg",
  34725. extra: 1335/1273,
  34726. bottom: 107/1442
  34727. }
  34728. },
  34729. },
  34730. [
  34731. {
  34732. name: "Normal",
  34733. height: math.unit(5 + 5/12, "feet")
  34734. },
  34735. {
  34736. name: "Megamacro",
  34737. height: math.unit(3, "miles"),
  34738. default: true
  34739. },
  34740. ]
  34741. ))
  34742. characterMakers.push(() => makeCharacter(
  34743. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34744. {
  34745. front: {
  34746. height: math.unit(6, "feet"),
  34747. weight: math.unit(190, "lb"),
  34748. name: "Front",
  34749. image: {
  34750. source: "./media/characters/huttser/front.svg",
  34751. extra: 1152/1058,
  34752. bottom: 23/1175
  34753. }
  34754. },
  34755. side: {
  34756. height: math.unit(6, "feet"),
  34757. weight: math.unit(190, "lb"),
  34758. name: "Side",
  34759. image: {
  34760. source: "./media/characters/huttser/side.svg",
  34761. extra: 1174/1065,
  34762. bottom: 18/1192
  34763. }
  34764. },
  34765. back: {
  34766. height: math.unit(6, "feet"),
  34767. weight: math.unit(190, "lb"),
  34768. name: "Back",
  34769. image: {
  34770. source: "./media/characters/huttser/back.svg",
  34771. extra: 1158/1056,
  34772. bottom: 12/1170
  34773. }
  34774. },
  34775. },
  34776. [
  34777. ]
  34778. ))
  34779. characterMakers.push(() => makeCharacter(
  34780. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34781. {
  34782. side: {
  34783. height: math.unit(12 + 9/12, "feet"),
  34784. weight: math.unit(15000, "lb"),
  34785. name: "Side",
  34786. image: {
  34787. source: "./media/characters/faan/side.svg",
  34788. extra: 2747/2697,
  34789. bottom: 0/2747
  34790. }
  34791. },
  34792. front: {
  34793. height: math.unit(12 + 9/12, "feet"),
  34794. weight: math.unit(15000, "lb"),
  34795. name: "Front",
  34796. image: {
  34797. source: "./media/characters/faan/front.svg",
  34798. extra: 607/571,
  34799. bottom: 24/631
  34800. }
  34801. },
  34802. head: {
  34803. height: math.unit(2.85, "feet"),
  34804. name: "Head",
  34805. image: {
  34806. source: "./media/characters/faan/head.svg"
  34807. }
  34808. },
  34809. headAlt: {
  34810. height: math.unit(3.13, "feet"),
  34811. name: "Head-alt",
  34812. image: {
  34813. source: "./media/characters/faan/head-alt.svg"
  34814. }
  34815. },
  34816. },
  34817. [
  34818. {
  34819. name: "Normal",
  34820. height: math.unit(12 + 9/12, "feet"),
  34821. default: true
  34822. },
  34823. ]
  34824. ))
  34825. characterMakers.push(() => makeCharacter(
  34826. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34827. {
  34828. front: {
  34829. height: math.unit(6, "feet"),
  34830. weight: math.unit(300, "lb"),
  34831. name: "Front",
  34832. image: {
  34833. source: "./media/characters/tanio/front.svg",
  34834. extra: 711/673,
  34835. bottom: 25/736
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Normal",
  34842. height: math.unit(6, "feet"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34849. {
  34850. front: {
  34851. height: math.unit(3, "inches"),
  34852. name: "Front",
  34853. image: {
  34854. source: "./media/characters/noboru/front.svg",
  34855. extra: 1039/932,
  34856. bottom: 18/1057
  34857. }
  34858. },
  34859. },
  34860. [
  34861. {
  34862. name: "Micro",
  34863. height: math.unit(3, "inches"),
  34864. default: true
  34865. },
  34866. ]
  34867. ))
  34868. characterMakers.push(() => makeCharacter(
  34869. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34870. {
  34871. front: {
  34872. height: math.unit(1.85, "meters"),
  34873. weight: math.unit(80, "kg"),
  34874. name: "Front",
  34875. image: {
  34876. source: "./media/characters/daniel-barrett/front.svg",
  34877. extra: 355/337,
  34878. bottom: 9/364
  34879. }
  34880. },
  34881. },
  34882. [
  34883. {
  34884. name: "Pico",
  34885. height: math.unit(0.0433, "mm")
  34886. },
  34887. {
  34888. name: "Nano",
  34889. height: math.unit(1.5, "mm")
  34890. },
  34891. {
  34892. name: "Micro",
  34893. height: math.unit(5.3, "cm"),
  34894. default: true
  34895. },
  34896. {
  34897. name: "Normal",
  34898. height: math.unit(1.85, "meters")
  34899. },
  34900. {
  34901. name: "Macro",
  34902. height: math.unit(64.7, "meters")
  34903. },
  34904. {
  34905. name: "Megamacro",
  34906. height: math.unit(2.26, "km")
  34907. },
  34908. {
  34909. name: "Gigamacro",
  34910. height: math.unit(79, "km")
  34911. },
  34912. {
  34913. name: "Teramacro",
  34914. height: math.unit(2765, "km")
  34915. },
  34916. {
  34917. name: "Petamacro",
  34918. height: math.unit(96678, "km")
  34919. },
  34920. ]
  34921. ))
  34922. characterMakers.push(() => makeCharacter(
  34923. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34924. {
  34925. front: {
  34926. height: math.unit(30, "meters"),
  34927. weight: math.unit(400, "tons"),
  34928. name: "Front",
  34929. image: {
  34930. source: "./media/characters/zeel/front.svg",
  34931. extra: 2599/2599,
  34932. bottom: 226/2825
  34933. }
  34934. },
  34935. },
  34936. [
  34937. {
  34938. name: "Macro",
  34939. height: math.unit(30, "meters"),
  34940. default: true
  34941. },
  34942. ]
  34943. ))
  34944. characterMakers.push(() => makeCharacter(
  34945. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34946. {
  34947. front: {
  34948. height: math.unit(6 + 7/12, "feet"),
  34949. weight: math.unit(210, "lb"),
  34950. name: "Front",
  34951. image: {
  34952. source: "./media/characters/tarn/front.svg",
  34953. extra: 3517/3220,
  34954. bottom: 91/3608
  34955. }
  34956. },
  34957. back: {
  34958. height: math.unit(6 + 7/12, "feet"),
  34959. weight: math.unit(210, "lb"),
  34960. name: "Back",
  34961. image: {
  34962. source: "./media/characters/tarn/back.svg",
  34963. extra: 3566/3241,
  34964. bottom: 34/3600
  34965. }
  34966. },
  34967. dick: {
  34968. height: math.unit(1.65, "feet"),
  34969. name: "Dick",
  34970. image: {
  34971. source: "./media/characters/tarn/dick.svg"
  34972. }
  34973. },
  34974. paw: {
  34975. height: math.unit(1.80, "feet"),
  34976. name: "Paw",
  34977. image: {
  34978. source: "./media/characters/tarn/paw.svg"
  34979. }
  34980. },
  34981. tongue: {
  34982. height: math.unit(0.97, "feet"),
  34983. name: "Tongue",
  34984. image: {
  34985. source: "./media/characters/tarn/tongue.svg"
  34986. }
  34987. },
  34988. },
  34989. [
  34990. {
  34991. name: "Micro",
  34992. height: math.unit(4, "inches")
  34993. },
  34994. {
  34995. name: "Normal",
  34996. height: math.unit(6 + 7/12, "feet"),
  34997. default: true
  34998. },
  34999. {
  35000. name: "Macro",
  35001. height: math.unit(300, "feet")
  35002. },
  35003. ]
  35004. ))
  35005. characterMakers.push(() => makeCharacter(
  35006. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35007. {
  35008. front: {
  35009. height: math.unit(5 + 7/12, "feet"),
  35010. weight: math.unit(80, "kg"),
  35011. name: "Front",
  35012. image: {
  35013. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35014. extra: 3023/2865,
  35015. bottom: 33/3056
  35016. }
  35017. },
  35018. back: {
  35019. height: math.unit(5 + 7/12, "feet"),
  35020. weight: math.unit(80, "kg"),
  35021. name: "Back",
  35022. image: {
  35023. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35024. extra: 3020/2886,
  35025. bottom: 30/3050
  35026. }
  35027. },
  35028. dick: {
  35029. height: math.unit(0.98, "feet"),
  35030. name: "Dick",
  35031. image: {
  35032. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35033. }
  35034. },
  35035. anatomy: {
  35036. height: math.unit(2.86, "feet"),
  35037. name: "Anatomy",
  35038. image: {
  35039. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35040. }
  35041. },
  35042. },
  35043. [
  35044. {
  35045. name: "Really Small",
  35046. height: math.unit(2, "inches")
  35047. },
  35048. {
  35049. name: "Micro",
  35050. height: math.unit(5.583, "inches")
  35051. },
  35052. {
  35053. name: "Normal",
  35054. height: math.unit(5 + 7/12, "feet"),
  35055. default: true
  35056. },
  35057. {
  35058. name: "Macro",
  35059. height: math.unit(67, "feet")
  35060. },
  35061. {
  35062. name: "Megamacro",
  35063. height: math.unit(134, "feet")
  35064. },
  35065. ]
  35066. ))
  35067. characterMakers.push(() => makeCharacter(
  35068. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35069. {
  35070. front: {
  35071. height: math.unit(9, "feet"),
  35072. weight: math.unit(120, "lb"),
  35073. name: "Front",
  35074. image: {
  35075. source: "./media/characters/sally/front.svg",
  35076. extra: 1506/1349,
  35077. bottom: 66/1572
  35078. }
  35079. },
  35080. },
  35081. [
  35082. {
  35083. name: "Normal",
  35084. height: math.unit(9, "feet"),
  35085. default: true
  35086. },
  35087. ]
  35088. ))
  35089. characterMakers.push(() => makeCharacter(
  35090. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35091. {
  35092. front: {
  35093. height: math.unit(8, "feet"),
  35094. weight: math.unit(900, "lb"),
  35095. name: "Front",
  35096. image: {
  35097. source: "./media/characters/owen/front.svg",
  35098. extra: 1761/1657,
  35099. bottom: 74/1835
  35100. }
  35101. },
  35102. side: {
  35103. height: math.unit(8, "feet"),
  35104. weight: math.unit(900, "lb"),
  35105. name: "Side",
  35106. image: {
  35107. source: "./media/characters/owen/side.svg",
  35108. extra: 1797/1734,
  35109. bottom: 30/1827
  35110. }
  35111. },
  35112. back: {
  35113. height: math.unit(8, "feet"),
  35114. weight: math.unit(900, "lb"),
  35115. name: "Back",
  35116. image: {
  35117. source: "./media/characters/owen/back.svg",
  35118. extra: 1796/1706,
  35119. bottom: 59/1855
  35120. }
  35121. },
  35122. maw: {
  35123. height: math.unit(1.76, "feet"),
  35124. name: "Maw",
  35125. image: {
  35126. source: "./media/characters/owen/maw.svg"
  35127. }
  35128. },
  35129. },
  35130. [
  35131. {
  35132. name: "Normal",
  35133. height: math.unit(8, "feet"),
  35134. default: true
  35135. },
  35136. ]
  35137. ))
  35138. characterMakers.push(() => makeCharacter(
  35139. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35140. {
  35141. front: {
  35142. height: math.unit(4, "feet"),
  35143. weight: math.unit(400, "lb"),
  35144. name: "Front",
  35145. image: {
  35146. source: "./media/characters/ryth/front.svg",
  35147. extra: 1920/1748,
  35148. bottom: 42/1962
  35149. }
  35150. },
  35151. back: {
  35152. height: math.unit(4, "feet"),
  35153. weight: math.unit(400, "lb"),
  35154. name: "Back",
  35155. image: {
  35156. source: "./media/characters/ryth/back.svg",
  35157. extra: 1897/1690,
  35158. bottom: 89/1986
  35159. }
  35160. },
  35161. mouth: {
  35162. height: math.unit(1.39, "feet"),
  35163. name: "Mouth",
  35164. image: {
  35165. source: "./media/characters/ryth/mouth.svg"
  35166. }
  35167. },
  35168. tailmaw: {
  35169. height: math.unit(1.23, "feet"),
  35170. name: "Tailmaw",
  35171. image: {
  35172. source: "./media/characters/ryth/tailmaw.svg"
  35173. }
  35174. },
  35175. goia: {
  35176. height: math.unit(4, "meters"),
  35177. weight: math.unit(10800, "lb"),
  35178. name: "Goia",
  35179. image: {
  35180. source: "./media/characters/ryth/goia.svg",
  35181. extra: 745/640,
  35182. bottom: 107/852
  35183. }
  35184. },
  35185. goiaFront: {
  35186. height: math.unit(4, "meters"),
  35187. weight: math.unit(10800, "lb"),
  35188. name: "Goia (Front)",
  35189. image: {
  35190. source: "./media/characters/ryth/goia-front.svg",
  35191. extra: 750/586,
  35192. bottom: 114/864
  35193. }
  35194. },
  35195. goiaMaw: {
  35196. height: math.unit(5.55, "feet"),
  35197. name: "Goia Maw",
  35198. image: {
  35199. source: "./media/characters/ryth/goia-maw.svg"
  35200. }
  35201. },
  35202. goiaForepaw: {
  35203. height: math.unit(3.5, "feet"),
  35204. name: "Goia Forepaw",
  35205. image: {
  35206. source: "./media/characters/ryth/goia-forepaw.svg"
  35207. }
  35208. },
  35209. goiaHindpaw: {
  35210. height: math.unit(5.55, "feet"),
  35211. name: "Goia Hindpaw",
  35212. image: {
  35213. source: "./media/characters/ryth/goia-hindpaw.svg"
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Normal",
  35220. height: math.unit(4, "feet"),
  35221. default: true
  35222. },
  35223. ]
  35224. ))
  35225. characterMakers.push(() => makeCharacter(
  35226. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35227. {
  35228. front: {
  35229. height: math.unit(7, "feet"),
  35230. weight: math.unit(180, "lb"),
  35231. name: "Front",
  35232. image: {
  35233. source: "./media/characters/necrolance/front.svg",
  35234. extra: 1062/947,
  35235. bottom: 41/1103
  35236. }
  35237. },
  35238. back: {
  35239. height: math.unit(7, "feet"),
  35240. weight: math.unit(180, "lb"),
  35241. name: "Back",
  35242. image: {
  35243. source: "./media/characters/necrolance/back.svg",
  35244. extra: 1045/984,
  35245. bottom: 14/1059
  35246. }
  35247. },
  35248. wing: {
  35249. height: math.unit(2.67, "feet"),
  35250. name: "Wing",
  35251. image: {
  35252. source: "./media/characters/necrolance/wing.svg"
  35253. }
  35254. },
  35255. },
  35256. [
  35257. {
  35258. name: "Normal",
  35259. height: math.unit(7, "feet"),
  35260. default: true
  35261. },
  35262. ]
  35263. ))
  35264. characterMakers.push(() => makeCharacter(
  35265. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35266. {
  35267. front: {
  35268. height: math.unit(76, "meters"),
  35269. weight: math.unit(30000, "tons"),
  35270. name: "Front",
  35271. image: {
  35272. source: "./media/characters/tyler/front.svg",
  35273. extra: 1640/1640,
  35274. bottom: 114/1754
  35275. }
  35276. },
  35277. },
  35278. [
  35279. {
  35280. name: "Macro",
  35281. height: math.unit(76, "meters"),
  35282. default: true
  35283. },
  35284. ]
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35288. {
  35289. front: {
  35290. height: math.unit(4 + 11/12, "feet"),
  35291. weight: math.unit(132, "lb"),
  35292. name: "Front",
  35293. image: {
  35294. source: "./media/characters/icey/front.svg",
  35295. extra: 2750/2550,
  35296. bottom: 33/2783
  35297. }
  35298. },
  35299. back: {
  35300. height: math.unit(4 + 11/12, "feet"),
  35301. weight: math.unit(132, "lb"),
  35302. name: "Back",
  35303. image: {
  35304. source: "./media/characters/icey/back.svg",
  35305. extra: 2624/2481,
  35306. bottom: 35/2659
  35307. }
  35308. },
  35309. },
  35310. [
  35311. {
  35312. name: "Normal",
  35313. height: math.unit(4 + 11/12, "feet"),
  35314. default: true
  35315. },
  35316. ]
  35317. ))
  35318. characterMakers.push(() => makeCharacter(
  35319. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35320. {
  35321. front: {
  35322. height: math.unit(100, "feet"),
  35323. weight: math.unit(0, "lb"),
  35324. name: "Front",
  35325. image: {
  35326. source: "./media/characters/smile/front.svg",
  35327. extra: 2983/2912,
  35328. bottom: 162/3145
  35329. }
  35330. },
  35331. back: {
  35332. height: math.unit(100, "feet"),
  35333. weight: math.unit(0, "lb"),
  35334. name: "Back",
  35335. image: {
  35336. source: "./media/characters/smile/back.svg",
  35337. extra: 3143/3031,
  35338. bottom: 91/3234
  35339. }
  35340. },
  35341. head: {
  35342. height: math.unit(26.3, "feet"),
  35343. weight: math.unit(0, "lb"),
  35344. name: "Head",
  35345. image: {
  35346. source: "./media/characters/smile/head.svg"
  35347. }
  35348. },
  35349. collar: {
  35350. height: math.unit(5.3, "feet"),
  35351. weight: math.unit(0, "lb"),
  35352. name: "Collar",
  35353. image: {
  35354. source: "./media/characters/smile/collar.svg"
  35355. }
  35356. },
  35357. },
  35358. [
  35359. {
  35360. name: "Macro",
  35361. height: math.unit(100, "feet"),
  35362. default: true
  35363. },
  35364. ]
  35365. ))
  35366. characterMakers.push(() => makeCharacter(
  35367. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35368. {
  35369. dragon: {
  35370. height: math.unit(26, "feet"),
  35371. weight: math.unit(36, "tons"),
  35372. name: "Dragon",
  35373. image: {
  35374. source: "./media/characters/arimphae/dragon.svg",
  35375. extra: 1574/983,
  35376. bottom: 357/1931
  35377. }
  35378. },
  35379. drake: {
  35380. height: math.unit(9, "feet"),
  35381. weight: math.unit(1.5, "tons"),
  35382. name: "Drake",
  35383. image: {
  35384. source: "./media/characters/arimphae/drake.svg",
  35385. extra: 1120/925,
  35386. bottom: 435/1555
  35387. }
  35388. },
  35389. },
  35390. [
  35391. {
  35392. name: "Small",
  35393. height: math.unit(26*5/9, "feet")
  35394. },
  35395. {
  35396. name: "Normal",
  35397. height: math.unit(26, "feet"),
  35398. default: true
  35399. },
  35400. ]
  35401. ))
  35402. characterMakers.push(() => makeCharacter(
  35403. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35404. {
  35405. front: {
  35406. height: math.unit(8 + 9/12, "feet"),
  35407. name: "Front",
  35408. image: {
  35409. source: "./media/characters/xander/front.svg",
  35410. extra: 1237/974,
  35411. bottom: 94/1331
  35412. }
  35413. },
  35414. },
  35415. [
  35416. {
  35417. name: "Normal",
  35418. height: math.unit(8 + 9/12, "feet"),
  35419. default: true
  35420. },
  35421. {
  35422. name: "Gaze Grabber",
  35423. height: math.unit(13 + 8/12, "feet")
  35424. },
  35425. {
  35426. name: "Jaw Dropper",
  35427. height: math.unit(27, "feet")
  35428. },
  35429. {
  35430. name: "Show Stopper",
  35431. height: math.unit(136, "feet")
  35432. },
  35433. {
  35434. name: "Superstar",
  35435. height: math.unit(1.9e6, "miles")
  35436. },
  35437. ]
  35438. ))
  35439. characterMakers.push(() => makeCharacter(
  35440. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35441. {
  35442. side: {
  35443. height: math.unit(2100, "feet"),
  35444. name: "Side",
  35445. image: {
  35446. source: "./media/characters/osiris/side.svg",
  35447. extra: 1105/939,
  35448. bottom: 167/1272
  35449. }
  35450. },
  35451. },
  35452. [
  35453. {
  35454. name: "Macro",
  35455. height: math.unit(2100, "feet"),
  35456. default: true
  35457. },
  35458. ]
  35459. ))
  35460. characterMakers.push(() => makeCharacter(
  35461. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35462. {
  35463. front: {
  35464. height: math.unit(6 + 8/12, "feet"),
  35465. weight: math.unit(225, "lb"),
  35466. name: "Front",
  35467. image: {
  35468. source: "./media/characters/rhys-londe/front.svg",
  35469. extra: 2258/2141,
  35470. bottom: 188/2446
  35471. }
  35472. },
  35473. back: {
  35474. height: math.unit(6 + 8/12, "feet"),
  35475. weight: math.unit(225, "lb"),
  35476. name: "Back",
  35477. image: {
  35478. source: "./media/characters/rhys-londe/back.svg",
  35479. extra: 2237/2137,
  35480. bottom: 63/2300
  35481. }
  35482. },
  35483. frontNsfw: {
  35484. height: math.unit(6 + 8/12, "feet"),
  35485. weight: math.unit(225, "lb"),
  35486. name: "Front (NSFW)",
  35487. image: {
  35488. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35489. extra: 2258/2141,
  35490. bottom: 188/2446
  35491. }
  35492. },
  35493. backNsfw: {
  35494. height: math.unit(6 + 8/12, "feet"),
  35495. weight: math.unit(225, "lb"),
  35496. name: "Back (NSFW)",
  35497. image: {
  35498. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35499. extra: 2237/2137,
  35500. bottom: 63/2300
  35501. }
  35502. },
  35503. dick: {
  35504. height: math.unit(30, "inches"),
  35505. name: "Dick",
  35506. image: {
  35507. source: "./media/characters/rhys-londe/dick.svg"
  35508. }
  35509. },
  35510. maw: {
  35511. height: math.unit(1.6, "feet"),
  35512. name: "Maw",
  35513. image: {
  35514. source: "./media/characters/rhys-londe/maw.svg"
  35515. }
  35516. },
  35517. },
  35518. [
  35519. {
  35520. name: "Normal",
  35521. height: math.unit(6 + 8/12, "feet"),
  35522. default: true
  35523. },
  35524. ]
  35525. ))
  35526. characterMakers.push(() => makeCharacter(
  35527. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35528. {
  35529. front: {
  35530. height: math.unit(3 + 10/12, "feet"),
  35531. weight: math.unit(90, "lb"),
  35532. name: "Front",
  35533. image: {
  35534. source: "./media/characters/taivas-ensim/front.svg",
  35535. extra: 1327/1216,
  35536. bottom: 96/1423
  35537. }
  35538. },
  35539. back: {
  35540. height: math.unit(3 + 10/12, "feet"),
  35541. weight: math.unit(90, "lb"),
  35542. name: "Back",
  35543. image: {
  35544. source: "./media/characters/taivas-ensim/back.svg",
  35545. extra: 1355/1247,
  35546. bottom: 11/1366
  35547. }
  35548. },
  35549. frontNsfw: {
  35550. height: math.unit(3 + 10/12, "feet"),
  35551. weight: math.unit(90, "lb"),
  35552. name: "Front (NSFW)",
  35553. image: {
  35554. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35555. extra: 1327/1216,
  35556. bottom: 96/1423
  35557. }
  35558. },
  35559. backNsfw: {
  35560. height: math.unit(3 + 10/12, "feet"),
  35561. weight: math.unit(90, "lb"),
  35562. name: "Back (NSFW)",
  35563. image: {
  35564. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35565. extra: 1355/1247,
  35566. bottom: 11/1366
  35567. }
  35568. },
  35569. },
  35570. [
  35571. {
  35572. name: "Normal",
  35573. height: math.unit(3 + 10/12, "feet"),
  35574. default: true
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35580. {
  35581. front: {
  35582. height: math.unit(9 + 6/12, "feet"),
  35583. weight: math.unit(940, "lb"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/byliss/front.svg",
  35587. extra: 1327/1290,
  35588. bottom: 82/1409
  35589. }
  35590. },
  35591. back: {
  35592. height: math.unit(9 + 6/12, "feet"),
  35593. weight: math.unit(940, "lb"),
  35594. name: "Back",
  35595. image: {
  35596. source: "./media/characters/byliss/back.svg",
  35597. extra: 1376/1349,
  35598. bottom: 9/1385
  35599. }
  35600. },
  35601. frontNsfw: {
  35602. height: math.unit(9 + 6/12, "feet"),
  35603. weight: math.unit(940, "lb"),
  35604. name: "Front (NSFW)",
  35605. image: {
  35606. source: "./media/characters/byliss/front-nsfw.svg",
  35607. extra: 1327/1290,
  35608. bottom: 82/1409
  35609. }
  35610. },
  35611. backNsfw: {
  35612. height: math.unit(9 + 6/12, "feet"),
  35613. weight: math.unit(940, "lb"),
  35614. name: "Back (NSFW)",
  35615. image: {
  35616. source: "./media/characters/byliss/back-nsfw.svg",
  35617. extra: 1376/1349,
  35618. bottom: 9/1385
  35619. }
  35620. },
  35621. },
  35622. [
  35623. {
  35624. name: "Normal",
  35625. height: math.unit(9 + 6/12, "feet"),
  35626. default: true
  35627. },
  35628. ]
  35629. ))
  35630. characterMakers.push(() => makeCharacter(
  35631. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35632. {
  35633. front: {
  35634. height: math.unit(5 + 2/12, "feet"),
  35635. weight: math.unit(200, "lb"),
  35636. name: "Front",
  35637. image: {
  35638. source: "./media/characters/noraly/front.svg",
  35639. extra: 4985/4773,
  35640. bottom: 150/5135
  35641. }
  35642. },
  35643. full: {
  35644. height: math.unit(5 + 2/12, "feet"),
  35645. weight: math.unit(164, "lb"),
  35646. name: "Full",
  35647. image: {
  35648. source: "./media/characters/noraly/full.svg",
  35649. extra: 1114/1059,
  35650. bottom: 35/1149
  35651. }
  35652. },
  35653. fuller: {
  35654. height: math.unit(5 + 2/12, "feet"),
  35655. weight: math.unit(230, "lb"),
  35656. name: "Fuller",
  35657. image: {
  35658. source: "./media/characters/noraly/fuller.svg",
  35659. extra: 1114/1059,
  35660. bottom: 35/1149
  35661. }
  35662. },
  35663. fullest: {
  35664. height: math.unit(5 + 2/12, "feet"),
  35665. weight: math.unit(300, "lb"),
  35666. name: "Fullest",
  35667. image: {
  35668. source: "./media/characters/noraly/fullest.svg",
  35669. extra: 1114/1059,
  35670. bottom: 35/1149
  35671. }
  35672. },
  35673. },
  35674. [
  35675. {
  35676. name: "Normal",
  35677. height: math.unit(5 + 2/12, "feet"),
  35678. default: true
  35679. },
  35680. ]
  35681. ))
  35682. characterMakers.push(() => makeCharacter(
  35683. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35684. {
  35685. front: {
  35686. height: math.unit(5 + 2/12, "feet"),
  35687. weight: math.unit(210, "lb"),
  35688. name: "Front",
  35689. image: {
  35690. source: "./media/characters/pera/front.svg",
  35691. extra: 1560/1531,
  35692. bottom: 165/1725
  35693. }
  35694. },
  35695. back: {
  35696. height: math.unit(5 + 2/12, "feet"),
  35697. weight: math.unit(210, "lb"),
  35698. name: "Back",
  35699. image: {
  35700. source: "./media/characters/pera/back.svg",
  35701. extra: 1523/1493,
  35702. bottom: 152/1675
  35703. }
  35704. },
  35705. dick: {
  35706. height: math.unit(2.4, "feet"),
  35707. name: "Dick",
  35708. image: {
  35709. source: "./media/characters/pera/dick.svg"
  35710. }
  35711. },
  35712. },
  35713. [
  35714. {
  35715. name: "Normal",
  35716. height: math.unit(5 + 2/12, "feet"),
  35717. default: true
  35718. },
  35719. ]
  35720. ))
  35721. characterMakers.push(() => makeCharacter(
  35722. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35723. {
  35724. front: {
  35725. height: math.unit(12, "feet"),
  35726. weight: math.unit(3200, "lb"),
  35727. name: "Front",
  35728. image: {
  35729. source: "./media/characters/julian/front.svg",
  35730. extra: 2962/2701,
  35731. bottom: 184/3146
  35732. }
  35733. },
  35734. maw: {
  35735. height: math.unit(5.35, "feet"),
  35736. name: "Maw",
  35737. image: {
  35738. source: "./media/characters/julian/maw.svg"
  35739. }
  35740. },
  35741. paw: {
  35742. height: math.unit(3.07, "feet"),
  35743. name: "Paw",
  35744. image: {
  35745. source: "./media/characters/julian/paw.svg"
  35746. }
  35747. },
  35748. },
  35749. [
  35750. {
  35751. name: "Default",
  35752. height: math.unit(12, "feet"),
  35753. default: true
  35754. },
  35755. {
  35756. name: "Big",
  35757. height: math.unit(50, "feet")
  35758. },
  35759. {
  35760. name: "Really Big",
  35761. height: math.unit(1, "mile")
  35762. },
  35763. {
  35764. name: "Extremely Big",
  35765. height: math.unit(100, "miles")
  35766. },
  35767. {
  35768. name: "Planet Hugger",
  35769. height: math.unit(200, "megameters")
  35770. },
  35771. {
  35772. name: "Unreasonably Big",
  35773. height: math.unit(1e300, "meters")
  35774. },
  35775. ]
  35776. ))
  35777. characterMakers.push(() => makeCharacter(
  35778. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35779. {
  35780. solgooleo: {
  35781. height: math.unit(4, "meters"),
  35782. weight: math.unit(6000*1.5, "kg"),
  35783. volume: math.unit(6000, "liters"),
  35784. name: "Solgooleo",
  35785. image: {
  35786. source: "./media/characters/pi/solgooleo.svg",
  35787. extra: 388/331,
  35788. bottom: 29/417
  35789. }
  35790. },
  35791. },
  35792. [
  35793. {
  35794. name: "Normal",
  35795. height: math.unit(4, "meters"),
  35796. default: true
  35797. },
  35798. ]
  35799. ))
  35800. characterMakers.push(() => makeCharacter(
  35801. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35802. {
  35803. front: {
  35804. height: math.unit(8, "feet"),
  35805. weight: math.unit(4, "tons"),
  35806. name: "Front",
  35807. image: {
  35808. source: "./media/characters/shaun/front.svg",
  35809. extra: 503/495,
  35810. bottom: 20/523
  35811. }
  35812. },
  35813. back: {
  35814. height: math.unit(8, "feet"),
  35815. weight: math.unit(4, "tons"),
  35816. name: "Back",
  35817. image: {
  35818. source: "./media/characters/shaun/back.svg",
  35819. extra: 487/480,
  35820. bottom: 20/507
  35821. }
  35822. },
  35823. },
  35824. [
  35825. {
  35826. name: "Lorg",
  35827. height: math.unit(8, "feet"),
  35828. default: true
  35829. },
  35830. ]
  35831. ))
  35832. characterMakers.push(() => makeCharacter(
  35833. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35834. {
  35835. frontAnthro: {
  35836. height: math.unit(7, "feet"),
  35837. name: "Front",
  35838. image: {
  35839. source: "./media/characters/sini/front-anthro.svg",
  35840. extra: 726/678,
  35841. bottom: 35/761
  35842. },
  35843. form: "anthro",
  35844. default: true
  35845. },
  35846. backAnthro: {
  35847. height: math.unit(7, "feet"),
  35848. name: "Back",
  35849. image: {
  35850. source: "./media/characters/sini/back-anthro.svg",
  35851. extra: 743/701,
  35852. bottom: 12/755
  35853. },
  35854. form: "anthro",
  35855. },
  35856. frontAnthroNsfw: {
  35857. height: math.unit(7, "feet"),
  35858. name: "Front (NSFW)",
  35859. image: {
  35860. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35861. extra: 726/678,
  35862. bottom: 35/761
  35863. },
  35864. form: "anthro"
  35865. },
  35866. backAnthroNsfw: {
  35867. height: math.unit(7, "feet"),
  35868. name: "Back (NSFW)",
  35869. image: {
  35870. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35871. extra: 743/701,
  35872. bottom: 12/755
  35873. },
  35874. form: "anthro",
  35875. },
  35876. mawAnthro: {
  35877. height: math.unit(2.14, "feet"),
  35878. name: "Maw",
  35879. image: {
  35880. source: "./media/characters/sini/maw-anthro.svg"
  35881. },
  35882. form: "anthro"
  35883. },
  35884. dick: {
  35885. height: math.unit(1.45, "feet"),
  35886. name: "Dick",
  35887. image: {
  35888. source: "./media/characters/sini/dick-anthro.svg"
  35889. },
  35890. form: "anthro"
  35891. },
  35892. feral: {
  35893. height: math.unit(16, "feet"),
  35894. name: "Feral",
  35895. image: {
  35896. source: "./media/characters/sini/feral.svg",
  35897. extra: 814/605,
  35898. bottom: 11/825
  35899. },
  35900. form: "feral",
  35901. default: true
  35902. },
  35903. feralNsfw: {
  35904. height: math.unit(16, "feet"),
  35905. name: "Feral (NSFW)",
  35906. image: {
  35907. source: "./media/characters/sini/feral-nsfw.svg",
  35908. extra: 814/605,
  35909. bottom: 11/825
  35910. },
  35911. form: "feral"
  35912. },
  35913. mawFeral: {
  35914. height: math.unit(5.66, "feet"),
  35915. name: "Maw",
  35916. image: {
  35917. source: "./media/characters/sini/maw-feral.svg"
  35918. },
  35919. form: "feral",
  35920. },
  35921. pawFeral: {
  35922. height: math.unit(5.17, "feet"),
  35923. name: "Paw",
  35924. image: {
  35925. source: "./media/characters/sini/paw-feral.svg"
  35926. },
  35927. form: "feral",
  35928. },
  35929. rumpFeral: {
  35930. height: math.unit(13.11, "feet"),
  35931. name: "Rump",
  35932. image: {
  35933. source: "./media/characters/sini/rump-feral.svg"
  35934. },
  35935. form: "feral",
  35936. },
  35937. dickFeral: {
  35938. height: math.unit(1, "feet"),
  35939. name: "Dick",
  35940. image: {
  35941. source: "./media/characters/sini/dick-feral.svg"
  35942. },
  35943. form: "feral",
  35944. },
  35945. eyeFeral: {
  35946. height: math.unit(1.23, "feet"),
  35947. name: "Eye",
  35948. image: {
  35949. source: "./media/characters/sini/eye-feral.svg"
  35950. },
  35951. form: "feral",
  35952. },
  35953. },
  35954. [
  35955. {
  35956. name: "Normal",
  35957. height: math.unit(7, "feet"),
  35958. default: true,
  35959. form: "anthro"
  35960. },
  35961. {
  35962. name: "Normal",
  35963. height: math.unit(16, "feet"),
  35964. default: true,
  35965. form: "feral"
  35966. },
  35967. ],
  35968. {
  35969. "anthro": {
  35970. name: "Anthro",
  35971. default: true
  35972. },
  35973. "feral": {
  35974. name: "Feral",
  35975. }
  35976. }
  35977. ))
  35978. characterMakers.push(() => makeCharacter(
  35979. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35980. {
  35981. side: {
  35982. height: math.unit(47.2, "meters"),
  35983. weight: math.unit(10000, "tons"),
  35984. name: "Side",
  35985. image: {
  35986. source: "./media/characters/raylldo/side.svg",
  35987. extra: 2363/642,
  35988. bottom: 221/2584
  35989. }
  35990. },
  35991. top: {
  35992. height: math.unit(240, "meters"),
  35993. weight: math.unit(10000, "tons"),
  35994. name: "Top",
  35995. image: {
  35996. source: "./media/characters/raylldo/top.svg"
  35997. }
  35998. },
  35999. bottom: {
  36000. height: math.unit(240, "meters"),
  36001. weight: math.unit(10000, "tons"),
  36002. name: "Bottom",
  36003. image: {
  36004. source: "./media/characters/raylldo/bottom.svg"
  36005. }
  36006. },
  36007. head: {
  36008. height: math.unit(38.6, "meters"),
  36009. name: "Head",
  36010. image: {
  36011. source: "./media/characters/raylldo/head.svg",
  36012. extra: 1335/1112,
  36013. bottom: 0/1335
  36014. }
  36015. },
  36016. maw: {
  36017. height: math.unit(16.37, "meters"),
  36018. name: "Maw",
  36019. image: {
  36020. source: "./media/characters/raylldo/maw.svg",
  36021. extra: 883/660,
  36022. bottom: 0/883
  36023. },
  36024. extraAttributes: {
  36025. preyCapacity: {
  36026. name: "Capacity",
  36027. power: 3,
  36028. type: "volume",
  36029. base: math.unit(1000, "people")
  36030. },
  36031. tongueSize: {
  36032. name: "Tongue Size",
  36033. power: 2,
  36034. type: "area",
  36035. base: math.unit(21, "m^2")
  36036. }
  36037. }
  36038. },
  36039. forepaw: {
  36040. height: math.unit(18, "meters"),
  36041. name: "Forepaw",
  36042. image: {
  36043. source: "./media/characters/raylldo/forepaw.svg"
  36044. }
  36045. },
  36046. hindpaw: {
  36047. height: math.unit(23, "meters"),
  36048. name: "Hindpaw",
  36049. image: {
  36050. source: "./media/characters/raylldo/hindpaw.svg"
  36051. }
  36052. },
  36053. genitals: {
  36054. height: math.unit(42, "meters"),
  36055. name: "Genitals",
  36056. image: {
  36057. source: "./media/characters/raylldo/genitals.svg"
  36058. }
  36059. },
  36060. },
  36061. [
  36062. {
  36063. name: "Normal",
  36064. height: math.unit(47.2, "meters"),
  36065. default: true
  36066. },
  36067. ]
  36068. ))
  36069. characterMakers.push(() => makeCharacter(
  36070. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36071. {
  36072. anthroFront: {
  36073. height: math.unit(9, "feet"),
  36074. weight: math.unit(600, "lb"),
  36075. name: "Anthro (Front)",
  36076. image: {
  36077. source: "./media/characters/glint/anthro-front.svg",
  36078. extra: 1097/1018,
  36079. bottom: 28/1125
  36080. }
  36081. },
  36082. anthroBack: {
  36083. height: math.unit(9, "feet"),
  36084. weight: math.unit(600, "lb"),
  36085. name: "Anthro (Back)",
  36086. image: {
  36087. source: "./media/characters/glint/anthro-back.svg",
  36088. extra: 1154/997,
  36089. bottom: 36/1190
  36090. }
  36091. },
  36092. feral: {
  36093. height: math.unit(11, "feet"),
  36094. weight: math.unit(50000, "lb"),
  36095. name: "Feral",
  36096. image: {
  36097. source: "./media/characters/glint/feral.svg",
  36098. extra: 3035/1585,
  36099. bottom: 1169/4204
  36100. }
  36101. },
  36102. dickAnthro: {
  36103. height: math.unit(0.7, "meters"),
  36104. name: "Dick (Anthro)",
  36105. image: {
  36106. source: "./media/characters/glint/dick-anthro.svg"
  36107. }
  36108. },
  36109. dickFeral: {
  36110. height: math.unit(2.65, "meters"),
  36111. name: "Dick (Feral)",
  36112. image: {
  36113. source: "./media/characters/glint/dick-feral.svg"
  36114. }
  36115. },
  36116. slitHidden: {
  36117. height: math.unit(5.85, "meters"),
  36118. name: "Slit (Hidden)",
  36119. image: {
  36120. source: "./media/characters/glint/slit-hidden.svg"
  36121. }
  36122. },
  36123. slitErect: {
  36124. height: math.unit(5.85, "meters"),
  36125. name: "Slit (Erect)",
  36126. image: {
  36127. source: "./media/characters/glint/slit-erect.svg"
  36128. }
  36129. },
  36130. mawAnthro: {
  36131. height: math.unit(0.63, "meters"),
  36132. name: "Maw (Anthro)",
  36133. image: {
  36134. source: "./media/characters/glint/maw.svg"
  36135. }
  36136. },
  36137. mawFeral: {
  36138. height: math.unit(2.89, "meters"),
  36139. name: "Maw (Feral)",
  36140. image: {
  36141. source: "./media/characters/glint/maw.svg"
  36142. }
  36143. },
  36144. },
  36145. [
  36146. {
  36147. name: "Normal",
  36148. height: math.unit(9, "feet"),
  36149. default: true
  36150. },
  36151. ]
  36152. ))
  36153. characterMakers.push(() => makeCharacter(
  36154. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36155. {
  36156. side: {
  36157. height: math.unit(15, "feet"),
  36158. weight: math.unit(5000, "kg"),
  36159. name: "Side",
  36160. image: {
  36161. source: "./media/characters/kairne/side.svg",
  36162. extra: 979/811,
  36163. bottom: 13/992
  36164. }
  36165. },
  36166. front: {
  36167. height: math.unit(15, "feet"),
  36168. weight: math.unit(5000, "kg"),
  36169. name: "Front",
  36170. image: {
  36171. source: "./media/characters/kairne/front.svg",
  36172. extra: 908/814,
  36173. bottom: 26/934
  36174. }
  36175. },
  36176. sideNsfw: {
  36177. height: math.unit(15, "feet"),
  36178. weight: math.unit(5000, "kg"),
  36179. name: "Side (NSFW)",
  36180. image: {
  36181. source: "./media/characters/kairne/side-nsfw.svg",
  36182. extra: 979/811,
  36183. bottom: 13/992
  36184. }
  36185. },
  36186. frontNsfw: {
  36187. height: math.unit(15, "feet"),
  36188. weight: math.unit(5000, "kg"),
  36189. name: "Front (NSFW)",
  36190. image: {
  36191. source: "./media/characters/kairne/front-nsfw.svg",
  36192. extra: 908/814,
  36193. bottom: 26/934
  36194. }
  36195. },
  36196. dickCaged: {
  36197. height: math.unit(0.65, "meters"),
  36198. name: "Dick-caged",
  36199. image: {
  36200. source: "./media/characters/kairne/dick-caged.svg"
  36201. }
  36202. },
  36203. dick: {
  36204. height: math.unit(0.79, "meters"),
  36205. name: "Dick",
  36206. image: {
  36207. source: "./media/characters/kairne/dick.svg"
  36208. }
  36209. },
  36210. genitals: {
  36211. height: math.unit(1.29, "meters"),
  36212. name: "Genitals",
  36213. image: {
  36214. source: "./media/characters/kairne/genitals.svg"
  36215. }
  36216. },
  36217. maw: {
  36218. height: math.unit(1.73, "meters"),
  36219. name: "Maw",
  36220. image: {
  36221. source: "./media/characters/kairne/maw.svg"
  36222. }
  36223. },
  36224. },
  36225. [
  36226. {
  36227. name: "Normal",
  36228. height: math.unit(15, "feet"),
  36229. default: true
  36230. },
  36231. ]
  36232. ))
  36233. characterMakers.push(() => makeCharacter(
  36234. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36235. {
  36236. front: {
  36237. height: math.unit(5 + 8/12, "feet"),
  36238. weight: math.unit(139, "lb"),
  36239. name: "Front",
  36240. image: {
  36241. source: "./media/characters/biscuit-jackal/front.svg",
  36242. extra: 2106/1961,
  36243. bottom: 58/2164
  36244. }
  36245. },
  36246. back: {
  36247. height: math.unit(5 + 8/12, "feet"),
  36248. weight: math.unit(139, "lb"),
  36249. name: "Back",
  36250. image: {
  36251. source: "./media/characters/biscuit-jackal/back.svg",
  36252. extra: 2132/1976,
  36253. bottom: 57/2189
  36254. }
  36255. },
  36256. werejackal: {
  36257. height: math.unit(6 + 3/12, "feet"),
  36258. weight: math.unit(188, "lb"),
  36259. name: "Werejackal",
  36260. image: {
  36261. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36262. extra: 2373/2178,
  36263. bottom: 53/2426
  36264. }
  36265. },
  36266. },
  36267. [
  36268. {
  36269. name: "Normal",
  36270. height: math.unit(5 + 8/12, "feet"),
  36271. default: true
  36272. },
  36273. ]
  36274. ))
  36275. characterMakers.push(() => makeCharacter(
  36276. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36277. {
  36278. front: {
  36279. height: math.unit(140, "cm"),
  36280. weight: math.unit(45, "kg"),
  36281. name: "Front",
  36282. image: {
  36283. source: "./media/characters/tayra-white/front.svg",
  36284. extra: 2229/2192,
  36285. bottom: 75/2304
  36286. }
  36287. },
  36288. },
  36289. [
  36290. {
  36291. name: "Normal",
  36292. height: math.unit(140, "cm"),
  36293. default: true
  36294. },
  36295. ]
  36296. ))
  36297. characterMakers.push(() => makeCharacter(
  36298. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36299. {
  36300. front: {
  36301. height: math.unit(4 + 5/12, "feet"),
  36302. name: "Front",
  36303. image: {
  36304. source: "./media/characters/scoop/front.svg",
  36305. extra: 1257/1136,
  36306. bottom: 69/1326
  36307. }
  36308. },
  36309. back: {
  36310. height: math.unit(4 + 5/12, "feet"),
  36311. name: "Back",
  36312. image: {
  36313. source: "./media/characters/scoop/back.svg",
  36314. extra: 1321/1152,
  36315. bottom: 32/1353
  36316. }
  36317. },
  36318. maw: {
  36319. height: math.unit(0.68, "feet"),
  36320. name: "Maw",
  36321. image: {
  36322. source: "./media/characters/scoop/maw.svg"
  36323. }
  36324. },
  36325. },
  36326. [
  36327. {
  36328. name: "Really Small",
  36329. height: math.unit(1, "mm")
  36330. },
  36331. {
  36332. name: "Micro",
  36333. height: math.unit(1, "inch")
  36334. },
  36335. {
  36336. name: "Normal",
  36337. height: math.unit(4 + 5/12, "feet"),
  36338. default: true
  36339. },
  36340. {
  36341. name: "Macro",
  36342. height: math.unit(200, "feet")
  36343. },
  36344. {
  36345. name: "Megamacro",
  36346. height: math.unit(3240, "feet")
  36347. },
  36348. {
  36349. name: "Teramacro",
  36350. height: math.unit(2500, "miles")
  36351. },
  36352. ]
  36353. ))
  36354. characterMakers.push(() => makeCharacter(
  36355. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36356. {
  36357. front: {
  36358. height: math.unit(15 + 7/12, "feet"),
  36359. weight: math.unit(1150, "tons"),
  36360. name: "Front",
  36361. image: {
  36362. source: "./media/characters/saphinara/front.svg",
  36363. extra: 1837/1643,
  36364. bottom: 84/1921
  36365. },
  36366. form: "normal",
  36367. default: true
  36368. },
  36369. side: {
  36370. height: math.unit(15 + 7/12, "feet"),
  36371. weight: math.unit(1150, "tons"),
  36372. name: "Side",
  36373. image: {
  36374. source: "./media/characters/saphinara/side.svg",
  36375. extra: 605/547,
  36376. bottom: 6/611
  36377. },
  36378. form: "normal"
  36379. },
  36380. back: {
  36381. height: math.unit(15 + 7/12, "feet"),
  36382. weight: math.unit(1150, "tons"),
  36383. name: "Back",
  36384. image: {
  36385. source: "./media/characters/saphinara/back.svg",
  36386. extra: 591/531,
  36387. bottom: 13/604
  36388. },
  36389. form: "normal"
  36390. },
  36391. frontTail: {
  36392. height: math.unit(15 + 7/12, "feet"),
  36393. weight: math.unit(1150, "tons"),
  36394. name: "Front (Full Tail)",
  36395. image: {
  36396. source: "./media/characters/saphinara/front-tail.svg",
  36397. extra: 2256/1630,
  36398. bottom: 261/2517
  36399. },
  36400. form: "normal"
  36401. },
  36402. insides: {
  36403. height: math.unit(11.92, "feet"),
  36404. name: "Insides",
  36405. image: {
  36406. source: "./media/characters/saphinara/insides.svg"
  36407. },
  36408. form: "normal"
  36409. },
  36410. head: {
  36411. height: math.unit(4.17, "feet"),
  36412. name: "Head",
  36413. image: {
  36414. source: "./media/characters/saphinara/head.svg"
  36415. },
  36416. form: "normal"
  36417. },
  36418. tongue: {
  36419. height: math.unit(4.60, "feet"),
  36420. name: "Tongue",
  36421. image: {
  36422. source: "./media/characters/saphinara/tongue.svg"
  36423. },
  36424. form: "normal"
  36425. },
  36426. headEnraged: {
  36427. height: math.unit(5.55, "feet"),
  36428. name: "Head (Enraged)",
  36429. image: {
  36430. source: "./media/characters/saphinara/head-enraged.svg"
  36431. },
  36432. form: "normal"
  36433. },
  36434. wings: {
  36435. height: math.unit(11.95, "feet"),
  36436. name: "Wings",
  36437. image: {
  36438. source: "./media/characters/saphinara/wings.svg"
  36439. },
  36440. form: "normal"
  36441. },
  36442. feathers: {
  36443. height: math.unit(8.92, "feet"),
  36444. name: "Feathers",
  36445. image: {
  36446. source: "./media/characters/saphinara/feathers.svg"
  36447. },
  36448. form: "normal"
  36449. },
  36450. shackles: {
  36451. height: math.unit(2, "feet"),
  36452. name: "Shackles",
  36453. image: {
  36454. source: "./media/characters/saphinara/shackles.svg"
  36455. },
  36456. form: "normal"
  36457. },
  36458. eyes: {
  36459. height: math.unit(1.331, "feet"),
  36460. name: "Eyes",
  36461. image: {
  36462. source: "./media/characters/saphinara/eyes.svg"
  36463. },
  36464. form: "normal"
  36465. },
  36466. eyesEnraged: {
  36467. height: math.unit(1.331, "feet"),
  36468. name: "Eyes (Enraged)",
  36469. image: {
  36470. source: "./media/characters/saphinara/eyes-enraged.svg"
  36471. },
  36472. form: "normal"
  36473. },
  36474. trueFormSide: {
  36475. height: math.unit(200, "feet"),
  36476. weight: math.unit(1e7, "tons"),
  36477. name: "Side",
  36478. image: {
  36479. source: "./media/characters/saphinara/true-form-side.svg",
  36480. extra: 1399/770,
  36481. bottom: 97/1496
  36482. },
  36483. form: "true-form",
  36484. default: true
  36485. },
  36486. trueFormMaw: {
  36487. height: math.unit(71.5, "feet"),
  36488. name: "Maw",
  36489. image: {
  36490. source: "./media/characters/saphinara/true-form-maw.svg",
  36491. extra: 2302/1453,
  36492. bottom: 0/2302
  36493. },
  36494. form: "true-form"
  36495. },
  36496. meowberusSide: {
  36497. height: math.unit(75, "feet"),
  36498. weight: math.unit(180000, "kg"),
  36499. preyCapacity: math.unit(50000, "people"),
  36500. name: "Side",
  36501. image: {
  36502. source: "./media/characters/saphinara/meowberus-side.svg",
  36503. extra: 1400/711,
  36504. bottom: 126/1526
  36505. },
  36506. form: "meowberus",
  36507. extraAttributes: {
  36508. "pawArea": {
  36509. name: "Paw Size",
  36510. power: 2,
  36511. type: "area",
  36512. base: math.unit(35, "m^2")
  36513. }
  36514. }
  36515. },
  36516. },
  36517. [
  36518. {
  36519. name: "Normal",
  36520. height: math.unit(15 + 7/12, "feet"),
  36521. default: true,
  36522. form: "normal"
  36523. },
  36524. {
  36525. name: "Angry",
  36526. height: math.unit(30 + 6/12, "feet"),
  36527. form: "normal"
  36528. },
  36529. {
  36530. name: "Enraged",
  36531. height: math.unit(102 + 1/12, "feet"),
  36532. form: "normal"
  36533. },
  36534. {
  36535. name: "True",
  36536. height: math.unit(200, "feet"),
  36537. default: true,
  36538. form: "true-form"
  36539. },
  36540. {
  36541. name: "Normal",
  36542. height: math.unit(75, "feet"),
  36543. default: true,
  36544. form: "meowberus"
  36545. },
  36546. ],
  36547. {
  36548. "normal": {
  36549. name: "Normal",
  36550. default: true
  36551. },
  36552. "true-form": {
  36553. name: "True Form"
  36554. },
  36555. "meowberus": {
  36556. name: "Meowberus",
  36557. },
  36558. }
  36559. ))
  36560. characterMakers.push(() => makeCharacter(
  36561. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36562. {
  36563. front: {
  36564. height: math.unit(6 + 8/12, "feet"),
  36565. weight: math.unit(300, "lb"),
  36566. name: "Front",
  36567. image: {
  36568. source: "./media/characters/jrain/front.svg",
  36569. extra: 3039/2865,
  36570. bottom: 399/3438
  36571. }
  36572. },
  36573. back: {
  36574. height: math.unit(6 + 8/12, "feet"),
  36575. weight: math.unit(300, "lb"),
  36576. name: "Back",
  36577. image: {
  36578. source: "./media/characters/jrain/back.svg",
  36579. extra: 3089/2938,
  36580. bottom: 172/3261
  36581. }
  36582. },
  36583. head: {
  36584. height: math.unit(2.14, "feet"),
  36585. name: "Head",
  36586. image: {
  36587. source: "./media/characters/jrain/head.svg"
  36588. }
  36589. },
  36590. maw: {
  36591. height: math.unit(1.77, "feet"),
  36592. name: "Maw",
  36593. image: {
  36594. source: "./media/characters/jrain/maw.svg"
  36595. }
  36596. },
  36597. leftHand: {
  36598. height: math.unit(1.1, "feet"),
  36599. name: "Left Hand",
  36600. image: {
  36601. source: "./media/characters/jrain/left-hand.svg"
  36602. }
  36603. },
  36604. rightHand: {
  36605. height: math.unit(1.1, "feet"),
  36606. name: "Right Hand",
  36607. image: {
  36608. source: "./media/characters/jrain/right-hand.svg"
  36609. }
  36610. },
  36611. eye: {
  36612. height: math.unit(0.35, "feet"),
  36613. name: "Eye",
  36614. image: {
  36615. source: "./media/characters/jrain/eye.svg"
  36616. }
  36617. },
  36618. },
  36619. [
  36620. {
  36621. name: "Normal",
  36622. height: math.unit(6 + 8/12, "feet"),
  36623. default: true
  36624. },
  36625. {
  36626. name: "Casually Large",
  36627. height: math.unit(25, "feet")
  36628. },
  36629. {
  36630. name: "Giant",
  36631. height: math.unit(100, "feet")
  36632. },
  36633. {
  36634. name: "Kaiju",
  36635. height: math.unit(300, "feet")
  36636. },
  36637. ]
  36638. ))
  36639. characterMakers.push(() => makeCharacter(
  36640. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36641. {
  36642. dragon: {
  36643. height: math.unit(5, "meters"),
  36644. name: "Dragon",
  36645. image: {
  36646. source: "./media/characters/sabrina/dragon.svg",
  36647. extra: 3670 / 2365,
  36648. bottom: 333 / 4003
  36649. }
  36650. },
  36651. gryphon: {
  36652. height: math.unit(3, "meters"),
  36653. name: "Gryphon",
  36654. image: {
  36655. source: "./media/characters/sabrina/gryphon.svg",
  36656. extra: 1576 / 945,
  36657. bottom: 71 / 1647
  36658. }
  36659. },
  36660. snake: {
  36661. height: math.unit(12, "meters"),
  36662. name: "Snake",
  36663. image: {
  36664. source: "./media/characters/sabrina/snake.svg",
  36665. extra: 1758 / 1320,
  36666. bottom: 186 / 1944
  36667. }
  36668. },
  36669. collar: {
  36670. height: math.unit(1.86, "meters"),
  36671. name: "Collar",
  36672. image: {
  36673. source: "./media/characters/sabrina/collar.svg"
  36674. }
  36675. },
  36676. eye: {
  36677. height: math.unit(0.53, "meters"),
  36678. name: "Eye",
  36679. image: {
  36680. source: "./media/characters/sabrina/eye.svg"
  36681. }
  36682. },
  36683. foot: {
  36684. height: math.unit(1.86, "meters"),
  36685. name: "Foot",
  36686. image: {
  36687. source: "./media/characters/sabrina/foot.svg"
  36688. }
  36689. },
  36690. hand: {
  36691. height: math.unit(1.32, "meters"),
  36692. name: "Hand",
  36693. image: {
  36694. source: "./media/characters/sabrina/hand.svg"
  36695. }
  36696. },
  36697. head: {
  36698. height: math.unit(2.44, "meters"),
  36699. name: "Head",
  36700. image: {
  36701. source: "./media/characters/sabrina/head.svg"
  36702. }
  36703. },
  36704. headAngry: {
  36705. height: math.unit(2.44, "meters"),
  36706. name: "Head (Angry))",
  36707. image: {
  36708. source: "./media/characters/sabrina/head-angry.svg"
  36709. }
  36710. },
  36711. maw: {
  36712. height: math.unit(1.65, "meters"),
  36713. name: "Maw",
  36714. image: {
  36715. source: "./media/characters/sabrina/maw.svg"
  36716. }
  36717. },
  36718. spikes: {
  36719. height: math.unit(1.69, "meters"),
  36720. name: "Spikes",
  36721. image: {
  36722. source: "./media/characters/sabrina/spikes.svg"
  36723. }
  36724. },
  36725. stomach: {
  36726. height: math.unit(1.15, "meters"),
  36727. name: "Stomach",
  36728. image: {
  36729. source: "./media/characters/sabrina/stomach.svg"
  36730. }
  36731. },
  36732. tongue: {
  36733. height: math.unit(1.27, "meters"),
  36734. name: "Tongue",
  36735. image: {
  36736. source: "./media/characters/sabrina/tongue.svg"
  36737. }
  36738. },
  36739. wingDorsal: {
  36740. height: math.unit(4.85, "meters"),
  36741. name: "Wing (Dorsal)",
  36742. image: {
  36743. source: "./media/characters/sabrina/wing-dorsal.svg"
  36744. }
  36745. },
  36746. wingVentral: {
  36747. height: math.unit(4.85, "meters"),
  36748. name: "Wing (Ventral)",
  36749. image: {
  36750. source: "./media/characters/sabrina/wing-ventral.svg"
  36751. }
  36752. },
  36753. },
  36754. [
  36755. {
  36756. name: "Normal",
  36757. height: math.unit(5, "meters"),
  36758. default: true
  36759. },
  36760. ]
  36761. ))
  36762. characterMakers.push(() => makeCharacter(
  36763. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36764. {
  36765. frontMaid: {
  36766. height: math.unit(5 + 5/12, "feet"),
  36767. weight: math.unit(130, "lb"),
  36768. name: "Front (Maid)",
  36769. image: {
  36770. source: "./media/characters/midnight-tales/front-maid.svg",
  36771. extra: 489/454,
  36772. bottom: 61/550
  36773. }
  36774. },
  36775. frontFormal: {
  36776. height: math.unit(5 + 5/12, "feet"),
  36777. weight: math.unit(130, "lb"),
  36778. name: "Front (Formal)",
  36779. image: {
  36780. source: "./media/characters/midnight-tales/front-formal.svg",
  36781. extra: 489/454,
  36782. bottom: 61/550
  36783. }
  36784. },
  36785. back: {
  36786. height: math.unit(5 + 5/12, "feet"),
  36787. weight: math.unit(130, "lb"),
  36788. name: "Back",
  36789. image: {
  36790. source: "./media/characters/midnight-tales/back.svg",
  36791. extra: 498/456,
  36792. bottom: 33/531
  36793. }
  36794. },
  36795. frontBeast: {
  36796. height: math.unit(40, "feet"),
  36797. weight: math.unit(64000, "lb"),
  36798. name: "Front (Beast)",
  36799. image: {
  36800. source: "./media/characters/midnight-tales/front-beast.svg",
  36801. extra: 927/860,
  36802. bottom: 53/980
  36803. }
  36804. },
  36805. backBeast: {
  36806. height: math.unit(40, "feet"),
  36807. weight: math.unit(64000, "lb"),
  36808. name: "Back (Beast)",
  36809. image: {
  36810. source: "./media/characters/midnight-tales/back-beast.svg",
  36811. extra: 929/855,
  36812. bottom: 16/945
  36813. }
  36814. },
  36815. footBeast: {
  36816. height: math.unit(6.7, "feet"),
  36817. name: "Foot (Beast)",
  36818. image: {
  36819. source: "./media/characters/midnight-tales/foot-beast.svg"
  36820. }
  36821. },
  36822. headBeast: {
  36823. height: math.unit(8, "feet"),
  36824. name: "Head (Beast)",
  36825. image: {
  36826. source: "./media/characters/midnight-tales/head-beast.svg"
  36827. }
  36828. },
  36829. },
  36830. [
  36831. {
  36832. name: "Normal",
  36833. height: math.unit(5 + 5 / 12, "feet"),
  36834. default: true
  36835. },
  36836. {
  36837. name: "Macro",
  36838. height: math.unit(25, "feet")
  36839. },
  36840. ]
  36841. ))
  36842. characterMakers.push(() => makeCharacter(
  36843. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36844. {
  36845. front: {
  36846. height: math.unit(5 + 10/12, "feet"),
  36847. name: "Front",
  36848. image: {
  36849. source: "./media/characters/argon/front.svg",
  36850. extra: 2009/1935,
  36851. bottom: 118/2127
  36852. }
  36853. },
  36854. back: {
  36855. height: math.unit(5 + 10/12, "feet"),
  36856. name: "Back",
  36857. image: {
  36858. source: "./media/characters/argon/back.svg",
  36859. extra: 2047/1992,
  36860. bottom: 20/2067
  36861. }
  36862. },
  36863. frontDressed: {
  36864. height: math.unit(5 + 10/12, "feet"),
  36865. name: "Front (Dressed)",
  36866. image: {
  36867. source: "./media/characters/argon/front-dressed.svg",
  36868. extra: 2009/1935,
  36869. bottom: 118/2127
  36870. }
  36871. },
  36872. },
  36873. [
  36874. {
  36875. name: "Normal",
  36876. height: math.unit(5 + 10/12, "feet"),
  36877. default: true
  36878. },
  36879. ]
  36880. ))
  36881. characterMakers.push(() => makeCharacter(
  36882. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36883. {
  36884. front: {
  36885. height: math.unit(8 + 6/12, "feet"),
  36886. weight: math.unit(1150, "lb"),
  36887. name: "Front",
  36888. image: {
  36889. source: "./media/characters/kichi/front.svg",
  36890. extra: 1267/1164,
  36891. bottom: 61/1328
  36892. }
  36893. },
  36894. back: {
  36895. height: math.unit(8 + 6/12, "feet"),
  36896. weight: math.unit(1150, "lb"),
  36897. name: "Back",
  36898. image: {
  36899. source: "./media/characters/kichi/back.svg",
  36900. extra: 1273/1166,
  36901. bottom: 33/1306
  36902. }
  36903. },
  36904. },
  36905. [
  36906. {
  36907. name: "Normal",
  36908. height: math.unit(8 + 6/12, "feet"),
  36909. default: true
  36910. },
  36911. ]
  36912. ))
  36913. characterMakers.push(() => makeCharacter(
  36914. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36915. {
  36916. front: {
  36917. height: math.unit(6, "feet"),
  36918. weight: math.unit(210, "lb"),
  36919. name: "Front",
  36920. image: {
  36921. source: "./media/characters/manetel-greyscale/front.svg",
  36922. extra: 350/312,
  36923. bottom: 8/358
  36924. }
  36925. },
  36926. },
  36927. [
  36928. {
  36929. name: "Micro",
  36930. height: math.unit(2, "inches")
  36931. },
  36932. {
  36933. name: "Normal",
  36934. height: math.unit(6, "feet"),
  36935. default: true
  36936. },
  36937. {
  36938. name: "Minimacro",
  36939. height: math.unit(17, "feet")
  36940. },
  36941. {
  36942. name: "Macro",
  36943. height: math.unit(117, "feet")
  36944. },
  36945. ]
  36946. ))
  36947. characterMakers.push(() => makeCharacter(
  36948. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36949. {
  36950. side: {
  36951. height: math.unit(5 + 1/12, "feet"),
  36952. weight: math.unit(418, "lb"),
  36953. name: "Side",
  36954. image: {
  36955. source: "./media/characters/softpurr/side.svg",
  36956. extra: 1993/1945,
  36957. bottom: 134/2127
  36958. }
  36959. },
  36960. front: {
  36961. height: math.unit(5 + 1/12, "feet"),
  36962. weight: math.unit(418, "lb"),
  36963. name: "Front",
  36964. image: {
  36965. source: "./media/characters/softpurr/front.svg",
  36966. extra: 1950/1856,
  36967. bottom: 174/2124
  36968. }
  36969. },
  36970. paw: {
  36971. height: math.unit(1, "feet"),
  36972. name: "Paw",
  36973. image: {
  36974. source: "./media/characters/softpurr/paw.svg"
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Normal",
  36981. height: math.unit(5 + 1/12, "feet"),
  36982. default: true
  36983. },
  36984. ]
  36985. ))
  36986. characterMakers.push(() => makeCharacter(
  36987. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36988. {
  36989. front: {
  36990. height: math.unit(260, "meters"),
  36991. name: "Front",
  36992. image: {
  36993. source: "./media/characters/anahita/front.svg",
  36994. extra: 665/635,
  36995. bottom: 89/754
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Macro",
  37002. height: math.unit(260, "meters"),
  37003. default: true
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37009. {
  37010. front: {
  37011. height: math.unit(4 + 10/12, "feet"),
  37012. weight: math.unit(160, "lb"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/chip-mouse/front.svg",
  37016. extra: 3528/3408,
  37017. bottom: 0/3528
  37018. }
  37019. },
  37020. frontNsfw: {
  37021. height: math.unit(4 + 10/12, "feet"),
  37022. weight: math.unit(160, "lb"),
  37023. name: "Front (NSFW)",
  37024. image: {
  37025. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37026. extra: 3528/3408,
  37027. bottom: 0/3528
  37028. }
  37029. },
  37030. },
  37031. [
  37032. {
  37033. name: "Normal",
  37034. height: math.unit(4 + 10/12, "feet"),
  37035. default: true
  37036. },
  37037. ]
  37038. ))
  37039. characterMakers.push(() => makeCharacter(
  37040. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37041. {
  37042. side: {
  37043. height: math.unit(10, "feet"),
  37044. weight: math.unit(14000, "lb"),
  37045. name: "Side",
  37046. image: {
  37047. source: "./media/characters/kremm/side.svg",
  37048. extra: 1390/1053,
  37049. bottom: 90/1480
  37050. }
  37051. },
  37052. gut: {
  37053. height: math.unit(5.8, "feet"),
  37054. name: "Gut",
  37055. image: {
  37056. source: "./media/characters/kremm/gut.svg"
  37057. }
  37058. },
  37059. ass: {
  37060. height: math.unit(6.1, "feet"),
  37061. name: "Ass",
  37062. image: {
  37063. source: "./media/characters/kremm/ass.svg"
  37064. }
  37065. },
  37066. jaws: {
  37067. height: math.unit(2.2, "feet"),
  37068. name: "Jaws",
  37069. image: {
  37070. source: "./media/characters/kremm/jaws.svg"
  37071. }
  37072. },
  37073. dick: {
  37074. height: math.unit(4.26, "feet"),
  37075. name: "Dick",
  37076. image: {
  37077. source: "./media/characters/kremm/dick.svg"
  37078. }
  37079. },
  37080. },
  37081. [
  37082. {
  37083. name: "Normal",
  37084. height: math.unit(10, "feet"),
  37085. default: true
  37086. },
  37087. ]
  37088. ))
  37089. characterMakers.push(() => makeCharacter(
  37090. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37091. {
  37092. front: {
  37093. height: math.unit(30, "stories"),
  37094. name: "Front",
  37095. image: {
  37096. source: "./media/characters/kai/front.svg",
  37097. extra: 1892/1718,
  37098. bottom: 162/2054
  37099. }
  37100. },
  37101. },
  37102. [
  37103. {
  37104. name: "Macro",
  37105. height: math.unit(30, "stories"),
  37106. default: true
  37107. },
  37108. ]
  37109. ))
  37110. characterMakers.push(() => makeCharacter(
  37111. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37112. {
  37113. front: {
  37114. height: math.unit(6 + 4/12, "feet"),
  37115. weight: math.unit(145, "lb"),
  37116. name: "Front",
  37117. image: {
  37118. source: "./media/characters/sykes/front.svg",
  37119. extra: 1321 / 1187,
  37120. bottom: 66 / 1387
  37121. }
  37122. },
  37123. back: {
  37124. height: math.unit(6 + 4/12, "feet"),
  37125. weight: math.unit(145, "lb"),
  37126. name: "Back",
  37127. image: {
  37128. source: "./media/characters/sykes/back.svg",
  37129. extra: 1326/1181,
  37130. bottom: 31/1357
  37131. }
  37132. },
  37133. traditionalOutfit: {
  37134. height: math.unit(6 + 4/12, "feet"),
  37135. weight: math.unit(145, "lb"),
  37136. name: "Traditional Outfit",
  37137. image: {
  37138. source: "./media/characters/sykes/traditional-outfit.svg",
  37139. extra: 1321 / 1187,
  37140. bottom: 66 / 1387
  37141. }
  37142. },
  37143. adventureOutfit: {
  37144. height: math.unit(6 + 4/12, "feet"),
  37145. weight: math.unit(145, "lb"),
  37146. name: "Adventure Outfit",
  37147. image: {
  37148. source: "./media/characters/sykes/adventure-outfit.svg",
  37149. extra: 1321 / 1187,
  37150. bottom: 66 / 1387
  37151. }
  37152. },
  37153. handLeft: {
  37154. height: math.unit(0.9, "feet"),
  37155. name: "Hand (Left)",
  37156. image: {
  37157. source: "./media/characters/sykes/hand-left.svg"
  37158. }
  37159. },
  37160. handRight: {
  37161. height: math.unit(0.839, "feet"),
  37162. name: "Hand (Right)",
  37163. image: {
  37164. source: "./media/characters/sykes/hand-right.svg"
  37165. }
  37166. },
  37167. leftFoot: {
  37168. height: math.unit(1.2, "feet"),
  37169. name: "Foot (Left)",
  37170. image: {
  37171. source: "./media/characters/sykes/foot-left.svg"
  37172. }
  37173. },
  37174. rightFoot: {
  37175. height: math.unit(1.2, "feet"),
  37176. name: "Foot (Right)",
  37177. image: {
  37178. source: "./media/characters/sykes/foot-right.svg"
  37179. }
  37180. },
  37181. maw: {
  37182. height: math.unit(1.93, "feet"),
  37183. name: "Maw",
  37184. image: {
  37185. source: "./media/characters/sykes/maw.svg"
  37186. }
  37187. },
  37188. teeth: {
  37189. height: math.unit(0.51, "feet"),
  37190. name: "Teeth",
  37191. image: {
  37192. source: "./media/characters/sykes/teeth.svg"
  37193. }
  37194. },
  37195. tongue: {
  37196. height: math.unit(2.13, "feet"),
  37197. name: "Tongue",
  37198. image: {
  37199. source: "./media/characters/sykes/tongue.svg"
  37200. }
  37201. },
  37202. uvula: {
  37203. height: math.unit(0.16, "feet"),
  37204. name: "Uvula",
  37205. image: {
  37206. source: "./media/characters/sykes/uvula.svg"
  37207. }
  37208. },
  37209. collar: {
  37210. height: math.unit(0.287, "feet"),
  37211. name: "Collar",
  37212. image: {
  37213. source: "./media/characters/sykes/collar.svg"
  37214. }
  37215. },
  37216. tail: {
  37217. height: math.unit(3.8, "feet"),
  37218. name: "Tail",
  37219. image: {
  37220. source: "./media/characters/sykes/tail.svg"
  37221. }
  37222. },
  37223. },
  37224. [
  37225. {
  37226. name: "Shrunken",
  37227. height: math.unit(5, "inches")
  37228. },
  37229. {
  37230. name: "Normal",
  37231. height: math.unit(6 + 4 / 12, "feet"),
  37232. default: true
  37233. },
  37234. {
  37235. name: "Big",
  37236. height: math.unit(15, "feet")
  37237. },
  37238. ]
  37239. ))
  37240. characterMakers.push(() => makeCharacter(
  37241. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37242. {
  37243. front: {
  37244. height: math.unit(5 + 8/12, "feet"),
  37245. weight: math.unit(190, "lb"),
  37246. name: "Front",
  37247. image: {
  37248. source: "./media/characters/oven-otter/front.svg",
  37249. extra: 1809/1740,
  37250. bottom: 181/1990
  37251. }
  37252. },
  37253. back: {
  37254. height: math.unit(5 + 8/12, "feet"),
  37255. weight: math.unit(190, "lb"),
  37256. name: "Back",
  37257. image: {
  37258. source: "./media/characters/oven-otter/back.svg",
  37259. extra: 1709/1635,
  37260. bottom: 118/1827
  37261. }
  37262. },
  37263. hand: {
  37264. height: math.unit(1.07, "feet"),
  37265. name: "Hand",
  37266. image: {
  37267. source: "./media/characters/oven-otter/hand.svg"
  37268. }
  37269. },
  37270. beans: {
  37271. height: math.unit(1.74, "feet"),
  37272. name: "Beans",
  37273. image: {
  37274. source: "./media/characters/oven-otter/beans.svg"
  37275. }
  37276. },
  37277. },
  37278. [
  37279. {
  37280. name: "Micro",
  37281. height: math.unit(0.5, "inches")
  37282. },
  37283. {
  37284. name: "Normal",
  37285. height: math.unit(5 + 8/12, "feet"),
  37286. default: true
  37287. },
  37288. {
  37289. name: "Macro",
  37290. height: math.unit(250, "feet")
  37291. },
  37292. {
  37293. name: "Really High",
  37294. height: math.unit(420, "feet")
  37295. },
  37296. ]
  37297. ))
  37298. characterMakers.push(() => makeCharacter(
  37299. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37300. {
  37301. front: {
  37302. height: math.unit(5, "meters"),
  37303. weight: math.unit(292000000000000, "kg"),
  37304. name: "Front",
  37305. image: {
  37306. source: "./media/characters/devourer/front.svg",
  37307. extra: 1800/1733,
  37308. bottom: 211/2011
  37309. }
  37310. },
  37311. maw: {
  37312. height: math.unit(1.1, "meter"),
  37313. name: "Maw",
  37314. image: {
  37315. source: "./media/characters/devourer/maw.svg"
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Small",
  37322. height: math.unit(3, "meters")
  37323. },
  37324. {
  37325. name: "Large",
  37326. height: math.unit(5, "meters"),
  37327. default: true
  37328. },
  37329. ]
  37330. ))
  37331. characterMakers.push(() => makeCharacter(
  37332. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37333. {
  37334. front: {
  37335. height: math.unit(6, "feet"),
  37336. weight: math.unit(400, "lb"),
  37337. name: "Front",
  37338. image: {
  37339. source: "./media/characters/ellarby/front.svg",
  37340. extra: 1909/1763,
  37341. bottom: 80/1989
  37342. }
  37343. },
  37344. back: {
  37345. height: math.unit(6, "feet"),
  37346. weight: math.unit(400, "lb"),
  37347. name: "Back",
  37348. image: {
  37349. source: "./media/characters/ellarby/back.svg",
  37350. extra: 1914/1784,
  37351. bottom: 172/2086
  37352. }
  37353. },
  37354. },
  37355. [
  37356. {
  37357. name: "Mischief",
  37358. height: math.unit(18, "inches")
  37359. },
  37360. {
  37361. name: "Trouble",
  37362. height: math.unit(12, "feet")
  37363. },
  37364. {
  37365. name: "Havoc",
  37366. height: math.unit(200, "feet"),
  37367. default: true
  37368. },
  37369. {
  37370. name: "Pandemonium",
  37371. height: math.unit(1, "mile")
  37372. },
  37373. {
  37374. name: "Catastrophe",
  37375. height: math.unit(100, "miles")
  37376. },
  37377. ]
  37378. ))
  37379. characterMakers.push(() => makeCharacter(
  37380. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37381. {
  37382. front: {
  37383. height: math.unit(4.7, "meters"),
  37384. weight: math.unit(6500, "kg"),
  37385. name: "Front",
  37386. image: {
  37387. source: "./media/characters/vex/front.svg",
  37388. extra: 1288/1140,
  37389. bottom: 100/1388
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Normal",
  37396. height: math.unit(4.7, "meters"),
  37397. default: true
  37398. },
  37399. ]
  37400. ))
  37401. characterMakers.push(() => makeCharacter(
  37402. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37403. {
  37404. normal: {
  37405. height: math.unit(6, "feet"),
  37406. weight: math.unit(350, "lb"),
  37407. name: "Normal",
  37408. image: {
  37409. source: "./media/characters/teshy/normal.svg",
  37410. extra: 1795/1735,
  37411. bottom: 16/1811
  37412. }
  37413. },
  37414. monsterFront: {
  37415. height: math.unit(12, "feet"),
  37416. weight: math.unit(4700, "lb"),
  37417. name: "Monster (Front)",
  37418. image: {
  37419. source: "./media/characters/teshy/monster-front.svg",
  37420. extra: 2042/2034,
  37421. bottom: 128/2170
  37422. }
  37423. },
  37424. monsterSide: {
  37425. height: math.unit(12, "feet"),
  37426. weight: math.unit(4700, "lb"),
  37427. name: "Monster (Side)",
  37428. image: {
  37429. source: "./media/characters/teshy/monster-side.svg",
  37430. extra: 2067/2056,
  37431. bottom: 70/2137
  37432. }
  37433. },
  37434. monsterBack: {
  37435. height: math.unit(12, "feet"),
  37436. weight: math.unit(4700, "lb"),
  37437. name: "Monster (Back)",
  37438. image: {
  37439. source: "./media/characters/teshy/monster-back.svg",
  37440. extra: 1921/1914,
  37441. bottom: 171/2092
  37442. }
  37443. },
  37444. },
  37445. [
  37446. {
  37447. name: "Normal",
  37448. height: math.unit(6, "feet"),
  37449. default: true
  37450. },
  37451. ]
  37452. ))
  37453. characterMakers.push(() => makeCharacter(
  37454. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37455. {
  37456. front: {
  37457. height: math.unit(6, "feet"),
  37458. name: "Front",
  37459. image: {
  37460. source: "./media/characters/ramey/front.svg",
  37461. extra: 790/787,
  37462. bottom: 27/817
  37463. }
  37464. },
  37465. },
  37466. [
  37467. {
  37468. name: "Normal",
  37469. height: math.unit(6, "feet"),
  37470. default: true
  37471. },
  37472. ]
  37473. ))
  37474. characterMakers.push(() => makeCharacter(
  37475. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37476. {
  37477. front: {
  37478. height: math.unit(5 + 5/12, "feet"),
  37479. weight: math.unit(120, "lb"),
  37480. name: "Front",
  37481. image: {
  37482. source: "./media/characters/phirae/front.svg",
  37483. extra: 2491/2436,
  37484. bottom: 38/2529
  37485. }
  37486. },
  37487. },
  37488. [
  37489. {
  37490. name: "Normal",
  37491. height: math.unit(5 + 5/12, "feet"),
  37492. default: true
  37493. },
  37494. ]
  37495. ))
  37496. characterMakers.push(() => makeCharacter(
  37497. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37498. {
  37499. front: {
  37500. height: math.unit(5 + 3/12, "feet"),
  37501. name: "Front",
  37502. image: {
  37503. source: "./media/characters/stagglas/front.svg",
  37504. extra: 962/882,
  37505. bottom: 53/1015
  37506. }
  37507. },
  37508. feral: {
  37509. height: math.unit(335, "cm"),
  37510. name: "Feral",
  37511. image: {
  37512. source: "./media/characters/stagglas/feral.svg",
  37513. extra: 1732/1090,
  37514. bottom: 48/1780
  37515. }
  37516. },
  37517. },
  37518. [
  37519. {
  37520. name: "Normal",
  37521. height: math.unit(5 + 3/12, "feet"),
  37522. default: true
  37523. },
  37524. ]
  37525. ))
  37526. characterMakers.push(() => makeCharacter(
  37527. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37528. {
  37529. front: {
  37530. height: math.unit(5 + 4/12, "feet"),
  37531. weight: math.unit(145, "lb"),
  37532. name: "Front",
  37533. image: {
  37534. source: "./media/characters/starra/front.svg",
  37535. extra: 1790/1691,
  37536. bottom: 91/1881
  37537. }
  37538. },
  37539. },
  37540. [
  37541. {
  37542. name: "Normal",
  37543. height: math.unit(5 + 4/12, "feet"),
  37544. default: true
  37545. },
  37546. ]
  37547. ))
  37548. characterMakers.push(() => makeCharacter(
  37549. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37550. {
  37551. front: {
  37552. height: math.unit(3.5, "meters"),
  37553. name: "Front",
  37554. image: {
  37555. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37556. extra: 1248/972,
  37557. bottom: 38/1286
  37558. }
  37559. },
  37560. },
  37561. [
  37562. {
  37563. name: "Normal",
  37564. height: math.unit(3.5, "meters"),
  37565. default: true
  37566. },
  37567. ]
  37568. ))
  37569. characterMakers.push(() => makeCharacter(
  37570. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37571. {
  37572. side: {
  37573. height: math.unit(8 + 2/12, "feet"),
  37574. weight: math.unit(1240, "lb"),
  37575. name: "Side",
  37576. image: {
  37577. source: "./media/characters/mika-valentine/side.svg",
  37578. extra: 2670/2501,
  37579. bottom: 250/2920
  37580. }
  37581. },
  37582. },
  37583. [
  37584. {
  37585. name: "Normal",
  37586. height: math.unit(8 + 2/12, "feet"),
  37587. default: true
  37588. },
  37589. ]
  37590. ))
  37591. characterMakers.push(() => makeCharacter(
  37592. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37593. {
  37594. front: {
  37595. height: math.unit(7 + 2/12, "feet"),
  37596. name: "Front",
  37597. image: {
  37598. source: "./media/characters/xoltol/front.svg",
  37599. extra: 2212/2124,
  37600. bottom: 84/2296
  37601. }
  37602. },
  37603. side: {
  37604. height: math.unit(7 + 2/12, "feet"),
  37605. name: "Side",
  37606. image: {
  37607. source: "./media/characters/xoltol/side.svg",
  37608. extra: 2273/2197,
  37609. bottom: 26/2299
  37610. }
  37611. },
  37612. hand: {
  37613. height: math.unit(2.5, "feet"),
  37614. name: "Hand",
  37615. image: {
  37616. source: "./media/characters/xoltol/hand.svg"
  37617. }
  37618. },
  37619. },
  37620. [
  37621. {
  37622. name: "Small-ish",
  37623. height: math.unit(5 + 11/12, "feet")
  37624. },
  37625. {
  37626. name: "Normal",
  37627. height: math.unit(7 + 2/12, "feet")
  37628. },
  37629. {
  37630. name: "\"Macro\"",
  37631. height: math.unit(14 + 9/12, "feet"),
  37632. default: true
  37633. },
  37634. {
  37635. name: "Alternate Height",
  37636. height: math.unit(20, "feet")
  37637. },
  37638. {
  37639. name: "Actually Macro",
  37640. height: math.unit(100, "feet")
  37641. },
  37642. ]
  37643. ))
  37644. characterMakers.push(() => makeCharacter(
  37645. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37646. {
  37647. front: {
  37648. height: math.unit(5 + 2/12, "feet"),
  37649. weight: math.unit(75, "kg"),
  37650. name: "Front",
  37651. image: {
  37652. source: "./media/characters/kotetsu-redwood/front.svg",
  37653. extra: 1053/942,
  37654. bottom: 60/1113
  37655. }
  37656. },
  37657. },
  37658. [
  37659. {
  37660. name: "Normal",
  37661. height: math.unit(5 + 2/12, "feet"),
  37662. default: true
  37663. },
  37664. ]
  37665. ))
  37666. characterMakers.push(() => makeCharacter(
  37667. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37668. {
  37669. front: {
  37670. height: math.unit(2.4, "meters"),
  37671. weight: math.unit(125, "kg"),
  37672. name: "Front",
  37673. image: {
  37674. source: "./media/characters/lilith/front.svg",
  37675. extra: 1590/1513,
  37676. bottom: 203/1793
  37677. }
  37678. },
  37679. },
  37680. [
  37681. {
  37682. name: "Humanoid",
  37683. height: math.unit(2.4, "meters")
  37684. },
  37685. {
  37686. name: "Normal",
  37687. height: math.unit(6, "meters"),
  37688. default: true
  37689. },
  37690. {
  37691. name: "Largest",
  37692. height: math.unit(55, "meters")
  37693. },
  37694. ]
  37695. ))
  37696. characterMakers.push(() => makeCharacter(
  37697. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37698. {
  37699. front: {
  37700. height: math.unit(8 + 4/12, "feet"),
  37701. weight: math.unit(535, "lb"),
  37702. name: "Front",
  37703. image: {
  37704. source: "./media/characters/beh'kah-bolger/front.svg",
  37705. extra: 1660/1603,
  37706. bottom: 37/1697
  37707. }
  37708. },
  37709. },
  37710. [
  37711. {
  37712. name: "Normal",
  37713. height: math.unit(8 + 4/12, "feet"),
  37714. default: true
  37715. },
  37716. {
  37717. name: "Kaiju",
  37718. height: math.unit(250, "feet")
  37719. },
  37720. {
  37721. name: "Still Growing",
  37722. height: math.unit(10, "miles")
  37723. },
  37724. {
  37725. name: "Continental",
  37726. height: math.unit(5000, "miles")
  37727. },
  37728. {
  37729. name: "Final Form",
  37730. height: math.unit(2500000, "miles")
  37731. },
  37732. ]
  37733. ))
  37734. characterMakers.push(() => makeCharacter(
  37735. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37736. {
  37737. front: {
  37738. height: math.unit(7 + 2/12, "feet"),
  37739. weight: math.unit(230, "kg"),
  37740. name: "Front",
  37741. image: {
  37742. source: "./media/characters/tatyana-milewska/front.svg",
  37743. extra: 1199/1150,
  37744. bottom: 86/1285
  37745. }
  37746. },
  37747. },
  37748. [
  37749. {
  37750. name: "Normal",
  37751. height: math.unit(7 + 2/12, "feet"),
  37752. default: true
  37753. },
  37754. {
  37755. name: "Big",
  37756. height: math.unit(12, "feet")
  37757. },
  37758. {
  37759. name: "Minimacro",
  37760. height: math.unit(20, "feet")
  37761. },
  37762. {
  37763. name: "Macro",
  37764. height: math.unit(120, "feet")
  37765. },
  37766. ]
  37767. ))
  37768. characterMakers.push(() => makeCharacter(
  37769. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37770. {
  37771. front: {
  37772. height: math.unit(7 + 8/12, "feet"),
  37773. weight: math.unit(152, "kg"),
  37774. name: "Front",
  37775. image: {
  37776. source: "./media/characters/helen-arri/front.svg",
  37777. extra: 440/423,
  37778. bottom: 14/454
  37779. }
  37780. },
  37781. back: {
  37782. height: math.unit(7 + 8/12, "feet"),
  37783. weight: math.unit(152, "kg"),
  37784. name: "Back",
  37785. image: {
  37786. source: "./media/characters/helen-arri/back.svg",
  37787. extra: 443/426,
  37788. bottom: 8/451
  37789. }
  37790. },
  37791. },
  37792. [
  37793. {
  37794. name: "Normal",
  37795. height: math.unit(7 + 8/12, "feet"),
  37796. default: true
  37797. },
  37798. {
  37799. name: "Big",
  37800. height: math.unit(14, "feet")
  37801. },
  37802. {
  37803. name: "Minimacro",
  37804. height: math.unit(24, "feet")
  37805. },
  37806. {
  37807. name: "Macro",
  37808. height: math.unit(140, "feet")
  37809. },
  37810. ]
  37811. ))
  37812. characterMakers.push(() => makeCharacter(
  37813. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37814. {
  37815. front: {
  37816. height: math.unit(6, "meters"),
  37817. name: "Front",
  37818. image: {
  37819. source: "./media/characters/ehanu-rehu/front.svg",
  37820. extra: 1800/1800,
  37821. bottom: 59/1859
  37822. }
  37823. },
  37824. },
  37825. [
  37826. {
  37827. name: "Normal",
  37828. height: math.unit(6, "meters"),
  37829. default: true
  37830. },
  37831. ]
  37832. ))
  37833. characterMakers.push(() => makeCharacter(
  37834. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37835. {
  37836. front: {
  37837. height: math.unit(7 + 3/12, "feet"),
  37838. name: "Front",
  37839. image: {
  37840. source: "./media/characters/renholder/front.svg",
  37841. extra: 3096/2960,
  37842. bottom: 250/3346
  37843. }
  37844. },
  37845. },
  37846. [
  37847. {
  37848. name: "Normal Bat",
  37849. height: math.unit(7 + 3/12, "feet"),
  37850. default: true
  37851. },
  37852. {
  37853. name: "Slightly Tall Bat",
  37854. height: math.unit(100, "feet")
  37855. },
  37856. {
  37857. name: "Big Bat",
  37858. height: math.unit(1000, "feet")
  37859. },
  37860. {
  37861. name: "City-Sized Bat",
  37862. height: math.unit(200000, "feet")
  37863. },
  37864. {
  37865. name: "Bigger Bat",
  37866. height: math.unit(10000, "miles")
  37867. },
  37868. {
  37869. name: "Solar Sized Bat",
  37870. height: math.unit(100, "AU")
  37871. },
  37872. {
  37873. name: "Galactic Bat",
  37874. height: math.unit(200000, "lightyears")
  37875. },
  37876. {
  37877. name: "Universally Known Bat",
  37878. height: math.unit(1, "universe")
  37879. },
  37880. ]
  37881. ))
  37882. characterMakers.push(() => makeCharacter(
  37883. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37884. {
  37885. front: {
  37886. height: math.unit(6 + 11/12, "feet"),
  37887. weight: math.unit(250, "lb"),
  37888. name: "Front",
  37889. image: {
  37890. source: "./media/characters/cookiecat/front.svg",
  37891. extra: 893/827,
  37892. bottom: 14/907
  37893. }
  37894. },
  37895. },
  37896. [
  37897. {
  37898. name: "Micro",
  37899. height: math.unit(3, "inches")
  37900. },
  37901. {
  37902. name: "Normal",
  37903. height: math.unit(6 + 11/12, "feet"),
  37904. default: true
  37905. },
  37906. {
  37907. name: "Macro",
  37908. height: math.unit(100, "feet")
  37909. },
  37910. {
  37911. name: "Macro+",
  37912. height: math.unit(404, "feet")
  37913. },
  37914. {
  37915. name: "Megamacro",
  37916. height: math.unit(165, "miles")
  37917. },
  37918. {
  37919. name: "Planetary",
  37920. height: math.unit(4600, "miles")
  37921. },
  37922. ]
  37923. ))
  37924. characterMakers.push(() => makeCharacter(
  37925. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37926. {
  37927. front: {
  37928. height: math.unit(10 + 3/12, "feet"),
  37929. weight: math.unit(1500, "lb"),
  37930. name: "Front",
  37931. image: {
  37932. source: "./media/characters/tux-kusanagi/front.svg",
  37933. extra: 944/840,
  37934. bottom: 39/983
  37935. }
  37936. },
  37937. back: {
  37938. height: math.unit(10 + 3/12, "feet"),
  37939. weight: math.unit(1500, "lb"),
  37940. name: "Back",
  37941. image: {
  37942. source: "./media/characters/tux-kusanagi/back.svg",
  37943. extra: 941/842,
  37944. bottom: 28/969
  37945. }
  37946. },
  37947. rump: {
  37948. height: math.unit(5.25, "feet"),
  37949. name: "Rump",
  37950. image: {
  37951. source: "./media/characters/tux-kusanagi/rump.svg"
  37952. }
  37953. },
  37954. beak: {
  37955. height: math.unit(1.54, "feet"),
  37956. name: "Beak",
  37957. image: {
  37958. source: "./media/characters/tux-kusanagi/beak.svg"
  37959. }
  37960. },
  37961. },
  37962. [
  37963. {
  37964. name: "Normal",
  37965. height: math.unit(10 + 3/12, "feet"),
  37966. default: true
  37967. },
  37968. ]
  37969. ))
  37970. characterMakers.push(() => makeCharacter(
  37971. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37972. {
  37973. front: {
  37974. height: math.unit(58, "feet"),
  37975. weight: math.unit(200, "tons"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/uzarmazari/front.svg",
  37979. extra: 1575/1455,
  37980. bottom: 152/1727
  37981. }
  37982. },
  37983. back: {
  37984. height: math.unit(58, "feet"),
  37985. weight: math.unit(200, "tons"),
  37986. name: "Back",
  37987. image: {
  37988. source: "./media/characters/uzarmazari/back.svg",
  37989. extra: 1585/1510,
  37990. bottom: 157/1742
  37991. }
  37992. },
  37993. head: {
  37994. height: math.unit(26, "feet"),
  37995. name: "Head",
  37996. image: {
  37997. source: "./media/characters/uzarmazari/head.svg"
  37998. }
  37999. },
  38000. },
  38001. [
  38002. {
  38003. name: "Normal",
  38004. height: math.unit(58, "feet"),
  38005. default: true
  38006. },
  38007. ]
  38008. ))
  38009. characterMakers.push(() => makeCharacter(
  38010. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38011. {
  38012. side: {
  38013. height: math.unit(15, "feet"),
  38014. name: "Side",
  38015. image: {
  38016. source: "./media/characters/akitu/side.svg",
  38017. extra: 1421/1321,
  38018. bottom: 157/1578
  38019. }
  38020. },
  38021. front: {
  38022. height: math.unit(15, "feet"),
  38023. name: "Front",
  38024. image: {
  38025. source: "./media/characters/akitu/front.svg",
  38026. extra: 1435/1326,
  38027. bottom: 232/1667
  38028. }
  38029. },
  38030. },
  38031. [
  38032. {
  38033. name: "Normal",
  38034. height: math.unit(15, "feet"),
  38035. default: true
  38036. },
  38037. ]
  38038. ))
  38039. characterMakers.push(() => makeCharacter(
  38040. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38041. {
  38042. front: {
  38043. height: math.unit(10 + 8/12, "feet"),
  38044. name: "Front",
  38045. image: {
  38046. source: "./media/characters/azalie-croixland/front.svg",
  38047. extra: 1972/1856,
  38048. bottom: 31/2003
  38049. }
  38050. },
  38051. },
  38052. [
  38053. {
  38054. name: "Original Height",
  38055. height: math.unit(5 + 4/12, "feet")
  38056. },
  38057. {
  38058. name: "Normal Height",
  38059. height: math.unit(10 + 8/12, "feet"),
  38060. default: true
  38061. },
  38062. ]
  38063. ))
  38064. characterMakers.push(() => makeCharacter(
  38065. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38066. {
  38067. side: {
  38068. height: math.unit(7 + 1/12, "feet"),
  38069. weight: math.unit(245, "lb"),
  38070. name: "Side",
  38071. image: {
  38072. source: "./media/characters/kavus-kazian/side.svg",
  38073. extra: 349/342,
  38074. bottom: 15/364
  38075. }
  38076. },
  38077. },
  38078. [
  38079. {
  38080. name: "Normal",
  38081. height: math.unit(7 + 1/12, "feet"),
  38082. default: true
  38083. },
  38084. ]
  38085. ))
  38086. characterMakers.push(() => makeCharacter(
  38087. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38088. {
  38089. normalFront: {
  38090. height: math.unit(5 + 11/12, "feet"),
  38091. name: "Front",
  38092. image: {
  38093. source: "./media/characters/moonlight-rose/normal-front.svg",
  38094. extra: 1980/1825,
  38095. bottom: 18/1998
  38096. },
  38097. form: "normal",
  38098. default: true
  38099. },
  38100. normalBack: {
  38101. height: math.unit(5 + 11/12, "feet"),
  38102. name: "Back",
  38103. image: {
  38104. source: "./media/characters/moonlight-rose/normal-back.svg",
  38105. extra: 2010/1839,
  38106. bottom: 10/2020
  38107. },
  38108. form: "normal"
  38109. },
  38110. demonFront: {
  38111. height: math.unit(1.5, "earths"),
  38112. name: "Front",
  38113. image: {
  38114. source: "./media/characters/moonlight-rose/demon.svg",
  38115. extra: 1400/1294,
  38116. bottom: 45/1445
  38117. },
  38118. form: "demon",
  38119. default: true
  38120. },
  38121. terraFront: {
  38122. height: math.unit(1.5, "earths"),
  38123. name: "Front",
  38124. image: {
  38125. source: "./media/characters/moonlight-rose/terra.svg"
  38126. },
  38127. form: "terra",
  38128. default: true
  38129. },
  38130. jupiterFront: {
  38131. height: math.unit(69911*2, "km"),
  38132. name: "Front",
  38133. image: {
  38134. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38135. extra: 1367/1286,
  38136. bottom: 55/1422
  38137. },
  38138. form: "jupiter",
  38139. default: true
  38140. },
  38141. neptuneFront: {
  38142. height: math.unit(24622*2, "feet"),
  38143. name: "Front",
  38144. image: {
  38145. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38146. extra: 1851/1712,
  38147. bottom: 0/1851
  38148. },
  38149. form: "neptune",
  38150. default: true
  38151. },
  38152. },
  38153. [
  38154. {
  38155. name: "\"Natural\" Height",
  38156. height: math.unit(5 + 11/12, "feet"),
  38157. form: "normal"
  38158. },
  38159. {
  38160. name: "Smallest comfortable size",
  38161. height: math.unit(40, "meters"),
  38162. form: "normal"
  38163. },
  38164. {
  38165. name: "Common size",
  38166. height: math.unit(50, "km"),
  38167. form: "normal",
  38168. default: true
  38169. },
  38170. {
  38171. name: "Normal",
  38172. height: math.unit(1.5, "earths"),
  38173. form: "demon",
  38174. default: true
  38175. },
  38176. {
  38177. name: "Universal",
  38178. height: math.unit(15, "universes"),
  38179. form: "demon"
  38180. },
  38181. {
  38182. name: "Earth",
  38183. height: math.unit(1.5, "earths"),
  38184. form: "terra",
  38185. default: true
  38186. },
  38187. {
  38188. name: "Super Earth",
  38189. height: math.unit(67.5, "earths"),
  38190. form: "terra"
  38191. },
  38192. {
  38193. name: "Doesn't fit in a solar system...",
  38194. height: math.unit(1, "galaxy"),
  38195. form: "terra"
  38196. },
  38197. {
  38198. name: "Saturn",
  38199. height: math.unit(58232*2, "km"),
  38200. form: "jupiter"
  38201. },
  38202. {
  38203. name: "Jupiter",
  38204. height: math.unit(69911*2, "km"),
  38205. form: "jupiter",
  38206. default: true
  38207. },
  38208. {
  38209. name: "HD 100546 b",
  38210. height: math.unit(482938, "km"),
  38211. form: "jupiter"
  38212. },
  38213. {
  38214. name: "Enceladus",
  38215. height: math.unit(513*2, "km"),
  38216. form: "neptune"
  38217. },
  38218. {
  38219. name: "Europe",
  38220. height: math.unit(1560*2, "km"),
  38221. form: "neptune"
  38222. },
  38223. {
  38224. name: "Neptune",
  38225. height: math.unit(24622*2, "km"),
  38226. form: "neptune",
  38227. default: true
  38228. },
  38229. {
  38230. name: "CoRoT-9b",
  38231. height: math.unit(75067*2, "km"),
  38232. form: "neptune"
  38233. },
  38234. ],
  38235. {
  38236. "normal": {
  38237. name: "Normal",
  38238. default: true
  38239. },
  38240. "demon": {
  38241. name: "Demon"
  38242. },
  38243. "terra": {
  38244. name: "Terra"
  38245. },
  38246. "jupiter": {
  38247. name: "Jupiter"
  38248. },
  38249. "neptune": {
  38250. name: "Neptune"
  38251. }
  38252. }
  38253. ))
  38254. characterMakers.push(() => makeCharacter(
  38255. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38256. {
  38257. front: {
  38258. height: math.unit(16, "feet"),
  38259. weight: math.unit(610, "kg"),
  38260. name: "Front",
  38261. image: {
  38262. source: "./media/characters/huckle/front.svg",
  38263. extra: 1731/1625,
  38264. bottom: 33/1764
  38265. }
  38266. },
  38267. back: {
  38268. height: math.unit(16, "feet"),
  38269. weight: math.unit(610, "kg"),
  38270. name: "Back",
  38271. image: {
  38272. source: "./media/characters/huckle/back.svg",
  38273. extra: 1738/1651,
  38274. bottom: 37/1775
  38275. }
  38276. },
  38277. laughing: {
  38278. height: math.unit(3.75, "feet"),
  38279. name: "Laughing",
  38280. image: {
  38281. source: "./media/characters/huckle/laughing.svg"
  38282. }
  38283. },
  38284. angry: {
  38285. height: math.unit(4.15, "feet"),
  38286. name: "Angry",
  38287. image: {
  38288. source: "./media/characters/huckle/angry.svg"
  38289. }
  38290. },
  38291. },
  38292. [
  38293. {
  38294. name: "Normal",
  38295. height: math.unit(16, "feet"),
  38296. default: true
  38297. },
  38298. {
  38299. name: "Mini Macro",
  38300. height: math.unit(463, "feet")
  38301. },
  38302. {
  38303. name: "Macro",
  38304. height: math.unit(1680, "meters")
  38305. },
  38306. {
  38307. name: "Mega Macro",
  38308. height: math.unit(175, "km")
  38309. },
  38310. {
  38311. name: "Terra Macro",
  38312. height: math.unit(32, "gigameters")
  38313. },
  38314. {
  38315. name: "Multiverse+",
  38316. height: math.unit(2.56e23, "yottameters")
  38317. },
  38318. ]
  38319. ))
  38320. characterMakers.push(() => makeCharacter(
  38321. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38322. {
  38323. front: {
  38324. height: math.unit(6 + 9/12, "feet"),
  38325. weight: math.unit(280, "lb"),
  38326. name: "Front",
  38327. image: {
  38328. source: "./media/characters/candy/front.svg",
  38329. extra: 234/217,
  38330. bottom: 11/245
  38331. }
  38332. },
  38333. },
  38334. [
  38335. {
  38336. name: "Really Small",
  38337. height: math.unit(0.1, "nm")
  38338. },
  38339. {
  38340. name: "Micro",
  38341. height: math.unit(2, "inches")
  38342. },
  38343. {
  38344. name: "Normal",
  38345. height: math.unit(6 + 9/12, "feet"),
  38346. default: true
  38347. },
  38348. {
  38349. name: "Small Macro",
  38350. height: math.unit(69, "feet")
  38351. },
  38352. {
  38353. name: "Macro",
  38354. height: math.unit(160, "feet")
  38355. },
  38356. {
  38357. name: "Megamacro",
  38358. height: math.unit(22000, "miles")
  38359. },
  38360. {
  38361. name: "Gigamacro",
  38362. height: math.unit(50000, "miles")
  38363. },
  38364. ]
  38365. ))
  38366. characterMakers.push(() => makeCharacter(
  38367. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38368. {
  38369. front: {
  38370. height: math.unit(4, "feet"),
  38371. weight: math.unit(90, "lb"),
  38372. name: "Front",
  38373. image: {
  38374. source: "./media/characters/joey-mcdonald/front.svg",
  38375. extra: 1059/852,
  38376. bottom: 33/1092
  38377. }
  38378. },
  38379. back: {
  38380. height: math.unit(4, "feet"),
  38381. weight: math.unit(90, "lb"),
  38382. name: "Back",
  38383. image: {
  38384. source: "./media/characters/joey-mcdonald/back.svg",
  38385. extra: 1077/879,
  38386. bottom: 5/1082
  38387. }
  38388. },
  38389. frontKobold: {
  38390. height: math.unit(4, "feet"),
  38391. weight: math.unit(100, "lb"),
  38392. name: "Front-kobold",
  38393. image: {
  38394. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38395. extra: 1480/1367,
  38396. bottom: 0/1480
  38397. }
  38398. },
  38399. backKobold: {
  38400. height: math.unit(4, "feet"),
  38401. weight: math.unit(100, "lb"),
  38402. name: "Back-kobold",
  38403. image: {
  38404. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38405. extra: 1449/1361,
  38406. bottom: 0/1449
  38407. }
  38408. },
  38409. },
  38410. [
  38411. {
  38412. name: "Normal",
  38413. height: math.unit(4, "feet"),
  38414. default: true
  38415. },
  38416. ]
  38417. ))
  38418. characterMakers.push(() => makeCharacter(
  38419. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38420. {
  38421. front: {
  38422. height: math.unit(12 + 6/12, "feet"),
  38423. name: "Front",
  38424. image: {
  38425. source: "./media/characters/kass-lockheed/front.svg",
  38426. extra: 354/343,
  38427. bottom: 9/363
  38428. }
  38429. },
  38430. back: {
  38431. height: math.unit(12 + 6/12, "feet"),
  38432. name: "Back",
  38433. image: {
  38434. source: "./media/characters/kass-lockheed/back.svg",
  38435. extra: 364/352,
  38436. bottom: 3/367
  38437. }
  38438. },
  38439. dick: {
  38440. height: math.unit(3.12, "feet"),
  38441. name: "Dick",
  38442. image: {
  38443. source: "./media/characters/kass-lockheed/dick.svg"
  38444. }
  38445. },
  38446. head: {
  38447. height: math.unit(2.6, "feet"),
  38448. name: "Head",
  38449. image: {
  38450. source: "./media/characters/kass-lockheed/head.svg"
  38451. }
  38452. },
  38453. bleh: {
  38454. height: math.unit(2.85, "feet"),
  38455. name: "Bleh",
  38456. image: {
  38457. source: "./media/characters/kass-lockheed/bleh.svg"
  38458. }
  38459. },
  38460. smug: {
  38461. height: math.unit(2.85, "feet"),
  38462. name: "Smug",
  38463. image: {
  38464. source: "./media/characters/kass-lockheed/smug.svg"
  38465. }
  38466. },
  38467. },
  38468. [
  38469. {
  38470. name: "Normal",
  38471. height: math.unit(12 + 6/12, "feet"),
  38472. default: true
  38473. },
  38474. ]
  38475. ))
  38476. characterMakers.push(() => makeCharacter(
  38477. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38478. {
  38479. front: {
  38480. height: math.unit(6 + 2/12, "feet"),
  38481. name: "Front",
  38482. image: {
  38483. source: "./media/characters/taylor/front.svg",
  38484. extra: 639/495,
  38485. bottom: 12/651
  38486. }
  38487. },
  38488. },
  38489. [
  38490. {
  38491. name: "Normal",
  38492. height: math.unit(6 + 2/12, "feet"),
  38493. default: true
  38494. },
  38495. {
  38496. name: "Big",
  38497. height: math.unit(15, "feet")
  38498. },
  38499. {
  38500. name: "Lorg",
  38501. height: math.unit(80, "feet")
  38502. },
  38503. {
  38504. name: "Too Lorg",
  38505. height: math.unit(120, "feet")
  38506. },
  38507. ]
  38508. ))
  38509. characterMakers.push(() => makeCharacter(
  38510. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38511. {
  38512. front: {
  38513. height: math.unit(15, "feet"),
  38514. name: "Front",
  38515. image: {
  38516. source: "./media/characters/kaizer/front.svg",
  38517. extra: 1612/1436,
  38518. bottom: 43/1655
  38519. }
  38520. },
  38521. },
  38522. [
  38523. {
  38524. name: "Normal",
  38525. height: math.unit(15, "feet"),
  38526. default: true
  38527. },
  38528. ]
  38529. ))
  38530. characterMakers.push(() => makeCharacter(
  38531. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38532. {
  38533. front: {
  38534. height: math.unit(2, "feet"),
  38535. weight: math.unit(30, "lb"),
  38536. name: "Front",
  38537. image: {
  38538. source: "./media/characters/sandy/front.svg",
  38539. extra: 1439/1307,
  38540. bottom: 194/1633
  38541. }
  38542. },
  38543. },
  38544. [
  38545. {
  38546. name: "Normal",
  38547. height: math.unit(2, "feet"),
  38548. default: true
  38549. },
  38550. ]
  38551. ))
  38552. characterMakers.push(() => makeCharacter(
  38553. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38554. {
  38555. front: {
  38556. height: math.unit(3, "feet"),
  38557. name: "Front",
  38558. image: {
  38559. source: "./media/characters/mellvi/front.svg",
  38560. extra: 1831/1630,
  38561. bottom: 58/1889
  38562. }
  38563. },
  38564. },
  38565. [
  38566. {
  38567. name: "Normal",
  38568. height: math.unit(3, "feet"),
  38569. default: true
  38570. },
  38571. ]
  38572. ))
  38573. characterMakers.push(() => makeCharacter(
  38574. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38575. {
  38576. front: {
  38577. height: math.unit(5 + 11/12, "feet"),
  38578. weight: math.unit(200, "lb"),
  38579. name: "Front",
  38580. image: {
  38581. source: "./media/characters/shirou/front.svg",
  38582. extra: 2491/2383,
  38583. bottom: 189/2680
  38584. }
  38585. },
  38586. back: {
  38587. height: math.unit(5 + 11/12, "feet"),
  38588. weight: math.unit(200, "lb"),
  38589. name: "Back",
  38590. image: {
  38591. source: "./media/characters/shirou/back.svg",
  38592. extra: 2554/2450,
  38593. bottom: 76/2630
  38594. }
  38595. },
  38596. },
  38597. [
  38598. {
  38599. name: "Normal",
  38600. height: math.unit(5 + 11/12, "feet"),
  38601. default: true
  38602. },
  38603. ]
  38604. ))
  38605. characterMakers.push(() => makeCharacter(
  38606. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38607. {
  38608. front: {
  38609. height: math.unit(6 + 3/12, "feet"),
  38610. weight: math.unit(177, "lb"),
  38611. name: "Front",
  38612. image: {
  38613. source: "./media/characters/noryu/front.svg",
  38614. extra: 973/885,
  38615. bottom: 10/983
  38616. }
  38617. },
  38618. },
  38619. [
  38620. {
  38621. name: "Normal",
  38622. height: math.unit(6 + 3/12, "feet"),
  38623. default: true
  38624. },
  38625. ]
  38626. ))
  38627. characterMakers.push(() => makeCharacter(
  38628. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38629. {
  38630. front: {
  38631. height: math.unit(5 + 6/12, "feet"),
  38632. weight: math.unit(170, "lb"),
  38633. name: "Front",
  38634. image: {
  38635. source: "./media/characters/mevolas-rubenido/front.svg",
  38636. extra: 2109/1901,
  38637. bottom: 96/2205
  38638. }
  38639. },
  38640. },
  38641. [
  38642. {
  38643. name: "Normal",
  38644. height: math.unit(5 + 6/12, "feet"),
  38645. default: true
  38646. },
  38647. ]
  38648. ))
  38649. characterMakers.push(() => makeCharacter(
  38650. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38651. {
  38652. front: {
  38653. height: math.unit(100, "feet"),
  38654. name: "Front",
  38655. image: {
  38656. source: "./media/characters/dee/front.svg",
  38657. extra: 2153/2036,
  38658. bottom: 59/2212
  38659. }
  38660. },
  38661. back: {
  38662. height: math.unit(100, "feet"),
  38663. name: "Back",
  38664. image: {
  38665. source: "./media/characters/dee/back.svg",
  38666. extra: 2183/2058,
  38667. bottom: 75/2258
  38668. }
  38669. },
  38670. foot: {
  38671. height: math.unit(19.43, "feet"),
  38672. name: "Foot",
  38673. image: {
  38674. source: "./media/characters/dee/foot.svg"
  38675. }
  38676. },
  38677. hoof: {
  38678. height: math.unit(20.6, "feet"),
  38679. name: "Hoof",
  38680. image: {
  38681. source: "./media/characters/dee/hoof.svg"
  38682. }
  38683. },
  38684. },
  38685. [
  38686. {
  38687. name: "Macro",
  38688. height: math.unit(100, "feet"),
  38689. default: true
  38690. },
  38691. ]
  38692. ))
  38693. characterMakers.push(() => makeCharacter(
  38694. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38695. {
  38696. front: {
  38697. height: math.unit(5 + 6/12, "feet"),
  38698. name: "Front",
  38699. image: {
  38700. source: "./media/characters/teh/front.svg",
  38701. extra: 1002/847,
  38702. bottom: 62/1064
  38703. }
  38704. },
  38705. },
  38706. [
  38707. {
  38708. name: "Normal",
  38709. height: math.unit(5 + 6/12, "feet"),
  38710. default: true
  38711. },
  38712. ]
  38713. ))
  38714. characterMakers.push(() => makeCharacter(
  38715. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38716. {
  38717. side: {
  38718. height: math.unit(6 + 1/12, "feet"),
  38719. weight: math.unit(204, "lb"),
  38720. name: "Side",
  38721. image: {
  38722. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38723. extra: 974/775,
  38724. bottom: 169/1143
  38725. }
  38726. },
  38727. sitting: {
  38728. height: math.unit(6 + 2/12, "feet"),
  38729. weight: math.unit(204, "lb"),
  38730. name: "Sitting",
  38731. image: {
  38732. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38733. extra: 1175/964,
  38734. bottom: 378/1553
  38735. }
  38736. },
  38737. },
  38738. [
  38739. {
  38740. name: "Normal",
  38741. height: math.unit(6 + 1/12, "feet"),
  38742. default: true
  38743. },
  38744. ]
  38745. ))
  38746. characterMakers.push(() => makeCharacter(
  38747. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38748. {
  38749. front: {
  38750. height: math.unit(6, "inches"),
  38751. name: "Front",
  38752. image: {
  38753. source: "./media/characters/tululi/front.svg",
  38754. extra: 1997/1876,
  38755. bottom: 20/2017
  38756. }
  38757. },
  38758. },
  38759. [
  38760. {
  38761. name: "Normal",
  38762. height: math.unit(6, "inches"),
  38763. default: true
  38764. },
  38765. ]
  38766. ))
  38767. characterMakers.push(() => makeCharacter(
  38768. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38769. {
  38770. front: {
  38771. height: math.unit(4 + 1/12, "feet"),
  38772. name: "Front",
  38773. image: {
  38774. source: "./media/characters/star/front.svg",
  38775. extra: 1493/1189,
  38776. bottom: 48/1541
  38777. }
  38778. },
  38779. },
  38780. [
  38781. {
  38782. name: "Normal",
  38783. height: math.unit(4 + 1/12, "feet"),
  38784. default: true
  38785. },
  38786. ]
  38787. ))
  38788. characterMakers.push(() => makeCharacter(
  38789. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38790. {
  38791. front: {
  38792. height: math.unit(6 + 3/12, "feet"),
  38793. name: "Front",
  38794. image: {
  38795. source: "./media/characters/comet/front.svg",
  38796. extra: 1681/1462,
  38797. bottom: 26/1707
  38798. }
  38799. },
  38800. },
  38801. [
  38802. {
  38803. name: "Normal",
  38804. height: math.unit(6 + 3/12, "feet"),
  38805. default: true
  38806. },
  38807. ]
  38808. ))
  38809. characterMakers.push(() => makeCharacter(
  38810. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38811. {
  38812. front: {
  38813. height: math.unit(950, "feet"),
  38814. name: "Front",
  38815. image: {
  38816. source: "./media/characters/vortex/front.svg",
  38817. extra: 1497/1434,
  38818. bottom: 56/1553
  38819. }
  38820. },
  38821. maw: {
  38822. height: math.unit(285, "feet"),
  38823. name: "Maw",
  38824. image: {
  38825. source: "./media/characters/vortex/maw.svg"
  38826. }
  38827. },
  38828. },
  38829. [
  38830. {
  38831. name: "Macro",
  38832. height: math.unit(950, "feet"),
  38833. default: true
  38834. },
  38835. ]
  38836. ))
  38837. characterMakers.push(() => makeCharacter(
  38838. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38839. {
  38840. front: {
  38841. height: math.unit(600, "feet"),
  38842. weight: math.unit(0.02, "grams"),
  38843. name: "Front",
  38844. image: {
  38845. source: "./media/characters/doodle/front.svg",
  38846. extra: 1578/1413,
  38847. bottom: 37/1615
  38848. }
  38849. },
  38850. },
  38851. [
  38852. {
  38853. name: "Macro",
  38854. height: math.unit(600, "feet"),
  38855. default: true
  38856. },
  38857. ]
  38858. ))
  38859. characterMakers.push(() => makeCharacter(
  38860. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38861. {
  38862. front: {
  38863. height: math.unit(6 + 6/12, "feet"),
  38864. name: "Front",
  38865. image: {
  38866. source: "./media/characters/jai/front.svg",
  38867. extra: 1645/1534,
  38868. bottom: 115/1760
  38869. }
  38870. },
  38871. },
  38872. [
  38873. {
  38874. name: "Normal",
  38875. height: math.unit(6 + 6/12, "feet"),
  38876. default: true
  38877. },
  38878. ]
  38879. ))
  38880. characterMakers.push(() => makeCharacter(
  38881. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38882. {
  38883. front: {
  38884. height: math.unit(6 + 8/12, "feet"),
  38885. name: "Front",
  38886. image: {
  38887. source: "./media/characters/pixel/front.svg",
  38888. extra: 1900/1735,
  38889. bottom: 63/1963
  38890. }
  38891. },
  38892. },
  38893. [
  38894. {
  38895. name: "Normal",
  38896. height: math.unit(6 + 8/12, "feet"),
  38897. default: true
  38898. },
  38899. ]
  38900. ))
  38901. characterMakers.push(() => makeCharacter(
  38902. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38903. {
  38904. back: {
  38905. height: math.unit(4 + 1/12, "feet"),
  38906. weight: math.unit(75, "lb"),
  38907. name: "Back",
  38908. image: {
  38909. source: "./media/characters/rhett/back.svg",
  38910. extra: 930/878,
  38911. bottom: 25/955
  38912. }
  38913. },
  38914. front: {
  38915. height: math.unit(4 + 1/12, "feet"),
  38916. weight: math.unit(75, "lb"),
  38917. name: "Front",
  38918. image: {
  38919. source: "./media/characters/rhett/front.svg",
  38920. extra: 1682/1586,
  38921. bottom: 92/1774
  38922. }
  38923. },
  38924. },
  38925. [
  38926. {
  38927. name: "Micro",
  38928. height: math.unit(8, "inches")
  38929. },
  38930. {
  38931. name: "Tiny",
  38932. height: math.unit(2, "feet")
  38933. },
  38934. {
  38935. name: "Normal",
  38936. height: math.unit(4 + 1/12, "feet"),
  38937. default: true
  38938. },
  38939. ]
  38940. ))
  38941. characterMakers.push(() => makeCharacter(
  38942. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38943. {
  38944. front: {
  38945. height: math.unit(3 + 3/12, "feet"),
  38946. name: "Front",
  38947. image: {
  38948. source: "./media/characters/penny/front.svg",
  38949. extra: 1406/1311,
  38950. bottom: 26/1432
  38951. }
  38952. },
  38953. },
  38954. [
  38955. {
  38956. name: "Normal",
  38957. height: math.unit(3 + 3/12, "feet"),
  38958. default: true
  38959. },
  38960. ]
  38961. ))
  38962. characterMakers.push(() => makeCharacter(
  38963. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38964. {
  38965. front: {
  38966. height: math.unit(4 + 11/12, "feet"),
  38967. name: "Front",
  38968. image: {
  38969. source: "./media/characters/monty/front.svg",
  38970. extra: 1479/1209,
  38971. bottom: 0/1479
  38972. }
  38973. },
  38974. },
  38975. [
  38976. {
  38977. name: "Normal",
  38978. height: math.unit(4 + 11/12, "feet"),
  38979. default: true
  38980. },
  38981. ]
  38982. ))
  38983. characterMakers.push(() => makeCharacter(
  38984. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38985. {
  38986. front: {
  38987. height: math.unit(8 + 4/12, "feet"),
  38988. name: "Front",
  38989. image: {
  38990. source: "./media/characters/sterling/front.svg",
  38991. extra: 1420/1236,
  38992. bottom: 27/1447
  38993. }
  38994. },
  38995. },
  38996. [
  38997. {
  38998. name: "Normal",
  38999. height: math.unit(8 + 4/12, "feet"),
  39000. default: true
  39001. },
  39002. ]
  39003. ))
  39004. characterMakers.push(() => makeCharacter(
  39005. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39006. {
  39007. front: {
  39008. height: math.unit(15, "feet"),
  39009. name: "Front",
  39010. image: {
  39011. source: "./media/characters/marble/front.svg",
  39012. extra: 973/937,
  39013. bottom: 32/1005
  39014. }
  39015. },
  39016. },
  39017. [
  39018. {
  39019. name: "Normal",
  39020. height: math.unit(15, "feet"),
  39021. default: true
  39022. },
  39023. ]
  39024. ))
  39025. characterMakers.push(() => makeCharacter(
  39026. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39027. {
  39028. front: {
  39029. height: math.unit(3, "inches"),
  39030. name: "Front",
  39031. image: {
  39032. source: "./media/characters/powder/front.svg",
  39033. extra: 1504/1334,
  39034. bottom: 518/2022
  39035. }
  39036. },
  39037. },
  39038. [
  39039. {
  39040. name: "Normal",
  39041. height: math.unit(3, "inches"),
  39042. default: true
  39043. },
  39044. ]
  39045. ))
  39046. characterMakers.push(() => makeCharacter(
  39047. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39048. {
  39049. front: {
  39050. height: math.unit(4 + 5/12, "feet"),
  39051. name: "Front",
  39052. image: {
  39053. source: "./media/characters/joey-raccoon/front.svg",
  39054. extra: 1273/1197,
  39055. bottom: 0/1273
  39056. }
  39057. },
  39058. },
  39059. [
  39060. {
  39061. name: "Normal",
  39062. height: math.unit(4 + 5/12, "feet"),
  39063. default: true
  39064. },
  39065. ]
  39066. ))
  39067. characterMakers.push(() => makeCharacter(
  39068. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39069. {
  39070. front: {
  39071. height: math.unit(8 + 4/12, "feet"),
  39072. name: "Front",
  39073. image: {
  39074. source: "./media/characters/vick/front.svg",
  39075. extra: 2187/2118,
  39076. bottom: 47/2234
  39077. }
  39078. },
  39079. },
  39080. [
  39081. {
  39082. name: "Normal",
  39083. height: math.unit(8 + 4/12, "feet"),
  39084. default: true
  39085. },
  39086. ]
  39087. ))
  39088. characterMakers.push(() => makeCharacter(
  39089. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39090. {
  39091. front: {
  39092. height: math.unit(5 + 5/12, "feet"),
  39093. name: "Front",
  39094. image: {
  39095. source: "./media/characters/mitsy/front.svg",
  39096. extra: 1842/1695,
  39097. bottom: 0/1842
  39098. }
  39099. },
  39100. },
  39101. [
  39102. {
  39103. name: "Normal",
  39104. height: math.unit(5 + 5/12, "feet"),
  39105. default: true
  39106. },
  39107. ]
  39108. ))
  39109. characterMakers.push(() => makeCharacter(
  39110. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39111. {
  39112. front: {
  39113. height: math.unit(6 + 3/12, "feet"),
  39114. name: "Front",
  39115. image: {
  39116. source: "./media/characters/silvy/front.svg",
  39117. extra: 1995/1836,
  39118. bottom: 225/2220
  39119. }
  39120. },
  39121. },
  39122. [
  39123. {
  39124. name: "Normal",
  39125. height: math.unit(6 + 3/12, "feet"),
  39126. default: true
  39127. },
  39128. ]
  39129. ))
  39130. characterMakers.push(() => makeCharacter(
  39131. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39132. {
  39133. front: {
  39134. height: math.unit(3 + 8/12, "feet"),
  39135. name: "Front",
  39136. image: {
  39137. source: "./media/characters/rodney/front.svg",
  39138. extra: 1956/1747,
  39139. bottom: 31/1987
  39140. }
  39141. },
  39142. frontDressed: {
  39143. height: math.unit(2.9, "feet"),
  39144. name: "Front (Dressed)",
  39145. image: {
  39146. source: "./media/characters/rodney/front-dressed.svg",
  39147. extra: 1382/1241,
  39148. bottom: 385/1767
  39149. }
  39150. },
  39151. },
  39152. [
  39153. {
  39154. name: "Normal",
  39155. height: math.unit(3 + 8/12, "feet"),
  39156. default: true
  39157. },
  39158. ]
  39159. ))
  39160. characterMakers.push(() => makeCharacter(
  39161. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39162. {
  39163. front: {
  39164. height: math.unit(5 + 9/12, "feet"),
  39165. weight: math.unit(194, "lbs"),
  39166. name: "Front",
  39167. image: {
  39168. source: "./media/characters/zakail-sudekai/front.svg",
  39169. extra: 2696/2533,
  39170. bottom: 248/2944
  39171. }
  39172. },
  39173. maw: {
  39174. height: math.unit(1.35, "feet"),
  39175. name: "Maw",
  39176. image: {
  39177. source: "./media/characters/zakail-sudekai/maw.svg"
  39178. }
  39179. },
  39180. },
  39181. [
  39182. {
  39183. name: "Normal",
  39184. height: math.unit(5 + 9/12, "feet"),
  39185. default: true
  39186. },
  39187. ]
  39188. ))
  39189. characterMakers.push(() => makeCharacter(
  39190. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39191. {
  39192. front: {
  39193. height: math.unit(8 + 4/12, "feet"),
  39194. weight: math.unit(1200, "lb"),
  39195. name: "Front",
  39196. image: {
  39197. source: "./media/characters/eleanor/front.svg",
  39198. extra: 1226/1192,
  39199. bottom: 52/1278
  39200. }
  39201. },
  39202. back: {
  39203. height: math.unit(8 + 4/12, "feet"),
  39204. weight: math.unit(1200, "lb"),
  39205. name: "Back",
  39206. image: {
  39207. source: "./media/characters/eleanor/back.svg",
  39208. extra: 1242/1184,
  39209. bottom: 60/1302
  39210. }
  39211. },
  39212. head: {
  39213. height: math.unit(2.62, "feet"),
  39214. name: "Head",
  39215. image: {
  39216. source: "./media/characters/eleanor/head.svg"
  39217. }
  39218. },
  39219. },
  39220. [
  39221. {
  39222. name: "Normal",
  39223. height: math.unit(8 + 4/12, "feet"),
  39224. default: true
  39225. },
  39226. ]
  39227. ))
  39228. characterMakers.push(() => makeCharacter(
  39229. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39230. {
  39231. front: {
  39232. height: math.unit(8 + 4/12, "feet"),
  39233. weight: math.unit(750, "lb"),
  39234. name: "Front",
  39235. image: {
  39236. source: "./media/characters/tanya/front.svg",
  39237. extra: 1749/1615,
  39238. bottom: 33/1782
  39239. }
  39240. },
  39241. },
  39242. [
  39243. {
  39244. name: "Normal",
  39245. height: math.unit(8 + 4/12, "feet"),
  39246. default: true
  39247. },
  39248. ]
  39249. ))
  39250. characterMakers.push(() => makeCharacter(
  39251. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39252. {
  39253. front: {
  39254. height: math.unit(5, "feet"),
  39255. weight: math.unit(225, "lb"),
  39256. name: "Front",
  39257. image: {
  39258. source: "./media/characters/cindy/front.svg",
  39259. extra: 1320/1250,
  39260. bottom: 42/1362
  39261. }
  39262. },
  39263. frontDressed: {
  39264. height: math.unit(5, "feet"),
  39265. weight: math.unit(225, "lb"),
  39266. name: "Front (Dressed)",
  39267. image: {
  39268. source: "./media/characters/cindy/front-dressed.svg",
  39269. extra: 1320/1250,
  39270. bottom: 42/1362
  39271. }
  39272. },
  39273. back: {
  39274. height: math.unit(5, "feet"),
  39275. weight: math.unit(225, "lb"),
  39276. name: "Back",
  39277. image: {
  39278. source: "./media/characters/cindy/back.svg",
  39279. extra: 1384/1346,
  39280. bottom: 14/1398
  39281. }
  39282. },
  39283. },
  39284. [
  39285. {
  39286. name: "Normal",
  39287. height: math.unit(5, "feet"),
  39288. default: true
  39289. },
  39290. ]
  39291. ))
  39292. characterMakers.push(() => makeCharacter(
  39293. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39294. {
  39295. front: {
  39296. height: math.unit(6 + 9/12, "feet"),
  39297. weight: math.unit(440, "lb"),
  39298. name: "Front",
  39299. image: {
  39300. source: "./media/characters/wilbur-owen/front.svg",
  39301. extra: 1575/1448,
  39302. bottom: 72/1647
  39303. }
  39304. },
  39305. back: {
  39306. height: math.unit(6 + 9/12, "feet"),
  39307. weight: math.unit(440, "lb"),
  39308. name: "Back",
  39309. image: {
  39310. source: "./media/characters/wilbur-owen/back.svg",
  39311. extra: 1578/1445,
  39312. bottom: 36/1614
  39313. }
  39314. },
  39315. },
  39316. [
  39317. {
  39318. name: "Normal",
  39319. height: math.unit(6 + 9/12, "feet"),
  39320. default: true
  39321. },
  39322. ]
  39323. ))
  39324. characterMakers.push(() => makeCharacter(
  39325. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39326. {
  39327. front: {
  39328. height: math.unit(6 + 5/12, "feet"),
  39329. weight: math.unit(650, "lb"),
  39330. name: "Front",
  39331. image: {
  39332. source: "./media/characters/keegan/front.svg",
  39333. extra: 2387/2198,
  39334. bottom: 33/2420
  39335. }
  39336. },
  39337. side: {
  39338. height: math.unit(6 + 5/12, "feet"),
  39339. weight: math.unit(650, "lb"),
  39340. name: "Side",
  39341. image: {
  39342. source: "./media/characters/keegan/side.svg",
  39343. extra: 2390/2202,
  39344. bottom: 47/2437
  39345. }
  39346. },
  39347. back: {
  39348. height: math.unit(6 + 5/12, "feet"),
  39349. weight: math.unit(650, "lb"),
  39350. name: "Back",
  39351. image: {
  39352. source: "./media/characters/keegan/back.svg",
  39353. extra: 2418/2268,
  39354. bottom: 15/2433
  39355. }
  39356. },
  39357. frontSfw: {
  39358. height: math.unit(6 + 5/12, "feet"),
  39359. weight: math.unit(650, "lb"),
  39360. name: "Front (SFW)",
  39361. image: {
  39362. source: "./media/characters/keegan/front-sfw.svg",
  39363. extra: 2387/2198,
  39364. bottom: 33/2420
  39365. }
  39366. },
  39367. beans: {
  39368. height: math.unit(1.85, "feet"),
  39369. name: "Beans",
  39370. image: {
  39371. source: "./media/characters/keegan/beans.svg"
  39372. }
  39373. },
  39374. },
  39375. [
  39376. {
  39377. name: "Normal",
  39378. height: math.unit(6 + 5/12, "feet"),
  39379. default: true
  39380. },
  39381. ]
  39382. ))
  39383. characterMakers.push(() => makeCharacter(
  39384. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39385. {
  39386. front: {
  39387. height: math.unit(9, "feet"),
  39388. name: "Front",
  39389. image: {
  39390. source: "./media/characters/colton/front.svg",
  39391. extra: 1589/1326,
  39392. bottom: 139/1728
  39393. }
  39394. },
  39395. },
  39396. [
  39397. {
  39398. name: "Normal",
  39399. height: math.unit(9, "feet"),
  39400. default: true
  39401. },
  39402. ]
  39403. ))
  39404. characterMakers.push(() => makeCharacter(
  39405. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39406. {
  39407. front: {
  39408. height: math.unit(2 + 9/12, "feet"),
  39409. name: "Front",
  39410. image: {
  39411. source: "./media/characters/bora/front.svg",
  39412. extra: 1265/1250,
  39413. bottom: 24/1289
  39414. }
  39415. },
  39416. },
  39417. [
  39418. {
  39419. name: "Normal",
  39420. height: math.unit(2 + 9/12, "feet"),
  39421. default: true
  39422. },
  39423. ]
  39424. ))
  39425. characterMakers.push(() => makeCharacter(
  39426. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39427. {
  39428. front: {
  39429. height: math.unit(8, "feet"),
  39430. name: "Front",
  39431. image: {
  39432. source: "./media/characters/myu-myu/front.svg",
  39433. extra: 1949/1857,
  39434. bottom: 90/2039
  39435. }
  39436. },
  39437. },
  39438. [
  39439. {
  39440. name: "Normal",
  39441. height: math.unit(8, "feet"),
  39442. default: true
  39443. },
  39444. {
  39445. name: "Big",
  39446. height: math.unit(15, "feet")
  39447. },
  39448. {
  39449. name: "BIG",
  39450. height: math.unit(25, "feet")
  39451. },
  39452. ]
  39453. ))
  39454. characterMakers.push(() => makeCharacter(
  39455. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39456. {
  39457. side: {
  39458. height: math.unit(7 + 5/12, "feet"),
  39459. weight: math.unit(2800, "lb"),
  39460. name: "Side",
  39461. image: {
  39462. source: "./media/characters/haloren/side.svg",
  39463. extra: 1793/409,
  39464. bottom: 59/1852
  39465. }
  39466. },
  39467. frontPaw: {
  39468. height: math.unit(2.36, "feet"),
  39469. name: "Front paw",
  39470. image: {
  39471. source: "./media/characters/haloren/front-paw.svg"
  39472. }
  39473. },
  39474. hindPaw: {
  39475. height: math.unit(3.18, "feet"),
  39476. name: "Hind paw",
  39477. image: {
  39478. source: "./media/characters/haloren/hind-paw.svg"
  39479. }
  39480. },
  39481. maw: {
  39482. height: math.unit(5.05, "feet"),
  39483. name: "Maw",
  39484. image: {
  39485. source: "./media/characters/haloren/maw.svg"
  39486. }
  39487. },
  39488. dick: {
  39489. height: math.unit(2.90, "feet"),
  39490. name: "Dick",
  39491. image: {
  39492. source: "./media/characters/haloren/dick.svg"
  39493. }
  39494. },
  39495. },
  39496. [
  39497. {
  39498. name: "Normal",
  39499. height: math.unit(7 + 5/12, "feet"),
  39500. default: true
  39501. },
  39502. {
  39503. name: "Enhanced",
  39504. height: math.unit(14 + 3/12, "feet")
  39505. },
  39506. ]
  39507. ))
  39508. characterMakers.push(() => makeCharacter(
  39509. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39510. {
  39511. front: {
  39512. height: math.unit(171, "cm"),
  39513. name: "Front",
  39514. image: {
  39515. source: "./media/characters/kimmy/front.svg",
  39516. extra: 1491/1435,
  39517. bottom: 53/1544
  39518. }
  39519. },
  39520. },
  39521. [
  39522. {
  39523. name: "Small",
  39524. height: math.unit(9, "cm")
  39525. },
  39526. {
  39527. name: "Normal",
  39528. height: math.unit(171, "cm"),
  39529. default: true
  39530. },
  39531. ]
  39532. ))
  39533. characterMakers.push(() => makeCharacter(
  39534. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39535. {
  39536. front: {
  39537. height: math.unit(8, "feet"),
  39538. weight: math.unit(300, "lb"),
  39539. name: "Front",
  39540. image: {
  39541. source: "./media/characters/galeboomer/front.svg",
  39542. extra: 4651/4415,
  39543. bottom: 162/4813
  39544. }
  39545. },
  39546. back: {
  39547. height: math.unit(8, "feet"),
  39548. weight: math.unit(300, "lb"),
  39549. name: "Back",
  39550. image: {
  39551. source: "./media/characters/galeboomer/back.svg",
  39552. extra: 4544/4314,
  39553. bottom: 16/4560
  39554. }
  39555. },
  39556. frontAlt: {
  39557. height: math.unit(8, "feet"),
  39558. weight: math.unit(300, "lb"),
  39559. name: "Front (Alt)",
  39560. image: {
  39561. source: "./media/characters/galeboomer/front-alt.svg",
  39562. extra: 4458/4228,
  39563. bottom: 68/4526
  39564. }
  39565. },
  39566. maw: {
  39567. height: math.unit(1.2, "feet"),
  39568. name: "Maw",
  39569. image: {
  39570. source: "./media/characters/galeboomer/maw.svg"
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Normal",
  39577. height: math.unit(8, "feet"),
  39578. default: true
  39579. },
  39580. ]
  39581. ))
  39582. characterMakers.push(() => makeCharacter(
  39583. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39584. {
  39585. front: {
  39586. height: math.unit(5 + 9/12, "feet"),
  39587. weight: math.unit(120, "lb"),
  39588. name: "Front",
  39589. image: {
  39590. source: "./media/characters/chyr/front.svg",
  39591. extra: 1323/1254,
  39592. bottom: 63/1386
  39593. }
  39594. },
  39595. back: {
  39596. height: math.unit(5 + 9/12, "feet"),
  39597. weight: math.unit(120, "lb"),
  39598. name: "Back",
  39599. image: {
  39600. source: "./media/characters/chyr/back.svg",
  39601. extra: 1323/1252,
  39602. bottom: 48/1371
  39603. }
  39604. },
  39605. },
  39606. [
  39607. {
  39608. name: "Normal",
  39609. height: math.unit(5 + 9/12, "feet"),
  39610. default: true
  39611. },
  39612. ]
  39613. ))
  39614. characterMakers.push(() => makeCharacter(
  39615. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39616. {
  39617. front: {
  39618. height: math.unit(7, "feet"),
  39619. weight: math.unit(310, "lb"),
  39620. name: "Front",
  39621. image: {
  39622. source: "./media/characters/solarus/front.svg",
  39623. extra: 2415/2021,
  39624. bottom: 103/2518
  39625. }
  39626. },
  39627. back: {
  39628. height: math.unit(7, "feet"),
  39629. weight: math.unit(310, "lb"),
  39630. name: "Back",
  39631. image: {
  39632. source: "./media/characters/solarus/back.svg",
  39633. extra: 2463/2089,
  39634. bottom: 79/2542
  39635. }
  39636. },
  39637. },
  39638. [
  39639. {
  39640. name: "Normal",
  39641. height: math.unit(7, "feet"),
  39642. default: true
  39643. },
  39644. ]
  39645. ))
  39646. characterMakers.push(() => makeCharacter(
  39647. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39648. {
  39649. front: {
  39650. height: math.unit(16, "feet"),
  39651. name: "Front",
  39652. image: {
  39653. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39654. extra: 1844/1780,
  39655. bottom: 58/1902
  39656. }
  39657. },
  39658. winterCoat: {
  39659. height: math.unit(16, "feet"),
  39660. name: "Winter Coat",
  39661. image: {
  39662. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39663. extra: 1807/1775,
  39664. bottom: 69/1876
  39665. }
  39666. },
  39667. },
  39668. [
  39669. {
  39670. name: "Normal",
  39671. height: math.unit(16, "feet"),
  39672. default: true
  39673. },
  39674. {
  39675. name: "Chicago Size",
  39676. height: math.unit(560, "feet")
  39677. },
  39678. ]
  39679. ))
  39680. characterMakers.push(() => makeCharacter(
  39681. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39682. {
  39683. front: {
  39684. height: math.unit(11 + 6/12, "feet"),
  39685. weight: math.unit(1366, "lb"),
  39686. name: "Front",
  39687. image: {
  39688. source: "./media/characters/lexor/front.svg",
  39689. extra: 1560/1481,
  39690. bottom: 211/1771
  39691. }
  39692. },
  39693. back: {
  39694. height: math.unit(11 + 6/12, "feet"),
  39695. weight: math.unit(1366, "lb"),
  39696. name: "Back",
  39697. image: {
  39698. source: "./media/characters/lexor/back.svg",
  39699. extra: 1614/1533,
  39700. bottom: 76/1690
  39701. }
  39702. },
  39703. maw: {
  39704. height: math.unit(3, "feet"),
  39705. name: "Maw",
  39706. image: {
  39707. source: "./media/characters/lexor/maw.svg"
  39708. }
  39709. },
  39710. dick: {
  39711. height: math.unit(2.59, "feet"),
  39712. name: "Dick",
  39713. image: {
  39714. source: "./media/characters/lexor/dick.svg"
  39715. }
  39716. },
  39717. },
  39718. [
  39719. {
  39720. name: "Normal",
  39721. height: math.unit(11 + 6/12, "feet"),
  39722. default: true
  39723. },
  39724. ]
  39725. ))
  39726. characterMakers.push(() => makeCharacter(
  39727. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39728. {
  39729. front: {
  39730. height: math.unit(5 + 8/12, "feet"),
  39731. name: "Front",
  39732. image: {
  39733. source: "./media/characters/magnum/front.svg",
  39734. extra: 942/855,
  39735. bottom: 26/968
  39736. }
  39737. },
  39738. },
  39739. [
  39740. {
  39741. name: "Normal",
  39742. height: math.unit(5 + 8/12, "feet"),
  39743. default: true
  39744. },
  39745. ]
  39746. ))
  39747. characterMakers.push(() => makeCharacter(
  39748. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39749. {
  39750. front: {
  39751. height: math.unit(18 + 4/12, "feet"),
  39752. weight: math.unit(1500, "kg"),
  39753. name: "Front",
  39754. image: {
  39755. source: "./media/characters/solas-sharpsman/front.svg",
  39756. extra: 1698/1589,
  39757. bottom: 0/1698
  39758. }
  39759. },
  39760. },
  39761. [
  39762. {
  39763. name: "Normal",
  39764. height: math.unit(18 + 4/12, "feet"),
  39765. default: true
  39766. },
  39767. ]
  39768. ))
  39769. characterMakers.push(() => makeCharacter(
  39770. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39771. {
  39772. front: {
  39773. height: math.unit(5 + 5/12, "feet"),
  39774. weight: math.unit(180, "lb"),
  39775. name: "Front",
  39776. image: {
  39777. source: "./media/characters/october/front.svg",
  39778. extra: 1800/1650,
  39779. bottom: 0/1800
  39780. }
  39781. },
  39782. frontNsfw: {
  39783. height: math.unit(5 + 5/12, "feet"),
  39784. weight: math.unit(180, "lb"),
  39785. name: "Front (NSFW)",
  39786. image: {
  39787. source: "./media/characters/october/front-nsfw.svg",
  39788. extra: 1392/1307,
  39789. bottom: 42/1434
  39790. }
  39791. },
  39792. },
  39793. [
  39794. {
  39795. name: "Normal",
  39796. height: math.unit(5 + 5/12, "feet"),
  39797. default: true
  39798. },
  39799. ]
  39800. ))
  39801. characterMakers.push(() => makeCharacter(
  39802. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39803. {
  39804. front: {
  39805. height: math.unit(8 + 6/12, "feet"),
  39806. name: "Front",
  39807. image: {
  39808. source: "./media/characters/essynkardi/front.svg",
  39809. extra: 1541/1457,
  39810. bottom: 47/1588
  39811. }
  39812. },
  39813. },
  39814. [
  39815. {
  39816. name: "Normal",
  39817. height: math.unit(8 + 6/12, "feet"),
  39818. default: true
  39819. },
  39820. ]
  39821. ))
  39822. characterMakers.push(() => makeCharacter(
  39823. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39824. {
  39825. front: {
  39826. height: math.unit(6 + 6/12, "feet"),
  39827. weight: math.unit(7, "lb"),
  39828. name: "Front",
  39829. image: {
  39830. source: "./media/characters/icky/front.svg",
  39831. extra: 813/782,
  39832. bottom: 66/879
  39833. }
  39834. },
  39835. back: {
  39836. height: math.unit(6 + 6/12, "feet"),
  39837. weight: math.unit(7, "lb"),
  39838. name: "Back",
  39839. image: {
  39840. source: "./media/characters/icky/back.svg",
  39841. extra: 754/735,
  39842. bottom: 56/810
  39843. }
  39844. },
  39845. },
  39846. [
  39847. {
  39848. name: "Normal",
  39849. height: math.unit(6 + 6/12, "feet"),
  39850. default: true
  39851. },
  39852. ]
  39853. ))
  39854. characterMakers.push(() => makeCharacter(
  39855. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39856. {
  39857. front: {
  39858. height: math.unit(15, "feet"),
  39859. name: "Front",
  39860. image: {
  39861. source: "./media/characters/rojas/front.svg",
  39862. extra: 1462/1408,
  39863. bottom: 95/1557
  39864. }
  39865. },
  39866. back: {
  39867. height: math.unit(15, "feet"),
  39868. name: "Back",
  39869. image: {
  39870. source: "./media/characters/rojas/back.svg",
  39871. extra: 1023/954,
  39872. bottom: 28/1051
  39873. }
  39874. },
  39875. },
  39876. [
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(15, "feet"),
  39880. default: true
  39881. },
  39882. ]
  39883. ))
  39884. characterMakers.push(() => makeCharacter(
  39885. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39886. {
  39887. frontHuman: {
  39888. height: math.unit(5 + 7/12, "feet"),
  39889. name: "Front (Human)",
  39890. image: {
  39891. source: "./media/characters/alek-dryagan/front-human.svg",
  39892. extra: 1687/1667,
  39893. bottom: 69/1756
  39894. }
  39895. },
  39896. backHuman: {
  39897. height: math.unit(5 + 7/12, "feet"),
  39898. name: "Back (Human)",
  39899. image: {
  39900. source: "./media/characters/alek-dryagan/back-human.svg",
  39901. extra: 1670/1649,
  39902. bottom: 65/1735
  39903. }
  39904. },
  39905. frontDemi: {
  39906. height: math.unit(65, "feet"),
  39907. name: "Front (Demi)",
  39908. image: {
  39909. source: "./media/characters/alek-dryagan/front-demi.svg",
  39910. extra: 1669/1642,
  39911. bottom: 49/1718
  39912. }
  39913. },
  39914. backDemi: {
  39915. height: math.unit(65, "feet"),
  39916. name: "Back (Demi)",
  39917. image: {
  39918. source: "./media/characters/alek-dryagan/back-demi.svg",
  39919. extra: 1658/1637,
  39920. bottom: 40/1698
  39921. }
  39922. },
  39923. mawHuman: {
  39924. height: math.unit(0.3, "feet"),
  39925. name: "Maw (Human)",
  39926. image: {
  39927. source: "./media/characters/alek-dryagan/maw-human.svg"
  39928. }
  39929. },
  39930. mawDemi: {
  39931. height: math.unit(3.8, "feet"),
  39932. name: "Maw (Demi)",
  39933. image: {
  39934. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39935. }
  39936. },
  39937. },
  39938. [
  39939. {
  39940. name: "Normal",
  39941. height: math.unit(5 + 7/12, "feet"),
  39942. default: true
  39943. },
  39944. ]
  39945. ))
  39946. characterMakers.push(() => makeCharacter(
  39947. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39948. {
  39949. frontHuman: {
  39950. height: math.unit(5 + 2/12, "feet"),
  39951. name: "Front (Human)",
  39952. image: {
  39953. source: "./media/characters/gen/front-human.svg",
  39954. extra: 1627/1538,
  39955. bottom: 71/1698
  39956. }
  39957. },
  39958. backHuman: {
  39959. height: math.unit(5 + 2/12, "feet"),
  39960. name: "Back (Human)",
  39961. image: {
  39962. source: "./media/characters/gen/back-human.svg",
  39963. extra: 1638/1548,
  39964. bottom: 69/1707
  39965. }
  39966. },
  39967. frontDemi: {
  39968. height: math.unit(5 + 2/12, "feet"),
  39969. name: "Front (Demi)",
  39970. image: {
  39971. source: "./media/characters/gen/front-demi.svg",
  39972. extra: 1627/1538,
  39973. bottom: 71/1698
  39974. }
  39975. },
  39976. backDemi: {
  39977. height: math.unit(5 + 2/12, "feet"),
  39978. name: "Back (Demi)",
  39979. image: {
  39980. source: "./media/characters/gen/back-demi.svg",
  39981. extra: 1638/1548,
  39982. bottom: 69/1707
  39983. }
  39984. },
  39985. },
  39986. [
  39987. {
  39988. name: "Normal",
  39989. height: math.unit(5 + 2/12, "feet"),
  39990. default: true
  39991. },
  39992. ]
  39993. ))
  39994. characterMakers.push(() => makeCharacter(
  39995. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39996. {
  39997. frontImp: {
  39998. height: math.unit(1 + 11/12, "feet"),
  39999. name: "Front (Imp)",
  40000. image: {
  40001. source: "./media/characters/max-kobold/front-imp.svg",
  40002. extra: 1238/1134,
  40003. bottom: 81/1319
  40004. }
  40005. },
  40006. backImp: {
  40007. height: math.unit(1 + 11/12, "feet"),
  40008. name: "Back (Imp)",
  40009. image: {
  40010. source: "./media/characters/max-kobold/back-imp.svg",
  40011. extra: 1334/1175,
  40012. bottom: 34/1368
  40013. }
  40014. },
  40015. frontDemi: {
  40016. height: math.unit(5 + 9/12, "feet"),
  40017. name: "Front (Demi)",
  40018. image: {
  40019. source: "./media/characters/max-kobold/front-demi.svg",
  40020. extra: 1715/1685,
  40021. bottom: 54/1769
  40022. }
  40023. },
  40024. backDemi: {
  40025. height: math.unit(5 + 9/12, "feet"),
  40026. name: "Back (Demi)",
  40027. image: {
  40028. source: "./media/characters/max-kobold/back-demi.svg",
  40029. extra: 1752/1729,
  40030. bottom: 41/1793
  40031. }
  40032. },
  40033. handImp: {
  40034. height: math.unit(0.45, "feet"),
  40035. name: "Hand (Imp)",
  40036. image: {
  40037. source: "./media/characters/max-kobold/hand.svg"
  40038. }
  40039. },
  40040. pawImp: {
  40041. height: math.unit(0.46, "feet"),
  40042. name: "Paw (Imp)",
  40043. image: {
  40044. source: "./media/characters/max-kobold/paw.svg"
  40045. }
  40046. },
  40047. handDemi: {
  40048. height: math.unit(0.80, "feet"),
  40049. name: "Hand (Demi)",
  40050. image: {
  40051. source: "./media/characters/max-kobold/hand.svg"
  40052. }
  40053. },
  40054. pawDemi: {
  40055. height: math.unit(1.1, "feet"),
  40056. name: "Paw (Demi)",
  40057. image: {
  40058. source: "./media/characters/max-kobold/paw.svg"
  40059. }
  40060. },
  40061. headImp: {
  40062. height: math.unit(1.33, "feet"),
  40063. name: "Head (Imp)",
  40064. image: {
  40065. source: "./media/characters/max-kobold/head-imp.svg"
  40066. }
  40067. },
  40068. mawImp: {
  40069. height: math.unit(0.75, "feet"),
  40070. name: "Maw (Imp)",
  40071. image: {
  40072. source: "./media/characters/max-kobold/maw-imp.svg"
  40073. }
  40074. },
  40075. mawDemi: {
  40076. height: math.unit(0.42, "feet"),
  40077. name: "Maw (Demi)",
  40078. image: {
  40079. source: "./media/characters/max-kobold/maw-demi.svg"
  40080. }
  40081. },
  40082. },
  40083. [
  40084. {
  40085. name: "Normal",
  40086. height: math.unit(1 + 11/12, "feet"),
  40087. default: true
  40088. },
  40089. ]
  40090. ))
  40091. characterMakers.push(() => makeCharacter(
  40092. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40093. {
  40094. front: {
  40095. height: math.unit(7 + 5/12, "feet"),
  40096. name: "Front",
  40097. image: {
  40098. source: "./media/characters/carbon/front.svg",
  40099. extra: 1754/1689,
  40100. bottom: 65/1819
  40101. }
  40102. },
  40103. back: {
  40104. height: math.unit(7 + 5/12, "feet"),
  40105. name: "Back",
  40106. image: {
  40107. source: "./media/characters/carbon/back.svg",
  40108. extra: 1762/1695,
  40109. bottom: 24/1786
  40110. }
  40111. },
  40112. frontGigantamax: {
  40113. height: math.unit(150, "feet"),
  40114. name: "Front (Gigantamax)",
  40115. image: {
  40116. source: "./media/characters/carbon/front-gigantamax.svg",
  40117. extra: 1826/1669,
  40118. bottom: 59/1885
  40119. }
  40120. },
  40121. backGigantamax: {
  40122. height: math.unit(150, "feet"),
  40123. name: "Back (Gigantamax)",
  40124. image: {
  40125. source: "./media/characters/carbon/back-gigantamax.svg",
  40126. extra: 1796/1653,
  40127. bottom: 53/1849
  40128. }
  40129. },
  40130. maw: {
  40131. height: math.unit(0.48, "feet"),
  40132. name: "Maw",
  40133. image: {
  40134. source: "./media/characters/carbon/maw.svg"
  40135. }
  40136. },
  40137. mawGigantamax: {
  40138. height: math.unit(7.5, "feet"),
  40139. name: "Maw (Gigantamax)",
  40140. image: {
  40141. source: "./media/characters/carbon/maw-gigantamax.svg"
  40142. }
  40143. },
  40144. },
  40145. [
  40146. {
  40147. name: "Normal",
  40148. height: math.unit(7 + 5/12, "feet"),
  40149. default: true
  40150. },
  40151. ]
  40152. ))
  40153. characterMakers.push(() => makeCharacter(
  40154. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40155. {
  40156. front: {
  40157. height: math.unit(6, "feet"),
  40158. name: "Front",
  40159. image: {
  40160. source: "./media/characters/maverick/front.svg",
  40161. extra: 1672/1661,
  40162. bottom: 85/1757
  40163. }
  40164. },
  40165. back: {
  40166. height: math.unit(6, "feet"),
  40167. name: "Back",
  40168. image: {
  40169. source: "./media/characters/maverick/back.svg",
  40170. extra: 1642/1631,
  40171. bottom: 38/1680
  40172. }
  40173. },
  40174. },
  40175. [
  40176. {
  40177. name: "Normal",
  40178. height: math.unit(6, "feet"),
  40179. default: true
  40180. },
  40181. ]
  40182. ))
  40183. characterMakers.push(() => makeCharacter(
  40184. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40185. {
  40186. front: {
  40187. height: math.unit(15, "feet"),
  40188. weight: math.unit(615, "lb"),
  40189. name: "Front",
  40190. image: {
  40191. source: "./media/characters/grockle/front.svg",
  40192. extra: 1535/1427,
  40193. bottom: 56/1591
  40194. }
  40195. },
  40196. },
  40197. [
  40198. {
  40199. name: "Normal",
  40200. height: math.unit(15, "feet"),
  40201. default: true
  40202. },
  40203. {
  40204. name: "Large",
  40205. height: math.unit(150, "feet")
  40206. },
  40207. {
  40208. name: "Macro",
  40209. height: math.unit(1876, "feet")
  40210. },
  40211. {
  40212. name: "Mega Macro",
  40213. height: math.unit(121940, "feet")
  40214. },
  40215. {
  40216. name: "Giga Macro",
  40217. height: math.unit(750, "km")
  40218. },
  40219. {
  40220. name: "Tera Macro",
  40221. height: math.unit(750000, "km")
  40222. },
  40223. {
  40224. name: "Galactic",
  40225. height: math.unit(1.4e5, "km")
  40226. },
  40227. {
  40228. name: "Godlike",
  40229. height: math.unit(9.8e280, "galaxies")
  40230. },
  40231. ]
  40232. ))
  40233. characterMakers.push(() => makeCharacter(
  40234. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40235. {
  40236. front: {
  40237. height: math.unit(11, "meters"),
  40238. weight: math.unit(20, "tonnes"),
  40239. name: "Front",
  40240. image: {
  40241. source: "./media/characters/alistair/front.svg",
  40242. extra: 1265/1009,
  40243. bottom: 93/1358
  40244. }
  40245. },
  40246. },
  40247. [
  40248. {
  40249. name: "Normal",
  40250. height: math.unit(11, "meters"),
  40251. default: true
  40252. },
  40253. ]
  40254. ))
  40255. characterMakers.push(() => makeCharacter(
  40256. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40257. {
  40258. front: {
  40259. height: math.unit(5 + 8/12, "feet"),
  40260. name: "Front",
  40261. image: {
  40262. source: "./media/characters/haruka/front.svg",
  40263. extra: 2012/1952,
  40264. bottom: 0/2012
  40265. }
  40266. },
  40267. },
  40268. [
  40269. {
  40270. name: "Normal",
  40271. height: math.unit(5 + 8/12, "feet"),
  40272. default: true
  40273. },
  40274. ]
  40275. ))
  40276. characterMakers.push(() => makeCharacter(
  40277. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40278. {
  40279. back: {
  40280. height: math.unit(9, "feet"),
  40281. name: "Back",
  40282. image: {
  40283. source: "./media/characters/vivian-sylveon/back.svg",
  40284. extra: 1853/1714,
  40285. bottom: 0/1853
  40286. }
  40287. },
  40288. hyper: {
  40289. height: math.unit(5.58, "feet"),
  40290. name: "Hyper",
  40291. preyCapacity: math.unit(2.80616218797, "m^3"),
  40292. image: {
  40293. source: "./media/characters/vivian-sylveon/hyper.svg",
  40294. extra: 999/676,
  40295. bottom: 697/1696
  40296. },
  40297. },
  40298. paw: {
  40299. height: math.unit(1.8, "feet"),
  40300. name: "Paw",
  40301. image: {
  40302. source: "./media/characters/vivian-sylveon/paw.svg"
  40303. }
  40304. },
  40305. danger: {
  40306. height: math.unit(7.5, "feet"),
  40307. name: "DANGER",
  40308. image: {
  40309. source: "./media/characters/vivian-sylveon/danger.svg"
  40310. }
  40311. },
  40312. },
  40313. [
  40314. {
  40315. name: "Normal",
  40316. height: math.unit(9, "feet"),
  40317. default: true
  40318. },
  40319. {
  40320. name: "Macro",
  40321. height: math.unit(500, "feet")
  40322. },
  40323. {
  40324. name: "Megamacro",
  40325. height: math.unit(600, "miles")
  40326. },
  40327. {
  40328. name: "Gigamacro",
  40329. height: math.unit(30000, "miles")
  40330. },
  40331. ]
  40332. ))
  40333. characterMakers.push(() => makeCharacter(
  40334. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40335. {
  40336. anthro: {
  40337. height: math.unit(5 + 10/12, "feet"),
  40338. weight: math.unit(100, "lb"),
  40339. name: "Anthro",
  40340. image: {
  40341. source: "./media/characters/daiki/anthro.svg",
  40342. extra: 1115/1027,
  40343. bottom: 69/1184
  40344. }
  40345. },
  40346. feral: {
  40347. height: math.unit(200, "feet"),
  40348. name: "Feral",
  40349. image: {
  40350. source: "./media/characters/daiki/feral.svg",
  40351. extra: 1256/313,
  40352. bottom: 39/1295
  40353. }
  40354. },
  40355. feralHead: {
  40356. height: math.unit(171, "feet"),
  40357. name: "Feral Head",
  40358. image: {
  40359. source: "./media/characters/daiki/feral-head.svg"
  40360. }
  40361. },
  40362. manaDragon: {
  40363. height: math.unit(170, "meters"),
  40364. name: "Mana-dragon",
  40365. image: {
  40366. source: "./media/characters/daiki/mana-dragon.svg",
  40367. extra: 763/420,
  40368. bottom: 97/860
  40369. }
  40370. },
  40371. },
  40372. [
  40373. {
  40374. name: "Normal",
  40375. height: math.unit(5 + 10/12, "feet"),
  40376. default: true
  40377. },
  40378. ]
  40379. ))
  40380. characterMakers.push(() => makeCharacter(
  40381. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40382. {
  40383. fullyEquippedFront: {
  40384. height: math.unit(3 + 1/12, "feet"),
  40385. weight: math.unit(24, "lb"),
  40386. name: "Fully Equipped (Front)",
  40387. image: {
  40388. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40389. extra: 687/605,
  40390. bottom: 18/705
  40391. }
  40392. },
  40393. fullyEquippedBack: {
  40394. height: math.unit(3 + 1/12, "feet"),
  40395. weight: math.unit(24, "lb"),
  40396. name: "Fully Equipped (Back)",
  40397. image: {
  40398. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40399. extra: 689/590,
  40400. bottom: 18/707
  40401. }
  40402. },
  40403. dailyWear: {
  40404. height: math.unit(3 + 1/12, "feet"),
  40405. weight: math.unit(24, "lb"),
  40406. name: "Daily Wear",
  40407. image: {
  40408. source: "./media/characters/tea-spot/daily-wear.svg",
  40409. extra: 701/620,
  40410. bottom: 21/722
  40411. }
  40412. },
  40413. maidWork: {
  40414. height: math.unit(3 + 1/12, "feet"),
  40415. weight: math.unit(24, "lb"),
  40416. name: "Maid Work",
  40417. image: {
  40418. source: "./media/characters/tea-spot/maid-work.svg",
  40419. extra: 693/609,
  40420. bottom: 15/708
  40421. }
  40422. },
  40423. },
  40424. [
  40425. {
  40426. name: "Normal",
  40427. height: math.unit(3 + 1/12, "feet"),
  40428. default: true
  40429. },
  40430. ]
  40431. ))
  40432. characterMakers.push(() => makeCharacter(
  40433. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40434. {
  40435. front: {
  40436. height: math.unit(175, "cm"),
  40437. weight: math.unit(75, "kg"),
  40438. name: "Front",
  40439. image: {
  40440. source: "./media/characters/chee/front.svg",
  40441. extra: 1796/1740,
  40442. bottom: 40/1836
  40443. }
  40444. },
  40445. },
  40446. [
  40447. {
  40448. name: "Micro-Micro",
  40449. height: math.unit(1, "nm")
  40450. },
  40451. {
  40452. name: "Micro-erst",
  40453. height: math.unit(1, "micrometer")
  40454. },
  40455. {
  40456. name: "Micro-er",
  40457. height: math.unit(1, "cm")
  40458. },
  40459. {
  40460. name: "Normal",
  40461. height: math.unit(175, "cm"),
  40462. default: true
  40463. },
  40464. {
  40465. name: "Macro",
  40466. height: math.unit(100, "m")
  40467. },
  40468. {
  40469. name: "Macro-er",
  40470. height: math.unit(1, "km")
  40471. },
  40472. {
  40473. name: "Macro-erst",
  40474. height: math.unit(10, "km")
  40475. },
  40476. {
  40477. name: "Macro-Macro",
  40478. height: math.unit(100, "km")
  40479. },
  40480. ]
  40481. ))
  40482. characterMakers.push(() => makeCharacter(
  40483. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40484. {
  40485. front: {
  40486. height: math.unit(11 + 9/12, "feet"),
  40487. weight: math.unit(935, "lb"),
  40488. name: "Front",
  40489. image: {
  40490. source: "./media/characters/kingsley/front.svg",
  40491. extra: 1803/1674,
  40492. bottom: 127/1930
  40493. }
  40494. },
  40495. frontNude: {
  40496. height: math.unit(11 + 9/12, "feet"),
  40497. weight: math.unit(935, "lb"),
  40498. name: "Front (Nude)",
  40499. image: {
  40500. source: "./media/characters/kingsley/front-nude.svg",
  40501. extra: 1803/1674,
  40502. bottom: 127/1930
  40503. }
  40504. },
  40505. },
  40506. [
  40507. {
  40508. name: "Normal",
  40509. height: math.unit(11 + 9/12, "feet"),
  40510. default: true
  40511. },
  40512. ]
  40513. ))
  40514. characterMakers.push(() => makeCharacter(
  40515. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40516. {
  40517. side: {
  40518. height: math.unit(9, "feet"),
  40519. name: "Side",
  40520. image: {
  40521. source: "./media/characters/rymel/side.svg",
  40522. extra: 792/469,
  40523. bottom: 121/913
  40524. }
  40525. },
  40526. maw: {
  40527. height: math.unit(2.4, "meters"),
  40528. name: "Maw",
  40529. image: {
  40530. source: "./media/characters/rymel/maw.svg"
  40531. }
  40532. },
  40533. },
  40534. [
  40535. {
  40536. name: "House Drake",
  40537. height: math.unit(2, "feet")
  40538. },
  40539. {
  40540. name: "Reduced",
  40541. height: math.unit(4.5, "feet")
  40542. },
  40543. {
  40544. name: "Normal",
  40545. height: math.unit(9, "feet"),
  40546. default: true
  40547. },
  40548. ]
  40549. ))
  40550. characterMakers.push(() => makeCharacter(
  40551. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40552. {
  40553. front: {
  40554. height: math.unit(1.74, "meters"),
  40555. weight: math.unit(55, "kg"),
  40556. name: "Front",
  40557. image: {
  40558. source: "./media/characters/rubus/front.svg",
  40559. extra: 1894/1742,
  40560. bottom: 44/1938
  40561. }
  40562. },
  40563. },
  40564. [
  40565. {
  40566. name: "Normal",
  40567. height: math.unit(1.74, "meters"),
  40568. default: true
  40569. },
  40570. ]
  40571. ))
  40572. characterMakers.push(() => makeCharacter(
  40573. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40574. {
  40575. front: {
  40576. height: math.unit(5 + 2/12, "feet"),
  40577. weight: math.unit(112, "lb"),
  40578. name: "Front",
  40579. image: {
  40580. source: "./media/characters/cassie-kingston/front.svg",
  40581. extra: 1438/1390,
  40582. bottom: 47/1485
  40583. }
  40584. },
  40585. },
  40586. [
  40587. {
  40588. name: "Normal",
  40589. height: math.unit(5 + 2/12, "feet"),
  40590. default: true
  40591. },
  40592. {
  40593. name: "Macro",
  40594. height: math.unit(128, "feet")
  40595. },
  40596. {
  40597. name: "Megamacro",
  40598. height: math.unit(2.56, "miles")
  40599. },
  40600. ]
  40601. ))
  40602. characterMakers.push(() => makeCharacter(
  40603. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40604. {
  40605. front: {
  40606. height: math.unit(7, "feet"),
  40607. name: "Front",
  40608. image: {
  40609. source: "./media/characters/fox/front.svg",
  40610. extra: 1798/1703,
  40611. bottom: 55/1853
  40612. }
  40613. },
  40614. back: {
  40615. height: math.unit(7, "feet"),
  40616. name: "Back",
  40617. image: {
  40618. source: "./media/characters/fox/back.svg",
  40619. extra: 1748/1649,
  40620. bottom: 32/1780
  40621. }
  40622. },
  40623. head: {
  40624. height: math.unit(1.95, "feet"),
  40625. name: "Head",
  40626. image: {
  40627. source: "./media/characters/fox/head.svg"
  40628. }
  40629. },
  40630. dick: {
  40631. height: math.unit(1.33, "feet"),
  40632. name: "Dick",
  40633. image: {
  40634. source: "./media/characters/fox/dick.svg"
  40635. }
  40636. },
  40637. foot: {
  40638. height: math.unit(1, "feet"),
  40639. name: "Foot",
  40640. image: {
  40641. source: "./media/characters/fox/foot.svg"
  40642. }
  40643. },
  40644. paw: {
  40645. height: math.unit(0.92, "feet"),
  40646. name: "Paw",
  40647. image: {
  40648. source: "./media/characters/fox/paw.svg"
  40649. }
  40650. },
  40651. },
  40652. [
  40653. {
  40654. name: "Small",
  40655. height: math.unit(3, "inches")
  40656. },
  40657. {
  40658. name: "\"Realistic\"",
  40659. height: math.unit(7, "feet")
  40660. },
  40661. {
  40662. name: "Normal",
  40663. height: math.unit(150, "feet"),
  40664. default: true
  40665. },
  40666. {
  40667. name: "BIG",
  40668. height: math.unit(1200, "feet")
  40669. },
  40670. {
  40671. name: "👀",
  40672. height: math.unit(5, "miles")
  40673. },
  40674. {
  40675. name: "👀👀👀",
  40676. height: math.unit(64, "miles")
  40677. },
  40678. ]
  40679. ))
  40680. characterMakers.push(() => makeCharacter(
  40681. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40682. {
  40683. front: {
  40684. height: math.unit(625, "feet"),
  40685. name: "Front",
  40686. image: {
  40687. source: "./media/characters/asonja-rossa/front.svg",
  40688. extra: 1833/1686,
  40689. bottom: 24/1857
  40690. }
  40691. },
  40692. back: {
  40693. height: math.unit(625, "feet"),
  40694. name: "Back",
  40695. image: {
  40696. source: "./media/characters/asonja-rossa/back.svg",
  40697. extra: 1852/1753,
  40698. bottom: 26/1878
  40699. }
  40700. },
  40701. },
  40702. [
  40703. {
  40704. name: "Macro",
  40705. height: math.unit(625, "feet"),
  40706. default: true
  40707. },
  40708. ]
  40709. ))
  40710. characterMakers.push(() => makeCharacter(
  40711. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40712. {
  40713. side: {
  40714. height: math.unit(8, "feet"),
  40715. name: "Side",
  40716. image: {
  40717. source: "./media/characters/rezukii/side.svg",
  40718. extra: 979/542,
  40719. bottom: 87/1066
  40720. }
  40721. },
  40722. sitting: {
  40723. height: math.unit(14.6, "feet"),
  40724. name: "Sitting",
  40725. image: {
  40726. source: "./media/characters/rezukii/sitting.svg",
  40727. extra: 1023/813,
  40728. bottom: 45/1068
  40729. }
  40730. },
  40731. },
  40732. [
  40733. {
  40734. name: "Tiny",
  40735. height: math.unit(2, "feet")
  40736. },
  40737. {
  40738. name: "Smol",
  40739. height: math.unit(4, "feet")
  40740. },
  40741. {
  40742. name: "Normal",
  40743. height: math.unit(8, "feet"),
  40744. default: true
  40745. },
  40746. {
  40747. name: "Big",
  40748. height: math.unit(12, "feet")
  40749. },
  40750. {
  40751. name: "Macro",
  40752. height: math.unit(30, "feet")
  40753. },
  40754. ]
  40755. ))
  40756. characterMakers.push(() => makeCharacter(
  40757. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40758. {
  40759. front: {
  40760. height: math.unit(14, "feet"),
  40761. weight: math.unit(9.5, "tonnes"),
  40762. name: "Front",
  40763. image: {
  40764. source: "./media/characters/dawnheart/front.svg",
  40765. extra: 2792/2675,
  40766. bottom: 64/2856
  40767. }
  40768. },
  40769. },
  40770. [
  40771. {
  40772. name: "Normal",
  40773. height: math.unit(14, "feet"),
  40774. default: true
  40775. },
  40776. ]
  40777. ))
  40778. characterMakers.push(() => makeCharacter(
  40779. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40780. {
  40781. front: {
  40782. height: math.unit(1.7, "m"),
  40783. name: "Front",
  40784. image: {
  40785. source: "./media/characters/gladi/front.svg",
  40786. extra: 1460/1362,
  40787. bottom: 19/1479
  40788. }
  40789. },
  40790. back: {
  40791. height: math.unit(1.7, "m"),
  40792. name: "Back",
  40793. image: {
  40794. source: "./media/characters/gladi/back.svg",
  40795. extra: 1459/1357,
  40796. bottom: 12/1471
  40797. }
  40798. },
  40799. feral: {
  40800. height: math.unit(2.05, "m"),
  40801. name: "Feral",
  40802. image: {
  40803. source: "./media/characters/gladi/feral.svg",
  40804. extra: 821/557,
  40805. bottom: 91/912
  40806. }
  40807. },
  40808. },
  40809. [
  40810. {
  40811. name: "Shortest",
  40812. height: math.unit(70, "cm")
  40813. },
  40814. {
  40815. name: "Normal",
  40816. height: math.unit(1.7, "m")
  40817. },
  40818. {
  40819. name: "Macro",
  40820. height: math.unit(10, "m"),
  40821. default: true
  40822. },
  40823. {
  40824. name: "Tallest",
  40825. height: math.unit(200, "m")
  40826. },
  40827. ]
  40828. ))
  40829. characterMakers.push(() => makeCharacter(
  40830. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40831. {
  40832. front: {
  40833. height: math.unit(5 + 7/12, "feet"),
  40834. weight: math.unit(2, "tons"),
  40835. name: "Front",
  40836. image: {
  40837. source: "./media/characters/erdno/front.svg",
  40838. extra: 1234/1129,
  40839. bottom: 35/1269
  40840. }
  40841. },
  40842. angled: {
  40843. height: math.unit(5 + 7/12, "feet"),
  40844. weight: math.unit(2, "tons"),
  40845. name: "Angled",
  40846. image: {
  40847. source: "./media/characters/erdno/angled.svg",
  40848. extra: 1185/1139,
  40849. bottom: 36/1221
  40850. }
  40851. },
  40852. side: {
  40853. height: math.unit(5 + 7/12, "feet"),
  40854. weight: math.unit(2, "tons"),
  40855. name: "Side",
  40856. image: {
  40857. source: "./media/characters/erdno/side.svg",
  40858. extra: 1191/1144,
  40859. bottom: 40/1231
  40860. }
  40861. },
  40862. back: {
  40863. height: math.unit(5 + 7/12, "feet"),
  40864. weight: math.unit(2, "tons"),
  40865. name: "Back",
  40866. image: {
  40867. source: "./media/characters/erdno/back.svg",
  40868. extra: 1202/1146,
  40869. bottom: 17/1219
  40870. }
  40871. },
  40872. frontNsfw: {
  40873. height: math.unit(5 + 7/12, "feet"),
  40874. weight: math.unit(2, "tons"),
  40875. name: "Front (NSFW)",
  40876. image: {
  40877. source: "./media/characters/erdno/front-nsfw.svg",
  40878. extra: 1234/1129,
  40879. bottom: 35/1269
  40880. }
  40881. },
  40882. angledNsfw: {
  40883. height: math.unit(5 + 7/12, "feet"),
  40884. weight: math.unit(2, "tons"),
  40885. name: "Angled (NSFW)",
  40886. image: {
  40887. source: "./media/characters/erdno/angled-nsfw.svg",
  40888. extra: 1185/1139,
  40889. bottom: 36/1221
  40890. }
  40891. },
  40892. sideNsfw: {
  40893. height: math.unit(5 + 7/12, "feet"),
  40894. weight: math.unit(2, "tons"),
  40895. name: "Side (NSFW)",
  40896. image: {
  40897. source: "./media/characters/erdno/side-nsfw.svg",
  40898. extra: 1191/1144,
  40899. bottom: 40/1231
  40900. }
  40901. },
  40902. backNsfw: {
  40903. height: math.unit(5 + 7/12, "feet"),
  40904. weight: math.unit(2, "tons"),
  40905. name: "Back (NSFW)",
  40906. image: {
  40907. source: "./media/characters/erdno/back-nsfw.svg",
  40908. extra: 1202/1146,
  40909. bottom: 17/1219
  40910. }
  40911. },
  40912. frontHyper: {
  40913. height: math.unit(5 + 7/12, "feet"),
  40914. weight: math.unit(2, "tons"),
  40915. name: "Front (Hyper)",
  40916. image: {
  40917. source: "./media/characters/erdno/front-hyper.svg",
  40918. extra: 1298/1136,
  40919. bottom: 35/1333
  40920. }
  40921. },
  40922. },
  40923. [
  40924. {
  40925. name: "Normal",
  40926. height: math.unit(5 + 7/12, "feet"),
  40927. default: true
  40928. },
  40929. {
  40930. name: "Big",
  40931. height: math.unit(5.7, "meters")
  40932. },
  40933. {
  40934. name: "Macro",
  40935. height: math.unit(5.7, "kilometers")
  40936. },
  40937. {
  40938. name: "Megamacro",
  40939. height: math.unit(5.7, "earths")
  40940. },
  40941. ]
  40942. ))
  40943. characterMakers.push(() => makeCharacter(
  40944. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40945. {
  40946. front: {
  40947. height: math.unit(5 + 10/12, "feet"),
  40948. weight: math.unit(150, "lb"),
  40949. name: "Front",
  40950. image: {
  40951. source: "./media/characters/jamie/front.svg",
  40952. extra: 1908/1768,
  40953. bottom: 19/1927
  40954. }
  40955. },
  40956. },
  40957. [
  40958. {
  40959. name: "Minimum",
  40960. height: math.unit(2, "cm")
  40961. },
  40962. {
  40963. name: "Micro",
  40964. height: math.unit(3, "inches")
  40965. },
  40966. {
  40967. name: "Normal",
  40968. height: math.unit(5 + 10/12, "feet"),
  40969. default: true
  40970. },
  40971. {
  40972. name: "Macro",
  40973. height: math.unit(150, "feet")
  40974. },
  40975. {
  40976. name: "Megamacro",
  40977. height: math.unit(10000, "m")
  40978. },
  40979. ]
  40980. ))
  40981. characterMakers.push(() => makeCharacter(
  40982. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40983. {
  40984. front: {
  40985. height: math.unit(2, "meters"),
  40986. weight: math.unit(100, "kg"),
  40987. name: "Front",
  40988. image: {
  40989. source: "./media/characters/shiron/front.svg",
  40990. extra: 2103/1985,
  40991. bottom: 98/2201
  40992. }
  40993. },
  40994. back: {
  40995. height: math.unit(2, "meters"),
  40996. weight: math.unit(100, "kg"),
  40997. name: "Back",
  40998. image: {
  40999. source: "./media/characters/shiron/back.svg",
  41000. extra: 2110/2015,
  41001. bottom: 89/2199
  41002. }
  41003. },
  41004. hand: {
  41005. height: math.unit(0.96, "feet"),
  41006. name: "Hand",
  41007. image: {
  41008. source: "./media/characters/shiron/hand.svg"
  41009. }
  41010. },
  41011. foot: {
  41012. height: math.unit(1.464, "feet"),
  41013. name: "Foot",
  41014. image: {
  41015. source: "./media/characters/shiron/foot.svg"
  41016. }
  41017. },
  41018. },
  41019. [
  41020. {
  41021. name: "Normal",
  41022. height: math.unit(2, "meters")
  41023. },
  41024. {
  41025. name: "Macro",
  41026. height: math.unit(500, "meters"),
  41027. default: true
  41028. },
  41029. {
  41030. name: "Megamacro",
  41031. height: math.unit(20, "km")
  41032. },
  41033. ]
  41034. ))
  41035. characterMakers.push(() => makeCharacter(
  41036. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41037. {
  41038. front: {
  41039. height: math.unit(6, "feet"),
  41040. name: "Front",
  41041. image: {
  41042. source: "./media/characters/sam/front.svg",
  41043. extra: 849/826,
  41044. bottom: 19/868
  41045. }
  41046. },
  41047. },
  41048. [
  41049. {
  41050. name: "Normal",
  41051. height: math.unit(6, "feet"),
  41052. default: true
  41053. },
  41054. ]
  41055. ))
  41056. characterMakers.push(() => makeCharacter(
  41057. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41058. {
  41059. front: {
  41060. height: math.unit(8 + 4/12, "feet"),
  41061. weight: math.unit(122, "kg"),
  41062. name: "Front",
  41063. image: {
  41064. source: "./media/characters/namori-kurogawa/front.svg",
  41065. extra: 1894/1576,
  41066. bottom: 34/1928
  41067. }
  41068. },
  41069. },
  41070. [
  41071. {
  41072. name: "Normal",
  41073. height: math.unit(8 + 4/12, "feet"),
  41074. default: true
  41075. },
  41076. ]
  41077. ))
  41078. characterMakers.push(() => makeCharacter(
  41079. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41080. {
  41081. front: {
  41082. height: math.unit(9, "feet"),
  41083. weight: math.unit(621, "lb"),
  41084. name: "Front",
  41085. image: {
  41086. source: "./media/characters/unmru/front.svg",
  41087. extra: 1853/1747,
  41088. bottom: 73/1926
  41089. }
  41090. },
  41091. side: {
  41092. height: math.unit(9, "feet"),
  41093. weight: math.unit(621, "lb"),
  41094. name: "Side",
  41095. image: {
  41096. source: "./media/characters/unmru/side.svg",
  41097. extra: 1781/1671,
  41098. bottom: 127/1908
  41099. }
  41100. },
  41101. back: {
  41102. height: math.unit(9, "feet"),
  41103. weight: math.unit(621, "lb"),
  41104. name: "Back",
  41105. image: {
  41106. source: "./media/characters/unmru/back.svg",
  41107. extra: 1894/1765,
  41108. bottom: 75/1969
  41109. }
  41110. },
  41111. dick: {
  41112. height: math.unit(3, "feet"),
  41113. weight: math.unit(35, "lb"),
  41114. name: "Dick",
  41115. image: {
  41116. source: "./media/characters/unmru/dick.svg"
  41117. }
  41118. },
  41119. },
  41120. [
  41121. {
  41122. name: "Normal",
  41123. height: math.unit(9, "feet")
  41124. },
  41125. {
  41126. name: "Natural",
  41127. height: math.unit(27, "feet"),
  41128. default: true
  41129. },
  41130. {
  41131. name: "Giant",
  41132. height: math.unit(90, "feet")
  41133. },
  41134. {
  41135. name: "Kaiju",
  41136. height: math.unit(270, "feet")
  41137. },
  41138. {
  41139. name: "Macro",
  41140. height: math.unit(900, "feet")
  41141. },
  41142. {
  41143. name: "Macro+",
  41144. height: math.unit(2700, "feet")
  41145. },
  41146. {
  41147. name: "Megamacro",
  41148. height: math.unit(9000, "feet")
  41149. },
  41150. {
  41151. name: "City-Crushing",
  41152. height: math.unit(27000, "feet")
  41153. },
  41154. {
  41155. name: "Mountain-Mashing",
  41156. height: math.unit(90000, "feet")
  41157. },
  41158. {
  41159. name: "Earth-Eclipsing",
  41160. height: math.unit(2.7e8, "feet")
  41161. },
  41162. {
  41163. name: "Sol-Swallowing",
  41164. height: math.unit(9e10, "feet")
  41165. },
  41166. {
  41167. name: "Majoris-Munching",
  41168. height: math.unit(2.7e13, "feet")
  41169. },
  41170. ]
  41171. ))
  41172. characterMakers.push(() => makeCharacter(
  41173. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41174. {
  41175. front: {
  41176. height: math.unit(1, "inch"),
  41177. name: "Front",
  41178. image: {
  41179. source: "./media/characters/squeaks-mouse/front.svg",
  41180. extra: 352/308,
  41181. bottom: 25/377
  41182. }
  41183. },
  41184. },
  41185. [
  41186. {
  41187. name: "Micro",
  41188. height: math.unit(1, "inch"),
  41189. default: true
  41190. },
  41191. ]
  41192. ))
  41193. characterMakers.push(() => makeCharacter(
  41194. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41195. {
  41196. side: {
  41197. height: math.unit(35, "feet"),
  41198. name: "Side",
  41199. image: {
  41200. source: "./media/characters/sayko/side.svg",
  41201. extra: 1697/1021,
  41202. bottom: 82/1779
  41203. }
  41204. },
  41205. head: {
  41206. height: math.unit(16, "feet"),
  41207. name: "Head",
  41208. image: {
  41209. source: "./media/characters/sayko/head.svg"
  41210. }
  41211. },
  41212. forepaw: {
  41213. height: math.unit(7.85, "feet"),
  41214. name: "Forepaw",
  41215. image: {
  41216. source: "./media/characters/sayko/forepaw.svg"
  41217. }
  41218. },
  41219. hindpaw: {
  41220. height: math.unit(8.8, "feet"),
  41221. name: "Hindpaw",
  41222. image: {
  41223. source: "./media/characters/sayko/hindpaw.svg"
  41224. }
  41225. },
  41226. },
  41227. [
  41228. {
  41229. name: "Normal",
  41230. height: math.unit(35, "feet"),
  41231. default: true
  41232. },
  41233. {
  41234. name: "Colossus",
  41235. height: math.unit(100, "meters")
  41236. },
  41237. {
  41238. name: "\"Small\" Deity",
  41239. height: math.unit(1, "km")
  41240. },
  41241. {
  41242. name: "\"Large\" Deity",
  41243. height: math.unit(15, "km")
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41249. {
  41250. front: {
  41251. height: math.unit(6, "feet"),
  41252. weight: math.unit(250, "lb"),
  41253. name: "Front",
  41254. image: {
  41255. source: "./media/characters/mukiro/front.svg",
  41256. extra: 1368/1310,
  41257. bottom: 34/1402
  41258. }
  41259. },
  41260. },
  41261. [
  41262. {
  41263. name: "Normal",
  41264. height: math.unit(6, "feet"),
  41265. default: true
  41266. },
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41271. {
  41272. front: {
  41273. height: math.unit(12 + 4/12, "feet"),
  41274. name: "Front",
  41275. image: {
  41276. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41277. extra: 1346/1311,
  41278. bottom: 65/1411
  41279. }
  41280. },
  41281. },
  41282. [
  41283. {
  41284. name: "Base",
  41285. height: math.unit(12 + 4/12, "feet"),
  41286. default: true
  41287. },
  41288. {
  41289. name: "Macro",
  41290. height: math.unit(150, "feet")
  41291. },
  41292. {
  41293. name: "Mega",
  41294. height: math.unit(2, "miles")
  41295. },
  41296. {
  41297. name: "Demi God",
  41298. height: math.unit(4, "AU")
  41299. },
  41300. {
  41301. name: "God Size",
  41302. height: math.unit(1, "universe")
  41303. },
  41304. ]
  41305. ))
  41306. characterMakers.push(() => makeCharacter(
  41307. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41308. {
  41309. front: {
  41310. height: math.unit(3 + 3/12, "feet"),
  41311. weight: math.unit(88, "lb"),
  41312. name: "Front",
  41313. image: {
  41314. source: "./media/characters/trey/front.svg",
  41315. extra: 1815/1509,
  41316. bottom: 60/1875
  41317. }
  41318. },
  41319. },
  41320. [
  41321. {
  41322. name: "Normal",
  41323. height: math.unit(3 + 3/12, "feet"),
  41324. default: true
  41325. },
  41326. ]
  41327. ))
  41328. characterMakers.push(() => makeCharacter(
  41329. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41330. {
  41331. front: {
  41332. height: math.unit(4, "meters"),
  41333. name: "Front",
  41334. image: {
  41335. source: "./media/characters/adelonda/front.svg",
  41336. extra: 1077/982,
  41337. bottom: 39/1116
  41338. }
  41339. },
  41340. back: {
  41341. height: math.unit(4, "meters"),
  41342. name: "Back",
  41343. image: {
  41344. source: "./media/characters/adelonda/back.svg",
  41345. extra: 1105/1003,
  41346. bottom: 25/1130
  41347. }
  41348. },
  41349. feral: {
  41350. height: math.unit(40/1.5, "meters"),
  41351. name: "Feral",
  41352. image: {
  41353. source: "./media/characters/adelonda/feral.svg",
  41354. extra: 597/271,
  41355. bottom: 387/984
  41356. }
  41357. },
  41358. },
  41359. [
  41360. {
  41361. name: "Normal",
  41362. height: math.unit(4, "meters"),
  41363. default: true
  41364. },
  41365. ]
  41366. ))
  41367. characterMakers.push(() => makeCharacter(
  41368. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41369. {
  41370. front: {
  41371. height: math.unit(8 + 4/12, "feet"),
  41372. weight: math.unit(670, "lb"),
  41373. name: "Front",
  41374. image: {
  41375. source: "./media/characters/acadiel/front.svg",
  41376. extra: 1901/1595,
  41377. bottom: 142/2043
  41378. }
  41379. },
  41380. },
  41381. [
  41382. {
  41383. name: "Normal",
  41384. height: math.unit(8 + 4/12, "feet"),
  41385. default: true
  41386. },
  41387. {
  41388. name: "Macro",
  41389. height: math.unit(200, "feet")
  41390. },
  41391. ]
  41392. ))
  41393. characterMakers.push(() => makeCharacter(
  41394. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41395. {
  41396. front: {
  41397. height: math.unit(6 + 2/12, "feet"),
  41398. weight: math.unit(185, "lb"),
  41399. name: "Front",
  41400. image: {
  41401. source: "./media/characters/kayne-ein/front.svg",
  41402. extra: 1780/1560,
  41403. bottom: 81/1861
  41404. }
  41405. },
  41406. },
  41407. [
  41408. {
  41409. name: "Normal",
  41410. height: math.unit(6 + 2/12, "feet"),
  41411. default: true
  41412. },
  41413. {
  41414. name: "Transformation Stage",
  41415. height: math.unit(15, "feet")
  41416. },
  41417. {
  41418. name: "Macro",
  41419. height: math.unit(150, "feet")
  41420. },
  41421. {
  41422. name: "Earth's Shadow",
  41423. height: math.unit(6200, "miles")
  41424. },
  41425. {
  41426. name: "Universal Demon",
  41427. height: math.unit(28e9, "parsecs")
  41428. },
  41429. {
  41430. name: "Multiverse God",
  41431. height: math.unit(3, "multiverses")
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(5 + 5/12, "feet"),
  41440. name: "Front",
  41441. image: {
  41442. source: "./media/characters/fawn/front.svg",
  41443. extra: 1873/1731,
  41444. bottom: 95/1968
  41445. }
  41446. },
  41447. back: {
  41448. height: math.unit(5 + 5/12, "feet"),
  41449. name: "Back",
  41450. image: {
  41451. source: "./media/characters/fawn/back.svg",
  41452. extra: 1813/1700,
  41453. bottom: 14/1827
  41454. }
  41455. },
  41456. hoof: {
  41457. height: math.unit(1.45, "feet"),
  41458. name: "Hoof",
  41459. image: {
  41460. source: "./media/characters/fawn/hoof.svg"
  41461. }
  41462. },
  41463. },
  41464. [
  41465. {
  41466. name: "Normal",
  41467. height: math.unit(5 + 5/12, "feet"),
  41468. default: true
  41469. },
  41470. ]
  41471. ))
  41472. characterMakers.push(() => makeCharacter(
  41473. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41474. {
  41475. front: {
  41476. height: math.unit(2 + 5/12, "feet"),
  41477. name: "Front",
  41478. image: {
  41479. source: "./media/characters/orion/front.svg",
  41480. extra: 1366/1304,
  41481. bottom: 43/1409
  41482. }
  41483. },
  41484. paw: {
  41485. height: math.unit(0.52, "feet"),
  41486. name: "Paw",
  41487. image: {
  41488. source: "./media/characters/orion/paw.svg"
  41489. }
  41490. },
  41491. },
  41492. [
  41493. {
  41494. name: "Normal",
  41495. height: math.unit(2 + 5/12, "feet"),
  41496. default: true
  41497. },
  41498. ]
  41499. ))
  41500. characterMakers.push(() => makeCharacter(
  41501. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41502. {
  41503. front: {
  41504. height: math.unit(5 + 10/12, "feet"),
  41505. name: "Front",
  41506. image: {
  41507. source: "./media/characters/vera/front.svg",
  41508. extra: 1680/1575,
  41509. bottom: 49/1729
  41510. }
  41511. },
  41512. back: {
  41513. height: math.unit(5 + 10/12, "feet"),
  41514. name: "Back",
  41515. image: {
  41516. source: "./media/characters/vera/back.svg",
  41517. extra: 1700/1588,
  41518. bottom: 18/1718
  41519. }
  41520. },
  41521. arcanine: {
  41522. height: math.unit(6 + 8/12, "feet"),
  41523. name: "Arcanine",
  41524. image: {
  41525. source: "./media/characters/vera/arcanine.svg",
  41526. extra: 1590/1511,
  41527. bottom: 71/1661
  41528. }
  41529. },
  41530. maw: {
  41531. height: math.unit(0.82, "feet"),
  41532. name: "Maw",
  41533. image: {
  41534. source: "./media/characters/vera/maw.svg"
  41535. }
  41536. },
  41537. mawArcanine: {
  41538. height: math.unit(0.97, "feet"),
  41539. name: "Maw (Arcanine)",
  41540. image: {
  41541. source: "./media/characters/vera/maw-arcanine.svg"
  41542. }
  41543. },
  41544. paw: {
  41545. height: math.unit(0.75, "feet"),
  41546. name: "Paw",
  41547. image: {
  41548. source: "./media/characters/vera/paw.svg"
  41549. }
  41550. },
  41551. pawprint: {
  41552. height: math.unit(0.52, "feet"),
  41553. name: "Pawprint",
  41554. image: {
  41555. source: "./media/characters/vera/pawprint.svg"
  41556. }
  41557. },
  41558. },
  41559. [
  41560. {
  41561. name: "Normal",
  41562. height: math.unit(5 + 10/12, "feet"),
  41563. default: true
  41564. },
  41565. {
  41566. name: "Macro",
  41567. height: math.unit(75, "feet")
  41568. },
  41569. ]
  41570. ))
  41571. characterMakers.push(() => makeCharacter(
  41572. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41573. {
  41574. front: {
  41575. height: math.unit(4, "feet"),
  41576. weight: math.unit(40, "lb"),
  41577. name: "Front",
  41578. image: {
  41579. source: "./media/characters/orvan-rabbit/front.svg",
  41580. extra: 1896/1642,
  41581. bottom: 29/1925
  41582. }
  41583. },
  41584. },
  41585. [
  41586. {
  41587. name: "Normal",
  41588. height: math.unit(4, "feet"),
  41589. default: true
  41590. },
  41591. ]
  41592. ))
  41593. characterMakers.push(() => makeCharacter(
  41594. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41595. {
  41596. front: {
  41597. height: math.unit(6, "feet"),
  41598. weight: math.unit(168, "lb"),
  41599. name: "Front",
  41600. image: {
  41601. source: "./media/characters/lisa/front.svg",
  41602. extra: 2065/1867,
  41603. bottom: 46/2111
  41604. }
  41605. },
  41606. back: {
  41607. height: math.unit(6, "feet"),
  41608. weight: math.unit(168, "lb"),
  41609. name: "Back",
  41610. image: {
  41611. source: "./media/characters/lisa/back.svg",
  41612. extra: 1982/1838,
  41613. bottom: 29/2011
  41614. }
  41615. },
  41616. maw: {
  41617. height: math.unit(0.81, "feet"),
  41618. name: "Maw",
  41619. image: {
  41620. source: "./media/characters/lisa/maw.svg"
  41621. }
  41622. },
  41623. paw: {
  41624. height: math.unit(0.9, "feet"),
  41625. name: "Paw",
  41626. image: {
  41627. source: "./media/characters/lisa/paw.svg"
  41628. }
  41629. },
  41630. caribousune: {
  41631. height: math.unit(7 + 2/12, "feet"),
  41632. weight: math.unit(268, "lb"),
  41633. name: "Caribousune",
  41634. image: {
  41635. source: "./media/characters/lisa/caribousune.svg",
  41636. extra: 1843/1633,
  41637. bottom: 29/1872
  41638. }
  41639. },
  41640. frontCaribousune: {
  41641. height: math.unit(7 + 2/12, "feet"),
  41642. weight: math.unit(268, "lb"),
  41643. name: "Front (Caribousune)",
  41644. image: {
  41645. source: "./media/characters/lisa/front-caribousune.svg",
  41646. extra: 1818/1638,
  41647. bottom: 52/1870
  41648. }
  41649. },
  41650. sideCaribousune: {
  41651. height: math.unit(7 + 2/12, "feet"),
  41652. weight: math.unit(268, "lb"),
  41653. name: "Side (Caribousune)",
  41654. image: {
  41655. source: "./media/characters/lisa/side-caribousune.svg",
  41656. extra: 1851/1635,
  41657. bottom: 16/1867
  41658. }
  41659. },
  41660. backCaribousune: {
  41661. height: math.unit(7 + 2/12, "feet"),
  41662. weight: math.unit(268, "lb"),
  41663. name: "Back (Caribousune)",
  41664. image: {
  41665. source: "./media/characters/lisa/back-caribousune.svg",
  41666. extra: 1801/1604,
  41667. bottom: 44/1845
  41668. }
  41669. },
  41670. caribou: {
  41671. height: math.unit(7 + 2/12, "feet"),
  41672. weight: math.unit(268, "lb"),
  41673. name: "Caribou",
  41674. image: {
  41675. source: "./media/characters/lisa/caribou.svg",
  41676. extra: 1843/1633,
  41677. bottom: 29/1872
  41678. }
  41679. },
  41680. frontCaribou: {
  41681. height: math.unit(7 + 2/12, "feet"),
  41682. weight: math.unit(268, "lb"),
  41683. name: "Front (Caribou)",
  41684. image: {
  41685. source: "./media/characters/lisa/front-caribou.svg",
  41686. extra: 1818/1638,
  41687. bottom: 52/1870
  41688. }
  41689. },
  41690. sideCaribou: {
  41691. height: math.unit(7 + 2/12, "feet"),
  41692. weight: math.unit(268, "lb"),
  41693. name: "Side (Caribou)",
  41694. image: {
  41695. source: "./media/characters/lisa/side-caribou.svg",
  41696. extra: 1851/1635,
  41697. bottom: 16/1867
  41698. }
  41699. },
  41700. backCaribou: {
  41701. height: math.unit(7 + 2/12, "feet"),
  41702. weight: math.unit(268, "lb"),
  41703. name: "Back (Caribou)",
  41704. image: {
  41705. source: "./media/characters/lisa/back-caribou.svg",
  41706. extra: 1801/1604,
  41707. bottom: 44/1845
  41708. }
  41709. },
  41710. mawCaribou: {
  41711. height: math.unit(1.45, "feet"),
  41712. name: "Maw (Caribou)",
  41713. image: {
  41714. source: "./media/characters/lisa/maw-caribou.svg"
  41715. }
  41716. },
  41717. mawCaribousune: {
  41718. height: math.unit(1.45, "feet"),
  41719. name: "Maw (Caribousune)",
  41720. image: {
  41721. source: "./media/characters/lisa/maw-caribousune.svg"
  41722. }
  41723. },
  41724. pawCaribousune: {
  41725. height: math.unit(1.61, "feet"),
  41726. name: "Paw (Caribou)",
  41727. image: {
  41728. source: "./media/characters/lisa/paw-caribousune.svg"
  41729. }
  41730. },
  41731. },
  41732. [
  41733. {
  41734. name: "Normal",
  41735. height: math.unit(6, "feet")
  41736. },
  41737. {
  41738. name: "God Size",
  41739. height: math.unit(72, "feet"),
  41740. default: true
  41741. },
  41742. {
  41743. name: "Towering",
  41744. height: math.unit(288, "feet")
  41745. },
  41746. {
  41747. name: "City Size",
  41748. height: math.unit(48384, "feet")
  41749. },
  41750. {
  41751. name: "Continental",
  41752. height: math.unit(4200, "miles")
  41753. },
  41754. {
  41755. name: "Planet Eater",
  41756. height: math.unit(42, "earths")
  41757. },
  41758. {
  41759. name: "Star Swallower",
  41760. height: math.unit(42, "solarradii")
  41761. },
  41762. {
  41763. name: "System Swallower",
  41764. height: math.unit(84000, "AU")
  41765. },
  41766. {
  41767. name: "Galaxy Gobbler",
  41768. height: math.unit(42, "galaxies")
  41769. },
  41770. {
  41771. name: "Universe Devourer",
  41772. height: math.unit(42, "universes")
  41773. },
  41774. {
  41775. name: "Multiverse Muncher",
  41776. height: math.unit(42, "multiverses")
  41777. },
  41778. ]
  41779. ))
  41780. characterMakers.push(() => makeCharacter(
  41781. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41782. {
  41783. front: {
  41784. height: math.unit(36, "feet"),
  41785. name: "Front",
  41786. image: {
  41787. source: "./media/characters/shadow-rat/front.svg",
  41788. extra: 1845/1758,
  41789. bottom: 83/1928
  41790. }
  41791. },
  41792. },
  41793. [
  41794. {
  41795. name: "Macro",
  41796. height: math.unit(36, "feet"),
  41797. default: true
  41798. },
  41799. ]
  41800. ))
  41801. characterMakers.push(() => makeCharacter(
  41802. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41803. {
  41804. side: {
  41805. height: math.unit(8, "feet"),
  41806. weight: math.unit(2630, "lb"),
  41807. name: "Side",
  41808. image: {
  41809. source: "./media/characters/torallia/side.svg",
  41810. extra: 2164/2021,
  41811. bottom: 371/2535
  41812. }
  41813. },
  41814. },
  41815. [
  41816. {
  41817. name: "Mortal Interaction",
  41818. height: math.unit(8, "feet")
  41819. },
  41820. {
  41821. name: "Natural",
  41822. height: math.unit(24, "feet"),
  41823. default: true
  41824. },
  41825. {
  41826. name: "Giant",
  41827. height: math.unit(80, "feet")
  41828. },
  41829. {
  41830. name: "Kaiju",
  41831. height: math.unit(240, "feet")
  41832. },
  41833. {
  41834. name: "Macro",
  41835. height: math.unit(800, "feet")
  41836. },
  41837. {
  41838. name: "Macro+",
  41839. height: math.unit(2400, "feet")
  41840. },
  41841. {
  41842. name: "Macro++",
  41843. height: math.unit(8000, "feet")
  41844. },
  41845. {
  41846. name: "City-Crushing",
  41847. height: math.unit(24000, "feet")
  41848. },
  41849. {
  41850. name: "Mountain-Mashing",
  41851. height: math.unit(80000, "feet")
  41852. },
  41853. {
  41854. name: "District Demolisher",
  41855. height: math.unit(240000, "feet")
  41856. },
  41857. {
  41858. name: "Tri-County Terror",
  41859. height: math.unit(800000, "feet")
  41860. },
  41861. {
  41862. name: "State Smasher",
  41863. height: math.unit(2.4e6, "feet")
  41864. },
  41865. {
  41866. name: "Nation Nemesis",
  41867. height: math.unit(8e6, "feet")
  41868. },
  41869. {
  41870. name: "Continent Cracker",
  41871. height: math.unit(2.4e7, "feet")
  41872. },
  41873. {
  41874. name: "Planet-Pillaging",
  41875. height: math.unit(8e7, "feet")
  41876. },
  41877. {
  41878. name: "Earth-Eclipsing",
  41879. height: math.unit(2.4e8, "feet")
  41880. },
  41881. {
  41882. name: "Jovian-Jostling",
  41883. height: math.unit(8e8, "feet")
  41884. },
  41885. {
  41886. name: "Gas Giant Gulper",
  41887. height: math.unit(2.4e9, "feet")
  41888. },
  41889. {
  41890. name: "Astral Annihilator",
  41891. height: math.unit(8e9, "feet")
  41892. },
  41893. {
  41894. name: "Celestial Conqueror",
  41895. height: math.unit(2.4e10, "feet")
  41896. },
  41897. {
  41898. name: "Sol-Swallowing",
  41899. height: math.unit(8e10, "feet")
  41900. },
  41901. {
  41902. name: "Hunter of the Heavens",
  41903. height: math.unit(2.4e13, "feet")
  41904. },
  41905. ]
  41906. ))
  41907. characterMakers.push(() => makeCharacter(
  41908. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41909. {
  41910. front: {
  41911. height: math.unit(10, "feet"),
  41912. weight: math.unit(844, "kilograms"),
  41913. name: "Front",
  41914. image: {
  41915. source: "./media/characters/rebecca-pawlson/front.svg",
  41916. extra: 1196/1099,
  41917. bottom: 81/1277
  41918. },
  41919. extraAttributes: {
  41920. "pawSize": {
  41921. name: "Paw Size",
  41922. power: 2,
  41923. type: "area",
  41924. base: math.unit(0.2 * 0.375, "meters^2")
  41925. },
  41926. "handSize": {
  41927. name: "Hand Size",
  41928. power: 2,
  41929. type: "area",
  41930. base: math.unit(0.2 * 0.35, "meters^2")
  41931. },
  41932. "breastDiameter": {
  41933. name: "Breast Diameter",
  41934. power: 1,
  41935. type: "length",
  41936. base: math.unit(0.5, "meters")
  41937. },
  41938. "breastVolume": {
  41939. name: "Breast Volume",
  41940. power: 3,
  41941. type: "volume",
  41942. base: math.unit(0.065, "m^3")
  41943. },
  41944. "breastMass": {
  41945. name: "Breast Mass",
  41946. power: 3,
  41947. type: "mass",
  41948. base: math.unit(65, "kg")
  41949. },
  41950. "nippleDiameter": {
  41951. name: "Nipple Diameter",
  41952. power: 1,
  41953. type: "length",
  41954. base: math.unit(0.1, "meters")
  41955. },
  41956. }
  41957. },
  41958. back: {
  41959. height: math.unit(10, "feet"),
  41960. weight: math.unit(844, "kilograms"),
  41961. name: "Back",
  41962. image: {
  41963. source: "./media/characters/rebecca-pawlson/back.svg",
  41964. extra: 879/776,
  41965. bottom: 43/922
  41966. },
  41967. extraAttributes: {
  41968. "pawSize": {
  41969. name: "Paw Size",
  41970. power: 2,
  41971. type: "area",
  41972. base: math.unit(0.2 * 0.375, "meters^2")
  41973. },
  41974. "handSize": {
  41975. name: "Hand Size",
  41976. power: 2,
  41977. type: "area",
  41978. base: math.unit(0.2 * 0.35, "meters^2")
  41979. },
  41980. "breastDiameter": {
  41981. name: "Breast Diameter",
  41982. power: 1,
  41983. type: "length",
  41984. base: math.unit(0.5, "meters")
  41985. },
  41986. "breastVolume": {
  41987. name: "Breast Volume",
  41988. power: 3,
  41989. type: "volume",
  41990. base: math.unit(0.065, "m^3")
  41991. },
  41992. "breastMass": {
  41993. name: "Breast Mass",
  41994. power: 3,
  41995. type: "mass",
  41996. base: math.unit(65, "kg")
  41997. },
  41998. "nippleDiameter": {
  41999. name: "Nipple Diameter",
  42000. power: 1,
  42001. type: "length",
  42002. base: math.unit(0.1, "meters")
  42003. },
  42004. }
  42005. },
  42006. },
  42007. [
  42008. {
  42009. name: "Normal",
  42010. height: math.unit(6 + 8/12, "feet")
  42011. },
  42012. {
  42013. name: "Mini Macro",
  42014. height: math.unit(10, "feet"),
  42015. default: true
  42016. },
  42017. {
  42018. name: "Macro",
  42019. height: math.unit(100, "feet")
  42020. },
  42021. {
  42022. name: "Mega Macro",
  42023. height: math.unit(2500, "feet")
  42024. },
  42025. {
  42026. name: "Giga Macro",
  42027. height: math.unit(50, "miles")
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42033. {
  42034. front: {
  42035. height: math.unit(7 + 6/12, "feet"),
  42036. weight: math.unit(600, "lb"),
  42037. name: "Front",
  42038. image: {
  42039. source: "./media/characters/moxie-nova/front.svg",
  42040. extra: 1734/1652,
  42041. bottom: 41/1775
  42042. }
  42043. },
  42044. },
  42045. [
  42046. {
  42047. name: "Normal",
  42048. height: math.unit(7 + 6/12, "feet"),
  42049. default: true
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42055. {
  42056. goat: {
  42057. height: math.unit(4, "feet"),
  42058. weight: math.unit(180, "lb"),
  42059. name: "Goat",
  42060. image: {
  42061. source: "./media/characters/tiffany/goat.svg",
  42062. extra: 1845/1595,
  42063. bottom: 106/1951
  42064. }
  42065. },
  42066. front: {
  42067. height: math.unit(5, "feet"),
  42068. weight: math.unit(150, "lb"),
  42069. name: "Foxcoon",
  42070. image: {
  42071. source: "./media/characters/tiffany/foxcoon.svg",
  42072. extra: 1941/1845,
  42073. bottom: 58/1999
  42074. }
  42075. },
  42076. },
  42077. [
  42078. {
  42079. name: "Normal",
  42080. height: math.unit(5, "feet"),
  42081. default: true
  42082. },
  42083. ]
  42084. ))
  42085. characterMakers.push(() => makeCharacter(
  42086. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42087. {
  42088. front: {
  42089. height: math.unit(8, "feet"),
  42090. weight: math.unit(300, "lb"),
  42091. name: "Front",
  42092. image: {
  42093. source: "./media/characters/raxinath/front.svg",
  42094. extra: 1407/1309,
  42095. bottom: 39/1446
  42096. }
  42097. },
  42098. back: {
  42099. height: math.unit(8, "feet"),
  42100. weight: math.unit(300, "lb"),
  42101. name: "Back",
  42102. image: {
  42103. source: "./media/characters/raxinath/back.svg",
  42104. extra: 1405/1315,
  42105. bottom: 9/1414
  42106. }
  42107. },
  42108. },
  42109. [
  42110. {
  42111. name: "Speck",
  42112. height: math.unit(0.5, "nm")
  42113. },
  42114. {
  42115. name: "Micro",
  42116. height: math.unit(3, "inches")
  42117. },
  42118. {
  42119. name: "Kobold",
  42120. height: math.unit(3, "feet")
  42121. },
  42122. {
  42123. name: "Normal",
  42124. height: math.unit(8, "feet"),
  42125. default: true
  42126. },
  42127. {
  42128. name: "Giant",
  42129. height: math.unit(50, "feet")
  42130. },
  42131. {
  42132. name: "Macro",
  42133. height: math.unit(1000, "feet")
  42134. },
  42135. {
  42136. name: "Megamacro",
  42137. height: math.unit(1, "mile")
  42138. },
  42139. ]
  42140. ))
  42141. characterMakers.push(() => makeCharacter(
  42142. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42143. {
  42144. front: {
  42145. height: math.unit(10, "feet"),
  42146. weight: math.unit(1442, "lb"),
  42147. name: "Front",
  42148. image: {
  42149. source: "./media/characters/mal-dragon/front.svg",
  42150. extra: 1515/1444,
  42151. bottom: 113/1628
  42152. }
  42153. },
  42154. back: {
  42155. height: math.unit(10, "feet"),
  42156. weight: math.unit(1442, "lb"),
  42157. name: "Back",
  42158. image: {
  42159. source: "./media/characters/mal-dragon/back.svg",
  42160. extra: 1527/1434,
  42161. bottom: 25/1552
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Mortal Interaction",
  42168. height: math.unit(10, "feet"),
  42169. default: true
  42170. },
  42171. {
  42172. name: "Large",
  42173. height: math.unit(30, "feet")
  42174. },
  42175. {
  42176. name: "Kaiju",
  42177. height: math.unit(300, "feet")
  42178. },
  42179. {
  42180. name: "Megamacro",
  42181. height: math.unit(10000, "feet")
  42182. },
  42183. {
  42184. name: "Continent Cracker",
  42185. height: math.unit(30000000, "feet")
  42186. },
  42187. {
  42188. name: "Sol-Swallowing",
  42189. height: math.unit(1e11, "feet")
  42190. },
  42191. {
  42192. name: "Light Universal",
  42193. height: math.unit(5, "universes")
  42194. },
  42195. {
  42196. name: "Universe Atoms",
  42197. height: math.unit(1.829e9, "universes")
  42198. },
  42199. {
  42200. name: "Light Multiversal",
  42201. height: math.unit(5, "multiverses")
  42202. },
  42203. {
  42204. name: "Multiverse Atoms",
  42205. height: math.unit(1.829e9, "multiverses")
  42206. },
  42207. {
  42208. name: "Fabric of Time",
  42209. height: math.unit(1e262, "multiverses")
  42210. },
  42211. ]
  42212. ))
  42213. characterMakers.push(() => makeCharacter(
  42214. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42215. {
  42216. front: {
  42217. height: math.unit(9, "feet"),
  42218. weight: math.unit(1050, "lb"),
  42219. name: "Front",
  42220. image: {
  42221. source: "./media/characters/tabitha/front.svg",
  42222. extra: 2083/1994,
  42223. bottom: 68/2151
  42224. }
  42225. },
  42226. },
  42227. [
  42228. {
  42229. name: "Baseline",
  42230. height: math.unit(9, "feet"),
  42231. default: true
  42232. },
  42233. {
  42234. name: "Giant",
  42235. height: math.unit(90, "feet")
  42236. },
  42237. {
  42238. name: "Macro",
  42239. height: math.unit(900, "feet")
  42240. },
  42241. {
  42242. name: "Megamacro",
  42243. height: math.unit(9000, "feet")
  42244. },
  42245. {
  42246. name: "City-Crushing",
  42247. height: math.unit(27000, "feet")
  42248. },
  42249. {
  42250. name: "Mountain-Mashing",
  42251. height: math.unit(90000, "feet")
  42252. },
  42253. {
  42254. name: "Nation Nemesis",
  42255. height: math.unit(9e6, "feet")
  42256. },
  42257. {
  42258. name: "Continent Cracker",
  42259. height: math.unit(27e6, "feet")
  42260. },
  42261. {
  42262. name: "Earth-Eclipsing",
  42263. height: math.unit(2.7e8, "feet")
  42264. },
  42265. {
  42266. name: "Gas Giant Gulper",
  42267. height: math.unit(2.7e9, "feet")
  42268. },
  42269. {
  42270. name: "Sol-Swallowing",
  42271. height: math.unit(9e10, "feet")
  42272. },
  42273. {
  42274. name: "Galaxy Gulper",
  42275. height: math.unit(9, "galaxies")
  42276. },
  42277. {
  42278. name: "Cosmos Churner",
  42279. height: math.unit(9, "universes")
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42285. {
  42286. front: {
  42287. height: math.unit(160, "cm"),
  42288. weight: math.unit(55, "kg"),
  42289. name: "Front",
  42290. image: {
  42291. source: "./media/characters/tow/front.svg",
  42292. extra: 1751/1722,
  42293. bottom: 74/1825
  42294. }
  42295. },
  42296. },
  42297. [
  42298. {
  42299. name: "Norm",
  42300. height: math.unit(160, "cm")
  42301. },
  42302. {
  42303. name: "Casual",
  42304. height: math.unit(3200, "m"),
  42305. default: true
  42306. },
  42307. {
  42308. name: "Show-Off",
  42309. height: math.unit(160, "km")
  42310. },
  42311. ]
  42312. ))
  42313. characterMakers.push(() => makeCharacter(
  42314. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42315. {
  42316. front: {
  42317. height: math.unit(7 + 11/12, "feet"),
  42318. weight: math.unit(342.8, "lb"),
  42319. name: "Front",
  42320. image: {
  42321. source: "./media/characters/vivian-orca-dragon/front.svg",
  42322. extra: 1890/1865,
  42323. bottom: 28/1918
  42324. }
  42325. },
  42326. },
  42327. [
  42328. {
  42329. name: "Micro",
  42330. height: math.unit(5, "inches")
  42331. },
  42332. {
  42333. name: "Normal",
  42334. height: math.unit(7 + 11/12, "feet"),
  42335. default: true
  42336. },
  42337. {
  42338. name: "Macro",
  42339. height: math.unit(395 + 7/12, "feet")
  42340. },
  42341. ]
  42342. ))
  42343. characterMakers.push(() => makeCharacter(
  42344. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42345. {
  42346. side: {
  42347. height: math.unit(10, "feet"),
  42348. weight: math.unit(1442, "lb"),
  42349. name: "Side",
  42350. image: {
  42351. source: "./media/characters/lotherakon/side.svg",
  42352. extra: 1604/1497,
  42353. bottom: 89/1693
  42354. }
  42355. },
  42356. },
  42357. [
  42358. {
  42359. name: "Mortal Interaction",
  42360. height: math.unit(10, "feet")
  42361. },
  42362. {
  42363. name: "Large",
  42364. height: math.unit(30, "feet"),
  42365. default: true
  42366. },
  42367. {
  42368. name: "Giant",
  42369. height: math.unit(100, "feet")
  42370. },
  42371. {
  42372. name: "Kaiju",
  42373. height: math.unit(300, "feet")
  42374. },
  42375. {
  42376. name: "Macro",
  42377. height: math.unit(1000, "feet")
  42378. },
  42379. {
  42380. name: "Macro+",
  42381. height: math.unit(3000, "feet")
  42382. },
  42383. {
  42384. name: "Megamacro",
  42385. height: math.unit(10000, "feet")
  42386. },
  42387. {
  42388. name: "City-Crushing",
  42389. height: math.unit(30000, "feet")
  42390. },
  42391. {
  42392. name: "Continent Cracker",
  42393. height: math.unit(30e6, "feet")
  42394. },
  42395. {
  42396. name: "Earth Eclipsing",
  42397. height: math.unit(3e8, "feet")
  42398. },
  42399. {
  42400. name: "Gas Giant Gulper",
  42401. height: math.unit(3e9, "feet")
  42402. },
  42403. {
  42404. name: "Sol-Swallowing",
  42405. height: math.unit(1e11, "feet")
  42406. },
  42407. {
  42408. name: "System Swallower",
  42409. height: math.unit(3e14, "feet")
  42410. },
  42411. {
  42412. name: "Galaxy Gulper",
  42413. height: math.unit(10, "galaxies")
  42414. },
  42415. {
  42416. name: "Light Universal",
  42417. height: math.unit(5, "universes")
  42418. },
  42419. {
  42420. name: "Universe Palm",
  42421. height: math.unit(20, "universes")
  42422. },
  42423. {
  42424. name: "Light Multiversal",
  42425. height: math.unit(5, "multiverses")
  42426. },
  42427. {
  42428. name: "Multiverse Palm",
  42429. height: math.unit(20, "multiverses")
  42430. },
  42431. {
  42432. name: "Inferno Incarnate",
  42433. height: math.unit(1e7, "multiverses")
  42434. },
  42435. ]
  42436. ))
  42437. characterMakers.push(() => makeCharacter(
  42438. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42439. {
  42440. front: {
  42441. height: math.unit(8, "feet"),
  42442. weight: math.unit(1200, "lb"),
  42443. name: "Front",
  42444. image: {
  42445. source: "./media/characters/malithee/front.svg",
  42446. extra: 1675/1640,
  42447. bottom: 162/1837
  42448. }
  42449. },
  42450. },
  42451. [
  42452. {
  42453. name: "Mortal Interaction",
  42454. height: math.unit(8, "feet"),
  42455. default: true
  42456. },
  42457. {
  42458. name: "Large",
  42459. height: math.unit(24, "feet")
  42460. },
  42461. {
  42462. name: "Kaiju",
  42463. height: math.unit(240, "feet")
  42464. },
  42465. {
  42466. name: "Megamacro",
  42467. height: math.unit(8000, "feet")
  42468. },
  42469. {
  42470. name: "Continent Cracker",
  42471. height: math.unit(24e6, "feet")
  42472. },
  42473. {
  42474. name: "Earth-Eclipsing",
  42475. height: math.unit(2.4e8, "feet")
  42476. },
  42477. {
  42478. name: "Sol-Swallowing",
  42479. height: math.unit(8e10, "feet")
  42480. },
  42481. {
  42482. name: "Galaxy Gulper",
  42483. height: math.unit(8, "galaxies")
  42484. },
  42485. {
  42486. name: "Light Universal",
  42487. height: math.unit(4, "universes")
  42488. },
  42489. {
  42490. name: "Universe Atoms",
  42491. height: math.unit(1.829e9, "universes")
  42492. },
  42493. {
  42494. name: "Light Multiversal",
  42495. height: math.unit(4, "multiverses")
  42496. },
  42497. {
  42498. name: "Multiverse Atoms",
  42499. height: math.unit(1.829e9, "multiverses")
  42500. },
  42501. {
  42502. name: "Nigh-Omnipresence",
  42503. height: math.unit(8e261, "multiverses")
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42509. {
  42510. front: {
  42511. height: math.unit(10, "feet"),
  42512. weight: math.unit(1500, "lb"),
  42513. name: "Front",
  42514. image: {
  42515. source: "./media/characters/miles-thestia/front.svg",
  42516. extra: 1812/1727,
  42517. bottom: 86/1898
  42518. }
  42519. },
  42520. back: {
  42521. height: math.unit(10, "feet"),
  42522. weight: math.unit(1500, "lb"),
  42523. name: "Back",
  42524. image: {
  42525. source: "./media/characters/miles-thestia/back.svg",
  42526. extra: 1799/1690,
  42527. bottom: 47/1846
  42528. }
  42529. },
  42530. frontNsfw: {
  42531. height: math.unit(10, "feet"),
  42532. weight: math.unit(1500, "lb"),
  42533. name: "Front (NSFW)",
  42534. image: {
  42535. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42536. extra: 1812/1727,
  42537. bottom: 86/1898
  42538. }
  42539. },
  42540. },
  42541. [
  42542. {
  42543. name: "Mini-Macro",
  42544. height: math.unit(10, "feet"),
  42545. default: true
  42546. },
  42547. ]
  42548. ))
  42549. characterMakers.push(() => makeCharacter(
  42550. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42551. {
  42552. front: {
  42553. height: math.unit(25, "feet"),
  42554. name: "Front",
  42555. image: {
  42556. source: "./media/characters/titan-s-wulf/front.svg",
  42557. extra: 1560/1484,
  42558. bottom: 76/1636
  42559. }
  42560. },
  42561. },
  42562. [
  42563. {
  42564. name: "Smallest",
  42565. height: math.unit(25, "feet"),
  42566. default: true
  42567. },
  42568. {
  42569. name: "Normal",
  42570. height: math.unit(200, "feet")
  42571. },
  42572. {
  42573. name: "Macro",
  42574. height: math.unit(200000, "feet")
  42575. },
  42576. {
  42577. name: "Multiversal Original",
  42578. height: math.unit(10000, "multiverses")
  42579. },
  42580. ]
  42581. ))
  42582. characterMakers.push(() => makeCharacter(
  42583. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42584. {
  42585. front: {
  42586. height: math.unit(8, "feet"),
  42587. weight: math.unit(553, "lb"),
  42588. name: "Front",
  42589. image: {
  42590. source: "./media/characters/tawendeh/front.svg",
  42591. extra: 2365/2268,
  42592. bottom: 83/2448
  42593. }
  42594. },
  42595. frontClothed: {
  42596. height: math.unit(8, "feet"),
  42597. weight: math.unit(553, "lb"),
  42598. name: "Front (Clothed)",
  42599. image: {
  42600. source: "./media/characters/tawendeh/front-clothed.svg",
  42601. extra: 2365/2268,
  42602. bottom: 83/2448
  42603. }
  42604. },
  42605. back: {
  42606. height: math.unit(8, "feet"),
  42607. weight: math.unit(553, "lb"),
  42608. name: "Back",
  42609. image: {
  42610. source: "./media/characters/tawendeh/back.svg",
  42611. extra: 2397/2294,
  42612. bottom: 42/2439
  42613. }
  42614. },
  42615. },
  42616. [
  42617. {
  42618. name: "Mortal Interaction",
  42619. height: math.unit(8, "feet"),
  42620. default: true
  42621. },
  42622. {
  42623. name: "Giant",
  42624. height: math.unit(80, "feet")
  42625. },
  42626. {
  42627. name: "Macro",
  42628. height: math.unit(800, "feet")
  42629. },
  42630. {
  42631. name: "Megamacro",
  42632. height: math.unit(8000, "feet")
  42633. },
  42634. {
  42635. name: "City-Crushing",
  42636. height: math.unit(24000, "feet")
  42637. },
  42638. {
  42639. name: "Mountain-Mashing",
  42640. height: math.unit(80000, "feet")
  42641. },
  42642. {
  42643. name: "Nation Nemesis",
  42644. height: math.unit(8e6, "feet")
  42645. },
  42646. {
  42647. name: "Continent Cracker",
  42648. height: math.unit(24e6, "feet")
  42649. },
  42650. {
  42651. name: "Earth-Eclipsing",
  42652. height: math.unit(2.4e8, "feet")
  42653. },
  42654. {
  42655. name: "Gas Giant Gulper",
  42656. height: math.unit(2.4e9, "feet")
  42657. },
  42658. {
  42659. name: "Sol-Swallowing",
  42660. height: math.unit(8e10, "feet")
  42661. },
  42662. {
  42663. name: "Galaxy Gulper",
  42664. height: math.unit(8, "galaxies")
  42665. },
  42666. {
  42667. name: "Cosmos Churner",
  42668. height: math.unit(8, "universes")
  42669. },
  42670. {
  42671. name: "Omnipotent Otter",
  42672. height: math.unit(80, "universes")
  42673. },
  42674. ]
  42675. ))
  42676. characterMakers.push(() => makeCharacter(
  42677. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42678. {
  42679. front: {
  42680. height: math.unit(2.6, "meters"),
  42681. weight: math.unit(900, "kg"),
  42682. name: "Front",
  42683. image: {
  42684. source: "./media/characters/neesha/front.svg",
  42685. extra: 1803/1653,
  42686. bottom: 128/1931
  42687. }
  42688. },
  42689. },
  42690. [
  42691. {
  42692. name: "Normal",
  42693. height: math.unit(2.6, "meters"),
  42694. default: true
  42695. },
  42696. {
  42697. name: "Macro",
  42698. height: math.unit(50, "meters")
  42699. },
  42700. ]
  42701. ))
  42702. characterMakers.push(() => makeCharacter(
  42703. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42704. {
  42705. front: {
  42706. height: math.unit(5, "feet"),
  42707. weight: math.unit(185, "lb"),
  42708. name: "Front",
  42709. image: {
  42710. source: "./media/characters/kyera/front.svg",
  42711. extra: 1875/1790,
  42712. bottom: 96/1971
  42713. }
  42714. },
  42715. },
  42716. [
  42717. {
  42718. name: "Normal",
  42719. height: math.unit(5, "feet"),
  42720. default: true
  42721. },
  42722. ]
  42723. ))
  42724. characterMakers.push(() => makeCharacter(
  42725. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42726. {
  42727. front: {
  42728. height: math.unit(7 + 6/12, "feet"),
  42729. weight: math.unit(540, "lb"),
  42730. name: "Front",
  42731. image: {
  42732. source: "./media/characters/yuko/front.svg",
  42733. extra: 1282/1222,
  42734. bottom: 101/1383
  42735. }
  42736. },
  42737. frontClothed: {
  42738. height: math.unit(7 + 6/12, "feet"),
  42739. weight: math.unit(540, "lb"),
  42740. name: "Front (Clothed)",
  42741. image: {
  42742. source: "./media/characters/yuko/front-clothed.svg",
  42743. extra: 1282/1222,
  42744. bottom: 101/1383
  42745. }
  42746. },
  42747. },
  42748. [
  42749. {
  42750. name: "Normal",
  42751. height: math.unit(7 + 6/12, "feet"),
  42752. default: true
  42753. },
  42754. {
  42755. name: "Macro",
  42756. height: math.unit(26 + 9/12, "feet")
  42757. },
  42758. {
  42759. name: "Megamacro",
  42760. height: math.unit(300, "feet")
  42761. },
  42762. {
  42763. name: "Gigamacro",
  42764. height: math.unit(5000, "feet")
  42765. },
  42766. {
  42767. name: "Planetary",
  42768. height: math.unit(10000, "miles")
  42769. },
  42770. ]
  42771. ))
  42772. characterMakers.push(() => makeCharacter(
  42773. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42774. {
  42775. front: {
  42776. height: math.unit(8 + 2/12, "feet"),
  42777. weight: math.unit(600, "lb"),
  42778. name: "Front",
  42779. image: {
  42780. source: "./media/characters/deam-nitrel/front.svg",
  42781. extra: 1308/1234,
  42782. bottom: 125/1433
  42783. }
  42784. },
  42785. },
  42786. [
  42787. {
  42788. name: "Normal",
  42789. height: math.unit(8 + 2/12, "feet"),
  42790. default: true
  42791. },
  42792. ]
  42793. ))
  42794. characterMakers.push(() => makeCharacter(
  42795. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42796. {
  42797. front: {
  42798. height: math.unit(6.1, "feet"),
  42799. weight: math.unit(180, "lb"),
  42800. name: "Front",
  42801. image: {
  42802. source: "./media/characters/skyress/front.svg",
  42803. extra: 1045/915,
  42804. bottom: 28/1073
  42805. }
  42806. },
  42807. maw: {
  42808. height: math.unit(1, "feet"),
  42809. name: "Maw",
  42810. image: {
  42811. source: "./media/characters/skyress/maw.svg"
  42812. }
  42813. },
  42814. },
  42815. [
  42816. {
  42817. name: "Normal",
  42818. height: math.unit(6.1, "feet"),
  42819. default: true
  42820. },
  42821. {
  42822. name: "Macro",
  42823. height: math.unit(200, "feet")
  42824. },
  42825. ]
  42826. ))
  42827. characterMakers.push(() => makeCharacter(
  42828. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42829. {
  42830. front: {
  42831. height: math.unit(4 + 2/12, "feet"),
  42832. weight: math.unit(40, "kg"),
  42833. name: "Front",
  42834. image: {
  42835. source: "./media/characters/amethyst-jones/front.svg",
  42836. extra: 1220/1150,
  42837. bottom: 101/1321
  42838. }
  42839. },
  42840. },
  42841. [
  42842. {
  42843. name: "Normal",
  42844. height: math.unit(4 + 2/12, "feet"),
  42845. default: true
  42846. },
  42847. ]
  42848. ))
  42849. characterMakers.push(() => makeCharacter(
  42850. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42851. {
  42852. front: {
  42853. height: math.unit(1.7, "m"),
  42854. weight: math.unit(135, "lb"),
  42855. name: "Front",
  42856. image: {
  42857. source: "./media/characters/jade/front.svg",
  42858. extra: 1818/1767,
  42859. bottom: 32/1850
  42860. }
  42861. },
  42862. back: {
  42863. height: math.unit(1.7, "m"),
  42864. weight: math.unit(135, "lb"),
  42865. name: "Back",
  42866. image: {
  42867. source: "./media/characters/jade/back.svg",
  42868. extra: 1869/1809,
  42869. bottom: 35/1904
  42870. }
  42871. },
  42872. hand: {
  42873. height: math.unit(0.24, "m"),
  42874. name: "Hand",
  42875. image: {
  42876. source: "./media/characters/jade/hand.svg"
  42877. }
  42878. },
  42879. foot: {
  42880. height: math.unit(0.263, "m"),
  42881. name: "Foot",
  42882. image: {
  42883. source: "./media/characters/jade/foot.svg"
  42884. }
  42885. },
  42886. dick: {
  42887. height: math.unit(0.47, "m"),
  42888. name: "Dick",
  42889. image: {
  42890. source: "./media/characters/jade/dick.svg"
  42891. }
  42892. },
  42893. },
  42894. [
  42895. {
  42896. name: "Micro",
  42897. height: math.unit(22, "cm")
  42898. },
  42899. {
  42900. name: "Normal",
  42901. height: math.unit(1.7, "m"),
  42902. default: true
  42903. },
  42904. {
  42905. name: "Macro",
  42906. height: math.unit(152, "m")
  42907. },
  42908. ]
  42909. ))
  42910. characterMakers.push(() => makeCharacter(
  42911. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42912. {
  42913. front: {
  42914. height: math.unit(100, "miles"),
  42915. weight: math.unit(20000, "tons"),
  42916. name: "Front",
  42917. image: {
  42918. source: "./media/characters/cookie/front.svg",
  42919. extra: 1125/1070,
  42920. bottom: 30/1155
  42921. }
  42922. },
  42923. },
  42924. [
  42925. {
  42926. name: "Big",
  42927. height: math.unit(50, "feet")
  42928. },
  42929. {
  42930. name: "Macro",
  42931. height: math.unit(100, "miles"),
  42932. default: true
  42933. },
  42934. {
  42935. name: "Megamacro",
  42936. height: math.unit(90000, "miles")
  42937. },
  42938. ]
  42939. ))
  42940. characterMakers.push(() => makeCharacter(
  42941. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42942. {
  42943. front: {
  42944. height: math.unit(6, "feet"),
  42945. weight: math.unit(145, "lb"),
  42946. name: "Front",
  42947. image: {
  42948. source: "./media/characters/farzian/front.svg",
  42949. extra: 1902/1693,
  42950. bottom: 108/2010
  42951. }
  42952. },
  42953. },
  42954. [
  42955. {
  42956. name: "Macro",
  42957. height: math.unit(500, "feet"),
  42958. default: true
  42959. },
  42960. ]
  42961. ))
  42962. characterMakers.push(() => makeCharacter(
  42963. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42964. {
  42965. front: {
  42966. height: math.unit(3 + 6/12, "feet"),
  42967. weight: math.unit(50, "lb"),
  42968. name: "Front",
  42969. image: {
  42970. source: "./media/characters/kimberly-tilson/front.svg",
  42971. extra: 1400/1322,
  42972. bottom: 36/1436
  42973. }
  42974. },
  42975. back: {
  42976. height: math.unit(3 + 6/12, "feet"),
  42977. weight: math.unit(50, "lb"),
  42978. name: "Back",
  42979. image: {
  42980. source: "./media/characters/kimberly-tilson/back.svg",
  42981. extra: 1370/1307,
  42982. bottom: 20/1390
  42983. }
  42984. },
  42985. },
  42986. [
  42987. {
  42988. name: "Normal",
  42989. height: math.unit(3 + 6/12, "feet"),
  42990. default: true
  42991. },
  42992. ]
  42993. ))
  42994. characterMakers.push(() => makeCharacter(
  42995. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42996. {
  42997. front: {
  42998. height: math.unit(350, "meters"),
  42999. weight: math.unit(7.57059e+8, "lb"),
  43000. name: "Front",
  43001. image: {
  43002. source: "./media/characters/harthos/front.svg",
  43003. extra: 455/446,
  43004. bottom: 15/470
  43005. },
  43006. form: "peacekeeper",
  43007. default: true
  43008. },
  43009. allusus_front: {
  43010. height: math.unit(270, "meters"),
  43011. weight: math.unit(3.47550e+8, "lb"),
  43012. name: "Front",
  43013. image: {
  43014. source: "./media/characters/harthos/allusus-front.svg",
  43015. extra: 455/446,
  43016. bottom: 15/470
  43017. },
  43018. form: "allusus",
  43019. },
  43020. },
  43021. [
  43022. {
  43023. name: "Macro",
  43024. height: math.unit(350, "meters"),
  43025. default: true,
  43026. form: "peacekeeper"
  43027. },
  43028. {
  43029. name: "Macro",
  43030. height: math.unit(270, "meters"),
  43031. default: true,
  43032. form: "allusus"
  43033. },
  43034. ],
  43035. {
  43036. "peacekeeper": {
  43037. name: "Peacekeeper",
  43038. default: true
  43039. },
  43040. "allusus": {
  43041. name: "Allusus",
  43042. },
  43043. }
  43044. ))
  43045. characterMakers.push(() => makeCharacter(
  43046. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43047. {
  43048. front: {
  43049. height: math.unit(15, "feet"),
  43050. name: "Front",
  43051. image: {
  43052. source: "./media/characters/hypatia/front.svg",
  43053. extra: 1653/1591,
  43054. bottom: 79/1732
  43055. }
  43056. },
  43057. },
  43058. [
  43059. {
  43060. name: "Normal",
  43061. height: math.unit(15, "feet")
  43062. },
  43063. {
  43064. name: "Small",
  43065. height: math.unit(300, "feet")
  43066. },
  43067. {
  43068. name: "Macro",
  43069. height: math.unit(2500, "feet"),
  43070. default: true
  43071. },
  43072. {
  43073. name: "Mega Macro",
  43074. height: math.unit(1500, "miles")
  43075. },
  43076. {
  43077. name: "Giga Macro",
  43078. height: math.unit(1.5e6, "miles")
  43079. },
  43080. ]
  43081. ))
  43082. characterMakers.push(() => makeCharacter(
  43083. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43084. {
  43085. front: {
  43086. height: math.unit(6, "feet"),
  43087. weight: math.unit(200, "lb"),
  43088. name: "Front",
  43089. image: {
  43090. source: "./media/characters/wulver/front.svg",
  43091. extra: 1724/1632,
  43092. bottom: 130/1854
  43093. }
  43094. },
  43095. frontNsfw: {
  43096. height: math.unit(6, "feet"),
  43097. weight: math.unit(200, "lb"),
  43098. name: "Front (NSFW)",
  43099. image: {
  43100. source: "./media/characters/wulver/front-nsfw.svg",
  43101. extra: 1724/1632,
  43102. bottom: 130/1854
  43103. }
  43104. },
  43105. },
  43106. [
  43107. {
  43108. name: "Human-Sized",
  43109. height: math.unit(6, "feet")
  43110. },
  43111. {
  43112. name: "Normal",
  43113. height: math.unit(4, "meters"),
  43114. default: true
  43115. },
  43116. {
  43117. name: "Large",
  43118. height: math.unit(6, "m")
  43119. },
  43120. ]
  43121. ))
  43122. characterMakers.push(() => makeCharacter(
  43123. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43124. {
  43125. front: {
  43126. height: math.unit(7, "feet"),
  43127. name: "Front",
  43128. image: {
  43129. source: "./media/characters/maru/front.svg",
  43130. extra: 1595/1570,
  43131. bottom: 0/1595
  43132. }
  43133. },
  43134. },
  43135. [
  43136. {
  43137. name: "Normal",
  43138. height: math.unit(7, "feet"),
  43139. default: true
  43140. },
  43141. {
  43142. name: "Macro",
  43143. height: math.unit(700, "feet")
  43144. },
  43145. {
  43146. name: "Mega Macro",
  43147. height: math.unit(25, "miles")
  43148. },
  43149. ]
  43150. ))
  43151. characterMakers.push(() => makeCharacter(
  43152. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43153. {
  43154. front: {
  43155. height: math.unit(6, "feet"),
  43156. weight: math.unit(170, "lb"),
  43157. name: "Front",
  43158. image: {
  43159. source: "./media/characters/xenon/front.svg",
  43160. extra: 1376/1305,
  43161. bottom: 56/1432
  43162. }
  43163. },
  43164. back: {
  43165. height: math.unit(6, "feet"),
  43166. weight: math.unit(170, "lb"),
  43167. name: "Back",
  43168. image: {
  43169. source: "./media/characters/xenon/back.svg",
  43170. extra: 1328/1259,
  43171. bottom: 95/1423
  43172. }
  43173. },
  43174. maw: {
  43175. height: math.unit(0.52, "feet"),
  43176. name: "Maw",
  43177. image: {
  43178. source: "./media/characters/xenon/maw.svg"
  43179. }
  43180. },
  43181. handLeft: {
  43182. height: math.unit(0.82 * 169 / 153, "feet"),
  43183. name: "Hand (Left)",
  43184. image: {
  43185. source: "./media/characters/xenon/hand-left.svg"
  43186. }
  43187. },
  43188. handRight: {
  43189. height: math.unit(0.82, "feet"),
  43190. name: "Hand (Right)",
  43191. image: {
  43192. source: "./media/characters/xenon/hand-right.svg"
  43193. }
  43194. },
  43195. footLeft: {
  43196. height: math.unit(1.13, "feet"),
  43197. name: "Foot (Left)",
  43198. image: {
  43199. source: "./media/characters/xenon/foot-left.svg"
  43200. }
  43201. },
  43202. footRight: {
  43203. height: math.unit(1.13 * 194 / 196, "feet"),
  43204. name: "Foot (Right)",
  43205. image: {
  43206. source: "./media/characters/xenon/foot-right.svg"
  43207. }
  43208. },
  43209. },
  43210. [
  43211. {
  43212. name: "Micro",
  43213. height: math.unit(0.8, "inches")
  43214. },
  43215. {
  43216. name: "Normal",
  43217. height: math.unit(6, "feet")
  43218. },
  43219. {
  43220. name: "Macro",
  43221. height: math.unit(50, "feet"),
  43222. default: true
  43223. },
  43224. {
  43225. name: "Macro+",
  43226. height: math.unit(250, "feet")
  43227. },
  43228. {
  43229. name: "Megamacro",
  43230. height: math.unit(1500, "feet")
  43231. },
  43232. ]
  43233. ))
  43234. characterMakers.push(() => makeCharacter(
  43235. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43236. {
  43237. front: {
  43238. height: math.unit(7 + 5/12, "feet"),
  43239. name: "Front",
  43240. image: {
  43241. source: "./media/characters/zane/front.svg",
  43242. extra: 1260/1203,
  43243. bottom: 94/1354
  43244. }
  43245. },
  43246. back: {
  43247. height: math.unit(5.05, "feet"),
  43248. name: "Back",
  43249. image: {
  43250. source: "./media/characters/zane/back.svg",
  43251. extra: 893/829,
  43252. bottom: 30/923
  43253. }
  43254. },
  43255. werewolf: {
  43256. height: math.unit(11, "feet"),
  43257. name: "Werewolf",
  43258. image: {
  43259. source: "./media/characters/zane/werewolf.svg",
  43260. extra: 1383/1323,
  43261. bottom: 89/1472
  43262. }
  43263. },
  43264. foot: {
  43265. height: math.unit(1.46, "feet"),
  43266. name: "Foot",
  43267. image: {
  43268. source: "./media/characters/zane/foot.svg"
  43269. }
  43270. },
  43271. footFront: {
  43272. height: math.unit(0.784, "feet"),
  43273. name: "Foot (Front)",
  43274. image: {
  43275. source: "./media/characters/zane/foot-front.svg"
  43276. }
  43277. },
  43278. dick: {
  43279. height: math.unit(1.95, "feet"),
  43280. name: "Dick",
  43281. image: {
  43282. source: "./media/characters/zane/dick.svg"
  43283. }
  43284. },
  43285. dickWerewolf: {
  43286. height: math.unit(3.77, "feet"),
  43287. name: "Dick (Werewolf)",
  43288. image: {
  43289. source: "./media/characters/zane/dick.svg"
  43290. }
  43291. },
  43292. },
  43293. [
  43294. {
  43295. name: "Normal",
  43296. height: math.unit(7 + 5/12, "feet"),
  43297. default: true
  43298. },
  43299. ]
  43300. ))
  43301. characterMakers.push(() => makeCharacter(
  43302. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43303. {
  43304. front: {
  43305. height: math.unit(6 + 2/12, "feet"),
  43306. weight: math.unit(284, "lb"),
  43307. name: "Front",
  43308. image: {
  43309. source: "./media/characters/benni-desparque/front.svg",
  43310. extra: 878/729,
  43311. bottom: 58/936
  43312. }
  43313. },
  43314. back: {
  43315. height: math.unit(6 + 2/12, "feet"),
  43316. weight: math.unit(284, "lb"),
  43317. name: "Back",
  43318. image: {
  43319. source: "./media/characters/benni-desparque/back.svg",
  43320. extra: 901/756,
  43321. bottom: 51/952
  43322. }
  43323. },
  43324. dressed: {
  43325. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43326. weight: math.unit(284, "lb"),
  43327. name: "Dressed",
  43328. image: {
  43329. source: "./media/characters/benni-desparque/dressed.svg",
  43330. extra: 1514/1276,
  43331. bottom: 65/1579
  43332. }
  43333. },
  43334. hand: {
  43335. height: math.unit(1.28, "feet"),
  43336. name: "Hand",
  43337. image: {
  43338. source: "./media/characters/benni-desparque/hand.svg"
  43339. }
  43340. },
  43341. foot: {
  43342. height: math.unit(1.53, "feet"),
  43343. name: "Foot",
  43344. image: {
  43345. source: "./media/characters/benni-desparque/foot.svg"
  43346. }
  43347. },
  43348. aiControlUnit: {
  43349. height: math.unit(0.175, "feet"),
  43350. name: "AI Control Unit",
  43351. image: {
  43352. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43353. }
  43354. },
  43355. },
  43356. [
  43357. {
  43358. name: "Civilian",
  43359. height: math.unit(6 + 2/12, "feet")
  43360. },
  43361. {
  43362. name: "Normal",
  43363. height: math.unit(98, "feet"),
  43364. default: true
  43365. },
  43366. {
  43367. name: "Kaiju Fighter",
  43368. height: math.unit(268, "feet")
  43369. },
  43370. ]
  43371. ))
  43372. characterMakers.push(() => makeCharacter(
  43373. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43374. {
  43375. front: {
  43376. height: math.unit(5, "feet"),
  43377. weight: math.unit(105, "lb"),
  43378. name: "Front",
  43379. image: {
  43380. source: "./media/characters/maxine/front.svg",
  43381. extra: 1386/1250,
  43382. bottom: 71/1457
  43383. }
  43384. },
  43385. },
  43386. [
  43387. {
  43388. name: "Normal",
  43389. height: math.unit(5, "feet"),
  43390. default: true
  43391. },
  43392. ]
  43393. ))
  43394. characterMakers.push(() => makeCharacter(
  43395. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43396. {
  43397. front: {
  43398. height: math.unit(11 + 7/12, "feet"),
  43399. weight: math.unit(9576, "lb"),
  43400. name: "Front",
  43401. image: {
  43402. source: "./media/characters/scaly/front.svg",
  43403. extra: 888/867,
  43404. bottom: 36/924
  43405. }
  43406. },
  43407. },
  43408. [
  43409. {
  43410. name: "Normal",
  43411. height: math.unit(11 + 7/12, "feet"),
  43412. default: true
  43413. },
  43414. ]
  43415. ))
  43416. characterMakers.push(() => makeCharacter(
  43417. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43418. {
  43419. front: {
  43420. height: math.unit(6 + 3/12, "feet"),
  43421. name: "Front",
  43422. image: {
  43423. source: "./media/characters/saelria/front.svg",
  43424. extra: 1243/1138,
  43425. bottom: 46/1289
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Micro",
  43432. height: math.unit(6, "inches"),
  43433. },
  43434. {
  43435. name: "Normal",
  43436. height: math.unit(6 + 3/12, "feet"),
  43437. default: true
  43438. },
  43439. {
  43440. name: "Macro",
  43441. height: math.unit(25, "feet")
  43442. },
  43443. ]
  43444. ))
  43445. characterMakers.push(() => makeCharacter(
  43446. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43447. {
  43448. front: {
  43449. height: math.unit(80, "meters"),
  43450. weight: math.unit(7000, "tonnes"),
  43451. name: "Front",
  43452. image: {
  43453. source: "./media/characters/tef/front.svg",
  43454. extra: 2036/1991,
  43455. bottom: 54/2090
  43456. }
  43457. },
  43458. back: {
  43459. height: math.unit(80, "meters"),
  43460. weight: math.unit(7000, "tonnes"),
  43461. name: "Back",
  43462. image: {
  43463. source: "./media/characters/tef/back.svg",
  43464. extra: 2036/1991,
  43465. bottom: 54/2090
  43466. }
  43467. },
  43468. },
  43469. [
  43470. {
  43471. name: "Macro",
  43472. height: math.unit(80, "meters"),
  43473. default: true
  43474. },
  43475. ]
  43476. ))
  43477. characterMakers.push(() => makeCharacter(
  43478. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43479. {
  43480. front: {
  43481. height: math.unit(13, "feet"),
  43482. weight: math.unit(6, "tons"),
  43483. name: "Front",
  43484. image: {
  43485. source: "./media/characters/rover/front.svg",
  43486. extra: 1233/1156,
  43487. bottom: 50/1283
  43488. }
  43489. },
  43490. back: {
  43491. height: math.unit(13, "feet"),
  43492. weight: math.unit(6, "tons"),
  43493. name: "Back",
  43494. image: {
  43495. source: "./media/characters/rover/back.svg",
  43496. extra: 1327/1258,
  43497. bottom: 39/1366
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Normal",
  43504. height: math.unit(13, "feet"),
  43505. default: true
  43506. },
  43507. {
  43508. name: "Macro",
  43509. height: math.unit(1300, "feet")
  43510. },
  43511. {
  43512. name: "Megamacro",
  43513. height: math.unit(1300, "miles")
  43514. },
  43515. {
  43516. name: "Gigamacro",
  43517. height: math.unit(1300000, "miles")
  43518. },
  43519. ]
  43520. ))
  43521. characterMakers.push(() => makeCharacter(
  43522. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43523. {
  43524. front: {
  43525. height: math.unit(10, "feet"),
  43526. weight: math.unit(500, "lb"),
  43527. name: "Front",
  43528. image: {
  43529. source: "./media/characters/ariz/front.svg",
  43530. extra: 461/450,
  43531. bottom: 16/477
  43532. }
  43533. },
  43534. },
  43535. [
  43536. {
  43537. name: "MiniMacro",
  43538. height: math.unit(10, "feet"),
  43539. default: true
  43540. },
  43541. ]
  43542. ))
  43543. characterMakers.push(() => makeCharacter(
  43544. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43545. {
  43546. front: {
  43547. height: math.unit(6, "feet"),
  43548. weight: math.unit(140, "lb"),
  43549. name: "Front",
  43550. image: {
  43551. source: "./media/characters/sigrun/front.svg",
  43552. extra: 1418/1359,
  43553. bottom: 27/1445
  43554. }
  43555. },
  43556. },
  43557. [
  43558. {
  43559. name: "Macro",
  43560. height: math.unit(35, "feet"),
  43561. default: true
  43562. },
  43563. ]
  43564. ))
  43565. characterMakers.push(() => makeCharacter(
  43566. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43567. {
  43568. front: {
  43569. height: math.unit(6, "feet"),
  43570. weight: math.unit(150, "lb"),
  43571. name: "Front",
  43572. image: {
  43573. source: "./media/characters/numin/front.svg",
  43574. extra: 1433/1388,
  43575. bottom: 12/1445
  43576. }
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Macro",
  43582. height: math.unit(21.5, "km"),
  43583. default: true
  43584. },
  43585. ]
  43586. ))
  43587. characterMakers.push(() => makeCharacter(
  43588. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43589. {
  43590. front: {
  43591. height: math.unit(6, "feet"),
  43592. weight: math.unit(463, "lb"),
  43593. name: "Front",
  43594. image: {
  43595. source: "./media/characters/melwa/front.svg",
  43596. extra: 1307/1248,
  43597. bottom: 93/1400
  43598. }
  43599. },
  43600. },
  43601. [
  43602. {
  43603. name: "Macro",
  43604. height: math.unit(50, "meters"),
  43605. default: true
  43606. },
  43607. ]
  43608. ))
  43609. characterMakers.push(() => makeCharacter(
  43610. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43611. {
  43612. front: {
  43613. height: math.unit(325, "feet"),
  43614. name: "Front",
  43615. image: {
  43616. source: "./media/characters/zorkaiju/front.svg",
  43617. extra: 1955/1814,
  43618. bottom: 40/1995
  43619. }
  43620. },
  43621. frontExtended: {
  43622. height: math.unit(325, "feet"),
  43623. name: "Front (Extended)",
  43624. image: {
  43625. source: "./media/characters/zorkaiju/front-extended.svg",
  43626. extra: 1955/1814,
  43627. bottom: 40/1995
  43628. }
  43629. },
  43630. side: {
  43631. height: math.unit(325, "feet"),
  43632. name: "Side",
  43633. image: {
  43634. source: "./media/characters/zorkaiju/side.svg",
  43635. extra: 1495/1396,
  43636. bottom: 17/1512
  43637. }
  43638. },
  43639. sideExtended: {
  43640. height: math.unit(325, "feet"),
  43641. name: "Side (Extended)",
  43642. image: {
  43643. source: "./media/characters/zorkaiju/side-extended.svg",
  43644. extra: 1495/1396,
  43645. bottom: 17/1512
  43646. }
  43647. },
  43648. back: {
  43649. height: math.unit(325, "feet"),
  43650. name: "Back",
  43651. image: {
  43652. source: "./media/characters/zorkaiju/back.svg",
  43653. extra: 1959/1821,
  43654. bottom: 31/1990
  43655. }
  43656. },
  43657. backExtended: {
  43658. height: math.unit(325, "feet"),
  43659. name: "Back (Extended)",
  43660. image: {
  43661. source: "./media/characters/zorkaiju/back-extended.svg",
  43662. extra: 1959/1821,
  43663. bottom: 31/1990
  43664. }
  43665. },
  43666. hand: {
  43667. height: math.unit(58.4, "feet"),
  43668. name: "Hand",
  43669. image: {
  43670. source: "./media/characters/zorkaiju/hand.svg"
  43671. }
  43672. },
  43673. handExtended: {
  43674. height: math.unit(61.4, "feet"),
  43675. name: "Hand (Extended)",
  43676. image: {
  43677. source: "./media/characters/zorkaiju/hand-extended.svg"
  43678. }
  43679. },
  43680. foot: {
  43681. height: math.unit(95, "feet"),
  43682. name: "Foot",
  43683. image: {
  43684. source: "./media/characters/zorkaiju/foot.svg"
  43685. }
  43686. },
  43687. leftArm: {
  43688. height: math.unit(59, "feet"),
  43689. name: "Left Arm",
  43690. image: {
  43691. source: "./media/characters/zorkaiju/left-arm.svg"
  43692. }
  43693. },
  43694. rightArm: {
  43695. height: math.unit(59, "feet"),
  43696. name: "Right Arm",
  43697. image: {
  43698. source: "./media/characters/zorkaiju/right-arm.svg"
  43699. }
  43700. },
  43701. leftArmExtended: {
  43702. height: math.unit(59 * 1.033546, "feet"),
  43703. name: "Left Arm (Extended)",
  43704. image: {
  43705. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43706. }
  43707. },
  43708. rightArmExtended: {
  43709. height: math.unit(59 * 1.0496, "feet"),
  43710. name: "Right Arm (Extended)",
  43711. image: {
  43712. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43713. }
  43714. },
  43715. tail: {
  43716. height: math.unit(104, "feet"),
  43717. name: "Tail",
  43718. image: {
  43719. source: "./media/characters/zorkaiju/tail.svg"
  43720. }
  43721. },
  43722. tailExtended: {
  43723. height: math.unit(104, "feet"),
  43724. name: "Tail (Extended)",
  43725. image: {
  43726. source: "./media/characters/zorkaiju/tail-extended.svg"
  43727. }
  43728. },
  43729. tailBottom: {
  43730. height: math.unit(104, "feet"),
  43731. name: "Tail Bottom",
  43732. image: {
  43733. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43734. }
  43735. },
  43736. crystal: {
  43737. height: math.unit(27.54, "feet"),
  43738. name: "Crystal",
  43739. image: {
  43740. source: "./media/characters/zorkaiju/crystal.svg"
  43741. }
  43742. },
  43743. },
  43744. [
  43745. {
  43746. name: "Kaiju",
  43747. height: math.unit(325, "feet"),
  43748. default: true
  43749. },
  43750. ]
  43751. ))
  43752. characterMakers.push(() => makeCharacter(
  43753. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43754. {
  43755. front: {
  43756. height: math.unit(6 + 1/12, "feet"),
  43757. weight: math.unit(115, "lb"),
  43758. name: "Front",
  43759. image: {
  43760. source: "./media/characters/bailey-belfry/front.svg",
  43761. extra: 1240/1121,
  43762. bottom: 101/1341
  43763. }
  43764. },
  43765. },
  43766. [
  43767. {
  43768. name: "Normal",
  43769. height: math.unit(6 + 1/12, "feet"),
  43770. default: true
  43771. },
  43772. ]
  43773. ))
  43774. characterMakers.push(() => makeCharacter(
  43775. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43776. {
  43777. side: {
  43778. height: math.unit(4, "meters"),
  43779. weight: math.unit(250, "kg"),
  43780. name: "Side",
  43781. image: {
  43782. source: "./media/characters/blacky/side.svg",
  43783. extra: 1027/919,
  43784. bottom: 43/1070
  43785. }
  43786. },
  43787. maw: {
  43788. height: math.unit(1, "meters"),
  43789. name: "Maw",
  43790. image: {
  43791. source: "./media/characters/blacky/maw.svg"
  43792. }
  43793. },
  43794. paw: {
  43795. height: math.unit(1, "meters"),
  43796. name: "Paw",
  43797. image: {
  43798. source: "./media/characters/blacky/paw.svg"
  43799. }
  43800. },
  43801. },
  43802. [
  43803. {
  43804. name: "Normal",
  43805. height: math.unit(4, "meters"),
  43806. default: true
  43807. },
  43808. ]
  43809. ))
  43810. characterMakers.push(() => makeCharacter(
  43811. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43812. {
  43813. front: {
  43814. height: math.unit(170, "cm"),
  43815. weight: math.unit(66, "kg"),
  43816. name: "Front",
  43817. image: {
  43818. source: "./media/characters/thux-ei/front.svg",
  43819. extra: 1109/1011,
  43820. bottom: 8/1117
  43821. }
  43822. },
  43823. },
  43824. [
  43825. {
  43826. name: "Normal",
  43827. height: math.unit(170, "cm"),
  43828. default: true
  43829. },
  43830. ]
  43831. ))
  43832. characterMakers.push(() => makeCharacter(
  43833. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43834. {
  43835. front: {
  43836. height: math.unit(5, "feet"),
  43837. weight: math.unit(120, "lb"),
  43838. name: "Front",
  43839. image: {
  43840. source: "./media/characters/roxanne-voltaire/front.svg",
  43841. extra: 1901/1779,
  43842. bottom: 53/1954
  43843. }
  43844. },
  43845. },
  43846. [
  43847. {
  43848. name: "Normal",
  43849. height: math.unit(5, "feet"),
  43850. default: true
  43851. },
  43852. {
  43853. name: "Giant",
  43854. height: math.unit(50, "feet")
  43855. },
  43856. {
  43857. name: "Titan",
  43858. height: math.unit(500, "feet")
  43859. },
  43860. {
  43861. name: "Macro",
  43862. height: math.unit(5000, "feet")
  43863. },
  43864. {
  43865. name: "Megamacro",
  43866. height: math.unit(50000, "feet")
  43867. },
  43868. {
  43869. name: "Gigamacro",
  43870. height: math.unit(500000, "feet")
  43871. },
  43872. {
  43873. name: "Teramacro",
  43874. height: math.unit(5e6, "feet")
  43875. },
  43876. ]
  43877. ))
  43878. characterMakers.push(() => makeCharacter(
  43879. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43880. {
  43881. front: {
  43882. height: math.unit(6 + 2/12, "feet"),
  43883. name: "Front",
  43884. image: {
  43885. source: "./media/characters/squeaks/front.svg",
  43886. extra: 1823/1768,
  43887. bottom: 138/1961
  43888. }
  43889. },
  43890. },
  43891. [
  43892. {
  43893. name: "Micro",
  43894. height: math.unit(0.5, "inches")
  43895. },
  43896. {
  43897. name: "Normal",
  43898. height: math.unit(6 + 2/12, "feet"),
  43899. default: true
  43900. },
  43901. {
  43902. name: "Macro",
  43903. height: math.unit(600, "feet")
  43904. },
  43905. ]
  43906. ))
  43907. characterMakers.push(() => makeCharacter(
  43908. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43909. {
  43910. front: {
  43911. height: math.unit(1.72, "meters"),
  43912. name: "Front",
  43913. image: {
  43914. source: "./media/characters/archinger/front.svg",
  43915. extra: 1861/1675,
  43916. bottom: 125/1986
  43917. }
  43918. },
  43919. back: {
  43920. height: math.unit(1.72, "meters"),
  43921. name: "Back",
  43922. image: {
  43923. source: "./media/characters/archinger/back.svg",
  43924. extra: 1844/1701,
  43925. bottom: 104/1948
  43926. }
  43927. },
  43928. cock: {
  43929. height: math.unit(0.59, "feet"),
  43930. name: "Cock",
  43931. image: {
  43932. source: "./media/characters/archinger/cock.svg"
  43933. }
  43934. },
  43935. },
  43936. [
  43937. {
  43938. name: "Normal",
  43939. height: math.unit(1.72, "meters"),
  43940. default: true
  43941. },
  43942. {
  43943. name: "Macro",
  43944. height: math.unit(84, "meters")
  43945. },
  43946. {
  43947. name: "Macro+",
  43948. height: math.unit(112, "meters")
  43949. },
  43950. {
  43951. name: "Macro++",
  43952. height: math.unit(960, "meters")
  43953. },
  43954. {
  43955. name: "Macro+++",
  43956. height: math.unit(4, "km")
  43957. },
  43958. {
  43959. name: "Macro++++",
  43960. height: math.unit(48, "km")
  43961. },
  43962. {
  43963. name: "Macro+++++",
  43964. height: math.unit(4500, "km")
  43965. },
  43966. ]
  43967. ))
  43968. characterMakers.push(() => makeCharacter(
  43969. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43970. {
  43971. front: {
  43972. height: math.unit(5 + 5/12, "feet"),
  43973. name: "Front",
  43974. image: {
  43975. source: "./media/characters/alsnapz/front.svg",
  43976. extra: 1157/1065,
  43977. bottom: 42/1199
  43978. }
  43979. },
  43980. },
  43981. [
  43982. {
  43983. name: "Normal",
  43984. height: math.unit(5 + 5/12, "feet"),
  43985. default: true
  43986. },
  43987. ]
  43988. ))
  43989. characterMakers.push(() => makeCharacter(
  43990. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43991. {
  43992. side: {
  43993. height: math.unit(3.2, "earths"),
  43994. name: "Side",
  43995. image: {
  43996. source: "./media/characters/mag/side.svg",
  43997. extra: 1331/1008,
  43998. bottom: 52/1383
  43999. }
  44000. },
  44001. wing: {
  44002. height: math.unit(1.94, "earths"),
  44003. name: "Wing",
  44004. image: {
  44005. source: "./media/characters/mag/wing.svg"
  44006. }
  44007. },
  44008. dick: {
  44009. height: math.unit(1.8, "earths"),
  44010. name: "Dick",
  44011. image: {
  44012. source: "./media/characters/mag/dick.svg"
  44013. }
  44014. },
  44015. ass: {
  44016. height: math.unit(1.33, "earths"),
  44017. name: "Ass",
  44018. image: {
  44019. source: "./media/characters/mag/ass.svg"
  44020. }
  44021. },
  44022. head: {
  44023. height: math.unit(1.1, "earths"),
  44024. name: "Head",
  44025. image: {
  44026. source: "./media/characters/mag/head.svg"
  44027. }
  44028. },
  44029. maw: {
  44030. height: math.unit(1.62, "earths"),
  44031. name: "Maw",
  44032. image: {
  44033. source: "./media/characters/mag/maw.svg"
  44034. }
  44035. },
  44036. },
  44037. [
  44038. {
  44039. name: "Small",
  44040. height: math.unit(162, "feet")
  44041. },
  44042. {
  44043. name: "Normal",
  44044. height: math.unit(3.2, "earths"),
  44045. default: true
  44046. },
  44047. ]
  44048. ))
  44049. characterMakers.push(() => makeCharacter(
  44050. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44051. {
  44052. front: {
  44053. height: math.unit(512, "feet"),
  44054. weight: math.unit(63509, "tonnes"),
  44055. name: "Front",
  44056. image: {
  44057. source: "./media/characters/vorrel-harroc/front.svg",
  44058. extra: 1075/1063,
  44059. bottom: 62/1137
  44060. }
  44061. },
  44062. },
  44063. [
  44064. {
  44065. name: "Normal",
  44066. height: math.unit(10, "feet")
  44067. },
  44068. {
  44069. name: "Macro",
  44070. height: math.unit(512, "feet"),
  44071. default: true
  44072. },
  44073. {
  44074. name: "Megamacro",
  44075. height: math.unit(256, "miles")
  44076. },
  44077. {
  44078. name: "Gigamacro",
  44079. height: math.unit(4096, "miles")
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44085. {
  44086. side: {
  44087. height: math.unit(50, "feet"),
  44088. name: "Side",
  44089. image: {
  44090. source: "./media/characters/froimar/side.svg",
  44091. extra: 855/638,
  44092. bottom: 99/954
  44093. }
  44094. },
  44095. },
  44096. [
  44097. {
  44098. name: "Macro",
  44099. height: math.unit(50, "feet"),
  44100. default: true
  44101. },
  44102. ]
  44103. ))
  44104. characterMakers.push(() => makeCharacter(
  44105. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44106. {
  44107. front: {
  44108. height: math.unit(210, "miles"),
  44109. name: "Front",
  44110. image: {
  44111. source: "./media/characters/timothy/front.svg",
  44112. extra: 1007/943,
  44113. bottom: 62/1069
  44114. }
  44115. },
  44116. frontSkirt: {
  44117. height: math.unit(210, "miles"),
  44118. name: "Front (Skirt)",
  44119. image: {
  44120. source: "./media/characters/timothy/front-skirt.svg",
  44121. extra: 1007/943,
  44122. bottom: 62/1069
  44123. }
  44124. },
  44125. frontCoat: {
  44126. height: math.unit(210, "miles"),
  44127. name: "Front (Coat)",
  44128. image: {
  44129. source: "./media/characters/timothy/front-coat.svg",
  44130. extra: 1007/943,
  44131. bottom: 62/1069
  44132. }
  44133. },
  44134. },
  44135. [
  44136. {
  44137. name: "Macro",
  44138. height: math.unit(210, "miles"),
  44139. default: true
  44140. },
  44141. {
  44142. name: "Megamacro",
  44143. height: math.unit(210000, "miles")
  44144. },
  44145. ]
  44146. ))
  44147. characterMakers.push(() => makeCharacter(
  44148. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44149. {
  44150. front: {
  44151. height: math.unit(188, "feet"),
  44152. name: "Front",
  44153. image: {
  44154. source: "./media/characters/pyotr/front.svg",
  44155. extra: 1912/1826,
  44156. bottom: 18/1930
  44157. }
  44158. },
  44159. },
  44160. [
  44161. {
  44162. name: "Macro",
  44163. height: math.unit(188, "feet"),
  44164. default: true
  44165. },
  44166. {
  44167. name: "Megamacro",
  44168. height: math.unit(8, "miles")
  44169. },
  44170. ]
  44171. ))
  44172. characterMakers.push(() => makeCharacter(
  44173. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44174. {
  44175. side: {
  44176. height: math.unit(10, "feet"),
  44177. weight: math.unit(4500, "lb"),
  44178. name: "Side",
  44179. image: {
  44180. source: "./media/characters/ackart/side.svg",
  44181. extra: 1776/1668,
  44182. bottom: 116/1892
  44183. }
  44184. },
  44185. },
  44186. [
  44187. {
  44188. name: "Normal",
  44189. height: math.unit(10, "feet"),
  44190. default: true
  44191. },
  44192. ]
  44193. ))
  44194. characterMakers.push(() => makeCharacter(
  44195. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44196. {
  44197. side: {
  44198. height: math.unit(21, "feet"),
  44199. name: "Side",
  44200. image: {
  44201. source: "./media/characters/nolow/side.svg",
  44202. extra: 1484/1434,
  44203. bottom: 85/1569
  44204. }
  44205. },
  44206. sideErect: {
  44207. height: math.unit(21, "feet"),
  44208. name: "Side-erect",
  44209. image: {
  44210. source: "./media/characters/nolow/side-erect.svg",
  44211. extra: 1484/1434,
  44212. bottom: 85/1569
  44213. }
  44214. },
  44215. },
  44216. [
  44217. {
  44218. name: "Regular",
  44219. height: math.unit(12, "feet")
  44220. },
  44221. {
  44222. name: "Big Chee",
  44223. height: math.unit(21, "feet"),
  44224. default: true
  44225. },
  44226. ]
  44227. ))
  44228. characterMakers.push(() => makeCharacter(
  44229. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44230. {
  44231. front: {
  44232. height: math.unit(7, "feet"),
  44233. weight: math.unit(250, "lb"),
  44234. name: "Front",
  44235. image: {
  44236. source: "./media/characters/nines/front.svg",
  44237. extra: 1741/1607,
  44238. bottom: 41/1782
  44239. }
  44240. },
  44241. side: {
  44242. height: math.unit(7, "feet"),
  44243. weight: math.unit(250, "lb"),
  44244. name: "Side",
  44245. image: {
  44246. source: "./media/characters/nines/side.svg",
  44247. extra: 1854/1735,
  44248. bottom: 93/1947
  44249. }
  44250. },
  44251. back: {
  44252. height: math.unit(7, "feet"),
  44253. weight: math.unit(250, "lb"),
  44254. name: "Back",
  44255. image: {
  44256. source: "./media/characters/nines/back.svg",
  44257. extra: 1748/1615,
  44258. bottom: 20/1768
  44259. }
  44260. },
  44261. },
  44262. [
  44263. {
  44264. name: "Megamacro",
  44265. height: math.unit(99, "km"),
  44266. default: true
  44267. },
  44268. ]
  44269. ))
  44270. characterMakers.push(() => makeCharacter(
  44271. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44272. {
  44273. front: {
  44274. height: math.unit(5 + 10/12, "feet"),
  44275. weight: math.unit(210, "lb"),
  44276. name: "Front",
  44277. image: {
  44278. source: "./media/characters/zenith/front.svg",
  44279. extra: 1531/1452,
  44280. bottom: 198/1729
  44281. }
  44282. },
  44283. back: {
  44284. height: math.unit(5 + 10/12, "feet"),
  44285. weight: math.unit(210, "lb"),
  44286. name: "Back",
  44287. image: {
  44288. source: "./media/characters/zenith/back.svg",
  44289. extra: 1571/1487,
  44290. bottom: 75/1646
  44291. }
  44292. },
  44293. },
  44294. [
  44295. {
  44296. name: "Normal",
  44297. height: math.unit(5 + 10/12, "feet"),
  44298. default: true
  44299. }
  44300. ]
  44301. ))
  44302. characterMakers.push(() => makeCharacter(
  44303. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44304. {
  44305. front: {
  44306. height: math.unit(4, "feet"),
  44307. weight: math.unit(60, "lb"),
  44308. name: "Front",
  44309. image: {
  44310. source: "./media/characters/jasper/front.svg",
  44311. extra: 1450/1379,
  44312. bottom: 19/1469
  44313. }
  44314. },
  44315. },
  44316. [
  44317. {
  44318. name: "Normal",
  44319. height: math.unit(4, "feet"),
  44320. default: true
  44321. },
  44322. ]
  44323. ))
  44324. characterMakers.push(() => makeCharacter(
  44325. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44326. {
  44327. front: {
  44328. height: math.unit(6 + 5/12, "feet"),
  44329. weight: math.unit(290, "lb"),
  44330. name: "Front",
  44331. image: {
  44332. source: "./media/characters/tiberius-thyben/front.svg",
  44333. extra: 757/739,
  44334. bottom: 39/796
  44335. }
  44336. },
  44337. },
  44338. [
  44339. {
  44340. name: "Micro",
  44341. height: math.unit(1.5, "inches")
  44342. },
  44343. {
  44344. name: "Normal",
  44345. height: math.unit(6 + 5/12, "feet"),
  44346. default: true
  44347. },
  44348. {
  44349. name: "Macro",
  44350. height: math.unit(300, "feet")
  44351. },
  44352. ]
  44353. ))
  44354. characterMakers.push(() => makeCharacter(
  44355. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44356. {
  44357. front: {
  44358. height: math.unit(5 + 6/12, "feet"),
  44359. weight: math.unit(60, "kg"),
  44360. name: "Front",
  44361. image: {
  44362. source: "./media/characters/sabre/front.svg",
  44363. extra: 738/671,
  44364. bottom: 27/765
  44365. }
  44366. },
  44367. },
  44368. [
  44369. {
  44370. name: "Teeny",
  44371. height: math.unit(2, "inches")
  44372. },
  44373. {
  44374. name: "Smol",
  44375. height: math.unit(8, "inches")
  44376. },
  44377. {
  44378. name: "Normal",
  44379. height: math.unit(5 + 6/12, "feet"),
  44380. default: true
  44381. },
  44382. {
  44383. name: "Mini-Macro",
  44384. height: math.unit(15, "feet")
  44385. },
  44386. {
  44387. name: "Macro",
  44388. height: math.unit(50, "feet")
  44389. },
  44390. ]
  44391. ))
  44392. characterMakers.push(() => makeCharacter(
  44393. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44394. {
  44395. front: {
  44396. height: math.unit(6 + 4/12, "feet"),
  44397. weight: math.unit(170, "lb"),
  44398. name: "Front",
  44399. image: {
  44400. source: "./media/characters/charlie/front.svg",
  44401. extra: 1348/1228,
  44402. bottom: 15/1363
  44403. }
  44404. },
  44405. },
  44406. [
  44407. {
  44408. name: "Macro",
  44409. height: math.unit(1700, "meters"),
  44410. default: true
  44411. },
  44412. {
  44413. name: "MegaMacro",
  44414. height: math.unit(20400, "meters")
  44415. },
  44416. ]
  44417. ))
  44418. characterMakers.push(() => makeCharacter(
  44419. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44420. {
  44421. front: {
  44422. height: math.unit(1.96, "meters"),
  44423. weight: math.unit(220, "lb"),
  44424. name: "Front",
  44425. image: {
  44426. source: "./media/characters/susan-grant/front.svg",
  44427. extra: 482/478,
  44428. bottom: 7/489
  44429. }
  44430. },
  44431. },
  44432. [
  44433. {
  44434. name: "Normal",
  44435. height: math.unit(1.96, "meters"),
  44436. default: true
  44437. },
  44438. {
  44439. name: "Macro",
  44440. height: math.unit(76.2, "meters")
  44441. },
  44442. {
  44443. name: "MegaMacro",
  44444. height: math.unit(305, "meters")
  44445. },
  44446. {
  44447. name: "GigaMacro",
  44448. height: math.unit(1220, "meters")
  44449. },
  44450. {
  44451. name: "SuperMacro",
  44452. height: math.unit(4878, "meters")
  44453. },
  44454. ]
  44455. ))
  44456. characterMakers.push(() => makeCharacter(
  44457. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44458. {
  44459. front: {
  44460. height: math.unit(5 + 4/12, "feet"),
  44461. weight: math.unit(110, "lb"),
  44462. name: "Front",
  44463. image: {
  44464. source: "./media/characters/axel-isanov/front.svg",
  44465. extra: 1096/1065,
  44466. bottom: 13/1109
  44467. }
  44468. },
  44469. },
  44470. [
  44471. {
  44472. name: "Normal",
  44473. height: math.unit(5 + 4/12, "feet"),
  44474. default: true
  44475. },
  44476. ]
  44477. ))
  44478. characterMakers.push(() => makeCharacter(
  44479. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44480. {
  44481. front: {
  44482. height: math.unit(9, "feet"),
  44483. weight: math.unit(467, "lb"),
  44484. name: "Front",
  44485. image: {
  44486. source: "./media/characters/necahual/front.svg",
  44487. extra: 920/873,
  44488. bottom: 26/946
  44489. }
  44490. },
  44491. back: {
  44492. height: math.unit(9, "feet"),
  44493. weight: math.unit(467, "lb"),
  44494. name: "Back",
  44495. image: {
  44496. source: "./media/characters/necahual/back.svg",
  44497. extra: 930/884,
  44498. bottom: 16/946
  44499. }
  44500. },
  44501. frontUnderwear: {
  44502. height: math.unit(9, "feet"),
  44503. weight: math.unit(467, "lb"),
  44504. name: "Front (Underwear)",
  44505. image: {
  44506. source: "./media/characters/necahual/front-underwear.svg",
  44507. extra: 920/873,
  44508. bottom: 26/946
  44509. }
  44510. },
  44511. frontDressed: {
  44512. height: math.unit(9, "feet"),
  44513. weight: math.unit(467, "lb"),
  44514. name: "Front (Dressed)",
  44515. image: {
  44516. source: "./media/characters/necahual/front-dressed.svg",
  44517. extra: 920/873,
  44518. bottom: 26/946
  44519. }
  44520. },
  44521. },
  44522. [
  44523. {
  44524. name: "Comprsesed",
  44525. height: math.unit(9, "feet")
  44526. },
  44527. {
  44528. name: "Natural",
  44529. height: math.unit(15, "feet"),
  44530. default: true
  44531. },
  44532. {
  44533. name: "Boosted",
  44534. height: math.unit(50, "feet")
  44535. },
  44536. {
  44537. name: "Boosted+",
  44538. height: math.unit(150, "feet")
  44539. },
  44540. {
  44541. name: "Max",
  44542. height: math.unit(500, "feet")
  44543. },
  44544. ]
  44545. ))
  44546. characterMakers.push(() => makeCharacter(
  44547. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44548. {
  44549. front: {
  44550. height: math.unit(22 + 1/12, "feet"),
  44551. weight: math.unit(3200, "lb"),
  44552. name: "Front",
  44553. image: {
  44554. source: "./media/characters/theo-acacia/front.svg",
  44555. extra: 1796/1741,
  44556. bottom: 83/1879
  44557. }
  44558. },
  44559. frontUnderwear: {
  44560. height: math.unit(22 + 1/12, "feet"),
  44561. weight: math.unit(3200, "lb"),
  44562. name: "Front (Underwear)",
  44563. image: {
  44564. source: "./media/characters/theo-acacia/front-underwear.svg",
  44565. extra: 1796/1741,
  44566. bottom: 83/1879
  44567. }
  44568. },
  44569. frontNude: {
  44570. height: math.unit(22 + 1/12, "feet"),
  44571. weight: math.unit(3200, "lb"),
  44572. name: "Front (Nude)",
  44573. image: {
  44574. source: "./media/characters/theo-acacia/front-nude.svg",
  44575. extra: 1796/1741,
  44576. bottom: 83/1879
  44577. }
  44578. },
  44579. },
  44580. [
  44581. {
  44582. name: "Normal",
  44583. height: math.unit(22 + 1/12, "feet"),
  44584. default: true
  44585. },
  44586. ]
  44587. ))
  44588. characterMakers.push(() => makeCharacter(
  44589. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44590. {
  44591. front: {
  44592. height: math.unit(20, "feet"),
  44593. name: "Front",
  44594. image: {
  44595. source: "./media/characters/astra/front.svg",
  44596. extra: 1850/1714,
  44597. bottom: 106/1956
  44598. }
  44599. },
  44600. frontUndressed: {
  44601. height: math.unit(20, "feet"),
  44602. name: "Front (Undressed)",
  44603. image: {
  44604. source: "./media/characters/astra/front-undressed.svg",
  44605. extra: 1926/1749,
  44606. bottom: 0/1926
  44607. }
  44608. },
  44609. hand: {
  44610. height: math.unit(1.53, "feet"),
  44611. name: "Hand",
  44612. image: {
  44613. source: "./media/characters/astra/hand.svg"
  44614. }
  44615. },
  44616. paw: {
  44617. height: math.unit(1.53, "feet"),
  44618. name: "Paw",
  44619. image: {
  44620. source: "./media/characters/astra/paw.svg"
  44621. }
  44622. },
  44623. },
  44624. [
  44625. {
  44626. name: "Smallest",
  44627. height: math.unit(20, "feet")
  44628. },
  44629. {
  44630. name: "Normal",
  44631. height: math.unit(1e9, "miles"),
  44632. default: true
  44633. },
  44634. {
  44635. name: "Larger",
  44636. height: math.unit(5, "multiverses")
  44637. },
  44638. {
  44639. name: "Largest",
  44640. height: math.unit(1e9, "multiverses")
  44641. },
  44642. ]
  44643. ))
  44644. characterMakers.push(() => makeCharacter(
  44645. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44646. {
  44647. front: {
  44648. height: math.unit(8, "feet"),
  44649. name: "Front",
  44650. image: {
  44651. source: "./media/characters/breanna/front.svg",
  44652. extra: 1912/1632,
  44653. bottom: 33/1945
  44654. }
  44655. },
  44656. },
  44657. [
  44658. {
  44659. name: "Smallest",
  44660. height: math.unit(8, "feet")
  44661. },
  44662. {
  44663. name: "Normal",
  44664. height: math.unit(1, "mile"),
  44665. default: true
  44666. },
  44667. {
  44668. name: "Maximum",
  44669. height: math.unit(1500000000000, "lightyears")
  44670. },
  44671. ]
  44672. ))
  44673. characterMakers.push(() => makeCharacter(
  44674. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44675. {
  44676. front: {
  44677. height: math.unit(5 + 11/12, "feet"),
  44678. weight: math.unit(155, "lb"),
  44679. name: "Front",
  44680. image: {
  44681. source: "./media/characters/cai/front.svg",
  44682. extra: 1823/1702,
  44683. bottom: 32/1855
  44684. }
  44685. },
  44686. back: {
  44687. height: math.unit(5 + 11/12, "feet"),
  44688. weight: math.unit(155, "lb"),
  44689. name: "Back",
  44690. image: {
  44691. source: "./media/characters/cai/back.svg",
  44692. extra: 1809/1708,
  44693. bottom: 31/1840
  44694. }
  44695. },
  44696. },
  44697. [
  44698. {
  44699. name: "Normal",
  44700. height: math.unit(5 + 11/12, "feet"),
  44701. default: true
  44702. },
  44703. {
  44704. name: "Big",
  44705. height: math.unit(15, "feet")
  44706. },
  44707. {
  44708. name: "Macro",
  44709. height: math.unit(200, "feet")
  44710. },
  44711. ]
  44712. ))
  44713. characterMakers.push(() => makeCharacter(
  44714. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44715. {
  44716. front: {
  44717. height: math.unit(5 + 6/12, "feet"),
  44718. weight: math.unit(160, "lb"),
  44719. name: "Front",
  44720. image: {
  44721. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44722. extra: 1227/1174,
  44723. bottom: 37/1264
  44724. }
  44725. },
  44726. },
  44727. [
  44728. {
  44729. name: "Macro",
  44730. height: math.unit(444, "meters"),
  44731. default: true
  44732. },
  44733. ]
  44734. ))
  44735. characterMakers.push(() => makeCharacter(
  44736. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44737. {
  44738. front: {
  44739. height: math.unit(18 + 7/12, "feet"),
  44740. name: "Front",
  44741. image: {
  44742. source: "./media/characters/rex/front.svg",
  44743. extra: 1941/1807,
  44744. bottom: 66/2007
  44745. }
  44746. },
  44747. back: {
  44748. height: math.unit(18 + 7/12, "feet"),
  44749. name: "Back",
  44750. image: {
  44751. source: "./media/characters/rex/back.svg",
  44752. extra: 1937/1822,
  44753. bottom: 42/1979
  44754. }
  44755. },
  44756. boot: {
  44757. height: math.unit(3.45, "feet"),
  44758. name: "Boot",
  44759. image: {
  44760. source: "./media/characters/rex/boot.svg"
  44761. }
  44762. },
  44763. paw: {
  44764. height: math.unit(4.17, "feet"),
  44765. name: "Paw",
  44766. image: {
  44767. source: "./media/characters/rex/paw.svg"
  44768. }
  44769. },
  44770. head: {
  44771. height: math.unit(6.728, "feet"),
  44772. name: "Head",
  44773. image: {
  44774. source: "./media/characters/rex/head.svg"
  44775. }
  44776. },
  44777. },
  44778. [
  44779. {
  44780. name: "Nano",
  44781. height: math.unit(18 + 7/12, "feet")
  44782. },
  44783. {
  44784. name: "Micro",
  44785. height: math.unit(1.5, "megameters")
  44786. },
  44787. {
  44788. name: "Normal",
  44789. height: math.unit(440, "megameters"),
  44790. default: true
  44791. },
  44792. {
  44793. name: "Macro",
  44794. height: math.unit(2.5, "gigameters")
  44795. },
  44796. {
  44797. name: "Gigamacro",
  44798. height: math.unit(2, "galaxies")
  44799. },
  44800. ]
  44801. ))
  44802. characterMakers.push(() => makeCharacter(
  44803. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44804. {
  44805. side: {
  44806. height: math.unit(32, "feet"),
  44807. weight: math.unit(250000, "lb"),
  44808. name: "Side",
  44809. image: {
  44810. source: "./media/characters/silverwing/side.svg",
  44811. extra: 1100/1019,
  44812. bottom: 204/1304
  44813. }
  44814. },
  44815. },
  44816. [
  44817. {
  44818. name: "Normal",
  44819. height: math.unit(32, "feet"),
  44820. default: true
  44821. },
  44822. ]
  44823. ))
  44824. characterMakers.push(() => makeCharacter(
  44825. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44826. {
  44827. front: {
  44828. height: math.unit(6 + 6/12, "feet"),
  44829. weight: math.unit(350, "lb"),
  44830. name: "Front",
  44831. image: {
  44832. source: "./media/characters/tristan-hawthorne/front.svg",
  44833. extra: 1159/1124,
  44834. bottom: 37/1196
  44835. },
  44836. form: "labrador",
  44837. default: true
  44838. },
  44839. skunkFront: {
  44840. height: math.unit(4 + 6/12, "feet"),
  44841. weight: math.unit(120, "lb"),
  44842. name: "Front",
  44843. image: {
  44844. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44845. extra: 1609/1551,
  44846. bottom: 169/1778
  44847. },
  44848. form: "skunk",
  44849. default: true
  44850. },
  44851. },
  44852. [
  44853. {
  44854. name: "Normal",
  44855. height: math.unit(6 + 6/12, "feet"),
  44856. form: "labrador",
  44857. default: true
  44858. },
  44859. {
  44860. name: "Normal",
  44861. height: math.unit(4 + 6/12, "feet"),
  44862. form: "skunk",
  44863. default: true
  44864. },
  44865. ],
  44866. {
  44867. "labrador": {
  44868. name: "Labrador",
  44869. default: true
  44870. },
  44871. "skunk": {
  44872. name: "Skunk"
  44873. }
  44874. }
  44875. ))
  44876. characterMakers.push(() => makeCharacter(
  44877. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44878. {
  44879. front: {
  44880. height: math.unit(5 + 11/12, "feet"),
  44881. weight: math.unit(190, "lb"),
  44882. name: "Front",
  44883. image: {
  44884. source: "./media/characters/mizu/front.svg",
  44885. extra: 1988/1788,
  44886. bottom: 14/2002
  44887. }
  44888. },
  44889. },
  44890. [
  44891. {
  44892. name: "Normal",
  44893. height: math.unit(5 + 11/12, "feet"),
  44894. default: true
  44895. },
  44896. ]
  44897. ))
  44898. characterMakers.push(() => makeCharacter(
  44899. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44900. {
  44901. front: {
  44902. height: math.unit(1.7, "feet"),
  44903. weight: math.unit(50, "lb"),
  44904. name: "Front",
  44905. image: {
  44906. source: "./media/characters/dechroma/front.svg",
  44907. extra: 1095/859,
  44908. bottom: 64/1159
  44909. }
  44910. },
  44911. },
  44912. [
  44913. {
  44914. name: "Normal",
  44915. height: math.unit(1.7, "feet"),
  44916. default: true
  44917. },
  44918. ]
  44919. ))
  44920. characterMakers.push(() => makeCharacter(
  44921. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44922. {
  44923. side: {
  44924. height: math.unit(30, "feet"),
  44925. name: "Side",
  44926. image: {
  44927. source: "./media/characters/veluren-thanazel/side.svg",
  44928. extra: 1611/633,
  44929. bottom: 118/1729
  44930. }
  44931. },
  44932. front: {
  44933. height: math.unit(30, "feet"),
  44934. name: "Front",
  44935. image: {
  44936. source: "./media/characters/veluren-thanazel/front.svg",
  44937. extra: 1486/636,
  44938. bottom: 238/1724
  44939. }
  44940. },
  44941. head: {
  44942. height: math.unit(21.4, "feet"),
  44943. name: "Head",
  44944. image: {
  44945. source: "./media/characters/veluren-thanazel/head.svg"
  44946. }
  44947. },
  44948. genitals: {
  44949. height: math.unit(19.4, "feet"),
  44950. name: "Genitals",
  44951. image: {
  44952. source: "./media/characters/veluren-thanazel/genitals.svg"
  44953. }
  44954. },
  44955. },
  44956. [
  44957. {
  44958. name: "Social",
  44959. height: math.unit(6, "feet")
  44960. },
  44961. {
  44962. name: "Play",
  44963. height: math.unit(12, "feet")
  44964. },
  44965. {
  44966. name: "True",
  44967. height: math.unit(30, "feet"),
  44968. default: true
  44969. },
  44970. ]
  44971. ))
  44972. characterMakers.push(() => makeCharacter(
  44973. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44974. {
  44975. front: {
  44976. height: math.unit(7 + 6/12, "feet"),
  44977. weight: math.unit(500, "kg"),
  44978. name: "Front",
  44979. image: {
  44980. source: "./media/characters/arcturas/front.svg",
  44981. extra: 1700/1500,
  44982. bottom: 145/1845
  44983. }
  44984. },
  44985. },
  44986. [
  44987. {
  44988. name: "Normal",
  44989. height: math.unit(7 + 6/12, "feet"),
  44990. default: true
  44991. },
  44992. ]
  44993. ))
  44994. characterMakers.push(() => makeCharacter(
  44995. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44996. {
  44997. side: {
  44998. height: math.unit(6, "feet"),
  44999. weight: math.unit(2, "tons"),
  45000. name: "Side",
  45001. image: {
  45002. source: "./media/characters/vitaen/side.svg",
  45003. extra: 1157/617,
  45004. bottom: 122/1279
  45005. }
  45006. },
  45007. },
  45008. [
  45009. {
  45010. name: "Normal",
  45011. height: math.unit(6, "feet"),
  45012. default: true
  45013. },
  45014. ]
  45015. ))
  45016. characterMakers.push(() => makeCharacter(
  45017. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45018. {
  45019. front: {
  45020. height: math.unit(19, "feet"),
  45021. name: "Front",
  45022. image: {
  45023. source: "./media/characters/fia-dreamweaver/front.svg",
  45024. extra: 1630/1504,
  45025. bottom: 25/1655
  45026. }
  45027. },
  45028. },
  45029. [
  45030. {
  45031. name: "Normal",
  45032. height: math.unit(19, "feet"),
  45033. default: true
  45034. },
  45035. ]
  45036. ))
  45037. characterMakers.push(() => makeCharacter(
  45038. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45039. {
  45040. front: {
  45041. height: math.unit(5 + 4/12, "feet"),
  45042. name: "Front",
  45043. image: {
  45044. source: "./media/characters/artan/front.svg",
  45045. extra: 1618/1535,
  45046. bottom: 46/1664
  45047. }
  45048. },
  45049. back: {
  45050. height: math.unit(5 + 4/12, "feet"),
  45051. name: "Back",
  45052. image: {
  45053. source: "./media/characters/artan/back.svg",
  45054. extra: 1618/1543,
  45055. bottom: 31/1649
  45056. }
  45057. },
  45058. },
  45059. [
  45060. {
  45061. name: "Normal",
  45062. height: math.unit(5 + 4/12, "feet"),
  45063. default: true
  45064. },
  45065. ]
  45066. ))
  45067. characterMakers.push(() => makeCharacter(
  45068. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45069. {
  45070. side: {
  45071. height: math.unit(182, "cm"),
  45072. weight: math.unit(1000, "lb"),
  45073. name: "Side",
  45074. image: {
  45075. source: "./media/characters/silver-dragon/side.svg",
  45076. extra: 710/287,
  45077. bottom: 88/798
  45078. }
  45079. },
  45080. },
  45081. [
  45082. {
  45083. name: "Normal",
  45084. height: math.unit(182, "cm"),
  45085. default: true
  45086. },
  45087. ]
  45088. ))
  45089. characterMakers.push(() => makeCharacter(
  45090. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45091. {
  45092. side: {
  45093. height: math.unit(6 + 6/12, "feet"),
  45094. weight: math.unit(1.5, "tons"),
  45095. name: "Side",
  45096. image: {
  45097. source: "./media/characters/zephyr/side.svg",
  45098. extra: 1433/586,
  45099. bottom: 109/1542
  45100. }
  45101. },
  45102. },
  45103. [
  45104. {
  45105. name: "Normal",
  45106. height: math.unit(6 + 6/12, "feet"),
  45107. default: true
  45108. },
  45109. ]
  45110. ))
  45111. characterMakers.push(() => makeCharacter(
  45112. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45113. {
  45114. side: {
  45115. height: math.unit(1, "feet"),
  45116. name: "Side",
  45117. image: {
  45118. source: "./media/characters/vixye/side.svg",
  45119. extra: 632/541,
  45120. bottom: 0/632
  45121. }
  45122. },
  45123. },
  45124. [
  45125. {
  45126. name: "Normal",
  45127. height: math.unit(1, "feet"),
  45128. default: true
  45129. },
  45130. {
  45131. name: "True",
  45132. height: math.unit(1e15, "multiverses")
  45133. },
  45134. ]
  45135. ))
  45136. characterMakers.push(() => makeCharacter(
  45137. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45138. {
  45139. front: {
  45140. height: math.unit(8 + 2/12, "feet"),
  45141. weight: math.unit(650, "lb"),
  45142. name: "Front",
  45143. image: {
  45144. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45145. extra: 1174/1137,
  45146. bottom: 82/1256
  45147. }
  45148. },
  45149. back: {
  45150. height: math.unit(8 + 2/12, "feet"),
  45151. weight: math.unit(650, "lb"),
  45152. name: "Back",
  45153. image: {
  45154. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45155. extra: 1204/1157,
  45156. bottom: 46/1250
  45157. }
  45158. },
  45159. },
  45160. [
  45161. {
  45162. name: "Wildform",
  45163. height: math.unit(8 + 2/12, "feet"),
  45164. default: true
  45165. },
  45166. ]
  45167. ))
  45168. characterMakers.push(() => makeCharacter(
  45169. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45170. {
  45171. front: {
  45172. height: math.unit(18, "feet"),
  45173. name: "Front",
  45174. image: {
  45175. source: "./media/characters/cyphin/front.svg",
  45176. extra: 970/886,
  45177. bottom: 42/1012
  45178. }
  45179. },
  45180. back: {
  45181. height: math.unit(18, "feet"),
  45182. name: "Back",
  45183. image: {
  45184. source: "./media/characters/cyphin/back.svg",
  45185. extra: 1009/894,
  45186. bottom: 24/1033
  45187. }
  45188. },
  45189. head: {
  45190. height: math.unit(5.05, "feet"),
  45191. name: "Head",
  45192. image: {
  45193. source: "./media/characters/cyphin/head.svg"
  45194. }
  45195. },
  45196. tailbud: {
  45197. height: math.unit(5, "feet"),
  45198. name: "Tailbud",
  45199. image: {
  45200. source: "./media/characters/cyphin/tailbud.svg"
  45201. }
  45202. },
  45203. },
  45204. [
  45205. ]
  45206. ))
  45207. characterMakers.push(() => makeCharacter(
  45208. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45209. {
  45210. side: {
  45211. height: math.unit(10, "feet"),
  45212. weight: math.unit(6, "tons"),
  45213. name: "Side",
  45214. image: {
  45215. source: "./media/characters/raijin/side.svg",
  45216. extra: 1529/613,
  45217. bottom: 337/1866
  45218. }
  45219. },
  45220. },
  45221. [
  45222. {
  45223. name: "Normal",
  45224. height: math.unit(10, "feet"),
  45225. default: true
  45226. },
  45227. ]
  45228. ))
  45229. characterMakers.push(() => makeCharacter(
  45230. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45231. {
  45232. side: {
  45233. height: math.unit(9, "feet"),
  45234. name: "Side",
  45235. image: {
  45236. source: "./media/characters/nilghais/side.svg",
  45237. extra: 1047/744,
  45238. bottom: 91/1138
  45239. }
  45240. },
  45241. head: {
  45242. height: math.unit(3.14, "feet"),
  45243. name: "Head",
  45244. image: {
  45245. source: "./media/characters/nilghais/head.svg"
  45246. }
  45247. },
  45248. mouth: {
  45249. height: math.unit(4.6, "feet"),
  45250. name: "Mouth",
  45251. image: {
  45252. source: "./media/characters/nilghais/mouth.svg"
  45253. }
  45254. },
  45255. wings: {
  45256. height: math.unit(24, "feet"),
  45257. name: "Wings",
  45258. image: {
  45259. source: "./media/characters/nilghais/wings.svg"
  45260. }
  45261. },
  45262. ass: {
  45263. height: math.unit(6.12, "feet"),
  45264. name: "Ass",
  45265. image: {
  45266. source: "./media/characters/nilghais/ass.svg"
  45267. }
  45268. },
  45269. },
  45270. [
  45271. {
  45272. name: "Normal",
  45273. height: math.unit(9, "feet"),
  45274. default: true
  45275. },
  45276. ]
  45277. ))
  45278. characterMakers.push(() => makeCharacter(
  45279. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45280. {
  45281. regular: {
  45282. height: math.unit(16 + 2/12, "feet"),
  45283. weight: math.unit(2300, "lb"),
  45284. name: "Regular",
  45285. image: {
  45286. source: "./media/characters/zolgar/regular.svg",
  45287. extra: 1246/1004,
  45288. bottom: 124/1370
  45289. }
  45290. },
  45291. boxers: {
  45292. height: math.unit(16 + 2/12, "feet"),
  45293. weight: math.unit(2300, "lb"),
  45294. name: "Boxers",
  45295. image: {
  45296. source: "./media/characters/zolgar/boxers.svg",
  45297. extra: 1246/1004,
  45298. bottom: 124/1370
  45299. }
  45300. },
  45301. armored: {
  45302. height: math.unit(16 + 2/12, "feet"),
  45303. weight: math.unit(2300, "lb"),
  45304. name: "Armored",
  45305. image: {
  45306. source: "./media/characters/zolgar/armored.svg",
  45307. extra: 1246/1004,
  45308. bottom: 124/1370
  45309. }
  45310. },
  45311. goth: {
  45312. height: math.unit(16 + 2/12, "feet"),
  45313. weight: math.unit(2300, "lb"),
  45314. name: "Goth",
  45315. image: {
  45316. source: "./media/characters/zolgar/goth.svg",
  45317. extra: 1246/1004,
  45318. bottom: 124/1370
  45319. }
  45320. },
  45321. },
  45322. [
  45323. {
  45324. name: "Shrunken Down",
  45325. height: math.unit(9 + 2/12, "feet")
  45326. },
  45327. {
  45328. name: "Normal",
  45329. height: math.unit(16 + 2/12, "feet"),
  45330. default: true
  45331. },
  45332. ]
  45333. ))
  45334. characterMakers.push(() => makeCharacter(
  45335. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45336. {
  45337. front: {
  45338. height: math.unit(6, "feet"),
  45339. weight: math.unit(168, "lb"),
  45340. name: "Front",
  45341. image: {
  45342. source: "./media/characters/luca/front.svg",
  45343. extra: 841/667,
  45344. bottom: 102/943
  45345. }
  45346. },
  45347. },
  45348. [
  45349. {
  45350. name: "Normal",
  45351. height: math.unit(6, "feet"),
  45352. default: true
  45353. },
  45354. ]
  45355. ))
  45356. characterMakers.push(() => makeCharacter(
  45357. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45358. {
  45359. side: {
  45360. height: math.unit(7 + 3/12, "feet"),
  45361. weight: math.unit(312, "lb"),
  45362. name: "Side",
  45363. image: {
  45364. source: "./media/characters/zezo/side.svg",
  45365. extra: 1192/1067,
  45366. bottom: 63/1255
  45367. }
  45368. },
  45369. },
  45370. [
  45371. {
  45372. name: "Normal",
  45373. height: math.unit(7 + 3/12, "feet"),
  45374. default: true
  45375. },
  45376. ]
  45377. ))
  45378. characterMakers.push(() => makeCharacter(
  45379. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45380. {
  45381. front: {
  45382. height: math.unit(5 + 5/12, "feet"),
  45383. weight: math.unit(170, "lb"),
  45384. name: "Front",
  45385. image: {
  45386. source: "./media/characters/mayso/front.svg",
  45387. extra: 1215/1108,
  45388. bottom: 16/1231
  45389. }
  45390. },
  45391. },
  45392. [
  45393. {
  45394. name: "Normal",
  45395. height: math.unit(5 + 5/12, "feet"),
  45396. default: true
  45397. },
  45398. ]
  45399. ))
  45400. characterMakers.push(() => makeCharacter(
  45401. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45402. {
  45403. front: {
  45404. height: math.unit(4 + 3/12, "feet"),
  45405. weight: math.unit(80, "lb"),
  45406. name: "Front",
  45407. image: {
  45408. source: "./media/characters/hess/front.svg",
  45409. extra: 1200/1123,
  45410. bottom: 16/1216
  45411. }
  45412. },
  45413. },
  45414. [
  45415. {
  45416. name: "Normal",
  45417. height: math.unit(4 + 3/12, "feet"),
  45418. default: true
  45419. },
  45420. ]
  45421. ))
  45422. characterMakers.push(() => makeCharacter(
  45423. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45424. {
  45425. front: {
  45426. height: math.unit(1.9, "meters"),
  45427. name: "Front",
  45428. image: {
  45429. source: "./media/characters/ashgar/front.svg",
  45430. extra: 1177/1146,
  45431. bottom: 99/1276
  45432. }
  45433. },
  45434. back: {
  45435. height: math.unit(1.9, "meters"),
  45436. name: "Back",
  45437. image: {
  45438. source: "./media/characters/ashgar/back.svg",
  45439. extra: 1201/1183,
  45440. bottom: 53/1254
  45441. }
  45442. },
  45443. feral: {
  45444. height: math.unit(1.4, "meters"),
  45445. name: "Feral",
  45446. image: {
  45447. source: "./media/characters/ashgar/feral.svg",
  45448. extra: 370/345,
  45449. bottom: 45/415
  45450. }
  45451. },
  45452. },
  45453. [
  45454. {
  45455. name: "Normal",
  45456. height: math.unit(1.9, "meters"),
  45457. default: true
  45458. },
  45459. ]
  45460. ))
  45461. characterMakers.push(() => makeCharacter(
  45462. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45463. {
  45464. regular: {
  45465. height: math.unit(6, "feet"),
  45466. weight: math.unit(220, "lb"),
  45467. name: "Regular",
  45468. image: {
  45469. source: "./media/characters/phillip/regular.svg",
  45470. extra: 1373/1277,
  45471. bottom: 75/1448
  45472. }
  45473. },
  45474. dressed: {
  45475. height: math.unit(6, "feet"),
  45476. weight: math.unit(220, "lb"),
  45477. name: "Dressed",
  45478. image: {
  45479. source: "./media/characters/phillip/dressed.svg",
  45480. extra: 1373/1277,
  45481. bottom: 75/1448
  45482. }
  45483. },
  45484. paw: {
  45485. height: math.unit(1.44, "feet"),
  45486. name: "Paw",
  45487. image: {
  45488. source: "./media/characters/phillip/paw.svg"
  45489. }
  45490. },
  45491. },
  45492. [
  45493. {
  45494. name: "Normal",
  45495. height: math.unit(6, "feet"),
  45496. default: true
  45497. },
  45498. ]
  45499. ))
  45500. characterMakers.push(() => makeCharacter(
  45501. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45502. {
  45503. side: {
  45504. height: math.unit(42, "feet"),
  45505. name: "Side",
  45506. image: {
  45507. source: "./media/characters/uvula/side.svg",
  45508. extra: 683/586,
  45509. bottom: 60/743
  45510. }
  45511. },
  45512. front: {
  45513. height: math.unit(42, "feet"),
  45514. name: "Front",
  45515. image: {
  45516. source: "./media/characters/uvula/front.svg",
  45517. extra: 705/613,
  45518. bottom: 54/759
  45519. }
  45520. },
  45521. maw: {
  45522. height: math.unit(23.5, "feet"),
  45523. name: "Maw",
  45524. image: {
  45525. source: "./media/characters/uvula/maw.svg"
  45526. }
  45527. },
  45528. },
  45529. [
  45530. {
  45531. name: "Original Size",
  45532. height: math.unit(14, "inches")
  45533. },
  45534. {
  45535. name: "Human Size",
  45536. height: math.unit(6, "feet")
  45537. },
  45538. {
  45539. name: "Big",
  45540. height: math.unit(42, "feet"),
  45541. default: true
  45542. },
  45543. {
  45544. name: "Bigger",
  45545. height: math.unit(100, "feet")
  45546. },
  45547. ]
  45548. ))
  45549. characterMakers.push(() => makeCharacter(
  45550. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45551. {
  45552. front: {
  45553. height: math.unit(5 + 11/12, "feet"),
  45554. name: "Front",
  45555. image: {
  45556. source: "./media/characters/lannah/front.svg",
  45557. extra: 1208/1113,
  45558. bottom: 97/1305
  45559. }
  45560. },
  45561. },
  45562. [
  45563. {
  45564. name: "Normal",
  45565. height: math.unit(5 + 11/12, "feet"),
  45566. default: true
  45567. },
  45568. ]
  45569. ))
  45570. characterMakers.push(() => makeCharacter(
  45571. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45572. {
  45573. front: {
  45574. height: math.unit(6 + 3/12, "feet"),
  45575. weight: math.unit(3.5, "tons"),
  45576. name: "Front",
  45577. image: {
  45578. source: "./media/characters/emberflame/front.svg",
  45579. extra: 1198/672,
  45580. bottom: 82/1280
  45581. }
  45582. },
  45583. side: {
  45584. height: math.unit(6 + 3/12, "feet"),
  45585. weight: math.unit(3.5, "tons"),
  45586. name: "Side",
  45587. image: {
  45588. source: "./media/characters/emberflame/side.svg",
  45589. extra: 938/527,
  45590. bottom: 56/994
  45591. }
  45592. },
  45593. },
  45594. [
  45595. {
  45596. name: "Normal",
  45597. height: math.unit(6 + 3/12, "feet"),
  45598. default: true
  45599. },
  45600. ]
  45601. ))
  45602. characterMakers.push(() => makeCharacter(
  45603. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45604. {
  45605. side: {
  45606. height: math.unit(17.5, "feet"),
  45607. weight: math.unit(35, "tons"),
  45608. name: "Side",
  45609. image: {
  45610. source: "./media/characters/sophie-ambrose/side.svg",
  45611. extra: 1573/1242,
  45612. bottom: 71/1644
  45613. }
  45614. },
  45615. maw: {
  45616. height: math.unit(7.4, "feet"),
  45617. name: "Maw",
  45618. image: {
  45619. source: "./media/characters/sophie-ambrose/maw.svg"
  45620. }
  45621. },
  45622. },
  45623. [
  45624. {
  45625. name: "Normal",
  45626. height: math.unit(17.5, "feet"),
  45627. default: true
  45628. },
  45629. ]
  45630. ))
  45631. characterMakers.push(() => makeCharacter(
  45632. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45633. {
  45634. front: {
  45635. height: math.unit(280, "feet"),
  45636. weight: math.unit(550, "tons"),
  45637. name: "Front",
  45638. image: {
  45639. source: "./media/characters/king-mugi/front.svg",
  45640. extra: 1102/947,
  45641. bottom: 104/1206
  45642. }
  45643. },
  45644. },
  45645. [
  45646. {
  45647. name: "King Mugi",
  45648. height: math.unit(280, "feet"),
  45649. default: true
  45650. },
  45651. ]
  45652. ))
  45653. characterMakers.push(() => makeCharacter(
  45654. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45655. {
  45656. female: {
  45657. height: math.unit(300, "meters"),
  45658. name: "Front",
  45659. image: {
  45660. source: "./media/characters/nova-fox/female.svg",
  45661. extra: 664/632,
  45662. bottom: 51/715
  45663. },
  45664. form: "female",
  45665. default: true
  45666. },
  45667. male: {
  45668. height: math.unit(300, "meters"),
  45669. name: "Front",
  45670. image: {
  45671. source: "./media/characters/nova-fox/male.svg",
  45672. extra: 663/631,
  45673. bottom: 30/693
  45674. },
  45675. form: "male",
  45676. default: true
  45677. },
  45678. },
  45679. [
  45680. {
  45681. name: "Macro",
  45682. height: math.unit(300, "meters"),
  45683. default: true,
  45684. allForms: true
  45685. },
  45686. ],
  45687. {
  45688. "female": {
  45689. name: "Female",
  45690. default: true
  45691. },
  45692. "male": {
  45693. name: "Male",
  45694. },
  45695. }
  45696. ))
  45697. characterMakers.push(() => makeCharacter(
  45698. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45699. {
  45700. front: {
  45701. height: math.unit(6 + 3/12, "feet"),
  45702. weight: math.unit(170, "lb"),
  45703. name: "Front",
  45704. image: {
  45705. source: "./media/characters/sam-bat/front.svg",
  45706. extra: 1601/1411,
  45707. bottom: 125/1726
  45708. }
  45709. },
  45710. back: {
  45711. height: math.unit(6 + 3/12, "feet"),
  45712. weight: math.unit(170, "lb"),
  45713. name: "Back",
  45714. image: {
  45715. source: "./media/characters/sam-bat/back.svg",
  45716. extra: 1577/1405,
  45717. bottom: 58/1635
  45718. }
  45719. },
  45720. },
  45721. [
  45722. {
  45723. name: "Normal",
  45724. height: math.unit(6 + 3/12, "feet"),
  45725. default: true
  45726. },
  45727. ]
  45728. ))
  45729. characterMakers.push(() => makeCharacter(
  45730. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45731. {
  45732. front: {
  45733. height: math.unit(59, "feet"),
  45734. weight: math.unit(40000, "lb"),
  45735. name: "Front",
  45736. image: {
  45737. source: "./media/characters/inari/front.svg",
  45738. extra: 1884/1350,
  45739. bottom: 95/1979
  45740. }
  45741. },
  45742. },
  45743. [
  45744. {
  45745. name: "Gigantamax",
  45746. height: math.unit(59, "feet"),
  45747. default: true
  45748. },
  45749. ]
  45750. ))
  45751. characterMakers.push(() => makeCharacter(
  45752. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45753. {
  45754. front: {
  45755. height: math.unit(5 + 8/12, "feet"),
  45756. name: "Front",
  45757. image: {
  45758. source: "./media/characters/elizabeth/front.svg",
  45759. extra: 1395/1298,
  45760. bottom: 54/1449
  45761. }
  45762. },
  45763. mouth: {
  45764. height: math.unit(1.97, "feet"),
  45765. name: "Mouth",
  45766. image: {
  45767. source: "./media/characters/elizabeth/mouth.svg"
  45768. }
  45769. },
  45770. foot: {
  45771. height: math.unit(1.17, "feet"),
  45772. name: "Foot",
  45773. image: {
  45774. source: "./media/characters/elizabeth/foot.svg"
  45775. }
  45776. },
  45777. },
  45778. [
  45779. {
  45780. name: "Normal",
  45781. height: math.unit(5 + 8/12, "feet"),
  45782. default: true
  45783. },
  45784. {
  45785. name: "Minimacro",
  45786. height: math.unit(18, "feet")
  45787. },
  45788. {
  45789. name: "Macro",
  45790. height: math.unit(180, "feet")
  45791. },
  45792. ]
  45793. ))
  45794. characterMakers.push(() => makeCharacter(
  45795. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45796. {
  45797. front: {
  45798. height: math.unit(5 + 2/12, "feet"),
  45799. name: "Front",
  45800. image: {
  45801. source: "./media/characters/october-gossamer/front.svg",
  45802. extra: 505/454,
  45803. bottom: 7/512
  45804. }
  45805. },
  45806. back: {
  45807. height: math.unit(5 + 2/12, "feet"),
  45808. name: "Back",
  45809. image: {
  45810. source: "./media/characters/october-gossamer/back.svg",
  45811. extra: 501/454,
  45812. bottom: 11/512
  45813. }
  45814. },
  45815. },
  45816. [
  45817. {
  45818. name: "Normal",
  45819. height: math.unit(5 + 2/12, "feet"),
  45820. default: true
  45821. },
  45822. ]
  45823. ))
  45824. characterMakers.push(() => makeCharacter(
  45825. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45826. {
  45827. front: {
  45828. height: math.unit(5, "feet"),
  45829. name: "Front",
  45830. image: {
  45831. source: "./media/characters/epiglottis/front.svg",
  45832. extra: 923/849,
  45833. bottom: 17/940
  45834. }
  45835. },
  45836. },
  45837. [
  45838. {
  45839. name: "Original Size",
  45840. height: math.unit(10, "inches")
  45841. },
  45842. {
  45843. name: "Human Size",
  45844. height: math.unit(5, "feet"),
  45845. default: true
  45846. },
  45847. {
  45848. name: "Big",
  45849. height: math.unit(25, "feet")
  45850. },
  45851. {
  45852. name: "Bigger",
  45853. height: math.unit(50, "feet")
  45854. },
  45855. {
  45856. name: "oh lawd",
  45857. height: math.unit(75, "feet")
  45858. },
  45859. ]
  45860. ))
  45861. characterMakers.push(() => makeCharacter(
  45862. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45863. {
  45864. front: {
  45865. height: math.unit(2 + 4/12, "feet"),
  45866. weight: math.unit(60, "lb"),
  45867. name: "Front",
  45868. image: {
  45869. source: "./media/characters/lerm/front.svg",
  45870. extra: 796/790,
  45871. bottom: 79/875
  45872. }
  45873. },
  45874. },
  45875. [
  45876. {
  45877. name: "Normal",
  45878. height: math.unit(2 + 4/12, "feet"),
  45879. default: true
  45880. },
  45881. ]
  45882. ))
  45883. characterMakers.push(() => makeCharacter(
  45884. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45885. {
  45886. front: {
  45887. height: math.unit(5.5, "feet"),
  45888. weight: math.unit(130, "lb"),
  45889. name: "Front",
  45890. image: {
  45891. source: "./media/characters/xena-nebadon/front.svg",
  45892. extra: 1828/1730,
  45893. bottom: 79/1907
  45894. }
  45895. },
  45896. },
  45897. [
  45898. {
  45899. name: "Tiny Puppy",
  45900. height: math.unit(3, "inches")
  45901. },
  45902. {
  45903. name: "Normal",
  45904. height: math.unit(5.5, "feet"),
  45905. default: true
  45906. },
  45907. {
  45908. name: "Lotta Lady",
  45909. height: math.unit(12, "feet")
  45910. },
  45911. {
  45912. name: "Pretty Big",
  45913. height: math.unit(100, "feet")
  45914. },
  45915. {
  45916. name: "Big",
  45917. height: math.unit(500, "feet")
  45918. },
  45919. {
  45920. name: "Skyscraper Toys",
  45921. height: math.unit(2500, "feet")
  45922. },
  45923. {
  45924. name: "Plane Catcher",
  45925. height: math.unit(8, "miles")
  45926. },
  45927. {
  45928. name: "Planet Toys",
  45929. height: math.unit(15, "earths")
  45930. },
  45931. {
  45932. name: "Stardust",
  45933. height: math.unit(0.25, "galaxies")
  45934. },
  45935. {
  45936. name: "Snacks",
  45937. height: math.unit(70, "universes")
  45938. },
  45939. ]
  45940. ))
  45941. characterMakers.push(() => makeCharacter(
  45942. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45943. {
  45944. front: {
  45945. height: math.unit(1.6, "meters"),
  45946. weight: math.unit(60, "kg"),
  45947. name: "Front",
  45948. image: {
  45949. source: "./media/characters/bounty/front.svg",
  45950. extra: 1426/1308,
  45951. bottom: 15/1441
  45952. }
  45953. },
  45954. back: {
  45955. height: math.unit(1.6, "meters"),
  45956. weight: math.unit(60, "kg"),
  45957. name: "Back",
  45958. image: {
  45959. source: "./media/characters/bounty/back.svg",
  45960. extra: 1417/1307,
  45961. bottom: 8/1425
  45962. }
  45963. },
  45964. },
  45965. [
  45966. {
  45967. name: "Normal",
  45968. height: math.unit(1.6, "meters"),
  45969. default: true
  45970. },
  45971. {
  45972. name: "Macro",
  45973. height: math.unit(300, "meters")
  45974. },
  45975. ]
  45976. ))
  45977. characterMakers.push(() => makeCharacter(
  45978. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45979. {
  45980. front: {
  45981. height: math.unit(2 + 8/12, "feet"),
  45982. weight: math.unit(15, "lb"),
  45983. name: "Front",
  45984. image: {
  45985. source: "./media/characters/mochi/front.svg",
  45986. extra: 1022/852,
  45987. bottom: 435/1457
  45988. }
  45989. },
  45990. back: {
  45991. height: math.unit(2 + 8/12, "feet"),
  45992. weight: math.unit(15, "lb"),
  45993. name: "Back",
  45994. image: {
  45995. source: "./media/characters/mochi/back.svg",
  45996. extra: 1335/1119,
  45997. bottom: 39/1374
  45998. }
  45999. },
  46000. bird: {
  46001. height: math.unit(2 + 8/12, "feet"),
  46002. weight: math.unit(15, "lb"),
  46003. name: "Bird",
  46004. image: {
  46005. source: "./media/characters/mochi/bird.svg",
  46006. extra: 1251/1113,
  46007. bottom: 178/1429
  46008. }
  46009. },
  46010. kaiju: {
  46011. height: math.unit(154, "feet"),
  46012. weight: math.unit(1e7, "lb"),
  46013. name: "Kaiju",
  46014. image: {
  46015. source: "./media/characters/mochi/kaiju.svg",
  46016. extra: 460/324,
  46017. bottom: 40/500
  46018. }
  46019. },
  46020. head: {
  46021. height: math.unit(1.21, "feet"),
  46022. name: "Head",
  46023. image: {
  46024. source: "./media/characters/mochi/head.svg"
  46025. }
  46026. },
  46027. alternateTail: {
  46028. height: math.unit(2 + 8/12, "feet"),
  46029. weight: math.unit(45, "lb"),
  46030. name: "Alternate Tail",
  46031. image: {
  46032. source: "./media/characters/mochi/alternate-tail.svg",
  46033. extra: 139/76,
  46034. bottom: 45/184
  46035. }
  46036. },
  46037. },
  46038. [
  46039. {
  46040. name: "Micro",
  46041. height: math.unit(2, "inches")
  46042. },
  46043. {
  46044. name: "Normal",
  46045. height: math.unit(2 + 8/12, "feet"),
  46046. default: true
  46047. },
  46048. {
  46049. name: "Macro",
  46050. height: math.unit(106, "feet")
  46051. },
  46052. ]
  46053. ))
  46054. characterMakers.push(() => makeCharacter(
  46055. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46056. {
  46057. front: {
  46058. height: math.unit(5.67, "feet"),
  46059. weight: math.unit(135, "lb"),
  46060. name: "Front",
  46061. image: {
  46062. source: "./media/characters/sarel/front.svg",
  46063. extra: 865/788,
  46064. bottom: 97/962
  46065. }
  46066. },
  46067. back: {
  46068. height: math.unit(5.67, "feet"),
  46069. weight: math.unit(135, "lb"),
  46070. name: "Back",
  46071. image: {
  46072. source: "./media/characters/sarel/back.svg",
  46073. extra: 857/777,
  46074. bottom: 32/889
  46075. }
  46076. },
  46077. chozoan: {
  46078. height: math.unit(5.67, "feet"),
  46079. weight: math.unit(135, "lb"),
  46080. name: "Chozoan",
  46081. image: {
  46082. source: "./media/characters/sarel/chozoan.svg",
  46083. extra: 865/788,
  46084. bottom: 97/962
  46085. }
  46086. },
  46087. current: {
  46088. height: math.unit(5.67, "feet"),
  46089. weight: math.unit(135, "lb"),
  46090. name: "Current",
  46091. image: {
  46092. source: "./media/characters/sarel/current.svg",
  46093. extra: 865/788,
  46094. bottom: 97/962
  46095. }
  46096. },
  46097. head: {
  46098. height: math.unit(1.77, "feet"),
  46099. name: "Head",
  46100. image: {
  46101. source: "./media/characters/sarel/head.svg"
  46102. }
  46103. },
  46104. claws: {
  46105. height: math.unit(1.8, "feet"),
  46106. name: "Claws",
  46107. image: {
  46108. source: "./media/characters/sarel/claws.svg"
  46109. }
  46110. },
  46111. clawsAlt: {
  46112. height: math.unit(1.8, "feet"),
  46113. name: "Claws-alt",
  46114. image: {
  46115. source: "./media/characters/sarel/claws-alt.svg"
  46116. }
  46117. },
  46118. },
  46119. [
  46120. {
  46121. name: "Normal",
  46122. height: math.unit(5.67, "feet"),
  46123. default: true
  46124. },
  46125. ]
  46126. ))
  46127. characterMakers.push(() => makeCharacter(
  46128. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46129. {
  46130. front: {
  46131. height: math.unit(5500, "feet"),
  46132. name: "Front",
  46133. image: {
  46134. source: "./media/characters/alyonia/front.svg",
  46135. extra: 1200/1135,
  46136. bottom: 29/1229
  46137. }
  46138. },
  46139. back: {
  46140. height: math.unit(5500, "feet"),
  46141. name: "Back",
  46142. image: {
  46143. source: "./media/characters/alyonia/back.svg",
  46144. extra: 1205/1138,
  46145. bottom: 10/1215
  46146. }
  46147. },
  46148. },
  46149. [
  46150. {
  46151. name: "Small",
  46152. height: math.unit(10, "feet")
  46153. },
  46154. {
  46155. name: "Macro",
  46156. height: math.unit(500, "feet")
  46157. },
  46158. {
  46159. name: "Mega Macro",
  46160. height: math.unit(5500, "feet"),
  46161. default: true
  46162. },
  46163. {
  46164. name: "Mega Macro+",
  46165. height: math.unit(500000, "feet")
  46166. },
  46167. {
  46168. name: "Giga Macro",
  46169. height: math.unit(3000, "miles")
  46170. },
  46171. {
  46172. name: "Tera Macro",
  46173. height: math.unit(2.8e6, "miles")
  46174. },
  46175. {
  46176. name: "Galactic",
  46177. height: math.unit(120000, "lightyears")
  46178. },
  46179. ]
  46180. ))
  46181. characterMakers.push(() => makeCharacter(
  46182. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46183. {
  46184. werewolf: {
  46185. height: math.unit(8, "feet"),
  46186. weight: math.unit(425, "lb"),
  46187. name: "Werewolf",
  46188. image: {
  46189. source: "./media/characters/autumn/werewolf.svg",
  46190. extra: 2154/2031,
  46191. bottom: 160/2314
  46192. }
  46193. },
  46194. human: {
  46195. height: math.unit(5 + 8/12, "feet"),
  46196. weight: math.unit(150, "lb"),
  46197. name: "Human",
  46198. image: {
  46199. source: "./media/characters/autumn/human.svg",
  46200. extra: 1200/1149,
  46201. bottom: 30/1230
  46202. }
  46203. },
  46204. },
  46205. [
  46206. {
  46207. name: "Normal",
  46208. height: math.unit(8, "feet"),
  46209. default: true
  46210. },
  46211. ]
  46212. ))
  46213. characterMakers.push(() => makeCharacter(
  46214. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46215. {
  46216. front: {
  46217. height: math.unit(8 + 5/12, "feet"),
  46218. weight: math.unit(825, "lb"),
  46219. name: "Front",
  46220. image: {
  46221. source: "./media/characters/cobalt-charizard/front.svg",
  46222. extra: 1268/1155,
  46223. bottom: 122/1390
  46224. }
  46225. },
  46226. side: {
  46227. height: math.unit(8 + 5/12, "feet"),
  46228. weight: math.unit(825, "lb"),
  46229. name: "Side",
  46230. image: {
  46231. source: "./media/characters/cobalt-charizard/side.svg",
  46232. extra: 1348/1257,
  46233. bottom: 58/1406
  46234. }
  46235. },
  46236. gMax: {
  46237. height: math.unit(134 + 11/12, "feet"),
  46238. name: "G-Max",
  46239. image: {
  46240. source: "./media/characters/cobalt-charizard/g-max.svg",
  46241. extra: 1835/1541,
  46242. bottom: 151/1986
  46243. }
  46244. },
  46245. },
  46246. [
  46247. {
  46248. name: "Normal",
  46249. height: math.unit(8 + 5/12, "feet"),
  46250. default: true
  46251. },
  46252. ]
  46253. ))
  46254. characterMakers.push(() => makeCharacter(
  46255. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46256. {
  46257. front: {
  46258. height: math.unit(6 + 3/12, "feet"),
  46259. weight: math.unit(210, "lb"),
  46260. name: "Front",
  46261. image: {
  46262. source: "./media/characters/stella/front.svg",
  46263. extra: 3549/3335,
  46264. bottom: 51/3600
  46265. }
  46266. },
  46267. },
  46268. [
  46269. {
  46270. name: "Normal",
  46271. height: math.unit(6 + 3/12, "feet"),
  46272. default: true
  46273. },
  46274. ]
  46275. ))
  46276. characterMakers.push(() => makeCharacter(
  46277. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46278. {
  46279. front: {
  46280. height: math.unit(5, "feet"),
  46281. weight: math.unit(90, "lb"),
  46282. name: "Front",
  46283. image: {
  46284. source: "./media/characters/riley-bishop/front.svg",
  46285. extra: 1450/1428,
  46286. bottom: 152/1602
  46287. }
  46288. },
  46289. },
  46290. [
  46291. {
  46292. name: "Normal",
  46293. height: math.unit(5, "feet"),
  46294. default: true
  46295. },
  46296. ]
  46297. ))
  46298. characterMakers.push(() => makeCharacter(
  46299. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46300. {
  46301. side: {
  46302. height: math.unit(8 + 2/12, "feet"),
  46303. weight: math.unit(500, "kg"),
  46304. name: "Side",
  46305. image: {
  46306. source: "./media/characters/theo-arcanine/side.svg",
  46307. extra: 1342/1074,
  46308. bottom: 111/1453
  46309. }
  46310. },
  46311. },
  46312. [
  46313. {
  46314. name: "Normal",
  46315. height: math.unit(8 + 2/12, "feet"),
  46316. default: true
  46317. },
  46318. ]
  46319. ))
  46320. characterMakers.push(() => makeCharacter(
  46321. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46322. {
  46323. front: {
  46324. height: math.unit(4, "feet"),
  46325. name: "Front",
  46326. image: {
  46327. source: "./media/characters/kali/front.svg",
  46328. extra: 1074/867,
  46329. bottom: 34/1108
  46330. }
  46331. },
  46332. back: {
  46333. height: math.unit(4, "feet"),
  46334. name: "Back",
  46335. image: {
  46336. source: "./media/characters/kali/back.svg",
  46337. extra: 1068/863,
  46338. bottom: 26/1094
  46339. }
  46340. },
  46341. frontAlt: {
  46342. height: math.unit(4, "feet"),
  46343. name: "Front (Alt)",
  46344. image: {
  46345. source: "./media/characters/kali/front-alt.svg",
  46346. extra: 1921/1357,
  46347. bottom: 70/1991
  46348. }
  46349. },
  46350. },
  46351. [
  46352. {
  46353. name: "Normal",
  46354. height: math.unit(4, "feet"),
  46355. default: true
  46356. },
  46357. {
  46358. name: "Big'vali",
  46359. height: math.unit(11, "feet")
  46360. },
  46361. {
  46362. name: "Macro",
  46363. height: math.unit(32, "meters")
  46364. },
  46365. {
  46366. name: "Macro+",
  46367. height: math.unit(150, "meters")
  46368. },
  46369. {
  46370. name: "Megamacro",
  46371. height: math.unit(7500, "meters")
  46372. },
  46373. {
  46374. name: "Megamacro+",
  46375. height: math.unit(80, "kilometers")
  46376. },
  46377. ]
  46378. ))
  46379. characterMakers.push(() => makeCharacter(
  46380. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46381. {
  46382. side: {
  46383. height: math.unit(5 + 11/12, "feet"),
  46384. weight: math.unit(236, "lb"),
  46385. name: "Side",
  46386. image: {
  46387. source: "./media/characters/gapp/side.svg",
  46388. extra: 775/340,
  46389. bottom: 58/833
  46390. }
  46391. },
  46392. mouth: {
  46393. height: math.unit(2.98, "feet"),
  46394. name: "Mouth",
  46395. image: {
  46396. source: "./media/characters/gapp/mouth.svg"
  46397. }
  46398. },
  46399. },
  46400. [
  46401. {
  46402. name: "Normal",
  46403. height: math.unit(5 + 1/12, "feet"),
  46404. default: true
  46405. },
  46406. ]
  46407. ))
  46408. characterMakers.push(() => makeCharacter(
  46409. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46410. {
  46411. front: {
  46412. height: math.unit(6, "feet"),
  46413. name: "Front",
  46414. image: {
  46415. source: "./media/characters/persephone/front.svg",
  46416. extra: 1895/1717,
  46417. bottom: 96/1991
  46418. }
  46419. },
  46420. back: {
  46421. height: math.unit(6, "feet"),
  46422. name: "Back",
  46423. image: {
  46424. source: "./media/characters/persephone/back.svg",
  46425. extra: 1868/1679,
  46426. bottom: 26/1894
  46427. }
  46428. },
  46429. casual: {
  46430. height: math.unit(6, "feet"),
  46431. name: "Casual",
  46432. image: {
  46433. source: "./media/characters/persephone/casual.svg",
  46434. extra: 1713/1541,
  46435. bottom: 76/1789
  46436. }
  46437. },
  46438. gaming: {
  46439. height: math.unit(3.55, "feet"),
  46440. name: "Gaming",
  46441. image: {
  46442. source: "./media/characters/persephone/gaming.svg",
  46443. extra: 1242/1038,
  46444. bottom: 66/1308
  46445. }
  46446. },
  46447. head: {
  46448. height: math.unit(2.15, "feet"),
  46449. name: "😐",
  46450. image: {
  46451. source: "./media/characters/persephone/head.svg"
  46452. }
  46453. },
  46454. talking: {
  46455. height: math.unit(2.5, "feet"),
  46456. name: "💬",
  46457. image: {
  46458. source: "./media/characters/persephone/talking.svg"
  46459. }
  46460. },
  46461. hmm: {
  46462. height: math.unit(2.28, "feet"),
  46463. name: "🤨",
  46464. image: {
  46465. source: "./media/characters/persephone/hmm.svg"
  46466. }
  46467. },
  46468. },
  46469. [
  46470. {
  46471. name: "Human Size",
  46472. height: math.unit(6, "feet")
  46473. },
  46474. {
  46475. name: "Big Steppy",
  46476. height: math.unit(600, "meters"),
  46477. default: true
  46478. },
  46479. {
  46480. name: "Galaxy Brain",
  46481. height: math.unit(1, "zettameter")
  46482. },
  46483. ]
  46484. ))
  46485. characterMakers.push(() => makeCharacter(
  46486. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46487. {
  46488. front: {
  46489. height: math.unit(1.85, "meters"),
  46490. name: "Front",
  46491. image: {
  46492. source: "./media/characters/riley-foxthing/front.svg",
  46493. extra: 1495/1354,
  46494. bottom: 122/1617
  46495. }
  46496. },
  46497. frontAlt: {
  46498. height: math.unit(1.85, "meters"),
  46499. name: "Front (Alt)",
  46500. image: {
  46501. source: "./media/characters/riley-foxthing/front-alt.svg",
  46502. extra: 1572/1389,
  46503. bottom: 116/1688
  46504. }
  46505. },
  46506. },
  46507. [
  46508. {
  46509. name: "Normal Sized",
  46510. height: math.unit(1.85, "meters"),
  46511. default: true
  46512. },
  46513. {
  46514. name: "Quite Sizable",
  46515. height: math.unit(5, "meters")
  46516. },
  46517. {
  46518. name: "Rather Large",
  46519. height: math.unit(20, "meters")
  46520. },
  46521. {
  46522. name: "Macro",
  46523. height: math.unit(450, "meters")
  46524. },
  46525. {
  46526. name: "Giga",
  46527. height: math.unit(5, "km")
  46528. },
  46529. ]
  46530. ))
  46531. characterMakers.push(() => makeCharacter(
  46532. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46533. {
  46534. front: {
  46535. height: math.unit(6, "feet"),
  46536. weight: math.unit(200, "lb"),
  46537. name: "Front",
  46538. image: {
  46539. source: "./media/characters/blizzard/front.svg",
  46540. extra: 1136/990,
  46541. bottom: 136/1272
  46542. }
  46543. },
  46544. back: {
  46545. height: math.unit(6, "feet"),
  46546. weight: math.unit(200, "lb"),
  46547. name: "Back",
  46548. image: {
  46549. source: "./media/characters/blizzard/back.svg",
  46550. extra: 1175/1034,
  46551. bottom: 97/1272
  46552. }
  46553. },
  46554. sitting: {
  46555. height: math.unit(3.725, "feet"),
  46556. weight: math.unit(200, "lb"),
  46557. name: "Sitting",
  46558. image: {
  46559. source: "./media/characters/blizzard/sitting.svg",
  46560. extra: 581/485,
  46561. bottom: 90/671
  46562. }
  46563. },
  46564. frontWizard: {
  46565. height: math.unit(7.9, "feet"),
  46566. weight: math.unit(200, "lb"),
  46567. name: "Front (Wizard)",
  46568. image: {
  46569. source: "./media/characters/blizzard/front-wizard.svg"
  46570. }
  46571. },
  46572. backWizard: {
  46573. height: math.unit(7.9, "feet"),
  46574. weight: math.unit(200, "lb"),
  46575. name: "Back (Wizard)",
  46576. image: {
  46577. source: "./media/characters/blizzard/back-wizard.svg"
  46578. }
  46579. },
  46580. frontNsfw: {
  46581. height: math.unit(6, "feet"),
  46582. weight: math.unit(200, "lb"),
  46583. name: "Front (NSFW)",
  46584. image: {
  46585. source: "./media/characters/blizzard/front-nsfw.svg",
  46586. extra: 1136/990,
  46587. bottom: 136/1272
  46588. }
  46589. },
  46590. backNsfw: {
  46591. height: math.unit(6, "feet"),
  46592. weight: math.unit(200, "lb"),
  46593. name: "Back (NSFW)",
  46594. image: {
  46595. source: "./media/characters/blizzard/back-nsfw.svg",
  46596. extra: 1175/1034,
  46597. bottom: 97/1272
  46598. }
  46599. },
  46600. sittingNsfw: {
  46601. height: math.unit(3.725, "feet"),
  46602. weight: math.unit(200, "lb"),
  46603. name: "Sitting (NSFW)",
  46604. image: {
  46605. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46606. extra: 581/485,
  46607. bottom: 90/671
  46608. }
  46609. },
  46610. wizardFrontNsfw: {
  46611. height: math.unit(7.9, "feet"),
  46612. weight: math.unit(200, "lb"),
  46613. name: "Wizard (Front, NSFW)",
  46614. image: {
  46615. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46616. }
  46617. },
  46618. },
  46619. [
  46620. {
  46621. name: "Normal",
  46622. height: math.unit(6, "feet"),
  46623. default: true
  46624. },
  46625. ]
  46626. ))
  46627. characterMakers.push(() => makeCharacter(
  46628. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46629. {
  46630. front: {
  46631. height: math.unit(5 + 2/12, "feet"),
  46632. name: "Front",
  46633. image: {
  46634. source: "./media/characters/lumi/front.svg",
  46635. extra: 1328/1268,
  46636. bottom: 103/1431
  46637. }
  46638. },
  46639. back: {
  46640. height: math.unit(5 + 2/12, "feet"),
  46641. name: "Back",
  46642. image: {
  46643. source: "./media/characters/lumi/back.svg",
  46644. extra: 1381/1327,
  46645. bottom: 43/1424
  46646. }
  46647. },
  46648. },
  46649. [
  46650. {
  46651. name: "Normal",
  46652. height: math.unit(5 + 2/12, "feet"),
  46653. default: true
  46654. },
  46655. ]
  46656. ))
  46657. characterMakers.push(() => makeCharacter(
  46658. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46659. {
  46660. front: {
  46661. height: math.unit(5 + 9/12, "feet"),
  46662. name: "Front",
  46663. image: {
  46664. source: "./media/characters/aliya-cotton/front.svg",
  46665. extra: 577/564,
  46666. bottom: 29/606
  46667. }
  46668. },
  46669. },
  46670. [
  46671. {
  46672. name: "Normal",
  46673. height: math.unit(5 + 9/12, "feet"),
  46674. default: true
  46675. },
  46676. ]
  46677. ))
  46678. characterMakers.push(() => makeCharacter(
  46679. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46680. {
  46681. front: {
  46682. height: math.unit(2.7, "meters"),
  46683. weight: math.unit(25000, "lb"),
  46684. name: "Front",
  46685. image: {
  46686. source: "./media/characters/noah-luxray/front.svg",
  46687. extra: 1644/825,
  46688. bottom: 339/1983
  46689. }
  46690. },
  46691. side: {
  46692. height: math.unit(2.97, "meters"),
  46693. weight: math.unit(25000, "lb"),
  46694. name: "Side",
  46695. image: {
  46696. source: "./media/characters/noah-luxray/side.svg",
  46697. extra: 1319/650,
  46698. bottom: 163/1482
  46699. }
  46700. },
  46701. dick: {
  46702. height: math.unit(7.4, "feet"),
  46703. weight: math.unit(2500, "lb"),
  46704. name: "Dick",
  46705. image: {
  46706. source: "./media/characters/noah-luxray/dick.svg"
  46707. }
  46708. },
  46709. dickAlt: {
  46710. height: math.unit(10.83, "feet"),
  46711. weight: math.unit(2500, "lb"),
  46712. name: "Dick-alt",
  46713. image: {
  46714. source: "./media/characters/noah-luxray/dick-alt.svg"
  46715. }
  46716. },
  46717. },
  46718. [
  46719. {
  46720. name: "BIG",
  46721. height: math.unit(2.7, "meters"),
  46722. default: true
  46723. },
  46724. ]
  46725. ))
  46726. characterMakers.push(() => makeCharacter(
  46727. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46728. {
  46729. standing: {
  46730. height: math.unit(183, "cm"),
  46731. weight: math.unit(68, "kg"),
  46732. name: "Standing",
  46733. image: {
  46734. source: "./media/characters/arion/standing.svg",
  46735. extra: 1869/1807,
  46736. bottom: 93/1962
  46737. }
  46738. },
  46739. reclining: {
  46740. height: math.unit(70.5, "cm"),
  46741. weight: math.unit(68, "lb"),
  46742. name: "Reclining",
  46743. image: {
  46744. source: "./media/characters/arion/reclining.svg",
  46745. extra: 937/870,
  46746. bottom: 63/1000
  46747. }
  46748. },
  46749. },
  46750. [
  46751. {
  46752. name: "Colossus Size, Low",
  46753. height: math.unit(33, "meters"),
  46754. default: true
  46755. },
  46756. {
  46757. name: "Colossus Size, Mid",
  46758. height: math.unit(52, "meters")
  46759. },
  46760. {
  46761. name: "Colossus Size, High",
  46762. height: math.unit(60, "meters")
  46763. },
  46764. {
  46765. name: "Titan Size, Low",
  46766. height: math.unit(91, "meters"),
  46767. },
  46768. {
  46769. name: "Titan Size, Mid",
  46770. height: math.unit(122, "meters")
  46771. },
  46772. {
  46773. name: "Titan Size, High",
  46774. height: math.unit(162, "meters")
  46775. },
  46776. ]
  46777. ))
  46778. characterMakers.push(() => makeCharacter(
  46779. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46780. {
  46781. front: {
  46782. height: math.unit(53, "meters"),
  46783. name: "Front",
  46784. image: {
  46785. source: "./media/characters/stellar-marbey/front.svg",
  46786. extra: 1913/1805,
  46787. bottom: 92/2005
  46788. }
  46789. },
  46790. back: {
  46791. height: math.unit(53, "meters"),
  46792. name: "Back",
  46793. image: {
  46794. source: "./media/characters/stellar-marbey/back.svg",
  46795. extra: 1960/1851,
  46796. bottom: 28/1988
  46797. }
  46798. },
  46799. mouth: {
  46800. height: math.unit(3.5, "meters"),
  46801. name: "Mouth",
  46802. image: {
  46803. source: "./media/characters/stellar-marbey/mouth.svg"
  46804. }
  46805. },
  46806. },
  46807. [
  46808. {
  46809. name: "Macro",
  46810. height: math.unit(53, "meters"),
  46811. default: true
  46812. },
  46813. ]
  46814. ))
  46815. characterMakers.push(() => makeCharacter(
  46816. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46817. {
  46818. front: {
  46819. height: math.unit(8 + 1/12, "feet"),
  46820. weight: math.unit(233, "lb"),
  46821. name: "Front",
  46822. image: {
  46823. source: "./media/characters/matsu/front.svg",
  46824. extra: 832/772,
  46825. bottom: 40/872
  46826. }
  46827. },
  46828. back: {
  46829. height: math.unit(8 + 1/12, "feet"),
  46830. weight: math.unit(233, "lb"),
  46831. name: "Back",
  46832. image: {
  46833. source: "./media/characters/matsu/back.svg",
  46834. extra: 839/780,
  46835. bottom: 47/886
  46836. }
  46837. },
  46838. },
  46839. [
  46840. {
  46841. name: "Normal",
  46842. height: math.unit(8 + 1/12, "feet"),
  46843. default: true
  46844. },
  46845. ]
  46846. ))
  46847. characterMakers.push(() => makeCharacter(
  46848. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46849. {
  46850. front: {
  46851. height: math.unit(4, "feet"),
  46852. weight: math.unit(148, "lb"),
  46853. name: "Front",
  46854. image: {
  46855. source: "./media/characters/thiz/front.svg",
  46856. extra: 1913/1748,
  46857. bottom: 62/1975
  46858. }
  46859. },
  46860. },
  46861. [
  46862. {
  46863. name: "Normal",
  46864. height: math.unit(4, "feet"),
  46865. default: true
  46866. },
  46867. ]
  46868. ))
  46869. characterMakers.push(() => makeCharacter(
  46870. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46871. {
  46872. front: {
  46873. height: math.unit(7 + 6/12, "feet"),
  46874. weight: math.unit(267, "lb"),
  46875. name: "Front",
  46876. image: {
  46877. source: "./media/characters/marcel/front.svg",
  46878. extra: 1221/1096,
  46879. bottom: 76/1297
  46880. }
  46881. },
  46882. },
  46883. [
  46884. {
  46885. name: "Normal",
  46886. height: math.unit(7 + 6/12, "feet"),
  46887. default: true
  46888. },
  46889. ]
  46890. ))
  46891. characterMakers.push(() => makeCharacter(
  46892. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46893. {
  46894. side: {
  46895. height: math.unit(42, "meters"),
  46896. name: "Side",
  46897. image: {
  46898. source: "./media/characters/flake/side.svg",
  46899. extra: 1525/1306,
  46900. bottom: 209/1734
  46901. }
  46902. },
  46903. },
  46904. [
  46905. {
  46906. name: "Normal",
  46907. height: math.unit(42, "meters"),
  46908. default: true
  46909. },
  46910. ]
  46911. ))
  46912. characterMakers.push(() => makeCharacter(
  46913. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46914. {
  46915. dressed: {
  46916. height: math.unit(6 + 4/12, "feet"),
  46917. weight: math.unit(520, "lb"),
  46918. name: "Dressed",
  46919. image: {
  46920. source: "./media/characters/someonne/dressed.svg",
  46921. extra: 1020/1010,
  46922. bottom: 178/1198
  46923. }
  46924. },
  46925. undressed: {
  46926. height: math.unit(6 + 4/12, "feet"),
  46927. weight: math.unit(520, "lb"),
  46928. name: "Undressed",
  46929. image: {
  46930. source: "./media/characters/someonne/undressed.svg",
  46931. extra: 1019/1014,
  46932. bottom: 169/1188
  46933. }
  46934. },
  46935. },
  46936. [
  46937. {
  46938. name: "Normal",
  46939. height: math.unit(6 + 4/12, "feet"),
  46940. default: true
  46941. },
  46942. ]
  46943. ))
  46944. characterMakers.push(() => makeCharacter(
  46945. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46946. {
  46947. front: {
  46948. height: math.unit(3, "feet"),
  46949. weight: math.unit(30, "lb"),
  46950. name: "Front",
  46951. image: {
  46952. source: "./media/characters/till/front.svg",
  46953. extra: 892/823,
  46954. bottom: 55/947
  46955. }
  46956. },
  46957. },
  46958. [
  46959. {
  46960. name: "Normal",
  46961. height: math.unit(3, "feet"),
  46962. default: true
  46963. },
  46964. ]
  46965. ))
  46966. characterMakers.push(() => makeCharacter(
  46967. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46968. {
  46969. front: {
  46970. height: math.unit(9 + 8/12, "feet"),
  46971. weight: math.unit(800, "lb"),
  46972. name: "Front",
  46973. image: {
  46974. source: "./media/characters/sydney-heki/front.svg",
  46975. extra: 1360/1300,
  46976. bottom: 22/1382
  46977. }
  46978. },
  46979. back: {
  46980. height: math.unit(9 + 8/12, "feet"),
  46981. weight: math.unit(800, "lb"),
  46982. name: "Back",
  46983. image: {
  46984. source: "./media/characters/sydney-heki/back.svg",
  46985. extra: 1356/1293,
  46986. bottom: 12/1368
  46987. }
  46988. },
  46989. frontDressed: {
  46990. height: math.unit(9 + 8/12, "feet"),
  46991. weight: math.unit(800, "lb"),
  46992. name: "Front-dressed",
  46993. image: {
  46994. source: "./media/characters/sydney-heki/front-dressed.svg",
  46995. extra: 1360/1300,
  46996. bottom: 22/1382
  46997. }
  46998. },
  46999. },
  47000. [
  47001. {
  47002. name: "Normal",
  47003. height: math.unit(9 + 8/12, "feet"),
  47004. default: true
  47005. },
  47006. {
  47007. name: "Macro",
  47008. height: math.unit(500, "feet")
  47009. },
  47010. {
  47011. name: "Megamacro",
  47012. height: math.unit(3.6, "miles")
  47013. },
  47014. ]
  47015. ))
  47016. characterMakers.push(() => makeCharacter(
  47017. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47018. {
  47019. front: {
  47020. height: math.unit(200, "cm"),
  47021. weight: math.unit(250, "lb"),
  47022. name: "Front",
  47023. image: {
  47024. source: "./media/characters/fowler-karlsson/front.svg",
  47025. extra: 897/845,
  47026. bottom: 123/1020
  47027. }
  47028. },
  47029. back: {
  47030. height: math.unit(200, "cm"),
  47031. weight: math.unit(250, "lb"),
  47032. name: "Back",
  47033. image: {
  47034. source: "./media/characters/fowler-karlsson/back.svg",
  47035. extra: 999/944,
  47036. bottom: 26/1025
  47037. }
  47038. },
  47039. dick: {
  47040. height: math.unit(1.92, "feet"),
  47041. weight: math.unit(150, "lb"),
  47042. name: "Dick",
  47043. image: {
  47044. source: "./media/characters/fowler-karlsson/dick.svg"
  47045. }
  47046. },
  47047. },
  47048. [
  47049. {
  47050. name: "Normal",
  47051. height: math.unit(200, "cm"),
  47052. default: true
  47053. },
  47054. {
  47055. name: "Smaller Macro",
  47056. height: math.unit(90, "m")
  47057. },
  47058. {
  47059. name: "Macro",
  47060. height: math.unit(150, "m")
  47061. },
  47062. {
  47063. name: "Bigger Macro",
  47064. height: math.unit(300, "m")
  47065. },
  47066. ]
  47067. ))
  47068. characterMakers.push(() => makeCharacter(
  47069. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47070. {
  47071. side: {
  47072. height: math.unit(8 + 2/12, "feet"),
  47073. weight: math.unit(1, "tonne"),
  47074. name: "Side",
  47075. image: {
  47076. source: "./media/characters/rylide/side.svg",
  47077. extra: 1318/1034,
  47078. bottom: 106/1424
  47079. }
  47080. },
  47081. sitting: {
  47082. height: math.unit(303, "cm"),
  47083. weight: math.unit(1, "tonne"),
  47084. name: "Sitting",
  47085. image: {
  47086. source: "./media/characters/rylide/sitting.svg",
  47087. extra: 1303/1103,
  47088. bottom: 36/1339
  47089. }
  47090. },
  47091. },
  47092. [
  47093. {
  47094. name: "Normal",
  47095. height: math.unit(8 + 2/12, "feet"),
  47096. default: true
  47097. },
  47098. ]
  47099. ))
  47100. characterMakers.push(() => makeCharacter(
  47101. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47102. {
  47103. front: {
  47104. height: math.unit(5 + 10/12, "feet"),
  47105. weight: math.unit(160, "lb"),
  47106. name: "Front",
  47107. image: {
  47108. source: "./media/characters/pudask/front.svg",
  47109. extra: 1616/1590,
  47110. bottom: 161/1777
  47111. }
  47112. },
  47113. },
  47114. [
  47115. {
  47116. name: "Ferret Height",
  47117. height: math.unit(2 + 5/12, "feet")
  47118. },
  47119. {
  47120. name: "Canon Height",
  47121. height: math.unit(5 + 10/12, "feet"),
  47122. default: true
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(3 + 6/12, "feet"),
  47131. weight: math.unit(60, "lb"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/ramita/front.svg",
  47135. extra: 1402/1232,
  47136. bottom: 62/1464
  47137. }
  47138. },
  47139. dressed: {
  47140. height: math.unit(3 + 6/12, "feet"),
  47141. weight: math.unit(60, "lb"),
  47142. name: "Dressed",
  47143. image: {
  47144. source: "./media/characters/ramita/dressed.svg",
  47145. extra: 1534/1249,
  47146. bottom: 50/1584
  47147. }
  47148. },
  47149. },
  47150. [
  47151. {
  47152. name: "Normal",
  47153. height: math.unit(3 + 6/12, "feet"),
  47154. default: true
  47155. },
  47156. ]
  47157. ))
  47158. characterMakers.push(() => makeCharacter(
  47159. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47160. {
  47161. front: {
  47162. height: math.unit(8, "feet"),
  47163. name: "Front",
  47164. image: {
  47165. source: "./media/characters/ark/front.svg",
  47166. extra: 772/693,
  47167. bottom: 45/817
  47168. }
  47169. },
  47170. },
  47171. [
  47172. {
  47173. name: "Normal",
  47174. height: math.unit(8, "feet"),
  47175. default: true
  47176. },
  47177. ]
  47178. ))
  47179. characterMakers.push(() => makeCharacter(
  47180. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47181. {
  47182. front: {
  47183. height: math.unit(6, "feet"),
  47184. weight: math.unit(250, "lb"),
  47185. volume: math.unit(5/8, "gallons"),
  47186. name: "Front",
  47187. image: {
  47188. source: "./media/characters/ludwig-horn/front.svg",
  47189. extra: 1782/1635,
  47190. bottom: 96/1878
  47191. }
  47192. },
  47193. back: {
  47194. height: math.unit(6, "feet"),
  47195. weight: math.unit(250, "lb"),
  47196. volume: math.unit(5/8, "gallons"),
  47197. name: "Back",
  47198. image: {
  47199. source: "./media/characters/ludwig-horn/back.svg",
  47200. extra: 1874/1729,
  47201. bottom: 27/1901
  47202. }
  47203. },
  47204. dick: {
  47205. height: math.unit(1.05, "feet"),
  47206. weight: math.unit(15, "lb"),
  47207. volume: math.unit(5/8, "gallons"),
  47208. name: "Dick",
  47209. image: {
  47210. source: "./media/characters/ludwig-horn/dick.svg"
  47211. }
  47212. },
  47213. },
  47214. [
  47215. {
  47216. name: "Small",
  47217. height: math.unit(6, "feet")
  47218. },
  47219. {
  47220. name: "Typical",
  47221. height: math.unit(12, "feet"),
  47222. default: true
  47223. },
  47224. {
  47225. name: "Building",
  47226. height: math.unit(80, "feet")
  47227. },
  47228. {
  47229. name: "Town",
  47230. height: math.unit(800, "feet")
  47231. },
  47232. {
  47233. name: "Kingdom",
  47234. height: math.unit(80000, "feet")
  47235. },
  47236. {
  47237. name: "Planet",
  47238. height: math.unit(8000000, "feet")
  47239. },
  47240. {
  47241. name: "Universe",
  47242. height: math.unit(8000000000, "feet")
  47243. },
  47244. {
  47245. name: "Transcended",
  47246. height: math.unit(8e27, "feet")
  47247. },
  47248. ]
  47249. ))
  47250. characterMakers.push(() => makeCharacter(
  47251. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47252. {
  47253. front: {
  47254. height: math.unit(5, "feet"),
  47255. weight: math.unit(50, "kg"),
  47256. name: "Front",
  47257. image: {
  47258. source: "./media/characters/biot-avery/front.svg",
  47259. extra: 1295/1232,
  47260. bottom: 86/1381
  47261. }
  47262. },
  47263. },
  47264. [
  47265. {
  47266. name: "Normal",
  47267. height: math.unit(5, "feet"),
  47268. default: true
  47269. },
  47270. ]
  47271. ))
  47272. characterMakers.push(() => makeCharacter(
  47273. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47274. {
  47275. front: {
  47276. height: math.unit(6, "feet"),
  47277. name: "Front",
  47278. image: {
  47279. source: "./media/characters/kitsune-kiro/front.svg",
  47280. extra: 1270/1158,
  47281. bottom: 42/1312
  47282. }
  47283. },
  47284. frontAlt: {
  47285. height: math.unit(6, "feet"),
  47286. name: "Front-alt",
  47287. image: {
  47288. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47289. extra: 1130/1081,
  47290. bottom: 36/1166
  47291. }
  47292. },
  47293. },
  47294. [
  47295. {
  47296. name: "Smol",
  47297. height: math.unit(3, "feet")
  47298. },
  47299. {
  47300. name: "Normal",
  47301. height: math.unit(6, "feet"),
  47302. default: true
  47303. },
  47304. ]
  47305. ))
  47306. characterMakers.push(() => makeCharacter(
  47307. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47308. {
  47309. front: {
  47310. height: math.unit(6, "feet"),
  47311. weight: math.unit(125, "lb"),
  47312. name: "Front",
  47313. image: {
  47314. source: "./media/characters/jack-thatcher/front.svg",
  47315. extra: 1474/1370,
  47316. bottom: 26/1500
  47317. }
  47318. },
  47319. back: {
  47320. height: math.unit(6, "feet"),
  47321. weight: math.unit(125, "lb"),
  47322. name: "Back",
  47323. image: {
  47324. source: "./media/characters/jack-thatcher/back.svg",
  47325. extra: 1489/1384,
  47326. bottom: 18/1507
  47327. }
  47328. },
  47329. },
  47330. [
  47331. {
  47332. name: "Normal",
  47333. height: math.unit(6, "feet"),
  47334. default: true
  47335. },
  47336. {
  47337. name: "Macro",
  47338. height: math.unit(75, "feet")
  47339. },
  47340. {
  47341. name: "Macro-er",
  47342. height: math.unit(250, "feet")
  47343. },
  47344. ]
  47345. ))
  47346. characterMakers.push(() => makeCharacter(
  47347. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47348. {
  47349. front: {
  47350. height: math.unit(7, "feet"),
  47351. weight: math.unit(110, "kg"),
  47352. name: "Front",
  47353. image: {
  47354. source: "./media/characters/max-hyper/front.svg",
  47355. extra: 1969/1881,
  47356. bottom: 49/2018
  47357. }
  47358. },
  47359. },
  47360. [
  47361. {
  47362. name: "Normal",
  47363. height: math.unit(7, "feet"),
  47364. default: true
  47365. },
  47366. ]
  47367. ))
  47368. characterMakers.push(() => makeCharacter(
  47369. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47370. {
  47371. front: {
  47372. height: math.unit(5 + 5/12, "feet"),
  47373. weight: math.unit(160, "lb"),
  47374. name: "Front",
  47375. image: {
  47376. source: "./media/characters/spook/front.svg",
  47377. extra: 794/791,
  47378. bottom: 54/848
  47379. }
  47380. },
  47381. back: {
  47382. height: math.unit(5 + 5/12, "feet"),
  47383. weight: math.unit(160, "lb"),
  47384. name: "Back",
  47385. image: {
  47386. source: "./media/characters/spook/back.svg",
  47387. extra: 812/798,
  47388. bottom: 32/844
  47389. }
  47390. },
  47391. },
  47392. [
  47393. {
  47394. name: "Normal",
  47395. height: math.unit(5 + 5/12, "feet"),
  47396. default: true
  47397. },
  47398. ]
  47399. ))
  47400. characterMakers.push(() => makeCharacter(
  47401. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47402. {
  47403. front: {
  47404. height: math.unit(18, "feet"),
  47405. name: "Front",
  47406. image: {
  47407. source: "./media/characters/xeaduulix/front.svg",
  47408. extra: 1380/1166,
  47409. bottom: 110/1490
  47410. }
  47411. },
  47412. back: {
  47413. height: math.unit(18, "feet"),
  47414. name: "Back",
  47415. image: {
  47416. source: "./media/characters/xeaduulix/back.svg",
  47417. extra: 1592/1170,
  47418. bottom: 128/1720
  47419. }
  47420. },
  47421. frontNsfw: {
  47422. height: math.unit(18, "feet"),
  47423. name: "Front (NSFW)",
  47424. image: {
  47425. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47426. extra: 1380/1166,
  47427. bottom: 110/1490
  47428. }
  47429. },
  47430. backNsfw: {
  47431. height: math.unit(18, "feet"),
  47432. name: "Back (NSFW)",
  47433. image: {
  47434. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47435. extra: 1592/1170,
  47436. bottom: 128/1720
  47437. }
  47438. },
  47439. },
  47440. [
  47441. {
  47442. name: "Normal",
  47443. height: math.unit(18, "feet"),
  47444. default: true
  47445. },
  47446. ]
  47447. ))
  47448. characterMakers.push(() => makeCharacter(
  47449. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47450. {
  47451. spreadWings: {
  47452. height: math.unit(20, "feet"),
  47453. name: "Spread Wings",
  47454. image: {
  47455. source: "./media/characters/fledge/spread-wings.svg",
  47456. extra: 693/635,
  47457. bottom: 26/719
  47458. }
  47459. },
  47460. front: {
  47461. height: math.unit(20, "feet"),
  47462. name: "Front",
  47463. image: {
  47464. source: "./media/characters/fledge/front.svg",
  47465. extra: 684/637,
  47466. bottom: 18/702
  47467. }
  47468. },
  47469. frontAlt: {
  47470. height: math.unit(20, "feet"),
  47471. name: "Front (Alt)",
  47472. image: {
  47473. source: "./media/characters/fledge/front-alt.svg",
  47474. extra: 708/664,
  47475. bottom: 13/721
  47476. }
  47477. },
  47478. back: {
  47479. height: math.unit(20, "feet"),
  47480. name: "Back",
  47481. image: {
  47482. source: "./media/characters/fledge/back.svg",
  47483. extra: 718/634,
  47484. bottom: 22/740
  47485. }
  47486. },
  47487. head: {
  47488. height: math.unit(5.55, "feet"),
  47489. name: "Head",
  47490. image: {
  47491. source: "./media/characters/fledge/head.svg"
  47492. }
  47493. },
  47494. headAlt: {
  47495. height: math.unit(5.1, "feet"),
  47496. name: "Head (Alt)",
  47497. image: {
  47498. source: "./media/characters/fledge/head-alt.svg"
  47499. }
  47500. },
  47501. },
  47502. [
  47503. {
  47504. name: "Small",
  47505. height: math.unit(6 + 2/12, "feet")
  47506. },
  47507. {
  47508. name: "Big",
  47509. height: math.unit(20, "feet"),
  47510. default: true
  47511. },
  47512. {
  47513. name: "Giant",
  47514. height: math.unit(100, "feet")
  47515. },
  47516. {
  47517. name: "Macro",
  47518. height: math.unit(200, "feet")
  47519. },
  47520. ]
  47521. ))
  47522. characterMakers.push(() => makeCharacter(
  47523. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47524. {
  47525. front: {
  47526. height: math.unit(1, "meter"),
  47527. name: "Front",
  47528. image: {
  47529. source: "./media/characters/atlas-morenai/front.svg",
  47530. extra: 1275/1043,
  47531. bottom: 19/1294
  47532. }
  47533. },
  47534. back: {
  47535. height: math.unit(1, "meter"),
  47536. name: "Back",
  47537. image: {
  47538. source: "./media/characters/atlas-morenai/back.svg",
  47539. extra: 1141/1001,
  47540. bottom: 25/1166
  47541. }
  47542. },
  47543. },
  47544. [
  47545. {
  47546. name: "Normal",
  47547. height: math.unit(1, "meter"),
  47548. default: true
  47549. },
  47550. {
  47551. name: "Magic-Infused",
  47552. height: math.unit(5, "meters")
  47553. },
  47554. ]
  47555. ))
  47556. characterMakers.push(() => makeCharacter(
  47557. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47558. {
  47559. front: {
  47560. height: math.unit(5, "meters"),
  47561. name: "Front",
  47562. image: {
  47563. source: "./media/characters/cintia/front.svg",
  47564. extra: 1312/1228,
  47565. bottom: 38/1350
  47566. }
  47567. },
  47568. back: {
  47569. height: math.unit(5, "meters"),
  47570. name: "Back",
  47571. image: {
  47572. source: "./media/characters/cintia/back.svg",
  47573. extra: 1260/1166,
  47574. bottom: 98/1358
  47575. }
  47576. },
  47577. frontDick: {
  47578. height: math.unit(5, "meters"),
  47579. name: "Front (Dick)",
  47580. image: {
  47581. source: "./media/characters/cintia/front-dick.svg",
  47582. extra: 1312/1228,
  47583. bottom: 38/1350
  47584. }
  47585. },
  47586. backDick: {
  47587. height: math.unit(5, "meters"),
  47588. name: "Back (Dick)",
  47589. image: {
  47590. source: "./media/characters/cintia/back-dick.svg",
  47591. extra: 1260/1166,
  47592. bottom: 98/1358
  47593. }
  47594. },
  47595. bust: {
  47596. height: math.unit(1.97, "meters"),
  47597. name: "Bust",
  47598. image: {
  47599. source: "./media/characters/cintia/bust.svg",
  47600. extra: 617/565,
  47601. bottom: 0/617
  47602. }
  47603. },
  47604. },
  47605. [
  47606. {
  47607. name: "Normal",
  47608. height: math.unit(5, "meters"),
  47609. default: true
  47610. },
  47611. ]
  47612. ))
  47613. characterMakers.push(() => makeCharacter(
  47614. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47615. {
  47616. side: {
  47617. height: math.unit(100, "feet"),
  47618. name: "Side",
  47619. image: {
  47620. source: "./media/characters/denora/side.svg",
  47621. extra: 875/803,
  47622. bottom: 9/884
  47623. }
  47624. },
  47625. },
  47626. [
  47627. {
  47628. name: "Standard",
  47629. height: math.unit(100, "feet"),
  47630. default: true
  47631. },
  47632. {
  47633. name: "Grand",
  47634. height: math.unit(1000, "feet")
  47635. },
  47636. {
  47637. name: "Conquering",
  47638. height: math.unit(10000, "feet")
  47639. },
  47640. ]
  47641. ))
  47642. characterMakers.push(() => makeCharacter(
  47643. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47644. {
  47645. dressed: {
  47646. height: math.unit(8 + 5/12, "feet"),
  47647. weight: math.unit(700, "lb"),
  47648. name: "Dressed",
  47649. image: {
  47650. source: "./media/characters/kiva/dressed.svg",
  47651. extra: 1102/1055,
  47652. bottom: 60/1162
  47653. }
  47654. },
  47655. nude: {
  47656. height: math.unit(8 + 5/12, "feet"),
  47657. weight: math.unit(700, "lb"),
  47658. name: "Nude",
  47659. image: {
  47660. source: "./media/characters/kiva/nude.svg",
  47661. extra: 1102/1055,
  47662. bottom: 60/1162
  47663. }
  47664. },
  47665. },
  47666. [
  47667. {
  47668. name: "Base Height",
  47669. height: math.unit(8 + 5/12, "feet"),
  47670. default: true
  47671. },
  47672. {
  47673. name: "Macro",
  47674. height: math.unit(100, "feet")
  47675. },
  47676. {
  47677. name: "Max",
  47678. height: math.unit(3280, "feet")
  47679. },
  47680. ]
  47681. ))
  47682. characterMakers.push(() => makeCharacter(
  47683. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47684. {
  47685. front: {
  47686. height: math.unit(6 + 8/12, "feet"),
  47687. weight: math.unit(250, "lb"),
  47688. name: "Front",
  47689. image: {
  47690. source: "./media/characters/ztragon/front.svg",
  47691. extra: 1825/1684,
  47692. bottom: 98/1923
  47693. }
  47694. },
  47695. },
  47696. [
  47697. {
  47698. name: "Normal",
  47699. height: math.unit(6 + 8/12, "feet"),
  47700. default: true
  47701. },
  47702. {
  47703. name: "Macro",
  47704. height: math.unit(80, "feet")
  47705. },
  47706. ]
  47707. ))
  47708. characterMakers.push(() => makeCharacter(
  47709. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47710. {
  47711. front: {
  47712. height: math.unit(10.4, "feet"),
  47713. weight: math.unit(2, "tons"),
  47714. name: "Front",
  47715. image: {
  47716. source: "./media/characters/yesenia/front.svg",
  47717. extra: 1479/1474,
  47718. bottom: 233/1712
  47719. }
  47720. },
  47721. },
  47722. [
  47723. {
  47724. name: "Normal",
  47725. height: math.unit(10.4, "feet"),
  47726. default: true
  47727. },
  47728. ]
  47729. ))
  47730. characterMakers.push(() => makeCharacter(
  47731. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47732. {
  47733. normal: {
  47734. height: math.unit(6 + 1/12, "feet"),
  47735. weight: math.unit(180, "lb"),
  47736. name: "Normal",
  47737. image: {
  47738. source: "./media/characters/leanne-lycheborne/normal.svg",
  47739. extra: 1748/1660,
  47740. bottom: 98/1846
  47741. }
  47742. },
  47743. were: {
  47744. height: math.unit(12, "feet"),
  47745. weight: math.unit(1600, "lb"),
  47746. name: "Were",
  47747. image: {
  47748. source: "./media/characters/leanne-lycheborne/were.svg",
  47749. extra: 1485/1432,
  47750. bottom: 66/1551
  47751. }
  47752. },
  47753. },
  47754. [
  47755. {
  47756. name: "Normal",
  47757. height: math.unit(6 + 1/12, "feet"),
  47758. default: true
  47759. },
  47760. ]
  47761. ))
  47762. characterMakers.push(() => makeCharacter(
  47763. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47764. {
  47765. side: {
  47766. height: math.unit(13, "feet"),
  47767. name: "Side",
  47768. image: {
  47769. source: "./media/characters/kira-tyler/side.svg",
  47770. extra: 693/393,
  47771. bottom: 58/751
  47772. }
  47773. },
  47774. },
  47775. [
  47776. {
  47777. name: "Normal",
  47778. height: math.unit(13, "feet"),
  47779. default: true
  47780. },
  47781. ]
  47782. ))
  47783. characterMakers.push(() => makeCharacter(
  47784. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47785. {
  47786. front: {
  47787. height: math.unit(10.3, "feet"),
  47788. weight: math.unit(150, "lb"),
  47789. name: "Front",
  47790. image: {
  47791. source: "./media/characters/blaze/front.svg",
  47792. extra: 1378/1286,
  47793. bottom: 172/1550
  47794. }
  47795. },
  47796. },
  47797. [
  47798. {
  47799. name: "Normal",
  47800. height: math.unit(10.3, "feet"),
  47801. default: true
  47802. },
  47803. ]
  47804. ))
  47805. characterMakers.push(() => makeCharacter(
  47806. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47807. {
  47808. side: {
  47809. height: math.unit(2, "meters"),
  47810. weight: math.unit(400, "kg"),
  47811. name: "Side",
  47812. image: {
  47813. source: "./media/characters/anu/side.svg",
  47814. extra: 506/394,
  47815. bottom: 18/524
  47816. }
  47817. },
  47818. },
  47819. [
  47820. {
  47821. name: "Humanoid",
  47822. height: math.unit(2, "meters")
  47823. },
  47824. {
  47825. name: "Normal",
  47826. height: math.unit(5, "meters"),
  47827. default: true
  47828. },
  47829. ]
  47830. ))
  47831. characterMakers.push(() => makeCharacter(
  47832. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47833. {
  47834. front: {
  47835. height: math.unit(5 + 5/12, "feet"),
  47836. weight: math.unit(170, "lb"),
  47837. name: "Front",
  47838. image: {
  47839. source: "./media/characters/synx-the-lynx/front.svg",
  47840. extra: 1893/1745,
  47841. bottom: 17/1910
  47842. }
  47843. },
  47844. side: {
  47845. height: math.unit(5 + 5/12, "feet"),
  47846. weight: math.unit(170, "lb"),
  47847. name: "Side",
  47848. image: {
  47849. source: "./media/characters/synx-the-lynx/side.svg",
  47850. extra: 1884/1740,
  47851. bottom: 39/1923
  47852. }
  47853. },
  47854. back: {
  47855. height: math.unit(5 + 5/12, "feet"),
  47856. weight: math.unit(170, "lb"),
  47857. name: "Back",
  47858. image: {
  47859. source: "./media/characters/synx-the-lynx/back.svg",
  47860. extra: 1903/1755,
  47861. bottom: 14/1917
  47862. }
  47863. },
  47864. },
  47865. [
  47866. {
  47867. name: "Normal",
  47868. height: math.unit(5 + 5/12, "feet"),
  47869. default: true
  47870. },
  47871. ]
  47872. ))
  47873. characterMakers.push(() => makeCharacter(
  47874. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47875. {
  47876. back: {
  47877. height: math.unit(15, "feet"),
  47878. name: "Back",
  47879. image: {
  47880. source: "./media/characters/nadezda-fex/back.svg",
  47881. extra: 1695/1481,
  47882. bottom: 25/1720
  47883. }
  47884. },
  47885. },
  47886. [
  47887. {
  47888. name: "Normal",
  47889. height: math.unit(15, "feet"),
  47890. default: true
  47891. },
  47892. {
  47893. name: "Macro",
  47894. height: math.unit(2.5, "miles")
  47895. },
  47896. {
  47897. name: "Goddess",
  47898. height: math.unit(2, "multiverses")
  47899. },
  47900. ]
  47901. ))
  47902. characterMakers.push(() => makeCharacter(
  47903. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47904. {
  47905. front: {
  47906. height: math.unit(216, "cm"),
  47907. name: "Front",
  47908. image: {
  47909. source: "./media/characters/lev/front.svg",
  47910. extra: 1728/1670,
  47911. bottom: 82/1810
  47912. }
  47913. },
  47914. back: {
  47915. height: math.unit(216, "cm"),
  47916. name: "Back",
  47917. image: {
  47918. source: "./media/characters/lev/back.svg",
  47919. extra: 1738/1675,
  47920. bottom: 24/1762
  47921. }
  47922. },
  47923. dressed: {
  47924. height: math.unit(216, "cm"),
  47925. name: "Dressed",
  47926. image: {
  47927. source: "./media/characters/lev/dressed.svg",
  47928. extra: 1397/1351,
  47929. bottom: 73/1470
  47930. }
  47931. },
  47932. head: {
  47933. height: math.unit(0.51, "meter"),
  47934. name: "Head",
  47935. image: {
  47936. source: "./media/characters/lev/head.svg"
  47937. }
  47938. },
  47939. },
  47940. [
  47941. {
  47942. name: "Normal",
  47943. height: math.unit(216, "cm"),
  47944. default: true
  47945. },
  47946. {
  47947. name: "Relatively Macro",
  47948. height: math.unit(80, "meters")
  47949. },
  47950. {
  47951. name: "Megamacro",
  47952. height: math.unit(21600, "meters")
  47953. },
  47954. {
  47955. name: "Megamacro+",
  47956. height: math.unit(64800, "meters")
  47957. },
  47958. ]
  47959. ))
  47960. characterMakers.push(() => makeCharacter(
  47961. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47962. {
  47963. front: {
  47964. height: math.unit(2, "meters"),
  47965. weight: math.unit(80, "kg"),
  47966. name: "Front",
  47967. image: {
  47968. source: "./media/characters/moka/front.svg",
  47969. extra: 1337/1255,
  47970. bottom: 58/1395
  47971. }
  47972. },
  47973. },
  47974. [
  47975. {
  47976. name: "Micro",
  47977. height: math.unit(15, "cm")
  47978. },
  47979. {
  47980. name: "Normal",
  47981. height: math.unit(2, "meters"),
  47982. default: true
  47983. },
  47984. {
  47985. name: "Macro",
  47986. height: math.unit(20, "meters"),
  47987. },
  47988. ]
  47989. ))
  47990. characterMakers.push(() => makeCharacter(
  47991. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47992. {
  47993. front: {
  47994. height: math.unit(9, "feet"),
  47995. weight: math.unit(240, "lb"),
  47996. name: "Front",
  47997. image: {
  47998. source: "./media/characters/kuzco/front.svg",
  47999. extra: 1593/1487,
  48000. bottom: 32/1625
  48001. }
  48002. },
  48003. side: {
  48004. height: math.unit(9, "feet"),
  48005. weight: math.unit(240, "lb"),
  48006. name: "Side",
  48007. image: {
  48008. source: "./media/characters/kuzco/side.svg",
  48009. extra: 1575/1485,
  48010. bottom: 30/1605
  48011. }
  48012. },
  48013. back: {
  48014. height: math.unit(9, "feet"),
  48015. weight: math.unit(240, "lb"),
  48016. name: "Back",
  48017. image: {
  48018. source: "./media/characters/kuzco/back.svg",
  48019. extra: 1603/1514,
  48020. bottom: 14/1617
  48021. }
  48022. },
  48023. },
  48024. [
  48025. {
  48026. name: "Normal",
  48027. height: math.unit(9, "feet"),
  48028. default: true
  48029. },
  48030. ]
  48031. ))
  48032. characterMakers.push(() => makeCharacter(
  48033. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48034. {
  48035. side: {
  48036. height: math.unit(2, "meters"),
  48037. weight: math.unit(300, "kg"),
  48038. name: "Side",
  48039. image: {
  48040. source: "./media/characters/ceruleus/side.svg",
  48041. extra: 1068/974,
  48042. bottom: 126/1194
  48043. }
  48044. },
  48045. maw: {
  48046. height: math.unit(0.8125, "meter"),
  48047. name: "Maw",
  48048. image: {
  48049. source: "./media/characters/ceruleus/maw.svg"
  48050. }
  48051. },
  48052. },
  48053. [
  48054. {
  48055. name: "Normal",
  48056. height: math.unit(16, "meters"),
  48057. default: true
  48058. },
  48059. ]
  48060. ))
  48061. characterMakers.push(() => makeCharacter(
  48062. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48063. {
  48064. front: {
  48065. height: math.unit(9, "feet"),
  48066. weight: math.unit(500, "kg"),
  48067. name: "Front",
  48068. image: {
  48069. source: "./media/characters/acouya/front.svg",
  48070. extra: 1660/1473,
  48071. bottom: 28/1688
  48072. }
  48073. },
  48074. },
  48075. [
  48076. {
  48077. name: "Normal",
  48078. height: math.unit(9, "feet"),
  48079. default: true
  48080. },
  48081. ]
  48082. ))
  48083. characterMakers.push(() => makeCharacter(
  48084. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48085. {
  48086. front: {
  48087. height: math.unit(5 + 6/12, "feet"),
  48088. weight: math.unit(195, "lb"),
  48089. name: "Front",
  48090. image: {
  48091. source: "./media/characters/vant/front.svg",
  48092. extra: 1396/1320,
  48093. bottom: 20/1416
  48094. }
  48095. },
  48096. back: {
  48097. height: math.unit(5 + 6/12, "feet"),
  48098. weight: math.unit(195, "lb"),
  48099. name: "Back",
  48100. image: {
  48101. source: "./media/characters/vant/back.svg",
  48102. extra: 1396/1320,
  48103. bottom: 20/1416
  48104. }
  48105. },
  48106. maw: {
  48107. height: math.unit(0.75, "feet"),
  48108. name: "Maw",
  48109. image: {
  48110. source: "./media/characters/vant/maw.svg"
  48111. }
  48112. },
  48113. paw: {
  48114. height: math.unit(1.07, "feet"),
  48115. name: "Paw",
  48116. image: {
  48117. source: "./media/characters/vant/paw.svg"
  48118. }
  48119. },
  48120. },
  48121. [
  48122. {
  48123. name: "Micro",
  48124. height: math.unit(0.25, "inches")
  48125. },
  48126. {
  48127. name: "Normal",
  48128. height: math.unit(5 + 6/12, "feet"),
  48129. default: true
  48130. },
  48131. {
  48132. name: "Macro",
  48133. height: math.unit(75, "feet")
  48134. },
  48135. ]
  48136. ))
  48137. characterMakers.push(() => makeCharacter(
  48138. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48139. {
  48140. front: {
  48141. height: math.unit(30, "meters"),
  48142. weight: math.unit(363, "tons"),
  48143. name: "Front",
  48144. image: {
  48145. source: "./media/characters/ahra/front.svg",
  48146. extra: 1914/1814,
  48147. bottom: 46/1960
  48148. }
  48149. },
  48150. },
  48151. [
  48152. {
  48153. name: "Macro",
  48154. height: math.unit(30, "meters"),
  48155. default: true
  48156. },
  48157. ]
  48158. ))
  48159. characterMakers.push(() => makeCharacter(
  48160. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48161. {
  48162. undressed: {
  48163. height: math.unit(2, "m"),
  48164. weight: math.unit(250, "kg"),
  48165. name: "Undressed",
  48166. image: {
  48167. source: "./media/characters/coriander/undressed.svg",
  48168. extra: 1757/1606,
  48169. bottom: 107/1864
  48170. }
  48171. },
  48172. dressed: {
  48173. height: math.unit(2, "m"),
  48174. weight: math.unit(250, "kg"),
  48175. name: "Dressed",
  48176. image: {
  48177. source: "./media/characters/coriander/dressed.svg",
  48178. extra: 1757/1606,
  48179. bottom: 107/1864
  48180. }
  48181. },
  48182. },
  48183. [
  48184. {
  48185. name: "Normal",
  48186. height: math.unit(4, "meters"),
  48187. default: true
  48188. },
  48189. {
  48190. name: "XL",
  48191. height: math.unit(6, "meters")
  48192. },
  48193. {
  48194. name: "XXL",
  48195. height: math.unit(8, "meters")
  48196. },
  48197. ]
  48198. ))
  48199. characterMakers.push(() => makeCharacter(
  48200. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48201. {
  48202. front: {
  48203. height: math.unit(6, "feet"),
  48204. name: "Front",
  48205. image: {
  48206. source: "./media/characters/syrinx/front.svg",
  48207. extra: 1557/1259,
  48208. bottom: 171/1728
  48209. }
  48210. },
  48211. },
  48212. [
  48213. {
  48214. name: "Normal",
  48215. height: math.unit(6 + 3/12, "feet"),
  48216. default: true
  48217. },
  48218. ]
  48219. ))
  48220. characterMakers.push(() => makeCharacter(
  48221. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48222. {
  48223. front: {
  48224. height: math.unit(11 + 6/12, "feet"),
  48225. weight: math.unit(1.5, "tons"),
  48226. name: "Front",
  48227. image: {
  48228. source: "./media/characters/bor/front.svg",
  48229. extra: 1189/1109,
  48230. bottom: 170/1359
  48231. }
  48232. },
  48233. },
  48234. [
  48235. {
  48236. name: "Normal",
  48237. height: math.unit(11 + 6/12, "feet"),
  48238. default: true
  48239. },
  48240. {
  48241. name: "Macro",
  48242. height: math.unit(32 + 9/12, "feet")
  48243. },
  48244. ]
  48245. ))
  48246. characterMakers.push(() => makeCharacter(
  48247. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48248. {
  48249. anthro: {
  48250. height: math.unit(9, "feet"),
  48251. weight: math.unit(2076, "lb"),
  48252. name: "Anthro",
  48253. image: {
  48254. source: "./media/characters/abacus/anthro.svg",
  48255. extra: 1540/1494,
  48256. bottom: 233/1773
  48257. }
  48258. },
  48259. pigeon: {
  48260. height: math.unit(1, "feet"),
  48261. name: "Pigeon",
  48262. image: {
  48263. source: "./media/characters/abacus/pigeon.svg",
  48264. extra: 528/525,
  48265. bottom: 46/574
  48266. }
  48267. },
  48268. },
  48269. [
  48270. {
  48271. name: "Normal",
  48272. height: math.unit(9, "feet"),
  48273. default: true
  48274. },
  48275. ]
  48276. ))
  48277. characterMakers.push(() => makeCharacter(
  48278. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48279. {
  48280. side: {
  48281. height: math.unit(6, "feet"),
  48282. name: "Side",
  48283. image: {
  48284. source: "./media/characters/delkhan/side.svg",
  48285. extra: 1884/1786,
  48286. bottom: 308/2192
  48287. }
  48288. },
  48289. head: {
  48290. height: math.unit(3.38, "feet"),
  48291. name: "Head",
  48292. image: {
  48293. source: "./media/characters/delkhan/head.svg"
  48294. }
  48295. },
  48296. },
  48297. [
  48298. {
  48299. name: "Normal",
  48300. height: math.unit(72, "feet"),
  48301. default: true
  48302. },
  48303. {
  48304. name: "Giant",
  48305. height: math.unit(172, "feet")
  48306. },
  48307. ]
  48308. ))
  48309. characterMakers.push(() => makeCharacter(
  48310. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48311. {
  48312. standing: {
  48313. height: math.unit(6, "feet"),
  48314. name: "Standing",
  48315. image: {
  48316. source: "./media/characters/euchidat/standing.svg",
  48317. extra: 1612/1553,
  48318. bottom: 116/1728
  48319. }
  48320. },
  48321. leaning: {
  48322. height: math.unit(6, "feet"),
  48323. name: "Leaning",
  48324. image: {
  48325. source: "./media/characters/euchidat/leaning.svg",
  48326. extra: 1719/1674,
  48327. bottom: 27/1746
  48328. }
  48329. },
  48330. },
  48331. [
  48332. {
  48333. name: "Normal",
  48334. height: math.unit(175, "feet"),
  48335. default: true
  48336. },
  48337. {
  48338. name: "Megamacro",
  48339. height: math.unit(190, "miles")
  48340. },
  48341. {
  48342. name: "Gigamacro",
  48343. height: math.unit(190000, "miles")
  48344. },
  48345. ]
  48346. ))
  48347. characterMakers.push(() => makeCharacter(
  48348. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48349. {
  48350. front: {
  48351. height: math.unit(6, "feet"),
  48352. weight: math.unit(150, "lb"),
  48353. name: "Front",
  48354. image: {
  48355. source: "./media/characters/rebecca-stack/front.svg",
  48356. extra: 1256/1201,
  48357. bottom: 18/1274
  48358. }
  48359. },
  48360. },
  48361. [
  48362. {
  48363. name: "Normal",
  48364. height: math.unit(5 + 8/12, "feet"),
  48365. default: true
  48366. },
  48367. {
  48368. name: "Demolitionist",
  48369. height: math.unit(200, "feet")
  48370. },
  48371. {
  48372. name: "Out of Control",
  48373. height: math.unit(2, "miles")
  48374. },
  48375. {
  48376. name: "Giga",
  48377. height: math.unit(7200, "miles")
  48378. },
  48379. ]
  48380. ))
  48381. characterMakers.push(() => makeCharacter(
  48382. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48383. {
  48384. front: {
  48385. height: math.unit(6, "feet"),
  48386. weight: math.unit(150, "lb"),
  48387. name: "Front",
  48388. image: {
  48389. source: "./media/characters/jenny-cartwright/front.svg",
  48390. extra: 1384/1376,
  48391. bottom: 58/1442
  48392. }
  48393. },
  48394. },
  48395. [
  48396. {
  48397. name: "Normal",
  48398. height: math.unit(6 + 7/12, "feet"),
  48399. default: true
  48400. },
  48401. {
  48402. name: "Librarian",
  48403. height: math.unit(55, "feet")
  48404. },
  48405. {
  48406. name: "Sightseer",
  48407. height: math.unit(50, "miles")
  48408. },
  48409. {
  48410. name: "Giga",
  48411. height: math.unit(30000, "miles")
  48412. },
  48413. ]
  48414. ))
  48415. characterMakers.push(() => makeCharacter(
  48416. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48417. {
  48418. nude: {
  48419. height: math.unit(8, "feet"),
  48420. weight: math.unit(225, "lb"),
  48421. name: "Nude",
  48422. image: {
  48423. source: "./media/characters/marvy/nude.svg",
  48424. extra: 1900/1683,
  48425. bottom: 89/1989
  48426. }
  48427. },
  48428. dressed: {
  48429. height: math.unit(8, "feet"),
  48430. weight: math.unit(225, "lb"),
  48431. name: "Dressed",
  48432. image: {
  48433. source: "./media/characters/marvy/dressed.svg",
  48434. extra: 1900/1683,
  48435. bottom: 89/1989
  48436. }
  48437. },
  48438. head: {
  48439. height: math.unit(2.85, "feet"),
  48440. name: "Head",
  48441. image: {
  48442. source: "./media/characters/marvy/head.svg"
  48443. }
  48444. },
  48445. },
  48446. [
  48447. {
  48448. name: "Normal",
  48449. height: math.unit(8, "feet"),
  48450. default: true
  48451. },
  48452. ]
  48453. ))
  48454. characterMakers.push(() => makeCharacter(
  48455. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48456. {
  48457. front: {
  48458. height: math.unit(8, "feet"),
  48459. weight: math.unit(250, "lb"),
  48460. name: "Front",
  48461. image: {
  48462. source: "./media/characters/leah/front.svg",
  48463. extra: 1257/1149,
  48464. bottom: 109/1366
  48465. }
  48466. },
  48467. },
  48468. [
  48469. {
  48470. name: "Normal",
  48471. height: math.unit(8, "feet"),
  48472. default: true
  48473. },
  48474. {
  48475. name: "Minimacro",
  48476. height: math.unit(40, "feet")
  48477. },
  48478. {
  48479. name: "Macro",
  48480. height: math.unit(124, "feet")
  48481. },
  48482. {
  48483. name: "Megamacro",
  48484. height: math.unit(850, "feet")
  48485. },
  48486. ]
  48487. ))
  48488. characterMakers.push(() => makeCharacter(
  48489. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48490. {
  48491. side: {
  48492. height: math.unit(13 + 6/12, "feet"),
  48493. weight: math.unit(3200, "lb"),
  48494. name: "Side",
  48495. image: {
  48496. source: "./media/characters/alvir/side.svg",
  48497. extra: 896/589,
  48498. bottom: 26/922
  48499. }
  48500. },
  48501. },
  48502. [
  48503. {
  48504. name: "Normal",
  48505. height: math.unit(13 + 6/12, "feet"),
  48506. default: true
  48507. },
  48508. ]
  48509. ))
  48510. characterMakers.push(() => makeCharacter(
  48511. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48512. {
  48513. front: {
  48514. height: math.unit(5 + 4/12, "feet"),
  48515. weight: math.unit(236, "lb"),
  48516. name: "Front",
  48517. image: {
  48518. source: "./media/characters/zaina-khalil/front.svg",
  48519. extra: 1533/1485,
  48520. bottom: 94/1627
  48521. }
  48522. },
  48523. side: {
  48524. height: math.unit(5 + 4/12, "feet"),
  48525. weight: math.unit(236, "lb"),
  48526. name: "Side",
  48527. image: {
  48528. source: "./media/characters/zaina-khalil/side.svg",
  48529. extra: 1537/1498,
  48530. bottom: 66/1603
  48531. }
  48532. },
  48533. back: {
  48534. height: math.unit(5 + 4/12, "feet"),
  48535. weight: math.unit(236, "lb"),
  48536. name: "Back",
  48537. image: {
  48538. source: "./media/characters/zaina-khalil/back.svg",
  48539. extra: 1546/1494,
  48540. bottom: 89/1635
  48541. }
  48542. },
  48543. },
  48544. [
  48545. {
  48546. name: "Normal",
  48547. height: math.unit(5 + 4/12, "feet"),
  48548. default: true
  48549. },
  48550. ]
  48551. ))
  48552. characterMakers.push(() => makeCharacter(
  48553. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48554. {
  48555. side: {
  48556. height: math.unit(12, "feet"),
  48557. weight: math.unit(4000, "lb"),
  48558. name: "Side",
  48559. image: {
  48560. source: "./media/characters/terry/side.svg",
  48561. extra: 1518/1439,
  48562. bottom: 149/1667
  48563. }
  48564. },
  48565. },
  48566. [
  48567. {
  48568. name: "Normal",
  48569. height: math.unit(12, "feet"),
  48570. default: true
  48571. },
  48572. ]
  48573. ))
  48574. characterMakers.push(() => makeCharacter(
  48575. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48576. {
  48577. front: {
  48578. height: math.unit(12, "feet"),
  48579. weight: math.unit(1500, "lb"),
  48580. name: "Front",
  48581. image: {
  48582. source: "./media/characters/kahea/front.svg",
  48583. extra: 1722/1617,
  48584. bottom: 179/1901
  48585. }
  48586. },
  48587. },
  48588. [
  48589. {
  48590. name: "Normal",
  48591. height: math.unit(12, "feet"),
  48592. default: true
  48593. },
  48594. ]
  48595. ))
  48596. characterMakers.push(() => makeCharacter(
  48597. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48598. {
  48599. demonFront: {
  48600. height: math.unit(36, "feet"),
  48601. name: "Front",
  48602. image: {
  48603. source: "./media/characters/alex-xuria/demon-front.svg",
  48604. extra: 1705/1673,
  48605. bottom: 198/1903
  48606. },
  48607. form: "demon",
  48608. default: true
  48609. },
  48610. demonBack: {
  48611. height: math.unit(36, "feet"),
  48612. name: "Back",
  48613. image: {
  48614. source: "./media/characters/alex-xuria/demon-back.svg",
  48615. extra: 1725/1693,
  48616. bottom: 70/1795
  48617. },
  48618. form: "demon"
  48619. },
  48620. demonHead: {
  48621. height: math.unit(2.14, "meters"),
  48622. name: "Head",
  48623. image: {
  48624. source: "./media/characters/alex-xuria/demon-head.svg"
  48625. },
  48626. form: "demon"
  48627. },
  48628. demonHand: {
  48629. height: math.unit(1.61, "meters"),
  48630. name: "Hand",
  48631. image: {
  48632. source: "./media/characters/alex-xuria/demon-hand.svg"
  48633. },
  48634. form: "demon"
  48635. },
  48636. demonPaw: {
  48637. height: math.unit(1.35, "meters"),
  48638. name: "Paw",
  48639. image: {
  48640. source: "./media/characters/alex-xuria/demon-paw.svg"
  48641. },
  48642. form: "demon"
  48643. },
  48644. demonFoot: {
  48645. height: math.unit(2.2, "meters"),
  48646. name: "Foot",
  48647. image: {
  48648. source: "./media/characters/alex-xuria/demon-foot.svg"
  48649. },
  48650. form: "demon"
  48651. },
  48652. demonCock: {
  48653. height: math.unit(1.74, "meters"),
  48654. name: "Cock",
  48655. image: {
  48656. source: "./media/characters/alex-xuria/demon-cock.svg"
  48657. },
  48658. form: "demon"
  48659. },
  48660. demonTailClosed: {
  48661. height: math.unit(1.47, "meters"),
  48662. name: "Tail (Closed)",
  48663. image: {
  48664. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48665. },
  48666. form: "demon"
  48667. },
  48668. demonTailOpen: {
  48669. height: math.unit(2.85, "meters"),
  48670. name: "Tail (Open)",
  48671. image: {
  48672. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48673. },
  48674. form: "demon"
  48675. },
  48676. incubusFront: {
  48677. height: math.unit(12, "feet"),
  48678. name: "Front",
  48679. image: {
  48680. source: "./media/characters/alex-xuria/incubus-front.svg",
  48681. extra: 1754/1677,
  48682. bottom: 125/1879
  48683. },
  48684. form: "incubus",
  48685. default: true
  48686. },
  48687. incubusBack: {
  48688. height: math.unit(12, "feet"),
  48689. name: "Back",
  48690. image: {
  48691. source: "./media/characters/alex-xuria/incubus-back.svg",
  48692. extra: 1702/1647,
  48693. bottom: 30/1732
  48694. },
  48695. form: "incubus"
  48696. },
  48697. incubusHead: {
  48698. height: math.unit(3.45, "feet"),
  48699. name: "Head",
  48700. image: {
  48701. source: "./media/characters/alex-xuria/incubus-head.svg"
  48702. },
  48703. form: "incubus"
  48704. },
  48705. rabbitFront: {
  48706. height: math.unit(6, "feet"),
  48707. name: "Front",
  48708. image: {
  48709. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48710. extra: 1369/1349,
  48711. bottom: 45/1414
  48712. },
  48713. form: "rabbit",
  48714. default: true
  48715. },
  48716. rabbitSide: {
  48717. height: math.unit(6, "feet"),
  48718. name: "Side",
  48719. image: {
  48720. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48721. extra: 1370/1356,
  48722. bottom: 37/1407
  48723. },
  48724. form: "rabbit"
  48725. },
  48726. rabbitBack: {
  48727. height: math.unit(6, "feet"),
  48728. name: "Back",
  48729. image: {
  48730. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48731. extra: 1375/1358,
  48732. bottom: 43/1418
  48733. },
  48734. form: "rabbit"
  48735. },
  48736. },
  48737. [
  48738. {
  48739. name: "Normal",
  48740. height: math.unit(6, "feet"),
  48741. default: true,
  48742. form: "rabbit"
  48743. },
  48744. {
  48745. name: "Incubus",
  48746. height: math.unit(12, "feet"),
  48747. default: true,
  48748. form: "incubus"
  48749. },
  48750. {
  48751. name: "Demon",
  48752. height: math.unit(36, "feet"),
  48753. default: true,
  48754. form: "demon"
  48755. }
  48756. ],
  48757. {
  48758. "demon": {
  48759. name: "Demon",
  48760. default: true
  48761. },
  48762. "incubus": {
  48763. name: "Incubus",
  48764. },
  48765. "rabbit": {
  48766. name: "Rabbit"
  48767. }
  48768. }
  48769. ))
  48770. characterMakers.push(() => makeCharacter(
  48771. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48772. {
  48773. front: {
  48774. height: math.unit(7 + 5/12, "feet"),
  48775. weight: math.unit(510, "lb"),
  48776. name: "Front",
  48777. image: {
  48778. source: "./media/characters/syrup/front.svg",
  48779. extra: 932/916,
  48780. bottom: 26/958
  48781. }
  48782. },
  48783. },
  48784. [
  48785. {
  48786. name: "Normal",
  48787. height: math.unit(7 + 5/12, "feet"),
  48788. default: true
  48789. },
  48790. {
  48791. name: "Big",
  48792. height: math.unit(50, "feet")
  48793. },
  48794. {
  48795. name: "Macro",
  48796. height: math.unit(300, "feet")
  48797. },
  48798. {
  48799. name: "Megamacro",
  48800. height: math.unit(1, "mile")
  48801. },
  48802. ]
  48803. ))
  48804. characterMakers.push(() => makeCharacter(
  48805. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48806. {
  48807. front: {
  48808. height: math.unit(6 + 9/12, "feet"),
  48809. name: "Front",
  48810. image: {
  48811. source: "./media/characters/zeimne/front.svg",
  48812. extra: 1969/1806,
  48813. bottom: 53/2022
  48814. }
  48815. },
  48816. },
  48817. [
  48818. {
  48819. name: "Normal",
  48820. height: math.unit(6 + 9/12, "feet"),
  48821. default: true
  48822. },
  48823. {
  48824. name: "Giant",
  48825. height: math.unit(550, "feet")
  48826. },
  48827. {
  48828. name: "Mega",
  48829. height: math.unit(3, "miles")
  48830. },
  48831. {
  48832. name: "Giga",
  48833. height: math.unit(250, "miles")
  48834. },
  48835. {
  48836. name: "Tera",
  48837. height: math.unit(1, "AU")
  48838. },
  48839. ]
  48840. ))
  48841. characterMakers.push(() => makeCharacter(
  48842. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48843. {
  48844. front: {
  48845. height: math.unit(5 + 2/12, "feet"),
  48846. name: "Front",
  48847. image: {
  48848. source: "./media/characters/grar/front.svg",
  48849. extra: 1331/1119,
  48850. bottom: 60/1391
  48851. }
  48852. },
  48853. back: {
  48854. height: math.unit(5 + 2/12, "feet"),
  48855. name: "Back",
  48856. image: {
  48857. source: "./media/characters/grar/back.svg",
  48858. extra: 1385/1169,
  48859. bottom: 23/1408
  48860. }
  48861. },
  48862. },
  48863. [
  48864. {
  48865. name: "Normal",
  48866. height: math.unit(5 + 2/12, "feet"),
  48867. default: true
  48868. },
  48869. ]
  48870. ))
  48871. characterMakers.push(() => makeCharacter(
  48872. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48873. {
  48874. front: {
  48875. height: math.unit(13 + 7/12, "feet"),
  48876. weight: math.unit(2200, "lb"),
  48877. name: "Front",
  48878. image: {
  48879. source: "./media/characters/endraya/front.svg",
  48880. extra: 1289/1215,
  48881. bottom: 50/1339
  48882. }
  48883. },
  48884. nude: {
  48885. height: math.unit(13 + 7/12, "feet"),
  48886. weight: math.unit(2200, "lb"),
  48887. name: "Nude",
  48888. image: {
  48889. source: "./media/characters/endraya/nude.svg",
  48890. extra: 1247/1171,
  48891. bottom: 40/1287
  48892. }
  48893. },
  48894. head: {
  48895. height: math.unit(2.6, "feet"),
  48896. name: "Head",
  48897. image: {
  48898. source: "./media/characters/endraya/head.svg"
  48899. }
  48900. },
  48901. slit: {
  48902. height: math.unit(3.4, "feet"),
  48903. name: "Slit",
  48904. image: {
  48905. source: "./media/characters/endraya/slit.svg"
  48906. }
  48907. },
  48908. },
  48909. [
  48910. {
  48911. name: "Normal",
  48912. height: math.unit(13 + 7/12, "feet"),
  48913. default: true
  48914. },
  48915. {
  48916. name: "Macro",
  48917. height: math.unit(200, "feet")
  48918. },
  48919. ]
  48920. ))
  48921. characterMakers.push(() => makeCharacter(
  48922. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48923. {
  48924. front: {
  48925. height: math.unit(1.81, "meters"),
  48926. weight: math.unit(69, "kg"),
  48927. name: "Front",
  48928. image: {
  48929. source: "./media/characters/rodryana/front.svg",
  48930. extra: 2002/1921,
  48931. bottom: 53/2055
  48932. }
  48933. },
  48934. back: {
  48935. height: math.unit(1.81, "meters"),
  48936. weight: math.unit(69, "kg"),
  48937. name: "Back",
  48938. image: {
  48939. source: "./media/characters/rodryana/back.svg",
  48940. extra: 1993/1926,
  48941. bottom: 48/2041
  48942. }
  48943. },
  48944. maw: {
  48945. height: math.unit(0.19769417475, "meters"),
  48946. name: "Maw",
  48947. image: {
  48948. source: "./media/characters/rodryana/maw.svg"
  48949. }
  48950. },
  48951. slit: {
  48952. height: math.unit(0.31631067961, "meters"),
  48953. name: "Slit",
  48954. image: {
  48955. source: "./media/characters/rodryana/slit.svg"
  48956. }
  48957. },
  48958. },
  48959. [
  48960. {
  48961. name: "Normal",
  48962. height: math.unit(1.81, "meters")
  48963. },
  48964. {
  48965. name: "Mini Macro",
  48966. height: math.unit(181, "meters")
  48967. },
  48968. {
  48969. name: "Macro",
  48970. height: math.unit(452, "meters"),
  48971. default: true
  48972. },
  48973. {
  48974. name: "Mega Macro",
  48975. height: math.unit(1.375, "km")
  48976. },
  48977. {
  48978. name: "Giga Macro",
  48979. height: math.unit(13.575, "km")
  48980. },
  48981. ]
  48982. ))
  48983. characterMakers.push(() => makeCharacter(
  48984. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48985. {
  48986. front: {
  48987. height: math.unit(6, "feet"),
  48988. weight: math.unit(1000, "lb"),
  48989. name: "Front",
  48990. image: {
  48991. source: "./media/characters/asaya/front.svg",
  48992. extra: 1460/1200,
  48993. bottom: 71/1531
  48994. }
  48995. },
  48996. },
  48997. [
  48998. {
  48999. name: "Normal",
  49000. height: math.unit(8, "km"),
  49001. default: true
  49002. },
  49003. ]
  49004. ))
  49005. characterMakers.push(() => makeCharacter(
  49006. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49007. {
  49008. front: {
  49009. height: math.unit(3.5, "meters"),
  49010. name: "Front",
  49011. image: {
  49012. source: "./media/characters/sarzu-and-israz/front.svg",
  49013. extra: 1570/1558,
  49014. bottom: 150/1720
  49015. },
  49016. },
  49017. back: {
  49018. height: math.unit(3.5, "meters"),
  49019. name: "Back",
  49020. image: {
  49021. source: "./media/characters/sarzu-and-israz/back.svg",
  49022. extra: 1523/1509,
  49023. bottom: 132/1655
  49024. },
  49025. },
  49026. frontFemale: {
  49027. height: math.unit(3.5, "meters"),
  49028. name: "Front (Female)",
  49029. image: {
  49030. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49031. extra: 1570/1558,
  49032. bottom: 150/1720
  49033. },
  49034. },
  49035. frontHerm: {
  49036. height: math.unit(3.5, "meters"),
  49037. name: "Front (Herm)",
  49038. image: {
  49039. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49040. extra: 1570/1558,
  49041. bottom: 150/1720
  49042. },
  49043. },
  49044. },
  49045. [
  49046. {
  49047. name: "Normal",
  49048. height: math.unit(3.5, "meters"),
  49049. default: true,
  49050. },
  49051. {
  49052. name: "Macro",
  49053. height: math.unit(65.5, "meters"),
  49054. },
  49055. ],
  49056. ))
  49057. characterMakers.push(() => makeCharacter(
  49058. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49059. {
  49060. front: {
  49061. height: math.unit(6, "feet"),
  49062. weight: math.unit(250, "lb"),
  49063. name: "Front",
  49064. image: {
  49065. source: "./media/characters/zenimma/front.svg",
  49066. extra: 1346/1320,
  49067. bottom: 58/1404
  49068. }
  49069. },
  49070. back: {
  49071. height: math.unit(6, "feet"),
  49072. weight: math.unit(250, "lb"),
  49073. name: "Back",
  49074. image: {
  49075. source: "./media/characters/zenimma/back.svg",
  49076. extra: 1324/1308,
  49077. bottom: 44/1368
  49078. }
  49079. },
  49080. dick: {
  49081. height: math.unit(1.44, "feet"),
  49082. name: "Dick",
  49083. image: {
  49084. source: "./media/characters/zenimma/dick.svg"
  49085. }
  49086. },
  49087. },
  49088. [
  49089. {
  49090. name: "Canon Height",
  49091. height: math.unit(66, "miles"),
  49092. default: true
  49093. },
  49094. ]
  49095. ))
  49096. characterMakers.push(() => makeCharacter(
  49097. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49098. {
  49099. nude: {
  49100. height: math.unit(6, "feet"),
  49101. weight: math.unit(150, "lb"),
  49102. name: "Nude",
  49103. image: {
  49104. source: "./media/characters/shavon/nude.svg",
  49105. extra: 1242/1096,
  49106. bottom: 98/1340
  49107. }
  49108. },
  49109. dressed: {
  49110. height: math.unit(6, "feet"),
  49111. weight: math.unit(150, "lb"),
  49112. name: "Dressed",
  49113. image: {
  49114. source: "./media/characters/shavon/dressed.svg",
  49115. extra: 1242/1096,
  49116. bottom: 98/1340
  49117. }
  49118. },
  49119. },
  49120. [
  49121. {
  49122. name: "Macro",
  49123. height: math.unit(255, "feet"),
  49124. default: true
  49125. },
  49126. ]
  49127. ))
  49128. characterMakers.push(() => makeCharacter(
  49129. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49130. {
  49131. front: {
  49132. height: math.unit(6, "feet"),
  49133. name: "Front",
  49134. image: {
  49135. source: "./media/characters/steph/front.svg",
  49136. extra: 1430/1330,
  49137. bottom: 54/1484
  49138. }
  49139. },
  49140. },
  49141. [
  49142. {
  49143. name: "Normal",
  49144. height: math.unit(6, "feet"),
  49145. default: true
  49146. },
  49147. ]
  49148. ))
  49149. characterMakers.push(() => makeCharacter(
  49150. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49151. {
  49152. front: {
  49153. height: math.unit(9, "feet"),
  49154. weight: math.unit(400, "lb"),
  49155. name: "Front",
  49156. image: {
  49157. source: "./media/characters/kil'aman/front.svg",
  49158. extra: 1210/1159,
  49159. bottom: 109/1319
  49160. }
  49161. },
  49162. head: {
  49163. height: math.unit(2.14, "feet"),
  49164. name: "Head",
  49165. image: {
  49166. source: "./media/characters/kil'aman/head.svg"
  49167. }
  49168. },
  49169. maw: {
  49170. height: math.unit(1.21, "feet"),
  49171. name: "Maw",
  49172. image: {
  49173. source: "./media/characters/kil'aman/maw.svg"
  49174. }
  49175. },
  49176. foot: {
  49177. height: math.unit(1.7, "feet"),
  49178. name: "Foot",
  49179. image: {
  49180. source: "./media/characters/kil'aman/foot.svg"
  49181. }
  49182. },
  49183. dick: {
  49184. height: math.unit(2.1, "feet"),
  49185. name: "Dick",
  49186. image: {
  49187. source: "./media/characters/kil'aman/dick.svg"
  49188. }
  49189. },
  49190. },
  49191. [
  49192. {
  49193. name: "Normal",
  49194. height: math.unit(9, "feet")
  49195. },
  49196. {
  49197. name: "Canon Height",
  49198. height: math.unit(10, "miles"),
  49199. default: true
  49200. },
  49201. {
  49202. name: "Maximum",
  49203. height: math.unit(6e9, "miles")
  49204. },
  49205. ]
  49206. ))
  49207. characterMakers.push(() => makeCharacter(
  49208. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49209. {
  49210. front: {
  49211. height: math.unit(90, "feet"),
  49212. weight: math.unit(675000, "lb"),
  49213. name: "Front",
  49214. image: {
  49215. source: "./media/characters/qadan/front.svg",
  49216. extra: 1012/1004,
  49217. bottom: 78/1090
  49218. }
  49219. },
  49220. back: {
  49221. height: math.unit(90, "feet"),
  49222. weight: math.unit(675000, "lb"),
  49223. name: "Back",
  49224. image: {
  49225. source: "./media/characters/qadan/back.svg",
  49226. extra: 1042/1031,
  49227. bottom: 55/1097
  49228. }
  49229. },
  49230. armored: {
  49231. height: math.unit(90, "feet"),
  49232. weight: math.unit(675000, "lb"),
  49233. name: "Armored",
  49234. image: {
  49235. source: "./media/characters/qadan/armored.svg",
  49236. extra: 1047/1037,
  49237. bottom: 48/1095
  49238. }
  49239. },
  49240. },
  49241. [
  49242. {
  49243. name: "Normal",
  49244. height: math.unit(90, "feet"),
  49245. default: true
  49246. },
  49247. ]
  49248. ))
  49249. characterMakers.push(() => makeCharacter(
  49250. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49251. {
  49252. front: {
  49253. height: math.unit(6, "feet"),
  49254. weight: math.unit(225, "lb"),
  49255. name: "Front",
  49256. image: {
  49257. source: "./media/characters/brooke/front.svg",
  49258. extra: 1050/1010,
  49259. bottom: 66/1116
  49260. }
  49261. },
  49262. back: {
  49263. height: math.unit(6, "feet"),
  49264. weight: math.unit(225, "lb"),
  49265. name: "Back",
  49266. image: {
  49267. source: "./media/characters/brooke/back.svg",
  49268. extra: 1053/1013,
  49269. bottom: 41/1094
  49270. }
  49271. },
  49272. dressed: {
  49273. height: math.unit(6, "feet"),
  49274. weight: math.unit(225, "lb"),
  49275. name: "Dressed",
  49276. image: {
  49277. source: "./media/characters/brooke/dressed.svg",
  49278. extra: 1050/1010,
  49279. bottom: 66/1116
  49280. }
  49281. },
  49282. },
  49283. [
  49284. {
  49285. name: "Canon Height",
  49286. height: math.unit(500, "miles"),
  49287. default: true
  49288. },
  49289. ]
  49290. ))
  49291. characterMakers.push(() => makeCharacter(
  49292. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49293. {
  49294. front: {
  49295. height: math.unit(6 + 2/12, "feet"),
  49296. weight: math.unit(210, "lb"),
  49297. name: "Front",
  49298. image: {
  49299. source: "./media/characters/wubs/front.svg",
  49300. extra: 1345/1325,
  49301. bottom: 70/1415
  49302. }
  49303. },
  49304. back: {
  49305. height: math.unit(6 + 2/12, "feet"),
  49306. weight: math.unit(210, "lb"),
  49307. name: "Back",
  49308. image: {
  49309. source: "./media/characters/wubs/back.svg",
  49310. extra: 1296/1275,
  49311. bottom: 58/1354
  49312. }
  49313. },
  49314. },
  49315. [
  49316. {
  49317. name: "Normal",
  49318. height: math.unit(6 + 2/12, "feet"),
  49319. default: true
  49320. },
  49321. {
  49322. name: "Macro",
  49323. height: math.unit(1000, "feet")
  49324. },
  49325. {
  49326. name: "Megamacro",
  49327. height: math.unit(1, "mile")
  49328. },
  49329. ]
  49330. ))
  49331. characterMakers.push(() => makeCharacter(
  49332. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49333. {
  49334. front: {
  49335. height: math.unit(4, "feet"),
  49336. weight: math.unit(120, "lb"),
  49337. name: "Front",
  49338. image: {
  49339. source: "./media/characters/blue/front.svg",
  49340. extra: 1636/1525,
  49341. bottom: 43/1679
  49342. }
  49343. },
  49344. back: {
  49345. height: math.unit(4, "feet"),
  49346. weight: math.unit(120, "lb"),
  49347. name: "Back",
  49348. image: {
  49349. source: "./media/characters/blue/back.svg",
  49350. extra: 1660/1560,
  49351. bottom: 57/1717
  49352. }
  49353. },
  49354. paws: {
  49355. height: math.unit(0.826, "feet"),
  49356. name: "Paws",
  49357. image: {
  49358. source: "./media/characters/blue/paws.svg"
  49359. }
  49360. },
  49361. },
  49362. [
  49363. {
  49364. name: "Micro",
  49365. height: math.unit(3, "inches")
  49366. },
  49367. {
  49368. name: "Normal",
  49369. height: math.unit(4, "feet"),
  49370. default: true
  49371. },
  49372. {
  49373. name: "Femenine Form",
  49374. height: math.unit(14, "feet")
  49375. },
  49376. {
  49377. name: "Werebat Form",
  49378. height: math.unit(18, "feet")
  49379. },
  49380. ]
  49381. ))
  49382. characterMakers.push(() => makeCharacter(
  49383. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49384. {
  49385. female: {
  49386. height: math.unit(7 + 4/12, "feet"),
  49387. weight: math.unit(243, "lb"),
  49388. name: "Female",
  49389. image: {
  49390. source: "./media/characters/kaya/female.svg",
  49391. extra: 975/898,
  49392. bottom: 34/1009
  49393. }
  49394. },
  49395. herm: {
  49396. height: math.unit(7 + 4/12, "feet"),
  49397. weight: math.unit(243, "lb"),
  49398. name: "Herm",
  49399. image: {
  49400. source: "./media/characters/kaya/herm.svg",
  49401. extra: 975/898,
  49402. bottom: 34/1009
  49403. }
  49404. },
  49405. },
  49406. [
  49407. {
  49408. name: "Normal",
  49409. height: math.unit(7 + 4/12, "feet"),
  49410. default: true
  49411. },
  49412. ]
  49413. ))
  49414. characterMakers.push(() => makeCharacter(
  49415. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49416. {
  49417. female: {
  49418. height: math.unit(9 + 4/12, "feet"),
  49419. weight: math.unit(398, "lb"),
  49420. name: "Female",
  49421. image: {
  49422. source: "./media/characters/kassandra/female.svg",
  49423. extra: 908/839,
  49424. bottom: 61/969
  49425. }
  49426. },
  49427. intersex: {
  49428. height: math.unit(9 + 4/12, "feet"),
  49429. weight: math.unit(398, "lb"),
  49430. name: "Intersex",
  49431. image: {
  49432. source: "./media/characters/kassandra/intersex.svg",
  49433. extra: 908/839,
  49434. bottom: 61/969
  49435. }
  49436. },
  49437. },
  49438. [
  49439. {
  49440. name: "Normal",
  49441. height: math.unit(9 + 4/12, "feet"),
  49442. default: true
  49443. },
  49444. ]
  49445. ))
  49446. characterMakers.push(() => makeCharacter(
  49447. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49448. {
  49449. front: {
  49450. height: math.unit(3, "meters"),
  49451. name: "Front",
  49452. image: {
  49453. source: "./media/characters/amy/front.svg",
  49454. extra: 1380/1343,
  49455. bottom: 70/1450
  49456. }
  49457. },
  49458. back: {
  49459. height: math.unit(3, "meters"),
  49460. name: "Back",
  49461. image: {
  49462. source: "./media/characters/amy/back.svg",
  49463. extra: 1380/1347,
  49464. bottom: 66/1446
  49465. }
  49466. },
  49467. },
  49468. [
  49469. {
  49470. name: "Normal",
  49471. height: math.unit(3, "meters"),
  49472. default: true
  49473. },
  49474. ]
  49475. ))
  49476. characterMakers.push(() => makeCharacter(
  49477. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49478. {
  49479. side: {
  49480. height: math.unit(47, "cm"),
  49481. weight: math.unit(10.8, "kg"),
  49482. name: "Side",
  49483. image: {
  49484. source: "./media/characters/alphaschakal/side.svg",
  49485. extra: 1058/568,
  49486. bottom: 62/1120
  49487. }
  49488. },
  49489. back: {
  49490. height: math.unit(78, "cm"),
  49491. weight: math.unit(10.8, "kg"),
  49492. name: "Back",
  49493. image: {
  49494. source: "./media/characters/alphaschakal/back.svg",
  49495. extra: 1102/942,
  49496. bottom: 185/1287
  49497. }
  49498. },
  49499. head: {
  49500. height: math.unit(28, "cm"),
  49501. name: "Head",
  49502. image: {
  49503. source: "./media/characters/alphaschakal/head.svg",
  49504. extra: 696/508,
  49505. bottom: 0/696
  49506. }
  49507. },
  49508. paw: {
  49509. height: math.unit(16, "cm"),
  49510. name: "Paw",
  49511. image: {
  49512. source: "./media/characters/alphaschakal/paw.svg"
  49513. }
  49514. },
  49515. },
  49516. [
  49517. {
  49518. name: "Normal",
  49519. height: math.unit(47, "cm"),
  49520. default: true
  49521. },
  49522. {
  49523. name: "Macro",
  49524. height: math.unit(340, "cm")
  49525. },
  49526. ]
  49527. ))
  49528. characterMakers.push(() => makeCharacter(
  49529. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49530. {
  49531. front: {
  49532. height: math.unit(36, "earths"),
  49533. name: "Front",
  49534. image: {
  49535. source: "./media/characters/ecobyss/front.svg",
  49536. extra: 1282/1215,
  49537. bottom: 11/1293
  49538. }
  49539. },
  49540. back: {
  49541. height: math.unit(36, "earths"),
  49542. name: "Back",
  49543. image: {
  49544. source: "./media/characters/ecobyss/back.svg",
  49545. extra: 1291/1222,
  49546. bottom: 8/1299
  49547. }
  49548. },
  49549. },
  49550. [
  49551. {
  49552. name: "Normal",
  49553. height: math.unit(36, "earths"),
  49554. default: true
  49555. },
  49556. ]
  49557. ))
  49558. characterMakers.push(() => makeCharacter(
  49559. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49560. {
  49561. front: {
  49562. height: math.unit(12, "feet"),
  49563. name: "Front",
  49564. image: {
  49565. source: "./media/characters/vasuk/front.svg",
  49566. extra: 1326/1207,
  49567. bottom: 64/1390
  49568. }
  49569. },
  49570. },
  49571. [
  49572. {
  49573. name: "Normal",
  49574. height: math.unit(12, "feet"),
  49575. default: true
  49576. },
  49577. ]
  49578. ))
  49579. characterMakers.push(() => makeCharacter(
  49580. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49581. {
  49582. side: {
  49583. height: math.unit(100, "feet"),
  49584. name: "Side",
  49585. image: {
  49586. source: "./media/characters/linneaus/side.svg",
  49587. extra: 987/807,
  49588. bottom: 47/1034
  49589. }
  49590. },
  49591. },
  49592. [
  49593. {
  49594. name: "Macro",
  49595. height: math.unit(100, "feet"),
  49596. default: true
  49597. },
  49598. ]
  49599. ))
  49600. characterMakers.push(() => makeCharacter(
  49601. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49602. {
  49603. front: {
  49604. height: math.unit(8, "feet"),
  49605. weight: math.unit(1200, "lb"),
  49606. name: "Front",
  49607. image: {
  49608. source: "./media/characters/nyterious-daligdig/front.svg",
  49609. extra: 1284/1094,
  49610. bottom: 84/1368
  49611. }
  49612. },
  49613. back: {
  49614. height: math.unit(8, "feet"),
  49615. weight: math.unit(1200, "lb"),
  49616. name: "Back",
  49617. image: {
  49618. source: "./media/characters/nyterious-daligdig/back.svg",
  49619. extra: 1301/1121,
  49620. bottom: 129/1430
  49621. }
  49622. },
  49623. mouth: {
  49624. height: math.unit(1.464, "feet"),
  49625. name: "Mouth",
  49626. image: {
  49627. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49628. }
  49629. },
  49630. },
  49631. [
  49632. {
  49633. name: "Small",
  49634. height: math.unit(8, "feet"),
  49635. default: true
  49636. },
  49637. {
  49638. name: "Normal",
  49639. height: math.unit(15, "feet")
  49640. },
  49641. {
  49642. name: "Macro",
  49643. height: math.unit(90, "feet")
  49644. },
  49645. ]
  49646. ))
  49647. characterMakers.push(() => makeCharacter(
  49648. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49649. {
  49650. front: {
  49651. height: math.unit(7 + 4/12, "feet"),
  49652. weight: math.unit(252, "lb"),
  49653. name: "Front",
  49654. image: {
  49655. source: "./media/characters/bandel/front.svg",
  49656. extra: 1946/1775,
  49657. bottom: 26/1972
  49658. }
  49659. },
  49660. back: {
  49661. height: math.unit(7 + 4/12, "feet"),
  49662. weight: math.unit(252, "lb"),
  49663. name: "Back",
  49664. image: {
  49665. source: "./media/characters/bandel/back.svg",
  49666. extra: 1940/1770,
  49667. bottom: 25/1965
  49668. }
  49669. },
  49670. maw: {
  49671. height: math.unit(2.15, "feet"),
  49672. name: "Maw",
  49673. image: {
  49674. source: "./media/characters/bandel/maw.svg"
  49675. }
  49676. },
  49677. stomach: {
  49678. height: math.unit(1.95, "feet"),
  49679. name: "Stomach",
  49680. image: {
  49681. source: "./media/characters/bandel/stomach.svg"
  49682. }
  49683. },
  49684. },
  49685. [
  49686. {
  49687. name: "Normal",
  49688. height: math.unit(7 + 4/12, "feet"),
  49689. default: true
  49690. },
  49691. ]
  49692. ))
  49693. characterMakers.push(() => makeCharacter(
  49694. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49695. {
  49696. front: {
  49697. height: math.unit(10 + 5/12, "feet"),
  49698. weight: math.unit(773.5, "kg"),
  49699. name: "Front",
  49700. image: {
  49701. source: "./media/characters/zed/front.svg",
  49702. extra: 987/941,
  49703. bottom: 52/1039
  49704. }
  49705. },
  49706. },
  49707. [
  49708. {
  49709. name: "Short",
  49710. height: math.unit(5 + 4/12, "feet")
  49711. },
  49712. {
  49713. name: "Average",
  49714. height: math.unit(10 + 5/12, "feet"),
  49715. default: true
  49716. },
  49717. {
  49718. name: "Mini-Macro",
  49719. height: math.unit(24 + 9/12, "feet")
  49720. },
  49721. {
  49722. name: "Macro",
  49723. height: math.unit(249, "feet")
  49724. },
  49725. {
  49726. name: "Mega-Macro",
  49727. height: math.unit(12490, "feet")
  49728. },
  49729. {
  49730. name: "Giga-Macro",
  49731. height: math.unit(24.9, "miles")
  49732. },
  49733. {
  49734. name: "Tera-Macro",
  49735. height: math.unit(24900, "miles")
  49736. },
  49737. {
  49738. name: "Cosmic Scale",
  49739. height: math.unit(38.9, "lightyears")
  49740. },
  49741. {
  49742. name: "Universal Scale",
  49743. height: math.unit(138e12, "lightyears")
  49744. },
  49745. ]
  49746. ))
  49747. characterMakers.push(() => makeCharacter(
  49748. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49749. {
  49750. front: {
  49751. height: math.unit(1561, "inches"),
  49752. name: "Front",
  49753. image: {
  49754. source: "./media/characters/ivan/front.svg",
  49755. extra: 1126/1071,
  49756. bottom: 26/1152
  49757. }
  49758. },
  49759. back: {
  49760. height: math.unit(1561, "inches"),
  49761. name: "Back",
  49762. image: {
  49763. source: "./media/characters/ivan/back.svg",
  49764. extra: 1134/1079,
  49765. bottom: 30/1164
  49766. }
  49767. },
  49768. },
  49769. [
  49770. {
  49771. name: "Normal",
  49772. height: math.unit(1561, "inches"),
  49773. default: true
  49774. },
  49775. ]
  49776. ))
  49777. characterMakers.push(() => makeCharacter(
  49778. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49779. {
  49780. front: {
  49781. height: math.unit(5 + 7/12, "feet"),
  49782. weight: math.unit(150, "lb"),
  49783. name: "Front",
  49784. image: {
  49785. source: "./media/characters/robin-arctic-hare/front.svg",
  49786. extra: 1148/974,
  49787. bottom: 20/1168
  49788. }
  49789. },
  49790. },
  49791. [
  49792. {
  49793. name: "Normal",
  49794. height: math.unit(5 + 7/12, "feet"),
  49795. default: true
  49796. },
  49797. ]
  49798. ))
  49799. characterMakers.push(() => makeCharacter(
  49800. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49801. {
  49802. side: {
  49803. height: math.unit(5, "feet"),
  49804. name: "Side",
  49805. image: {
  49806. source: "./media/characters/birch/side.svg",
  49807. extra: 985/796,
  49808. bottom: 111/1096
  49809. }
  49810. },
  49811. },
  49812. [
  49813. {
  49814. name: "Normal",
  49815. height: math.unit(5, "feet"),
  49816. default: true
  49817. },
  49818. ]
  49819. ))
  49820. characterMakers.push(() => makeCharacter(
  49821. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49822. {
  49823. front: {
  49824. height: math.unit(4, "feet"),
  49825. name: "Front",
  49826. image: {
  49827. source: "./media/characters/rasp/front.svg",
  49828. extra: 561/478,
  49829. bottom: 74/635
  49830. }
  49831. },
  49832. },
  49833. [
  49834. {
  49835. name: "Normal",
  49836. height: math.unit(4, "feet"),
  49837. default: true
  49838. },
  49839. ]
  49840. ))
  49841. characterMakers.push(() => makeCharacter(
  49842. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49843. {
  49844. front: {
  49845. height: math.unit(4 + 6/12, "feet"),
  49846. name: "Front",
  49847. image: {
  49848. source: "./media/characters/agatha/front.svg",
  49849. extra: 947/933,
  49850. bottom: 42/989
  49851. }
  49852. },
  49853. back: {
  49854. height: math.unit(4 + 6/12, "feet"),
  49855. name: "Back",
  49856. image: {
  49857. source: "./media/characters/agatha/back.svg",
  49858. extra: 935/922,
  49859. bottom: 48/983
  49860. }
  49861. },
  49862. },
  49863. [
  49864. {
  49865. name: "Normal",
  49866. height: math.unit(4 + 6 /12, "feet"),
  49867. default: true
  49868. },
  49869. {
  49870. name: "Max Size",
  49871. height: math.unit(500, "feet")
  49872. },
  49873. ]
  49874. ))
  49875. characterMakers.push(() => makeCharacter(
  49876. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49877. {
  49878. side: {
  49879. height: math.unit(30, "feet"),
  49880. name: "Side",
  49881. image: {
  49882. source: "./media/characters/roggy/side.svg",
  49883. extra: 909/643,
  49884. bottom: 63/972
  49885. }
  49886. },
  49887. lounging: {
  49888. height: math.unit(20, "feet"),
  49889. name: "Lounging",
  49890. image: {
  49891. source: "./media/characters/roggy/lounging.svg",
  49892. extra: 643/479,
  49893. bottom: 145/788
  49894. }
  49895. },
  49896. handpaw: {
  49897. height: math.unit(13.1, "feet"),
  49898. name: "Handpaw",
  49899. image: {
  49900. source: "./media/characters/roggy/handpaw.svg"
  49901. }
  49902. },
  49903. footpaw: {
  49904. height: math.unit(15.8, "feet"),
  49905. name: "Footpaw",
  49906. image: {
  49907. source: "./media/characters/roggy/footpaw.svg"
  49908. }
  49909. },
  49910. },
  49911. [
  49912. {
  49913. name: "Menacing",
  49914. height: math.unit(30, "feet"),
  49915. default: true
  49916. },
  49917. ]
  49918. ))
  49919. characterMakers.push(() => makeCharacter(
  49920. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49921. {
  49922. front: {
  49923. height: math.unit(5 + 7/12, "feet"),
  49924. weight: math.unit(135, "lb"),
  49925. name: "Front",
  49926. image: {
  49927. source: "./media/characters/naomi/front.svg",
  49928. extra: 1209/1154,
  49929. bottom: 129/1338
  49930. }
  49931. },
  49932. back: {
  49933. height: math.unit(5 + 7/12, "feet"),
  49934. weight: math.unit(135, "lb"),
  49935. name: "Back",
  49936. image: {
  49937. source: "./media/characters/naomi/back.svg",
  49938. extra: 1252/1190,
  49939. bottom: 23/1275
  49940. }
  49941. },
  49942. },
  49943. [
  49944. {
  49945. name: "Normal",
  49946. height: math.unit(5 + 7 /12, "feet"),
  49947. default: true
  49948. },
  49949. ]
  49950. ))
  49951. characterMakers.push(() => makeCharacter(
  49952. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49953. {
  49954. side: {
  49955. height: math.unit(35, "meters"),
  49956. name: "Side",
  49957. image: {
  49958. source: "./media/characters/kimpi/side.svg",
  49959. extra: 419/382,
  49960. bottom: 63/482
  49961. }
  49962. },
  49963. hand: {
  49964. height: math.unit(8.96, "meters"),
  49965. name: "Hand",
  49966. image: {
  49967. source: "./media/characters/kimpi/hand.svg"
  49968. }
  49969. },
  49970. },
  49971. [
  49972. {
  49973. name: "Normal",
  49974. height: math.unit(35, "meters"),
  49975. default: true
  49976. },
  49977. ]
  49978. ))
  49979. characterMakers.push(() => makeCharacter(
  49980. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49981. {
  49982. front: {
  49983. height: math.unit(4 + 4/12, "feet"),
  49984. name: "Front",
  49985. image: {
  49986. source: "./media/characters/pepper-purrloin/front.svg",
  49987. extra: 1141/1024,
  49988. bottom: 21/1162
  49989. }
  49990. },
  49991. },
  49992. [
  49993. {
  49994. name: "Normal",
  49995. height: math.unit(4 + 4/12, "feet"),
  49996. default: true
  49997. },
  49998. ]
  49999. ))
  50000. characterMakers.push(() => makeCharacter(
  50001. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50002. {
  50003. front: {
  50004. height: math.unit(6 + 2/12, "feet"),
  50005. name: "Front",
  50006. image: {
  50007. source: "./media/characters/raphael/front.svg",
  50008. extra: 1101/962,
  50009. bottom: 59/1160
  50010. }
  50011. },
  50012. },
  50013. [
  50014. {
  50015. name: "Normal",
  50016. height: math.unit(6 + 2/12, "feet"),
  50017. default: true
  50018. },
  50019. ]
  50020. ))
  50021. characterMakers.push(() => makeCharacter(
  50022. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50023. {
  50024. front: {
  50025. height: math.unit(6, "feet"),
  50026. weight: math.unit(150, "lb"),
  50027. name: "Front",
  50028. image: {
  50029. source: "./media/characters/victor-williams/front.svg",
  50030. extra: 1894/1825,
  50031. bottom: 67/1961
  50032. }
  50033. },
  50034. },
  50035. [
  50036. {
  50037. name: "Normal",
  50038. height: math.unit(6, "feet"),
  50039. default: true
  50040. },
  50041. ]
  50042. ))
  50043. characterMakers.push(() => makeCharacter(
  50044. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50045. {
  50046. front: {
  50047. height: math.unit(5 + 8/12, "feet"),
  50048. weight: math.unit(150, "lb"),
  50049. name: "Front",
  50050. image: {
  50051. source: "./media/characters/rachel/front.svg",
  50052. extra: 1902/1787,
  50053. bottom: 46/1948
  50054. }
  50055. },
  50056. },
  50057. [
  50058. {
  50059. name: "Base Height",
  50060. height: math.unit(5 + 8/12, "feet"),
  50061. default: true
  50062. },
  50063. {
  50064. name: "Macro",
  50065. height: math.unit(200, "feet")
  50066. },
  50067. {
  50068. name: "Mega Macro",
  50069. height: math.unit(1, "mile")
  50070. },
  50071. {
  50072. name: "Giga Macro",
  50073. height: math.unit(1500, "miles")
  50074. },
  50075. {
  50076. name: "Tera Macro",
  50077. height: math.unit(8000, "miles")
  50078. },
  50079. {
  50080. name: "Tera Macro+",
  50081. height: math.unit(2e5, "miles")
  50082. },
  50083. ]
  50084. ))
  50085. characterMakers.push(() => makeCharacter(
  50086. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50087. {
  50088. front: {
  50089. height: math.unit(6.5, "feet"),
  50090. name: "Front",
  50091. image: {
  50092. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50093. extra: 860/819,
  50094. bottom: 307/1167
  50095. }
  50096. },
  50097. back: {
  50098. height: math.unit(6.5, "feet"),
  50099. name: "Back",
  50100. image: {
  50101. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50102. extra: 880/837,
  50103. bottom: 395/1275
  50104. }
  50105. },
  50106. sleeping: {
  50107. height: math.unit(2.79, "feet"),
  50108. name: "Sleeping",
  50109. image: {
  50110. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50111. extra: 465/383,
  50112. bottom: 263/728
  50113. }
  50114. },
  50115. maw: {
  50116. height: math.unit(2.52, "feet"),
  50117. name: "Maw",
  50118. image: {
  50119. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50120. }
  50121. },
  50122. },
  50123. [
  50124. {
  50125. name: "Normal",
  50126. height: math.unit(6.5, "feet"),
  50127. default: true
  50128. },
  50129. ]
  50130. ))
  50131. characterMakers.push(() => makeCharacter(
  50132. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50133. {
  50134. front: {
  50135. height: math.unit(5, "feet"),
  50136. name: "Front",
  50137. image: {
  50138. source: "./media/characters/nova-nerium/front.svg",
  50139. extra: 1548/1392,
  50140. bottom: 374/1922
  50141. }
  50142. },
  50143. back: {
  50144. height: math.unit(5, "feet"),
  50145. name: "Back",
  50146. image: {
  50147. source: "./media/characters/nova-nerium/back.svg",
  50148. extra: 1658/1468,
  50149. bottom: 257/1915
  50150. }
  50151. },
  50152. },
  50153. [
  50154. {
  50155. name: "Normal",
  50156. height: math.unit(5, "feet"),
  50157. default: true
  50158. },
  50159. ]
  50160. ))
  50161. characterMakers.push(() => makeCharacter(
  50162. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50163. {
  50164. front: {
  50165. height: math.unit(5 + 4/12, "feet"),
  50166. name: "Front",
  50167. image: {
  50168. source: "./media/characters/ashe-pyriph/front.svg",
  50169. extra: 1935/1747,
  50170. bottom: 60/1995
  50171. }
  50172. },
  50173. },
  50174. [
  50175. {
  50176. name: "Normal",
  50177. height: math.unit(5 + 4/12, "feet"),
  50178. default: true
  50179. },
  50180. ]
  50181. ))
  50182. characterMakers.push(() => makeCharacter(
  50183. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50184. {
  50185. front: {
  50186. height: math.unit(8.7, "feet"),
  50187. name: "Front",
  50188. image: {
  50189. source: "./media/characters/flicker-wisp/front.svg",
  50190. extra: 1835/1613,
  50191. bottom: 449/2284
  50192. }
  50193. },
  50194. side: {
  50195. height: math.unit(8.7, "feet"),
  50196. name: "Side",
  50197. image: {
  50198. source: "./media/characters/flicker-wisp/side.svg",
  50199. extra: 1841/1642,
  50200. bottom: 336/2177
  50201. },
  50202. default: true
  50203. },
  50204. maw: {
  50205. height: math.unit(3.35, "feet"),
  50206. name: "Maw",
  50207. image: {
  50208. source: "./media/characters/flicker-wisp/maw.svg",
  50209. extra: 2338/1506,
  50210. bottom: 0/2338
  50211. }
  50212. },
  50213. ovipositor: {
  50214. height: math.unit(4.95, "feet"),
  50215. name: "Ovipositor",
  50216. image: {
  50217. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50218. }
  50219. },
  50220. egg: {
  50221. height: math.unit(0.385, "feet"),
  50222. weight: math.unit(2, "lb"),
  50223. name: "Egg",
  50224. image: {
  50225. source: "./media/characters/flicker-wisp/egg.svg"
  50226. }
  50227. },
  50228. },
  50229. [
  50230. {
  50231. name: "Normal",
  50232. height: math.unit(8.7, "feet"),
  50233. default: true
  50234. },
  50235. ]
  50236. ))
  50237. characterMakers.push(() => makeCharacter(
  50238. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50239. {
  50240. side: {
  50241. height: math.unit(11, "feet"),
  50242. name: "Side",
  50243. image: {
  50244. source: "./media/characters/faefnul/side.svg",
  50245. extra: 1100/1007,
  50246. bottom: 0/1100
  50247. }
  50248. },
  50249. },
  50250. [
  50251. {
  50252. name: "Normal",
  50253. height: math.unit(11, "feet"),
  50254. default: true
  50255. },
  50256. ]
  50257. ))
  50258. characterMakers.push(() => makeCharacter(
  50259. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50260. {
  50261. front: {
  50262. height: math.unit(6 + 2/12, "feet"),
  50263. name: "Front",
  50264. image: {
  50265. source: "./media/characters/shady/front.svg",
  50266. extra: 502/461,
  50267. bottom: 9/511
  50268. }
  50269. },
  50270. kneeling: {
  50271. height: math.unit(4.6, "feet"),
  50272. name: "Kneeling",
  50273. image: {
  50274. source: "./media/characters/shady/kneeling.svg",
  50275. extra: 1328/1219,
  50276. bottom: 117/1445
  50277. }
  50278. },
  50279. maw: {
  50280. height: math.unit(2, "feet"),
  50281. name: "Maw",
  50282. image: {
  50283. source: "./media/characters/shady/maw.svg"
  50284. }
  50285. },
  50286. },
  50287. [
  50288. {
  50289. name: "Nano",
  50290. height: math.unit(1, "mm")
  50291. },
  50292. {
  50293. name: "Micro",
  50294. height: math.unit(12, "mm")
  50295. },
  50296. {
  50297. name: "Tiny",
  50298. height: math.unit(3, "inches")
  50299. },
  50300. {
  50301. name: "Normal",
  50302. height: math.unit(6 + 2/12, "feet"),
  50303. default: true
  50304. },
  50305. {
  50306. name: "Big",
  50307. height: math.unit(15, "feet")
  50308. },
  50309. {
  50310. name: "Macro",
  50311. height: math.unit(150, "feet")
  50312. },
  50313. {
  50314. name: "Titanic",
  50315. height: math.unit(500, "feet")
  50316. },
  50317. ]
  50318. ))
  50319. characterMakers.push(() => makeCharacter(
  50320. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50321. {
  50322. front: {
  50323. height: math.unit(12, "feet"),
  50324. name: "Front",
  50325. image: {
  50326. source: "./media/characters/fenrir/front.svg",
  50327. extra: 968/875,
  50328. bottom: 22/990
  50329. }
  50330. },
  50331. },
  50332. [
  50333. {
  50334. name: "Big",
  50335. height: math.unit(12, "feet"),
  50336. default: true
  50337. },
  50338. ]
  50339. ))
  50340. characterMakers.push(() => makeCharacter(
  50341. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50342. {
  50343. front: {
  50344. height: math.unit(5 + 4/12, "feet"),
  50345. name: "Front",
  50346. image: {
  50347. source: "./media/characters/makar/front.svg",
  50348. extra: 1181/1112,
  50349. bottom: 78/1259
  50350. }
  50351. },
  50352. },
  50353. [
  50354. {
  50355. name: "Normal",
  50356. height: math.unit(5 + 4/12, "feet"),
  50357. default: true
  50358. },
  50359. ]
  50360. ))
  50361. characterMakers.push(() => makeCharacter(
  50362. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50363. {
  50364. front: {
  50365. height: math.unit(5 + 7/12, "feet"),
  50366. name: "Front",
  50367. image: {
  50368. source: "./media/characters/callow/front.svg",
  50369. extra: 1482/1304,
  50370. bottom: 23/1505
  50371. }
  50372. },
  50373. back: {
  50374. height: math.unit(5 + 7/12, "feet"),
  50375. name: "Back",
  50376. image: {
  50377. source: "./media/characters/callow/back.svg",
  50378. extra: 1484/1296,
  50379. bottom: 25/1509
  50380. }
  50381. },
  50382. },
  50383. [
  50384. {
  50385. name: "Micro",
  50386. height: math.unit(3, "inches"),
  50387. default: true
  50388. },
  50389. {
  50390. name: "Normal",
  50391. height: math.unit(5 + 7/12, "feet")
  50392. },
  50393. ]
  50394. ))
  50395. characterMakers.push(() => makeCharacter(
  50396. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50397. {
  50398. front: {
  50399. height: math.unit(6 + 2/12, "feet"),
  50400. name: "Front",
  50401. image: {
  50402. source: "./media/characters/natel/front.svg",
  50403. extra: 1833/1692,
  50404. bottom: 166/1999
  50405. }
  50406. },
  50407. },
  50408. [
  50409. {
  50410. name: "Normal",
  50411. height: math.unit(6 + 2/12, "feet"),
  50412. default: true
  50413. },
  50414. ]
  50415. ))
  50416. characterMakers.push(() => makeCharacter(
  50417. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50418. {
  50419. front: {
  50420. height: math.unit(1.75, "meters"),
  50421. name: "Front",
  50422. image: {
  50423. source: "./media/characters/misu/front.svg",
  50424. extra: 1690/1558,
  50425. bottom: 234/1924
  50426. }
  50427. },
  50428. back: {
  50429. height: math.unit(1.75, "meters"),
  50430. name: "Back",
  50431. image: {
  50432. source: "./media/characters/misu/back.svg",
  50433. extra: 1762/1618,
  50434. bottom: 146/1908
  50435. }
  50436. },
  50437. frontNude: {
  50438. height: math.unit(1.75, "meters"),
  50439. name: "Front (Nude)",
  50440. image: {
  50441. source: "./media/characters/misu/front-nude.svg",
  50442. extra: 1690/1558,
  50443. bottom: 234/1924
  50444. }
  50445. },
  50446. backNude: {
  50447. height: math.unit(1.75, "meters"),
  50448. name: "Back (Nude)",
  50449. image: {
  50450. source: "./media/characters/misu/back-nude.svg",
  50451. extra: 1762/1618,
  50452. bottom: 146/1908
  50453. }
  50454. },
  50455. frontErect: {
  50456. height: math.unit(1.75, "meters"),
  50457. name: "Front (Erect)",
  50458. image: {
  50459. source: "./media/characters/misu/front-erect.svg",
  50460. extra: 1690/1558,
  50461. bottom: 234/1924
  50462. }
  50463. },
  50464. maw: {
  50465. height: math.unit(0.47, "meters"),
  50466. name: "Maw",
  50467. image: {
  50468. source: "./media/characters/misu/maw.svg"
  50469. }
  50470. },
  50471. head: {
  50472. height: math.unit(0.35, "meters"),
  50473. name: "Head",
  50474. image: {
  50475. source: "./media/characters/misu/head.svg"
  50476. }
  50477. },
  50478. rear: {
  50479. height: math.unit(0.47, "meters"),
  50480. name: "Rear",
  50481. image: {
  50482. source: "./media/characters/misu/rear.svg"
  50483. }
  50484. },
  50485. },
  50486. [
  50487. {
  50488. name: "Normal",
  50489. height: math.unit(1.75, "meters")
  50490. },
  50491. {
  50492. name: "Not good for the people",
  50493. height: math.unit(42, "meters")
  50494. },
  50495. {
  50496. name: "Not good for the neighborhood",
  50497. height: math.unit(135, "meters")
  50498. },
  50499. {
  50500. name: "Bit bigger problem",
  50501. height: math.unit(380, "meters"),
  50502. default: true
  50503. },
  50504. {
  50505. name: "Not good for the city",
  50506. height: math.unit(1.5, "km")
  50507. },
  50508. {
  50509. name: "Not good for the county",
  50510. height: math.unit(5.5, "km")
  50511. },
  50512. {
  50513. name: "Not good for the state",
  50514. height: math.unit(25, "km")
  50515. },
  50516. {
  50517. name: "Not good for the country",
  50518. height: math.unit(125, "km")
  50519. },
  50520. {
  50521. name: "Not good for the continent",
  50522. height: math.unit(2100, "km")
  50523. },
  50524. {
  50525. name: "Not good for the planet",
  50526. height: math.unit(35000, "km")
  50527. },
  50528. {
  50529. name: "Just no",
  50530. height: math.unit(8.5e18, "km")
  50531. },
  50532. ]
  50533. ))
  50534. characterMakers.push(() => makeCharacter(
  50535. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50536. {
  50537. front: {
  50538. height: math.unit(6.5, "feet"),
  50539. name: "Front",
  50540. image: {
  50541. source: "./media/characters/poppy/front.svg",
  50542. extra: 1878/1812,
  50543. bottom: 43/1921
  50544. }
  50545. },
  50546. feet: {
  50547. height: math.unit(1.06, "feet"),
  50548. name: "Feet",
  50549. image: {
  50550. source: "./media/characters/poppy/feet.svg",
  50551. extra: 1083/1083,
  50552. bottom: 87/1170
  50553. }
  50554. },
  50555. },
  50556. [
  50557. {
  50558. name: "Human",
  50559. height: math.unit(6.5, "feet")
  50560. },
  50561. {
  50562. name: "Default",
  50563. height: math.unit(300, "feet"),
  50564. default: true
  50565. },
  50566. {
  50567. name: "Huge",
  50568. height: math.unit(850, "feet")
  50569. },
  50570. {
  50571. name: "Mega",
  50572. height: math.unit(8000, "feet")
  50573. },
  50574. {
  50575. name: "Giga",
  50576. height: math.unit(300, "miles")
  50577. },
  50578. ]
  50579. ))
  50580. characterMakers.push(() => makeCharacter(
  50581. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50582. {
  50583. bipedal: {
  50584. height: math.unit(7, "feet"),
  50585. name: "Bipedal",
  50586. image: {
  50587. source: "./media/characters/zener/bipedal.svg",
  50588. extra: 874/805,
  50589. bottom: 109/983
  50590. }
  50591. },
  50592. quadrupedal: {
  50593. height: math.unit(4.64, "feet"),
  50594. name: "Quadrupedal",
  50595. image: {
  50596. source: "./media/characters/zener/quadrupedal.svg",
  50597. extra: 638/507,
  50598. bottom: 190/828
  50599. }
  50600. },
  50601. cock: {
  50602. height: math.unit(18, "inches"),
  50603. name: "Cock",
  50604. image: {
  50605. source: "./media/characters/zener/cock.svg"
  50606. }
  50607. },
  50608. },
  50609. [
  50610. {
  50611. name: "Normal",
  50612. height: math.unit(7, "feet"),
  50613. default: true
  50614. },
  50615. ]
  50616. ))
  50617. characterMakers.push(() => makeCharacter(
  50618. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50619. {
  50620. nude: {
  50621. height: math.unit(5 + 6/12, "feet"),
  50622. name: "Nude",
  50623. image: {
  50624. source: "./media/characters/charlie-dog/nude.svg",
  50625. extra: 768/734,
  50626. bottom: 26/794
  50627. }
  50628. },
  50629. dressed: {
  50630. height: math.unit(5 + 6/12, "feet"),
  50631. name: "Dressed",
  50632. image: {
  50633. source: "./media/characters/charlie-dog/dressed.svg",
  50634. extra: 768/734,
  50635. bottom: 26/794
  50636. }
  50637. },
  50638. },
  50639. [
  50640. {
  50641. name: "Normal",
  50642. height: math.unit(5 + 6/12, "feet"),
  50643. default: true
  50644. },
  50645. ]
  50646. ))
  50647. characterMakers.push(() => makeCharacter(
  50648. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50649. {
  50650. front: {
  50651. height: math.unit(6 + 4/12, "feet"),
  50652. name: "Front",
  50653. image: {
  50654. source: "./media/characters/ir'istrasz/front.svg",
  50655. extra: 1014/977,
  50656. bottom: 65/1079
  50657. }
  50658. },
  50659. back: {
  50660. height: math.unit(6 + 4/12, "feet"),
  50661. name: "Back",
  50662. image: {
  50663. source: "./media/characters/ir'istrasz/back.svg",
  50664. extra: 1024/992,
  50665. bottom: 34/1058
  50666. }
  50667. },
  50668. },
  50669. [
  50670. {
  50671. name: "Normal",
  50672. height: math.unit(6 + 4/12, "feet"),
  50673. default: true
  50674. },
  50675. ]
  50676. ))
  50677. characterMakers.push(() => makeCharacter(
  50678. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50679. {
  50680. front: {
  50681. height: math.unit(5 + 8/12, "feet"),
  50682. name: "Front",
  50683. image: {
  50684. source: "./media/characters/dee-ditto/front.svg",
  50685. extra: 1874/1785,
  50686. bottom: 68/1942
  50687. }
  50688. },
  50689. back: {
  50690. height: math.unit(5 + 8/12, "feet"),
  50691. name: "Back",
  50692. image: {
  50693. source: "./media/characters/dee-ditto/back.svg",
  50694. extra: 1870/1783,
  50695. bottom: 77/1947
  50696. }
  50697. },
  50698. },
  50699. [
  50700. {
  50701. name: "Normal",
  50702. height: math.unit(5 + 8/12, "feet"),
  50703. default: true
  50704. },
  50705. ]
  50706. ))
  50707. characterMakers.push(() => makeCharacter(
  50708. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50709. {
  50710. front: {
  50711. height: math.unit(7 + 6/12, "feet"),
  50712. name: "Front",
  50713. image: {
  50714. source: "./media/characters/fey/front.svg",
  50715. extra: 995/979,
  50716. bottom: 30/1025
  50717. }
  50718. },
  50719. back: {
  50720. height: math.unit(7 + 6/12, "feet"),
  50721. name: "Back",
  50722. image: {
  50723. source: "./media/characters/fey/back.svg",
  50724. extra: 1079/1008,
  50725. bottom: 5/1084
  50726. }
  50727. },
  50728. dressed: {
  50729. height: math.unit(7 + 6/12, "feet"),
  50730. name: "Dressed",
  50731. image: {
  50732. source: "./media/characters/fey/dressed.svg",
  50733. extra: 995/979,
  50734. bottom: 30/1025
  50735. }
  50736. },
  50737. },
  50738. [
  50739. {
  50740. name: "Normal",
  50741. height: math.unit(7 + 6/12, "feet"),
  50742. default: true
  50743. },
  50744. ]
  50745. ))
  50746. characterMakers.push(() => makeCharacter(
  50747. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50748. {
  50749. standing: {
  50750. height: math.unit(17, "feet"),
  50751. name: "Standing",
  50752. image: {
  50753. source: "./media/characters/aster/standing.svg",
  50754. extra: 1798/1598,
  50755. bottom: 117/1915
  50756. }
  50757. },
  50758. },
  50759. [
  50760. {
  50761. name: "Normal",
  50762. height: math.unit(17, "feet"),
  50763. default: true
  50764. },
  50765. {
  50766. name: "Homewrecker",
  50767. height: math.unit(95, "feet")
  50768. },
  50769. {
  50770. name: "Planet Devourer",
  50771. height: math.unit(1008000, "miles")
  50772. },
  50773. ]
  50774. ))
  50775. characterMakers.push(() => makeCharacter(
  50776. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50777. {
  50778. front: {
  50779. height: math.unit(6 + 5/12, "feet"),
  50780. weight: math.unit(265, "lb"),
  50781. name: "Front",
  50782. image: {
  50783. source: "./media/characters/devon-childs/front.svg",
  50784. extra: 1795/1721,
  50785. bottom: 41/1836
  50786. }
  50787. },
  50788. side: {
  50789. height: math.unit(6 + 5/12, "feet"),
  50790. weight: math.unit(265, "lb"),
  50791. name: "Side",
  50792. image: {
  50793. source: "./media/characters/devon-childs/side.svg",
  50794. extra: 1812/1738,
  50795. bottom: 30/1842
  50796. }
  50797. },
  50798. back: {
  50799. height: math.unit(6 + 5/12, "feet"),
  50800. weight: math.unit(265, "lb"),
  50801. name: "Back",
  50802. image: {
  50803. source: "./media/characters/devon-childs/back.svg",
  50804. extra: 1808/1735,
  50805. bottom: 23/1831
  50806. }
  50807. },
  50808. hand: {
  50809. height: math.unit(1.464, "feet"),
  50810. name: "Hand",
  50811. image: {
  50812. source: "./media/characters/devon-childs/hand.svg"
  50813. }
  50814. },
  50815. foot: {
  50816. height: math.unit(1.6, "feet"),
  50817. name: "Foot",
  50818. image: {
  50819. source: "./media/characters/devon-childs/foot.svg"
  50820. }
  50821. },
  50822. },
  50823. [
  50824. {
  50825. name: "Micro",
  50826. height: math.unit(7, "cm")
  50827. },
  50828. {
  50829. name: "Normal",
  50830. height: math.unit(6 + 5/12, "feet"),
  50831. default: true
  50832. },
  50833. {
  50834. name: "Macro",
  50835. height: math.unit(154, "feet")
  50836. },
  50837. ]
  50838. ))
  50839. characterMakers.push(() => makeCharacter(
  50840. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50841. {
  50842. front: {
  50843. height: math.unit(6, "feet"),
  50844. weight: math.unit(180, "lb"),
  50845. name: "Front",
  50846. image: {
  50847. source: "./media/characters/lydemox-vir/front.svg",
  50848. extra: 1632/1435,
  50849. bottom: 58/1690
  50850. }
  50851. },
  50852. frontSFW: {
  50853. height: math.unit(6, "feet"),
  50854. weight: math.unit(180, "lb"),
  50855. name: "Front (SFW)",
  50856. image: {
  50857. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50858. extra: 1632/1435,
  50859. bottom: 58/1690
  50860. }
  50861. },
  50862. back: {
  50863. height: math.unit(6, "feet"),
  50864. weight: math.unit(180, "lb"),
  50865. name: "Back",
  50866. image: {
  50867. source: "./media/characters/lydemox-vir/back.svg",
  50868. extra: 1593/1408,
  50869. bottom: 31/1624
  50870. }
  50871. },
  50872. paw: {
  50873. height: math.unit(1.85, "feet"),
  50874. name: "Paw",
  50875. image: {
  50876. source: "./media/characters/lydemox-vir/paw.svg"
  50877. }
  50878. },
  50879. dick: {
  50880. height: math.unit(1.8, "feet"),
  50881. name: "Dick",
  50882. image: {
  50883. source: "./media/characters/lydemox-vir/dick.svg"
  50884. }
  50885. },
  50886. },
  50887. [
  50888. {
  50889. name: "Macro",
  50890. height: math.unit(100, "feet"),
  50891. default: true
  50892. },
  50893. {
  50894. name: "Teramacro",
  50895. height: math.unit(1, "earth")
  50896. },
  50897. {
  50898. name: "Planetary",
  50899. height: math.unit(20, "earths")
  50900. },
  50901. ]
  50902. ))
  50903. characterMakers.push(() => makeCharacter(
  50904. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50905. {
  50906. front: {
  50907. height: math.unit(15 + 8/12, "feet"),
  50908. weight: math.unit(1237, "kg"),
  50909. name: "Front",
  50910. image: {
  50911. source: "./media/characters/mia/front.svg",
  50912. extra: 1573/1446,
  50913. bottom: 58/1631
  50914. }
  50915. },
  50916. },
  50917. [
  50918. {
  50919. name: "Small",
  50920. height: math.unit(9 + 5/12, "feet")
  50921. },
  50922. {
  50923. name: "Normal",
  50924. height: math.unit(15 + 8/12, "feet"),
  50925. default: true
  50926. },
  50927. ]
  50928. ))
  50929. characterMakers.push(() => makeCharacter(
  50930. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50931. {
  50932. front: {
  50933. height: math.unit(10 + 6/12, "feet"),
  50934. weight: math.unit(1.3, "tons"),
  50935. name: "Front",
  50936. image: {
  50937. source: "./media/characters/mr-graves/front.svg",
  50938. extra: 1779/1695,
  50939. bottom: 198/1977
  50940. }
  50941. },
  50942. },
  50943. [
  50944. {
  50945. name: "Normal",
  50946. height: math.unit(10 + 6 /12, "feet"),
  50947. default: true
  50948. },
  50949. ]
  50950. ))
  50951. characterMakers.push(() => makeCharacter(
  50952. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50953. {
  50954. dressedFront: {
  50955. height: math.unit(5 + 8/12, "feet"),
  50956. weight: math.unit(125, "lb"),
  50957. name: "Dressed (Front)",
  50958. image: {
  50959. source: "./media/characters/jess/dressed-front.svg",
  50960. extra: 1176/1152,
  50961. bottom: 42/1218
  50962. }
  50963. },
  50964. dressedSide: {
  50965. height: math.unit(5 + 8/12, "feet"),
  50966. weight: math.unit(125, "lb"),
  50967. name: "Dressed (Side)",
  50968. image: {
  50969. source: "./media/characters/jess/dressed-side.svg",
  50970. extra: 1204/1190,
  50971. bottom: 6/1210
  50972. }
  50973. },
  50974. nudeFront: {
  50975. height: math.unit(5 + 8/12, "feet"),
  50976. weight: math.unit(125, "lb"),
  50977. name: "Nude (Front)",
  50978. image: {
  50979. source: "./media/characters/jess/nude-front.svg",
  50980. extra: 1176/1152,
  50981. bottom: 42/1218
  50982. }
  50983. },
  50984. nudeSide: {
  50985. height: math.unit(5 + 8/12, "feet"),
  50986. weight: math.unit(125, "lb"),
  50987. name: "Nude (Side)",
  50988. image: {
  50989. source: "./media/characters/jess/nude-side.svg",
  50990. extra: 1204/1190,
  50991. bottom: 6/1210
  50992. }
  50993. },
  50994. organsFront: {
  50995. height: math.unit(2.83799342105, "feet"),
  50996. name: "Organs (Front)",
  50997. image: {
  50998. source: "./media/characters/jess/organs-front.svg"
  50999. }
  51000. },
  51001. organsSide: {
  51002. height: math.unit(2.64225290474, "feet"),
  51003. name: "Organs (Side)",
  51004. image: {
  51005. source: "./media/characters/jess/organs-side.svg"
  51006. }
  51007. },
  51008. digestiveTractFront: {
  51009. height: math.unit(2.8106580871, "feet"),
  51010. name: "Digestive Tract (Front)",
  51011. image: {
  51012. source: "./media/characters/jess/digestive-tract-front.svg"
  51013. }
  51014. },
  51015. digestiveTractSide: {
  51016. height: math.unit(2.54365045014, "feet"),
  51017. name: "Digestive Tract (Side)",
  51018. image: {
  51019. source: "./media/characters/jess/digestive-tract-side.svg"
  51020. }
  51021. },
  51022. respiratorySystemFront: {
  51023. height: math.unit(1.11196233456, "feet"),
  51024. name: "Respiratory System (Front)",
  51025. image: {
  51026. source: "./media/characters/jess/respiratory-system-front.svg"
  51027. }
  51028. },
  51029. respiratorySystemSide: {
  51030. height: math.unit(0.89327966297, "feet"),
  51031. name: "Respiratory System (Side)",
  51032. image: {
  51033. source: "./media/characters/jess/respiratory-system-side.svg"
  51034. }
  51035. },
  51036. urinaryTractFront: {
  51037. height: math.unit(1.16126356186, "feet"),
  51038. name: "Urinary Tract (Front)",
  51039. image: {
  51040. source: "./media/characters/jess/urinary-tract-front.svg"
  51041. }
  51042. },
  51043. urinaryTractSide: {
  51044. height: math.unit(1.20910039627, "feet"),
  51045. name: "Urinary Tract (Side)",
  51046. image: {
  51047. source: "./media/characters/jess/urinary-tract-side.svg"
  51048. }
  51049. },
  51050. reproductiveOrgansFront: {
  51051. height: math.unit(0.48422591566, "feet"),
  51052. name: "Reproductive Organs (Front)",
  51053. image: {
  51054. source: "./media/characters/jess/reproductive-organs-front.svg"
  51055. }
  51056. },
  51057. reproductiveOrgansSide: {
  51058. height: math.unit(0.61553314481, "feet"),
  51059. name: "Reproductive Organs (Side)",
  51060. image: {
  51061. source: "./media/characters/jess/reproductive-organs-side.svg"
  51062. }
  51063. },
  51064. breastsFront: {
  51065. height: math.unit(0.47690395121, "feet"),
  51066. name: "Breasts (Front)",
  51067. image: {
  51068. source: "./media/characters/jess/breasts-front.svg"
  51069. }
  51070. },
  51071. breastsSide: {
  51072. height: math.unit(0.30556998307, "feet"),
  51073. name: "Breasts (Side)",
  51074. image: {
  51075. source: "./media/characters/jess/breasts-side.svg"
  51076. }
  51077. },
  51078. heartFront: {
  51079. height: math.unit(0.53011022622, "feet"),
  51080. name: "Heart (Front)",
  51081. image: {
  51082. source: "./media/characters/jess/heart-front.svg"
  51083. }
  51084. },
  51085. heartSide: {
  51086. height: math.unit(0.51790695213, "feet"),
  51087. name: "Heart (Side)",
  51088. image: {
  51089. source: "./media/characters/jess/heart-side.svg"
  51090. }
  51091. },
  51092. earsAndNoseFront: {
  51093. height: math.unit(0.29385483995, "feet"),
  51094. name: "Ears and Nose (Front)",
  51095. image: {
  51096. source: "./media/characters/jess/ears-and-nose-front.svg"
  51097. }
  51098. },
  51099. earsAndNoseSide: {
  51100. height: math.unit(0.18109658741, "feet"),
  51101. name: "Ears and Nose (Side)",
  51102. image: {
  51103. source: "./media/characters/jess/ears-and-nose-side.svg"
  51104. }
  51105. },
  51106. },
  51107. [
  51108. {
  51109. name: "Normal",
  51110. height: math.unit(5 + 8/12, "feet"),
  51111. default: true
  51112. },
  51113. ]
  51114. ))
  51115. characterMakers.push(() => makeCharacter(
  51116. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51117. {
  51118. front: {
  51119. height: math.unit(6, "feet"),
  51120. weight: math.unit(6.64467e-7, "grams"),
  51121. name: "Front",
  51122. image: {
  51123. source: "./media/characters/wimpering/front.svg",
  51124. extra: 597/587,
  51125. bottom: 34/631
  51126. }
  51127. },
  51128. },
  51129. [
  51130. {
  51131. name: "Micro",
  51132. height: math.unit(0.4, "mm"),
  51133. default: true
  51134. },
  51135. ]
  51136. ))
  51137. characterMakers.push(() => makeCharacter(
  51138. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51139. {
  51140. front: {
  51141. height: math.unit(5 + 2/12, "feet"),
  51142. weight: math.unit(110, "lb"),
  51143. name: "Front",
  51144. image: {
  51145. source: "./media/characters/keltre/front.svg",
  51146. extra: 1099/1057,
  51147. bottom: 22/1121
  51148. }
  51149. },
  51150. back: {
  51151. height: math.unit(5 + 2/12, "feet"),
  51152. weight: math.unit(110, "lb"),
  51153. name: "Back",
  51154. image: {
  51155. source: "./media/characters/keltre/back.svg",
  51156. extra: 1095/1053,
  51157. bottom: 17/1112
  51158. }
  51159. },
  51160. dressed: {
  51161. height: math.unit(5 + 2/12, "feet"),
  51162. weight: math.unit(110, "lb"),
  51163. name: "Dressed",
  51164. image: {
  51165. source: "./media/characters/keltre/dressed.svg",
  51166. extra: 1099/1057,
  51167. bottom: 22/1121
  51168. }
  51169. },
  51170. winter: {
  51171. height: math.unit(5 + 2/12, "feet"),
  51172. weight: math.unit(110, "lb"),
  51173. name: "Winter",
  51174. image: {
  51175. source: "./media/characters/keltre/winter.svg",
  51176. extra: 1099/1057,
  51177. bottom: 22/1121
  51178. }
  51179. },
  51180. head: {
  51181. height: math.unit(1.61 * 0.86, "feet"),
  51182. name: "Head",
  51183. image: {
  51184. source: "./media/characters/keltre/head.svg",
  51185. extra: 534/421,
  51186. bottom: 0/534
  51187. }
  51188. },
  51189. hand: {
  51190. height: math.unit(1.3 * 0.86, "feet"),
  51191. name: "Hand",
  51192. image: {
  51193. source: "./media/characters/keltre/hand.svg"
  51194. }
  51195. },
  51196. foot: {
  51197. height: math.unit(1.8 * 0.86, "feet"),
  51198. name: "Foot",
  51199. image: {
  51200. source: "./media/characters/keltre/foot.svg"
  51201. }
  51202. },
  51203. },
  51204. [
  51205. {
  51206. name: "Fine",
  51207. height: math.unit(1, "inch")
  51208. },
  51209. {
  51210. name: "Dimnutive",
  51211. height: math.unit(4, "inches")
  51212. },
  51213. {
  51214. name: "Tiny",
  51215. height: math.unit(1, "foot")
  51216. },
  51217. {
  51218. name: "Small",
  51219. height: math.unit(3, "feet")
  51220. },
  51221. {
  51222. name: "Normal",
  51223. height: math.unit(5 + 2/12, "feet"),
  51224. default: true
  51225. },
  51226. ]
  51227. ))
  51228. characterMakers.push(() => makeCharacter(
  51229. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51230. {
  51231. front: {
  51232. height: math.unit(6 + 2/12, "feet"),
  51233. name: "Front",
  51234. image: {
  51235. source: "./media/characters/nox/front.svg",
  51236. extra: 1917/1830,
  51237. bottom: 74/1991
  51238. }
  51239. },
  51240. back: {
  51241. height: math.unit(6 + 2/12, "feet"),
  51242. name: "Back",
  51243. image: {
  51244. source: "./media/characters/nox/back.svg",
  51245. extra: 1896/1815,
  51246. bottom: 21/1917
  51247. }
  51248. },
  51249. head: {
  51250. height: math.unit(1.1, "feet"),
  51251. name: "Head",
  51252. image: {
  51253. source: "./media/characters/nox/head.svg",
  51254. extra: 874/704,
  51255. bottom: 0/874
  51256. }
  51257. },
  51258. tattoo: {
  51259. height: math.unit(0.729, "feet"),
  51260. name: "Tattoo",
  51261. image: {
  51262. source: "./media/characters/nox/tattoo.svg"
  51263. }
  51264. },
  51265. },
  51266. [
  51267. {
  51268. name: "Normal",
  51269. height: math.unit(6 + 2/12, "feet")
  51270. },
  51271. {
  51272. name: "Gigamacro",
  51273. height: math.unit(2, "earths"),
  51274. default: true
  51275. },
  51276. {
  51277. name: "Cosmic",
  51278. height: math.unit(867, "yottameters")
  51279. },
  51280. ]
  51281. ))
  51282. characterMakers.push(() => makeCharacter(
  51283. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51284. {
  51285. front: {
  51286. height: math.unit(6, "feet"),
  51287. weight: math.unit(150, "lb"),
  51288. name: "Front",
  51289. image: {
  51290. source: "./media/characters/caspian/front.svg",
  51291. extra: 1443/1359,
  51292. bottom: 0/1443
  51293. }
  51294. },
  51295. back: {
  51296. height: math.unit(6, "feet"),
  51297. weight: math.unit(150, "lb"),
  51298. name: "Back",
  51299. image: {
  51300. source: "./media/characters/caspian/back.svg",
  51301. extra: 1379/1309,
  51302. bottom: 0/1379
  51303. }
  51304. },
  51305. head: {
  51306. height: math.unit(0.9, "feet"),
  51307. name: "Head",
  51308. image: {
  51309. source: "./media/characters/caspian/head.svg",
  51310. extra: 692/492,
  51311. bottom: 0/692
  51312. }
  51313. },
  51314. headAlt: {
  51315. height: math.unit(0.95, "feet"),
  51316. name: "Head (Alt)",
  51317. image: {
  51318. source: "./media/characters/caspian/head-alt.svg",
  51319. extra: 668/508,
  51320. bottom: 0/668
  51321. }
  51322. },
  51323. hand: {
  51324. height: math.unit(0.8, "feet"),
  51325. name: "Hand",
  51326. image: {
  51327. source: "./media/characters/caspian/hand.svg"
  51328. }
  51329. },
  51330. paw: {
  51331. height: math.unit(0.95, "feet"),
  51332. name: "Paw",
  51333. image: {
  51334. source: "./media/characters/caspian/paw.svg"
  51335. }
  51336. },
  51337. },
  51338. [
  51339. {
  51340. name: "Normal",
  51341. height: math.unit(162, "feet"),
  51342. default: true
  51343. },
  51344. ]
  51345. ))
  51346. characterMakers.push(() => makeCharacter(
  51347. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51348. {
  51349. front: {
  51350. height: math.unit(6, "feet"),
  51351. name: "Front",
  51352. image: {
  51353. source: "./media/characters/myra-aisling/front.svg",
  51354. extra: 1268/1166,
  51355. bottom: 73/1341
  51356. }
  51357. },
  51358. back: {
  51359. height: math.unit(6, "feet"),
  51360. name: "Back",
  51361. image: {
  51362. source: "./media/characters/myra-aisling/back.svg",
  51363. extra: 1249/1149,
  51364. bottom: 79/1328
  51365. }
  51366. },
  51367. dressed: {
  51368. height: math.unit(6, "feet"),
  51369. name: "Dressed",
  51370. image: {
  51371. source: "./media/characters/myra-aisling/dressed.svg",
  51372. extra: 1290/1189,
  51373. bottom: 47/1337
  51374. }
  51375. },
  51376. hand: {
  51377. height: math.unit(1.1, "feet"),
  51378. name: "Hand",
  51379. image: {
  51380. source: "./media/characters/myra-aisling/hand.svg"
  51381. }
  51382. },
  51383. paw: {
  51384. height: math.unit(1.23, "feet"),
  51385. name: "Paw",
  51386. image: {
  51387. source: "./media/characters/myra-aisling/paw.svg"
  51388. }
  51389. },
  51390. },
  51391. [
  51392. {
  51393. name: "Normal",
  51394. height: math.unit(160, "feet"),
  51395. default: true
  51396. },
  51397. ]
  51398. ))
  51399. characterMakers.push(() => makeCharacter(
  51400. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51401. {
  51402. front: {
  51403. height: math.unit(6, "feet"),
  51404. name: "Front",
  51405. image: {
  51406. source: "./media/characters/tenley-sidero/front.svg",
  51407. extra: 1365/1276,
  51408. bottom: 47/1412
  51409. }
  51410. },
  51411. back: {
  51412. height: math.unit(6, "feet"),
  51413. name: "Back",
  51414. image: {
  51415. source: "./media/characters/tenley-sidero/back.svg",
  51416. extra: 1383/1283,
  51417. bottom: 35/1418
  51418. }
  51419. },
  51420. dressed: {
  51421. height: math.unit(6, "feet"),
  51422. name: "Dressed",
  51423. image: {
  51424. source: "./media/characters/tenley-sidero/dressed.svg",
  51425. extra: 1364/1275,
  51426. bottom: 42/1406
  51427. }
  51428. },
  51429. head: {
  51430. height: math.unit(1.47, "feet"),
  51431. name: "Head",
  51432. image: {
  51433. source: "./media/characters/tenley-sidero/head.svg",
  51434. extra: 610/490,
  51435. bottom: 0/610
  51436. }
  51437. },
  51438. },
  51439. [
  51440. {
  51441. name: "Normal",
  51442. height: math.unit(154, "feet"),
  51443. default: true
  51444. },
  51445. ]
  51446. ))
  51447. characterMakers.push(() => makeCharacter(
  51448. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51449. {
  51450. front: {
  51451. height: math.unit(5, "inches"),
  51452. name: "Front",
  51453. image: {
  51454. source: "./media/characters/mallory/front.svg",
  51455. extra: 1919/1678,
  51456. bottom: 29/1948
  51457. }
  51458. },
  51459. hand: {
  51460. height: math.unit(0.73, "inches"),
  51461. name: "Hand",
  51462. image: {
  51463. source: "./media/characters/mallory/hand.svg"
  51464. }
  51465. },
  51466. paw: {
  51467. height: math.unit(0.68, "inches"),
  51468. name: "Paw",
  51469. image: {
  51470. source: "./media/characters/mallory/paw.svg"
  51471. }
  51472. },
  51473. },
  51474. [
  51475. {
  51476. name: "Small",
  51477. height: math.unit(5, "inches"),
  51478. default: true
  51479. },
  51480. ]
  51481. ))
  51482. characterMakers.push(() => makeCharacter(
  51483. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51484. {
  51485. naked: {
  51486. height: math.unit(6, "feet"),
  51487. name: "Naked",
  51488. image: {
  51489. source: "./media/characters/mab/naked.svg",
  51490. extra: 1855/1757,
  51491. bottom: 208/2063
  51492. }
  51493. },
  51494. outside: {
  51495. height: math.unit(6, "feet"),
  51496. name: "Outside",
  51497. image: {
  51498. source: "./media/characters/mab/outside.svg",
  51499. extra: 1855/1757,
  51500. bottom: 208/2063
  51501. }
  51502. },
  51503. party: {
  51504. height: math.unit(6, "feet"),
  51505. name: "Party",
  51506. image: {
  51507. source: "./media/characters/mab/party.svg",
  51508. extra: 1855/1757,
  51509. bottom: 208/2063
  51510. }
  51511. },
  51512. },
  51513. [
  51514. {
  51515. name: "Normal",
  51516. height: math.unit(165, "feet"),
  51517. default: true
  51518. },
  51519. ]
  51520. ))
  51521. characterMakers.push(() => makeCharacter(
  51522. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51523. {
  51524. feral: {
  51525. height: math.unit(12, "feet"),
  51526. weight: math.unit(20000, "lb"),
  51527. name: "Side",
  51528. image: {
  51529. source: "./media/characters/winter/feral.svg",
  51530. extra: 1286/943,
  51531. bottom: 112/1398
  51532. },
  51533. form: "feral",
  51534. default: true
  51535. },
  51536. feralNsfw: {
  51537. height: math.unit(12, "feet"),
  51538. weight: math.unit(20000, "lb"),
  51539. name: "Side (NSFW)",
  51540. image: {
  51541. source: "./media/characters/winter/feral-nsfw.svg",
  51542. extra: 1286/943,
  51543. bottom: 112/1398
  51544. },
  51545. form: "feral"
  51546. },
  51547. dick: {
  51548. height: math.unit(3.79, "feet"),
  51549. name: "Dick",
  51550. image: {
  51551. source: "./media/characters/winter/dick.svg"
  51552. },
  51553. form: "feral"
  51554. },
  51555. anthro: {
  51556. height: math.unit(12, "feet"),
  51557. weight: math.unit(10, "tons"),
  51558. name: "Anthro",
  51559. image: {
  51560. source: "./media/characters/winter/anthro.svg",
  51561. extra: 1701/1553,
  51562. bottom: 64/1765
  51563. },
  51564. form: "anthro",
  51565. default: true
  51566. },
  51567. },
  51568. [
  51569. {
  51570. name: "Big",
  51571. height: math.unit(12, "feet"),
  51572. default: true,
  51573. form: "feral"
  51574. },
  51575. {
  51576. name: "Big",
  51577. height: math.unit(12, "feet"),
  51578. default: true,
  51579. form: "anthro"
  51580. },
  51581. ],
  51582. {
  51583. "feral": {
  51584. name: "Feral",
  51585. default: true
  51586. },
  51587. "anthro": {
  51588. name: "Anthro"
  51589. }
  51590. }
  51591. ))
  51592. characterMakers.push(() => makeCharacter(
  51593. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51594. {
  51595. front: {
  51596. height: math.unit(4.1, "inches"),
  51597. name: "Front",
  51598. image: {
  51599. source: "./media/characters/alto/front.svg",
  51600. extra: 736/627,
  51601. bottom: 90/826
  51602. }
  51603. },
  51604. },
  51605. [
  51606. {
  51607. name: "Normal",
  51608. height: math.unit(4.1, "inches"),
  51609. default: true
  51610. },
  51611. ]
  51612. ))
  51613. characterMakers.push(() => makeCharacter(
  51614. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51615. {
  51616. sitting: {
  51617. height: math.unit(3, "feet"),
  51618. name: "Sitting",
  51619. image: {
  51620. source: "./media/characters/ratstrid-v/sitting.svg",
  51621. extra: 355/310,
  51622. bottom: 136/491
  51623. }
  51624. },
  51625. },
  51626. [
  51627. {
  51628. name: "Normal",
  51629. height: math.unit(3, "feet"),
  51630. default: true
  51631. },
  51632. ]
  51633. ))
  51634. characterMakers.push(() => makeCharacter(
  51635. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51636. {
  51637. back: {
  51638. height: math.unit(6, "feet"),
  51639. weight: math.unit(450, "lb"),
  51640. name: "Back",
  51641. image: {
  51642. source: "./media/characters/siz/back.svg",
  51643. extra: 1449/1274,
  51644. bottom: 13/1462
  51645. }
  51646. },
  51647. },
  51648. [
  51649. {
  51650. name: "Smallest",
  51651. height: math.unit(18 + 3/12, "feet")
  51652. },
  51653. {
  51654. name: "Modest",
  51655. height: math.unit(56 + 8/12, "feet"),
  51656. default: true
  51657. },
  51658. {
  51659. name: "Largest",
  51660. height: math.unit(3590, "feet")
  51661. },
  51662. ]
  51663. ))
  51664. characterMakers.push(() => makeCharacter(
  51665. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51666. {
  51667. front: {
  51668. height: math.unit(5 + 9/12, "feet"),
  51669. weight: math.unit(150, "lb"),
  51670. name: "Front",
  51671. image: {
  51672. source: "./media/characters/ven/front.svg",
  51673. extra: 1372/1320,
  51674. bottom: 73/1445
  51675. }
  51676. },
  51677. side: {
  51678. height: math.unit(5 + 9/12, "feet"),
  51679. weight: math.unit(1150, "lb"),
  51680. name: "Side",
  51681. image: {
  51682. source: "./media/characters/ven/side.svg",
  51683. extra: 1119/1070,
  51684. bottom: 42/1161
  51685. },
  51686. default: true
  51687. },
  51688. },
  51689. [
  51690. {
  51691. name: "Normal",
  51692. height: math.unit(5 + 9/12, "feet"),
  51693. default: true
  51694. },
  51695. ]
  51696. ))
  51697. characterMakers.push(() => makeCharacter(
  51698. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51699. {
  51700. front: {
  51701. height: math.unit(12, "feet"),
  51702. weight: math.unit(1000, "kg"),
  51703. name: "Front",
  51704. image: {
  51705. source: "./media/characters/maple/front.svg",
  51706. extra: 1193/1081,
  51707. bottom: 22/1215
  51708. }
  51709. },
  51710. },
  51711. [
  51712. {
  51713. name: "Compressed",
  51714. height: math.unit(7, "feet")
  51715. },
  51716. {
  51717. name: "Normal",
  51718. height: math.unit(12, "feet"),
  51719. default: true
  51720. },
  51721. ]
  51722. ))
  51723. characterMakers.push(() => makeCharacter(
  51724. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51725. {
  51726. front: {
  51727. height: math.unit(9, "feet"),
  51728. weight: math.unit(1500, "lb"),
  51729. name: "Front",
  51730. image: {
  51731. source: "./media/characters/nora/front.svg",
  51732. extra: 1348/1286,
  51733. bottom: 218/1566
  51734. }
  51735. },
  51736. erect: {
  51737. height: math.unit(9, "feet"),
  51738. weight: math.unit(11500, "lb"),
  51739. name: "Erect",
  51740. image: {
  51741. source: "./media/characters/nora/erect.svg",
  51742. extra: 1488/1433,
  51743. bottom: 133/1621
  51744. }
  51745. },
  51746. },
  51747. [
  51748. {
  51749. name: "Normal",
  51750. height: math.unit(9, "feet"),
  51751. default: true
  51752. },
  51753. ]
  51754. ))
  51755. characterMakers.push(() => makeCharacter(
  51756. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51757. {
  51758. front: {
  51759. height: math.unit(25, "feet"),
  51760. weight: math.unit(27500, "lb"),
  51761. name: "Front",
  51762. image: {
  51763. source: "./media/characters/north-caudin/front.svg",
  51764. extra: 1184/1082,
  51765. bottom: 23/1207
  51766. }
  51767. },
  51768. },
  51769. [
  51770. {
  51771. name: "Compressed",
  51772. height: math.unit(10, "feet")
  51773. },
  51774. {
  51775. name: "Normal",
  51776. height: math.unit(25, "feet"),
  51777. default: true
  51778. },
  51779. ]
  51780. ))
  51781. characterMakers.push(() => makeCharacter(
  51782. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51783. {
  51784. front: {
  51785. height: math.unit(9, "feet"),
  51786. weight: math.unit(1250, "lb"),
  51787. name: "Front",
  51788. image: {
  51789. source: "./media/characters/merrian/front.svg",
  51790. extra: 2393/2304,
  51791. bottom: 40/2433
  51792. }
  51793. },
  51794. },
  51795. [
  51796. {
  51797. name: "Normal",
  51798. height: math.unit(9, "feet"),
  51799. default: true
  51800. },
  51801. ]
  51802. ))
  51803. characterMakers.push(() => makeCharacter(
  51804. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51805. {
  51806. front: {
  51807. height: math.unit(9, "feet"),
  51808. weight: math.unit(1000, "lb"),
  51809. name: "Front",
  51810. image: {
  51811. source: "./media/characters/hazel/front.svg",
  51812. extra: 2351/2298,
  51813. bottom: 38/2389
  51814. }
  51815. },
  51816. },
  51817. [
  51818. {
  51819. name: "Normal",
  51820. height: math.unit(9, "feet"),
  51821. default: true
  51822. },
  51823. ]
  51824. ))
  51825. characterMakers.push(() => makeCharacter(
  51826. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51827. {
  51828. front: {
  51829. height: math.unit(13, "feet"),
  51830. weight: math.unit(3200, "lb"),
  51831. name: "Front",
  51832. image: {
  51833. source: "./media/characters/emma/front.svg",
  51834. extra: 2263/2029,
  51835. bottom: 68/2331
  51836. }
  51837. },
  51838. },
  51839. [
  51840. {
  51841. name: "Normal",
  51842. height: math.unit(13, "feet"),
  51843. default: true
  51844. },
  51845. ]
  51846. ))
  51847. characterMakers.push(() => makeCharacter(
  51848. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51849. {
  51850. front: {
  51851. height: math.unit(11 + 9/12, "feet"),
  51852. weight: math.unit(2500, "lb"),
  51853. name: "Front",
  51854. image: {
  51855. source: "./media/characters/ilumina/front.svg",
  51856. extra: 2248/2209,
  51857. bottom: 164/2412
  51858. }
  51859. },
  51860. },
  51861. [
  51862. {
  51863. name: "Normal",
  51864. height: math.unit(11 + 9/12, "feet"),
  51865. default: true
  51866. },
  51867. ]
  51868. ))
  51869. characterMakers.push(() => makeCharacter(
  51870. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51871. {
  51872. front: {
  51873. height: math.unit(8 + 10/12, "feet"),
  51874. weight: math.unit(1350, "lb"),
  51875. name: "Front",
  51876. image: {
  51877. source: "./media/characters/moonshine/front.svg",
  51878. extra: 2395/2288,
  51879. bottom: 40/2435
  51880. }
  51881. },
  51882. },
  51883. [
  51884. {
  51885. name: "Normal",
  51886. height: math.unit(8 + 10/12, "feet"),
  51887. default: true
  51888. },
  51889. ]
  51890. ))
  51891. characterMakers.push(() => makeCharacter(
  51892. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51893. {
  51894. front: {
  51895. height: math.unit(14, "feet"),
  51896. weight: math.unit(3400, "lb"),
  51897. name: "Front",
  51898. image: {
  51899. source: "./media/characters/aletia/front.svg",
  51900. extra: 1185/1052,
  51901. bottom: 21/1206
  51902. }
  51903. },
  51904. },
  51905. [
  51906. {
  51907. name: "Compressed",
  51908. height: math.unit(8, "feet")
  51909. },
  51910. {
  51911. name: "Normal",
  51912. height: math.unit(14, "feet"),
  51913. default: true
  51914. },
  51915. ]
  51916. ))
  51917. characterMakers.push(() => makeCharacter(
  51918. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51919. {
  51920. front: {
  51921. height: math.unit(17, "feet"),
  51922. weight: math.unit(6500, "lb"),
  51923. name: "Front",
  51924. image: {
  51925. source: "./media/characters/deidra/front.svg",
  51926. extra: 1201/1081,
  51927. bottom: 16/1217
  51928. }
  51929. },
  51930. },
  51931. [
  51932. {
  51933. name: "Compressed",
  51934. height: math.unit(9 + 6/12, "feet")
  51935. },
  51936. {
  51937. name: "Normal",
  51938. height: math.unit(17, "feet"),
  51939. default: true
  51940. },
  51941. ]
  51942. ))
  51943. characterMakers.push(() => makeCharacter(
  51944. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51945. {
  51946. front: {
  51947. height: math.unit(7 + 4/12, "feet"),
  51948. weight: math.unit(280, "lb"),
  51949. name: "Front",
  51950. image: {
  51951. source: "./media/characters/freki-yrmori/front.svg",
  51952. extra: 1286/1182,
  51953. bottom: 29/1315
  51954. }
  51955. },
  51956. maw: {
  51957. height: math.unit(0.9, "feet"),
  51958. name: "Maw",
  51959. image: {
  51960. source: "./media/characters/freki-yrmori/maw.svg"
  51961. }
  51962. },
  51963. },
  51964. [
  51965. {
  51966. name: "Normal",
  51967. height: math.unit(7 + 4/12, "feet"),
  51968. default: true
  51969. },
  51970. {
  51971. name: "Macro",
  51972. height: math.unit(38.5, "meters")
  51973. },
  51974. ]
  51975. ))
  51976. characterMakers.push(() => makeCharacter(
  51977. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51978. {
  51979. side: {
  51980. height: math.unit(47.2, "meters"),
  51981. weight: math.unit(10000, "tons"),
  51982. name: "Side",
  51983. image: {
  51984. source: "./media/characters/aetherios/side.svg",
  51985. extra: 2363/642,
  51986. bottom: 221/2584
  51987. }
  51988. },
  51989. top: {
  51990. height: math.unit(240, "meters"),
  51991. weight: math.unit(10000, "tons"),
  51992. name: "Top",
  51993. image: {
  51994. source: "./media/characters/aetherios/top.svg"
  51995. }
  51996. },
  51997. bottom: {
  51998. height: math.unit(240, "meters"),
  51999. weight: math.unit(10000, "tons"),
  52000. name: "Bottom",
  52001. image: {
  52002. source: "./media/characters/aetherios/bottom.svg"
  52003. }
  52004. },
  52005. head: {
  52006. height: math.unit(38.6, "meters"),
  52007. name: "Head",
  52008. image: {
  52009. source: "./media/characters/aetherios/head.svg",
  52010. extra: 1335/1112,
  52011. bottom: 0/1335
  52012. }
  52013. },
  52014. front: {
  52015. height: math.unit(29, "meters"),
  52016. name: "Front",
  52017. image: {
  52018. source: "./media/characters/aetherios/front.svg",
  52019. extra: 1266/953,
  52020. bottom: 158/1424
  52021. }
  52022. },
  52023. maw: {
  52024. height: math.unit(16.37, "meters"),
  52025. name: "Maw",
  52026. image: {
  52027. source: "./media/characters/aetherios/maw.svg",
  52028. extra: 748/637,
  52029. bottom: 0/748
  52030. },
  52031. extraAttributes: {
  52032. preyCapacity: {
  52033. name: "Capacity",
  52034. power: 3,
  52035. type: "volume",
  52036. base: math.unit(1000, "people")
  52037. },
  52038. tongueSize: {
  52039. name: "Tongue Size",
  52040. power: 2,
  52041. type: "area",
  52042. base: math.unit(21, "m^2")
  52043. }
  52044. }
  52045. },
  52046. forepaw: {
  52047. height: math.unit(18, "meters"),
  52048. name: "Forepaw",
  52049. image: {
  52050. source: "./media/characters/aetherios/forepaw.svg"
  52051. }
  52052. },
  52053. hindpaw: {
  52054. height: math.unit(23, "meters"),
  52055. name: "Hindpaw",
  52056. image: {
  52057. source: "./media/characters/aetherios/hindpaw.svg"
  52058. }
  52059. },
  52060. genitals: {
  52061. height: math.unit(42, "meters"),
  52062. name: "Genitals",
  52063. image: {
  52064. source: "./media/characters/aetherios/genitals.svg"
  52065. }
  52066. },
  52067. },
  52068. [
  52069. {
  52070. name: "Normal",
  52071. height: math.unit(47.2, "meters"),
  52072. default: true
  52073. },
  52074. {
  52075. name: "Macro",
  52076. height: math.unit(160, "meters")
  52077. },
  52078. {
  52079. name: "Mega",
  52080. height: math.unit(1.87, "km")
  52081. },
  52082. {
  52083. name: "Giga",
  52084. height: math.unit(40000, "km")
  52085. },
  52086. {
  52087. name: "Stellar",
  52088. height: math.unit(158000000, "km")
  52089. },
  52090. {
  52091. name: "Cosmic",
  52092. height: math.unit(9.46e12, "km")
  52093. },
  52094. ]
  52095. ))
  52096. characterMakers.push(() => makeCharacter(
  52097. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52098. {
  52099. front: {
  52100. height: math.unit(5 + 4/12, "feet"),
  52101. weight: math.unit(80, "lb"),
  52102. name: "Front",
  52103. image: {
  52104. source: "./media/characters/mizu-gieeg/front.svg",
  52105. extra: 850/709,
  52106. bottom: 52/902
  52107. }
  52108. },
  52109. back: {
  52110. height: math.unit(5 + 4/12, "feet"),
  52111. weight: math.unit(80, "lb"),
  52112. name: "Back",
  52113. image: {
  52114. source: "./media/characters/mizu-gieeg/back.svg",
  52115. extra: 882/745,
  52116. bottom: 25/907
  52117. }
  52118. },
  52119. },
  52120. [
  52121. {
  52122. name: "Normal",
  52123. height: math.unit(5 + 4/12, "feet"),
  52124. default: true
  52125. },
  52126. ]
  52127. ))
  52128. characterMakers.push(() => makeCharacter(
  52129. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52130. {
  52131. front: {
  52132. height: math.unit(6, "feet"),
  52133. name: "Front",
  52134. image: {
  52135. source: "./media/characters/roselle-st-papier/front.svg",
  52136. extra: 1430/1280,
  52137. bottom: 37/1467
  52138. }
  52139. },
  52140. back: {
  52141. height: math.unit(6, "feet"),
  52142. name: "Back",
  52143. image: {
  52144. source: "./media/characters/roselle-st-papier/back.svg",
  52145. extra: 1491/1296,
  52146. bottom: 23/1514
  52147. }
  52148. },
  52149. ear: {
  52150. height: math.unit(1.26, "feet"),
  52151. name: "Ear",
  52152. image: {
  52153. source: "./media/characters/roselle-st-papier/ear.svg"
  52154. }
  52155. },
  52156. },
  52157. [
  52158. {
  52159. name: "Normal",
  52160. height: math.unit(150, "feet"),
  52161. default: true
  52162. },
  52163. ]
  52164. ))
  52165. characterMakers.push(() => makeCharacter(
  52166. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52167. {
  52168. front: {
  52169. height: math.unit(1, "inches"),
  52170. name: "Front",
  52171. image: {
  52172. source: "./media/characters/valargent/front.svg",
  52173. extra: 1825/1694,
  52174. bottom: 62/1887
  52175. }
  52176. },
  52177. back: {
  52178. height: math.unit(1, "inches"),
  52179. name: "Back",
  52180. image: {
  52181. source: "./media/characters/valargent/back.svg",
  52182. extra: 1775/1682,
  52183. bottom: 88/1863
  52184. }
  52185. },
  52186. },
  52187. [
  52188. {
  52189. name: "Micro",
  52190. height: math.unit(1, "inch"),
  52191. default: true
  52192. },
  52193. ]
  52194. ))
  52195. characterMakers.push(() => makeCharacter(
  52196. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52197. {
  52198. front: {
  52199. height: math.unit(3.4, "meters"),
  52200. name: "Front",
  52201. image: {
  52202. source: "./media/characters/zarina/front.svg",
  52203. extra: 1733/1425,
  52204. bottom: 93/1826
  52205. }
  52206. },
  52207. squatting: {
  52208. height: math.unit(2.14, "meters"),
  52209. name: "Squatting",
  52210. image: {
  52211. source: "./media/characters/zarina/squatting.svg",
  52212. extra: 1073/788,
  52213. bottom: 63/1136
  52214. }
  52215. },
  52216. back: {
  52217. height: math.unit(2.14, "meters"),
  52218. name: "Back",
  52219. image: {
  52220. source: "./media/characters/zarina/back.svg",
  52221. extra: 1128/885,
  52222. bottom: 0/1128
  52223. }
  52224. },
  52225. },
  52226. [
  52227. {
  52228. name: "Normal",
  52229. height: math.unit(3.4, "meters"),
  52230. default: true
  52231. },
  52232. {
  52233. name: "Big",
  52234. height: math.unit(5, "meters")
  52235. },
  52236. {
  52237. name: "Macro",
  52238. height: math.unit(110, "meters")
  52239. },
  52240. ]
  52241. ))
  52242. characterMakers.push(() => makeCharacter(
  52243. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52244. {
  52245. front: {
  52246. height: math.unit(7, "feet"),
  52247. name: "Front",
  52248. image: {
  52249. source: "./media/characters/ventus-astro-fox/front.svg",
  52250. extra: 1792/1623,
  52251. bottom: 28/1820
  52252. }
  52253. },
  52254. back: {
  52255. height: math.unit(7, "feet"),
  52256. name: "Back",
  52257. image: {
  52258. source: "./media/characters/ventus-astro-fox/back.svg",
  52259. extra: 1789/1620,
  52260. bottom: 31/1820
  52261. }
  52262. },
  52263. outfit: {
  52264. height: math.unit(7, "feet"),
  52265. name: "Outfit",
  52266. image: {
  52267. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52268. extra: 1054/925,
  52269. bottom: 15/1069
  52270. }
  52271. },
  52272. head: {
  52273. height: math.unit(1.12, "feet"),
  52274. name: "Head",
  52275. image: {
  52276. source: "./media/characters/ventus-astro-fox/head.svg",
  52277. extra: 866/504,
  52278. bottom: 0/866
  52279. }
  52280. },
  52281. hand: {
  52282. height: math.unit(1, "feet"),
  52283. name: "Hand",
  52284. image: {
  52285. source: "./media/characters/ventus-astro-fox/hand.svg"
  52286. }
  52287. },
  52288. paw: {
  52289. height: math.unit(1.5, "feet"),
  52290. name: "Paw",
  52291. image: {
  52292. source: "./media/characters/ventus-astro-fox/paw.svg"
  52293. }
  52294. },
  52295. },
  52296. [
  52297. {
  52298. name: "Normal",
  52299. height: math.unit(7, "feet"),
  52300. default: true
  52301. },
  52302. {
  52303. name: "Macro",
  52304. height: math.unit(200, "feet")
  52305. },
  52306. {
  52307. name: "Cosmic",
  52308. height: math.unit(3, "universes")
  52309. },
  52310. ]
  52311. ))
  52312. characterMakers.push(() => makeCharacter(
  52313. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52314. {
  52315. front: {
  52316. height: math.unit(3, "meters"),
  52317. weight: math.unit(7000, "lb"),
  52318. name: "Front",
  52319. image: {
  52320. source: "./media/characters/core-t/front.svg",
  52321. extra: 5729/4941,
  52322. bottom: 1129/6858
  52323. }
  52324. },
  52325. },
  52326. [
  52327. {
  52328. name: "Big",
  52329. height: math.unit(3, "meters"),
  52330. default: true
  52331. },
  52332. ]
  52333. ))
  52334. characterMakers.push(() => makeCharacter(
  52335. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52336. {
  52337. normal: {
  52338. height: math.unit(6 + 6/12, "feet"),
  52339. weight: math.unit(275, "lb"),
  52340. name: "Front",
  52341. image: {
  52342. source: "./media/characters/cadbunny/normal.svg",
  52343. extra: 1129/947,
  52344. bottom: 93/1222
  52345. },
  52346. default: true,
  52347. form: "normal"
  52348. },
  52349. gigantamax: {
  52350. height: math.unit(26, "feet"),
  52351. weight: math.unit(16000, "lb"),
  52352. name: "Front",
  52353. image: {
  52354. source: "./media/characters/cadbunny/gigantamax.svg",
  52355. extra: 1133/944,
  52356. bottom: 90/1223
  52357. },
  52358. default: true,
  52359. form: "gigantamax"
  52360. },
  52361. },
  52362. [
  52363. {
  52364. name: "Normal",
  52365. height: math.unit(6 + 6/12, "feet"),
  52366. default: true,
  52367. form: "normal"
  52368. },
  52369. {
  52370. name: "Small",
  52371. height: math.unit(26, "feet"),
  52372. default: true,
  52373. form: "gigantamax"
  52374. },
  52375. {
  52376. name: "Large",
  52377. height: math.unit(78, "feet"),
  52378. form: "gigantamax"
  52379. },
  52380. ],
  52381. {
  52382. "normal": {
  52383. name: "Normal",
  52384. default: true
  52385. },
  52386. "gigantamax": {
  52387. name: "Gigantamax"
  52388. }
  52389. }
  52390. ))
  52391. characterMakers.push(() => makeCharacter(
  52392. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52393. {
  52394. anthroFront: {
  52395. height: math.unit(8, "feet"),
  52396. weight: math.unit(300, "lb"),
  52397. name: "Front",
  52398. image: {
  52399. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52400. extra: 1272/1176,
  52401. bottom: 53/1325
  52402. },
  52403. form: "anthro",
  52404. default: true
  52405. },
  52406. feralSide: {
  52407. height: math.unit(4, "feet"),
  52408. weight: math.unit(250, "lb"),
  52409. name: "Side",
  52410. image: {
  52411. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52412. extra: 731/621,
  52413. bottom: 0/731
  52414. },
  52415. form: "feral",
  52416. default: true
  52417. },
  52418. },
  52419. [
  52420. {
  52421. name: "Regular",
  52422. height: math.unit(8, "feet"),
  52423. form: "anthro"
  52424. },
  52425. {
  52426. name: "Macro",
  52427. height: math.unit(250, "feet"),
  52428. form: "anthro",
  52429. default: true
  52430. },
  52431. {
  52432. name: "Regular",
  52433. height: math.unit(4, "feet"),
  52434. form: "feral"
  52435. },
  52436. {
  52437. name: "Macro",
  52438. height: math.unit(125, "feet"),
  52439. form: "feral",
  52440. default: true
  52441. },
  52442. ],
  52443. {
  52444. "anthro": {
  52445. name: "Anthro",
  52446. default: true
  52447. },
  52448. "feral": {
  52449. name: "Feral",
  52450. },
  52451. }
  52452. ))
  52453. characterMakers.push(() => makeCharacter(
  52454. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52455. {
  52456. front: {
  52457. height: math.unit(11 + 10/12, "feet"),
  52458. weight: math.unit(1587, "kg"),
  52459. name: "Front",
  52460. image: {
  52461. source: "./media/characters/maple-javira-dragon/front.svg",
  52462. extra: 1136/744,
  52463. bottom: 73/1209
  52464. }
  52465. },
  52466. side: {
  52467. height: math.unit(11 + 10/12, "feet"),
  52468. weight: math.unit(1587, "kg"),
  52469. name: "Side",
  52470. image: {
  52471. source: "./media/characters/maple-javira-dragon/side.svg",
  52472. extra: 712/505,
  52473. bottom: 17/729
  52474. }
  52475. },
  52476. head: {
  52477. height: math.unit(8.05, "feet"),
  52478. name: "Head",
  52479. image: {
  52480. source: "./media/characters/maple-javira-dragon/head.svg",
  52481. extra: 1420/1344,
  52482. bottom: 0/1420
  52483. }
  52484. },
  52485. },
  52486. [
  52487. {
  52488. name: "Normal",
  52489. height: math.unit(11 + 10/12, "feet"),
  52490. default: true
  52491. },
  52492. ]
  52493. ))
  52494. characterMakers.push(() => makeCharacter(
  52495. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52496. {
  52497. front: {
  52498. height: math.unit(117, "cm"),
  52499. weight: math.unit(50, "kg"),
  52500. name: "Front",
  52501. image: {
  52502. source: "./media/characters/sonia-wyverntail/front.svg",
  52503. extra: 708/592,
  52504. bottom: 25/733
  52505. }
  52506. },
  52507. },
  52508. [
  52509. {
  52510. name: "Normal",
  52511. height: math.unit(117, "cm"),
  52512. default: true
  52513. },
  52514. ]
  52515. ))
  52516. characterMakers.push(() => makeCharacter(
  52517. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52518. {
  52519. front: {
  52520. height: math.unit(6 + 5/12, "feet"),
  52521. name: "Front",
  52522. image: {
  52523. source: "./media/characters/micah/front.svg",
  52524. extra: 1758/1546,
  52525. bottom: 214/1972
  52526. }
  52527. },
  52528. },
  52529. [
  52530. {
  52531. name: "Normal",
  52532. height: math.unit(6 + 5/12, "feet"),
  52533. default: true
  52534. },
  52535. ]
  52536. ))
  52537. characterMakers.push(() => makeCharacter(
  52538. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52539. {
  52540. front: {
  52541. height: math.unit(1.75, "meters"),
  52542. weight: math.unit(100, "kg"),
  52543. name: "Front",
  52544. image: {
  52545. source: "./media/characters/zarya/front.svg",
  52546. extra: 741/735,
  52547. bottom: 44/785
  52548. },
  52549. extraAttributes: {
  52550. "tailLength": {
  52551. name: "Tail Length",
  52552. power: 1,
  52553. type: "length",
  52554. base: math.unit(180, "cm")
  52555. },
  52556. "pawLength": {
  52557. name: "Paw Length",
  52558. power: 1,
  52559. type: "length",
  52560. base: math.unit(31, "cm")
  52561. },
  52562. }
  52563. },
  52564. side: {
  52565. height: math.unit(1.75, "meters"),
  52566. weight: math.unit(100, "kg"),
  52567. name: "Side",
  52568. image: {
  52569. source: "./media/characters/zarya/side.svg",
  52570. extra: 776/770,
  52571. bottom: 17/793
  52572. },
  52573. extraAttributes: {
  52574. "tailLength": {
  52575. name: "Tail Length",
  52576. power: 1,
  52577. type: "length",
  52578. base: math.unit(180, "cm")
  52579. },
  52580. "pawLength": {
  52581. name: "Paw Length",
  52582. power: 1,
  52583. type: "length",
  52584. base: math.unit(31, "cm")
  52585. },
  52586. }
  52587. },
  52588. back: {
  52589. height: math.unit(1.75, "meters"),
  52590. weight: math.unit(100, "kg"),
  52591. name: "Back",
  52592. image: {
  52593. source: "./media/characters/zarya/back.svg",
  52594. extra: 741/735,
  52595. bottom: 44/785
  52596. },
  52597. extraAttributes: {
  52598. "tailLength": {
  52599. name: "Tail Length",
  52600. power: 1,
  52601. type: "length",
  52602. base: math.unit(180, "cm")
  52603. },
  52604. "pawLength": {
  52605. name: "Paw Length",
  52606. power: 1,
  52607. type: "length",
  52608. base: math.unit(31, "cm")
  52609. },
  52610. }
  52611. },
  52612. frontNoTail: {
  52613. height: math.unit(1.75, "meters"),
  52614. weight: math.unit(100, "kg"),
  52615. name: "Front (No Tail)",
  52616. image: {
  52617. source: "./media/characters/zarya/front-no-tail.svg",
  52618. extra: 741/735,
  52619. bottom: 44/785
  52620. },
  52621. extraAttributes: {
  52622. "tailLength": {
  52623. name: "Tail Length",
  52624. power: 1,
  52625. type: "length",
  52626. base: math.unit(180, "cm")
  52627. },
  52628. "pawLength": {
  52629. name: "Paw Length",
  52630. power: 1,
  52631. type: "length",
  52632. base: math.unit(31, "cm")
  52633. },
  52634. }
  52635. },
  52636. dressed: {
  52637. height: math.unit(1.75, "meters"),
  52638. weight: math.unit(100, "kg"),
  52639. name: "Dressed",
  52640. image: {
  52641. source: "./media/characters/zarya/dressed.svg",
  52642. extra: 683/672,
  52643. bottom: 79/762
  52644. },
  52645. extraAttributes: {
  52646. "tailLength": {
  52647. name: "Tail Length",
  52648. power: 1,
  52649. type: "length",
  52650. base: math.unit(180, "cm")
  52651. },
  52652. "pawLength": {
  52653. name: "Paw Length",
  52654. power: 1,
  52655. type: "length",
  52656. base: math.unit(31, "cm")
  52657. },
  52658. }
  52659. },
  52660. },
  52661. [
  52662. {
  52663. name: "Micro",
  52664. height: math.unit(5, "cm")
  52665. },
  52666. {
  52667. name: "Normal",
  52668. height: math.unit(1.75, "meters"),
  52669. default: true
  52670. },
  52671. {
  52672. name: "Macro",
  52673. height: math.unit(122, "meters")
  52674. },
  52675. ]
  52676. ))
  52677. characterMakers.push(() => makeCharacter(
  52678. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52679. {
  52680. front: {
  52681. height: math.unit(7.5, "feet"),
  52682. name: "Front",
  52683. image: {
  52684. source: "./media/characters/sven-hatisson/front.svg",
  52685. extra: 917/857,
  52686. bottom: 42/959
  52687. }
  52688. },
  52689. back: {
  52690. height: math.unit(7.5, "feet"),
  52691. name: "Back",
  52692. image: {
  52693. source: "./media/characters/sven-hatisson/back.svg",
  52694. extra: 903/856,
  52695. bottom: 15/918
  52696. }
  52697. },
  52698. },
  52699. [
  52700. {
  52701. name: "Base Height",
  52702. height: math.unit(7.5, "feet")
  52703. },
  52704. {
  52705. name: "Usual Height",
  52706. height: math.unit(13.5, "feet"),
  52707. default: true
  52708. },
  52709. {
  52710. name: "Smaller Macro",
  52711. height: math.unit(85, "feet")
  52712. },
  52713. {
  52714. name: "Moderate Macro",
  52715. height: math.unit(320, "feet")
  52716. },
  52717. {
  52718. name: "Large Macro",
  52719. height: math.unit(1000, "feet")
  52720. },
  52721. {
  52722. name: "Largest Size",
  52723. height: math.unit(2, "miles")
  52724. },
  52725. ]
  52726. ))
  52727. characterMakers.push(() => makeCharacter(
  52728. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52729. {
  52730. side: {
  52731. height: math.unit(1.8, "meters"),
  52732. weight: math.unit(275, "kg"),
  52733. name: "Side",
  52734. image: {
  52735. source: "./media/characters/terra/side.svg",
  52736. extra: 1273/1147,
  52737. bottom: 0/1273
  52738. }
  52739. },
  52740. },
  52741. [
  52742. {
  52743. name: "Normal",
  52744. height: math.unit(16.2, "meters"),
  52745. default: true
  52746. },
  52747. ]
  52748. ))
  52749. characterMakers.push(() => makeCharacter(
  52750. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52751. {
  52752. borzoiFront: {
  52753. height: math.unit(6 + 9/12, "feet"),
  52754. name: "Front",
  52755. image: {
  52756. source: "./media/characters/rae/borzoi-front.svg",
  52757. extra: 1161/1098,
  52758. bottom: 31/1192
  52759. },
  52760. form: "borzoi",
  52761. default: true
  52762. },
  52763. werewolfFront: {
  52764. height: math.unit(8 + 7/12, "feet"),
  52765. name: "Front",
  52766. image: {
  52767. source: "./media/characters/rae/werewolf-front.svg",
  52768. extra: 1411/1334,
  52769. bottom: 127/1538
  52770. },
  52771. form: "werewolf",
  52772. default: true
  52773. },
  52774. },
  52775. [
  52776. {
  52777. name: "Normal",
  52778. height: math.unit(6 + 9/12, "feet"),
  52779. default: true,
  52780. form: "borzoi"
  52781. },
  52782. {
  52783. name: "Normal",
  52784. height: math.unit(8 + 7/12, "feet"),
  52785. default: true,
  52786. form: "werewolf"
  52787. },
  52788. ],
  52789. {
  52790. "borzoi": {
  52791. name: "Borzoi",
  52792. default: true
  52793. },
  52794. "werewolf": {
  52795. name: "Werewolf",
  52796. },
  52797. }
  52798. ))
  52799. characterMakers.push(() => makeCharacter(
  52800. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52801. {
  52802. front: {
  52803. height: math.unit(8 + 7/12, "feet"),
  52804. weight: math.unit(482, "lb"),
  52805. name: "Front",
  52806. image: {
  52807. source: "./media/characters/kit/front.svg",
  52808. extra: 1247/1103,
  52809. bottom: 41/1288
  52810. }
  52811. },
  52812. back: {
  52813. height: math.unit(8 + 7/12, "feet"),
  52814. weight: math.unit(482, "lb"),
  52815. name: "Back",
  52816. image: {
  52817. source: "./media/characters/kit/back.svg",
  52818. extra: 1252/1123,
  52819. bottom: 21/1273
  52820. }
  52821. },
  52822. paw: {
  52823. height: math.unit(1.46, "feet"),
  52824. name: "Paw",
  52825. image: {
  52826. source: "./media/characters/kit/paw.svg"
  52827. }
  52828. },
  52829. },
  52830. [
  52831. {
  52832. name: "Normal",
  52833. height: math.unit(2.61, "meters"),
  52834. default: true
  52835. },
  52836. {
  52837. name: "\"Tall\"",
  52838. height: math.unit(8.21, "meters")
  52839. },
  52840. {
  52841. name: "Tall",
  52842. height: math.unit(19.6, "meters")
  52843. },
  52844. {
  52845. name: "Very Tall",
  52846. height: math.unit(57.91, "meters")
  52847. },
  52848. {
  52849. name: "Semi-Macro",
  52850. height: math.unit(138.64, "meters")
  52851. },
  52852. {
  52853. name: "Macro",
  52854. height: math.unit(831.99, "meters")
  52855. },
  52856. {
  52857. name: "EX-Macro",
  52858. height: math.unit(96451121, "meters")
  52859. },
  52860. {
  52861. name: "S1-Omnipotent",
  52862. height: math.unit(4.42074e+9, "meters")
  52863. },
  52864. {
  52865. name: "S2-Omnipotent",
  52866. height: math.unit(9.42074e+17, "meters")
  52867. },
  52868. {
  52869. name: "Omnipotent",
  52870. height: math.unit(4.23112e+24, "meters")
  52871. },
  52872. {
  52873. name: "Hypergod",
  52874. height: math.unit(5.05176e+27, "meters")
  52875. },
  52876. {
  52877. name: "Hypergod-EX",
  52878. height: math.unit(9.45532e+49, "meters")
  52879. },
  52880. {
  52881. name: "Hypergod-SP",
  52882. height: math.unit(9.45532e+195, "meters")
  52883. },
  52884. ]
  52885. ))
  52886. characterMakers.push(() => makeCharacter(
  52887. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52888. {
  52889. side: {
  52890. height: math.unit(0.6, "meters"),
  52891. weight: math.unit(24, "kg"),
  52892. name: "Side",
  52893. image: {
  52894. source: "./media/characters/celeste/side.svg",
  52895. extra: 810/517,
  52896. bottom: 53/863
  52897. }
  52898. },
  52899. },
  52900. [
  52901. {
  52902. name: "Velociraptor",
  52903. height: math.unit(0.6, "meters"),
  52904. default: true
  52905. },
  52906. {
  52907. name: "Utahraptor",
  52908. height: math.unit(1.8, "meters")
  52909. },
  52910. {
  52911. name: "Gallimimus",
  52912. height: math.unit(4.0, "meters")
  52913. },
  52914. {
  52915. name: "Large",
  52916. height: math.unit(20, "meters")
  52917. },
  52918. {
  52919. name: "Planetary",
  52920. height: math.unit(50, "megameters")
  52921. },
  52922. {
  52923. name: "Stellar",
  52924. height: math.unit(1.5, "gigameters")
  52925. },
  52926. {
  52927. name: "Galactic",
  52928. height: math.unit(100, "exameters")
  52929. },
  52930. ]
  52931. ))
  52932. characterMakers.push(() => makeCharacter(
  52933. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52934. {
  52935. front: {
  52936. height: math.unit(6, "feet"),
  52937. weight: math.unit(210, "lb"),
  52938. name: "Front",
  52939. image: {
  52940. source: "./media/characters/glacia/front.svg",
  52941. extra: 958/901,
  52942. bottom: 45/1003
  52943. }
  52944. },
  52945. },
  52946. [
  52947. {
  52948. name: "Macro",
  52949. height: math.unit(1000, "meters"),
  52950. default: true
  52951. },
  52952. ]
  52953. ))
  52954. characterMakers.push(() => makeCharacter(
  52955. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52956. {
  52957. front: {
  52958. height: math.unit(4, "meters"),
  52959. name: "Front",
  52960. image: {
  52961. source: "./media/characters/giri/front.svg",
  52962. extra: 966/894,
  52963. bottom: 21/987
  52964. }
  52965. },
  52966. },
  52967. [
  52968. {
  52969. name: "Normal",
  52970. height: math.unit(4, "meters"),
  52971. default: true
  52972. },
  52973. ]
  52974. ))
  52975. characterMakers.push(() => makeCharacter(
  52976. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52977. {
  52978. back: {
  52979. height: math.unit(4, "feet"),
  52980. weight: math.unit(37, "lb"),
  52981. name: "Back",
  52982. image: {
  52983. source: "./media/characters/tin/back.svg",
  52984. extra: 845/780,
  52985. bottom: 28/873
  52986. }
  52987. },
  52988. },
  52989. [
  52990. {
  52991. name: "Normal",
  52992. height: math.unit(4, "feet"),
  52993. default: true
  52994. },
  52995. ]
  52996. ))
  52997. characterMakers.push(() => makeCharacter(
  52998. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52999. {
  53000. front: {
  53001. height: math.unit(25, "feet"),
  53002. name: "Front",
  53003. image: {
  53004. source: "./media/characters/cadenza-vivace/front.svg",
  53005. extra: 1842/1578,
  53006. bottom: 30/1872
  53007. }
  53008. },
  53009. },
  53010. [
  53011. {
  53012. name: "Macro",
  53013. height: math.unit(25, "feet"),
  53014. default: true
  53015. },
  53016. ]
  53017. ))
  53018. characterMakers.push(() => makeCharacter(
  53019. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53020. {
  53021. front: {
  53022. height: math.unit(10, "feet"),
  53023. weight: math.unit(625, "kg"),
  53024. name: "Front",
  53025. image: {
  53026. source: "./media/characters/zain/front.svg",
  53027. extra: 1682/1498,
  53028. bottom: 223/1905
  53029. }
  53030. },
  53031. back: {
  53032. height: math.unit(10, "feet"),
  53033. weight: math.unit(625, "kg"),
  53034. name: "Back",
  53035. image: {
  53036. source: "./media/characters/zain/back.svg",
  53037. extra: 1814/1657,
  53038. bottom: 152/1966
  53039. }
  53040. },
  53041. head: {
  53042. height: math.unit(10, "feet"),
  53043. weight: math.unit(625, "kg"),
  53044. name: "Head",
  53045. image: {
  53046. source: "./media/characters/zain/head.svg",
  53047. extra: 1059/762,
  53048. bottom: 0/1059
  53049. }
  53050. },
  53051. },
  53052. [
  53053. {
  53054. name: "Normal",
  53055. height: math.unit(10, "feet"),
  53056. default: true
  53057. },
  53058. ]
  53059. ))
  53060. characterMakers.push(() => makeCharacter(
  53061. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53062. {
  53063. front: {
  53064. height: math.unit(6 + 5/12, "feet"),
  53065. weight: math.unit(750, "lb"),
  53066. name: "Front",
  53067. image: {
  53068. source: "./media/characters/ruchex/front.svg",
  53069. extra: 877/820,
  53070. bottom: 17/894
  53071. },
  53072. extraAttributes: {
  53073. "width": {
  53074. name: "Width",
  53075. power: 1,
  53076. type: "length",
  53077. base: math.unit(4.757, "feet")
  53078. },
  53079. }
  53080. },
  53081. },
  53082. [
  53083. {
  53084. name: "Normal",
  53085. height: math.unit(6 + 5/12, "feet"),
  53086. default: true
  53087. },
  53088. ]
  53089. ))
  53090. characterMakers.push(() => makeCharacter(
  53091. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53092. {
  53093. dressedFront: {
  53094. height: math.unit(191, "cm"),
  53095. weight: math.unit(80, "kg"),
  53096. name: "Front",
  53097. image: {
  53098. source: "./media/characters/buster/dressed-front.svg",
  53099. extra: 1022/973,
  53100. bottom: 69/1091
  53101. }
  53102. },
  53103. dressedBack: {
  53104. height: math.unit(191, "cm"),
  53105. weight: math.unit(80, "kg"),
  53106. name: "Back",
  53107. image: {
  53108. source: "./media/characters/buster/dressed-back.svg",
  53109. extra: 1018/970,
  53110. bottom: 55/1073
  53111. }
  53112. },
  53113. nudeFront: {
  53114. height: math.unit(191, "cm"),
  53115. weight: math.unit(80, "kg"),
  53116. name: "Front (Nude)",
  53117. image: {
  53118. source: "./media/characters/buster/nude-front.svg",
  53119. extra: 1022/973,
  53120. bottom: 69/1091
  53121. }
  53122. },
  53123. nudeBack: {
  53124. height: math.unit(191, "cm"),
  53125. weight: math.unit(80, "kg"),
  53126. name: "Back (Nude)",
  53127. image: {
  53128. source: "./media/characters/buster/nude-back.svg",
  53129. extra: 1018/970,
  53130. bottom: 55/1073
  53131. }
  53132. },
  53133. dick: {
  53134. height: math.unit(2.59, "feet"),
  53135. name: "Dick",
  53136. image: {
  53137. source: "./media/characters/buster/dick.svg"
  53138. }
  53139. },
  53140. ass: {
  53141. height: math.unit(1.2, "feet"),
  53142. name: "Ass",
  53143. image: {
  53144. source: "./media/characters/buster/ass.svg"
  53145. }
  53146. },
  53147. },
  53148. [
  53149. {
  53150. name: "Normal",
  53151. height: math.unit(191, "cm"),
  53152. default: true
  53153. },
  53154. ]
  53155. ))
  53156. characterMakers.push(() => makeCharacter(
  53157. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53158. {
  53159. side: {
  53160. height: math.unit(8.1, "feet"),
  53161. weight: math.unit(3500, "lb"),
  53162. name: "Side",
  53163. image: {
  53164. source: "./media/characters/sonya/side.svg",
  53165. extra: 1730/1317,
  53166. bottom: 86/1816
  53167. }
  53168. },
  53169. },
  53170. [
  53171. {
  53172. name: "Normal",
  53173. height: math.unit(8.1, "feet"),
  53174. default: true
  53175. },
  53176. ]
  53177. ))
  53178. characterMakers.push(() => makeCharacter(
  53179. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53180. {
  53181. front: {
  53182. height: math.unit(6, "feet"),
  53183. weight: math.unit(150, "lb"),
  53184. name: "Front",
  53185. image: {
  53186. source: "./media/characters/cadence-andrysiak/front.svg",
  53187. extra: 1164/1121,
  53188. bottom: 60/1224
  53189. }
  53190. },
  53191. back: {
  53192. height: math.unit(6, "feet"),
  53193. weight: math.unit(150, "lb"),
  53194. name: "Back",
  53195. image: {
  53196. source: "./media/characters/cadence-andrysiak/back.svg",
  53197. extra: 1200/1165,
  53198. bottom: 9/1209
  53199. }
  53200. },
  53201. dressed: {
  53202. height: math.unit(6, "feet"),
  53203. weight: math.unit(150, "lb"),
  53204. name: "Dressed",
  53205. image: {
  53206. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53207. extra: 1164/1121,
  53208. bottom: 60/1224
  53209. }
  53210. },
  53211. },
  53212. [
  53213. {
  53214. name: "Micro",
  53215. height: math.unit(1, "mm")
  53216. },
  53217. {
  53218. name: "Normal",
  53219. height: math.unit(6, "feet"),
  53220. default: true
  53221. },
  53222. ]
  53223. ))
  53224. characterMakers.push(() => makeCharacter(
  53225. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53226. {
  53227. front: {
  53228. height: math.unit(60, "inches"),
  53229. weight: math.unit(16, "lb"),
  53230. preyCapacity: math.unit(80, "liters"),
  53231. name: "Front",
  53232. image: {
  53233. source: "./media/characters/penny-lynx/front.svg",
  53234. extra: 1959/1769,
  53235. bottom: 49/2008
  53236. }
  53237. },
  53238. },
  53239. [
  53240. {
  53241. name: "Nokia",
  53242. height: math.unit(2, "inches")
  53243. },
  53244. {
  53245. name: "Desktop",
  53246. height: math.unit(24, "inches")
  53247. },
  53248. {
  53249. name: "TV",
  53250. height: math.unit(60, "inches")
  53251. },
  53252. {
  53253. name: "Jumbotron",
  53254. height: math.unit(12, "feet")
  53255. },
  53256. {
  53257. name: "Billboard",
  53258. height: math.unit(48, "feet"),
  53259. default: true
  53260. },
  53261. {
  53262. name: "IMAX",
  53263. height: math.unit(96, "feet")
  53264. },
  53265. {
  53266. name: "SINGULARITY",
  53267. height: math.unit(864938, "miles")
  53268. },
  53269. ]
  53270. ))
  53271. characterMakers.push(() => makeCharacter(
  53272. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53273. {
  53274. front: {
  53275. height: math.unit(5 + 4/12, "feet"),
  53276. weight: math.unit(230, "lb"),
  53277. name: "Front",
  53278. image: {
  53279. source: "./media/characters/sukebe/front.svg",
  53280. extra: 2130/2038,
  53281. bottom: 90/2220
  53282. }
  53283. },
  53284. back: {
  53285. height: math.unit(3.48, "feet"),
  53286. weight: math.unit(230, "lb"),
  53287. name: "Back",
  53288. image: {
  53289. source: "./media/characters/sukebe/back.svg",
  53290. extra: 1670/1604,
  53291. bottom: 0/1670
  53292. }
  53293. },
  53294. },
  53295. [
  53296. {
  53297. name: "Normal",
  53298. height: math.unit(5 + 4/12, "feet"),
  53299. default: true
  53300. },
  53301. ]
  53302. ))
  53303. characterMakers.push(() => makeCharacter(
  53304. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53305. {
  53306. front: {
  53307. height: math.unit(6, "feet"),
  53308. name: "Front",
  53309. image: {
  53310. source: "./media/characters/nylla/front.svg",
  53311. extra: 1868/1699,
  53312. bottom: 97/1965
  53313. }
  53314. },
  53315. back: {
  53316. height: math.unit(6, "feet"),
  53317. name: "Back",
  53318. image: {
  53319. source: "./media/characters/nylla/back.svg",
  53320. extra: 1889/1712,
  53321. bottom: 93/1982
  53322. }
  53323. },
  53324. frontNsfw: {
  53325. height: math.unit(6, "feet"),
  53326. name: "Front (NSFW)",
  53327. image: {
  53328. source: "./media/characters/nylla/front-nsfw.svg",
  53329. extra: 1868/1699,
  53330. bottom: 97/1965
  53331. },
  53332. extraAttributes: {
  53333. "dickLength": {
  53334. name: "Dick Length",
  53335. power: 1,
  53336. type: "length",
  53337. base: math.unit(1.4, "feet")
  53338. },
  53339. "cumVolume": {
  53340. name: "Cum Volume",
  53341. power: 3,
  53342. type: "volume",
  53343. base: math.unit(100, "mL")
  53344. },
  53345. }
  53346. },
  53347. backNsfw: {
  53348. height: math.unit(6, "feet"),
  53349. name: "Back (NSFW)",
  53350. image: {
  53351. source: "./media/characters/nylla/back-nsfw.svg",
  53352. extra: 1889/1712,
  53353. bottom: 93/1982
  53354. }
  53355. },
  53356. maw: {
  53357. height: math.unit(2.10, "feet"),
  53358. name: "Maw",
  53359. image: {
  53360. source: "./media/characters/nylla/maw.svg"
  53361. }
  53362. },
  53363. paws: {
  53364. height: math.unit(2.06, "feet"),
  53365. name: "Paws",
  53366. image: {
  53367. source: "./media/characters/nylla/paws.svg"
  53368. }
  53369. },
  53370. muzzle: {
  53371. height: math.unit(0.61, "feet"),
  53372. name: "Muzzle",
  53373. image: {
  53374. source: "./media/characters/nylla/muzzle.svg"
  53375. }
  53376. },
  53377. sheath: {
  53378. height: math.unit(1.305, "feet"),
  53379. name: "Sheath",
  53380. image: {
  53381. source: "./media/characters/nylla/sheath.svg"
  53382. }
  53383. },
  53384. },
  53385. [
  53386. {
  53387. name: "Micro",
  53388. height: math.unit(7.5, "inches")
  53389. },
  53390. {
  53391. name: "Normal",
  53392. height: math.unit(7, "feet"),
  53393. default: true
  53394. },
  53395. {
  53396. name: "Macro",
  53397. height: math.unit(60, "feet")
  53398. },
  53399. {
  53400. name: "Mega",
  53401. height: math.unit(200, "feet")
  53402. },
  53403. ]
  53404. ))
  53405. characterMakers.push(() => makeCharacter(
  53406. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53407. {
  53408. front: {
  53409. height: math.unit(10, "feet"),
  53410. weight: math.unit(2300, "lb"),
  53411. name: "Front",
  53412. image: {
  53413. source: "./media/characters/hunt3r/front.svg",
  53414. extra: 1909/1742,
  53415. bottom: 46/1955
  53416. }
  53417. },
  53418. },
  53419. [
  53420. {
  53421. name: "Normal",
  53422. height: math.unit(10, "feet"),
  53423. default: true
  53424. },
  53425. ]
  53426. ))
  53427. characterMakers.push(() => makeCharacter(
  53428. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53429. {
  53430. dressed: {
  53431. height: math.unit(11, "feet"),
  53432. weight: math.unit(18500, "lb"),
  53433. preyCapacity: math.unit(9, "people"),
  53434. name: "Dressed",
  53435. image: {
  53436. source: "./media/characters/cylphis/dressed.svg",
  53437. extra: 1028/1003,
  53438. bottom: 75/1103
  53439. },
  53440. },
  53441. undressed: {
  53442. height: math.unit(11, "feet"),
  53443. weight: math.unit(18500, "lb"),
  53444. preyCapacity: math.unit(9, "people"),
  53445. name: "Undressed",
  53446. image: {
  53447. source: "./media/characters/cylphis/undressed.svg",
  53448. extra: 1028/1003,
  53449. bottom: 75/1103
  53450. }
  53451. },
  53452. full: {
  53453. height: math.unit(11, "feet"),
  53454. weight: math.unit(18500 + 150*9, "lb"),
  53455. preyCapacity: math.unit(9, "people"),
  53456. name: "Full",
  53457. image: {
  53458. source: "./media/characters/cylphis/full.svg",
  53459. extra: 1028/1003,
  53460. bottom: 75/1103
  53461. }
  53462. },
  53463. },
  53464. [
  53465. {
  53466. name: "Small",
  53467. height: math.unit(8, "feet")
  53468. },
  53469. {
  53470. name: "Normal",
  53471. height: math.unit(11, "feet"),
  53472. default: true
  53473. },
  53474. ]
  53475. ))
  53476. characterMakers.push(() => makeCharacter(
  53477. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53478. {
  53479. front: {
  53480. height: math.unit(2 + 7/12, "feet"),
  53481. name: "Front",
  53482. image: {
  53483. source: "./media/characters/orishan/front.svg",
  53484. extra: 1058/1023,
  53485. bottom: 23/1081
  53486. }
  53487. },
  53488. back: {
  53489. height: math.unit(2 + 7/12, "feet"),
  53490. name: "Back",
  53491. image: {
  53492. source: "./media/characters/orishan/back.svg",
  53493. extra: 1058/1023,
  53494. bottom: 23/1081
  53495. }
  53496. },
  53497. },
  53498. [
  53499. {
  53500. name: "Micro",
  53501. height: math.unit(2, "cm")
  53502. },
  53503. {
  53504. name: "Normal",
  53505. height: math.unit(2 + 7/12, "feet"),
  53506. default: true
  53507. },
  53508. ]
  53509. ))
  53510. characterMakers.push(() => makeCharacter(
  53511. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53512. {
  53513. front: {
  53514. height: math.unit(3, "meters"),
  53515. weight: math.unit(508, "kg"),
  53516. name: "Front",
  53517. image: {
  53518. source: "./media/characters/seranis/front.svg",
  53519. extra: 1478/1454,
  53520. bottom: 41/1519
  53521. }
  53522. },
  53523. },
  53524. [
  53525. {
  53526. name: "Normal",
  53527. height: math.unit(3, "meters"),
  53528. default: true
  53529. },
  53530. {
  53531. name: "Macro",
  53532. height: math.unit(108, "meters")
  53533. },
  53534. {
  53535. name: "Megamacro",
  53536. height: math.unit(1250, "meters")
  53537. },
  53538. ]
  53539. ))
  53540. characterMakers.push(() => makeCharacter(
  53541. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53542. {
  53543. undressed: {
  53544. height: math.unit(5 + 3/12, "feet"),
  53545. name: "Undressed",
  53546. image: {
  53547. source: "./media/characters/ankou/undressed.svg",
  53548. extra: 1301/1213,
  53549. bottom: 87/1388
  53550. }
  53551. },
  53552. dressed: {
  53553. height: math.unit(5 + 3/12, "feet"),
  53554. name: "Dressed",
  53555. image: {
  53556. source: "./media/characters/ankou/dressed.svg",
  53557. extra: 1301/1213,
  53558. bottom: 87/1388
  53559. }
  53560. },
  53561. head: {
  53562. height: math.unit(1.61, "feet"),
  53563. name: "Head",
  53564. image: {
  53565. source: "./media/characters/ankou/head.svg"
  53566. }
  53567. },
  53568. },
  53569. [
  53570. {
  53571. name: "Normal",
  53572. height: math.unit(5 + 3/12, "feet"),
  53573. default: true
  53574. },
  53575. ]
  53576. ))
  53577. characterMakers.push(() => makeCharacter(
  53578. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53579. {
  53580. side: {
  53581. height: math.unit(6 + 3/12, "feet"),
  53582. weight: math.unit(200, "kg"),
  53583. name: "Side",
  53584. image: {
  53585. source: "./media/characters/juniper-skunktaur/side.svg",
  53586. extra: 1574/1229,
  53587. bottom: 38/1612
  53588. }
  53589. },
  53590. front: {
  53591. height: math.unit(6 + 3/12, "feet"),
  53592. weight: math.unit(200, "kg"),
  53593. name: "Front",
  53594. image: {
  53595. source: "./media/characters/juniper-skunktaur/front.svg",
  53596. extra: 1337/1278,
  53597. bottom: 22/1359
  53598. }
  53599. },
  53600. back: {
  53601. height: math.unit(6 + 3/12, "feet"),
  53602. weight: math.unit(200, "kg"),
  53603. name: "Back",
  53604. image: {
  53605. source: "./media/characters/juniper-skunktaur/back.svg",
  53606. extra: 1618/1273,
  53607. bottom: 13/1631
  53608. }
  53609. },
  53610. top: {
  53611. height: math.unit(2.62, "feet"),
  53612. weight: math.unit(200, "kg"),
  53613. name: "Top",
  53614. image: {
  53615. source: "./media/characters/juniper-skunktaur/top.svg"
  53616. }
  53617. },
  53618. },
  53619. [
  53620. {
  53621. name: "Normal",
  53622. height: math.unit(6 + 3/12, "feet"),
  53623. default: true
  53624. },
  53625. ]
  53626. ))
  53627. characterMakers.push(() => makeCharacter(
  53628. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53629. {
  53630. front: {
  53631. height: math.unit(20.5, "feet"),
  53632. name: "Front",
  53633. image: {
  53634. source: "./media/characters/rei/front.svg",
  53635. extra: 1349/1195,
  53636. bottom: 31/1380
  53637. }
  53638. },
  53639. back: {
  53640. height: math.unit(20.5, "feet"),
  53641. name: "Back",
  53642. image: {
  53643. source: "./media/characters/rei/back.svg",
  53644. extra: 1358/1204,
  53645. bottom: 22/1380
  53646. }
  53647. },
  53648. pawsDigi: {
  53649. height: math.unit(3.45, "feet"),
  53650. name: "Paws (Digi)",
  53651. image: {
  53652. source: "./media/characters/rei/paws-digi.svg"
  53653. }
  53654. },
  53655. pawsPlanti: {
  53656. height: math.unit(3.45, "feet"),
  53657. name: "Paws (Planti)",
  53658. image: {
  53659. source: "./media/characters/rei/paws-planti.svg"
  53660. }
  53661. },
  53662. },
  53663. [
  53664. {
  53665. name: "Normal",
  53666. height: math.unit(20.5, "feet"),
  53667. default: true
  53668. },
  53669. ]
  53670. ))
  53671. characterMakers.push(() => makeCharacter(
  53672. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53673. {
  53674. front: {
  53675. height: math.unit(5 + 11/12, "feet"),
  53676. name: "Front",
  53677. image: {
  53678. source: "./media/characters/carina/front.svg",
  53679. extra: 1720/1449,
  53680. bottom: 14/1734
  53681. }
  53682. },
  53683. back: {
  53684. height: math.unit(5 + 11/12, "feet"),
  53685. name: "Back",
  53686. image: {
  53687. source: "./media/characters/carina/back.svg",
  53688. extra: 1493/1445,
  53689. bottom: 17/1510
  53690. }
  53691. },
  53692. paw: {
  53693. height: math.unit(0.92, "feet"),
  53694. name: "Paw",
  53695. image: {
  53696. source: "./media/characters/carina/paw.svg"
  53697. }
  53698. },
  53699. },
  53700. [
  53701. {
  53702. name: "Normal",
  53703. height: math.unit(5 + 11/12, "feet"),
  53704. default: true
  53705. },
  53706. ]
  53707. ))
  53708. characterMakers.push(() => makeCharacter(
  53709. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53710. {
  53711. normal_front: {
  53712. height: math.unit(4.88, "meters"),
  53713. name: "Front",
  53714. image: {
  53715. source: "./media/characters/maya/normal-front.svg",
  53716. extra: 1222/1145,
  53717. bottom: 57/1279
  53718. },
  53719. form: "normal",
  53720. default: true
  53721. },
  53722. monstrous_front: {
  53723. height: math.unit(10, "meters"),
  53724. name: "Front",
  53725. image: {
  53726. source: "./media/characters/maya/monstrous-front.svg",
  53727. extra: 1523/1109,
  53728. bottom: 113/1636
  53729. },
  53730. form: "monstrous",
  53731. extraAttributes: {
  53732. "swallowSize": {
  53733. name: "Tailmaw Bite Size",
  53734. power: 3,
  53735. type: "volume",
  53736. base: math.unit(43000, "liters")
  53737. },
  53738. }
  53739. },
  53740. taur_front: {
  53741. height: math.unit(10, "meters"),
  53742. name: "Front",
  53743. image: {
  53744. source: "./media/characters/maya/taur-front.svg",
  53745. extra: 743/506,
  53746. bottom: 101/844
  53747. },
  53748. form: "taur",
  53749. },
  53750. },
  53751. [
  53752. {
  53753. name: "Normal",
  53754. height: math.unit(4.88, "meters"),
  53755. default: true,
  53756. form: "normal"
  53757. },
  53758. {
  53759. name: "Macro",
  53760. height: math.unit(38.1, "meters"),
  53761. form: "normal"
  53762. },
  53763. {
  53764. name: "Macro+",
  53765. height: math.unit(152.4, "meters"),
  53766. form: "normal"
  53767. },
  53768. {
  53769. name: "Macro++",
  53770. height: math.unit(16.09, "km"),
  53771. form: "normal"
  53772. },
  53773. {
  53774. name: "Mega-macro",
  53775. height: math.unit(700, "megameters"),
  53776. form: "normal"
  53777. },
  53778. {
  53779. name: "Satiated",
  53780. height: math.unit(10, "meters"),
  53781. default: true,
  53782. form: "monstrous"
  53783. },
  53784. {
  53785. name: "Hungry",
  53786. height: math.unit(75, "meters"),
  53787. form: "monstrous"
  53788. },
  53789. {
  53790. name: "Ravenous",
  53791. height: math.unit(500, "meters"),
  53792. form: "monstrous"
  53793. },
  53794. {
  53795. name: "\"Normal\"",
  53796. height: math.unit(10, "meters"),
  53797. form: "taur"
  53798. },
  53799. {
  53800. name: "Macro",
  53801. height: math.unit(50, "meters"),
  53802. form: "taur"
  53803. },
  53804. ],
  53805. {
  53806. "normal": {
  53807. name: "Normal",
  53808. default: true
  53809. },
  53810. "monstrous": {
  53811. name: "Monstrous",
  53812. },
  53813. "taur": {
  53814. name: "Taur",
  53815. },
  53816. }
  53817. ))
  53818. characterMakers.push(() => makeCharacter(
  53819. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53820. {
  53821. front: {
  53822. height: math.unit(6 + 2/12, "feet"),
  53823. weight: math.unit(500, "lb"),
  53824. preyCapacity: math.unit(4, "people"),
  53825. name: "Front",
  53826. image: {
  53827. source: "./media/characters/yepir/front.svg"
  53828. }
  53829. },
  53830. side: {
  53831. height: math.unit(6 + 2/12, "feet"),
  53832. weight: math.unit(500, "lb"),
  53833. preyCapacity: math.unit(4, "people"),
  53834. name: "Side",
  53835. image: {
  53836. source: "./media/characters/yepir/side.svg"
  53837. }
  53838. },
  53839. paw: {
  53840. height: math.unit(1.05, "feet"),
  53841. name: "Paw",
  53842. image: {
  53843. source: "./media/characters/yepir/paw.svg"
  53844. }
  53845. },
  53846. },
  53847. [
  53848. {
  53849. name: "Normal",
  53850. height: math.unit(6 + 2/12, "feet"),
  53851. default: true
  53852. },
  53853. ]
  53854. ))
  53855. characterMakers.push(() => makeCharacter(
  53856. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53857. {
  53858. front: {
  53859. height: math.unit(5 + 4/12, "feet"),
  53860. name: "Front",
  53861. image: {
  53862. source: "./media/characters/russec/front.svg",
  53863. extra: 1926/1626,
  53864. bottom: 72/1998
  53865. }
  53866. },
  53867. back: {
  53868. height: math.unit(5 + 4/12, "feet"),
  53869. name: "Back",
  53870. image: {
  53871. source: "./media/characters/russec/back.svg",
  53872. extra: 1910/1591,
  53873. bottom: 48/1958
  53874. }
  53875. },
  53876. },
  53877. [
  53878. {
  53879. name: "Small",
  53880. height: math.unit(5 + 4/12, "feet")
  53881. },
  53882. {
  53883. name: "Normal",
  53884. height: math.unit(72, "feet"),
  53885. default: true
  53886. },
  53887. ]
  53888. ))
  53889. characterMakers.push(() => makeCharacter(
  53890. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53891. {
  53892. side: {
  53893. height: math.unit(12, "feet"),
  53894. name: "Side",
  53895. image: {
  53896. source: "./media/characters/cianus/side.svg",
  53897. extra: 808/526,
  53898. bottom: 61/869
  53899. }
  53900. },
  53901. },
  53902. [
  53903. {
  53904. name: "Normal",
  53905. height: math.unit(12, "feet"),
  53906. default: true
  53907. },
  53908. ]
  53909. ))
  53910. characterMakers.push(() => makeCharacter(
  53911. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53912. {
  53913. front: {
  53914. height: math.unit(9 + 6/12, "feet"),
  53915. weight: math.unit(300, "lb"),
  53916. name: "Front",
  53917. image: {
  53918. source: "./media/characters/ahab/front.svg",
  53919. extra: 1897/1868,
  53920. bottom: 121/2018
  53921. }
  53922. },
  53923. frontNsfw: {
  53924. height: math.unit(9 + 6/12, "feet"),
  53925. weight: math.unit(300, "lb"),
  53926. name: "Front-nsfw",
  53927. image: {
  53928. source: "./media/characters/ahab/front-nsfw.svg",
  53929. extra: 1897/1868,
  53930. bottom: 121/2018
  53931. }
  53932. },
  53933. },
  53934. [
  53935. {
  53936. name: "Normal",
  53937. height: math.unit(9 + 6/12, "feet")
  53938. },
  53939. {
  53940. name: "Macro",
  53941. height: math.unit(657, "feet"),
  53942. default: true
  53943. },
  53944. ]
  53945. ))
  53946. characterMakers.push(() => makeCharacter(
  53947. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53948. {
  53949. front: {
  53950. height: math.unit(2.69, "meters"),
  53951. weight: math.unit(132, "kg"),
  53952. name: "Front",
  53953. image: {
  53954. source: "./media/characters/aarkus/front.svg",
  53955. extra: 1400/1231,
  53956. bottom: 34/1434
  53957. }
  53958. },
  53959. back: {
  53960. height: math.unit(2.69, "meters"),
  53961. weight: math.unit(132, "kg"),
  53962. name: "Back",
  53963. image: {
  53964. source: "./media/characters/aarkus/back.svg",
  53965. extra: 1381/1218,
  53966. bottom: 30/1411
  53967. }
  53968. },
  53969. frontNsfw: {
  53970. height: math.unit(2.69, "meters"),
  53971. weight: math.unit(132, "kg"),
  53972. name: "Front (NSFW)",
  53973. image: {
  53974. source: "./media/characters/aarkus/front-nsfw.svg",
  53975. extra: 1400/1231,
  53976. bottom: 34/1434
  53977. }
  53978. },
  53979. foot: {
  53980. height: math.unit(1.45, "feet"),
  53981. name: "Foot",
  53982. image: {
  53983. source: "./media/characters/aarkus/foot.svg"
  53984. }
  53985. },
  53986. head: {
  53987. height: math.unit(2.85, "feet"),
  53988. name: "Head",
  53989. image: {
  53990. source: "./media/characters/aarkus/head.svg"
  53991. }
  53992. },
  53993. headAlt: {
  53994. height: math.unit(3.07, "feet"),
  53995. name: "Head (Alt)",
  53996. image: {
  53997. source: "./media/characters/aarkus/head-alt.svg"
  53998. }
  53999. },
  54000. mouth: {
  54001. height: math.unit(1.25, "feet"),
  54002. name: "Mouth",
  54003. image: {
  54004. source: "./media/characters/aarkus/mouth.svg"
  54005. }
  54006. },
  54007. dick: {
  54008. height: math.unit(1.77, "feet"),
  54009. name: "Dick",
  54010. image: {
  54011. source: "./media/characters/aarkus/dick.svg"
  54012. }
  54013. },
  54014. },
  54015. [
  54016. {
  54017. name: "Normal",
  54018. height: math.unit(2.69, "meters"),
  54019. default: true
  54020. },
  54021. {
  54022. name: "Macro",
  54023. height: math.unit(269, "meters")
  54024. },
  54025. {
  54026. name: "Macro+",
  54027. height: math.unit(672.5, "meters")
  54028. },
  54029. {
  54030. name: "Megamacro",
  54031. height: math.unit(2.017, "km")
  54032. },
  54033. ]
  54034. ))
  54035. characterMakers.push(() => makeCharacter(
  54036. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54037. {
  54038. front: {
  54039. height: math.unit(23.47, "cm"),
  54040. weight: math.unit(600, "grams"),
  54041. name: "Front",
  54042. image: {
  54043. source: "./media/characters/diode/front.svg",
  54044. extra: 1778/1396,
  54045. bottom: 95/1873
  54046. }
  54047. },
  54048. side: {
  54049. height: math.unit(23.47, "cm"),
  54050. weight: math.unit(600, "grams"),
  54051. name: "Side",
  54052. image: {
  54053. source: "./media/characters/diode/side.svg",
  54054. extra: 1831/1404,
  54055. bottom: 86/1917
  54056. }
  54057. },
  54058. wings: {
  54059. height: math.unit(0.683, "feet"),
  54060. name: "Wings",
  54061. image: {
  54062. source: "./media/characters/diode/wings.svg"
  54063. }
  54064. },
  54065. },
  54066. [
  54067. {
  54068. name: "Normal",
  54069. height: math.unit(23.47, "cm"),
  54070. default: true
  54071. },
  54072. ]
  54073. ))
  54074. characterMakers.push(() => makeCharacter(
  54075. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54076. {
  54077. front: {
  54078. height: math.unit(6 + 3/12, "feet"),
  54079. weight: math.unit(250, "lb"),
  54080. name: "Front",
  54081. image: {
  54082. source: "./media/characters/reika/front.svg",
  54083. extra: 1120/1078,
  54084. bottom: 86/1206
  54085. }
  54086. },
  54087. },
  54088. [
  54089. {
  54090. name: "Normal",
  54091. height: math.unit(6 + 3/12, "feet"),
  54092. default: true
  54093. },
  54094. ]
  54095. ))
  54096. characterMakers.push(() => makeCharacter(
  54097. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54098. {
  54099. front: {
  54100. height: math.unit(16 + 8/12, "feet"),
  54101. weight: math.unit(9000, "lb"),
  54102. name: "Front",
  54103. image: {
  54104. source: "./media/characters/lokuto-takama/front.svg",
  54105. extra: 1774/1632,
  54106. bottom: 147/1921
  54107. },
  54108. extraAttributes: {
  54109. "bustWidth": {
  54110. name: "Bust Width",
  54111. power: 1,
  54112. type: "length",
  54113. base: math.unit(2.4, "meters")
  54114. },
  54115. "breastWeight": {
  54116. name: "Breast Weight",
  54117. power: 3,
  54118. type: "mass",
  54119. base: math.unit(1000, "kg")
  54120. },
  54121. }
  54122. },
  54123. },
  54124. [
  54125. {
  54126. name: "Normal",
  54127. height: math.unit(16 + 8/12, "feet"),
  54128. default: true
  54129. },
  54130. ]
  54131. ))
  54132. characterMakers.push(() => makeCharacter(
  54133. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54134. {
  54135. front: {
  54136. height: math.unit(10, "cm"),
  54137. weight: math.unit(850, "grams"),
  54138. name: "Front",
  54139. image: {
  54140. source: "./media/characters/owak-bone/front.svg",
  54141. extra: 1965/1801,
  54142. bottom: 31/1996
  54143. }
  54144. },
  54145. },
  54146. [
  54147. {
  54148. name: "Normal",
  54149. height: math.unit(10, "cm"),
  54150. default: true
  54151. },
  54152. ]
  54153. ))
  54154. characterMakers.push(() => makeCharacter(
  54155. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54156. {
  54157. front: {
  54158. height: math.unit(2 + 6/12, "feet"),
  54159. weight: math.unit(9, "lb"),
  54160. name: "Front",
  54161. image: {
  54162. source: "./media/characters/muffin/front.svg",
  54163. extra: 1220/1195,
  54164. bottom: 84/1304
  54165. }
  54166. },
  54167. },
  54168. [
  54169. {
  54170. name: "Normal",
  54171. height: math.unit(2 + 6/12, "feet"),
  54172. default: true
  54173. },
  54174. ]
  54175. ))
  54176. characterMakers.push(() => makeCharacter(
  54177. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54178. {
  54179. front: {
  54180. height: math.unit(7, "feet"),
  54181. name: "Front",
  54182. image: {
  54183. source: "./media/characters/chimera/front.svg",
  54184. extra: 1752/1614,
  54185. bottom: 68/1820
  54186. }
  54187. },
  54188. },
  54189. [
  54190. {
  54191. name: "Normal",
  54192. height: math.unit(7, "feet")
  54193. },
  54194. {
  54195. name: "Gigamacro",
  54196. height: math.unit(2.9, "gigameters"),
  54197. default: true
  54198. },
  54199. {
  54200. name: "Universal",
  54201. height: math.unit(1.56e26, "yottameters")
  54202. },
  54203. ]
  54204. ))
  54205. characterMakers.push(() => makeCharacter(
  54206. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54207. {
  54208. front: {
  54209. height: math.unit(3, "feet"),
  54210. weight: math.unit(20, "lb"),
  54211. name: "Front",
  54212. image: {
  54213. source: "./media/characters/kit-fennec-fox/front.svg",
  54214. extra: 1027/932,
  54215. bottom: 16/1043
  54216. }
  54217. },
  54218. back: {
  54219. height: math.unit(3, "feet"),
  54220. weight: math.unit(20, "lb"),
  54221. name: "Back",
  54222. image: {
  54223. source: "./media/characters/kit-fennec-fox/back.svg",
  54224. extra: 1027/932,
  54225. bottom: 16/1043
  54226. }
  54227. },
  54228. },
  54229. [
  54230. {
  54231. name: "Normal",
  54232. height: math.unit(3, "feet"),
  54233. default: true
  54234. },
  54235. ]
  54236. ))
  54237. characterMakers.push(() => makeCharacter(
  54238. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54239. {
  54240. front: {
  54241. height: math.unit(167, "cm"),
  54242. name: "Front",
  54243. image: {
  54244. source: "./media/characters/blue-otter/front.svg",
  54245. extra: 1951/1920,
  54246. bottom: 31/1982
  54247. }
  54248. },
  54249. },
  54250. [
  54251. {
  54252. name: "Otter-Sized",
  54253. height: math.unit(100, "cm")
  54254. },
  54255. {
  54256. name: "Normal",
  54257. height: math.unit(167, "cm"),
  54258. default: true
  54259. },
  54260. ]
  54261. ))
  54262. characterMakers.push(() => makeCharacter(
  54263. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54264. {
  54265. front: {
  54266. height: math.unit(4 + 4/12, "feet"),
  54267. name: "Front",
  54268. image: {
  54269. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54270. extra: 1072/1067,
  54271. bottom: 117/1189
  54272. }
  54273. },
  54274. back: {
  54275. height: math.unit(4 + 4/12, "feet"),
  54276. name: "Back",
  54277. image: {
  54278. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54279. extra: 1135/1129,
  54280. bottom: 57/1192
  54281. }
  54282. },
  54283. head: {
  54284. height: math.unit(1.77, "feet"),
  54285. name: "Head",
  54286. image: {
  54287. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54288. }
  54289. },
  54290. },
  54291. [
  54292. {
  54293. name: "Normal",
  54294. height: math.unit(4 + 4/12, "feet"),
  54295. default: true
  54296. },
  54297. ]
  54298. ))
  54299. characterMakers.push(() => makeCharacter(
  54300. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54301. {
  54302. front: {
  54303. height: math.unit(2, "inches"),
  54304. name: "Front",
  54305. image: {
  54306. source: "./media/characters/carley-hartford/front.svg",
  54307. extra: 1035/988,
  54308. bottom: 23/1058
  54309. }
  54310. },
  54311. back: {
  54312. height: math.unit(2, "inches"),
  54313. name: "Back",
  54314. image: {
  54315. source: "./media/characters/carley-hartford/back.svg",
  54316. extra: 1035/988,
  54317. bottom: 23/1058
  54318. }
  54319. },
  54320. dressed: {
  54321. height: math.unit(2, "inches"),
  54322. name: "Dressed",
  54323. image: {
  54324. source: "./media/characters/carley-hartford/dressed.svg",
  54325. extra: 651/620,
  54326. bottom: 0/651
  54327. }
  54328. },
  54329. },
  54330. [
  54331. {
  54332. name: "Micro",
  54333. height: math.unit(2, "inches"),
  54334. default: true
  54335. },
  54336. {
  54337. name: "Macro",
  54338. height: math.unit(6 + 3/12, "feet")
  54339. },
  54340. ]
  54341. ))
  54342. characterMakers.push(() => makeCharacter(
  54343. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54344. {
  54345. front: {
  54346. height: math.unit(2 + 3/12, "feet"),
  54347. weight: math.unit(15 + 7/16, "lb"),
  54348. name: "Front",
  54349. image: {
  54350. source: "./media/characters/duke/front.svg",
  54351. extra: 910/815,
  54352. bottom: 30/940
  54353. }
  54354. },
  54355. },
  54356. [
  54357. {
  54358. name: "Normal",
  54359. height: math.unit(2 + 3/12, "feet"),
  54360. default: true
  54361. },
  54362. ]
  54363. ))
  54364. characterMakers.push(() => makeCharacter(
  54365. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54366. {
  54367. front: {
  54368. height: math.unit(5 + 4/12, "feet"),
  54369. weight: math.unit(156, "lb"),
  54370. name: "Front",
  54371. image: {
  54372. source: "./media/characters/dein/front.svg",
  54373. extra: 855/815,
  54374. bottom: 48/903
  54375. }
  54376. },
  54377. side: {
  54378. height: math.unit(5 + 4/12, "feet"),
  54379. weight: math.unit(156, "lb"),
  54380. name: "side",
  54381. image: {
  54382. source: "./media/characters/dein/side.svg",
  54383. extra: 846/803,
  54384. bottom: 25/871
  54385. }
  54386. },
  54387. maw: {
  54388. height: math.unit(1.45, "feet"),
  54389. name: "Maw",
  54390. image: {
  54391. source: "./media/characters/dein/maw.svg"
  54392. }
  54393. },
  54394. },
  54395. [
  54396. {
  54397. name: "Ferret Sized",
  54398. height: math.unit(2 + 5/12, "feet")
  54399. },
  54400. {
  54401. name: "Normal",
  54402. height: math.unit(5 + 4/12, "feet"),
  54403. default: true
  54404. },
  54405. ]
  54406. ))
  54407. characterMakers.push(() => makeCharacter(
  54408. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54409. {
  54410. front: {
  54411. height: math.unit(84 + 8/12, "feet"),
  54412. weight: math.unit(942180, "lb"),
  54413. name: "Front",
  54414. image: {
  54415. source: "./media/characters/daurine-arima/front.svg",
  54416. extra: 1989/1782,
  54417. bottom: 37/2026
  54418. }
  54419. },
  54420. side: {
  54421. height: math.unit(84 + 8/12, "feet"),
  54422. weight: math.unit(942180, "lb"),
  54423. name: "Side",
  54424. image: {
  54425. source: "./media/characters/daurine-arima/side.svg",
  54426. extra: 1997/1790,
  54427. bottom: 21/2018
  54428. }
  54429. },
  54430. back: {
  54431. height: math.unit(84 + 8/12, "feet"),
  54432. weight: math.unit(942180, "lb"),
  54433. name: "Back",
  54434. image: {
  54435. source: "./media/characters/daurine-arima/back.svg",
  54436. extra: 1992/1800,
  54437. bottom: 12/2004
  54438. }
  54439. },
  54440. head: {
  54441. height: math.unit(15.5, "feet"),
  54442. name: "Head",
  54443. image: {
  54444. source: "./media/characters/daurine-arima/head.svg"
  54445. }
  54446. },
  54447. headAlt: {
  54448. height: math.unit(19.19, "feet"),
  54449. name: "Head (Alt)",
  54450. image: {
  54451. source: "./media/characters/daurine-arima/head-alt.svg"
  54452. }
  54453. },
  54454. },
  54455. [
  54456. {
  54457. name: "Minimum height",
  54458. height: math.unit(8 + 10/12, "feet")
  54459. },
  54460. {
  54461. name: "Comfort height",
  54462. height: math.unit(19 + 6 /12, "feet")
  54463. },
  54464. {
  54465. name: "\"Normal\" height",
  54466. height: math.unit(28 + 10/12, "feet")
  54467. },
  54468. {
  54469. name: "Base height",
  54470. height: math.unit(84 + 8/12, "feet"),
  54471. default: true
  54472. },
  54473. {
  54474. name: "Mini-macro",
  54475. height: math.unit(2360, "feet")
  54476. },
  54477. {
  54478. name: "Macro",
  54479. height: math.unit(10, "miles")
  54480. },
  54481. {
  54482. name: "Goddess",
  54483. height: math.unit(9.99e40, "yottameters")
  54484. },
  54485. ]
  54486. ))
  54487. characterMakers.push(() => makeCharacter(
  54488. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54489. {
  54490. front: {
  54491. height: math.unit(2.3, "meters"),
  54492. name: "Front",
  54493. image: {
  54494. source: "./media/characters/cilenomon/front.svg",
  54495. extra: 1963/1778,
  54496. bottom: 54/2017
  54497. }
  54498. },
  54499. },
  54500. [
  54501. {
  54502. name: "Normal",
  54503. height: math.unit(2.3, "meters"),
  54504. default: true
  54505. },
  54506. {
  54507. name: "Big",
  54508. height: math.unit(5, "meters")
  54509. },
  54510. {
  54511. name: "Macro",
  54512. height: math.unit(30, "meters")
  54513. },
  54514. {
  54515. name: "True",
  54516. height: math.unit(1, "universe")
  54517. },
  54518. ]
  54519. ))
  54520. characterMakers.push(() => makeCharacter(
  54521. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54522. {
  54523. front: {
  54524. height: math.unit(5, "feet"),
  54525. name: "Front",
  54526. image: {
  54527. source: "./media/characters/sen-mink/front.svg",
  54528. extra: 1727/1675,
  54529. bottom: 35/1762
  54530. }
  54531. },
  54532. },
  54533. [
  54534. {
  54535. name: "Normal",
  54536. height: math.unit(5, "feet"),
  54537. default: true
  54538. },
  54539. ]
  54540. ))
  54541. characterMakers.push(() => makeCharacter(
  54542. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54543. {
  54544. front: {
  54545. height: math.unit(5.42999, "feet"),
  54546. weight: math.unit(100, "lb"),
  54547. name: "Front",
  54548. image: {
  54549. source: "./media/characters/ophois/front.svg",
  54550. extra: 1429/1286,
  54551. bottom: 60/1489
  54552. }
  54553. },
  54554. },
  54555. [
  54556. {
  54557. name: "Normal",
  54558. height: math.unit(5.42999, "feet"),
  54559. default: true
  54560. },
  54561. ]
  54562. ))
  54563. characterMakers.push(() => makeCharacter(
  54564. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54565. {
  54566. front: {
  54567. height: math.unit(2, "meters"),
  54568. name: "Front",
  54569. image: {
  54570. source: "./media/characters/riley/front.svg",
  54571. extra: 1779/1754,
  54572. bottom: 139/1918
  54573. }
  54574. },
  54575. },
  54576. [
  54577. {
  54578. name: "Normal",
  54579. height: math.unit(2, "meters"),
  54580. default: true
  54581. },
  54582. ]
  54583. ))
  54584. characterMakers.push(() => makeCharacter(
  54585. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54586. {
  54587. front: {
  54588. height: math.unit(6 + 2/12, "feet"),
  54589. weight: math.unit(195, "lb"),
  54590. preyCapacity: math.unit(6, "people"),
  54591. name: "Front",
  54592. image: {
  54593. source: "./media/characters/shuken-flash/front.svg",
  54594. extra: 1905/1739,
  54595. bottom: 65/1970
  54596. }
  54597. },
  54598. back: {
  54599. height: math.unit(6 + 2/12, "feet"),
  54600. weight: math.unit(195, "lb"),
  54601. preyCapacity: math.unit(6, "people"),
  54602. name: "Back",
  54603. image: {
  54604. source: "./media/characters/shuken-flash/back.svg",
  54605. extra: 1912/1751,
  54606. bottom: 13/1925
  54607. }
  54608. },
  54609. },
  54610. [
  54611. {
  54612. name: "Normal",
  54613. height: math.unit(6 + 2/12, "feet"),
  54614. default: true
  54615. },
  54616. ]
  54617. ))
  54618. characterMakers.push(() => makeCharacter(
  54619. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54620. {
  54621. front: {
  54622. height: math.unit(5 + 9/12, "feet"),
  54623. weight: math.unit(150, "lb"),
  54624. name: "Front",
  54625. image: {
  54626. source: "./media/characters/plat/front.svg",
  54627. extra: 1816/1703,
  54628. bottom: 43/1859
  54629. }
  54630. },
  54631. side: {
  54632. height: math.unit(5 + 9/12, "feet"),
  54633. weight: math.unit(300, "lb"),
  54634. name: "Side",
  54635. image: {
  54636. source: "./media/characters/plat/side.svg",
  54637. extra: 1824/1699,
  54638. bottom: 18/1842
  54639. }
  54640. },
  54641. },
  54642. [
  54643. {
  54644. name: "Normal",
  54645. height: math.unit(5 + 9/12, "feet"),
  54646. default: true
  54647. },
  54648. ]
  54649. ))
  54650. characterMakers.push(() => makeCharacter(
  54651. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54652. {
  54653. front: {
  54654. height: math.unit(9, "feet"),
  54655. weight: math.unit(1800, "lb"),
  54656. name: "Front",
  54657. image: {
  54658. source: "./media/characters/elaine/front.svg",
  54659. extra: 1833/1354,
  54660. bottom: 25/1858
  54661. }
  54662. },
  54663. back: {
  54664. height: math.unit(8.8, "feet"),
  54665. weight: math.unit(1800, "lb"),
  54666. name: "Back",
  54667. image: {
  54668. source: "./media/characters/elaine/back.svg",
  54669. extra: 1641/1233,
  54670. bottom: 53/1694
  54671. }
  54672. },
  54673. },
  54674. [
  54675. {
  54676. name: "Normal",
  54677. height: math.unit(9, "feet"),
  54678. default: true
  54679. },
  54680. ]
  54681. ))
  54682. characterMakers.push(() => makeCharacter(
  54683. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54684. {
  54685. front: {
  54686. height: math.unit(17 + 9/12, "feet"),
  54687. weight: math.unit(8000, "lb"),
  54688. name: "Front",
  54689. image: {
  54690. source: "./media/characters/vera-raven/front.svg",
  54691. extra: 1457/1412,
  54692. bottom: 121/1578
  54693. }
  54694. },
  54695. side: {
  54696. height: math.unit(17 + 9/12, "feet"),
  54697. weight: math.unit(8000, "lb"),
  54698. name: "Side",
  54699. image: {
  54700. source: "./media/characters/vera-raven/side.svg",
  54701. extra: 1510/1464,
  54702. bottom: 54/1564
  54703. }
  54704. },
  54705. },
  54706. [
  54707. {
  54708. name: "Normal",
  54709. height: math.unit(17 + 9/12, "feet"),
  54710. default: true
  54711. },
  54712. ]
  54713. ))
  54714. characterMakers.push(() => makeCharacter(
  54715. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54716. {
  54717. dressed: {
  54718. height: math.unit(6 + 9/12, "feet"),
  54719. name: "Dressed",
  54720. image: {
  54721. source: "./media/characters/nakisha/dressed.svg",
  54722. extra: 1909/1757,
  54723. bottom: 48/1957
  54724. }
  54725. },
  54726. nude: {
  54727. height: math.unit(6 + 9/12, "feet"),
  54728. name: "Nude",
  54729. image: {
  54730. source: "./media/characters/nakisha/nude.svg",
  54731. extra: 1917/1765,
  54732. bottom: 34/1951
  54733. }
  54734. },
  54735. },
  54736. [
  54737. {
  54738. name: "Normal",
  54739. height: math.unit(6 + 9/12, "feet"),
  54740. default: true
  54741. },
  54742. ]
  54743. ))
  54744. characterMakers.push(() => makeCharacter(
  54745. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54746. {
  54747. front: {
  54748. height: math.unit(87, "meters"),
  54749. name: "Front",
  54750. image: {
  54751. source: "./media/characters/serafin/front.svg",
  54752. extra: 1919/1776,
  54753. bottom: 65/1984
  54754. }
  54755. },
  54756. },
  54757. [
  54758. {
  54759. name: "Normal",
  54760. height: math.unit(87, "meters"),
  54761. default: true
  54762. },
  54763. ]
  54764. ))
  54765. characterMakers.push(() => makeCharacter(
  54766. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54767. {
  54768. front: {
  54769. height: math.unit(6, "feet"),
  54770. weight: math.unit(200, "lb"),
  54771. name: "Front",
  54772. image: {
  54773. source: "./media/characters/poptart/front.svg",
  54774. extra: 615/583,
  54775. bottom: 23/638
  54776. }
  54777. },
  54778. back: {
  54779. height: math.unit(6, "feet"),
  54780. weight: math.unit(200, "lb"),
  54781. name: "Back",
  54782. image: {
  54783. source: "./media/characters/poptart/back.svg",
  54784. extra: 617/584,
  54785. bottom: 22/639
  54786. }
  54787. },
  54788. frontNsfw: {
  54789. height: math.unit(6, "feet"),
  54790. weight: math.unit(200, "lb"),
  54791. name: "Front (NSFW)",
  54792. image: {
  54793. source: "./media/characters/poptart/front-nsfw.svg",
  54794. extra: 615/583,
  54795. bottom: 23/638
  54796. }
  54797. },
  54798. backNsfw: {
  54799. height: math.unit(6, "feet"),
  54800. weight: math.unit(200, "lb"),
  54801. name: "Back (NSFW)",
  54802. image: {
  54803. source: "./media/characters/poptart/back-nsfw.svg",
  54804. extra: 617/584,
  54805. bottom: 22/639
  54806. }
  54807. },
  54808. hand: {
  54809. height: math.unit(1.14, "feet"),
  54810. name: "Hand",
  54811. image: {
  54812. source: "./media/characters/poptart/hand.svg"
  54813. }
  54814. },
  54815. foot: {
  54816. height: math.unit(1.5, "feet"),
  54817. name: "Foot",
  54818. image: {
  54819. source: "./media/characters/poptart/foot.svg"
  54820. }
  54821. },
  54822. },
  54823. [
  54824. {
  54825. name: "Normal",
  54826. height: math.unit(6, "feet"),
  54827. default: true
  54828. },
  54829. {
  54830. name: "Grande",
  54831. height: math.unit(350, "feet")
  54832. },
  54833. {
  54834. name: "Massif",
  54835. height: math.unit(967, "feet")
  54836. },
  54837. ]
  54838. ))
  54839. characterMakers.push(() => makeCharacter(
  54840. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54841. {
  54842. hyenaSide: {
  54843. height: math.unit(120, "cm"),
  54844. weight: math.unit(120, "lb"),
  54845. name: "Side",
  54846. image: {
  54847. source: "./media/characters/trance/hyena-side.svg",
  54848. extra: 998/904,
  54849. bottom: 76/1074
  54850. }
  54851. },
  54852. },
  54853. [
  54854. {
  54855. name: "Normal",
  54856. height: math.unit(120, "cm"),
  54857. default: true
  54858. },
  54859. {
  54860. name: "Dire",
  54861. height: math.unit(230, "cm")
  54862. },
  54863. {
  54864. name: "Macro",
  54865. height: math.unit(37, "feet")
  54866. },
  54867. ]
  54868. ))
  54869. characterMakers.push(() => makeCharacter(
  54870. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54871. {
  54872. front: {
  54873. height: math.unit(6 + 3/12, "feet"),
  54874. name: "Front",
  54875. image: {
  54876. source: "./media/characters/michael-berretta/front.svg",
  54877. extra: 515/494,
  54878. bottom: 20/535
  54879. }
  54880. },
  54881. back: {
  54882. height: math.unit(6 + 3/12, "feet"),
  54883. name: "Back",
  54884. image: {
  54885. source: "./media/characters/michael-berretta/back.svg",
  54886. extra: 520/497,
  54887. bottom: 21/541
  54888. }
  54889. },
  54890. frontNsfw: {
  54891. height: math.unit(6 + 3/12, "feet"),
  54892. name: "Front (NSFW)",
  54893. image: {
  54894. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54895. extra: 515/494,
  54896. bottom: 20/535
  54897. }
  54898. },
  54899. dick: {
  54900. height: math.unit(1, "feet"),
  54901. name: "Dick",
  54902. image: {
  54903. source: "./media/characters/michael-berretta/dick.svg"
  54904. }
  54905. },
  54906. },
  54907. [
  54908. {
  54909. name: "Normal",
  54910. height: math.unit(6 + 3/12, "feet"),
  54911. default: true
  54912. },
  54913. {
  54914. name: "Big",
  54915. height: math.unit(12, "feet")
  54916. },
  54917. {
  54918. name: "Macro",
  54919. height: math.unit(187.5, "feet")
  54920. },
  54921. ]
  54922. ))
  54923. characterMakers.push(() => makeCharacter(
  54924. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54925. {
  54926. front: {
  54927. height: math.unit(9 + 9/12, "feet"),
  54928. weight: math.unit(1244, "lb"),
  54929. name: "Front",
  54930. image: {
  54931. source: "./media/characters/stella-edgecomb/front.svg",
  54932. extra: 1835/1706,
  54933. bottom: 49/1884
  54934. }
  54935. },
  54936. pen: {
  54937. height: math.unit(0.95, "feet"),
  54938. name: "Pen",
  54939. image: {
  54940. source: "./media/characters/stella-edgecomb/pen.svg"
  54941. }
  54942. },
  54943. },
  54944. [
  54945. {
  54946. name: "Cozy Bear",
  54947. height: math.unit(0.5, "inches")
  54948. },
  54949. {
  54950. name: "Normal",
  54951. height: math.unit(9 + 9/12, "feet"),
  54952. default: true
  54953. },
  54954. {
  54955. name: "Giga Bear",
  54956. height: math.unit(1, "mile")
  54957. },
  54958. {
  54959. name: "Great Bear",
  54960. height: math.unit(53, "miles")
  54961. },
  54962. {
  54963. name: "Goddess Bear",
  54964. height: math.unit(40000, "miles")
  54965. },
  54966. {
  54967. name: "Sun Bear",
  54968. height: math.unit(900000, "miles")
  54969. },
  54970. ]
  54971. ))
  54972. characterMakers.push(() => makeCharacter(
  54973. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54974. {
  54975. anthroFront: {
  54976. height: math.unit(556, "cm"),
  54977. weight: math.unit(2650, "kg"),
  54978. preyCapacity: math.unit(3, "people"),
  54979. name: "Front",
  54980. image: {
  54981. source: "./media/characters/ash´iika/front.svg",
  54982. extra: 710/673,
  54983. bottom: 15/725
  54984. },
  54985. form: "anthro",
  54986. default: true
  54987. },
  54988. anthroSide: {
  54989. height: math.unit(556, "cm"),
  54990. weight: math.unit(2650, "kg"),
  54991. preyCapacity: math.unit(3, "people"),
  54992. name: "Side",
  54993. image: {
  54994. source: "./media/characters/ash´iika/side.svg",
  54995. extra: 696/676,
  54996. bottom: 13/709
  54997. },
  54998. form: "anthro"
  54999. },
  55000. anthroDressed: {
  55001. height: math.unit(556, "cm"),
  55002. weight: math.unit(2650, "kg"),
  55003. preyCapacity: math.unit(3, "people"),
  55004. name: "Dressed",
  55005. image: {
  55006. source: "./media/characters/ash´iika/dressed.svg",
  55007. extra: 710/673,
  55008. bottom: 15/725
  55009. },
  55010. form: "anthro"
  55011. },
  55012. anthroHead: {
  55013. height: math.unit(3.5, "feet"),
  55014. name: "Head",
  55015. image: {
  55016. source: "./media/characters/ash´iika/head.svg",
  55017. extra: 348/291,
  55018. bottom: 45/393
  55019. },
  55020. form: "anthro"
  55021. },
  55022. feralSide: {
  55023. height: math.unit(870, "cm"),
  55024. weight: math.unit(17500, "kg"),
  55025. preyCapacity: math.unit(15, "people"),
  55026. name: "Side",
  55027. image: {
  55028. source: "./media/characters/ash´iika/feral.svg",
  55029. extra: 595/199,
  55030. bottom: 7/602
  55031. },
  55032. form: "feral",
  55033. default: true,
  55034. },
  55035. },
  55036. [
  55037. {
  55038. name: "Normal",
  55039. height: math.unit(556, "cm"),
  55040. default: true,
  55041. form: "anthro"
  55042. },
  55043. {
  55044. name: "Macro",
  55045. height: math.unit(88, "meters"),
  55046. form: "anthro"
  55047. },
  55048. {
  55049. name: "Normal",
  55050. height: math.unit(870, "cm"),
  55051. default: true,
  55052. form: "feral"
  55053. },
  55054. {
  55055. name: "Large",
  55056. height: math.unit(25, "meters"),
  55057. form: "feral"
  55058. },
  55059. ],
  55060. {
  55061. "anthro": {
  55062. name: "Anthro",
  55063. default: true
  55064. },
  55065. "feral": {
  55066. name: "Feral",
  55067. },
  55068. }
  55069. ))
  55070. characterMakers.push(() => makeCharacter(
  55071. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55072. {
  55073. front: {
  55074. height: math.unit(10, "feet"),
  55075. weight: math.unit(800, "lb"),
  55076. name: "Front",
  55077. image: {
  55078. source: "./media/characters/yen/front.svg",
  55079. extra: 443/411,
  55080. bottom: 6/449
  55081. }
  55082. },
  55083. sleeping: {
  55084. height: math.unit(10, "feet"),
  55085. weight: math.unit(800, "lb"),
  55086. name: "Sleeping",
  55087. image: {
  55088. source: "./media/characters/yen/sleeping.svg",
  55089. extra: 470/422,
  55090. bottom: 0/470
  55091. }
  55092. },
  55093. head: {
  55094. height: math.unit(2.2, "feet"),
  55095. name: "Head",
  55096. image: {
  55097. source: "./media/characters/yen/head.svg"
  55098. }
  55099. },
  55100. headAlt: {
  55101. height: math.unit(2.1, "feet"),
  55102. name: "Head (Alt)",
  55103. image: {
  55104. source: "./media/characters/yen/head-alt.svg"
  55105. }
  55106. },
  55107. },
  55108. [
  55109. {
  55110. name: "Normal",
  55111. height: math.unit(10, "feet"),
  55112. default: true
  55113. },
  55114. ]
  55115. ))
  55116. characterMakers.push(() => makeCharacter(
  55117. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55118. {
  55119. front: {
  55120. height: math.unit(12, "feet"),
  55121. name: "Front",
  55122. image: {
  55123. source: "./media/characters/citra/front.svg",
  55124. extra: 1950/1710,
  55125. bottom: 47/1997
  55126. }
  55127. },
  55128. },
  55129. [
  55130. {
  55131. name: "Normal",
  55132. height: math.unit(12, "feet"),
  55133. default: true
  55134. },
  55135. ]
  55136. ))
  55137. characterMakers.push(() => makeCharacter(
  55138. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55139. {
  55140. side: {
  55141. height: math.unit(7 + 10/12, "feet"),
  55142. name: "Side",
  55143. image: {
  55144. source: "./media/characters/sholstim/side.svg",
  55145. extra: 786/682,
  55146. bottom: 40/826
  55147. }
  55148. },
  55149. },
  55150. [
  55151. {
  55152. name: "Normal",
  55153. height: math.unit(7 + 10/12, "feet"),
  55154. default: true
  55155. },
  55156. ]
  55157. ))
  55158. characterMakers.push(() => makeCharacter(
  55159. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55160. {
  55161. front: {
  55162. height: math.unit(3.10, "meters"),
  55163. name: "Front",
  55164. image: {
  55165. source: "./media/characters/aggyn/front.svg",
  55166. extra: 1188/963,
  55167. bottom: 24/1212
  55168. }
  55169. },
  55170. },
  55171. [
  55172. {
  55173. name: "Normal",
  55174. height: math.unit(3.10, "meters"),
  55175. default: true
  55176. },
  55177. ]
  55178. ))
  55179. characterMakers.push(() => makeCharacter(
  55180. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55181. {
  55182. front: {
  55183. height: math.unit(7 + 5/12, "feet"),
  55184. weight: math.unit(687, "lb"),
  55185. name: "Front",
  55186. image: {
  55187. source: "./media/characters/alsandair-hergenroether/front.svg",
  55188. extra: 1251/1186,
  55189. bottom: 75/1326
  55190. }
  55191. },
  55192. back: {
  55193. height: math.unit(7 + 5/12, "feet"),
  55194. weight: math.unit(687, "lb"),
  55195. name: "Back",
  55196. image: {
  55197. source: "./media/characters/alsandair-hergenroether/back.svg",
  55198. extra: 1290/1229,
  55199. bottom: 17/1307
  55200. }
  55201. },
  55202. },
  55203. [
  55204. {
  55205. name: "Max Compression",
  55206. height: math.unit(7 + 5/12, "feet"),
  55207. default: true
  55208. },
  55209. {
  55210. name: "\"Normal\"",
  55211. height: math.unit(2, "universes")
  55212. },
  55213. ]
  55214. ))
  55215. characterMakers.push(() => makeCharacter(
  55216. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55217. {
  55218. front: {
  55219. height: math.unit(4 + 1/12, "feet"),
  55220. weight: math.unit(92, "lb"),
  55221. name: "Front",
  55222. image: {
  55223. source: "./media/characters/ie/front.svg",
  55224. extra: 1585/1352,
  55225. bottom: 91/1676
  55226. }
  55227. },
  55228. },
  55229. [
  55230. {
  55231. name: "Normal",
  55232. height: math.unit(4 + 1/12, "feet"),
  55233. default: true
  55234. },
  55235. ]
  55236. ))
  55237. characterMakers.push(() => makeCharacter(
  55238. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55239. {
  55240. anthro: {
  55241. height: math.unit(6, "feet"),
  55242. weight: math.unit(150, "lb"),
  55243. name: "Front",
  55244. image: {
  55245. source: "./media/characters/willow/anthro.svg",
  55246. extra: 1073/986,
  55247. bottom: 34/1107
  55248. },
  55249. form: "anthro",
  55250. default: true
  55251. },
  55252. taur: {
  55253. height: math.unit(6, "feet"),
  55254. weight: math.unit(150, "lb"),
  55255. name: "Side",
  55256. image: {
  55257. source: "./media/characters/willow/taur.svg",
  55258. extra: 647/512,
  55259. bottom: 136/783
  55260. },
  55261. form: "taur",
  55262. default: true
  55263. },
  55264. },
  55265. [
  55266. {
  55267. name: "Humanoid",
  55268. height: math.unit(2.7, "meters"),
  55269. form: "anthro"
  55270. },
  55271. {
  55272. name: "Normal",
  55273. height: math.unit(9, "meters"),
  55274. form: "anthro",
  55275. default: true
  55276. },
  55277. {
  55278. name: "Humanoid",
  55279. height: math.unit(2.1, "meters"),
  55280. form: "taur"
  55281. },
  55282. {
  55283. name: "Normal",
  55284. height: math.unit(7, "meters"),
  55285. form: "taur",
  55286. default: true
  55287. },
  55288. ],
  55289. {
  55290. "anthro": {
  55291. name: "Anthro",
  55292. default: true
  55293. },
  55294. "taur": {
  55295. name: "Taur",
  55296. },
  55297. }
  55298. ))
  55299. characterMakers.push(() => makeCharacter(
  55300. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55301. {
  55302. front: {
  55303. height: math.unit(2 + 5/12, "feet"),
  55304. name: "Front",
  55305. image: {
  55306. source: "./media/characters/kyan/front.svg",
  55307. extra: 460/334,
  55308. bottom: 23/483
  55309. },
  55310. extraAttributes: {
  55311. "toeLength": {
  55312. name: "Toe Length",
  55313. power: 1,
  55314. type: "length",
  55315. base: math.unit(7, "cm")
  55316. },
  55317. "toeclawLength": {
  55318. name: "Toeclaw Length",
  55319. power: 1,
  55320. type: "length",
  55321. base: math.unit(4.7, "cm")
  55322. },
  55323. "earHeight": {
  55324. name: "Ear Height",
  55325. power: 1,
  55326. type: "length",
  55327. base: math.unit(14.1, "cm")
  55328. },
  55329. }
  55330. },
  55331. paws: {
  55332. height: math.unit(0.45, "feet"),
  55333. name: "Paws",
  55334. image: {
  55335. source: "./media/characters/kyan/paws.svg",
  55336. extra: 581/581,
  55337. bottom: 114/695
  55338. }
  55339. },
  55340. },
  55341. [
  55342. {
  55343. name: "Normal",
  55344. height: math.unit(2 + 5/12, "feet"),
  55345. default: true
  55346. },
  55347. ]
  55348. ))
  55349. characterMakers.push(() => makeCharacter(
  55350. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55351. {
  55352. front: {
  55353. height: math.unit(2 + 2/3, "feet"),
  55354. name: "Front",
  55355. image: {
  55356. source: "./media/characters/xazzon/front.svg",
  55357. extra: 1109/984,
  55358. bottom: 42/1151
  55359. }
  55360. },
  55361. back: {
  55362. height: math.unit(2 + 2/3, "feet"),
  55363. name: "Back",
  55364. image: {
  55365. source: "./media/characters/xazzon/back.svg",
  55366. extra: 1095/971,
  55367. bottom: 23/1118
  55368. }
  55369. },
  55370. },
  55371. [
  55372. {
  55373. name: "Normal",
  55374. height: math.unit(2 + 2/3, "feet"),
  55375. default: true
  55376. },
  55377. ]
  55378. ))
  55379. characterMakers.push(() => makeCharacter(
  55380. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55381. {
  55382. front: {
  55383. height: math.unit(8, "feet"),
  55384. weight: math.unit(300, "lb"),
  55385. name: "Front",
  55386. image: {
  55387. source: "./media/characters/khyla-shadowsong/front.svg",
  55388. extra: 861/798,
  55389. bottom: 32/893
  55390. }
  55391. },
  55392. side: {
  55393. height: math.unit(8, "feet"),
  55394. weight: math.unit(300, "lb"),
  55395. name: "Side",
  55396. image: {
  55397. source: "./media/characters/khyla-shadowsong/side.svg",
  55398. extra: 790/750,
  55399. bottom: 87/877
  55400. }
  55401. },
  55402. back: {
  55403. height: math.unit(8, "feet"),
  55404. weight: math.unit(300, "lb"),
  55405. name: "Back",
  55406. image: {
  55407. source: "./media/characters/khyla-shadowsong/back.svg",
  55408. extra: 855/808,
  55409. bottom: 14/869
  55410. }
  55411. },
  55412. head: {
  55413. height: math.unit(2.7, "feet"),
  55414. name: "Head",
  55415. image: {
  55416. source: "./media/characters/khyla-shadowsong/head.svg"
  55417. }
  55418. },
  55419. },
  55420. [
  55421. {
  55422. name: "Micro",
  55423. height: math.unit(6, "inches")
  55424. },
  55425. {
  55426. name: "Normal",
  55427. height: math.unit(8, "feet"),
  55428. default: true
  55429. },
  55430. ]
  55431. ))
  55432. characterMakers.push(() => makeCharacter(
  55433. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55434. {
  55435. hyperFront: {
  55436. height: math.unit(9 + 4/12, "feet"),
  55437. weight: math.unit(2000, "lb"),
  55438. name: "Front",
  55439. image: {
  55440. source: "./media/characters/tiden/hyper-front.svg",
  55441. extra: 400/382,
  55442. bottom: 6/406
  55443. },
  55444. form: "hyper",
  55445. },
  55446. regularFront: {
  55447. height: math.unit(7 + 10/12, "feet"),
  55448. weight: math.unit(470, "lb"),
  55449. name: "Front",
  55450. image: {
  55451. source: "./media/characters/tiden/regular-front.svg",
  55452. extra: 468/442,
  55453. bottom: 6/474
  55454. },
  55455. form: "regular",
  55456. },
  55457. },
  55458. [
  55459. {
  55460. name: "Normal",
  55461. height: math.unit(9 + 4/12, "feet"),
  55462. default: true,
  55463. form: "hyper"
  55464. },
  55465. {
  55466. name: "Normal",
  55467. height: math.unit(7 + 10/12, "feet"),
  55468. default: true,
  55469. form: "regular"
  55470. },
  55471. ],
  55472. {
  55473. "hyper": {
  55474. name: "Hyper",
  55475. default: true
  55476. },
  55477. "regular": {
  55478. name: "Regular",
  55479. },
  55480. }
  55481. ))
  55482. characterMakers.push(() => makeCharacter(
  55483. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55484. {
  55485. side: {
  55486. height: math.unit(6, "feet"),
  55487. weight: math.unit(150, "lb"),
  55488. name: "Side",
  55489. image: {
  55490. source: "./media/characters/jason-crowe/side.svg",
  55491. extra: 1771/766,
  55492. bottom: 219/1990
  55493. }
  55494. },
  55495. },
  55496. [
  55497. {
  55498. name: "Pocket Gryphon",
  55499. height: math.unit(6, "cm")
  55500. },
  55501. {
  55502. name: "Raven",
  55503. height: math.unit(60, "cm")
  55504. },
  55505. {
  55506. name: "Normal",
  55507. height: math.unit(1, "meter"),
  55508. default: true
  55509. },
  55510. ]
  55511. ))
  55512. characterMakers.push(() => makeCharacter(
  55513. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55514. {
  55515. front: {
  55516. height: math.unit(9 + 6/12, "feet"),
  55517. weight: math.unit(1100, "lb"),
  55518. name: "Front",
  55519. image: {
  55520. source: "./media/characters/django/front.svg",
  55521. extra: 1231/1136,
  55522. bottom: 34/1265
  55523. }
  55524. },
  55525. side: {
  55526. height: math.unit(9 + 6/12, "feet"),
  55527. weight: math.unit(1100, "lb"),
  55528. name: "Side",
  55529. image: {
  55530. source: "./media/characters/django/side.svg",
  55531. extra: 1267/1174,
  55532. bottom: 9/1276
  55533. }
  55534. },
  55535. },
  55536. [
  55537. {
  55538. name: "Normal",
  55539. height: math.unit(9 + 6/12, "feet"),
  55540. default: true
  55541. },
  55542. {
  55543. name: "Macro 1",
  55544. height: math.unit(50, "feet")
  55545. },
  55546. {
  55547. name: "Macro 2",
  55548. height: math.unit(500, "feet")
  55549. },
  55550. {
  55551. name: "Mega Macro",
  55552. height: math.unit(5300, "feet")
  55553. },
  55554. ]
  55555. ))
  55556. characterMakers.push(() => makeCharacter(
  55557. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55558. {
  55559. frontSfw: {
  55560. height: math.unit(120, "cm"),
  55561. weight: math.unit(15, "kg"),
  55562. name: "Front (SFW)",
  55563. image: {
  55564. source: "./media/characters/eri/front-sfw.svg",
  55565. extra: 1014/939,
  55566. bottom: 37/1051
  55567. },
  55568. form: "moth",
  55569. },
  55570. frontNsfw: {
  55571. height: math.unit(120, "cm"),
  55572. weight: math.unit(15, "kg"),
  55573. name: "Front (NSFW)",
  55574. image: {
  55575. source: "./media/characters/eri/front-nsfw.svg",
  55576. extra: 1014/939,
  55577. bottom: 37/1051
  55578. },
  55579. form: "moth",
  55580. default: true
  55581. },
  55582. egg: {
  55583. height: math.unit(10, "cm"),
  55584. name: "Egg",
  55585. image: {
  55586. source: "./media/characters/eri/egg.svg"
  55587. },
  55588. form: "egg",
  55589. default: true
  55590. },
  55591. },
  55592. [
  55593. {
  55594. name: "Normal",
  55595. height: math.unit(120, "cm"),
  55596. default: true,
  55597. form: "moth"
  55598. },
  55599. {
  55600. name: "Normal",
  55601. height: math.unit(10, "cm"),
  55602. default: true,
  55603. form: "egg"
  55604. },
  55605. ],
  55606. {
  55607. "moth": {
  55608. name: "Moth",
  55609. default: true
  55610. },
  55611. "egg": {
  55612. name: "Egg",
  55613. },
  55614. }
  55615. ))
  55616. characterMakers.push(() => makeCharacter(
  55617. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55618. {
  55619. front: {
  55620. height: math.unit(200, "feet"),
  55621. name: "Front",
  55622. image: {
  55623. source: "./media/characters/bishop-dowser/front.svg",
  55624. extra: 933/868,
  55625. bottom: 106/1039
  55626. }
  55627. },
  55628. },
  55629. [
  55630. {
  55631. name: "Giant",
  55632. height: math.unit(200, "feet"),
  55633. default: true
  55634. },
  55635. ]
  55636. ))
  55637. characterMakers.push(() => makeCharacter(
  55638. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55639. {
  55640. front: {
  55641. height: math.unit(2, "meters"),
  55642. preyCapacity: math.unit(3, "people"),
  55643. name: "Front",
  55644. image: {
  55645. source: "./media/characters/fryra/front.svg",
  55646. extra: 1025/948,
  55647. bottom: 30/1055
  55648. },
  55649. extraAttributes: {
  55650. "breastVolume": {
  55651. name: "Breast Volume",
  55652. power: 3,
  55653. type: "volume",
  55654. base: math.unit(8, "liters")
  55655. },
  55656. }
  55657. },
  55658. back: {
  55659. height: math.unit(2, "meters"),
  55660. preyCapacity: math.unit(3, "people"),
  55661. name: "Back",
  55662. image: {
  55663. source: "./media/characters/fryra/back.svg",
  55664. extra: 993/938,
  55665. bottom: 38/1031
  55666. },
  55667. extraAttributes: {
  55668. "breastVolume": {
  55669. name: "Breast Volume",
  55670. power: 3,
  55671. type: "volume",
  55672. base: math.unit(8, "liters")
  55673. },
  55674. }
  55675. },
  55676. head: {
  55677. height: math.unit(1.33, "feet"),
  55678. name: "Head",
  55679. image: {
  55680. source: "./media/characters/fryra/head.svg"
  55681. }
  55682. },
  55683. maw: {
  55684. height: math.unit(0.56, "feet"),
  55685. name: "Maw",
  55686. image: {
  55687. source: "./media/characters/fryra/maw.svg"
  55688. }
  55689. },
  55690. },
  55691. [
  55692. {
  55693. name: "Micro",
  55694. height: math.unit(5, "cm")
  55695. },
  55696. {
  55697. name: "Normal",
  55698. height: math.unit(2, "meters"),
  55699. default: true
  55700. },
  55701. {
  55702. name: "Small Macro",
  55703. height: math.unit(8, "meters")
  55704. },
  55705. {
  55706. name: "Macro",
  55707. height: math.unit(50, "meters")
  55708. },
  55709. {
  55710. name: "Megamacro",
  55711. height: math.unit(1, "km")
  55712. },
  55713. {
  55714. name: "Planetary",
  55715. height: math.unit(300000, "km")
  55716. },
  55717. {
  55718. name: "Universal",
  55719. height: math.unit(250, "lightyears")
  55720. },
  55721. {
  55722. name: "Fabric of Reality",
  55723. height: math.unit(1000, "multiverses")
  55724. },
  55725. ]
  55726. ))
  55727. characterMakers.push(() => makeCharacter(
  55728. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55729. {
  55730. frontDressed: {
  55731. height: math.unit(6 + 2/12, "feet"),
  55732. name: "Front (Dressed)",
  55733. image: {
  55734. source: "./media/characters/fiera/front-dressed.svg",
  55735. extra: 1883/1793,
  55736. bottom: 70/1953
  55737. }
  55738. },
  55739. backDressed: {
  55740. height: math.unit(6 + 2/12, "feet"),
  55741. name: "Back (Dressed)",
  55742. image: {
  55743. source: "./media/characters/fiera/back-dressed.svg",
  55744. extra: 1847/1780,
  55745. bottom: 70/1917
  55746. }
  55747. },
  55748. frontNude: {
  55749. height: math.unit(6 + 2/12, "feet"),
  55750. name: "Front (Nude)",
  55751. image: {
  55752. source: "./media/characters/fiera/front-nude.svg",
  55753. extra: 1875/1785,
  55754. bottom: 66/1941
  55755. }
  55756. },
  55757. backNude: {
  55758. height: math.unit(6 + 2/12, "feet"),
  55759. name: "Back (Nude)",
  55760. image: {
  55761. source: "./media/characters/fiera/back-nude.svg",
  55762. extra: 1855/1788,
  55763. bottom: 44/1899
  55764. }
  55765. },
  55766. maw: {
  55767. height: math.unit(1.3, "feet"),
  55768. name: "Maw",
  55769. image: {
  55770. source: "./media/characters/fiera/maw.svg"
  55771. }
  55772. },
  55773. paw: {
  55774. height: math.unit(1, "feet"),
  55775. name: "Paw",
  55776. image: {
  55777. source: "./media/characters/fiera/paw.svg"
  55778. }
  55779. },
  55780. shoe: {
  55781. height: math.unit(1.05, "feet"),
  55782. name: "Shoe",
  55783. image: {
  55784. source: "./media/characters/fiera/shoe.svg"
  55785. }
  55786. },
  55787. },
  55788. [
  55789. {
  55790. name: "Normal",
  55791. height: math.unit(6 + 2/12, "feet"),
  55792. default: true
  55793. },
  55794. {
  55795. name: "Size Difference",
  55796. height: math.unit(13, "feet")
  55797. },
  55798. {
  55799. name: "Macro",
  55800. height: math.unit(60, "feet")
  55801. },
  55802. {
  55803. name: "Mega Macro",
  55804. height: math.unit(200, "feet")
  55805. },
  55806. ]
  55807. ))
  55808. characterMakers.push(() => makeCharacter(
  55809. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55810. {
  55811. back: {
  55812. height: math.unit(6, "feet"),
  55813. name: "Back",
  55814. image: {
  55815. source: "./media/characters/flare/back.svg",
  55816. extra: 1883/1765,
  55817. bottom: 32/1915
  55818. }
  55819. },
  55820. },
  55821. [
  55822. {
  55823. name: "Normal",
  55824. height: math.unit(6 + 2/12, "feet"),
  55825. default: true
  55826. },
  55827. {
  55828. name: "Size Difference",
  55829. height: math.unit(13, "feet")
  55830. },
  55831. {
  55832. name: "Macro",
  55833. height: math.unit(60, "feet")
  55834. },
  55835. {
  55836. name: "Macro 2",
  55837. height: math.unit(100, "feet")
  55838. },
  55839. {
  55840. name: "Mega Macro",
  55841. height: math.unit(200, "feet")
  55842. },
  55843. ]
  55844. ))
  55845. characterMakers.push(() => makeCharacter(
  55846. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55847. {
  55848. front: {
  55849. height: math.unit(2.2, "m"),
  55850. weight: math.unit(300, "kg"),
  55851. name: "Front",
  55852. image: {
  55853. source: "./media/characters/hanna/front.svg",
  55854. extra: 1696/1502,
  55855. bottom: 206/1902
  55856. }
  55857. },
  55858. },
  55859. [
  55860. {
  55861. name: "Humanoid",
  55862. height: math.unit(2.2, "meters")
  55863. },
  55864. {
  55865. name: "Normal",
  55866. height: math.unit(4.8, "meters"),
  55867. default: true
  55868. },
  55869. ]
  55870. ))
  55871. characterMakers.push(() => makeCharacter(
  55872. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55873. {
  55874. front: {
  55875. height: math.unit(2.8, "meters"),
  55876. name: "Front",
  55877. image: {
  55878. source: "./media/characters/argo/front.svg",
  55879. extra: 731/518,
  55880. bottom: 84/815
  55881. }
  55882. },
  55883. },
  55884. [
  55885. {
  55886. name: "Normal",
  55887. height: math.unit(3, "meters"),
  55888. default: true
  55889. },
  55890. ]
  55891. ))
  55892. characterMakers.push(() => makeCharacter(
  55893. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55894. {
  55895. side: {
  55896. height: math.unit(3.8, "meters"),
  55897. name: "Side",
  55898. image: {
  55899. source: "./media/characters/sybil/side.svg",
  55900. extra: 382/361,
  55901. bottom: 25/407
  55902. }
  55903. },
  55904. },
  55905. [
  55906. {
  55907. name: "Normal",
  55908. height: math.unit(3.8, "meters"),
  55909. default: true
  55910. },
  55911. ]
  55912. ))
  55913. characterMakers.push(() => makeCharacter(
  55914. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55915. {
  55916. side: {
  55917. height: math.unit(6, "meters"),
  55918. name: "Side",
  55919. image: {
  55920. source: "./media/characters/plum/side.svg",
  55921. extra: 858/755,
  55922. bottom: 45/903
  55923. },
  55924. form: "taur",
  55925. default: true
  55926. },
  55927. back: {
  55928. height: math.unit(6.3, "meters"),
  55929. name: "Back",
  55930. image: {
  55931. source: "./media/characters/plum/back.svg",
  55932. extra: 887/813,
  55933. bottom: 32/919
  55934. },
  55935. form: "taur",
  55936. },
  55937. feral: {
  55938. height: math.unit(5.5, "meter"),
  55939. name: "Front",
  55940. image: {
  55941. source: "./media/characters/plum/feral.svg",
  55942. extra: 568/403,
  55943. bottom: 51/619
  55944. },
  55945. form: "feral",
  55946. default: true
  55947. },
  55948. head: {
  55949. height: math.unit(1.46, "meter"),
  55950. name: "Head",
  55951. image: {
  55952. source: "./media/characters/plum/head.svg"
  55953. },
  55954. form: "taur"
  55955. },
  55956. tailTop: {
  55957. height: math.unit(5.6, "meter"),
  55958. name: "Tail (Top)",
  55959. image: {
  55960. source: "./media/characters/plum/tail-top.svg"
  55961. },
  55962. form: "taur",
  55963. },
  55964. tailBottom: {
  55965. height: math.unit(5.6, "meter"),
  55966. name: "Tail (Bottom)",
  55967. image: {
  55968. source: "./media/characters/plum/tail-bottom.svg"
  55969. },
  55970. form: "taur",
  55971. },
  55972. feralHead: {
  55973. height: math.unit(2.56549521, "meter"),
  55974. name: "Head",
  55975. image: {
  55976. source: "./media/characters/plum/head.svg"
  55977. },
  55978. form: "feral"
  55979. },
  55980. feralTailTop: {
  55981. height: math.unit(5.44728435, "meter"),
  55982. name: "Tail (Top)",
  55983. image: {
  55984. source: "./media/characters/plum/tail-top.svg"
  55985. },
  55986. form: "feral",
  55987. },
  55988. feralTailBottom: {
  55989. height: math.unit(5.44728435, "meter"),
  55990. name: "Tail (Bottom)",
  55991. image: {
  55992. source: "./media/characters/plum/tail-bottom.svg"
  55993. },
  55994. form: "feral",
  55995. },
  55996. },
  55997. [
  55998. {
  55999. name: "Normal",
  56000. height: math.unit(6, "meters"),
  56001. default: true,
  56002. form: "taur"
  56003. },
  56004. {
  56005. name: "Normal",
  56006. height: math.unit(5.5, "meters"),
  56007. default: true,
  56008. form: "feral"
  56009. },
  56010. ],
  56011. {
  56012. "taur": {
  56013. name: "Taur",
  56014. default: true
  56015. },
  56016. "feral": {
  56017. name: "Feral",
  56018. },
  56019. }
  56020. ))
  56021. characterMakers.push(() => makeCharacter(
  56022. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56023. {
  56024. front: {
  56025. height: math.unit(6, "feet"),
  56026. weight: math.unit(115, "lb"),
  56027. name: "Front",
  56028. image: {
  56029. source: "./media/characters/celeste-kitsune/front.svg",
  56030. extra: 393/366,
  56031. bottom: 7/400
  56032. }
  56033. },
  56034. side: {
  56035. height: math.unit(6, "feet"),
  56036. weight: math.unit(115, "lb"),
  56037. name: "Side",
  56038. image: {
  56039. source: "./media/characters/celeste-kitsune/side.svg",
  56040. extra: 818/765,
  56041. bottom: 40/858
  56042. }
  56043. },
  56044. },
  56045. [
  56046. {
  56047. name: "Megamacro",
  56048. height: math.unit(1500, "miles"),
  56049. default: true
  56050. },
  56051. ]
  56052. ))
  56053. characterMakers.push(() => makeCharacter(
  56054. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56055. {
  56056. front: {
  56057. height: math.unit(8, "meters"),
  56058. name: "Front",
  56059. image: {
  56060. source: "./media/characters/io/front.svg",
  56061. extra: 865/722,
  56062. bottom: 58/923
  56063. }
  56064. },
  56065. back: {
  56066. height: math.unit(8, "meters"),
  56067. name: "Back",
  56068. image: {
  56069. source: "./media/characters/io/back.svg",
  56070. extra: 920/776,
  56071. bottom: 42/962
  56072. }
  56073. },
  56074. head: {
  56075. height: math.unit(5.09, "meters"),
  56076. name: "Head",
  56077. image: {
  56078. source: "./media/characters/io/head.svg"
  56079. }
  56080. },
  56081. hand: {
  56082. height: math.unit(1.6, "meters"),
  56083. name: "Hand",
  56084. image: {
  56085. source: "./media/characters/io/hand.svg"
  56086. }
  56087. },
  56088. foot: {
  56089. height: math.unit(2.4, "meters"),
  56090. name: "Foot",
  56091. image: {
  56092. source: "./media/characters/io/foot.svg"
  56093. }
  56094. },
  56095. },
  56096. [
  56097. {
  56098. name: "Normal",
  56099. height: math.unit(8, "meters"),
  56100. default: true
  56101. },
  56102. ]
  56103. ))
  56104. characterMakers.push(() => makeCharacter(
  56105. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56106. {
  56107. side: {
  56108. height: math.unit(6 + 3/12, "feet"),
  56109. weight: math.unit(225, "lb"),
  56110. name: "Side",
  56111. image: {
  56112. source: "./media/characters/silas/side.svg",
  56113. extra: 703/653,
  56114. bottom: 23/726
  56115. },
  56116. extraAttributes: {
  56117. "pawLength": {
  56118. name: "Paw Length",
  56119. power: 1,
  56120. type: "length",
  56121. base: math.unit(12, "inches")
  56122. },
  56123. "pawWidth": {
  56124. name: "Paw Width",
  56125. power: 1,
  56126. type: "length",
  56127. base: math.unit(4.5, "inches")
  56128. },
  56129. "pawArea": {
  56130. name: "Paw Area",
  56131. power: 2,
  56132. type: "area",
  56133. base: math.unit(12 * 4.5, "inches^2")
  56134. },
  56135. }
  56136. },
  56137. },
  56138. [
  56139. {
  56140. name: "Normal",
  56141. height: math.unit(6 + 3/12, "feet"),
  56142. default: true
  56143. },
  56144. ]
  56145. ))
  56146. characterMakers.push(() => makeCharacter(
  56147. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56148. {
  56149. back: {
  56150. height: math.unit(1.6, "meters"),
  56151. weight: math.unit(150, "lb"),
  56152. name: "Back",
  56153. image: {
  56154. source: "./media/characters/zari/back.svg",
  56155. extra: 424/411,
  56156. bottom: 32/456
  56157. },
  56158. extraAttributes: {
  56159. "bladderCapacity": {
  56160. name: "Bladder Size",
  56161. power: 3,
  56162. type: "volume",
  56163. base: math.unit(500, "mL")
  56164. },
  56165. "bladderFlow": {
  56166. name: "Flow Rate",
  56167. power: 3,
  56168. type: "volume",
  56169. base: math.unit(25, "mL")
  56170. },
  56171. }
  56172. },
  56173. },
  56174. [
  56175. {
  56176. name: "Normal",
  56177. height: math.unit(1.6, "meters"),
  56178. default: true
  56179. },
  56180. ]
  56181. ))
  56182. characterMakers.push(() => makeCharacter(
  56183. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56184. {
  56185. front: {
  56186. height: math.unit(25, "feet"),
  56187. weight: math.unit(5, "tons"),
  56188. name: "Front",
  56189. image: {
  56190. source: "./media/characters/charlie-human/front.svg",
  56191. extra: 1870/1740,
  56192. bottom: 102/1972
  56193. },
  56194. extraAttributes: {
  56195. "dickLength": {
  56196. name: "Dick Length",
  56197. power: 1,
  56198. type: "length",
  56199. base: math.unit(9, "feet")
  56200. },
  56201. }
  56202. },
  56203. back: {
  56204. height: math.unit(25, "feet"),
  56205. weight: math.unit(5, "tons"),
  56206. name: "Back",
  56207. image: {
  56208. source: "./media/characters/charlie-human/back.svg",
  56209. extra: 1858/1733,
  56210. bottom: 105/1963
  56211. },
  56212. extraAttributes: {
  56213. "dickLength": {
  56214. name: "Dick Length",
  56215. power: 1,
  56216. type: "length",
  56217. base: math.unit(9, "feet")
  56218. },
  56219. }
  56220. },
  56221. },
  56222. [
  56223. {
  56224. name: "\"Normal\"",
  56225. height: math.unit(6 + 4/12, "feet")
  56226. },
  56227. {
  56228. name: "Big",
  56229. height: math.unit(25, "feet"),
  56230. default: true
  56231. },
  56232. ]
  56233. ))
  56234. characterMakers.push(() => makeCharacter(
  56235. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56236. {
  56237. front: {
  56238. height: math.unit(6 + 4/12, "feet"),
  56239. weight: math.unit(320, "lb"),
  56240. name: "Front",
  56241. image: {
  56242. source: "./media/characters/ookitsu/front.svg",
  56243. extra: 1160/976,
  56244. bottom: 38/1198
  56245. }
  56246. },
  56247. frontNsfw: {
  56248. height: math.unit(6 + 4/12, "feet"),
  56249. weight: math.unit(320, "lb"),
  56250. name: "Front (NSFW)",
  56251. image: {
  56252. source: "./media/characters/ookitsu/front-nsfw.svg",
  56253. extra: 1160/976,
  56254. bottom: 38/1198
  56255. }
  56256. },
  56257. back: {
  56258. height: math.unit(6 + 4/12, "feet"),
  56259. weight: math.unit(320, "lb"),
  56260. name: "Back",
  56261. image: {
  56262. source: "./media/characters/ookitsu/back.svg",
  56263. extra: 1030/975,
  56264. bottom: 70/1100
  56265. }
  56266. },
  56267. head: {
  56268. height: math.unit(1.79, "feet"),
  56269. name: "Head",
  56270. image: {
  56271. source: "./media/characters/ookitsu/head.svg"
  56272. }
  56273. },
  56274. hand: {
  56275. height: math.unit(0.92, "feet"),
  56276. name: "Hand",
  56277. image: {
  56278. source: "./media/characters/ookitsu/hand.svg"
  56279. }
  56280. },
  56281. tails: {
  56282. height: math.unit(3.3, "feet"),
  56283. name: "Tails",
  56284. image: {
  56285. source: "./media/characters/ookitsu/tails.svg"
  56286. }
  56287. },
  56288. dick: {
  56289. height: math.unit(1.10833, "feet"),
  56290. name: "Dick",
  56291. image: {
  56292. source: "./media/characters/ookitsu/dick.svg"
  56293. }
  56294. },
  56295. },
  56296. [
  56297. {
  56298. name: "Normal",
  56299. height: math.unit(6 + 4/12, "feet"),
  56300. default: true
  56301. },
  56302. {
  56303. name: "Macro",
  56304. height: math.unit(30, "feet")
  56305. },
  56306. ]
  56307. ))
  56308. characterMakers.push(() => makeCharacter(
  56309. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56310. {
  56311. anthroFront: {
  56312. height: math.unit(6, "feet"),
  56313. weight: math.unit(250, "lb"),
  56314. name: "Front",
  56315. image: {
  56316. source: "./media/characters/jhusky/anthro-front.svg",
  56317. extra: 474/439,
  56318. bottom: 7/481
  56319. },
  56320. form: "anthro",
  56321. default: true
  56322. },
  56323. taurSideSfw: {
  56324. height: math.unit(6 + 4/12, "feet"),
  56325. weight: math.unit(500, "lb"),
  56326. name: "Side (SFW)",
  56327. image: {
  56328. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56329. extra: 1741/1629,
  56330. bottom: 196/1937
  56331. },
  56332. form: "taur",
  56333. default: true
  56334. },
  56335. taurSideNsfw: {
  56336. height: math.unit(6 + 4/12, "feet"),
  56337. weight: math.unit(500, "lb"),
  56338. name: "Taur (NSFW)",
  56339. image: {
  56340. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56341. extra: 1741/1629,
  56342. bottom: 196/1937
  56343. },
  56344. form: "taur",
  56345. },
  56346. },
  56347. [
  56348. {
  56349. name: "Huge",
  56350. height: math.unit(500, "feet"),
  56351. form: "anthro"
  56352. },
  56353. {
  56354. name: "Macro",
  56355. height: math.unit(1000, "feet"),
  56356. default: true,
  56357. form: "anthro"
  56358. },
  56359. {
  56360. name: "Megamacro",
  56361. height: math.unit(10000, "feet"),
  56362. form: "anthro"
  56363. },
  56364. {
  56365. name: "Huge",
  56366. height: math.unit(528, "feet"),
  56367. form: "taur"
  56368. },
  56369. {
  56370. name: "Macro",
  56371. height: math.unit(1056, "feet"),
  56372. default: true,
  56373. form: "taur"
  56374. },
  56375. {
  56376. name: "Megamacro",
  56377. height: math.unit(10556, "feet"),
  56378. form: "taur"
  56379. },
  56380. ],
  56381. {
  56382. "anthro": {
  56383. name: "Anthro",
  56384. default: true
  56385. },
  56386. "taur": {
  56387. name: "Taur",
  56388. },
  56389. }
  56390. ))
  56391. characterMakers.push(() => makeCharacter(
  56392. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56393. {
  56394. front: {
  56395. height: math.unit(8, "feet"),
  56396. weight: math.unit(500, "lb"),
  56397. name: "Front",
  56398. image: {
  56399. source: "./media/characters/armail/front.svg",
  56400. extra: 1753/1669,
  56401. bottom: 155/1908
  56402. }
  56403. },
  56404. back: {
  56405. height: math.unit(8, "feet"),
  56406. weight: math.unit(500, "lb"),
  56407. name: "Back",
  56408. image: {
  56409. source: "./media/characters/armail/back.svg",
  56410. extra: 1872/1803,
  56411. bottom: 63/1935
  56412. }
  56413. },
  56414. },
  56415. [
  56416. {
  56417. name: "Micro",
  56418. height: math.unit(0.25, "feet")
  56419. },
  56420. {
  56421. name: "Normal",
  56422. height: math.unit(8, "feet"),
  56423. default: true
  56424. },
  56425. {
  56426. name: "Mini-macro",
  56427. height: math.unit(30, "feet")
  56428. },
  56429. {
  56430. name: "Macro",
  56431. height: math.unit(400, "feet")
  56432. },
  56433. {
  56434. name: "Mega-macro",
  56435. height: math.unit(6000, "feet")
  56436. },
  56437. ]
  56438. ))
  56439. characterMakers.push(() => makeCharacter(
  56440. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56441. {
  56442. front: {
  56443. height: math.unit(6 + 7/12, "feet"),
  56444. weight: math.unit(210, "lb"),
  56445. name: "Front",
  56446. image: {
  56447. source: "./media/characters/wilfred-t-buxton/front.svg",
  56448. extra: 1068/882,
  56449. bottom: 28/1096
  56450. }
  56451. },
  56452. },
  56453. [
  56454. {
  56455. name: "Normal",
  56456. height: math.unit(6 + 7/12, "feet"),
  56457. default: true
  56458. },
  56459. ]
  56460. ))
  56461. characterMakers.push(() => makeCharacter(
  56462. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56463. {
  56464. front: {
  56465. height: math.unit(5 + 2/12, "feet"),
  56466. weight: math.unit(120, "lb"),
  56467. name: "Front",
  56468. image: {
  56469. source: "./media/characters/leighton-marrow/front.svg",
  56470. extra: 441/409,
  56471. bottom: 37/478
  56472. }
  56473. },
  56474. },
  56475. [
  56476. {
  56477. name: "Normal",
  56478. height: math.unit(5 + 2/12, "feet"),
  56479. default: true
  56480. },
  56481. ]
  56482. ))
  56483. characterMakers.push(() => makeCharacter(
  56484. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56485. {
  56486. front: {
  56487. height: math.unit(4, "meters"),
  56488. weight: math.unit(1200, "kg"),
  56489. name: "Front",
  56490. image: {
  56491. source: "./media/characters/licos/front.svg",
  56492. extra: 1727/1604,
  56493. bottom: 101/1828
  56494. },
  56495. form: "anthro",
  56496. default: true
  56497. },
  56498. taur_side: {
  56499. height: math.unit(20, "meters"),
  56500. weight: math.unit(1100000, "kg"),
  56501. name: "Side",
  56502. image: {
  56503. source: "./media/characters/licos/taur.svg",
  56504. extra: 1158/1091,
  56505. bottom: 80/1238
  56506. },
  56507. form: "taur",
  56508. default: true
  56509. },
  56510. },
  56511. [
  56512. {
  56513. name: "Normal",
  56514. height: math.unit(4, "meters"),
  56515. default: true,
  56516. form: "anthro"
  56517. },
  56518. {
  56519. name: "Normal",
  56520. height: math.unit(20, "meters"),
  56521. default: true,
  56522. form: "taur"
  56523. },
  56524. ],
  56525. {
  56526. "anthro": {
  56527. name: "Anthro",
  56528. default: true
  56529. },
  56530. "taur": {
  56531. name: "Taur",
  56532. },
  56533. }
  56534. ))
  56535. characterMakers.push(() => makeCharacter(
  56536. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56537. {
  56538. front: {
  56539. height: math.unit(10 + 3/12, "feet"),
  56540. name: "Front",
  56541. image: {
  56542. source: "./media/characters/theo-monkey/front.svg",
  56543. extra: 1735/1658,
  56544. bottom: 73/1808
  56545. }
  56546. },
  56547. back: {
  56548. height: math.unit(10 + 3/12, "feet"),
  56549. name: "Back",
  56550. image: {
  56551. source: "./media/characters/theo-monkey/back.svg",
  56552. extra: 1742/1664,
  56553. bottom: 33/1775
  56554. }
  56555. },
  56556. head: {
  56557. height: math.unit(2.29, "feet"),
  56558. name: "Head",
  56559. image: {
  56560. source: "./media/characters/theo-monkey/head.svg"
  56561. }
  56562. },
  56563. handPalm: {
  56564. height: math.unit(1.73, "feet"),
  56565. name: "Hand (Palm)",
  56566. image: {
  56567. source: "./media/characters/theo-monkey/hand-palm.svg"
  56568. }
  56569. },
  56570. handBack: {
  56571. height: math.unit(1.63, "feet"),
  56572. name: "Hand (Back)",
  56573. image: {
  56574. source: "./media/characters/theo-monkey/hand-back.svg"
  56575. }
  56576. },
  56577. footSole: {
  56578. height: math.unit(2.15, "feet"),
  56579. name: "Foot (Sole)",
  56580. image: {
  56581. source: "./media/characters/theo-monkey/foot-sole.svg"
  56582. }
  56583. },
  56584. footSide: {
  56585. height: math.unit(1.6, "feet"),
  56586. name: "Foot (Side)",
  56587. image: {
  56588. source: "./media/characters/theo-monkey/foot-side.svg"
  56589. }
  56590. },
  56591. },
  56592. [
  56593. {
  56594. name: "Normal",
  56595. height: math.unit(10 + 3/12, "feet"),
  56596. default: true
  56597. },
  56598. ]
  56599. ))
  56600. characterMakers.push(() => makeCharacter(
  56601. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56602. {
  56603. front: {
  56604. height: math.unit(11, "feet"),
  56605. weight: math.unit(3000, "lb"),
  56606. preyCapacity: math.unit(10, "people"),
  56607. name: "Front",
  56608. image: {
  56609. source: "./media/characters/brook/front.svg",
  56610. extra: 909/835,
  56611. bottom: 108/1017
  56612. }
  56613. },
  56614. back: {
  56615. height: math.unit(11, "feet"),
  56616. weight: math.unit(3000, "lb"),
  56617. preyCapacity: math.unit(10, "people"),
  56618. name: "Back",
  56619. image: {
  56620. source: "./media/characters/brook/back.svg",
  56621. extra: 976/916,
  56622. bottom: 34/1010
  56623. }
  56624. },
  56625. backAlt: {
  56626. height: math.unit(11, "feet"),
  56627. weight: math.unit(3000, "lb"),
  56628. preyCapacity: math.unit(10, "people"),
  56629. name: "Back (Alt)",
  56630. image: {
  56631. source: "./media/characters/brook/back-alt.svg",
  56632. extra: 1283/1213,
  56633. bottom: 35/1318
  56634. }
  56635. },
  56636. bust: {
  56637. height: math.unit(9.0859030837, "feet"),
  56638. weight: math.unit(3000, "lb"),
  56639. preyCapacity: math.unit(10, "people"),
  56640. name: "Bust",
  56641. image: {
  56642. source: "./media/characters/brook/bust.svg",
  56643. extra: 2043/1923,
  56644. bottom: 0/2043
  56645. }
  56646. },
  56647. },
  56648. [
  56649. {
  56650. name: "Small",
  56651. height: math.unit(11, "feet"),
  56652. default: true
  56653. },
  56654. {
  56655. name: "Towering",
  56656. height: math.unit(5, "km")
  56657. },
  56658. {
  56659. name: "Enormous",
  56660. height: math.unit(25, "earths")
  56661. },
  56662. ]
  56663. ))
  56664. characterMakers.push(() => makeCharacter(
  56665. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56666. {
  56667. front: {
  56668. height: math.unit(4, "feet"),
  56669. weight: math.unit(150, "lb"),
  56670. name: "Front",
  56671. image: {
  56672. source: "./media/characters/squishi/front.svg",
  56673. extra: 1428/1271,
  56674. bottom: 30/1458
  56675. },
  56676. extraAttributes: {
  56677. "pawSize": {
  56678. name: "Paw Size",
  56679. power: 1,
  56680. type: "length",
  56681. base: math.unit(14, "ShoeSizeMensUS"),
  56682. defaultUnit: "ShoeSizeMensUS"
  56683. },
  56684. }
  56685. },
  56686. side: {
  56687. height: math.unit(4, "feet"),
  56688. weight: math.unit(150, "lb"),
  56689. name: "Side",
  56690. image: {
  56691. source: "./media/characters/squishi/side.svg",
  56692. extra: 1428/1271,
  56693. bottom: 30/1458
  56694. },
  56695. extraAttributes: {
  56696. "pawSize": {
  56697. name: "Paw Size",
  56698. power: 1,
  56699. type: "length",
  56700. base: math.unit(14, "ShoeSizeMensUS"),
  56701. defaultUnit: "ShoeSizeMensUS"
  56702. },
  56703. }
  56704. },
  56705. back: {
  56706. height: math.unit(4, "feet"),
  56707. weight: math.unit(150, "lb"),
  56708. name: "Back",
  56709. image: {
  56710. source: "./media/characters/squishi/back.svg",
  56711. extra: 1428/1271,
  56712. bottom: 30/1458
  56713. },
  56714. extraAttributes: {
  56715. "pawSize": {
  56716. name: "Paw Size",
  56717. power: 1,
  56718. type: "length",
  56719. base: math.unit(14, "ShoeSizeMensUS"),
  56720. defaultUnit: "ShoeSizeMensUS"
  56721. },
  56722. }
  56723. },
  56724. },
  56725. [
  56726. {
  56727. name: "Normal",
  56728. height: math.unit(4, "feet"),
  56729. default: true
  56730. },
  56731. ]
  56732. ))
  56733. characterMakers.push(() => makeCharacter(
  56734. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56735. {
  56736. front: {
  56737. height: math.unit(7 + 8/12, "feet"),
  56738. weight: math.unit(333, "lb"),
  56739. name: "Front",
  56740. image: {
  56741. source: "./media/characters/vincent-vasroc/front.svg",
  56742. extra: 1962/1860,
  56743. bottom: 41/2003
  56744. }
  56745. },
  56746. back: {
  56747. height: math.unit(7 + 8/12, "feet"),
  56748. weight: math.unit(333, "lb"),
  56749. name: "Back",
  56750. image: {
  56751. source: "./media/characters/vincent-vasroc/back.svg",
  56752. extra: 1952/1815,
  56753. bottom: 33/1985
  56754. }
  56755. },
  56756. paw: {
  56757. height: math.unit(1.24, "feet"),
  56758. name: "Paw",
  56759. image: {
  56760. source: "./media/characters/vincent-vasroc/paw.svg"
  56761. }
  56762. },
  56763. ear: {
  56764. height: math.unit(0.75, "feet"),
  56765. name: "Ear",
  56766. image: {
  56767. source: "./media/characters/vincent-vasroc/ear.svg"
  56768. }
  56769. },
  56770. },
  56771. [
  56772. {
  56773. name: "Nano",
  56774. height: math.unit(92, "micrometers")
  56775. },
  56776. {
  56777. name: "Normal",
  56778. height: math.unit(7 + 8/12, "feet"),
  56779. default: true
  56780. },
  56781. ]
  56782. ))
  56783. characterMakers.push(() => makeCharacter(
  56784. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56785. {
  56786. frontNsfw: {
  56787. height: math.unit(40, "feet"),
  56788. weight: math.unit(58, "tons"),
  56789. name: "Front (NSFW)",
  56790. image: {
  56791. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56792. extra: 1265/965,
  56793. bottom: 155/1420
  56794. }
  56795. },
  56796. frontSfw: {
  56797. height: math.unit(40, "feet"),
  56798. weight: math.unit(58, "tons"),
  56799. name: "Front (SFW)",
  56800. image: {
  56801. source: "./media/characters/ru-kahn/front-sfw.svg",
  56802. extra: 1265/965,
  56803. bottom: 80/1345
  56804. }
  56805. },
  56806. },
  56807. [
  56808. {
  56809. name: "Small",
  56810. height: math.unit(4, "feet")
  56811. },
  56812. {
  56813. name: "Normal",
  56814. height: math.unit(40, "feet"),
  56815. default: true
  56816. },
  56817. {
  56818. name: "Macro",
  56819. height: math.unit(400, "feet")
  56820. },
  56821. ]
  56822. ))
  56823. characterMakers.push(() => makeCharacter(
  56824. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56825. {
  56826. frontNude: {
  56827. height: math.unit(6 + 5/12, "feet"),
  56828. name: "Front (Nude)",
  56829. image: {
  56830. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56831. extra: 1369/1366,
  56832. bottom: 68/1437
  56833. }
  56834. },
  56835. frontDressed: {
  56836. height: math.unit(6 + 5/12, "feet"),
  56837. name: "Front (Dressed)",
  56838. image: {
  56839. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56840. extra: 1369/1366,
  56841. bottom: 68/1437
  56842. }
  56843. },
  56844. },
  56845. [
  56846. {
  56847. name: "Normal",
  56848. height: math.unit(6 + 5/12, "feet"),
  56849. default: true
  56850. },
  56851. {
  56852. name: "Maximum",
  56853. height: math.unit(1930, "feet")
  56854. },
  56855. ]
  56856. ))
  56857. characterMakers.push(() => makeCharacter(
  56858. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56859. {
  56860. front: {
  56861. height: math.unit(5 + 6/12, "feet"),
  56862. name: "Front",
  56863. image: {
  56864. source: "./media/characters/kaja/front.svg",
  56865. extra: 1874/1514,
  56866. bottom: 117/1991
  56867. }
  56868. },
  56869. },
  56870. [
  56871. {
  56872. name: "Normal",
  56873. height: math.unit(5 + 6/12, "feet"),
  56874. default: true
  56875. },
  56876. ]
  56877. ))
  56878. characterMakers.push(() => makeCharacter(
  56879. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56880. {
  56881. front: {
  56882. height: math.unit(5 + 9/12, "feet"),
  56883. weight: math.unit(200, "lb"),
  56884. name: "Front",
  56885. image: {
  56886. source: "./media/characters/mark-smith/front.svg",
  56887. extra: 1004/943,
  56888. bottom: 58/1062
  56889. }
  56890. },
  56891. back: {
  56892. height: math.unit(5 + 9/12, "feet"),
  56893. weight: math.unit(200, "lb"),
  56894. name: "Back",
  56895. image: {
  56896. source: "./media/characters/mark-smith/back.svg",
  56897. extra: 1023/953,
  56898. bottom: 24/1047
  56899. }
  56900. },
  56901. head: {
  56902. height: math.unit(1.82, "feet"),
  56903. name: "Head",
  56904. image: {
  56905. source: "./media/characters/mark-smith/head.svg"
  56906. }
  56907. },
  56908. hand: {
  56909. height: math.unit(1.4, "feet"),
  56910. name: "Hand",
  56911. image: {
  56912. source: "./media/characters/mark-smith/hand.svg"
  56913. }
  56914. },
  56915. paw: {
  56916. height: math.unit(1.69, "feet"),
  56917. name: "Paw",
  56918. image: {
  56919. source: "./media/characters/mark-smith/paw.svg"
  56920. }
  56921. },
  56922. },
  56923. [
  56924. {
  56925. name: "Micro",
  56926. height: math.unit(0.25, "inches")
  56927. },
  56928. {
  56929. name: "Normal",
  56930. height: math.unit(5 + 9/12, "feet"),
  56931. default: true
  56932. },
  56933. {
  56934. name: "Macro",
  56935. height: math.unit(500, "feet")
  56936. },
  56937. ]
  56938. ))
  56939. characterMakers.push(() => makeCharacter(
  56940. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56941. {
  56942. frontNude: {
  56943. height: math.unit(6, "feet"),
  56944. name: "Front (Nude)",
  56945. image: {
  56946. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56947. extra: 1384/1321,
  56948. bottom: 57/1441
  56949. }
  56950. },
  56951. frontDressed: {
  56952. height: math.unit(6, "feet"),
  56953. name: "Front (Dressed)",
  56954. image: {
  56955. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56956. extra: 1384/1321,
  56957. bottom: 57/1441
  56958. }
  56959. },
  56960. },
  56961. [
  56962. {
  56963. name: "Normal",
  56964. height: math.unit(6, "feet"),
  56965. default: true
  56966. },
  56967. {
  56968. name: "Maximum",
  56969. height: math.unit(1776, "feet")
  56970. },
  56971. ]
  56972. ))
  56973. characterMakers.push(() => makeCharacter(
  56974. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56975. {
  56976. front: {
  56977. height: math.unit(2 + 4/12, "feet"),
  56978. weight: math.unit(350, "lb"),
  56979. name: "Front",
  56980. image: {
  56981. source: "./media/characters/devos/front.svg",
  56982. extra: 958/852,
  56983. bottom: 143/1101
  56984. }
  56985. },
  56986. },
  56987. [
  56988. {
  56989. name: "Base",
  56990. height: math.unit(2 + 4/12, "feet"),
  56991. default: true
  56992. },
  56993. ]
  56994. ))
  56995. characterMakers.push(() => makeCharacter(
  56996. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56997. {
  56998. front: {
  56999. height: math.unit(9 + 2/12, "feet"),
  57000. name: "Front",
  57001. image: {
  57002. source: "./media/characters/hiveheart/front.svg",
  57003. extra: 394/364,
  57004. bottom: 65/459
  57005. }
  57006. },
  57007. back: {
  57008. height: math.unit(9 + 2/12, "feet"),
  57009. name: "Back",
  57010. image: {
  57011. source: "./media/characters/hiveheart/back.svg",
  57012. extra: 374/357,
  57013. bottom: 63/437
  57014. }
  57015. },
  57016. },
  57017. [
  57018. {
  57019. name: "Base",
  57020. height: math.unit(9 + 2/12, "feet"),
  57021. default: true
  57022. },
  57023. ]
  57024. ))
  57025. characterMakers.push(() => makeCharacter(
  57026. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57027. {
  57028. front: {
  57029. height: math.unit(2.5, "inches"),
  57030. weight: math.unit(0.6, "oz"),
  57031. name: "Front",
  57032. image: {
  57033. source: "./media/characters/bryn/front.svg",
  57034. extra: 1484/1119,
  57035. bottom: 66/1550
  57036. }
  57037. },
  57038. back: {
  57039. height: math.unit(2.5, "inches"),
  57040. weight: math.unit(0.6, "oz"),
  57041. name: "Back",
  57042. image: {
  57043. source: "./media/characters/bryn/back.svg",
  57044. extra: 1472/1170,
  57045. bottom: 32/1504
  57046. }
  57047. },
  57048. wings: {
  57049. height: math.unit(2.5, "inches"),
  57050. weight: math.unit(0.6, "oz"),
  57051. name: "Wings",
  57052. image: {
  57053. source: "./media/characters/bryn/wings.svg",
  57054. extra: 567/448,
  57055. bottom: 10/577
  57056. }
  57057. },
  57058. dressed: {
  57059. height: math.unit(2.5, "inches"),
  57060. weight: math.unit(0.6, "oz"),
  57061. name: "Dressed",
  57062. image: {
  57063. source: "./media/characters/bryn/dressed.svg",
  57064. extra: 719/589,
  57065. bottom: 54/773
  57066. }
  57067. },
  57068. head: {
  57069. height: math.unit(1.75, "inches"),
  57070. name: "Head",
  57071. image: {
  57072. source: "./media/characters/bryn/head.svg"
  57073. }
  57074. },
  57075. foot: {
  57076. height: math.unit(0.4, "inches"),
  57077. name: "Foot",
  57078. image: {
  57079. source: "./media/characters/bryn/foot.svg"
  57080. }
  57081. },
  57082. },
  57083. [
  57084. {
  57085. name: "Normal",
  57086. height: math.unit(2.5, "inches"),
  57087. default: true
  57088. },
  57089. ]
  57090. ))
  57091. characterMakers.push(() => makeCharacter(
  57092. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57093. {
  57094. side: {
  57095. height: math.unit(7, "feet"),
  57096. weight: math.unit(657, "kg"),
  57097. name: "Side",
  57098. image: {
  57099. source: "./media/characters/delta/side.svg",
  57100. extra: 781/212,
  57101. bottom: 7/788
  57102. },
  57103. extraAttributes: {
  57104. "wingspan": {
  57105. name: "Wingspan",
  57106. power: 1,
  57107. type: "length",
  57108. base: math.unit(48, "feet")
  57109. },
  57110. "length": {
  57111. name: "Length",
  57112. power: 1,
  57113. type: "length",
  57114. base: math.unit(21, "feet")
  57115. },
  57116. "pawSize": {
  57117. name: "Paw Size",
  57118. power: 2,
  57119. type: "area",
  57120. base: math.unit(1.5*1.4, "feet^2")
  57121. },
  57122. }
  57123. },
  57124. },
  57125. [
  57126. {
  57127. name: "Normal",
  57128. height: math.unit(6, "feet"),
  57129. default: true
  57130. },
  57131. ]
  57132. ))
  57133. characterMakers.push(() => makeCharacter(
  57134. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57135. {
  57136. front: {
  57137. height: math.unit(6, "feet"),
  57138. name: "Front",
  57139. image: {
  57140. source: "./media/characters/pyrow/front.svg",
  57141. extra: 513/486,
  57142. bottom: 14/527
  57143. }
  57144. },
  57145. frontWing: {
  57146. height: math.unit(6, "feet"),
  57147. name: "Front (Wing)",
  57148. image: {
  57149. source: "./media/characters/pyrow/front-wing.svg",
  57150. extra: 539/383,
  57151. bottom: 20/559
  57152. }
  57153. },
  57154. back: {
  57155. height: math.unit(6, "feet"),
  57156. name: "Back",
  57157. image: {
  57158. source: "./media/characters/pyrow/back.svg",
  57159. extra: 500/473,
  57160. bottom: 9/509
  57161. }
  57162. },
  57163. },
  57164. [
  57165. {
  57166. name: "Normal",
  57167. height: math.unit(6, "feet"),
  57168. default: true
  57169. },
  57170. ]
  57171. ))
  57172. characterMakers.push(() => makeCharacter(
  57173. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57174. {
  57175. front: {
  57176. height: math.unit(5, "meters"),
  57177. weight: math.unit(3, "tonnes"),
  57178. name: "Front",
  57179. image: {
  57180. source: "./media/characters/velikan/front.svg",
  57181. extra: 867/744,
  57182. bottom: 71/938
  57183. },
  57184. extraAttributes: {
  57185. "shoeSize": {
  57186. name: "Shoe Size",
  57187. power: 1,
  57188. type: "length",
  57189. base: math.unit(135, "ShoeSizeUK"),
  57190. defaultUnit: "ShoeSizeUK"
  57191. },
  57192. }
  57193. },
  57194. },
  57195. [
  57196. {
  57197. name: "Normal",
  57198. height: math.unit(5, "meters"),
  57199. default: true
  57200. },
  57201. {
  57202. name: "Macro",
  57203. height: math.unit(1, "km")
  57204. },
  57205. {
  57206. name: "Mega Macro",
  57207. height: math.unit(100, "km")
  57208. },
  57209. {
  57210. name: "Giga Macro",
  57211. height: math.unit(2, "megameters")
  57212. },
  57213. {
  57214. name: "Planetary",
  57215. height: math.unit(22, "megameters")
  57216. },
  57217. {
  57218. name: "Solar",
  57219. height: math.unit(8, "gigameters")
  57220. },
  57221. {
  57222. name: "Cosmic",
  57223. height: math.unit(10, "zettameters")
  57224. },
  57225. {
  57226. name: "Omni",
  57227. height: math.unit(9e260, "multiverses")
  57228. },
  57229. ]
  57230. ))
  57231. characterMakers.push(() => makeCharacter(
  57232. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57233. {
  57234. front: {
  57235. height: math.unit(4 + 3/12, "feet"),
  57236. weight: math.unit(90, "lb"),
  57237. name: "Front",
  57238. image: {
  57239. source: "./media/characters/sabiki/front.svg",
  57240. extra: 1662/1423,
  57241. bottom: 65/1727
  57242. }
  57243. },
  57244. },
  57245. [
  57246. {
  57247. name: "Normal",
  57248. height: math.unit(4 + 3/12, "feet"),
  57249. default: true
  57250. },
  57251. ]
  57252. ))
  57253. characterMakers.push(() => makeCharacter(
  57254. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57255. {
  57256. frontSfw: {
  57257. height: math.unit(2, "mm"),
  57258. name: "Front (SFW)",
  57259. image: {
  57260. source: "./media/characters/carmel/front-sfw.svg",
  57261. extra: 1131/1006,
  57262. bottom: 66/1197
  57263. }
  57264. },
  57265. frontNsfw: {
  57266. height: math.unit(2, "mm"),
  57267. name: "Front (NSFW)",
  57268. image: {
  57269. source: "./media/characters/carmel/front-nsfw.svg",
  57270. extra: 1131/1006,
  57271. bottom: 66/1197
  57272. }
  57273. },
  57274. foot: {
  57275. height: math.unit(0.3, "mm"),
  57276. name: "Foot",
  57277. image: {
  57278. source: "./media/characters/carmel/foot.svg"
  57279. }
  57280. },
  57281. tongue: {
  57282. height: math.unit(0.71, "mm"),
  57283. name: "Tongue",
  57284. image: {
  57285. source: "./media/characters/carmel/tongue.svg"
  57286. }
  57287. },
  57288. dick: {
  57289. height: math.unit(0.085, "mm"),
  57290. name: "Dick",
  57291. image: {
  57292. source: "./media/characters/carmel/dick.svg"
  57293. }
  57294. },
  57295. },
  57296. [
  57297. {
  57298. name: "Micro",
  57299. height: math.unit(2, "mm"),
  57300. default: true
  57301. },
  57302. {
  57303. name: "Normal",
  57304. height: math.unit(4 + 8/12, "feet")
  57305. },
  57306. {
  57307. name: "Mega Macro",
  57308. height: math.unit(250, "feet")
  57309. },
  57310. {
  57311. name: "BIGGER",
  57312. height: math.unit(1000, "feet")
  57313. },
  57314. {
  57315. name: "BIGGEST",
  57316. height: math.unit(2, "miles")
  57317. },
  57318. ]
  57319. ))
  57320. characterMakers.push(() => makeCharacter(
  57321. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57322. {
  57323. front: {
  57324. height: math.unit(6.5, "feet"),
  57325. weight: math.unit(198, "lb"),
  57326. name: "Front",
  57327. image: {
  57328. source: "./media/characters/tamani/anthro.svg",
  57329. extra: 930/890,
  57330. bottom: 34/964
  57331. },
  57332. form: "anthro",
  57333. default: true
  57334. },
  57335. side: {
  57336. height: math.unit(6, "feet"),
  57337. weight: math.unit(198*2, "lb"),
  57338. name: "Side",
  57339. image: {
  57340. source: "./media/characters/tamani/feral.svg",
  57341. extra: 559/519,
  57342. bottom: 43/602
  57343. },
  57344. form: "feral"
  57345. },
  57346. },
  57347. [
  57348. {
  57349. name: "Normal",
  57350. height: math.unit(6.5, "feet"),
  57351. default: true,
  57352. form: "anthro"
  57353. },
  57354. {
  57355. name: "Normal",
  57356. height: math.unit(6, "feet"),
  57357. default: true,
  57358. form: "feral"
  57359. },
  57360. ],
  57361. {
  57362. "anthro": {
  57363. name: "Anthro",
  57364. default: true
  57365. },
  57366. "feral": {
  57367. name: "Feral",
  57368. },
  57369. }
  57370. ))
  57371. characterMakers.push(() => makeCharacter(
  57372. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57373. {
  57374. front: {
  57375. height: math.unit(4 + 1/12, "feet"),
  57376. weight: math.unit(114, "lb"),
  57377. name: "Front",
  57378. image: {
  57379. source: "./media/characters/dex/front.svg",
  57380. extra: 787/680,
  57381. bottom: 18/805
  57382. }
  57383. },
  57384. side: {
  57385. height: math.unit(4 + 1/12, "feet"),
  57386. weight: math.unit(114, "lb"),
  57387. name: "Side",
  57388. image: {
  57389. source: "./media/characters/dex/side.svg",
  57390. extra: 785/680,
  57391. bottom: 12/797
  57392. }
  57393. },
  57394. back: {
  57395. height: math.unit(4 + 1/12, "feet"),
  57396. weight: math.unit(114, "lb"),
  57397. name: "Back",
  57398. image: {
  57399. source: "./media/characters/dex/back.svg",
  57400. extra: 785/681,
  57401. bottom: 17/802
  57402. }
  57403. },
  57404. loungewear: {
  57405. height: math.unit(4 + 1/12, "feet"),
  57406. weight: math.unit(114, "lb"),
  57407. name: "Loungewear",
  57408. image: {
  57409. source: "./media/characters/dex/loungewear.svg",
  57410. extra: 787/680,
  57411. bottom: 18/805
  57412. }
  57413. },
  57414. workout: {
  57415. height: math.unit(4 + 1/12, "feet"),
  57416. weight: math.unit(114, "lb"),
  57417. name: "Workout",
  57418. image: {
  57419. source: "./media/characters/dex/workout.svg",
  57420. extra: 787/680,
  57421. bottom: 18/805
  57422. }
  57423. },
  57424. schoolUniform: {
  57425. height: math.unit(4 + 1/12, "feet"),
  57426. weight: math.unit(114, "lb"),
  57427. name: "School-uniform",
  57428. image: {
  57429. source: "./media/characters/dex/school-uniform.svg",
  57430. extra: 787/680,
  57431. bottom: 18/805
  57432. }
  57433. },
  57434. maw: {
  57435. height: math.unit(0.55, "feet"),
  57436. name: "Maw",
  57437. image: {
  57438. source: "./media/characters/dex/maw.svg"
  57439. }
  57440. },
  57441. paw: {
  57442. height: math.unit(0.87, "feet"),
  57443. name: "Paw",
  57444. image: {
  57445. source: "./media/characters/dex/paw.svg"
  57446. }
  57447. },
  57448. bust: {
  57449. height: math.unit(1.67, "feet"),
  57450. name: "Bust",
  57451. image: {
  57452. source: "./media/characters/dex/bust.svg"
  57453. }
  57454. },
  57455. },
  57456. [
  57457. {
  57458. name: "Normal",
  57459. height: math.unit(4 + 1/12, "feet"),
  57460. default: true
  57461. },
  57462. ]
  57463. ))
  57464. characterMakers.push(() => makeCharacter(
  57465. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57466. {
  57467. front: {
  57468. height: math.unit(4 + 3/12, "feet"),
  57469. weight: math.unit(60, "lb"),
  57470. name: "Front",
  57471. image: {
  57472. source: "./media/characters/silke/front.svg",
  57473. extra: 1334/1122,
  57474. bottom: 21/1355
  57475. }
  57476. },
  57477. back: {
  57478. height: math.unit(4 + 3/12, "feet"),
  57479. weight: math.unit(60, "lb"),
  57480. name: "Back",
  57481. image: {
  57482. source: "./media/characters/silke/back.svg",
  57483. extra: 1328/1092,
  57484. bottom: 16/1344
  57485. }
  57486. },
  57487. dressed: {
  57488. height: math.unit(4 + 3/12, "feet"),
  57489. weight: math.unit(60, "lb"),
  57490. name: "Dressed",
  57491. image: {
  57492. source: "./media/characters/silke/dressed.svg",
  57493. extra: 1334/1122,
  57494. bottom: 43/1377
  57495. }
  57496. },
  57497. },
  57498. [
  57499. {
  57500. name: "Normal",
  57501. height: math.unit(4 + 3/12, "feet"),
  57502. default: true
  57503. },
  57504. ]
  57505. ))
  57506. characterMakers.push(() => makeCharacter(
  57507. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57508. {
  57509. front: {
  57510. height: math.unit(1.58, "meters"),
  57511. weight: math.unit(47, "kg"),
  57512. name: "Front",
  57513. image: {
  57514. source: "./media/characters/wireshark/front.svg",
  57515. extra: 883/838,
  57516. bottom: 66/949
  57517. }
  57518. },
  57519. },
  57520. [
  57521. {
  57522. name: "Normal",
  57523. height: math.unit(1.58, "meters"),
  57524. default: true
  57525. },
  57526. ]
  57527. ))
  57528. characterMakers.push(() => makeCharacter(
  57529. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57530. {
  57531. front: {
  57532. height: math.unit(6, "meters"),
  57533. weight: math.unit(15000, "kg"),
  57534. name: "Front",
  57535. image: {
  57536. source: "./media/characters/gallagher/front.svg",
  57537. extra: 532/493,
  57538. bottom: 0/532
  57539. }
  57540. },
  57541. },
  57542. [
  57543. {
  57544. name: "Normal",
  57545. height: math.unit(6, "meters"),
  57546. default: true
  57547. },
  57548. ]
  57549. ))
  57550. characterMakers.push(() => makeCharacter(
  57551. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57552. {
  57553. front: {
  57554. height: math.unit(2.4, "meters"),
  57555. weight: math.unit(270, "kg"),
  57556. name: "Front",
  57557. image: {
  57558. source: "./media/characters/alice/front.svg",
  57559. extra: 950/900,
  57560. bottom: 36/986
  57561. }
  57562. },
  57563. side: {
  57564. height: math.unit(2.4, "meters"),
  57565. weight: math.unit(270, "kg"),
  57566. name: "Side",
  57567. image: {
  57568. source: "./media/characters/alice/side.svg",
  57569. extra: 921/876,
  57570. bottom: 19/940
  57571. }
  57572. },
  57573. dressed: {
  57574. height: math.unit(2.4, "meters"),
  57575. weight: math.unit(270, "kg"),
  57576. name: "Dressed",
  57577. image: {
  57578. source: "./media/characters/alice/dressed.svg",
  57579. extra: 905/850,
  57580. bottom: 81/986
  57581. }
  57582. },
  57583. fishnet: {
  57584. height: math.unit(2.4, "meters"),
  57585. weight: math.unit(270, "kg"),
  57586. name: "Fishnet",
  57587. image: {
  57588. source: "./media/characters/alice/fishnet.svg",
  57589. extra: 905/850,
  57590. bottom: 81/986
  57591. }
  57592. },
  57593. },
  57594. [
  57595. {
  57596. name: "Normal",
  57597. height: math.unit(2.4, "meters"),
  57598. default: true
  57599. },
  57600. ]
  57601. ))
  57602. characterMakers.push(() => makeCharacter(
  57603. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57604. {
  57605. front: {
  57606. height: math.unit(175.25, "feet"),
  57607. name: "Front",
  57608. image: {
  57609. source: "./media/characters/fio/front.svg",
  57610. extra: 1883/1591,
  57611. bottom: 34/1917
  57612. }
  57613. },
  57614. },
  57615. [
  57616. {
  57617. name: "Normal",
  57618. height: math.unit(175.25, "cm"),
  57619. default: true
  57620. },
  57621. ]
  57622. ))
  57623. characterMakers.push(() => makeCharacter(
  57624. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57625. {
  57626. side: {
  57627. height: math.unit(6, "meters"),
  57628. weight: math.unit(3400, "kg"),
  57629. preyCapacity: math.unit(1700, "liters"),
  57630. name: "Side",
  57631. image: {
  57632. source: "./media/characters/hass/side.svg",
  57633. extra: 1058/997,
  57634. bottom: 177/1235
  57635. }
  57636. },
  57637. feeding: {
  57638. height: math.unit(6*0.63, "meters"),
  57639. weight: math.unit(3400, "kg"),
  57640. preyCapacity: math.unit(1700, "liters"),
  57641. name: "Feeding",
  57642. image: {
  57643. source: "./media/characters/hass/feeding.svg",
  57644. extra: 689/579,
  57645. bottom: 146/835
  57646. }
  57647. },
  57648. guts: {
  57649. height: math.unit(6, "meters"),
  57650. weight: math.unit(3400, "kg"),
  57651. name: "Guts",
  57652. image: {
  57653. source: "./media/characters/hass/guts.svg",
  57654. extra: 1223/1198,
  57655. bottom: 182/1405
  57656. }
  57657. },
  57658. dickFront: {
  57659. height: math.unit(1.4, "meters"),
  57660. name: "Dick (Front)",
  57661. image: {
  57662. source: "./media/characters/hass/dick-front.svg"
  57663. }
  57664. },
  57665. dickSide: {
  57666. height: math.unit(1.3, "meters"),
  57667. name: "Dick (Side)",
  57668. image: {
  57669. source: "./media/characters/hass/dick-side.svg"
  57670. }
  57671. },
  57672. dickBack: {
  57673. height: math.unit(1.4, "meters"),
  57674. name: "Dick (Back)",
  57675. image: {
  57676. source: "./media/characters/hass/dick-back.svg"
  57677. }
  57678. },
  57679. },
  57680. [
  57681. {
  57682. name: "Normal",
  57683. height: math.unit(6, "meters"),
  57684. default: true
  57685. },
  57686. ]
  57687. ))
  57688. characterMakers.push(() => makeCharacter(
  57689. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57690. {
  57691. front: {
  57692. height: math.unit(4, "feet"),
  57693. weight: math.unit(60, "lb"),
  57694. name: "Front",
  57695. image: {
  57696. source: "./media/characters/hickory-finnegan/front.svg",
  57697. extra: 444/411,
  57698. bottom: 10/454
  57699. }
  57700. },
  57701. side: {
  57702. height: math.unit(4, "feet"),
  57703. weight: math.unit(60, "lb"),
  57704. name: "Side",
  57705. image: {
  57706. source: "./media/characters/hickory-finnegan/side.svg",
  57707. extra: 444/411,
  57708. bottom: 10/454
  57709. }
  57710. },
  57711. back: {
  57712. height: math.unit(4, "feet"),
  57713. weight: math.unit(60, "lb"),
  57714. name: "Back",
  57715. image: {
  57716. source: "./media/characters/hickory-finnegan/back.svg",
  57717. extra: 444/411,
  57718. bottom: 10/454
  57719. }
  57720. },
  57721. },
  57722. [
  57723. {
  57724. name: "Normal",
  57725. height: math.unit(4, "feet"),
  57726. default: true
  57727. },
  57728. ]
  57729. ))
  57730. characterMakers.push(() => makeCharacter(
  57731. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57732. {
  57733. snivy_front: {
  57734. height: math.unit(2, "feet"),
  57735. weight: math.unit(17.9, "lb"),
  57736. name: "Front",
  57737. image: {
  57738. source: "./media/characters/robin-phox/snivy-front.svg",
  57739. extra: 569/504,
  57740. bottom: 33/602
  57741. },
  57742. form: "snivy",
  57743. default: true
  57744. },
  57745. snivy_frontNsfw: {
  57746. height: math.unit(2, "feet"),
  57747. weight: math.unit(17.9, "lb"),
  57748. name: "Front (NSFW)",
  57749. image: {
  57750. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57751. extra: 569/504,
  57752. bottom: 33/602
  57753. },
  57754. form: "snivy",
  57755. },
  57756. snivy_back: {
  57757. height: math.unit(2, "feet"),
  57758. weight: math.unit(17.9, "lb"),
  57759. name: "Back",
  57760. image: {
  57761. source: "./media/characters/robin-phox/snivy-back.svg",
  57762. extra: 577/508,
  57763. bottom: 21/598
  57764. },
  57765. form: "snivy",
  57766. },
  57767. snivy_foot: {
  57768. height: math.unit(0.68, "feet"),
  57769. name: "Foot",
  57770. image: {
  57771. source: "./media/characters/robin-phox/snivy-foot.svg"
  57772. },
  57773. form: "snivy",
  57774. },
  57775. snivy_sole: {
  57776. height: math.unit(0.68, "feet"),
  57777. name: "Sole",
  57778. image: {
  57779. source: "./media/characters/robin-phox/snivy-sole.svg"
  57780. },
  57781. form: "snivy",
  57782. },
  57783. yoshi_front: {
  57784. height: math.unit(6, "feet"),
  57785. weight: math.unit(150, "lb"),
  57786. name: "Front",
  57787. image: {
  57788. source: "./media/characters/robin-phox/yoshi-front.svg",
  57789. extra: 890/792,
  57790. bottom: 29/919
  57791. },
  57792. form: "yoshi",
  57793. default: true
  57794. },
  57795. yoshi_frontNsfw: {
  57796. height: math.unit(6, "feet"),
  57797. weight: math.unit(150, "lb"),
  57798. name: "Front (NSFW)",
  57799. image: {
  57800. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57801. extra: 890/792,
  57802. bottom: 29/919
  57803. },
  57804. form: "yoshi",
  57805. },
  57806. yoshi_back: {
  57807. height: math.unit(6, "feet"),
  57808. weight: math.unit(150, "lb"),
  57809. name: "Back",
  57810. image: {
  57811. source: "./media/characters/robin-phox/yoshi-back.svg",
  57812. extra: 890/792,
  57813. bottom: 29/919
  57814. },
  57815. form: "yoshi",
  57816. },
  57817. yoshi_foot: {
  57818. height: math.unit(1.5, "feet"),
  57819. name: "Foot",
  57820. image: {
  57821. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57822. },
  57823. form: "yoshi",
  57824. },
  57825. delphox_front: {
  57826. height: math.unit(4 + 11/12, "feet"),
  57827. weight: math.unit(86, "lb"),
  57828. name: "Front",
  57829. image: {
  57830. source: "./media/characters/robin-phox/delphox-front.svg",
  57831. extra: 1266/1069,
  57832. bottom: 32/1298
  57833. },
  57834. form: "delphox",
  57835. default: true
  57836. },
  57837. delphox_frontNsfw: {
  57838. height: math.unit(4 + 11/12, "feet"),
  57839. weight: math.unit(86, "lb"),
  57840. name: "Front (NSFW)",
  57841. image: {
  57842. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57843. extra: 1266/1069,
  57844. bottom: 32/1298
  57845. },
  57846. form: "delphox",
  57847. },
  57848. delphox_back: {
  57849. height: math.unit(4 + 11/12, "feet"),
  57850. weight: math.unit(86, "lb"),
  57851. name: "Back",
  57852. image: {
  57853. source: "./media/characters/robin-phox/delphox-back.svg",
  57854. extra: 1269/1083,
  57855. bottom: 15/1284
  57856. },
  57857. form: "delphox",
  57858. },
  57859. mienshao_front: {
  57860. height: math.unit(4 + 7/12, "feet"),
  57861. weight: math.unit(78.3, "lb"),
  57862. name: "Front",
  57863. image: {
  57864. source: "./media/characters/robin-phox/mienshao-front.svg",
  57865. extra: 1052/970,
  57866. bottom: 108/1160
  57867. },
  57868. form: "mienshao",
  57869. default: true
  57870. },
  57871. mienshao_frontNsfw: {
  57872. height: math.unit(4 + 7/12, "feet"),
  57873. weight: math.unit(78.3, "lb"),
  57874. name: "Front (NSFW)",
  57875. image: {
  57876. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57877. extra: 1052/970,
  57878. bottom: 108/1160
  57879. },
  57880. form: "mienshao",
  57881. },
  57882. mienshao_back: {
  57883. height: math.unit(4 + 7/12, "feet"),
  57884. weight: math.unit(78.3, "lb"),
  57885. name: "Back",
  57886. image: {
  57887. source: "./media/characters/robin-phox/mienshao-back.svg",
  57888. extra: 1102/982,
  57889. bottom: 32/1134
  57890. },
  57891. form: "mienshao",
  57892. },
  57893. inteleon_front: {
  57894. height: math.unit(6 + 3/12, "feet"),
  57895. weight: math.unit(99.6, "lb"),
  57896. name: "Front",
  57897. image: {
  57898. source: "./media/characters/robin-phox/inteleon-front.svg",
  57899. extra: 910/799,
  57900. bottom: 76/986
  57901. },
  57902. form: "inteleon",
  57903. default: true
  57904. },
  57905. inteleon_frontNsfw: {
  57906. height: math.unit(6 + 3/12, "feet"),
  57907. weight: math.unit(99.6, "lb"),
  57908. name: "Front (NSFW)",
  57909. image: {
  57910. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57911. extra: 910/799,
  57912. bottom: 76/986
  57913. },
  57914. form: "inteleon",
  57915. },
  57916. inteleon_back: {
  57917. height: math.unit(6 + 3/12, "feet"),
  57918. weight: math.unit(99.6, "lb"),
  57919. name: "Back",
  57920. image: {
  57921. source: "./media/characters/robin-phox/inteleon-back.svg",
  57922. extra: 907/796,
  57923. bottom: 25/932
  57924. },
  57925. form: "inteleon",
  57926. },
  57927. reshiram_front: {
  57928. height: math.unit(10 + 6/12, "feet"),
  57929. weight: math.unit(727.5, "lb"),
  57930. name: "Front",
  57931. image: {
  57932. source: "./media/characters/robin-phox/reshiram-front.svg",
  57933. extra: 1198/940,
  57934. bottom: 123/1321
  57935. },
  57936. form: "reshiram",
  57937. },
  57938. reshiram_frontNsfw: {
  57939. height: math.unit(10 + 6/12, "feet"),
  57940. weight: math.unit(727.5, "lb"),
  57941. name: "Front-nsfw",
  57942. image: {
  57943. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57944. extra: 1198/940,
  57945. bottom: 123/1321
  57946. },
  57947. form: "reshiram",
  57948. },
  57949. reshiram_back: {
  57950. height: math.unit(10 + 6/12, "feet"),
  57951. weight: math.unit(727.5, "lb"),
  57952. name: "Back",
  57953. image: {
  57954. source: "./media/characters/robin-phox/reshiram-back.svg",
  57955. extra: 1024/904,
  57956. bottom: 85/1109
  57957. },
  57958. form: "reshiram",
  57959. },
  57960. samurott_front: {
  57961. height: math.unit(8, "feet"),
  57962. weight: math.unit(208.6, "lb"),
  57963. name: "Front",
  57964. image: {
  57965. source: "./media/characters/robin-phox/samurott-front.svg",
  57966. extra: 1048/984,
  57967. bottom: 100/1148
  57968. },
  57969. form: "samurott",
  57970. },
  57971. samurott_frontNsfw: {
  57972. height: math.unit(8, "feet"),
  57973. weight: math.unit(208.6, "lb"),
  57974. name: "Front-nsfw",
  57975. image: {
  57976. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57977. extra: 1048/984,
  57978. bottom: 100/1148
  57979. },
  57980. form: "samurott",
  57981. },
  57982. samurott_back: {
  57983. height: math.unit(8, "feet"),
  57984. weight: math.unit(208.6, "lb"),
  57985. name: "Back",
  57986. image: {
  57987. source: "./media/characters/robin-phox/samurott-back.svg",
  57988. extra: 1110/1042,
  57989. bottom: 12/1122
  57990. },
  57991. form: "samurott",
  57992. },
  57993. samurott_feral: {
  57994. height: math.unit(4 + 11/12, "feet"),
  57995. weight: math.unit(208.6, "lb"),
  57996. name: "Feral",
  57997. image: {
  57998. source: "./media/characters/robin-phox/samurott-feral.svg",
  57999. extra: 766/681,
  58000. bottom: 108/874
  58001. },
  58002. form: "samurott",
  58003. },
  58004. },
  58005. [
  58006. {
  58007. name: "Normal",
  58008. height: math.unit(2, "feet"),
  58009. default: true,
  58010. form: "snivy"
  58011. },
  58012. {
  58013. name: "Normal",
  58014. height: math.unit(6, "feet"),
  58015. default: true,
  58016. form: "yoshi"
  58017. },
  58018. {
  58019. name: "Normal",
  58020. height: math.unit(4 + 11/12, "feet"),
  58021. default: true,
  58022. form: "delphox"
  58023. },
  58024. {
  58025. name: "Normal",
  58026. height: math.unit(4 + 7/12, "feet"),
  58027. default: true,
  58028. form: "mienshao"
  58029. },
  58030. {
  58031. name: "Normal",
  58032. height: math.unit(6 + 3/12, "feet"),
  58033. default: true,
  58034. form: "inteleon"
  58035. },
  58036. {
  58037. name: "Normal",
  58038. height: math.unit(10 + 6/12, "feet"),
  58039. default: true,
  58040. form: "reshiram"
  58041. },
  58042. {
  58043. name: "Normal",
  58044. height: math.unit(8, "feet"),
  58045. default: true,
  58046. form: "samurott"
  58047. },
  58048. {
  58049. name: "Macro",
  58050. height: math.unit(500, "feet"),
  58051. allForms: true
  58052. },
  58053. {
  58054. name: "Mega Macro",
  58055. height: math.unit(10, "earths"),
  58056. allForms: true
  58057. },
  58058. {
  58059. name: "Giga Macro",
  58060. height: math.unit(1, "galaxy"),
  58061. allForms: true
  58062. },
  58063. {
  58064. name: "Godly Macro",
  58065. height: math.unit(1e10, "multiverses"),
  58066. allForms: true
  58067. },
  58068. ],
  58069. {
  58070. "snivy": {
  58071. name: "Snivy",
  58072. default: true
  58073. },
  58074. "yoshi": {
  58075. name: "Yoshi",
  58076. },
  58077. "delphox": {
  58078. name: "Delphox",
  58079. },
  58080. "mienshao": {
  58081. name: "Mienshao",
  58082. },
  58083. "inteleon": {
  58084. name: "Inteleon",
  58085. },
  58086. "reshiram": {
  58087. name: "Reshiram",
  58088. },
  58089. "samurott": {
  58090. name: "Samurott",
  58091. },
  58092. }
  58093. ))
  58094. characterMakers.push(() => makeCharacter(
  58095. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58096. {
  58097. front: {
  58098. height: math.unit(4, "feet"),
  58099. name: "Front",
  58100. image: {
  58101. source: "./media/characters/ash-leung/front.svg",
  58102. extra: 1916/1792,
  58103. bottom: 50/1966
  58104. }
  58105. },
  58106. },
  58107. [
  58108. {
  58109. name: "Atomic",
  58110. height: math.unit(1, "angstrom")
  58111. },
  58112. {
  58113. name: "Microscopic",
  58114. height: math.unit(4000, "angstroms")
  58115. },
  58116. {
  58117. name: "Speck",
  58118. height: math.unit(1, "mm")
  58119. },
  58120. {
  58121. name: "Small",
  58122. height: math.unit(1, "inch")
  58123. },
  58124. {
  58125. name: "Normal",
  58126. height: math.unit(4, "feet"),
  58127. default: true
  58128. },
  58129. ]
  58130. ))
  58131. characterMakers.push(() => makeCharacter(
  58132. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58133. {
  58134. frontDressed: {
  58135. height: math.unit(2.08, "meters"),
  58136. weight: math.unit(175, "lb"),
  58137. name: "Front (Dressed)",
  58138. image: {
  58139. source: "./media/characters/carie/front-dressed.svg",
  58140. extra: 456/417,
  58141. bottom: 7/463
  58142. }
  58143. },
  58144. backDressed: {
  58145. height: math.unit(2.08, "meters"),
  58146. weight: math.unit(175, "lb"),
  58147. name: "Back (Dressed)",
  58148. image: {
  58149. source: "./media/characters/carie/back-dressed.svg",
  58150. extra: 455/414,
  58151. bottom: 11/466
  58152. }
  58153. },
  58154. front: {
  58155. height: math.unit(2, "meters"),
  58156. weight: math.unit(175, "lb"),
  58157. name: "Front",
  58158. image: {
  58159. source: "./media/characters/carie/front.svg",
  58160. extra: 438/399,
  58161. bottom: 12/450
  58162. }
  58163. },
  58164. back: {
  58165. height: math.unit(2, "meters"),
  58166. weight: math.unit(175, "lb"),
  58167. name: "Back",
  58168. image: {
  58169. source: "./media/characters/carie/back.svg",
  58170. extra: 438/397,
  58171. bottom: 7/445
  58172. }
  58173. },
  58174. },
  58175. [
  58176. {
  58177. name: "Normal",
  58178. height: math.unit(2.08, "meters"),
  58179. default: true
  58180. },
  58181. {
  58182. name: "Macro",
  58183. height: math.unit(2.08e3, "meters")
  58184. },
  58185. {
  58186. name: "Mega Macro",
  58187. height: math.unit(2.08e6, "meters")
  58188. },
  58189. {
  58190. name: "Giga Macro",
  58191. height: math.unit(2.08e9, "meters")
  58192. },
  58193. {
  58194. name: "Tera Macro",
  58195. height: math.unit(2.08e12, "meters")
  58196. },
  58197. {
  58198. name: "Peta Macro",
  58199. height: math.unit(2.08e15, "meters")
  58200. },
  58201. {
  58202. name: "Exa Macro",
  58203. height: math.unit(2.08e18, "meters")
  58204. },
  58205. {
  58206. name: "Zetta Macro",
  58207. height: math.unit(2.08e21, "meters")
  58208. },
  58209. {
  58210. name: "Yotta Macro",
  58211. height: math.unit(2.08e24, "meters")
  58212. },
  58213. ]
  58214. ))
  58215. characterMakers.push(() => makeCharacter(
  58216. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58217. {
  58218. front: {
  58219. height: math.unit(5 + 2/12, "feet"),
  58220. weight: math.unit(120, "lb"),
  58221. name: "Front",
  58222. image: {
  58223. source: "./media/characters/sai-bree/front.svg",
  58224. extra: 1843/1702,
  58225. bottom: 91/1934
  58226. }
  58227. },
  58228. back: {
  58229. height: math.unit(5 + 2/12, "feet"),
  58230. weight: math.unit(120, "lb"),
  58231. name: "Back",
  58232. image: {
  58233. source: "./media/characters/sai-bree/back.svg",
  58234. extra: 1809/1637,
  58235. bottom: 56/1865
  58236. }
  58237. },
  58238. },
  58239. [
  58240. {
  58241. name: "Normal",
  58242. height: math.unit(5 + 2/12, "feet"),
  58243. default: true
  58244. },
  58245. {
  58246. name: "Macro",
  58247. height: math.unit(500, "feet")
  58248. },
  58249. ]
  58250. ))
  58251. characterMakers.push(() => makeCharacter(
  58252. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58253. {
  58254. side: {
  58255. height: math.unit(0.77, "meters"),
  58256. weight: math.unit(120, "lb"),
  58257. name: "Side",
  58258. image: {
  58259. source: "./media/characters/davwyn/side.svg",
  58260. extra: 1557/1225,
  58261. bottom: 131/1688
  58262. }
  58263. },
  58264. front: {
  58265. height: math.unit(0.835410, "meters"),
  58266. weight: math.unit(120, "lb"),
  58267. name: "Front",
  58268. image: {
  58269. source: "./media/characters/davwyn/front.svg",
  58270. extra: 870/843,
  58271. bottom: 175/1045
  58272. }
  58273. },
  58274. },
  58275. [
  58276. {
  58277. name: "Minidrake",
  58278. height: math.unit(0.77/4, "meters")
  58279. },
  58280. {
  58281. name: "Normal",
  58282. height: math.unit(0.77, "meters"),
  58283. default: true
  58284. },
  58285. ]
  58286. ))
  58287. characterMakers.push(() => makeCharacter(
  58288. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58289. {
  58290. front: {
  58291. height: math.unit(10 + 3/12, "feet"),
  58292. weight: math.unit(2857, "lb"),
  58293. name: "Front",
  58294. image: {
  58295. source: "./media/characters/balans/front.svg",
  58296. extra: 427/402,
  58297. bottom: 26/453
  58298. }
  58299. },
  58300. side: {
  58301. height: math.unit(10 + 3/12, "feet"),
  58302. weight: math.unit(2857, "lb"),
  58303. name: "Side",
  58304. image: {
  58305. source: "./media/characters/balans/side.svg",
  58306. extra: 397/371,
  58307. bottom: 17/414
  58308. }
  58309. },
  58310. back: {
  58311. height: math.unit(10 + 3/12, "feet"),
  58312. weight: math.unit(2857, "lb"),
  58313. name: "Back",
  58314. image: {
  58315. source: "./media/characters/balans/back.svg",
  58316. extra: 408/381,
  58317. bottom: 14/422
  58318. }
  58319. },
  58320. hand: {
  58321. height: math.unit(1.15, "feet"),
  58322. name: "Hand",
  58323. image: {
  58324. source: "./media/characters/balans/hand.svg"
  58325. }
  58326. },
  58327. footRest: {
  58328. height: math.unit(3.1, "feet"),
  58329. name: "Foot (Rest)",
  58330. image: {
  58331. source: "./media/characters/balans/foot-rest.svg"
  58332. }
  58333. },
  58334. footActive: {
  58335. height: math.unit(3.5, "feet"),
  58336. name: "Foot (Active)",
  58337. image: {
  58338. source: "./media/characters/balans/foot-active.svg"
  58339. }
  58340. },
  58341. },
  58342. [
  58343. {
  58344. name: "Normal",
  58345. height: math.unit(10 + 3/12, "feet"),
  58346. default: true
  58347. },
  58348. ]
  58349. ))
  58350. characterMakers.push(() => makeCharacter(
  58351. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58352. {
  58353. side: {
  58354. height: math.unit(9, "meters"),
  58355. weight: math.unit(114, "tonnes"),
  58356. name: "Side",
  58357. image: {
  58358. source: "./media/characters/eldkveikir/side.svg",
  58359. extra: 1927/338,
  58360. bottom: 42/1969
  58361. }
  58362. },
  58363. sitting: {
  58364. height: math.unit(13.4, "meters"),
  58365. weight: math.unit(114, "tonnes"),
  58366. name: "Sitting",
  58367. image: {
  58368. source: "./media/characters/eldkveikir/sitting.svg",
  58369. extra: 1108/963,
  58370. bottom: 610/1718
  58371. }
  58372. },
  58373. maw: {
  58374. height: math.unit(8.36, "meters"),
  58375. name: "Maw",
  58376. image: {
  58377. source: "./media/characters/eldkveikir/maw.svg"
  58378. }
  58379. },
  58380. hand: {
  58381. height: math.unit(4.84, "meters"),
  58382. name: "Hand",
  58383. image: {
  58384. source: "./media/characters/eldkveikir/hand.svg"
  58385. }
  58386. },
  58387. foot: {
  58388. height: math.unit(6.9, "meters"),
  58389. name: "Foot",
  58390. image: {
  58391. source: "./media/characters/eldkveikir/foot.svg"
  58392. }
  58393. },
  58394. genitals: {
  58395. height: math.unit(9.6, "meters"),
  58396. name: "Genitals",
  58397. image: {
  58398. source: "./media/characters/eldkveikir/genitals.svg"
  58399. }
  58400. },
  58401. },
  58402. [
  58403. {
  58404. name: "Normal",
  58405. height: math.unit(9, "meters"),
  58406. default: true
  58407. },
  58408. ]
  58409. ))
  58410. characterMakers.push(() => makeCharacter(
  58411. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58412. {
  58413. front: {
  58414. height: math.unit(14, "feet"),
  58415. weight: math.unit(4100, "lb"),
  58416. name: "Front",
  58417. image: {
  58418. source: "./media/characters/arrow/front.svg",
  58419. extra: 330/318,
  58420. bottom: 56/386
  58421. }
  58422. },
  58423. },
  58424. [
  58425. {
  58426. name: "Normal",
  58427. height: math.unit(14, "feet"),
  58428. default: true
  58429. },
  58430. {
  58431. name: "Minimacro",
  58432. height: math.unit(63, "feet")
  58433. },
  58434. {
  58435. name: "Macro",
  58436. height: math.unit(630, "feet")
  58437. },
  58438. {
  58439. name: "Megamacro",
  58440. height: math.unit(12600, "feet")
  58441. },
  58442. {
  58443. name: "Gigamacro",
  58444. height: math.unit(18000, "miles")
  58445. },
  58446. ]
  58447. ))
  58448. characterMakers.push(() => makeCharacter(
  58449. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58450. {
  58451. front: {
  58452. height: math.unit(10, "feet"),
  58453. weight: math.unit(2.4, "tons"),
  58454. name: "Front",
  58455. image: {
  58456. source: "./media/characters/3yk-k0-unit/front.svg",
  58457. extra: 573/561,
  58458. bottom: 33/606
  58459. }
  58460. },
  58461. back: {
  58462. height: math.unit(10, "feet"),
  58463. weight: math.unit(2.4, "tons"),
  58464. name: "Back",
  58465. image: {
  58466. source: "./media/characters/3yk-k0-unit/back.svg",
  58467. extra: 614/573,
  58468. bottom: 32/646
  58469. }
  58470. },
  58471. maw: {
  58472. height: math.unit(2.15, "feet"),
  58473. name: "Maw",
  58474. image: {
  58475. source: "./media/characters/3yk-k0-unit/maw.svg"
  58476. }
  58477. },
  58478. },
  58479. [
  58480. {
  58481. name: "Normal",
  58482. height: math.unit(10, "feet"),
  58483. default: true
  58484. },
  58485. ]
  58486. ))
  58487. characterMakers.push(() => makeCharacter(
  58488. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58489. {
  58490. front: {
  58491. height: math.unit(8 + 8/12, "feet"),
  58492. name: "Front",
  58493. image: {
  58494. source: "./media/characters/nemo/front.svg",
  58495. extra: 1308/1217,
  58496. bottom: 57/1365
  58497. }
  58498. },
  58499. },
  58500. [
  58501. {
  58502. name: "Normal",
  58503. height: math.unit(8 + 8/12, "feet"),
  58504. default: true
  58505. },
  58506. ]
  58507. ))
  58508. characterMakers.push(() => makeCharacter(
  58509. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58510. {
  58511. front: {
  58512. height: math.unit(8, "feet"),
  58513. weight: math.unit(760, "lb"),
  58514. name: "Front",
  58515. image: {
  58516. source: "./media/characters/rexx/front.svg",
  58517. extra: 786/750,
  58518. bottom: 17/803
  58519. },
  58520. extraAttributes: {
  58521. "pawLength": {
  58522. name: "Paw Length",
  58523. power: 1,
  58524. type: "length",
  58525. base: math.unit(27, "inches")
  58526. },
  58527. }
  58528. },
  58529. },
  58530. [
  58531. {
  58532. name: "Micro",
  58533. height: math.unit(2, "inches")
  58534. },
  58535. {
  58536. name: "Normal",
  58537. height: math.unit(8, "feet"),
  58538. default: true
  58539. },
  58540. {
  58541. name: "Macro",
  58542. height: math.unit(150, "feet")
  58543. },
  58544. ]
  58545. ))
  58546. characterMakers.push(() => makeCharacter(
  58547. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58548. {
  58549. front: {
  58550. height: math.unit(18, "feet"),
  58551. weight: math.unit(1975, "lb"),
  58552. name: "Front",
  58553. image: {
  58554. source: "./media/characters/draco/front.svg",
  58555. extra: 1325/1241,
  58556. bottom: 83/1408
  58557. }
  58558. },
  58559. back: {
  58560. height: math.unit(18, "feet"),
  58561. weight: math.unit(1975, "lb"),
  58562. name: "Back",
  58563. image: {
  58564. source: "./media/characters/draco/back.svg",
  58565. extra: 1332/1250,
  58566. bottom: 43/1375
  58567. }
  58568. },
  58569. dick: {
  58570. height: math.unit(7.5, "feet"),
  58571. name: "Dick",
  58572. image: {
  58573. source: "./media/characters/draco/dick.svg"
  58574. }
  58575. },
  58576. },
  58577. [
  58578. {
  58579. name: "Normal",
  58580. height: math.unit(18, "feet"),
  58581. default: true
  58582. },
  58583. ]
  58584. ))
  58585. characterMakers.push(() => makeCharacter(
  58586. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58587. {
  58588. front: {
  58589. height: math.unit(3.2, "meters"),
  58590. name: "Front",
  58591. image: {
  58592. source: "./media/characters/harriett/front.svg",
  58593. extra: 1966/1915,
  58594. bottom: 9/1975
  58595. }
  58596. },
  58597. },
  58598. [
  58599. {
  58600. name: "Normal",
  58601. height: math.unit(3.2, "meters"),
  58602. default: true
  58603. },
  58604. ]
  58605. ))
  58606. characterMakers.push(() => makeCharacter(
  58607. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58608. {
  58609. standing: {
  58610. height: math.unit(180, "cm"),
  58611. weight: math.unit(185, "lb"),
  58612. name: "Standing",
  58613. image: {
  58614. source: "./media/characters/serpentus/standing.svg",
  58615. extra: 882/878,
  58616. bottom: 16/898
  58617. }
  58618. },
  58619. sitting: {
  58620. height: math.unit(0.8, "meter"),
  58621. weight: math.unit(155, "lb"),
  58622. name: "Sitting",
  58623. image: {
  58624. source: "./media/characters/serpentus/sitting.svg",
  58625. extra: 293/290,
  58626. bottom: 140/433
  58627. }
  58628. },
  58629. },
  58630. [
  58631. {
  58632. name: "Normal",
  58633. height: math.unit(1.8, "meter"),
  58634. default: true
  58635. },
  58636. ]
  58637. ))
  58638. characterMakers.push(() => makeCharacter(
  58639. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58640. {
  58641. front: {
  58642. height: math.unit(5.7174385736, "feet"),
  58643. name: "Front",
  58644. image: {
  58645. source: "./media/characters/nova-polecat/front.svg",
  58646. extra: 1317/1216,
  58647. bottom: 92/1409
  58648. }
  58649. },
  58650. },
  58651. [
  58652. {
  58653. name: "Normal",
  58654. height: math.unit(5.7174385736, "feet"),
  58655. default: true
  58656. },
  58657. ]
  58658. ))
  58659. characterMakers.push(() => makeCharacter(
  58660. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58661. {
  58662. front: {
  58663. height: math.unit(5 + 4/12, "feet"),
  58664. weight: math.unit(250, "lb"),
  58665. name: "Front",
  58666. image: {
  58667. source: "./media/characters/mook/front.svg",
  58668. extra: 1088/1037,
  58669. bottom: 132/1220
  58670. }
  58671. },
  58672. back: {
  58673. height: math.unit(5 + 1/12, "feet"),
  58674. weight: math.unit(250, "lb"),
  58675. name: "Back",
  58676. image: {
  58677. source: "./media/characters/mook/back.svg",
  58678. extra: 1184/905,
  58679. bottom: 96/1280
  58680. }
  58681. },
  58682. head: {
  58683. height: math.unit(1.85, "feet"),
  58684. name: "Head",
  58685. image: {
  58686. source: "./media/characters/mook/head.svg"
  58687. }
  58688. },
  58689. hand: {
  58690. height: math.unit(1.9, "feet"),
  58691. name: "Hand",
  58692. image: {
  58693. source: "./media/characters/mook/hand.svg"
  58694. }
  58695. },
  58696. palm: {
  58697. height: math.unit(1.84, "feet"),
  58698. name: "Palm",
  58699. image: {
  58700. source: "./media/characters/mook/palm.svg"
  58701. }
  58702. },
  58703. foot: {
  58704. height: math.unit(1.44, "feet"),
  58705. name: "Foot",
  58706. image: {
  58707. source: "./media/characters/mook/foot.svg"
  58708. }
  58709. },
  58710. sole: {
  58711. height: math.unit(1.44, "feet"),
  58712. name: "Sole",
  58713. image: {
  58714. source: "./media/characters/mook/sole.svg"
  58715. }
  58716. },
  58717. },
  58718. [
  58719. {
  58720. name: "Normal",
  58721. height: math.unit(5 + 4/12, "feet"),
  58722. default: true
  58723. },
  58724. {
  58725. name: "Big",
  58726. height: math.unit(12, "feet")
  58727. },
  58728. ]
  58729. ))
  58730. characterMakers.push(() => makeCharacter(
  58731. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58732. {
  58733. front: {
  58734. height: math.unit(6 + 10/12, "feet"),
  58735. weight: math.unit(233, "lb"),
  58736. name: "Front",
  58737. image: {
  58738. source: "./media/characters/kayla/front.svg",
  58739. extra: 1850/1775,
  58740. bottom: 65/1915
  58741. }
  58742. },
  58743. },
  58744. [
  58745. {
  58746. name: "Normal",
  58747. height: math.unit(6 + 10/12, "feet"),
  58748. default: true
  58749. },
  58750. {
  58751. name: "Amazonian",
  58752. height: math.unit(12 + 5/12, "feet")
  58753. },
  58754. {
  58755. name: "Mini Giantess",
  58756. height: math.unit(26, "feet")
  58757. },
  58758. {
  58759. name: "Giantess",
  58760. height: math.unit(200, "feet")
  58761. },
  58762. {
  58763. name: "Mega Giantess",
  58764. height: math.unit(2500, "feet")
  58765. },
  58766. {
  58767. name: "City Sized",
  58768. height: math.unit(50, "miles")
  58769. },
  58770. {
  58771. name: "Country Sized",
  58772. height: math.unit(500, "miles")
  58773. },
  58774. {
  58775. name: "Continent Sized",
  58776. height: math.unit(2500, "miles")
  58777. },
  58778. {
  58779. name: "Planet Sized",
  58780. height: math.unit(10000, "miles")
  58781. },
  58782. {
  58783. name: "Star Sized",
  58784. height: math.unit(5e6, "miles")
  58785. },
  58786. {
  58787. name: "Solar System Sized",
  58788. height: math.unit(125, "AU")
  58789. },
  58790. {
  58791. name: "Galaxy Sized",
  58792. height: math.unit(300e3, "lightyears")
  58793. },
  58794. {
  58795. name: "Universe Sized",
  58796. height: math.unit(200e9, "lightyears")
  58797. },
  58798. {
  58799. name: "Multiverse Sized",
  58800. height: math.unit(20, "exauniverses")
  58801. },
  58802. {
  58803. name: "Mother of Existence",
  58804. height: math.unit(1e6, "yottauniverses")
  58805. },
  58806. ]
  58807. ))
  58808. characterMakers.push(() => makeCharacter(
  58809. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58810. {
  58811. side: {
  58812. height: math.unit(9.5, "meters"),
  58813. name: "Side",
  58814. image: {
  58815. source: "./media/characters/kulve-ragnarok/side.svg",
  58816. extra: 364/326,
  58817. bottom: 50/414
  58818. }
  58819. },
  58820. },
  58821. [
  58822. {
  58823. name: "Normal",
  58824. height: math.unit(9.5, "meters"),
  58825. default: true
  58826. },
  58827. ]
  58828. ))
  58829. characterMakers.push(() => makeCharacter(
  58830. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58831. {
  58832. front: {
  58833. height: math.unit(8 + 9/12, "feet"),
  58834. name: "Front",
  58835. image: {
  58836. source: "./media/characters/atlas-goat/front.svg",
  58837. extra: 1462/1323,
  58838. bottom: 12/1474
  58839. }
  58840. },
  58841. },
  58842. [
  58843. {
  58844. name: "Normal",
  58845. height: math.unit(8 + 9/12, "feet"),
  58846. default: true
  58847. },
  58848. {
  58849. name: "Skyline",
  58850. height: math.unit(845, "feet")
  58851. },
  58852. {
  58853. name: "Orbital",
  58854. height: math.unit(93000, "miles")
  58855. },
  58856. {
  58857. name: "Constellation",
  58858. height: math.unit(27000, "lightyears")
  58859. },
  58860. ]
  58861. ))
  58862. characterMakers.push(() => makeCharacter(
  58863. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58864. {
  58865. side: {
  58866. height: math.unit(1.8, "meters"),
  58867. weight: math.unit(120, "kg"),
  58868. name: "Side",
  58869. image: {
  58870. source: "./media/characters/xie-ling/side.svg",
  58871. extra: 646/574,
  58872. bottom: 44/690
  58873. }
  58874. },
  58875. },
  58876. [
  58877. {
  58878. name: "Tiny",
  58879. height: math.unit(1.80, "meters")
  58880. },
  58881. {
  58882. name: "Small",
  58883. height: math.unit(6, "meters")
  58884. },
  58885. {
  58886. name: "Medium",
  58887. height: math.unit(15, "meters")
  58888. },
  58889. {
  58890. name: "Normal",
  58891. height: math.unit(30, "meters"),
  58892. default: true
  58893. },
  58894. {
  58895. name: "Above Normal",
  58896. height: math.unit(60, "meters")
  58897. },
  58898. {
  58899. name: "Big",
  58900. height: math.unit(220, "meters")
  58901. },
  58902. {
  58903. name: "Giant",
  58904. height: math.unit(2.2, "km")
  58905. },
  58906. {
  58907. name: "Macro",
  58908. height: math.unit(25, "km")
  58909. },
  58910. {
  58911. name: "Mega Macro",
  58912. height: math.unit(350, "km")
  58913. },
  58914. {
  58915. name: "Mega Macro+",
  58916. height: math.unit(5000, "km")
  58917. },
  58918. {
  58919. name: "Goddess",
  58920. height: math.unit(3, "multiverses")
  58921. },
  58922. ]
  58923. ))
  58924. characterMakers.push(() => makeCharacter(
  58925. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58926. {
  58927. frontSfw: {
  58928. height: math.unit(5 + 11/12, "feet"),
  58929. weight: math.unit(210, "lb"),
  58930. name: "Front",
  58931. image: {
  58932. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58933. extra: 1928/1821,
  58934. bottom: 45/1973
  58935. }
  58936. },
  58937. backSfw: {
  58938. height: math.unit(5 + 11/12, "feet"),
  58939. weight: math.unit(210, "lb"),
  58940. name: "Back",
  58941. image: {
  58942. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58943. extra: 1920/1813,
  58944. bottom: 34/1954
  58945. }
  58946. },
  58947. frontNsfw: {
  58948. height: math.unit(5 + 11/12, "feet"),
  58949. weight: math.unit(210, "lb"),
  58950. name: "Front (NSFW)",
  58951. image: {
  58952. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58953. extra: 1928/1821,
  58954. bottom: 45/1973
  58955. }
  58956. },
  58957. backNsfw: {
  58958. height: math.unit(5 + 11/12, "feet"),
  58959. weight: math.unit(210, "lb"),
  58960. name: "Back (NSFW)",
  58961. image: {
  58962. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58963. extra: 1920/1813,
  58964. bottom: 34/1954
  58965. }
  58966. },
  58967. },
  58968. [
  58969. {
  58970. name: "Normal",
  58971. height: math.unit(5 + 11/12, "feet"),
  58972. default: true
  58973. },
  58974. {
  58975. name: "Goddess",
  58976. height: math.unit(20 + 3/12, "feet")
  58977. },
  58978. {
  58979. name: "Breaker of Man",
  58980. height: math.unit(329 + 9/12, "feet")
  58981. },
  58982. {
  58983. name: "Solar Justice",
  58984. height: math.unit(0.6, "solarradii")
  58985. },
  58986. {
  58987. name: "She Who Judges",
  58988. height: math.unit(1, "universe")
  58989. },
  58990. ]
  58991. ))
  58992. characterMakers.push(() => makeCharacter(
  58993. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58994. {
  58995. casual_front: {
  58996. height: math.unit(6 + 1/12, "feet"),
  58997. weight: math.unit(190, "lb"),
  58998. preyCapacity: math.unit(1, "people"),
  58999. name: "Front",
  59000. image: {
  59001. source: "./media/characters/managarmr/casual-front.svg",
  59002. extra: 411/381,
  59003. bottom: 15/426
  59004. },
  59005. extraAttributes: {
  59006. "pawSize": {
  59007. name: "Paw Size",
  59008. power: 1,
  59009. type: "length",
  59010. base: math.unit(0.2, "meters")
  59011. },
  59012. },
  59013. form: "casual",
  59014. },
  59015. casual_back: {
  59016. height: math.unit(6 + 1/12, "feet"),
  59017. weight: math.unit(190, "lb"),
  59018. preyCapacity: math.unit(1, "people"),
  59019. name: "Back",
  59020. image: {
  59021. source: "./media/characters/managarmr/casual-back.svg",
  59022. extra: 413/383,
  59023. bottom: 13/426
  59024. },
  59025. extraAttributes: {
  59026. "pawSize": {
  59027. name: "Paw Size",
  59028. power: 1,
  59029. type: "length",
  59030. base: math.unit(0.2, "meters")
  59031. },
  59032. },
  59033. form: "casual",
  59034. },
  59035. base_front: {
  59036. height: math.unit(7, "feet"),
  59037. weight: math.unit(210, "lb"),
  59038. preyCapacity: math.unit(2, "people"),
  59039. name: "Front",
  59040. image: {
  59041. source: "./media/characters/managarmr/base-front.svg",
  59042. extra: 580/485,
  59043. bottom: 32/612
  59044. },
  59045. extraAttributes: {
  59046. "wingspan": {
  59047. name: "Wingspan",
  59048. power: 1,
  59049. type: "length",
  59050. base: math.unit(4, "meters")
  59051. },
  59052. "pawSize": {
  59053. name: "Paw Size",
  59054. power: 1,
  59055. type: "length",
  59056. base: math.unit(0.2, "meters")
  59057. },
  59058. },
  59059. form: "base",
  59060. },
  59061. "true-divine_front": {
  59062. height: math.unit(40, "feet"),
  59063. weight: math.unit(39000, "lb"),
  59064. preyCapacity: math.unit(375, "people"),
  59065. name: "Front",
  59066. image: {
  59067. source: "./media/characters/managarmr/true-divine-front.svg",
  59068. extra: 725/573,
  59069. bottom: 120/845
  59070. },
  59071. extraAttributes: {
  59072. "wingspan": {
  59073. name: "Wingspan",
  59074. power: 1,
  59075. type: "length",
  59076. base: math.unit(20, "meters")
  59077. },
  59078. "pawSize": {
  59079. name: "Paw Size",
  59080. power: 1,
  59081. type: "length",
  59082. base: math.unit(1.5, "meters")
  59083. },
  59084. },
  59085. form: "true-divine",
  59086. },
  59087. },
  59088. [
  59089. {
  59090. name: "Normal",
  59091. height: math.unit(6 + 1/12, "feet"),
  59092. form: "casual",
  59093. default: true
  59094. },
  59095. {
  59096. name: "Normal",
  59097. height: math.unit(7, "feet"),
  59098. form: "base",
  59099. default: true
  59100. },
  59101. ],
  59102. {
  59103. "casual": {
  59104. name: "Casual",
  59105. default: true
  59106. },
  59107. "base": {
  59108. name: "Base",
  59109. },
  59110. "true-divine": {
  59111. name: "True Divine",
  59112. },
  59113. }
  59114. ))
  59115. characterMakers.push(() => makeCharacter(
  59116. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59117. {
  59118. front: {
  59119. height: math.unit(1.8, "meters"),
  59120. weight: math.unit(110, "kg"),
  59121. name: "Front",
  59122. image: {
  59123. source: "./media/characters/mystra/front.svg",
  59124. extra: 529/442,
  59125. bottom: 31/560
  59126. }
  59127. },
  59128. frontLewd: {
  59129. height: math.unit(1.8, "meters"),
  59130. weight: math.unit(110, "kg"),
  59131. name: "Front (Lewd)",
  59132. image: {
  59133. source: "./media/characters/mystra/front-lewd.svg",
  59134. extra: 529/442,
  59135. bottom: 31/560
  59136. }
  59137. },
  59138. head: {
  59139. height: math.unit(1.63, "feet"),
  59140. name: "Head",
  59141. image: {
  59142. source: "./media/characters/mystra/head.svg"
  59143. }
  59144. },
  59145. paw: {
  59146. height: math.unit(1.9, "feet"),
  59147. name: "Paw",
  59148. image: {
  59149. source: "./media/characters/mystra/paw.svg"
  59150. }
  59151. },
  59152. },
  59153. [
  59154. {
  59155. name: "Incognito",
  59156. height: math.unit(2.3, "meters")
  59157. },
  59158. {
  59159. name: "Small Macro",
  59160. height: math.unit(300, "meters")
  59161. },
  59162. {
  59163. name: "Small Mega",
  59164. height: math.unit(2, "km")
  59165. },
  59166. {
  59167. name: "Mega",
  59168. height: math.unit(30, "km")
  59169. },
  59170. {
  59171. name: "Small Giga",
  59172. height: math.unit(100, "km")
  59173. },
  59174. {
  59175. name: "Giga",
  59176. height: math.unit(1000, "km"),
  59177. default: true
  59178. },
  59179. {
  59180. name: "Continental",
  59181. height: math.unit(5000, "km")
  59182. },
  59183. {
  59184. name: "Terra",
  59185. height: math.unit(20000, "km")
  59186. },
  59187. {
  59188. name: "Solar",
  59189. height: math.unit(2e6, "km")
  59190. },
  59191. {
  59192. name: "Galactic",
  59193. height: math.unit(528502, "lightyears")
  59194. },
  59195. {
  59196. name: "Universal",
  59197. height: math.unit(20, "universes")
  59198. },
  59199. ]
  59200. ))
  59201. characterMakers.push(() => makeCharacter(
  59202. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59203. {
  59204. front: {
  59205. height: math.unit(2, "meters"),
  59206. weight: math.unit(140, "kg"),
  59207. name: "Front",
  59208. image: {
  59209. source: "./media/characters/caleb/front.svg",
  59210. extra: 873/817,
  59211. bottom: 47/920
  59212. }
  59213. },
  59214. back: {
  59215. height: math.unit(2, "meters"),
  59216. weight: math.unit(140, "kg"),
  59217. name: "Back",
  59218. image: {
  59219. source: "./media/characters/caleb/back.svg",
  59220. extra: 877/828,
  59221. bottom: 24/901
  59222. }
  59223. },
  59224. snakeTail: {
  59225. height: math.unit(1.44, "feet"),
  59226. name: "Snake Tail",
  59227. image: {
  59228. source: "./media/characters/caleb/snake-tail.svg"
  59229. }
  59230. },
  59231. dick: {
  59232. height: math.unit(2.6, "feet"),
  59233. name: "Dick",
  59234. image: {
  59235. source: "./media/characters/caleb/dick.svg"
  59236. }
  59237. },
  59238. },
  59239. [
  59240. {
  59241. name: "Incognito",
  59242. height: math.unit(3, "meters")
  59243. },
  59244. {
  59245. name: "Home Size",
  59246. height: math.unit(200, "meters"),
  59247. default: true
  59248. },
  59249. {
  59250. name: "Macro",
  59251. height: math.unit(500, "meters")
  59252. },
  59253. {
  59254. name: "Big Macro",
  59255. height: math.unit(5, "km")
  59256. },
  59257. {
  59258. name: "Giga",
  59259. height: math.unit(250, "km")
  59260. },
  59261. {
  59262. name: "Giga+",
  59263. height: math.unit(5000, "km")
  59264. },
  59265. {
  59266. name: "Small Terra",
  59267. height: math.unit(35e3, "km")
  59268. },
  59269. {
  59270. name: "Terra",
  59271. height: math.unit(2e6, "km")
  59272. },
  59273. {
  59274. name: "Terra+",
  59275. height: math.unit(1.5e6, "km")
  59276. },
  59277. ]
  59278. ))
  59279. characterMakers.push(() => makeCharacter(
  59280. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59281. {
  59282. front: {
  59283. height: math.unit(2, "meters"),
  59284. weight: math.unit(120, "kg"),
  59285. name: "Front",
  59286. image: {
  59287. source: "./media/characters/gilirian/front.svg",
  59288. extra: 805/737,
  59289. bottom: 13/818
  59290. }
  59291. },
  59292. side: {
  59293. height: math.unit(2, "meters"),
  59294. weight: math.unit(120, "kg"),
  59295. name: "Side",
  59296. image: {
  59297. source: "./media/characters/gilirian/side.svg",
  59298. extra: 810/746,
  59299. bottom: 6/816
  59300. }
  59301. },
  59302. back: {
  59303. height: math.unit(2, "meters"),
  59304. weight: math.unit(120, "kg"),
  59305. name: "Back",
  59306. image: {
  59307. source: "./media/characters/gilirian/back.svg",
  59308. extra: 815/745,
  59309. bottom: 15/830
  59310. }
  59311. },
  59312. frontNsfw: {
  59313. height: math.unit(2, "meters"),
  59314. weight: math.unit(120, "kg"),
  59315. name: "Front (NSFW)",
  59316. image: {
  59317. source: "./media/characters/gilirian/front-nsfw.svg",
  59318. extra: 805/737,
  59319. bottom: 13/818
  59320. }
  59321. },
  59322. sideNsfw: {
  59323. height: math.unit(2, "meters"),
  59324. weight: math.unit(120, "kg"),
  59325. name: "Side (NSFW)",
  59326. image: {
  59327. source: "./media/characters/gilirian/side-nsfw.svg",
  59328. extra: 810/746,
  59329. bottom: 6/816
  59330. }
  59331. },
  59332. },
  59333. [
  59334. {
  59335. name: "Incognito",
  59336. height: math.unit(2, "meters"),
  59337. default: true
  59338. },
  59339. {
  59340. name: "Macro",
  59341. height: math.unit(250, "meters")
  59342. },
  59343. {
  59344. name: "Big Macro",
  59345. height: math.unit(1500, "meters")
  59346. },
  59347. {
  59348. name: "Mega",
  59349. height: math.unit(40, "km")
  59350. },
  59351. {
  59352. name: "Giga",
  59353. height: math.unit(300, "km")
  59354. },
  59355. {
  59356. name: "Extra Giga",
  59357. height: math.unit(5000, "km")
  59358. },
  59359. {
  59360. name: "Small Terra",
  59361. height: math.unit(10e3, "km")
  59362. },
  59363. {
  59364. name: "Terra",
  59365. height: math.unit(3e5, "km")
  59366. },
  59367. {
  59368. name: "Galactic",
  59369. height: math.unit(369950, "lightyears")
  59370. },
  59371. ]
  59372. ))
  59373. characterMakers.push(() => makeCharacter(
  59374. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59375. {
  59376. front: {
  59377. height: math.unit(2.5, "meters"),
  59378. weight: math.unit(230, "lb"),
  59379. name: "Front",
  59380. image: {
  59381. source: "./media/characters/tarken/front.svg",
  59382. extra: 764/720,
  59383. bottom: 49/813
  59384. }
  59385. },
  59386. back: {
  59387. height: math.unit(2.5, "meters"),
  59388. weight: math.unit(230, "lb"),
  59389. name: "Back",
  59390. image: {
  59391. source: "./media/characters/tarken/back.svg",
  59392. extra: 756/720,
  59393. bottom: 35/791
  59394. }
  59395. },
  59396. frontNsfw: {
  59397. height: math.unit(2.5, "meters"),
  59398. weight: math.unit(230, "lb"),
  59399. name: "Front (NSFW)",
  59400. image: {
  59401. source: "./media/characters/tarken/front-nsfw.svg",
  59402. extra: 764/720,
  59403. bottom: 49/813
  59404. }
  59405. },
  59406. backNsfw: {
  59407. height: math.unit(2.5, "meters"),
  59408. weight: math.unit(230, "lb"),
  59409. name: "Back (NSFW)",
  59410. image: {
  59411. source: "./media/characters/tarken/back-nsfw.svg",
  59412. extra: 756/720,
  59413. bottom: 35/791
  59414. }
  59415. },
  59416. head: {
  59417. height: math.unit(2.22, "feet"),
  59418. name: "Head",
  59419. image: {
  59420. source: "./media/characters/tarken/head.svg"
  59421. }
  59422. },
  59423. tail: {
  59424. height: math.unit(5.25, "feet"),
  59425. name: "Tail",
  59426. image: {
  59427. source: "./media/characters/tarken/tail.svg"
  59428. }
  59429. },
  59430. dick: {
  59431. height: math.unit(1.95, "feet"),
  59432. name: "Dick",
  59433. image: {
  59434. source: "./media/characters/tarken/dick.svg"
  59435. }
  59436. },
  59437. hand: {
  59438. height: math.unit(1.78, "feet"),
  59439. name: "Hand",
  59440. image: {
  59441. source: "./media/characters/tarken/hand.svg"
  59442. }
  59443. },
  59444. beam: {
  59445. height: math.unit(1.5, "feet"),
  59446. name: "Beam",
  59447. image: {
  59448. source: "./media/characters/tarken/beam.svg"
  59449. }
  59450. },
  59451. },
  59452. [
  59453. {
  59454. name: "Original Size",
  59455. height: math.unit(2.5, "meters")
  59456. },
  59457. {
  59458. name: "Macro",
  59459. height: math.unit(150, "meters"),
  59460. default: true
  59461. },
  59462. {
  59463. name: "Macro+",
  59464. height: math.unit(300, "meters")
  59465. },
  59466. {
  59467. name: "Mega",
  59468. height: math.unit(2, "km")
  59469. },
  59470. {
  59471. name: "Mega+",
  59472. height: math.unit(35, "km")
  59473. },
  59474.  {
  59475. name: "Mega++",
  59476. height: math.unit(60, "km")
  59477. },
  59478. {
  59479. name: "Giga",
  59480. height: math.unit(200, "km")
  59481. },
  59482. {
  59483. name: "Giga+",
  59484. height: math.unit(2500, "km")
  59485. },
  59486. {
  59487. name: "Giga++",
  59488. height: math.unit(6600, "km")
  59489. },
  59490. {
  59491. name: "Terra",
  59492. height: math.unit(20000, "km")
  59493. },
  59494. {
  59495. name: "Terra+",
  59496. height: math.unit(300000, "km")
  59497. },
  59498. ]
  59499. ))
  59500. characterMakers.push(() => makeCharacter(
  59501. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59502. {
  59503. magpie_dressed: {
  59504. height: math.unit(1.7, "meters"),
  59505. weight: math.unit(70, "kg"),
  59506. name: "Dressed",
  59507. image: {
  59508. source: "./media/characters/otreus/magpie-dressed.svg",
  59509. extra: 691/672,
  59510. bottom: 116/807
  59511. },
  59512. form: "magpie",
  59513. default: true
  59514. },
  59515. magpie_nude: {
  59516. height: math.unit(1.7, "meters"),
  59517. weight: math.unit(70, "kg"),
  59518. name: "Nude",
  59519. image: {
  59520. source: "./media/characters/otreus/magpie-nude.svg",
  59521. extra: 691/672,
  59522. bottom: 116/807
  59523. },
  59524. form: "magpie",
  59525. },
  59526. magpie_dressedLewd: {
  59527. height: math.unit(1.7, "meters"),
  59528. weight: math.unit(70, "kg"),
  59529. name: "Dressed (Lewd)",
  59530. image: {
  59531. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59532. extra: 691/672,
  59533. bottom: 116/807
  59534. },
  59535. form: "magpie",
  59536. },
  59537. magpie_nudeLewd: {
  59538. height: math.unit(1.7, "meters"),
  59539. weight: math.unit(70, "kg"),
  59540. name: "Nude (Lewd)",
  59541. image: {
  59542. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59543. extra: 691/672,
  59544. bottom: 116/807
  59545. },
  59546. form: "magpie",
  59547. },
  59548. magpie_leftFoot: {
  59549. height: math.unit(1.58, "feet"),
  59550. name: "Left Foot",
  59551. image: {
  59552. source: "./media/characters/otreus/magpie-left-foot.svg"
  59553. },
  59554. form: "magpie",
  59555. },
  59556. magpie_rightFoot: {
  59557. height: math.unit(1.58, "feet"),
  59558. name: "Right Foot",
  59559. image: {
  59560. source: "./media/characters/otreus/magpie-right-foot.svg"
  59561. },
  59562. form: "magpie",
  59563. },
  59564. magpie_wingspan: {
  59565. height: math.unit(2, "meters"),
  59566. weight: math.unit(70, "kg"),
  59567. name: "Wingspan",
  59568. image: {
  59569. source: "./media/characters/otreus/magpie-wingspan.svg"
  59570. },
  59571. extraAttributes: {
  59572. "wingspan": {
  59573. name: "Wingspan",
  59574. power: 1,
  59575. type: "length",
  59576. base: math.unit(3.35, "meters")
  59577. },
  59578. },
  59579. form: "magpie",
  59580. },
  59581. hippogriff_dressed: {
  59582. height: math.unit(1.7, "meters"),
  59583. weight: math.unit(70, "kg"),
  59584. name: "Dressed",
  59585. image: {
  59586. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59587. extra: 710/689,
  59588. bottom: 67/777
  59589. },
  59590. form: "hippogriff",
  59591. default: true
  59592. },
  59593. hippogriff_nude: {
  59594. height: math.unit(1.7, "meters"),
  59595. weight: math.unit(70, "kg"),
  59596. name: "Nude",
  59597. image: {
  59598. source: "./media/characters/otreus/hippogriff-nude.svg",
  59599. extra: 710/689,
  59600. bottom: 67/777
  59601. },
  59602. form: "hippogriff",
  59603. },
  59604. hippogriff_dressedLewd: {
  59605. height: math.unit(1.7, "meters"),
  59606. weight: math.unit(70, "kg"),
  59607. name: "Dressed (Lewd)",
  59608. image: {
  59609. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59610. extra: 710/689,
  59611. bottom: 67/777
  59612. },
  59613. form: "hippogriff",
  59614. },
  59615. hippogriff_nudeLewd: {
  59616. height: math.unit(1.7, "meters"),
  59617. weight: math.unit(70, "kg"),
  59618. name: "Nude (Lewd)",
  59619. image: {
  59620. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59621. extra: 710/689,
  59622. bottom: 67/777
  59623. },
  59624. form: "hippogriff",
  59625. },
  59626. },
  59627. [
  59628. {
  59629. name: "Original Size",
  59630. height: math.unit(1.7, "meters"),
  59631. allForms: true
  59632. },
  59633. {
  59634. name: "Incognito Size",
  59635. height: math.unit(2, "meters"),
  59636. allForms: true
  59637. },
  59638. {
  59639. name: "Mega",
  59640. height: math.unit(2, "km"),
  59641. allForms: true
  59642. },
  59643. {
  59644. name: "Mega+",
  59645. height: math.unit(40, "km"),
  59646. allForms: true
  59647. },
  59648. {
  59649. name: "Giga",
  59650. height: math.unit(250, "km"),
  59651. allForms: true
  59652. },
  59653. {
  59654. name: "Giga+",
  59655. height: math.unit(3000, "km"),
  59656. allForms: true
  59657. },
  59658. {
  59659. name: "Terra",
  59660. height: math.unit(20000, "km"),
  59661. allForms: true
  59662. },
  59663. {
  59664. name: "Solar (Home Size)",
  59665. height: math.unit(3e6, "km"),
  59666. allForms: true,
  59667. default: true
  59668. },
  59669. ],
  59670. {
  59671. "magpie": {
  59672. name: "Magpie",
  59673. default: true
  59674. },
  59675. "hippogriff": {
  59676. name: "Hippogriff",
  59677. },
  59678. }
  59679. ))
  59680. characterMakers.push(() => makeCharacter(
  59681. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59682. {
  59683. frontDressed: {
  59684. height: math.unit(1.8, "meters"),
  59685. weight: math.unit(90, "kg"),
  59686. name: "Front (Dressed)",
  59687. image: {
  59688. source: "./media/characters/thalia/front-dressed.svg",
  59689. extra: 478/402,
  59690. bottom: 55/533
  59691. }
  59692. },
  59693. backDressed: {
  59694. height: math.unit(1.8, "meters"),
  59695. weight: math.unit(90, "kg"),
  59696. name: "Back (Dressed)",
  59697. image: {
  59698. source: "./media/characters/thalia/back-dressed.svg",
  59699. extra: 500/424,
  59700. bottom: 15/515
  59701. }
  59702. },
  59703. frontNude: {
  59704. height: math.unit(1.8, "meters"),
  59705. weight: math.unit(90, "kg"),
  59706. name: "Front (Nude)",
  59707. image: {
  59708. source: "./media/characters/thalia/front-nude.svg",
  59709. extra: 478/402,
  59710. bottom: 55/533
  59711. }
  59712. },
  59713. backNude: {
  59714. height: math.unit(1.8, "meters"),
  59715. weight: math.unit(90, "kg"),
  59716. name: "Back (Nude)",
  59717. image: {
  59718. source: "./media/characters/thalia/back-nude.svg",
  59719. extra: 500/424,
  59720. bottom: 15/515
  59721. }
  59722. },
  59723. },
  59724. [
  59725. {
  59726. name: "Incognito",
  59727. height: math.unit(3, "meters")
  59728. },
  59729. {
  59730. name: "Macro",
  59731. height: math.unit(500, "meters")
  59732. },
  59733. {
  59734. name: "Mega",
  59735. height: math.unit(5, "km")
  59736. },
  59737. {
  59738. name: "Mega+",
  59739. height: math.unit(30, "km")
  59740. },
  59741. {
  59742. name: "Giga",
  59743. height: math.unit(350, "km")
  59744. },
  59745. {
  59746. name: "Giga+",
  59747. height: math.unit(4000, "km")
  59748. },
  59749. {
  59750. name: "Terra",
  59751. height: math.unit(35000, "km")
  59752. },
  59753. {
  59754. name: "Original Size",
  59755. height: math.unit(130000, "km")
  59756. },
  59757. {
  59758. name: "Solar (Home Size)",
  59759. height: math.unit(4e6, "km"),
  59760. default: true
  59761. },
  59762. ]
  59763. ))
  59764. characterMakers.push(() => makeCharacter(
  59765. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59766. {
  59767. front: {
  59768. height: math.unit(1.8, "meters"),
  59769. weight: math.unit(95, "kg"),
  59770. name: "Front",
  59771. image: {
  59772. source: "./media/characters/shango/front.svg",
  59773. extra: 1925/1774,
  59774. bottom: 67/1992
  59775. }
  59776. },
  59777. back: {
  59778. height: math.unit(1.8, "meters"),
  59779. weight: math.unit(95, "kg"),
  59780. name: "Back",
  59781. image: {
  59782. source: "./media/characters/shango/back.svg",
  59783. extra: 1915/1766,
  59784. bottom: 52/1967
  59785. }
  59786. },
  59787. frontLewd: {
  59788. height: math.unit(1.8, "meters"),
  59789. weight: math.unit(95, "kg"),
  59790. name: "Front (Lewd)",
  59791. image: {
  59792. source: "./media/characters/shango/front-lewd.svg",
  59793. extra: 1925/1774,
  59794. bottom: 67/1992
  59795. }
  59796. },
  59797. backLewd: {
  59798. height: math.unit(1.8, "meters"),
  59799. weight: math.unit(95, "kg"),
  59800. name: "Back (Lewd)",
  59801. image: {
  59802. source: "./media/characters/shango/back-lewd.svg",
  59803. extra: 1915/1766,
  59804. bottom: 52/1967
  59805. }
  59806. },
  59807. maw: {
  59808. height: math.unit(1.64, "feet"),
  59809. name: "Maw",
  59810. image: {
  59811. source: "./media/characters/shango/maw.svg"
  59812. }
  59813. },
  59814. dick: {
  59815. height: math.unit(2.14, "feet"),
  59816. name: "Dick",
  59817. image: {
  59818. source: "./media/characters/shango/dick.svg"
  59819. }
  59820. },
  59821. },
  59822. [
  59823. {
  59824. name: "Incognito",
  59825. height: math.unit(1.8, "meters")
  59826. },
  59827. {
  59828. name: "Home Size",
  59829. height: math.unit(60, "meters"),
  59830. default: true
  59831. },
  59832. {
  59833. name: "Macro",
  59834. height: math.unit(450, "meters")
  59835. },
  59836. {
  59837. name: "Mega",
  59838. height: math.unit(6, "km")
  59839. },
  59840. {
  59841. name: "Mega+",
  59842. height: math.unit(35, "km")
  59843. },
  59844. {
  59845. name: "Giga",
  59846. height: math.unit(500, "km")
  59847. },
  59848. {
  59849. name: "Giga+",
  59850. height: math.unit(5000, "km")
  59851. },
  59852. {
  59853. name: "Terra",
  59854. height: math.unit(60000, "km")
  59855. },
  59856. {
  59857. name: "Terra+",
  59858. height: math.unit(400000, "km")
  59859. },
  59860. ]
  59861. ))
  59862. characterMakers.push(() => makeCharacter(
  59863. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59864. {
  59865. front: {
  59866. height: math.unit(2, "meters"),
  59867. weight: math.unit(95, "kg"),
  59868. name: "Front",
  59869. image: {
  59870. source: "./media/characters/osiris-gryphon/front.svg",
  59871. extra: 1508/1313,
  59872. bottom: 87/1595
  59873. }
  59874. },
  59875. back: {
  59876. height: math.unit(2, "meters"),
  59877. weight: math.unit(95, "kg"),
  59878. name: "Back",
  59879. image: {
  59880. source: "./media/characters/osiris-gryphon/back.svg",
  59881. extra: 1436/1309,
  59882. bottom: 64/1500
  59883. }
  59884. },
  59885. frontLewd: {
  59886. height: math.unit(2, "meters"),
  59887. weight: math.unit(95, "kg"),
  59888. name: "Front-lewd",
  59889. image: {
  59890. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59891. extra: 1508/1313,
  59892. bottom: 87/1595
  59893. }
  59894. },
  59895. wing: {
  59896. height: math.unit(6.3333, "feet"),
  59897. name: "Wing",
  59898. image: {
  59899. source: "./media/characters/osiris-gryphon/wing.svg"
  59900. }
  59901. },
  59902. },
  59903. [
  59904. {
  59905. name: "Incognito",
  59906. height: math.unit(2, "meters")
  59907. },
  59908. {
  59909. name: "Home Size",
  59910. height: math.unit(30, "meters"),
  59911. default: true
  59912. },
  59913. {
  59914. name: "Macro",
  59915. height: math.unit(100, "meters")
  59916. },
  59917. {
  59918. name: "Macro+",
  59919. height: math.unit(350, "meters")
  59920. },
  59921. {
  59922. name: "Mega",
  59923. height: math.unit(40, "km")
  59924. },
  59925. {
  59926. name: "Giga",
  59927. height: math.unit(300, "km")
  59928. },
  59929. {
  59930. name: "Giga+",
  59931. height: math.unit(2000, "km")
  59932. },
  59933. {
  59934. name: "Terra",
  59935. height: math.unit(30000, "km")
  59936. },
  59937. ]
  59938. ))
  59939. characterMakers.push(() => makeCharacter(
  59940. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59941. {
  59942. front: {
  59943. height: math.unit(2.5, "meters"),
  59944. weight: math.unit(200, "kg"),
  59945. name: "Front",
  59946. image: {
  59947. source: "./media/characters/atlas-dragon/front.svg",
  59948. extra: 745/462,
  59949. bottom: 36/781
  59950. }
  59951. },
  59952. back: {
  59953. height: math.unit(2.5, "meters"),
  59954. weight: math.unit(200, "kg"),
  59955. name: "Back",
  59956. image: {
  59957. source: "./media/characters/atlas-dragon/back.svg",
  59958. extra: 848/822,
  59959. bottom: 57/905
  59960. }
  59961. },
  59962. frontLewd: {
  59963. height: math.unit(2.5, "meters"),
  59964. weight: math.unit(200, "kg"),
  59965. name: "Front (Lewd)",
  59966. image: {
  59967. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59968. extra: 745/462,
  59969. bottom: 36/781
  59970. }
  59971. },
  59972. backLewd: {
  59973. height: math.unit(2.5, "meters"),
  59974. weight: math.unit(200, "kg"),
  59975. name: "Back (Lewd)",
  59976. image: {
  59977. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59978. extra: 848/822,
  59979. bottom: 57/905
  59980. }
  59981. },
  59982. },
  59983. [
  59984. {
  59985. name: "Incognito",
  59986. height: math.unit(2.5, "meters")
  59987. },
  59988. {
  59989. name: "Small Macro",
  59990. height: math.unit(50, "meters")
  59991. },
  59992. {
  59993. name: "Macro",
  59994. height: math.unit(350, "meters")
  59995. },
  59996. {
  59997. name: "Mega",
  59998. height: math.unit(5.5, "kilometers")
  59999. },
  60000. {
  60001. name: "Mega+",
  60002. height: math.unit(50, "km")
  60003. },
  60004. {
  60005. name: "Giga",
  60006. height: math.unit(350, "km")
  60007. },
  60008. {
  60009. name: "Giga+",
  60010. height: math.unit(2000, "km")
  60011. },
  60012. {
  60013. name: "Giga++",
  60014. height: math.unit(6500, "km")
  60015. },
  60016. {
  60017. name: "Terra",
  60018. height: math.unit(30000, "km")
  60019. },
  60020. {
  60021. name: "Terra+",
  60022. height: math.unit(250000, "km")
  60023. },
  60024. {
  60025. name: "True Size",
  60026. height: math.unit(100, "multiverses"),
  60027. default: true
  60028. },
  60029. ]
  60030. ))
  60031. characterMakers.push(() => makeCharacter(
  60032. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60033. {
  60034. front: {
  60035. height: math.unit(1.8, "m"),
  60036. weight: math.unit(120, "kg"),
  60037. name: "Front",
  60038. image: {
  60039. source: "./media/characters/chey/front.svg",
  60040. extra: 1359/1270,
  60041. bottom: 18/1377
  60042. }
  60043. },
  60044. arm: {
  60045. height: math.unit(2.05, "feet"),
  60046. name: "Arm",
  60047. image: {
  60048. source: "./media/characters/chey/arm.svg"
  60049. }
  60050. },
  60051. head: {
  60052. height: math.unit(1.89, "feet"),
  60053. name: "Head",
  60054. image: {
  60055. source: "./media/characters/chey/head.svg"
  60056. }
  60057. },
  60058. },
  60059. [
  60060. {
  60061. name: "Original Size",
  60062. height: math.unit(5, "cm")
  60063. },
  60064. {
  60065. name: "Incognito Size",
  60066. height: math.unit(2.4, "m")
  60067. },
  60068. {
  60069. name: "Home Size",
  60070. height: math.unit(200, "meters"),
  60071. default: true
  60072. },
  60073. {
  60074. name: "Mega",
  60075. height: math.unit(2, "km")
  60076. },
  60077. {
  60078. name: "Giga (Preferred Size)",
  60079. height: math.unit(2000, "km")
  60080. },
  60081. {
  60082. name: "Giga+",
  60083. height: math.unit(6000, "km")
  60084. },
  60085. {
  60086. name: "Terra",
  60087. height: math.unit(17000, "km")
  60088. },
  60089. {
  60090. name: "Terra+",
  60091. height: math.unit(75000, "km")
  60092. },
  60093. {
  60094. name: "Terra++",
  60095. height: math.unit(225000, "km")
  60096. },
  60097. ]
  60098. ))
  60099. characterMakers.push(() => makeCharacter(
  60100. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60101. {
  60102. side: {
  60103. height: math.unit(7.8, "meters"),
  60104. name: "Side",
  60105. image: {
  60106. source: "./media/characters/ragnarok/side.svg",
  60107. extra: 725/621,
  60108. bottom: 72/797
  60109. }
  60110. },
  60111. },
  60112. [
  60113. {
  60114. name: "Normal",
  60115. height: math.unit(7.8, "meters"),
  60116. default: true
  60117. },
  60118. ]
  60119. ))
  60120. characterMakers.push(() => makeCharacter(
  60121. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60122. {
  60123. hyena_front: {
  60124. height: math.unit(2.1, "meters"),
  60125. weight: math.unit(110, "kg"),
  60126. name: "Front",
  60127. image: {
  60128. source: "./media/characters/nima/hyena-front.svg",
  60129. extra: 1904/1796,
  60130. bottom: 67/1971
  60131. },
  60132. form: "hyena",
  60133. },
  60134. hyena_back: {
  60135. height: math.unit(2.1, "meters"),
  60136. weight: math.unit(110, "kg"),
  60137. name: "Back",
  60138. image: {
  60139. source: "./media/characters/nima/hyena-back.svg",
  60140. extra: 1964/1884,
  60141. bottom: 35/1999
  60142. },
  60143. form: "hyena",
  60144. },
  60145. shark_front: {
  60146. height: math.unit(1.95, "meters"),
  60147. weight: math.unit(110, "kg"),
  60148. name: "Front",
  60149. image: {
  60150. source: "./media/characters/nima/shark-front.svg",
  60151. extra: 2238/2013,
  60152. bottom: 0/223
  60153. },
  60154. form: "shark",
  60155. },
  60156. paw: {
  60157. height: math.unit(1, "feet"),
  60158. name: "Paw",
  60159. image: {
  60160. source: "./media/characters/nima/paw.svg"
  60161. }
  60162. },
  60163. circlet: {
  60164. height: math.unit(0.3, "feet"),
  60165. name: "Circlet",
  60166. image: {
  60167. source: "./media/characters/nima/circlet.svg"
  60168. }
  60169. },
  60170. necklace: {
  60171. height: math.unit(1.2, "feet"),
  60172. name: "Necklace",
  60173. image: {
  60174. source: "./media/characters/nima/necklace.svg"
  60175. }
  60176. },
  60177. bracelet: {
  60178. height: math.unit(0.51, "feet"),
  60179. name: "Bracelet",
  60180. image: {
  60181. source: "./media/characters/nima/bracelet.svg"
  60182. }
  60183. },
  60184. armband: {
  60185. height: math.unit(1.3, "feet"),
  60186. name: "Armband",
  60187. image: {
  60188. source: "./media/characters/nima/armband.svg"
  60189. }
  60190. },
  60191. },
  60192. [
  60193. {
  60194. name: "Incognito",
  60195. height: math.unit(2.1, "meters"),
  60196. allForms: true
  60197. },
  60198. {
  60199. name: "Small Macro",
  60200. height: math.unit(50, "meters"),
  60201. allForms: true
  60202. },
  60203. {
  60204. name: "Macro",
  60205. height: math.unit(200, "meters"),
  60206. allForms: true
  60207. },
  60208. {
  60209. name: "Mega",
  60210. height: math.unit(2.5, "km"),
  60211. allForms: true
  60212. },
  60213. {
  60214. name: "Mega+",
  60215. height: math.unit(30, "km"),
  60216. allForms: true
  60217. },
  60218. {
  60219. name: "Giga (Home Size)",
  60220. height: math.unit(400, "km"),
  60221. allForms: true,
  60222. default: true
  60223. },
  60224. {
  60225. name: "Giga+",
  60226. height: math.unit(2500, "km"),
  60227. allForms: true
  60228. },
  60229. {
  60230. name: "Giga++",
  60231. height: math.unit(8000, "km"),
  60232. allForms: true
  60233. },
  60234. {
  60235. name: "Terra",
  60236. height: math.unit(20000, "km"),
  60237. allForms: true
  60238. },
  60239. {
  60240. name: "Terra+",
  60241. height: math.unit(70000, "km"),
  60242. allForms: true
  60243. },
  60244. {
  60245. name: "Terra++",
  60246. height: math.unit(600000, "km"),
  60247. allForms: true
  60248. },
  60249. {
  60250. name: "Galactic",
  60251. height: math.unit(40, "galaxies"),
  60252. allForms: true
  60253. },
  60254. {
  60255. name: "Universal",
  60256. height: math.unit(40, "universes"),
  60257. allForms: true
  60258. },
  60259. ],
  60260. {
  60261. "hyena": {
  60262. name: "Hyena",
  60263. default: true
  60264. },
  60265. "shark": {
  60266. name: "Shark",
  60267. },
  60268. }
  60269. ))
  60270. characterMakers.push(() => makeCharacter(
  60271. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60272. {
  60273. anthro_front: {
  60274. height: math.unit(1.5, "meters"),
  60275. name: "Front",
  60276. image: {
  60277. source: "./media/characters/adelaide/anthro-front.svg",
  60278. extra: 860/783,
  60279. bottom: 60/920
  60280. },
  60281. form: "anthro",
  60282. default: true
  60283. },
  60284. hand: {
  60285. height: math.unit(0.65, "feet"),
  60286. name: "Hand",
  60287. image: {
  60288. source: "./media/characters/adelaide/hand.svg"
  60289. },
  60290. form: "anthro"
  60291. },
  60292. foot: {
  60293. height: math.unit(1.38 * 259 / 314, "feet"),
  60294. name: "Foot",
  60295. image: {
  60296. source: "./media/characters/adelaide/foot.svg",
  60297. extra: 259/259,
  60298. bottom: 55/314
  60299. },
  60300. form: "anthro"
  60301. },
  60302. feather: {
  60303. height: math.unit(0.85, "feet"),
  60304. name: "Feather",
  60305. image: {
  60306. source: "./media/characters/adelaide/feather.svg"
  60307. },
  60308. form: "anthro"
  60309. },
  60310. feral_side: {
  60311. height: math.unit(1, "meters"),
  60312. name: "Side",
  60313. image: {
  60314. source: "./media/characters/adelaide/feral-side.svg",
  60315. extra: 550/467,
  60316. bottom: 37/587
  60317. },
  60318. form: "feral",
  60319. default: true
  60320. },
  60321. feral_hand: {
  60322. height: math.unit(0.58, "feet"),
  60323. name: "Hand",
  60324. image: {
  60325. source: "./media/characters/adelaide/hand.svg"
  60326. },
  60327. form: "feral"
  60328. },
  60329. feral_foot: {
  60330. height: math.unit(1.2 * 259 / 314, "feet"),
  60331. name: "Foot",
  60332. image: {
  60333. source: "./media/characters/adelaide/foot.svg",
  60334. extra: 259/259,
  60335. bottom: 55/314
  60336. },
  60337. form: "feral"
  60338. },
  60339. feral_feather: {
  60340. height: math.unit(0.63, "feet"),
  60341. name: "Feather",
  60342. image: {
  60343. source: "./media/characters/adelaide/feather.svg"
  60344. },
  60345. form: "feral"
  60346. },
  60347. },
  60348. [
  60349. {
  60350. name: "Normal",
  60351. height: math.unit(1.5, "meters"),
  60352. form: "anthro",
  60353. default: true
  60354. },
  60355. {
  60356. name: "Normal",
  60357. height: math.unit(1, "meters"),
  60358. form: "feral",
  60359. default: true
  60360. },
  60361. ],
  60362. {
  60363. "anthro": {
  60364. name: "Anthro",
  60365. default: true
  60366. },
  60367. "feral": {
  60368. name: "Feral",
  60369. },
  60370. }
  60371. ))
  60372. characterMakers.push(() => makeCharacter(
  60373. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60374. {
  60375. front: {
  60376. height: math.unit(2.5, "meters"),
  60377. name: "Front",
  60378. image: {
  60379. source: "./media/characters/goa/front.svg",
  60380. extra: 1109/1013,
  60381. bottom: 150/1259
  60382. }
  60383. },
  60384. },
  60385. [
  60386. {
  60387. name: "Normal",
  60388. height: math.unit(2.5, "meters"),
  60389. default: true
  60390. },
  60391. ]
  60392. ))
  60393. characterMakers.push(() => makeCharacter(
  60394. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60395. {
  60396. front: {
  60397. height: math.unit(2, "meters"),
  60398. weight: math.unit(100, "kg"),
  60399. name: "Front",
  60400. image: {
  60401. source: "./media/characters/kiki-weavile/front.svg",
  60402. extra: 357/332,
  60403. bottom: 60/417
  60404. }
  60405. },
  60406. },
  60407. [
  60408. {
  60409. name: "Normal",
  60410. height: math.unit(2, "meters"),
  60411. default: true
  60412. },
  60413. ]
  60414. ))
  60415. characterMakers.push(() => makeCharacter(
  60416. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60417. {
  60418. side: {
  60419. height: math.unit(1.6, "meters"),
  60420. name: "Side",
  60421. image: {
  60422. source: "./media/characters/liza/side.svg",
  60423. extra: 943/915,
  60424. bottom: 72/1015
  60425. }
  60426. },
  60427. },
  60428. [
  60429. {
  60430. name: "Normal",
  60431. height: math.unit(1.6, "meters"),
  60432. default: true
  60433. },
  60434. ]
  60435. ))
  60436. characterMakers.push(() => makeCharacter(
  60437. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60438. {
  60439. side: {
  60440. height: math.unit(2.5, "meters"),
  60441. preyCapacity: math.unit(1, "people"),
  60442. name: "Side",
  60443. image: {
  60444. source: "./media/characters/persephone-sweetbreath/side.svg",
  60445. extra: 796/700,
  60446. bottom: 44/840
  60447. }
  60448. },
  60449. sideVore: {
  60450. height: math.unit(2.5, "meters"),
  60451. preyCapacity: math.unit(1, "people"),
  60452. name: "Side (Full)",
  60453. image: {
  60454. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60455. extra: 796/700,
  60456. bottom: 44/840
  60457. }
  60458. },
  60459. },
  60460. [
  60461. {
  60462. name: "Normal",
  60463. height: math.unit(2.5, "meters"),
  60464. default: true
  60465. },
  60466. ]
  60467. ))
  60468. characterMakers.push(() => makeCharacter(
  60469. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60470. {
  60471. front: {
  60472. height: math.unit(32, "meters"),
  60473. name: "Front",
  60474. image: {
  60475. source: "./media/characters/pierce/front.svg",
  60476. extra: 1695/1475,
  60477. bottom: 185/1880
  60478. }
  60479. },
  60480. side: {
  60481. height: math.unit(32, "meters"),
  60482. name: "Side",
  60483. image: {
  60484. source: "./media/characters/pierce/side.svg",
  60485. extra: 974/859,
  60486. bottom: 43/1017
  60487. }
  60488. },
  60489. frontWingless: {
  60490. height: math.unit(32, "meters"),
  60491. name: "Front (Wingless)",
  60492. image: {
  60493. source: "./media/characters/pierce/front-wingless.svg",
  60494. extra: 1695/1475,
  60495. bottom: 185/1880
  60496. }
  60497. },
  60498. sideWingless: {
  60499. height: math.unit(32, "meters"),
  60500. name: "Side (Wingless)",
  60501. image: {
  60502. source: "./media/characters/pierce/side-wingless.svg",
  60503. extra: 974/859,
  60504. bottom: 43/1017
  60505. }
  60506. },
  60507. maw: {
  60508. height: math.unit(19.3, "meters"),
  60509. name: "Maw",
  60510. image: {
  60511. source: "./media/characters/pierce/maw.svg"
  60512. }
  60513. },
  60514. },
  60515. [
  60516. {
  60517. name: "Small",
  60518. height: math.unit(8.5, "meters")
  60519. },
  60520. {
  60521. name: "Normal",
  60522. height: math.unit(32, "meters"),
  60523. default: true
  60524. },
  60525. ]
  60526. ))
  60527. characterMakers.push(() => makeCharacter(
  60528. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60529. {
  60530. front: {
  60531. height: math.unit(2.3, "meters"),
  60532. weight: math.unit(165, "kg"),
  60533. name: "Front",
  60534. image: {
  60535. source: "./media/characters/shira/front.svg",
  60536. extra: 924/919,
  60537. bottom: 17/941
  60538. },
  60539. form: "cobra",
  60540. default: true
  60541. },
  60542. back: {
  60543. height: math.unit(2.3, "meters"),
  60544. weight: math.unit(165, "kg"),
  60545. name: "Back",
  60546. image: {
  60547. source: "./media/characters/shira/back.svg",
  60548. extra: 928/922,
  60549. bottom: 18/946
  60550. },
  60551. form: "cobra"
  60552. },
  60553. frontLewd: {
  60554. height: math.unit(2.3, "meters"),
  60555. weight: math.unit(165, "kg"),
  60556. name: "Front (Lewd)",
  60557. image: {
  60558. source: "./media/characters/shira/front-lewd.svg",
  60559. extra: 924/919,
  60560. bottom: 17/941
  60561. },
  60562. form: "cobra"
  60563. },
  60564. backLewd: {
  60565. height: math.unit(2.3, "meters"),
  60566. weight: math.unit(165, "kg"),
  60567. name: "Back (Lewd)",
  60568. image: {
  60569. source: "./media/characters/shira/back-lewd.svg",
  60570. extra: 928/922,
  60571. bottom: 18/946
  60572. },
  60573. form: "cobra"
  60574. },
  60575. maw: {
  60576. height: math.unit(1.14, "feet"),
  60577. name: "Maw",
  60578. image: {
  60579. source: "./media/characters/shira/maw.svg"
  60580. },
  60581. form: "cobra"
  60582. },
  60583. magma_front: {
  60584. height: math.unit(2.3, "meters"),
  60585. weight: math.unit(165, "kg"),
  60586. name: "Front",
  60587. image: {
  60588. source: "./media/characters/shira/magma-front.svg",
  60589. extra: 1870/1693,
  60590. bottom: 24/1894
  60591. },
  60592. form: "magma",
  60593. },
  60594. magma_back: {
  60595. height: math.unit(2.3, "meters"),
  60596. weight: math.unit(165, "kg"),
  60597. name: "Back",
  60598. image: {
  60599. source: "./media/characters/shira/magma-back.svg",
  60600. extra: 1918/1756,
  60601. bottom: 46/1964
  60602. },
  60603. form: "magma",
  60604. },
  60605. },
  60606. [
  60607. {
  60608. name: "Incognito",
  60609. height: math.unit(2.3, "meters"),
  60610. allForms: true
  60611. },
  60612. {
  60613. name: "Home Size",
  60614. height: math.unit(150, "meters"),
  60615. default: true,
  60616. allForms: true
  60617. },
  60618. {
  60619. name: "Macro",
  60620. height: math.unit(2, "km"),
  60621. allForms: true
  60622. },
  60623. {
  60624. name: "Mega",
  60625. height: math.unit(30, "km"),
  60626. allForms: true
  60627. },
  60628. {
  60629. name: "Giga",
  60630. height: math.unit(450, "km"),
  60631. allForms: true
  60632. },
  60633. {
  60634. name: "Giga+",
  60635. height: math.unit(3000, "km"),
  60636. allForms: true
  60637. },
  60638. {
  60639. name: "Giga++",
  60640. height: math.unit(6000, "km"),
  60641. allForms: true
  60642. },
  60643. {
  60644. name: "Terra",
  60645. height: math.unit(80000, "km"),
  60646. allForms: true
  60647. },
  60648. {
  60649. name: "Terra+",
  60650. height: math.unit(350000, "km"),
  60651. allForms: true
  60652. },
  60653. {
  60654. name: "Solar",
  60655. height: math.unit(1e6, "km"),
  60656. allForms: true
  60657. },
  60658. ],
  60659. {
  60660. "cobra": {
  60661. name: "Cobra",
  60662. default: true
  60663. },
  60664. "magma": {
  60665. name: "Magma Dragon",
  60666. },
  60667. }
  60668. ))
  60669. characterMakers.push(() => makeCharacter(
  60670. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60671. {
  60672. front: {
  60673. height: math.unit(2, "meters"),
  60674. weight: math.unit(160, "kg"),
  60675. name: "Front",
  60676. image: {
  60677. source: "./media/characters/daxerios/front.svg",
  60678. extra: 1334/1277,
  60679. bottom: 45/1379
  60680. }
  60681. },
  60682. frontLewd: {
  60683. height: math.unit(2, "meters"),
  60684. weight: math.unit(160, "kg"),
  60685. name: "Front (Lewd)",
  60686. image: {
  60687. source: "./media/characters/daxerios/front-lewd.svg",
  60688. extra: 1334/1277,
  60689. bottom: 45/1379
  60690. }
  60691. },
  60692. dick: {
  60693. height: math.unit(2.35, "feet"),
  60694. name: "Dick",
  60695. image: {
  60696. source: "./media/characters/daxerios/dick.svg"
  60697. }
  60698. },
  60699. },
  60700. [
  60701. {
  60702. name: "\"Small\"",
  60703. height: math.unit(5, "meters")
  60704. },
  60705. {
  60706. name: "Original Size",
  60707. height: math.unit(500, "meters"),
  60708. default: true
  60709. },
  60710. {
  60711. name: "Mega",
  60712. height: math.unit(2, "km")
  60713. },
  60714. {
  60715. name: "Mega+",
  60716. height: math.unit(35, "km")
  60717. },
  60718. {
  60719. name: "Giga",
  60720. height: math.unit(250, "km")
  60721. },
  60722. {
  60723. name: "Giga+",
  60724. height: math.unit(3000, "km")
  60725. },
  60726. {
  60727. name: "Terra",
  60728. height: math.unit(25000, "km")
  60729. },
  60730. {
  60731. name: "Terra+",
  60732. height: math.unit(300000, "km")
  60733. },
  60734. {
  60735. name: "Solar",
  60736. height: math.unit(1e6, "km")
  60737. },
  60738. ]
  60739. ))
  60740. characterMakers.push(() => makeCharacter(
  60741. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60742. {
  60743. front: {
  60744. height: math.unit(8 + 4/12, "feet"),
  60745. weight: math.unit(464, "lb"),
  60746. name: "Front",
  60747. image: {
  60748. source: "./media/characters/caveat/front.svg",
  60749. extra: 1861/1678,
  60750. bottom: 40/1901
  60751. }
  60752. },
  60753. },
  60754. [
  60755. {
  60756. name: "Normal",
  60757. height: math.unit(8 + 4/12, "feet"),
  60758. default: true
  60759. },
  60760. ]
  60761. ))
  60762. characterMakers.push(() => makeCharacter(
  60763. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60764. {
  60765. front: {
  60766. height: math.unit(12, "feet"),
  60767. weight: math.unit(1800, "lb"),
  60768. name: "Front",
  60769. image: {
  60770. source: "./media/characters/centbair/front.svg",
  60771. extra: 781/663,
  60772. bottom: 25/806
  60773. }
  60774. },
  60775. frontNsfw: {
  60776. height: math.unit(12, "feet"),
  60777. weight: math.unit(1800, "lb"),
  60778. name: "Front (NSFW)",
  60779. image: {
  60780. source: "./media/characters/centbair/front-nsfw.svg",
  60781. extra: 781/663,
  60782. bottom: 25/806
  60783. }
  60784. },
  60785. back: {
  60786. height: math.unit(12, "feet"),
  60787. weight: math.unit(1800, "lb"),
  60788. name: "Back",
  60789. image: {
  60790. source: "./media/characters/centbair/back.svg",
  60791. extra: 808/761,
  60792. bottom: 19/827
  60793. }
  60794. },
  60795. dick: {
  60796. height: math.unit(6.5, "feet"),
  60797. name: "Dick",
  60798. image: {
  60799. source: "./media/characters/centbair/dick.svg"
  60800. }
  60801. },
  60802. slit: {
  60803. height: math.unit(3.25, "feet"),
  60804. name: "Slit",
  60805. image: {
  60806. source: "./media/characters/centbair/slit.svg"
  60807. }
  60808. },
  60809. },
  60810. [
  60811. {
  60812. name: "Normal",
  60813. height: math.unit(12, "feet"),
  60814. default: true
  60815. },
  60816. ]
  60817. ))
  60818. characterMakers.push(() => makeCharacter(
  60819. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60820. {
  60821. front: {
  60822. height: math.unit(5 + 7/12, "feet"),
  60823. name: "Front",
  60824. image: {
  60825. source: "./media/characters/andy/front.svg",
  60826. extra: 634/588,
  60827. bottom: 36/670
  60828. },
  60829. extraAttributes: {
  60830. "pawLength": {
  60831. name: "Paw Length",
  60832. power: 1,
  60833. type: "length",
  60834. base: math.unit(1, "feet")
  60835. },
  60836. }
  60837. },
  60838. side: {
  60839. height: math.unit(5 + 7/12, "feet"),
  60840. name: "Side",
  60841. image: {
  60842. source: "./media/characters/andy/side.svg",
  60843. extra: 641/596,
  60844. bottom: 34/675
  60845. },
  60846. extraAttributes: {
  60847. "pawLength": {
  60848. name: "Paw Length",
  60849. power: 1,
  60850. type: "length",
  60851. base: math.unit(1, "feet")
  60852. },
  60853. }
  60854. },
  60855. back: {
  60856. height: math.unit(5 + 7/12, "feet"),
  60857. name: "Back",
  60858. image: {
  60859. source: "./media/characters/andy/back.svg",
  60860. extra: 618/583,
  60861. bottom: 39/657
  60862. },
  60863. extraAttributes: {
  60864. "pawLength": {
  60865. name: "Paw Length",
  60866. power: 1,
  60867. type: "length",
  60868. base: math.unit(1, "feet")
  60869. },
  60870. }
  60871. },
  60872. paw: {
  60873. height: math.unit(1.13, "feet"),
  60874. name: "Paw",
  60875. image: {
  60876. source: "./media/characters/andy/paw.svg"
  60877. }
  60878. },
  60879. },
  60880. [
  60881. {
  60882. name: "Micro",
  60883. height: math.unit(4, "inches")
  60884. },
  60885. {
  60886. name: "Normal",
  60887. height: math.unit(5 + 7/12, "feet"),
  60888. default: true
  60889. },
  60890. {
  60891. name: "Macro",
  60892. height: math.unit(390.42, "feet")
  60893. },
  60894. ]
  60895. ))
  60896. characterMakers.push(() => makeCharacter(
  60897. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60898. {
  60899. front: {
  60900. height: math.unit(7, "feet"),
  60901. weight: math.unit(250, "lb"),
  60902. name: "Front",
  60903. image: {
  60904. source: "./media/characters/vix-titan/front.svg",
  60905. extra: 460/428,
  60906. bottom: 15/475
  60907. },
  60908. extraAttributes: {
  60909. "pawWidth": {
  60910. name: "Paw Width",
  60911. power: 1,
  60912. type: "length",
  60913. base: math.unit(0.75, "feet")
  60914. },
  60915. }
  60916. },
  60917. },
  60918. [
  60919. {
  60920. name: "Normal",
  60921. height: math.unit(7, "feet"),
  60922. default: true
  60923. },
  60924. {
  60925. name: "Giant",
  60926. height: math.unit(1500, "feet")
  60927. },
  60928. {
  60929. name: "Mega",
  60930. height: math.unit(10, "miles")
  60931. },
  60932. {
  60933. name: "Giga",
  60934. height: math.unit(150, "miles")
  60935. },
  60936. {
  60937. name: "Tera",
  60938. height: math.unit(144000, "miles")
  60939. },
  60940. ]
  60941. ))
  60942. characterMakers.push(() => makeCharacter(
  60943. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60944. {
  60945. front: {
  60946. height: math.unit(6 + 2/12, "feet"),
  60947. name: "Front",
  60948. image: {
  60949. source: "./media/characters/reiku/front.svg",
  60950. extra: 1910/1757,
  60951. bottom: 103/2013
  60952. },
  60953. extraAttributes: {
  60954. "thighThickness": {
  60955. name: "Thigh Thickness",
  60956. power: 1,
  60957. type: "length",
  60958. base: math.unit(1.12, "feet")
  60959. },
  60960. "assThickness": {
  60961. name: "Ass Thickness",
  60962. power: 1,
  60963. type: "length",
  60964. base: math.unit(1.12*2, "feet")
  60965. },
  60966. }
  60967. },
  60968. side: {
  60969. height: math.unit(6 + 2/12, "feet"),
  60970. name: "Side",
  60971. image: {
  60972. source: "./media/characters/reiku/side.svg",
  60973. extra: 1846/1748,
  60974. bottom: 99/1945
  60975. },
  60976. extraAttributes: {
  60977. "thighThickness": {
  60978. name: "Thigh Thickness",
  60979. power: 1,
  60980. type: "length",
  60981. base: math.unit(1.12, "feet")
  60982. },
  60983. "assThickness": {
  60984. name: "Ass Thickness",
  60985. power: 1,
  60986. type: "length",
  60987. base: math.unit(1.12*2, "feet")
  60988. },
  60989. }
  60990. },
  60991. back: {
  60992. height: math.unit(6 + 2/12, "feet"),
  60993. name: "Back",
  60994. image: {
  60995. source: "./media/characters/reiku/back.svg",
  60996. extra: 1941/1786,
  60997. bottom: 34/1975
  60998. },
  60999. extraAttributes: {
  61000. "thighThickness": {
  61001. name: "Thigh Thickness",
  61002. power: 1,
  61003. type: "length",
  61004. base: math.unit(1.12, "feet")
  61005. },
  61006. "assThickness": {
  61007. name: "Ass Thickness",
  61008. power: 1,
  61009. type: "length",
  61010. base: math.unit(1.12*2, "feet")
  61011. },
  61012. }
  61013. },
  61014. head: {
  61015. height: math.unit(1.8, "feet"),
  61016. name: "Head",
  61017. image: {
  61018. source: "./media/characters/reiku/head.svg"
  61019. }
  61020. },
  61021. tailTop: {
  61022. height: math.unit(8.4, "feet"),
  61023. name: "Tail (Top)",
  61024. image: {
  61025. source: "./media/characters/reiku/tail-top.svg"
  61026. }
  61027. },
  61028. tailBottom: {
  61029. height: math.unit(8.4, "feet"),
  61030. name: "Tail (Bottom)",
  61031. image: {
  61032. source: "./media/characters/reiku/tail-bottom.svg"
  61033. }
  61034. },
  61035. foot: {
  61036. height: math.unit(2.6, "feet"),
  61037. name: "Foot",
  61038. image: {
  61039. source: "./media/characters/reiku/foot.svg"
  61040. }
  61041. },
  61042. footCurled: {
  61043. height: math.unit(2.3, "feet"),
  61044. name: "Foot (Curled)",
  61045. image: {
  61046. source: "./media/characters/reiku/foot-curled.svg"
  61047. }
  61048. },
  61049. footSide: {
  61050. height: math.unit(1.26, "feet"),
  61051. name: "Foot (Side)",
  61052. image: {
  61053. source: "./media/characters/reiku/foot-side.svg"
  61054. }
  61055. },
  61056. },
  61057. [
  61058. {
  61059. name: "Normal",
  61060. height: math.unit(6 + 2/12, "feet"),
  61061. default: true
  61062. },
  61063. ]
  61064. ))
  61065. characterMakers.push(() => makeCharacter(
  61066. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61067. {
  61068. front: {
  61069. height: math.unit(7, "feet"),
  61070. weight: math.unit(500, "kg"),
  61071. name: "Front",
  61072. image: {
  61073. source: "./media/characters/cialda/front.svg",
  61074. extra: 912/745,
  61075. bottom: 55/967
  61076. }
  61077. },
  61078. },
  61079. [
  61080. {
  61081. name: "Normal",
  61082. height: math.unit(7, "feet"),
  61083. default: true
  61084. },
  61085. ]
  61086. ))
  61087. characterMakers.push(() => makeCharacter(
  61088. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61089. {
  61090. side: {
  61091. height: math.unit(6, "feet"),
  61092. weight: math.unit(600, "lb"),
  61093. preyCapacity: math.unit(25, "liters"),
  61094. name: "Side",
  61095. image: {
  61096. source: "./media/characters/darkkin/side.svg",
  61097. extra: 1597/1447,
  61098. bottom: 101/1698
  61099. }
  61100. },
  61101. },
  61102. [
  61103. {
  61104. name: "Canon Height",
  61105. height: math.unit(568, "feet"),
  61106. default: true
  61107. },
  61108. ]
  61109. ))
  61110. characterMakers.push(() => makeCharacter(
  61111. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61112. {
  61113. front: {
  61114. height: math.unit(6, "feet"),
  61115. weight: math.unit(1500, "lb"),
  61116. preyCapacity: math.unit(3, "people"),
  61117. name: "Front",
  61118. image: {
  61119. source: "./media/characters/livnia/front.svg",
  61120. extra: 934/932,
  61121. bottom: 83/1017
  61122. }
  61123. },
  61124. back: {
  61125. height: math.unit(6, "feet"),
  61126. weight: math.unit(1500, "lb"),
  61127. preyCapacity: math.unit(3, "people"),
  61128. name: "Back",
  61129. image: {
  61130. source: "./media/characters/livnia/back.svg",
  61131. extra: 916/915,
  61132. bottom: 58/974
  61133. }
  61134. },
  61135. head: {
  61136. height: math.unit(1.53, "feet"),
  61137. name: "Head",
  61138. image: {
  61139. source: "./media/characters/livnia/head.svg"
  61140. }
  61141. },
  61142. maw: {
  61143. height: math.unit(0.78, "feet"),
  61144. name: "Maw",
  61145. image: {
  61146. source: "./media/characters/livnia/maw.svg"
  61147. }
  61148. },
  61149. genitals: {
  61150. height: math.unit(0.35, "feet"),
  61151. name: "Genitals",
  61152. image: {
  61153. source: "./media/characters/livnia/genitals.svg"
  61154. }
  61155. },
  61156. },
  61157. [
  61158. {
  61159. name: "Normal",
  61160. height: math.unit(1000, "feet"),
  61161. default: true
  61162. },
  61163. ]
  61164. ))
  61165. characterMakers.push(() => makeCharacter(
  61166. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61167. {
  61168. front: {
  61169. height: math.unit(4, "feet"),
  61170. weight: math.unit(73, "lb"),
  61171. name: "Front",
  61172. image: {
  61173. source: "./media/characters/hayaku/front.svg",
  61174. extra: 1011/888,
  61175. bottom: 33/1044
  61176. }
  61177. },
  61178. back: {
  61179. height: math.unit(4, "feet"),
  61180. weight: math.unit(73, "lb"),
  61181. name: "Back",
  61182. image: {
  61183. source: "./media/characters/hayaku/back.svg",
  61184. extra: 1040/930,
  61185. bottom: 20/1060
  61186. }
  61187. },
  61188. },
  61189. [
  61190. {
  61191. name: "Normal",
  61192. height: math.unit(4, "feet"),
  61193. default: true
  61194. },
  61195. ]
  61196. ))
  61197. characterMakers.push(() => makeCharacter(
  61198. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61199. {
  61200. front: {
  61201. height: math.unit(6 + 7/12, "feet"),
  61202. weight: math.unit(300, "lb"),
  61203. name: "Front",
  61204. image: {
  61205. source: "./media/characters/athena-bryzant/front.svg",
  61206. extra: 870/835,
  61207. bottom: 33/903
  61208. }
  61209. },
  61210. back: {
  61211. height: math.unit(6 + 7/12, "feet"),
  61212. weight: math.unit(300, "lb"),
  61213. name: "Back",
  61214. image: {
  61215. source: "./media/characters/athena-bryzant/back.svg",
  61216. extra: 858/823,
  61217. bottom: 30/888
  61218. }
  61219. },
  61220. head: {
  61221. height: math.unit(2.38, "feet"),
  61222. name: "Head",
  61223. image: {
  61224. source: "./media/characters/athena-bryzant/head.svg"
  61225. }
  61226. },
  61227. wings: {
  61228. height: math.unit(2.85, "feet"),
  61229. name: "Wings",
  61230. image: {
  61231. source: "./media/characters/athena-bryzant/wings.svg"
  61232. }
  61233. },
  61234. },
  61235. [
  61236. {
  61237. name: "Normal",
  61238. height: math.unit(6 + 7/12, "feet"),
  61239. default: true
  61240. },
  61241. {
  61242. name: "Big",
  61243. height: math.unit(8, "feet")
  61244. },
  61245. {
  61246. name: "Very Big",
  61247. height: math.unit(11, "feet")
  61248. },
  61249. ]
  61250. ))
  61251. characterMakers.push(() => makeCharacter(
  61252. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61253. {
  61254. side: {
  61255. height: math.unit(3, "meters"),
  61256. weight: math.unit(7500, "kg"),
  61257. preyCapacity: math.unit(1e12, "people"),
  61258. name: "Side",
  61259. image: {
  61260. source: "./media/characters/zel-kesh/side.svg",
  61261. extra: 910/407,
  61262. bottom: 147/1057
  61263. }
  61264. },
  61265. },
  61266. [
  61267. {
  61268. name: "Normal",
  61269. height: math.unit(3, "meters"),
  61270. default: true
  61271. },
  61272. ]
  61273. ))
  61274. characterMakers.push(() => makeCharacter(
  61275. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61276. {
  61277. front: {
  61278. height: math.unit(2, "meters"),
  61279. weight: math.unit(95, "kg"),
  61280. name: "Front",
  61281. image: {
  61282. source: "./media/characters/kane-fox/front.svg",
  61283. extra: 945/888,
  61284. bottom: 27/972
  61285. }
  61286. },
  61287. back: {
  61288. height: math.unit(2, "meters"),
  61289. weight: math.unit(95, "kg"),
  61290. name: "Back",
  61291. image: {
  61292. source: "./media/characters/kane-fox/back.svg",
  61293. extra: 959/914,
  61294. bottom: 15/974
  61295. }
  61296. },
  61297. frontLewd: {
  61298. height: math.unit(2, "meters"),
  61299. weight: math.unit(95, "kg"),
  61300. name: "Front (Lewd)",
  61301. image: {
  61302. source: "./media/characters/kane-fox/front-lewd.svg",
  61303. extra: 945/888,
  61304. bottom: 27/972
  61305. }
  61306. },
  61307. },
  61308. [
  61309. {
  61310. name: "Home Size",
  61311. height: math.unit(2, "meters"),
  61312. default: true
  61313. },
  61314. {
  61315. name: "Macro",
  61316. height: math.unit(200, "meters")
  61317. },
  61318. {
  61319. name: "Small Mega",
  61320. height: math.unit(3, "km")
  61321. },
  61322. {
  61323. name: "Mega",
  61324. height: math.unit(50, "km")
  61325. },
  61326. {
  61327. name: "Giga",
  61328. height: math.unit(200, "km")
  61329. },
  61330. {
  61331. name: "Giga+",
  61332. height: math.unit(2500, "km")
  61333. },
  61334. {
  61335. name: "Terra",
  61336. height: math.unit(70000, "km")
  61337. },
  61338. {
  61339. name: "Terra+",
  61340. height: math.unit(150000, "km")
  61341. },
  61342. {
  61343. name: "Terra++",
  61344. height: math.unit(400000, "km")
  61345. },
  61346. ]
  61347. ))
  61348. characterMakers.push(() => makeCharacter(
  61349. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61350. {
  61351. otter_front: {
  61352. height: math.unit(1.8, "meters"),
  61353. weight: math.unit(90, "kg"),
  61354. name: "Front",
  61355. image: {
  61356. source: "./media/characters/ayranus/otter-front.svg",
  61357. extra: 468/452,
  61358. bottom: 43/511
  61359. },
  61360. form: "otter",
  61361. },
  61362. otter_frontLewd: {
  61363. height: math.unit(1.8, "meters"),
  61364. weight: math.unit(90, "kg"),
  61365. name: "Front (Lewd)",
  61366. image: {
  61367. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61368. extra: 468/452,
  61369. bottom: 43/511
  61370. },
  61371. form: "otter",
  61372. },
  61373. lionbat_front: {
  61374. height: math.unit(1.8, "meters"),
  61375. weight: math.unit(90, "kg"),
  61376. name: "Front (Lewd)",
  61377. image: {
  61378. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61379. extra: 797/740,
  61380. bottom: 78/875
  61381. },
  61382. form: "lionbat",
  61383. },
  61384. paw: {
  61385. height: math.unit(1.5, "feet"),
  61386. name: "Paw",
  61387. image: {
  61388. source: "./media/characters/ayranus/paw.svg"
  61389. },
  61390. },
  61391. },
  61392. [
  61393. {
  61394. name: "Incognito",
  61395. height: math.unit(1.8, "meters"),
  61396. allForms: true
  61397. },
  61398. {
  61399. name: "Macro",
  61400. height: math.unit(60, "meters"),
  61401. allForms: true
  61402. },
  61403. {
  61404. name: "Macro+",
  61405. height: math.unit(200, "meters"),
  61406. allForms: true
  61407. },
  61408. {
  61409. name: "Mega",
  61410. height: math.unit(35, "km"),
  61411. allForms: true
  61412. },
  61413. {
  61414. name: "Giga",
  61415. height: math.unit(220, "km"),
  61416. allForms: true
  61417. },
  61418. {
  61419. name: "Giga+",
  61420. height: math.unit(1500, "km"),
  61421. allForms: true
  61422. },
  61423. {
  61424. name: "Terra",
  61425. height: math.unit(13000, "km"),
  61426. allForms: true
  61427. },
  61428. {
  61429. name: "Terra+",
  61430. height: math.unit(500000, "km"),
  61431. allForms: true
  61432. },
  61433. {
  61434. name: "Galactic",
  61435. height: math.unit(486080, "parsecs"),
  61436. default: true,
  61437. allForms: true
  61438. },
  61439. ],
  61440. {
  61441. "otter": {
  61442. name: "Otter",
  61443. default: true
  61444. },
  61445. "lionbat": {
  61446. name: "Lionbat",
  61447. },
  61448. }
  61449. ))
  61450. characterMakers.push(() => makeCharacter(
  61451. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61452. {
  61453. front: {
  61454. height: math.unit(7 + 4/12, "feet"),
  61455. weight: math.unit(400, "lb"),
  61456. name: "Front",
  61457. image: {
  61458. source: "./media/characters/proxy/front.svg",
  61459. extra: 1605/1542,
  61460. bottom: 55/1660
  61461. }
  61462. },
  61463. side: {
  61464. height: math.unit(7 + 4/12, "feet"),
  61465. weight: math.unit(400, "lb"),
  61466. name: "Side",
  61467. image: {
  61468. source: "./media/characters/proxy/side.svg",
  61469. extra: 794/759,
  61470. bottom: 6/800
  61471. }
  61472. },
  61473. hand: {
  61474. height: math.unit(1.54, "feet"),
  61475. name: "Hand",
  61476. image: {
  61477. source: "./media/characters/proxy/hand.svg"
  61478. }
  61479. },
  61480. paw: {
  61481. height: math.unit(1.53, "feet"),
  61482. name: "Paw",
  61483. image: {
  61484. source: "./media/characters/proxy/paw.svg"
  61485. }
  61486. },
  61487. maw: {
  61488. height: math.unit(1.9, "feet"),
  61489. name: "Maw",
  61490. image: {
  61491. source: "./media/characters/proxy/maw.svg"
  61492. }
  61493. },
  61494. },
  61495. [
  61496. {
  61497. name: "Normal",
  61498. height: math.unit(7 + 4/12, "feet"),
  61499. default: true
  61500. },
  61501. ]
  61502. ))
  61503. characterMakers.push(() => makeCharacter(
  61504. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61505. {
  61506. front: {
  61507. height: math.unit(4, "meters"),
  61508. name: "Front",
  61509. image: {
  61510. source: "./media/characters/crocozilla/front.svg",
  61511. extra: 1790/1742,
  61512. bottom: 78/1868
  61513. }
  61514. },
  61515. },
  61516. [
  61517. {
  61518. name: "Normal",
  61519. height: math.unit(4, "meters"),
  61520. default: true
  61521. },
  61522. ]
  61523. ))
  61524. characterMakers.push(() => makeCharacter(
  61525. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61526. {
  61527. front: {
  61528. height: math.unit(1.8, "meters"),
  61529. weight: math.unit(120, "kg"),
  61530. name: "Front",
  61531. image: {
  61532. source: "./media/characters/kurz/front.svg",
  61533. extra: 1960/1824,
  61534. bottom: 41/2001
  61535. }
  61536. },
  61537. back: {
  61538. height: math.unit(1.8, "meters"),
  61539. weight: math.unit(120, "kg"),
  61540. name: "Back",
  61541. image: {
  61542. source: "./media/characters/kurz/back.svg",
  61543. extra: 1906/1787,
  61544. bottom: 60/1966
  61545. }
  61546. },
  61547. frontLewd: {
  61548. height: math.unit(1.8, "meters"),
  61549. weight: math.unit(120, "kg"),
  61550. name: "Front (Lewd)",
  61551. image: {
  61552. source: "./media/characters/kurz/front-lewd.svg",
  61553. extra: 1960/1824,
  61554. bottom: 41/2001
  61555. }
  61556. },
  61557. maw: {
  61558. height: math.unit(0.69, "meters"),
  61559. name: "Maw",
  61560. image: {
  61561. source: "./media/characters/kurz/maw.svg"
  61562. }
  61563. },
  61564. },
  61565. [
  61566. {
  61567. name: "Original Size",
  61568. height: math.unit(1.8, "meters")
  61569. },
  61570. {
  61571. name: "Incognito Size",
  61572. height: math.unit(2.4, "meters"),
  61573. default: true
  61574. },
  61575. {
  61576. name: "Macro",
  61577. height: math.unit(30, "meters")
  61578. },
  61579. {
  61580. name: "Macro+",
  61581. height: math.unit(250, "meters")
  61582. },
  61583. {
  61584. name: "Mega",
  61585. height: math.unit(2, "km")
  61586. },
  61587. {
  61588. name: "Mega+",
  61589. height: math.unit(35, "km")
  61590. },
  61591. {
  61592. name: "Mega++",
  61593. height: math.unit(75, "km")
  61594. },
  61595. {
  61596. name: "Giga",
  61597. height: math.unit(250, "km")
  61598. },
  61599. {
  61600. name: "Terra",
  61601. height: math.unit(15000, "km")
  61602. },
  61603. {
  61604. name: "Terra+",
  61605. height: math.unit(2250000, "km")
  61606. },
  61607. ]
  61608. ))
  61609. characterMakers.push(() => makeCharacter(
  61610. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61611. {
  61612. front: {
  61613. height: math.unit(16 + 3/12, "feet"),
  61614. weight: math.unit(3575, "lb"),
  61615. name: "Front",
  61616. image: {
  61617. source: "./media/characters/nikita/front.svg",
  61618. extra: 1064/955,
  61619. bottom: 47/1111
  61620. }
  61621. },
  61622. },
  61623. [
  61624. {
  61625. name: "Normal",
  61626. height: math.unit(16 + 3/12, "feet"),
  61627. default: true
  61628. },
  61629. {
  61630. name: "Big",
  61631. height: math.unit(21, "feet")
  61632. },
  61633. {
  61634. name: "Biggest",
  61635. height: math.unit(50, "feet")
  61636. },
  61637. ]
  61638. ))
  61639. characterMakers.push(() => makeCharacter(
  61640. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61641. {
  61642. front: {
  61643. height: math.unit(1.92, "m"),
  61644. weight: math.unit(76, "kg"),
  61645. name: "Front",
  61646. image: {
  61647. source: "./media/characters/kyara/front.svg",
  61648. extra: 1550/1438,
  61649. bottom: 139/1689
  61650. }
  61651. },
  61652. back: {
  61653. height: math.unit(1.92, "m"),
  61654. weight: math.unit(76, "kg"),
  61655. name: "Back",
  61656. image: {
  61657. source: "./media/characters/kyara/back.svg",
  61658. extra: 1523/1427,
  61659. bottom: 83/1606
  61660. }
  61661. },
  61662. head: {
  61663. height: math.unit(1.22, "feet"),
  61664. name: "Head",
  61665. image: {
  61666. source: "./media/characters/kyara/head.svg"
  61667. }
  61668. },
  61669. maw: {
  61670. height: math.unit(0.73, "feet"),
  61671. name: "Maw",
  61672. image: {
  61673. source: "./media/characters/kyara/maw.svg"
  61674. }
  61675. },
  61676. paws: {
  61677. height: math.unit(0.95, "feet"),
  61678. name: "Paws",
  61679. image: {
  61680. source: "./media/characters/kyara/paws.svg"
  61681. }
  61682. },
  61683. },
  61684. [
  61685. {
  61686. name: "Normal",
  61687. height: math.unit(1.92, "meters"),
  61688. default: true
  61689. },
  61690. {
  61691. name: "Mini Macro",
  61692. height: math.unit(192, "meters")
  61693. },
  61694. {
  61695. name: "Macro",
  61696. height: math.unit(480, "meters")
  61697. },
  61698. {
  61699. name: "Mega Macro",
  61700. height: math.unit(1440, "meters")
  61701. },
  61702. ]
  61703. ))
  61704. characterMakers.push(() => makeCharacter(
  61705. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61706. {
  61707. front: {
  61708. height: math.unit(6, "feet"),
  61709. weight: math.unit(160, "lbs"),
  61710. preyCapacity: math.unit(0.05, "people"),
  61711. name: "Front",
  61712. image: {
  61713. source: "./media/characters/layla-amari/front.svg",
  61714. extra: 1922/1723,
  61715. bottom: 90/2012
  61716. }
  61717. },
  61718. back: {
  61719. height: math.unit(6, "feet"),
  61720. weight: math.unit(160, "lbs"),
  61721. preyCapacity: math.unit(0.05, "people"),
  61722. name: "Back",
  61723. image: {
  61724. source: "./media/characters/layla-amari/back.svg",
  61725. extra: 1917/1718,
  61726. bottom: 50/1967
  61727. }
  61728. },
  61729. frontDressed: {
  61730. height: math.unit(6, "feet"),
  61731. weight: math.unit(160, "lbs"),
  61732. preyCapacity: math.unit(0.05, "people"),
  61733. name: "Front (Dressed)",
  61734. image: {
  61735. source: "./media/characters/layla-amari/front-dressed.svg",
  61736. extra: 1922/1723,
  61737. bottom: 90/2012
  61738. }
  61739. },
  61740. face: {
  61741. height: math.unit(0.93, "feet"),
  61742. name: "Face",
  61743. image: {
  61744. source: "./media/characters/layla-amari/face.svg"
  61745. }
  61746. },
  61747. hand: {
  61748. height: math.unit(0.66 , "feet"),
  61749. name: "Hand",
  61750. image: {
  61751. source: "./media/characters/layla-amari/hand.svg"
  61752. }
  61753. },
  61754. foot: {
  61755. height: math.unit(1, "feet"),
  61756. name: "Foot",
  61757. image: {
  61758. source: "./media/characters/layla-amari/foot.svg"
  61759. }
  61760. },
  61761. necklace: {
  61762. height: math.unit(0.32, "feet"),
  61763. name: "Necklace",
  61764. image: {
  61765. source: "./media/characters/layla-amari/necklace.svg"
  61766. }
  61767. },
  61768. nipple: {
  61769. height: math.unit(0.2, "feet"),
  61770. name: "Nipple",
  61771. image: {
  61772. source: "./media/characters/layla-amari/nipple.svg"
  61773. }
  61774. },
  61775. slit: {
  61776. height: math.unit(0.26, "feet"),
  61777. name: "Slit",
  61778. image: {
  61779. source: "./media/characters/layla-amari/slit.svg"
  61780. }
  61781. },
  61782. },
  61783. [
  61784. {
  61785. name: "Natural",
  61786. height: math.unit(825, "feet"),
  61787. default: true
  61788. },
  61789. {
  61790. name: "Enhanced",
  61791. height: math.unit(8250, "feet")
  61792. },
  61793. {
  61794. name: "Apparent Size",
  61795. height: math.unit(9.04363e+8, "meters")
  61796. },
  61797. ]
  61798. ))
  61799. characterMakers.push(() => makeCharacter(
  61800. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61801. {
  61802. front: {
  61803. height: math.unit(1.3, "meters"),
  61804. name: "Front",
  61805. image: {
  61806. source: "./media/characters/percy/front.svg",
  61807. extra: 1444/1289,
  61808. bottom: 54/1498
  61809. }
  61810. },
  61811. },
  61812. [
  61813. {
  61814. name: "Normal",
  61815. height: math.unit(1.3, "meters"),
  61816. default: true
  61817. },
  61818. ]
  61819. ))
  61820. characterMakers.push(() => makeCharacter(
  61821. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61822. {
  61823. side: {
  61824. height: math.unit(10, "meters"),
  61825. name: "Side",
  61826. image: {
  61827. source: "./media/characters/grev/side.svg",
  61828. extra: 653/266,
  61829. bottom: 77/730
  61830. }
  61831. },
  61832. head: {
  61833. height: math.unit(16.2, "m"),
  61834. name: "Head",
  61835. image: {
  61836. source: "./media/characters/grev/head.svg"
  61837. }
  61838. },
  61839. dick: {
  61840. height: math.unit(2.8135932034, "m"),
  61841. name: "Dick",
  61842. image: {
  61843. source: "./media/characters/grev/dick.svg"
  61844. }
  61845. },
  61846. },
  61847. [
  61848. {
  61849. name: "Friend-Sized",
  61850. height: math.unit(80, "cm")
  61851. },
  61852. {
  61853. name: "Normal",
  61854. height: math.unit(10, "meters"),
  61855. default: true
  61856. },
  61857. {
  61858. name: "Macro",
  61859. height: math.unit(200, "meters")
  61860. },
  61861. ]
  61862. ))
  61863. characterMakers.push(() => makeCharacter(
  61864. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61865. {
  61866. front: {
  61867. height: math.unit(19.75, "feet"),
  61868. weight: math.unit(20000, "lb"),
  61869. name: "Front",
  61870. image: {
  61871. source: "./media/characters/azuuca/front.svg",
  61872. extra: 1593/1511,
  61873. bottom: 55/1648
  61874. }
  61875. },
  61876. },
  61877. [
  61878. {
  61879. name: "Normal",
  61880. height: math.unit(19.75, "feet"),
  61881. default: true
  61882. },
  61883. ]
  61884. ))
  61885. characterMakers.push(() => makeCharacter(
  61886. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61887. {
  61888. front: {
  61889. height: math.unit(15, "feet"),
  61890. weight: math.unit(1500, "lb"),
  61891. name: "Front",
  61892. image: {
  61893. source: "./media/characters/valuria/front.svg",
  61894. extra: 1588/1486,
  61895. bottom: 31/1619
  61896. }
  61897. },
  61898. },
  61899. [
  61900. {
  61901. name: "Normal",
  61902. height: math.unit(15, "feet"),
  61903. default: true
  61904. },
  61905. {
  61906. name: "Small",
  61907. height: math.unit(500, "feet")
  61908. },
  61909. {
  61910. name: "Macro",
  61911. height: math.unit(4000, "feet")
  61912. },
  61913. {
  61914. name: "Mega Macro",
  61915. height: math.unit(2000, "miles")
  61916. },
  61917. {
  61918. name: "Giga Macro",
  61919. height: math.unit(3e6, "miles")
  61920. },
  61921. ]
  61922. ))
  61923. characterMakers.push(() => makeCharacter(
  61924. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61925. {
  61926. front: {
  61927. height: math.unit(3500, "solarradii"),
  61928. name: "Front",
  61929. image: {
  61930. source: "./media/characters/terigaia/front.svg",
  61931. extra: 1531/1451,
  61932. bottom: 98/1629
  61933. }
  61934. },
  61935. },
  61936. [
  61937. {
  61938. name: "Normal",
  61939. height: math.unit(3500, "solarradii"),
  61940. default: true
  61941. },
  61942. ]
  61943. ))
  61944. characterMakers.push(() => makeCharacter(
  61945. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61946. {
  61947. front: {
  61948. height: math.unit(9.34, "feet"),
  61949. weight: math.unit(600, "lb"),
  61950. name: "Front",
  61951. image: {
  61952. source: "./media/characters/blair-blaziken/front.svg",
  61953. extra: 1557/1462,
  61954. bottom: 55/1612
  61955. }
  61956. },
  61957. },
  61958. [
  61959. {
  61960. name: "Normal",
  61961. height: math.unit(9.34, "feet"),
  61962. default: true
  61963. },
  61964. ]
  61965. ))
  61966. characterMakers.push(() => makeCharacter(
  61967. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61968. {
  61969. pistrogre_front: {
  61970. height: math.unit(10, "feet"),
  61971. weight: math.unit(10, "tons"),
  61972. name: "Front",
  61973. image: {
  61974. source: "./media/characters/braxia/pistrogre-front.svg",
  61975. extra: 1531/1334,
  61976. bottom: 114/1645
  61977. },
  61978. form: "pistrogre",
  61979. default: true
  61980. },
  61981. human_front: {
  61982. height: math.unit(10, "feet"),
  61983. weight: math.unit(10, "tons"),
  61984. name: "Front",
  61985. image: {
  61986. source: "./media/characters/braxia/human-front.svg",
  61987. extra: 1574/1501,
  61988. bottom: 37/1611
  61989. },
  61990. form: "human",
  61991. default: true
  61992. },
  61993. },
  61994. [
  61995. {
  61996. name: "Normal",
  61997. height: math.unit(10, "feet"),
  61998. default: true,
  61999. allForms: true
  62000. },
  62001. {
  62002. name: "Macro",
  62003. height: math.unit(1000, "feet"),
  62004. allForms: true
  62005. },
  62006. {
  62007. name: "Mega Macro",
  62008. height: math.unit(100, "miles"),
  62009. allForms: true
  62010. },
  62011. {
  62012. name: "Cosmic",
  62013. height: math.unit(1000000, "lightyears"),
  62014. allForms: true
  62015. },
  62016. {
  62017. name: "ϐѮԆԬӁꭍϞԢ",
  62018. height: math.unit(1000, "multiverses"),
  62019. allForms: true
  62020. },
  62021. ],
  62022. {
  62023. "pistrogre": {
  62024. name: "Pistrogre",
  62025. default: true
  62026. },
  62027. "human": {
  62028. name: "Human",
  62029. },
  62030. }
  62031. ))
  62032. characterMakers.push(() => makeCharacter(
  62033. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62034. {
  62035. front: {
  62036. height: math.unit(6 + 1/12, "feet"),
  62037. weight: math.unit(280, "lb"),
  62038. name: "Front",
  62039. image: {
  62040. source: "./media/characters/kiriga-yato/front.svg",
  62041. extra: 445/394,
  62042. bottom: 11/456
  62043. }
  62044. },
  62045. },
  62046. [
  62047. {
  62048. name: "Descended",
  62049. height: math.unit(3, "feet")
  62050. },
  62051. {
  62052. name: "Average",
  62053. height: math.unit(6 + 1/12, "feet"),
  62054. default: true
  62055. },
  62056. {
  62057. name: "Ascended",
  62058. height: math.unit(9 + 2/12, "feet")
  62059. },
  62060. ]
  62061. ))
  62062. characterMakers.push(() => makeCharacter(
  62063. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62064. {
  62065. front: {
  62066. height: math.unit(6, "feet"),
  62067. weight: math.unit(150, "lb"),
  62068. name: "Front",
  62069. image: {
  62070. source: "./media/characters/kylie/front.svg",
  62071. extra: 1114/1046,
  62072. bottom: 65/1179
  62073. },
  62074. extraAttributes: {
  62075. "hoofSize": {
  62076. name: "Hoof Size",
  62077. power: 2,
  62078. type: "area",
  62079. base: math.unit(0.034, "m^2")
  62080. },
  62081. "footSize": {
  62082. name: "Foot Size",
  62083. power: 2,
  62084. type: "area",
  62085. base: math.unit(0.75, "m^2")
  62086. },
  62087. }
  62088. },
  62089. side: {
  62090. height: math.unit(6, "feet"),
  62091. weight: math.unit(150, "lb"),
  62092. name: "Side",
  62093. image: {
  62094. source: "./media/characters/kylie/side.svg",
  62095. extra: 1178/1110,
  62096. bottom: 21/1199
  62097. },
  62098. extraAttributes: {
  62099. "hoofSize": {
  62100. name: "Hoof Size",
  62101. power: 2,
  62102. type: "area",
  62103. base: math.unit(0.034, "m^2")
  62104. },
  62105. "footSize": {
  62106. name: "Foot Size",
  62107. power: 2,
  62108. type: "area",
  62109. base: math.unit(0.75, "m^2")
  62110. },
  62111. }
  62112. },
  62113. back: {
  62114. height: math.unit(6, "feet"),
  62115. weight: math.unit(150, "lb"),
  62116. name: "Back",
  62117. image: {
  62118. source: "./media/characters/kylie/back.svg",
  62119. extra: 1115/1047,
  62120. bottom: 66/1181
  62121. },
  62122. extraAttributes: {
  62123. "hoofSize": {
  62124. name: "Hoof Size",
  62125. power: 2,
  62126. type: "area",
  62127. base: math.unit(0.034, "m^2")
  62128. },
  62129. "footSize": {
  62130. name: "Foot Size",
  62131. power: 2,
  62132. type: "area",
  62133. base: math.unit(0.75, "m^2")
  62134. },
  62135. }
  62136. },
  62137. head: {
  62138. height: math.unit(1.85, "feet"),
  62139. name: "Head",
  62140. image: {
  62141. source: "./media/characters/kylie/head.svg"
  62142. }
  62143. },
  62144. },
  62145. [
  62146. {
  62147. name: "Normal",
  62148. height: math.unit(90, "meters"),
  62149. default: true
  62150. },
  62151. ]
  62152. ))
  62153. characterMakers.push(() => makeCharacter(
  62154. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62155. {
  62156. front: {
  62157. height: math.unit(245, "feet"),
  62158. weight: math.unit(400000, "lb"),
  62159. name: "Front",
  62160. image: {
  62161. source: "./media/characters/sabado/front.svg",
  62162. extra: 1309/1164,
  62163. bottom: 29/1338
  62164. }
  62165. },
  62166. },
  62167. [
  62168. {
  62169. name: "Normal",
  62170. height: math.unit(245, "feet"),
  62171. default: true
  62172. },
  62173. ]
  62174. ))
  62175. characterMakers.push(() => makeCharacter(
  62176. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62177. {
  62178. shark_front: {
  62179. height: math.unit(2, "meters"),
  62180. weight: math.unit(200, "kg"),
  62181. name: "Front",
  62182. image: {
  62183. source: "./media/characters/zechal/shark-front.svg",
  62184. extra: 969/925,
  62185. bottom: 74/1043
  62186. },
  62187. form: "shark",
  62188. },
  62189. shark_back: {
  62190. height: math.unit(2, "meters"),
  62191. weight: math.unit(200, "kg"),
  62192. name: "Back",
  62193. image: {
  62194. source: "./media/characters/zechal/shark-back.svg",
  62195. extra: 994/949,
  62196. bottom: 176/1170
  62197. },
  62198. form: "shark",
  62199. },
  62200. shark_frontLewd: {
  62201. height: math.unit(2, "meters"),
  62202. weight: math.unit(200, "kg"),
  62203. name: "Front (Lewd)",
  62204. image: {
  62205. source: "./media/characters/zechal/shark-front-lewd.svg",
  62206. extra: 969/925,
  62207. bottom: 74/1043
  62208. },
  62209. form: "shark",
  62210. },
  62211. shark_side: {
  62212. height: math.unit(1.56, "meters"),
  62213. weight: math.unit(200, "kg"),
  62214. name: "Side",
  62215. image: {
  62216. source: "./media/characters/zechal/shark-side.svg"
  62217. },
  62218. form: "shark",
  62219. },
  62220. dragon_front: {
  62221. height: math.unit(2, "meters"),
  62222. weight: math.unit(200, "kg"),
  62223. name: "Front",
  62224. image: {
  62225. source: "./media/characters/zechal/dragon-front.svg",
  62226. extra: 1041/925,
  62227. bottom: 74/1115
  62228. },
  62229. form: "dragon",
  62230. },
  62231. dragon_back: {
  62232. height: math.unit(2, "meters"),
  62233. weight: math.unit(200, "kg"),
  62234. name: "Back",
  62235. image: {
  62236. source: "./media/characters/zechal/dragon-back.svg",
  62237. extra: 1061/949,
  62238. bottom: 176/1237
  62239. },
  62240. form: "dragon",
  62241. },
  62242. dragon_frontLewd: {
  62243. height: math.unit(2, "meters"),
  62244. weight: math.unit(200, "kg"),
  62245. name: "Front (Lewd)",
  62246. image: {
  62247. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62248. extra: 1041/925,
  62249. bottom: 74/1115
  62250. },
  62251. form: "dragon",
  62252. },
  62253. dragon_side: {
  62254. height: math.unit(1.56, "meters"),
  62255. weight: math.unit(200, "kg"),
  62256. name: "Side",
  62257. image: {
  62258. source: "./media/characters/zechal/dragon-side.svg"
  62259. },
  62260. form: "dragon",
  62261. },
  62262. foot: {
  62263. height: math.unit(0.5, "meters"),
  62264. name: "Foot",
  62265. image: {
  62266. source: "./media/characters/zechal/foot.svg"
  62267. }
  62268. },
  62269. sheathFront: {
  62270. height: math.unit(0.45, "meters"),
  62271. name: "Sheath (Front)",
  62272. image: {
  62273. source: "./media/characters/zechal/sheath-front.svg"
  62274. }
  62275. },
  62276. sheathSide: {
  62277. height: math.unit(0.45, "meters"),
  62278. name: "Sheath (Side)",
  62279. image: {
  62280. source: "./media/characters/zechal/sheath-side.svg"
  62281. }
  62282. },
  62283. },
  62284. [
  62285. {
  62286. name: "Incognito",
  62287. height: math.unit(2, "meters"),
  62288. allForms: true
  62289. },
  62290. {
  62291. name: "Small Rampage",
  62292. height: math.unit(25, "meters"),
  62293. allForms: true
  62294. },
  62295. {
  62296. name: "Home Size",
  62297. height: math.unit(250, "meters"),
  62298. allForms: true,
  62299. default: true
  62300. },
  62301. {
  62302. name: "Macro+",
  62303. height: math.unit(700, "meters"),
  62304. allForms: true
  62305. },
  62306. {
  62307. name: "Small Mega",
  62308. height: math.unit(3, "km"),
  62309. allForms: true
  62310. },
  62311. {
  62312. name: "Mega",
  62313. height: math.unit(15, "km"),
  62314. allForms: true
  62315. },
  62316. {
  62317. name: "Giga",
  62318. height: math.unit(300, "km"),
  62319. allForms: true
  62320. },
  62321. {
  62322. name: "Giga+",
  62323. height: math.unit(1750, "km"),
  62324. allForms: true
  62325. },
  62326. {
  62327. name: "Continental",
  62328. height: math.unit(5000, "km"),
  62329. allForms: true
  62330. },
  62331. {
  62332. name: "Terra",
  62333. height: math.unit(20000, "km"),
  62334. allForms: true
  62335. },
  62336. {
  62337. name: "Terra+",
  62338. height: math.unit(300000, "km"),
  62339. allForms: true
  62340. },
  62341. {
  62342. name: "Solar",
  62343. height: math.unit(40000000, "km"),
  62344. allForms: true
  62345. },
  62346. {
  62347. name: "Galactic",
  62348. height: math.unit(810133, "parsecs"),
  62349. allForms: true
  62350. },
  62351. {
  62352. name: "Universal",
  62353. height: math.unit(25, "universes"),
  62354. allForms: true
  62355. },
  62356. ],
  62357. {
  62358. "shark": {
  62359. name: "Shark",
  62360. default: true
  62361. },
  62362. "dragon": {
  62363. name: "Dragon",
  62364. },
  62365. }
  62366. ))
  62367. characterMakers.push(() => makeCharacter(
  62368. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62369. {
  62370. front: {
  62371. height: math.unit(2.2, "meters"),
  62372. weight: math.unit(150, "kg"),
  62373. name: "Front",
  62374. image: {
  62375. source: "./media/characters/sergis/front.svg",
  62376. extra: 1314/1312,
  62377. bottom: 112/1426
  62378. }
  62379. },
  62380. back: {
  62381. height: math.unit(2.2, "meters"),
  62382. weight: math.unit(150, "kg"),
  62383. name: "Back",
  62384. image: {
  62385. source: "./media/characters/sergis/back.svg",
  62386. extra: 1335/1333,
  62387. bottom: 19/1354
  62388. }
  62389. },
  62390. frontLewd: {
  62391. height: math.unit(2.2, "meters"),
  62392. weight: math.unit(150, "kg"),
  62393. name: "Front (Lewd)",
  62394. image: {
  62395. source: "./media/characters/sergis/front-lewd.svg",
  62396. extra: 1314/1312,
  62397. bottom: 112/1426
  62398. }
  62399. },
  62400. frontDressed: {
  62401. height: math.unit(2.2, "meters"),
  62402. weight: math.unit(150, "kg"),
  62403. name: "Front (Dressed)",
  62404. image: {
  62405. source: "./media/characters/sergis/front-dressed.svg",
  62406. extra: 1330/1328,
  62407. bottom: 95/1425
  62408. }
  62409. },
  62410. frontDressedLewd: {
  62411. height: math.unit(2.2, "meters"),
  62412. weight: math.unit(150, "kg"),
  62413. name: "Front (Dressed, Lewd)",
  62414. image: {
  62415. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62416. extra: 1330/1328,
  62417. bottom: 95/1425
  62418. }
  62419. },
  62420. maw: {
  62421. height: math.unit(0.48, "meters"),
  62422. name: "Maw",
  62423. image: {
  62424. source: "./media/characters/sergis/maw.svg"
  62425. }
  62426. },
  62427. sheath: {
  62428. height: math.unit(0.38, "meters"),
  62429. name: "Sheath",
  62430. image: {
  62431. source: "./media/characters/sergis/sheath.svg"
  62432. }
  62433. },
  62434. },
  62435. [
  62436. {
  62437. name: "Incognito Size",
  62438. height: math.unit(2.2, "meters")
  62439. },
  62440. {
  62441. name: "Small Macro",
  62442. height: math.unit(40, "meters")
  62443. },
  62444. {
  62445. name: "Macro",
  62446. height: math.unit(150, "meters")
  62447. },
  62448. {
  62449. name: "Macro+",
  62450. height: math.unit(300, "meters")
  62451. },
  62452. {
  62453. name: "Mega",
  62454. height: math.unit(2.5, "km")
  62455. },
  62456. {
  62457. name: "Mega+",
  62458. height: math.unit(30, "km")
  62459. },
  62460. {
  62461. name: "Home Size",
  62462. height: math.unit(300, "km"),
  62463. default: true
  62464. },
  62465. {
  62466. name: "Giga+",
  62467. height: math.unit(1000, "km")
  62468. },
  62469. {
  62470. name: "Giga++",
  62471. height: math.unit(6000, "km")
  62472. },
  62473. {
  62474. name: "Terra",
  62475. height: math.unit(70000, "km")
  62476. },
  62477. {
  62478. name: "Terra+",
  62479. height: math.unit(200000, "km")
  62480. },
  62481. {
  62482. name: "Galactic",
  62483. height: math.unit(634200, "lightyears")
  62484. },
  62485. ]
  62486. ))
  62487. characterMakers.push(() => makeCharacter(
  62488. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62489. {
  62490. standard: {
  62491. height: math.unit(1 + 5/12, "feet"),
  62492. name: "Standard",
  62493. image: {
  62494. source: "./media/characters/spade/standard.svg",
  62495. extra: 1794/1703,
  62496. bottom: 115/1909
  62497. }
  62498. },
  62499. disguised: {
  62500. height: math.unit(1 + 5/12, "feet"),
  62501. name: "Disguised",
  62502. image: {
  62503. source: "./media/characters/spade/disguised.svg",
  62504. extra: 1794/1700,
  62505. bottom: 98/1892
  62506. }
  62507. },
  62508. },
  62509. [
  62510. {
  62511. name: "Normal",
  62512. height: math.unit(1 + 5/12, "feet"),
  62513. default: true
  62514. },
  62515. ]
  62516. ))
  62517. characterMakers.push(() => makeCharacter(
  62518. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62519. {
  62520. frontNsfw: {
  62521. height: math.unit(5, "meters"),
  62522. weight: math.unit(2000, "kg"),
  62523. preyCapacity: math.unit(5, "people"),
  62524. name: "Front (NSFW)",
  62525. image: {
  62526. source: "./media/characters/zeanlain/front-nsfw.svg",
  62527. extra: 1087/938,
  62528. bottom: 93/1180
  62529. },
  62530. extraAttributes: {
  62531. "wingspan": {
  62532. name: "Wingspan",
  62533. power: 1,
  62534. type: "length",
  62535. base: math.unit(10, "meters")
  62536. },
  62537. "footSize": {
  62538. name: "Foot Size",
  62539. power: 1,
  62540. type: "length",
  62541. base: math.unit(0.68, "meters")
  62542. },
  62543. "cockLength": {
  62544. name: "Cock Length",
  62545. power: 1,
  62546. type: "length",
  62547. base: math.unit(1.69, "meters")
  62548. },
  62549. "ballVolume": {
  62550. name: "Ball Volume",
  62551. power: 3,
  62552. type: "volume",
  62553. base: math.unit(0.028, "m^3")
  62554. },
  62555. }
  62556. },
  62557. front: {
  62558. height: math.unit(5, "meters"),
  62559. weight: math.unit(2000, "kg"),
  62560. preyCapacity: math.unit(3, "people"),
  62561. name: "Front",
  62562. image: {
  62563. source: "./media/characters/zeanlain/front.svg",
  62564. extra: 1087/938,
  62565. bottom: 93/1180
  62566. },
  62567. extraAttributes: {
  62568. "wingspan": {
  62569. name: "Wingspan",
  62570. power: 1,
  62571. type: "length",
  62572. base: math.unit(10, "meters")
  62573. },
  62574. "footSize": {
  62575. name: "Foot Size",
  62576. power: 1,
  62577. type: "length",
  62578. base: math.unit(0.68, "meters")
  62579. },
  62580. }
  62581. },
  62582. },
  62583. [
  62584. {
  62585. name: "Normal",
  62586. height: math.unit(5, "meters"),
  62587. default: true
  62588. },
  62589. ]
  62590. ))
  62591. characterMakers.push(() => makeCharacter(
  62592. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62593. {
  62594. front: {
  62595. height: math.unit(10, "meters"),
  62596. weight: math.unit(250000, "kg"),
  62597. name: "Front",
  62598. image: {
  62599. source: "./media/characters/airamis/front.svg",
  62600. extra: 865/835,
  62601. bottom: 13/878
  62602. }
  62603. },
  62604. },
  62605. [
  62606. {
  62607. name: "Normal",
  62608. height: math.unit(10, "meters"),
  62609. default: true
  62610. },
  62611. ]
  62612. ))
  62613. characterMakers.push(() => makeCharacter(
  62614. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62615. {
  62616. front: {
  62617. height: math.unit(3 + 3/12, "feet"),
  62618. weight: math.unit(75, "lb"),
  62619. name: "Front",
  62620. image: {
  62621. source: "./media/characters/corra-tourmaline/front.svg",
  62622. extra: 1037/864,
  62623. bottom: 39/1076
  62624. }
  62625. },
  62626. back: {
  62627. height: math.unit(3 + 3/12, "feet"),
  62628. weight: math.unit(75, "lb"),
  62629. name: "Back",
  62630. image: {
  62631. source: "./media/characters/corra-tourmaline/back.svg",
  62632. extra: 1022/849,
  62633. bottom: 26/1048
  62634. }
  62635. },
  62636. dressed: {
  62637. height: math.unit(3 + 3/12, "feet"),
  62638. weight: math.unit(75, "lb"),
  62639. name: "Dressed",
  62640. image: {
  62641. source: "./media/characters/corra-tourmaline/dressed.svg",
  62642. extra: 1037/864,
  62643. bottom: 39/1076
  62644. }
  62645. },
  62646. beans: {
  62647. height: math.unit(0.37, "feet"),
  62648. name: "Beans",
  62649. image: {
  62650. source: "./media/characters/corra-tourmaline/beans.svg"
  62651. }
  62652. },
  62653. },
  62654. [
  62655. {
  62656. name: "Normal",
  62657. height: math.unit(3 + 3/12, "feet"),
  62658. default: true
  62659. },
  62660. {
  62661. name: "Macro",
  62662. height: math.unit(32, "feet")
  62663. },
  62664. ]
  62665. ))
  62666. characterMakers.push(() => makeCharacter(
  62667. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62668. {
  62669. front: {
  62670. height: math.unit(6 + 2/12, "feet"),
  62671. weight: math.unit(203, "lb"),
  62672. name: "Front",
  62673. image: {
  62674. source: "./media/characters/maki-kawa/front.svg",
  62675. extra: 950/890,
  62676. bottom: 62/1012
  62677. }
  62678. },
  62679. back: {
  62680. height: math.unit(6 + 2/12, "feet"),
  62681. weight: math.unit(203, "lb"),
  62682. name: "Back",
  62683. image: {
  62684. source: "./media/characters/maki-kawa/back.svg",
  62685. extra: 953/878,
  62686. bottom: 49/1002
  62687. }
  62688. },
  62689. frontBarista: {
  62690. height: math.unit(6 + 2/12, "feet"),
  62691. weight: math.unit(203, "lb"),
  62692. name: "Front (Barista)",
  62693. image: {
  62694. source: "./media/characters/maki-kawa/front-barista.svg",
  62695. extra: 943/883,
  62696. bottom: 69/1012
  62697. }
  62698. },
  62699. backBarista: {
  62700. height: math.unit(6 + 2/12, "feet"),
  62701. weight: math.unit(203, "lb"),
  62702. name: "Back (Barista)",
  62703. image: {
  62704. source: "./media/characters/maki-kawa/back-barista.svg",
  62705. extra: 953/878,
  62706. bottom: 49/1002
  62707. }
  62708. },
  62709. frontWrestler: {
  62710. height: math.unit(6 + 2/12, "feet"),
  62711. weight: math.unit(203, "lb"),
  62712. name: "Front (Wrestler)",
  62713. image: {
  62714. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62715. extra: 950/890,
  62716. bottom: 62/1012
  62717. }
  62718. },
  62719. backWrestler: {
  62720. height: math.unit(6 + 2/12, "feet"),
  62721. weight: math.unit(203, "lb"),
  62722. name: "Back (Wrestler)",
  62723. image: {
  62724. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62725. extra: 953/878,
  62726. bottom: 49/1002
  62727. }
  62728. },
  62729. headFront: {
  62730. height: math.unit(1.64, "feet"),
  62731. name: "Head (Front)",
  62732. image: {
  62733. source: "./media/characters/maki-kawa/head-front.svg"
  62734. }
  62735. },
  62736. headSide: {
  62737. height: math.unit(1.59, "feet"),
  62738. name: "Head (Side)",
  62739. image: {
  62740. source: "./media/characters/maki-kawa/head-side.svg"
  62741. }
  62742. },
  62743. paw: {
  62744. height: math.unit(0.9, "feet"),
  62745. name: "Paw",
  62746. image: {
  62747. source: "./media/characters/maki-kawa/paw.svg"
  62748. }
  62749. },
  62750. },
  62751. [
  62752. {
  62753. name: "Normal",
  62754. height: math.unit(6 + 2/12, "feet"),
  62755. default: true
  62756. },
  62757. {
  62758. name: "Macro",
  62759. height: math.unit(617, "feet")
  62760. },
  62761. ]
  62762. ))
  62763. characterMakers.push(() => makeCharacter(
  62764. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62765. {
  62766. front: {
  62767. height: math.unit(10, "feet"),
  62768. weight: math.unit(1500, "lb"),
  62769. name: "Front",
  62770. image: {
  62771. source: "./media/characters/lennox/front.svg",
  62772. extra: 1623/1496,
  62773. bottom: 18/1641
  62774. }
  62775. },
  62776. back: {
  62777. height: math.unit(10, "feet"),
  62778. weight: math.unit(1500, "lb"),
  62779. name: "Back",
  62780. image: {
  62781. source: "./media/characters/lennox/back.svg",
  62782. extra: 1641/1481,
  62783. bottom: 13/1654
  62784. }
  62785. },
  62786. maw: {
  62787. height: math.unit(2.94, "feet"),
  62788. name: "Maw",
  62789. image: {
  62790. source: "./media/characters/lennox/maw.svg"
  62791. }
  62792. },
  62793. },
  62794. [
  62795. {
  62796. name: "Micro",
  62797. height: math.unit(1, "inch")
  62798. },
  62799. {
  62800. name: "Normal",
  62801. height: math.unit(10, "feet"),
  62802. default: true
  62803. },
  62804. {
  62805. name: "Macro",
  62806. height: math.unit(200, "feet")
  62807. },
  62808. ]
  62809. ))
  62810. characterMakers.push(() => makeCharacter(
  62811. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62812. {
  62813. frontDressed: {
  62814. height: math.unit(15 + 7/12, "feet"),
  62815. weight: math.unit(5000, "lb"),
  62816. name: "Front (Dressed)",
  62817. image: {
  62818. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62819. extra: 1136/1023,
  62820. bottom: 51/1187
  62821. }
  62822. },
  62823. backDressed: {
  62824. height: math.unit(15 + 7/12, "feet"),
  62825. weight: math.unit(5000, "lb"),
  62826. name: "Back (Dressed)",
  62827. image: {
  62828. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62829. extra: 2359/2143,
  62830. bottom: 103/2462
  62831. }
  62832. },
  62833. front: {
  62834. height: math.unit(15 + 7/12, "feet"),
  62835. weight: math.unit(5000, "lb"),
  62836. name: "Front",
  62837. image: {
  62838. source: "./media/characters/vyse-iron-thunder/front.svg",
  62839. extra: 1136/1023,
  62840. bottom: 51/1187
  62841. }
  62842. },
  62843. hand: {
  62844. height: math.unit(2.36, "feet"),
  62845. name: "Hand",
  62846. image: {
  62847. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62848. }
  62849. },
  62850. foot: {
  62851. height: math.unit(1.72, "feet"),
  62852. name: "Foot",
  62853. image: {
  62854. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62855. }
  62856. },
  62857. mouth: {
  62858. height: math.unit(2, "feet"),
  62859. name: "Mouth",
  62860. image: {
  62861. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62862. }
  62863. },
  62864. eye: {
  62865. height: math.unit(0.58, "feet"),
  62866. name: "Eye",
  62867. image: {
  62868. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62869. }
  62870. },
  62871. },
  62872. [
  62873. {
  62874. name: "Normal",
  62875. height: math.unit(15 + 7/12, "feet"),
  62876. default: true
  62877. },
  62878. {
  62879. name: "Macro",
  62880. height: math.unit(157, "feet")
  62881. },
  62882. {
  62883. name: "Macro+",
  62884. height: math.unit(1570, "feet")
  62885. },
  62886. {
  62887. name: "Macro++",
  62888. height: math.unit(15700, "feet")
  62889. },
  62890. {
  62891. name: "Macro+++",
  62892. height: math.unit(157000, "feet")
  62893. },
  62894. {
  62895. name: "Macro++++",
  62896. height: math.unit(1570000, "feet")
  62897. },
  62898. ]
  62899. ))
  62900. characterMakers.push(() => makeCharacter(
  62901. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62902. {
  62903. side: {
  62904. height: math.unit(6, "feet"),
  62905. weight: math.unit(115, "lb"),
  62906. name: "Side",
  62907. image: {
  62908. source: "./media/characters/moonbeam/side.svg",
  62909. extra: 839/485,
  62910. bottom: 60/899
  62911. }
  62912. },
  62913. },
  62914. [
  62915. {
  62916. name: "Normal",
  62917. height: math.unit(6, "feet"),
  62918. default: true
  62919. },
  62920. ]
  62921. ))
  62922. characterMakers.push(() => makeCharacter(
  62923. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62924. {
  62925. front: {
  62926. height: math.unit(3500, "miles"),
  62927. weight: math.unit(1659, "petatonnes"),
  62928. name: "Front",
  62929. image: {
  62930. source: "./media/characters/baltica/front.svg",
  62931. extra: 429/428,
  62932. bottom: 41/470
  62933. }
  62934. },
  62935. back: {
  62936. height: math.unit(3500, "miles"),
  62937. weight: math.unit(1659, "petatonnes"),
  62938. name: "Back",
  62939. image: {
  62940. source: "./media/characters/baltica/back.svg",
  62941. extra: 452/451,
  62942. bottom: 8/460
  62943. }
  62944. },
  62945. },
  62946. [
  62947. {
  62948. name: "Gigamacro",
  62949. height: math.unit(3500, "miles"),
  62950. default: true
  62951. },
  62952. ]
  62953. ))
  62954. characterMakers.push(() => makeCharacter(
  62955. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62956. {
  62957. front: {
  62958. height: math.unit(6 + 10/12, "feet"),
  62959. weight: math.unit(200, "lb"),
  62960. name: "Front",
  62961. image: {
  62962. source: "./media/characters/shadow-wolf/front.svg",
  62963. extra: 1931/1760,
  62964. bottom: 88/2019
  62965. }
  62966. },
  62967. },
  62968. [
  62969. {
  62970. name: "Normal",
  62971. height: math.unit(6 + 10/12, "feet"),
  62972. default: true
  62973. },
  62974. ]
  62975. ))
  62976. characterMakers.push(() => makeCharacter(
  62977. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62978. {
  62979. front: {
  62980. height: math.unit(5 + 10/12, "feet"),
  62981. name: "Front",
  62982. image: {
  62983. source: "./media/characters/quincy-praying-mantis/front.svg",
  62984. extra: 1055/891,
  62985. bottom: 92/1147
  62986. }
  62987. },
  62988. soles: {
  62989. height: math.unit(0.85, "feet"),
  62990. name: "Soles",
  62991. image: {
  62992. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62993. extra: 429/324,
  62994. bottom: 89/518
  62995. },
  62996. extraAttributes: {
  62997. "shoeSize": {
  62998. name: "Shoe Size",
  62999. power: 1,
  63000. type: "length",
  63001. base: math.unit(23, "ShoeSizeMensUS"),
  63002. defaultUnit: "ShoeSizeMensUS"
  63003. },
  63004. }
  63005. },
  63006. foot: {
  63007. height: math.unit(0.72, "feet"),
  63008. name: "Foot",
  63009. image: {
  63010. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63011. extra: 349/349,
  63012. bottom: 76/425
  63013. }
  63014. },
  63015. },
  63016. [
  63017. {
  63018. name: "Normal",
  63019. height: math.unit(5 + 10/12, "feet"),
  63020. default: true
  63021. },
  63022. ]
  63023. ))
  63024. characterMakers.push(() => makeCharacter(
  63025. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63026. {
  63027. front: {
  63028. height: math.unit(6, "feet"),
  63029. name: "Front",
  63030. image: {
  63031. source: "./media/characters/christopher-redwood/front.svg",
  63032. extra: 1402/1341,
  63033. bottom: 23/1425
  63034. }
  63035. },
  63036. back: {
  63037. height: math.unit(6, "feet"),
  63038. name: "Back",
  63039. image: {
  63040. source: "./media/characters/christopher-redwood/back.svg",
  63041. extra: 1406/1345,
  63042. bottom: 36/1442
  63043. }
  63044. },
  63045. head: {
  63046. height: math.unit(1.685, "feet"),
  63047. name: "Head",
  63048. image: {
  63049. source: "./media/characters/christopher-redwood/head.svg"
  63050. }
  63051. },
  63052. },
  63053. [
  63054. {
  63055. name: "Normal",
  63056. height: math.unit(6, "feet"),
  63057. default: true
  63058. },
  63059. ]
  63060. ))
  63061. characterMakers.push(() => makeCharacter(
  63062. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63063. {
  63064. front: {
  63065. height: math.unit(1.9, "meters"),
  63066. weight: math.unit(140, "lb"),
  63067. name: "Front",
  63068. image: {
  63069. source: "./media/characters/kara-fox/front.svg",
  63070. extra: 766/711,
  63071. bottom: 41/807
  63072. }
  63073. },
  63074. back: {
  63075. height: math.unit(1.9, "meters"),
  63076. weight: math.unit(140, "lb"),
  63077. name: "Back",
  63078. image: {
  63079. source: "./media/characters/kara-fox/back.svg",
  63080. extra: 766/596,
  63081. bottom: 29/795
  63082. }
  63083. },
  63084. maw: {
  63085. height: math.unit(0.78, "feet"),
  63086. name: "Maw",
  63087. image: {
  63088. source: "./media/characters/kara-fox/maw.svg"
  63089. }
  63090. },
  63091. pawpads: {
  63092. height: math.unit(0.96, "feet"),
  63093. name: "Pawpads",
  63094. image: {
  63095. source: "./media/characters/kara-fox/pawpads.svg"
  63096. }
  63097. },
  63098. },
  63099. [
  63100. {
  63101. name: "Normal",
  63102. height: math.unit(1.9, "meters"),
  63103. default: true
  63104. },
  63105. {
  63106. name: "Giantess",
  63107. height: math.unit(80, "meters")
  63108. },
  63109. ]
  63110. ))
  63111. characterMakers.push(() => makeCharacter(
  63112. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63113. {
  63114. front: {
  63115. height: math.unit(12, "feet"),
  63116. name: "Front",
  63117. image: {
  63118. source: "./media/characters/naomi-espeon/front.svg",
  63119. extra: 892/797,
  63120. bottom: 5/897
  63121. }
  63122. },
  63123. back: {
  63124. height: math.unit(12, "feet"),
  63125. name: "Back",
  63126. image: {
  63127. source: "./media/characters/naomi-espeon/back.svg",
  63128. extra: 890/785,
  63129. bottom: 12/902
  63130. }
  63131. },
  63132. },
  63133. [
  63134. {
  63135. name: "Normal",
  63136. height: math.unit(12, "feet"),
  63137. default: true
  63138. },
  63139. ]
  63140. ))
  63141. characterMakers.push(() => makeCharacter(
  63142. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63143. {
  63144. anthro_front: {
  63145. height: math.unit(8, "feet"),
  63146. weight: math.unit(625, "lb"),
  63147. name: "Front",
  63148. image: {
  63149. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63150. extra: 638/574,
  63151. bottom: 73/711
  63152. },
  63153. form: "anthro",
  63154. default: true
  63155. },
  63156. anthro_back: {
  63157. height: math.unit(8, "feet"),
  63158. weight: math.unit(625, "lb"),
  63159. name: "Back",
  63160. image: {
  63161. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63162. extra: 674/614,
  63163. bottom: 7/681
  63164. },
  63165. form: "anthro",
  63166. },
  63167. taur_side: {
  63168. height: math.unit(16, "feet"),
  63169. weight: math.unit(4.5, "tons"),
  63170. name: "Side",
  63171. image: {
  63172. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63173. extra: 704/646,
  63174. bottom: 132/836
  63175. },
  63176. form: "taur",
  63177. default: true
  63178. },
  63179. },
  63180. [
  63181. {
  63182. name: "Normal",
  63183. height: math.unit(8, "feet"),
  63184. default: true,
  63185. form: "anthro"
  63186. },
  63187. {
  63188. name: "Normal",
  63189. height: math.unit(16, "feet"),
  63190. default: true,
  63191. form: "taur"
  63192. },
  63193. ],
  63194. {
  63195. "anthro": {
  63196. name: "Anthro",
  63197. default: true
  63198. },
  63199. "taur": {
  63200. name: "Taur",
  63201. },
  63202. }
  63203. ))
  63204. characterMakers.push(() => makeCharacter(
  63205. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63206. {
  63207. front: {
  63208. height: math.unit(190, "cm"),
  63209. weight: math.unit(110, "kg"),
  63210. name: "Front",
  63211. image: {
  63212. source: "./media/characters/amelie/front.svg",
  63213. extra: 530/442,
  63214. bottom: 35/565
  63215. }
  63216. },
  63217. },
  63218. [
  63219. {
  63220. name: "Normal",
  63221. height: math.unit(190, "cm"),
  63222. default: true
  63223. },
  63224. ]
  63225. ))
  63226. characterMakers.push(() => makeCharacter(
  63227. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63228. {
  63229. front: {
  63230. height: math.unit(21, "feet"),
  63231. weight: math.unit(30000, "lb"),
  63232. name: "Front",
  63233. image: {
  63234. source: "./media/characters/valence/front.svg",
  63235. extra: 1430/1306,
  63236. bottom: 51/1481
  63237. }
  63238. },
  63239. },
  63240. [
  63241. {
  63242. name: "Normal",
  63243. height: math.unit(21, "feet"),
  63244. default: true
  63245. },
  63246. ]
  63247. ))
  63248. characterMakers.push(() => makeCharacter(
  63249. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63250. {
  63251. front: {
  63252. height: math.unit(5 + 9/12, "feet"),
  63253. weight: math.unit(170, "lb"),
  63254. name: "Front",
  63255. image: {
  63256. source: "./media/characters/aurora-adkins/front.svg",
  63257. extra: 1141/1089,
  63258. bottom: 41/1182
  63259. }
  63260. },
  63261. },
  63262. [
  63263. {
  63264. name: "Tiny",
  63265. height: math.unit(7, "mm")
  63266. },
  63267. {
  63268. name: "Small",
  63269. height: math.unit(3.4, "inches")
  63270. },
  63271. {
  63272. name: "Normal",
  63273. height: math.unit(5 + 9/12, "feet"),
  63274. default: true
  63275. },
  63276. {
  63277. name: "Big",
  63278. height: math.unit(31, "feet")
  63279. },
  63280. {
  63281. name: "Giant",
  63282. height: math.unit(300, "feet")
  63283. },
  63284. ]
  63285. ))
  63286. characterMakers.push(() => makeCharacter(
  63287. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63288. {
  63289. front: {
  63290. height: math.unit(5 + 6/12, "feet"),
  63291. weight: math.unit(210, "lb"),
  63292. name: "Front",
  63293. image: {
  63294. source: "./media/characters/cyber/front.svg",
  63295. extra: 1968/1798,
  63296. bottom: 10/1978
  63297. },
  63298. extraAttributes: {
  63299. "shoeSize": {
  63300. name: "Shoe Size",
  63301. power: 1,
  63302. type: "length",
  63303. base: math.unit(30, "ShoeSizeMensUS")
  63304. },
  63305. }
  63306. },
  63307. },
  63308. [
  63309. {
  63310. name: "Normal",
  63311. height: math.unit(5 + 6/12, "feet"),
  63312. default: true
  63313. },
  63314. ]
  63315. ))
  63316. characterMakers.push(() => makeCharacter(
  63317. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63318. {
  63319. front: {
  63320. height: math.unit(6 + 6/12, "feet"),
  63321. weight: math.unit(140, "lb"),
  63322. name: "Front",
  63323. image: {
  63324. source: "./media/characters/sapphire-wairimea/front.svg",
  63325. extra: 475/458,
  63326. bottom: 14/489
  63327. }
  63328. },
  63329. },
  63330. [
  63331. {
  63332. name: "Normal",
  63333. height: math.unit(6 + 6/12, "feet")
  63334. },
  63335. {
  63336. name: "Macro",
  63337. height: math.unit(132, "feet"),
  63338. default: true
  63339. },
  63340. ]
  63341. ))
  63342. characterMakers.push(() => makeCharacter(
  63343. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63344. {
  63345. front: {
  63346. height: math.unit(1.6, "meters"),
  63347. weight: math.unit(100, "lb"),
  63348. name: "Front",
  63349. image: {
  63350. source: "./media/characters/cirkazi/front.svg",
  63351. extra: 489/477,
  63352. bottom: 0/489
  63353. }
  63354. },
  63355. },
  63356. [
  63357. {
  63358. name: "Normal",
  63359. height: math.unit(1.6, "meters")
  63360. },
  63361. {
  63362. name: "Macro",
  63363. height: math.unit(800, "feet"),
  63364. default: true
  63365. },
  63366. ]
  63367. ))
  63368. characterMakers.push(() => makeCharacter(
  63369. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63370. {
  63371. front: {
  63372. height: math.unit(5 + 10/12, "feet"),
  63373. weight: math.unit(145, "lb"),
  63374. name: "Front",
  63375. image: {
  63376. source: "./media/characters/corrin-cavelli/front.svg",
  63377. extra: 483/464,
  63378. bottom: 6/489
  63379. }
  63380. },
  63381. },
  63382. [
  63383. {
  63384. name: "Human",
  63385. height: math.unit(5 + 10/12, "feet")
  63386. },
  63387. {
  63388. name: "Giant",
  63389. height: math.unit(210, "feet"),
  63390. default: true
  63391. },
  63392. ]
  63393. ))
  63394. characterMakers.push(() => makeCharacter(
  63395. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63396. {
  63397. back: {
  63398. height: math.unit(5 + 6/12, "feet"),
  63399. weight: math.unit(115, "lb"),
  63400. name: "Back",
  63401. image: {
  63402. source: "./media/characters/lori-lopez/back.svg",
  63403. extra: 483/474,
  63404. bottom: 6/489
  63405. }
  63406. },
  63407. },
  63408. [
  63409. {
  63410. name: "Human",
  63411. height: math.unit(5 + 6/12, "feet")
  63412. },
  63413. {
  63414. name: "Macro",
  63415. height: math.unit(198, "feet"),
  63416. default: true
  63417. },
  63418. ]
  63419. ))
  63420. characterMakers.push(() => makeCharacter(
  63421. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63422. {
  63423. front: {
  63424. height: math.unit(6, "feet"),
  63425. weight: math.unit(220, "lb"),
  63426. name: "Front",
  63427. image: {
  63428. source: "./media/characters/sylvia-beauregard/front.svg",
  63429. extra: 483/479,
  63430. bottom: 6/489
  63431. }
  63432. },
  63433. },
  63434. [
  63435. {
  63436. name: "Macro",
  63437. height: math.unit(2071, "feet"),
  63438. default: true
  63439. },
  63440. ]
  63441. ))
  63442. characterMakers.push(() => makeCharacter(
  63443. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63444. {
  63445. back: {
  63446. height: math.unit(5 + 6/12, "feet"),
  63447. weight: math.unit(160, "lb"),
  63448. name: "Back",
  63449. image: {
  63450. source: "./media/characters/akiko-takahashi/back.svg",
  63451. extra: 459/454,
  63452. bottom: 27/486
  63453. }
  63454. },
  63455. },
  63456. [
  63457. {
  63458. name: "Human",
  63459. height: math.unit(5 + 6/12, "feet")
  63460. },
  63461. {
  63462. name: "Macro",
  63463. height: math.unit(198, "feet"),
  63464. default: true
  63465. },
  63466. {
  63467. name: "Megamacro",
  63468. height: math.unit(7128, "feet")
  63469. },
  63470. ]
  63471. ))
  63472. characterMakers.push(() => makeCharacter(
  63473. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63474. {
  63475. front: {
  63476. height: math.unit(6, "feet"),
  63477. weight: math.unit(140, "lb"),
  63478. name: "Front",
  63479. image: {
  63480. source: "./media/characters/velvet-garza/front.svg",
  63481. extra: 480/462,
  63482. bottom: 7/487
  63483. }
  63484. },
  63485. },
  63486. [
  63487. {
  63488. name: "Macro",
  63489. height: math.unit(37, "feet"),
  63490. default: true
  63491. },
  63492. ]
  63493. ))
  63494. characterMakers.push(() => makeCharacter(
  63495. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63496. {
  63497. front: {
  63498. height: math.unit(7 + 6/12, "feet"),
  63499. weight: math.unit(400, "lb"),
  63500. name: "Front",
  63501. image: {
  63502. source: "./media/characters/gaia/front.svg",
  63503. extra: 474/463,
  63504. bottom: 13/487
  63505. }
  63506. },
  63507. },
  63508. [
  63509. {
  63510. name: "MiniMacro",
  63511. height: math.unit(7 + 6/12, "feet")
  63512. },
  63513. {
  63514. name: "GigaMacro",
  63515. height: math.unit(14500, "feet"),
  63516. default: true
  63517. },
  63518. ]
  63519. ))
  63520. characterMakers.push(() => makeCharacter(
  63521. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63522. {
  63523. front: {
  63524. height: math.unit(6, "feet"),
  63525. weight: math.unit(150, "lb"),
  63526. name: "Front",
  63527. image: {
  63528. source: "./media/characters/tim/front.svg",
  63529. extra: 1878/1743,
  63530. bottom: 9/1887
  63531. }
  63532. },
  63533. frontDressed: {
  63534. height: math.unit(6, "feet"),
  63535. weight: math.unit(150, "lb"),
  63536. name: "Front (Dressed)",
  63537. image: {
  63538. source: "./media/characters/tim/front-dressed.svg",
  63539. extra: 1765/1485,
  63540. bottom: 48/1813
  63541. }
  63542. },
  63543. backDressed: {
  63544. height: math.unit(6, "feet"),
  63545. weight: math.unit(150, "lb"),
  63546. name: "Back (Dressed)",
  63547. image: {
  63548. source: "./media/characters/tim/back-dressed.svg",
  63549. extra: 1750/1465,
  63550. bottom: 25/1775
  63551. }
  63552. },
  63553. dick: {
  63554. height: math.unit(1.5, "feet"),
  63555. weight: math.unit(6, "lb"),
  63556. name: "Dick",
  63557. image: {
  63558. source: "./media/characters/tim/dick.svg"
  63559. }
  63560. },
  63561. hand: {
  63562. height: math.unit(0.522, "feet"),
  63563. name: "Hand",
  63564. image: {
  63565. source: "./media/characters/tim/hand.svg"
  63566. }
  63567. },
  63568. palm: {
  63569. height: math.unit(0.48, "feet"),
  63570. name: "Palm",
  63571. image: {
  63572. source: "./media/characters/tim/palm.svg"
  63573. }
  63574. },
  63575. paw: {
  63576. height: math.unit(0.9, "feet"),
  63577. name: "Paw",
  63578. image: {
  63579. source: "./media/characters/tim/paw.svg"
  63580. }
  63581. },
  63582. sole: {
  63583. height: math.unit(0.88, "feet"),
  63584. name: "Sole",
  63585. image: {
  63586. source: "./media/characters/tim/sole.svg"
  63587. }
  63588. },
  63589. },
  63590. [
  63591. {
  63592. name: "Macro",
  63593. height: math.unit(1000, "feet")
  63594. },
  63595. {
  63596. name: "Megamacro",
  63597. height: math.unit(10000, "feet"),
  63598. default: true
  63599. },
  63600. {
  63601. name: "Megamacro+",
  63602. height: math.unit(50000, "feet")
  63603. },
  63604. {
  63605. name: "Gigamacro",
  63606. height: math.unit(150000, "km")
  63607. },
  63608. ]
  63609. ))
  63610. characterMakers.push(() => makeCharacter(
  63611. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63612. {
  63613. front: {
  63614. height: math.unit(5 + 8/12, "feet"),
  63615. weight: math.unit(170, "lb"),
  63616. name: "Front",
  63617. image: {
  63618. source: "./media/characters/abel-delreoux/front.svg",
  63619. extra: 1615/1500,
  63620. bottom: 82/1697
  63621. }
  63622. },
  63623. back: {
  63624. height: math.unit(5 + 8/12, "feet"),
  63625. weight: math.unit(170, "lb"),
  63626. name: "Back",
  63627. image: {
  63628. source: "./media/characters/abel-delreoux/back.svg",
  63629. extra: 1644/1534,
  63630. bottom: 24/1668
  63631. }
  63632. },
  63633. casual: {
  63634. height: math.unit(5 + 8/12, "feet"),
  63635. weight: math.unit(170, "lb"),
  63636. name: "Casual",
  63637. image: {
  63638. source: "./media/characters/abel-delreoux/casual.svg",
  63639. extra: 1716/1598,
  63640. bottom: 29/1745
  63641. }
  63642. },
  63643. sleepy: {
  63644. height: math.unit(5 + 8/12, "feet"),
  63645. weight: math.unit(170, "lb"),
  63646. name: "Sleepy",
  63647. image: {
  63648. source: "./media/characters/abel-delreoux/sleepy.svg",
  63649. extra: 1649/1573,
  63650. bottom: 22/1671
  63651. }
  63652. },
  63653. fem: {
  63654. height: math.unit(5 + 8/12, "feet"),
  63655. weight: math.unit(170, "lb"),
  63656. name: "Fem",
  63657. image: {
  63658. source: "./media/characters/abel-delreoux/fem.svg",
  63659. extra: 1680/1564,
  63660. bottom: 17/1697
  63661. }
  63662. },
  63663. hand: {
  63664. height: math.unit(0.78, "feet"),
  63665. name: "Hand",
  63666. image: {
  63667. source: "./media/characters/abel-delreoux/hand.svg"
  63668. }
  63669. },
  63670. paw: {
  63671. height: math.unit(0.78, "feet"),
  63672. name: "Paw",
  63673. image: {
  63674. source: "./media/characters/abel-delreoux/paw.svg"
  63675. }
  63676. },
  63677. },
  63678. [
  63679. {
  63680. name: "Normal",
  63681. height: math.unit(5 + 8/12, "feet"),
  63682. default: true
  63683. },
  63684. ]
  63685. ))
  63686. characterMakers.push(() => makeCharacter(
  63687. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63688. {
  63689. front: {
  63690. height: math.unit(6, "feet"),
  63691. weight: math.unit(159, "lb"),
  63692. name: "Front",
  63693. image: {
  63694. source: "./media/characters/meus/front.svg",
  63695. extra: 938/843,
  63696. bottom: 37/975
  63697. }
  63698. },
  63699. back: {
  63700. height: math.unit(6, "feet"),
  63701. weight: math.unit(159, "lb"),
  63702. name: "Back",
  63703. image: {
  63704. source: "./media/characters/meus/back.svg",
  63705. extra: 967/873,
  63706. bottom: 12/979
  63707. }
  63708. },
  63709. },
  63710. [
  63711. {
  63712. name: "Micro",
  63713. height: math.unit(2, "inches")
  63714. },
  63715. {
  63716. name: "Mini",
  63717. height: math.unit(6, "inches")
  63718. },
  63719. {
  63720. name: "Normal",
  63721. height: math.unit(6, "feet"),
  63722. default: true
  63723. },
  63724. {
  63725. name: "Macro",
  63726. height: math.unit(84, "feet")
  63727. },
  63728. ]
  63729. ))
  63730. characterMakers.push(() => makeCharacter(
  63731. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63732. {
  63733. front: {
  63734. height: math.unit(60, "cm"),
  63735. weight: math.unit(18, "kg"),
  63736. name: "Front",
  63737. image: {
  63738. source: "./media/characters/yamato/front.svg",
  63739. extra: 733/688,
  63740. bottom: 29/762
  63741. }
  63742. },
  63743. },
  63744. [
  63745. {
  63746. name: "Micro",
  63747. height: math.unit(6, "cm")
  63748. },
  63749. {
  63750. name: "Normal",
  63751. height: math.unit(60, "cm"),
  63752. default: true
  63753. },
  63754. ]
  63755. ))
  63756. characterMakers.push(() => makeCharacter(
  63757. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63758. {
  63759. front: {
  63760. height: math.unit(9, "feet"),
  63761. weight: math.unit(518, "lb"),
  63762. name: "Front",
  63763. image: {
  63764. source: "./media/characters/barus/front.svg",
  63765. extra: 1877/1795,
  63766. bottom: 55/1932
  63767. }
  63768. },
  63769. },
  63770. [
  63771. {
  63772. name: "Base Height",
  63773. height: math.unit(9, "feet"),
  63774. default: true
  63775. },
  63776. {
  63777. name: "Large",
  63778. height: math.unit(18, "feet")
  63779. },
  63780. {
  63781. name: "Giant",
  63782. height: math.unit(100, "feet")
  63783. },
  63784. {
  63785. name: "Huge",
  63786. height: math.unit(500, "feet")
  63787. },
  63788. {
  63789. name: "Enormous",
  63790. height: math.unit(300, "meters")
  63791. },
  63792. {
  63793. name: "Deity Among Man",
  63794. height: math.unit(3000, "meters")
  63795. },
  63796. ]
  63797. ))
  63798. characterMakers.push(() => makeCharacter(
  63799. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63800. {
  63801. front: {
  63802. height: math.unit(1.7, "meters"),
  63803. name: "Front",
  63804. image: {
  63805. source: "./media/characters/yari/front.svg",
  63806. extra: 1210/1125,
  63807. bottom: 283/1493
  63808. }
  63809. },
  63810. back: {
  63811. height: math.unit(1.7, "meters"),
  63812. name: "Back",
  63813. image: {
  63814. source: "./media/characters/yari/back.svg",
  63815. extra: 1240/1195,
  63816. bottom: 180/1420
  63817. }
  63818. },
  63819. head: {
  63820. height: math.unit(1.26, "feet"),
  63821. name: "Head",
  63822. image: {
  63823. source: "./media/characters/yari/head.svg"
  63824. }
  63825. },
  63826. },
  63827. [
  63828. {
  63829. name: "Nano",
  63830. height: math.unit(0.5, "mm")
  63831. },
  63832. {
  63833. name: "Micro",
  63834. height: math.unit(3, "inches")
  63835. },
  63836. {
  63837. name: "Short",
  63838. height: math.unit(1.5, "meters")
  63839. },
  63840. {
  63841. name: "Norm",
  63842. height: math.unit(1.7, "meters"),
  63843. default: true
  63844. },
  63845. ]
  63846. ))
  63847. characterMakers.push(() => makeCharacter(
  63848. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63849. {
  63850. front: {
  63851. height: math.unit(5 + 2/12, "feet"),
  63852. weight: math.unit(110, "lb"),
  63853. name: "Front",
  63854. image: {
  63855. source: "./media/characters/salem/front.svg",
  63856. extra: 1895/1800,
  63857. bottom: 23/1918
  63858. }
  63859. },
  63860. back: {
  63861. height: math.unit(5 + 2/12, "feet"),
  63862. weight: math.unit(110, "lb"),
  63863. name: "Back",
  63864. image: {
  63865. source: "./media/characters/salem/back.svg",
  63866. extra: 1875/1802,
  63867. bottom: 20/1895
  63868. }
  63869. },
  63870. head: {
  63871. height: math.unit(1, "feet"),
  63872. name: "Head",
  63873. image: {
  63874. source: "./media/characters/salem/head.svg"
  63875. }
  63876. },
  63877. paw: {
  63878. height: math.unit(0.59, "feet"),
  63879. name: "Paw",
  63880. image: {
  63881. source: "./media/characters/salem/paw.svg"
  63882. }
  63883. },
  63884. beans: {
  63885. height: math.unit(0.66, "feet"),
  63886. name: "Beans",
  63887. image: {
  63888. source: "./media/characters/salem/beans.svg"
  63889. }
  63890. },
  63891. eye: {
  63892. height: math.unit(0.224, "feet"),
  63893. name: "Eye",
  63894. image: {
  63895. source: "./media/characters/salem/eye.svg"
  63896. }
  63897. },
  63898. semiferal: {
  63899. height: math.unit(2.3, "feet"),
  63900. name: "Semiferal",
  63901. image: {
  63902. source: "./media/characters/salem/semiferal.svg",
  63903. extra: 914/839,
  63904. bottom: 32/946
  63905. }
  63906. },
  63907. },
  63908. [
  63909. {
  63910. name: "Micro",
  63911. height: math.unit(4, "inches")
  63912. },
  63913. {
  63914. name: "Normal",
  63915. height: math.unit(5 + 2/12, "feet"),
  63916. default: true
  63917. },
  63918. {
  63919. name: "Macro",
  63920. height: math.unit(108, "feet")
  63921. },
  63922. {
  63923. name: "Macro+",
  63924. height: math.unit(1500, "feet")
  63925. },
  63926. ]
  63927. ))
  63928. characterMakers.push(() => makeCharacter(
  63929. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63930. {
  63931. front: {
  63932. height: math.unit(7 + 6/12, "feet"),
  63933. weight: math.unit(600, "kg"),
  63934. preyCapacity: math.unit(10, "people"),
  63935. name: "Front",
  63936. image: {
  63937. source: "./media/characters/kii/front.svg",
  63938. extra: 3296/3087,
  63939. bottom: 130/3426
  63940. }
  63941. },
  63942. },
  63943. [
  63944. {
  63945. name: "Normal",
  63946. height: math.unit(7 + 6/12, "feet"),
  63947. default: true
  63948. },
  63949. ]
  63950. ))
  63951. characterMakers.push(() => makeCharacter(
  63952. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63953. {
  63954. front: {
  63955. height: math.unit(2, "meters"),
  63956. weight: math.unit(200, "lb"),
  63957. name: "Front",
  63958. image: {
  63959. source: "./media/characters/taffy/front.svg",
  63960. extra: 1666/1618,
  63961. bottom: 157/1823
  63962. }
  63963. },
  63964. back: {
  63965. height: math.unit(2, "meters"),
  63966. weight: math.unit(200, "lb"),
  63967. name: "Back",
  63968. image: {
  63969. source: "./media/characters/taffy/back.svg",
  63970. extra: 1635/1583,
  63971. bottom: 153/1788
  63972. }
  63973. },
  63974. },
  63975. [
  63976. {
  63977. name: "Normal",
  63978. height: math.unit(2, "meters"),
  63979. default: true
  63980. },
  63981. ]
  63982. ))
  63983. characterMakers.push(() => makeCharacter(
  63984. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63985. {
  63986. front: {
  63987. height: math.unit(1.55, "meters"),
  63988. weight: math.unit(60, "kg"),
  63989. name: "Front",
  63990. image: {
  63991. source: "./media/characters/barley/front.svg",
  63992. extra: 1520/1340,
  63993. bottom: 47/1567
  63994. }
  63995. },
  63996. back: {
  63997. height: math.unit(1.55, "meters"),
  63998. weight: math.unit(60, "kg"),
  63999. name: "Back",
  64000. image: {
  64001. source: "./media/characters/barley/back.svg",
  64002. extra: 1543/1341,
  64003. bottom: 12/1555
  64004. }
  64005. },
  64006. feet: {
  64007. height: math.unit(2.18, "feet"),
  64008. name: "Feet",
  64009. image: {
  64010. source: "./media/characters/barley/feet.svg"
  64011. }
  64012. },
  64013. },
  64014. [
  64015. {
  64016. name: "Normal",
  64017. height: math.unit(1.55, "meters"),
  64018. default: true
  64019. },
  64020. ]
  64021. ))
  64022. characterMakers.push(() => makeCharacter(
  64023. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64024. {
  64025. dressed: {
  64026. height: math.unit(6, "feet"),
  64027. name: "Dressed",
  64028. image: {
  64029. source: "./media/characters/lydia-lopez/dressed.svg",
  64030. extra: 1319/1277,
  64031. bottom: 90/1409
  64032. }
  64033. },
  64034. nude: {
  64035. height: math.unit(6, "feet"),
  64036. name: "Nude",
  64037. image: {
  64038. source: "./media/characters/lydia-lopez/nude.svg",
  64039. extra: 1319/1277,
  64040. bottom: 90/1409
  64041. }
  64042. },
  64043. },
  64044. [
  64045. {
  64046. name: "Normal",
  64047. height: math.unit(6, "feet"),
  64048. default: true
  64049. },
  64050. {
  64051. name: "Maximum",
  64052. height: math.unit(2101, "feet")
  64053. },
  64054. ]
  64055. ))
  64056. characterMakers.push(() => makeCharacter(
  64057. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64058. {
  64059. front: {
  64060. height: math.unit(5 + 4/12, "feet"),
  64061. weight: math.unit(250, "lb"),
  64062. volume: math.unit(20, "gallons"),
  64063. name: "Front",
  64064. image: {
  64065. source: "./media/characters/kira-slime/front.svg",
  64066. extra: 442/403,
  64067. bottom: 18/460
  64068. }
  64069. },
  64070. frontNsfw: {
  64071. height: math.unit(5 + 4/12, "feet"),
  64072. weight: math.unit(250, "lb"),
  64073. volume: math.unit(20, "gallons"),
  64074. name: "Front (NSFW)",
  64075. image: {
  64076. source: "./media/characters/kira-slime/front-nsfw.svg",
  64077. extra: 442/403,
  64078. bottom: 18/460
  64079. }
  64080. },
  64081. },
  64082. [
  64083. {
  64084. name: "Droplet",
  64085. height: math.unit(0.0464452, "feet")
  64086. },
  64087. {
  64088. name: "Pint",
  64089. height: math.unit(0.9824, "feet")
  64090. },
  64091. {
  64092. name: "Bucket",
  64093. height: math.unit(2.83, "feet")
  64094. },
  64095. {
  64096. name: "Normal",
  64097. height: math.unit(5 + 4/12, "feet"),
  64098. default: true
  64099. },
  64100. {
  64101. name: "Tub",
  64102. height: math.unit(8.46614, "feet")
  64103. },
  64104. {
  64105. name: "Pool",
  64106. height: math.unit(31.1895, "feet")
  64107. },
  64108. {
  64109. name: "Pond",
  64110. height: math.unit(170.349, "feet")
  64111. },
  64112. {
  64113. name: "Lake",
  64114. height: math.unit(289334, "feet")
  64115. },
  64116. {
  64117. name: "Ocean",
  64118. height: math.unit(1.11940e+7, "feet")
  64119. },
  64120. ]
  64121. ))
  64122. characterMakers.push(() => makeCharacter(
  64123. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64124. {
  64125. front: {
  64126. height: math.unit(5 + 6/12, "feet"),
  64127. weight: math.unit(120, "lb"),
  64128. name: "Front",
  64129. image: {
  64130. source: "./media/characters/holiday/front.svg",
  64131. extra: 456/403,
  64132. bottom: 4/460
  64133. }
  64134. },
  64135. back: {
  64136. height: math.unit(5 + 6/12, "feet"),
  64137. weight: math.unit(120, "lb"),
  64138. name: "Back",
  64139. image: {
  64140. source: "./media/characters/holiday/back.svg",
  64141. extra: 450/404,
  64142. bottom: 12/462
  64143. }
  64144. },
  64145. head: {
  64146. height: math.unit(2.3, "feet"),
  64147. name: "Head",
  64148. image: {
  64149. source: "./media/characters/holiday/head.svg"
  64150. }
  64151. },
  64152. },
  64153. [
  64154. {
  64155. name: "Normal",
  64156. height: math.unit(5 + 6/12, "feet"),
  64157. default: true
  64158. },
  64159. {
  64160. name: "Macro",
  64161. height: math.unit(6574.25, "feet")
  64162. },
  64163. ]
  64164. ))
  64165. characterMakers.push(() => makeCharacter(
  64166. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64167. {
  64168. front: {
  64169. height: math.unit(6 + 2/12, "feet"),
  64170. weight: math.unit(200, "lb"),
  64171. name: "Front",
  64172. image: {
  64173. source: "./media/characters/camina/front.svg",
  64174. extra: 1048/985,
  64175. bottom: 30/1078
  64176. }
  64177. },
  64178. },
  64179. [
  64180. {
  64181. name: "Normal",
  64182. height: math.unit(6 + 2/12, "feet"),
  64183. default: true
  64184. },
  64185. ]
  64186. ))
  64187. characterMakers.push(() => makeCharacter(
  64188. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64189. {
  64190. front: {
  64191. height: math.unit(30, "cm"),
  64192. weight: math.unit(420, "grams"),
  64193. name: "Front",
  64194. image: {
  64195. source: "./media/characters/smuck/front.svg",
  64196. extra: 379/345,
  64197. bottom: 36/415
  64198. }
  64199. },
  64200. },
  64201. [
  64202. {
  64203. name: "Smuck-Sized",
  64204. height: math.unit(30, "cm"),
  64205. default: true
  64206. },
  64207. ]
  64208. ))
  64209. characterMakers.push(() => makeCharacter(
  64210. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64211. {
  64212. frontSfw: {
  64213. height: math.unit(10, "feet"),
  64214. weight: math.unit(1000, "kg"),
  64215. preyCapacity: math.unit(2, "people"),
  64216. name: "Front (SFW)",
  64217. image: {
  64218. source: "./media/characters/bylur/front-sfw.svg",
  64219. extra: 419/343,
  64220. bottom: 3/422
  64221. },
  64222. default: true
  64223. },
  64224. frontSheath: {
  64225. height: math.unit(10, "feet"),
  64226. weight: math.unit(1000, "kg"),
  64227. preyCapacity: math.unit(2, "people"),
  64228. name: "Front (Sheath)",
  64229. image: {
  64230. source: "./media/characters/bylur/front-sheath.svg",
  64231. extra: 419/343,
  64232. bottom: 3/422
  64233. }
  64234. },
  64235. frontErect: {
  64236. height: math.unit(10, "feet"),
  64237. weight: math.unit(1000, "kg"),
  64238. preyCapacity: math.unit(2, "people"),
  64239. name: "Front (Erect)",
  64240. image: {
  64241. source: "./media/characters/bylur/front-erect.svg",
  64242. extra: 419/343,
  64243. bottom: 3/422
  64244. }
  64245. },
  64246. back: {
  64247. height: math.unit(10, "feet"),
  64248. weight: math.unit(1000, "kg"),
  64249. preyCapacity: math.unit(2, "people"),
  64250. name: "Back",
  64251. image: {
  64252. source: "./media/characters/bylur/back.svg",
  64253. extra: 392/315,
  64254. bottom: 3/395
  64255. }
  64256. },
  64257. maw: {
  64258. height: math.unit(3.65, "feet"),
  64259. name: "Maw",
  64260. image: {
  64261. source: "./media/characters/bylur/maw.svg"
  64262. }
  64263. },
  64264. },
  64265. [
  64266. {
  64267. name: "Slightly Human Sized",
  64268. height: math.unit(10, "feet")
  64269. },
  64270. {
  64271. name: "Normal",
  64272. height: math.unit(35, "feet"),
  64273. default: true
  64274. },
  64275. {
  64276. name: "Macro",
  64277. height: math.unit(130, "feet")
  64278. },
  64279. ]
  64280. ))
  64281. characterMakers.push(() => makeCharacter(
  64282. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64283. {
  64284. frontNsfw: {
  64285. height: math.unit(6, "feet"),
  64286. weight: math.unit(250, "lb"),
  64287. preyCapacity: math.unit(0.05, "people"),
  64288. name: "Front (NSFW)",
  64289. image: {
  64290. source: "./media/characters/oarven/front-nsfw.svg",
  64291. extra: 1795/1783,
  64292. bottom: 142/1937
  64293. }
  64294. },
  64295. frontSfw: {
  64296. height: math.unit(6, "feet"),
  64297. weight: math.unit(250, "lb"),
  64298. preyCapacity: math.unit(0.05, "people"),
  64299. name: "Front (SFW)",
  64300. image: {
  64301. source: "./media/characters/oarven/front-sfw.svg",
  64302. extra: 1795/1783,
  64303. bottom: 142/1937
  64304. }
  64305. },
  64306. },
  64307. [
  64308. {
  64309. name: "Megamacro",
  64310. height: math.unit(5, "miles"),
  64311. default: true
  64312. },
  64313. {
  64314. name: "Maximum Height",
  64315. height: math.unit(5, "AUs")
  64316. },
  64317. ]
  64318. ))
  64319. characterMakers.push(() => makeCharacter(
  64320. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64321. {
  64322. side: {
  64323. height: math.unit(1065, "meters"),
  64324. weight: math.unit(1e12, "kg"),
  64325. volume: math.unit(3265000000, "m^3"),
  64326. name: "Side",
  64327. image: {
  64328. source: "./media/characters/solidarity/side.svg"
  64329. }
  64330. },
  64331. front: {
  64332. height: math.unit(1065, "meters"),
  64333. weight: math.unit(3265000000000, "kg"),
  64334. volume: math.unit(3265000000, "m^3"),
  64335. name: "Front",
  64336. image: {
  64337. source: "./media/characters/solidarity/front.svg"
  64338. }
  64339. },
  64340. top: {
  64341. height: math.unit(5823, "meters"),
  64342. weight: math.unit(3265000000000, "kg"),
  64343. volume: math.unit(3265000000, "m^3"),
  64344. name: "Top",
  64345. image: {
  64346. source: "./media/characters/solidarity/top.svg"
  64347. }
  64348. },
  64349. },
  64350. [
  64351. {
  64352. name: "Normal",
  64353. height: math.unit(1065, "meters"),
  64354. default: true
  64355. },
  64356. ]
  64357. ))
  64358. characterMakers.push(() => makeCharacter(
  64359. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64360. {
  64361. side: {
  64362. height: math.unit(18 + 4/12, "feet"),
  64363. weight: math.unit(13000, "kg"),
  64364. name: "Side",
  64365. image: {
  64366. source: "./media/characters/ani'szi/side.svg",
  64367. extra: 468/459,
  64368. bottom: 60/528
  64369. }
  64370. },
  64371. head: {
  64372. height: math.unit(4.8, "feet"),
  64373. name: "Head",
  64374. image: {
  64375. source: "./media/characters/ani'szi/head.svg"
  64376. }
  64377. },
  64378. jaws: {
  64379. height: math.unit(2.25, "feet"),
  64380. name: "Jaws",
  64381. image: {
  64382. source: "./media/characters/ani'szi/jaws.svg"
  64383. }
  64384. },
  64385. bust: {
  64386. height: math.unit(8.9, "feet"),
  64387. name: "Bust",
  64388. image: {
  64389. source: "./media/characters/ani'szi/bust.svg"
  64390. }
  64391. },
  64392. back: {
  64393. height: math.unit(13.53, "feet"),
  64394. name: "Back",
  64395. image: {
  64396. source: "./media/characters/ani'szi/back.svg"
  64397. }
  64398. },
  64399. eye: {
  64400. height: math.unit(0.44, "feet"),
  64401. name: "Eye",
  64402. image: {
  64403. source: "./media/characters/ani'szi/eye.svg"
  64404. }
  64405. },
  64406. },
  64407. [
  64408. {
  64409. name: "Normal",
  64410. height: math.unit(18 + 4/12, "feet"),
  64411. default: true
  64412. },
  64413. ]
  64414. ))
  64415. characterMakers.push(() => makeCharacter(
  64416. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64417. {
  64418. front: {
  64419. height: math.unit(7 + 6/12, "feet"),
  64420. weight: math.unit(300, "lb"),
  64421. name: "Front",
  64422. image: {
  64423. source: "./media/characters/rain/front.svg",
  64424. extra: 2955/2698,
  64425. bottom: 235/3190
  64426. }
  64427. },
  64428. dressed: {
  64429. height: math.unit(7 + 6/12, "feet"),
  64430. weight: math.unit(300, "lb"),
  64431. name: "Dressed",
  64432. image: {
  64433. source: "./media/characters/rain/dressed.svg",
  64434. extra: 2783/2572,
  64435. bottom: 430/3213
  64436. }
  64437. },
  64438. },
  64439. [
  64440. {
  64441. name: "Normal",
  64442. height: math.unit(7 + 6/12, "feet"),
  64443. default: true
  64444. },
  64445. {
  64446. name: "Macro",
  64447. height: math.unit(200, "feet")
  64448. },
  64449. {
  64450. name: "Macro+",
  64451. height: math.unit(500, "feet")
  64452. },
  64453. {
  64454. name: "Megamacro",
  64455. height: math.unit(5, "miles")
  64456. },
  64457. ]
  64458. ))
  64459. characterMakers.push(() => makeCharacter(
  64460. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64461. {
  64462. taur_side: {
  64463. height: math.unit(3, "meters"),
  64464. name: "Side",
  64465. image: {
  64466. source: "./media/characters/anise/taur-side.svg",
  64467. extra: 1833/926,
  64468. bottom: 134/1967
  64469. },
  64470. form: "taur",
  64471. default: true
  64472. },
  64473. feral_side: {
  64474. height: math.unit(3, "meters"),
  64475. name: "Side",
  64476. image: {
  64477. source: "./media/characters/anise/feral-side.svg",
  64478. extra: 681/349,
  64479. bottom: 26/707
  64480. },
  64481. form: "feral"
  64482. },
  64483. },
  64484. [
  64485. {
  64486. name: "Normal",
  64487. height: math.unit(3, "meters"),
  64488. default: true,
  64489. allForms: true
  64490. },
  64491. ],
  64492. {
  64493. "taur": {
  64494. name: "Taur",
  64495. default: true
  64496. },
  64497. "feral": {
  64498. name: "Feral",
  64499. },
  64500. }
  64501. ))
  64502. characterMakers.push(() => makeCharacter(
  64503. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64504. {
  64505. front: {
  64506. height: math.unit(1.9, "meters"),
  64507. weight: math.unit(75, "kg"),
  64508. name: "Front",
  64509. image: {
  64510. source: "./media/characters/sarina/front.svg",
  64511. extra: 1275/1200,
  64512. bottom: 49/1324
  64513. }
  64514. },
  64515. back: {
  64516. height: math.unit(1.9, "meters"),
  64517. weight: math.unit(75, "kg"),
  64518. name: "Back",
  64519. image: {
  64520. source: "./media/characters/sarina/back.svg",
  64521. extra: 1279/1209,
  64522. bottom: 14/1293
  64523. }
  64524. },
  64525. dressed: {
  64526. height: math.unit(1.9, "meters"),
  64527. weight: math.unit(75, "kg"),
  64528. name: "Dressed",
  64529. image: {
  64530. source: "./media/characters/sarina/dressed.svg",
  64531. extra: 1256/1187,
  64532. bottom: 56/1312
  64533. }
  64534. },
  64535. paw: {
  64536. height: math.unit(0.57, "feet"),
  64537. name: "Paw",
  64538. image: {
  64539. source: "./media/characters/sarina/paw.svg"
  64540. }
  64541. },
  64542. toering: {
  64543. height: math.unit(0.27, "feet"),
  64544. name: "Toering",
  64545. image: {
  64546. source: "./media/characters/sarina/toering.svg"
  64547. }
  64548. },
  64549. },
  64550. [
  64551. {
  64552. name: "Incognito",
  64553. height: math.unit(1.9, "meters")
  64554. },
  64555. {
  64556. name: "Home Size",
  64557. height: math.unit(160, "meters"),
  64558. default: true
  64559. },
  64560. {
  64561. name: "Mega",
  64562. height: math.unit(50, "km")
  64563. },
  64564. {
  64565. name: "Small Giga",
  64566. height: math.unit(250, "km")
  64567. },
  64568. {
  64569. name: "Giga (Preferred Size)",
  64570. height: math.unit(3000, "km")
  64571. },
  64572. {
  64573. name: "Terra",
  64574. height: math.unit(40000, "km")
  64575. },
  64576. {
  64577. name: "Terra+",
  64578. height: math.unit(400000, "km")
  64579. },
  64580. {
  64581. name: "Solar",
  64582. height: math.unit(35e6, "km")
  64583. },
  64584. {
  64585. name: "Galactic",
  64586. height: math.unit(648106, "parsecs")
  64587. },
  64588. {
  64589. name: "Universal",
  64590. height: math.unit(7, "universes")
  64591. },
  64592. {
  64593. name: "Universal+",
  64594. height: math.unit(30, "universes")
  64595. },
  64596. ]
  64597. ))
  64598. characterMakers.push(() => makeCharacter(
  64599. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64600. {
  64601. front: {
  64602. height: math.unit(5 + 6/12, "feet"),
  64603. name: "Front",
  64604. image: {
  64605. source: "./media/characters/sifray/front.svg",
  64606. extra: 722/691,
  64607. bottom: 64/786
  64608. }
  64609. },
  64610. },
  64611. [
  64612. {
  64613. name: "Normal",
  64614. height: math.unit(5 + 6/12, "feet"),
  64615. default: true
  64616. },
  64617. ]
  64618. ))
  64619. characterMakers.push(() => makeCharacter(
  64620. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64621. {
  64622. side: {
  64623. height: math.unit(2.64, "feet"),
  64624. weight: math.unit(100, "lb"),
  64625. preyCapacity: math.unit(3, "people"),
  64626. name: "Side",
  64627. image: {
  64628. source: "./media/characters/spots/side.svg",
  64629. extra: 1859/977,
  64630. bottom: 19/1878
  64631. },
  64632. extraAttributes: {
  64633. "preyPerMinute": {
  64634. name: "Prey Per Minute",
  64635. power: 3,
  64636. type: "volume",
  64637. base: math.unit(6, "people"),
  64638. defaultUnit: "people"
  64639. },
  64640. "preyPerDay": {
  64641. name: "Prey Per Day",
  64642. power: 3,
  64643. type: "volume",
  64644. base: math.unit(6 * 60 * 24, "people"),
  64645. defaultUnit: "people"
  64646. },
  64647. }
  64648. },
  64649. },
  64650. [
  64651. {
  64652. name: "Normal",
  64653. height: math.unit(2.64, "feet"),
  64654. default: true
  64655. },
  64656. ]
  64657. ))
  64658. characterMakers.push(() => makeCharacter(
  64659. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64660. {
  64661. front: {
  64662. height: math.unit(29 + 11/12, "feet"),
  64663. weight: math.unit(40, "tons"),
  64664. name: "Front",
  64665. image: {
  64666. source: "./media/characters/mona/front.svg",
  64667. extra: 1257/1116,
  64668. bottom: 34/1291
  64669. }
  64670. },
  64671. },
  64672. [
  64673. {
  64674. name: "Normal",
  64675. height: math.unit(29 + 11/12, "feet"),
  64676. default: true
  64677. },
  64678. ]
  64679. ))
  64680. characterMakers.push(() => makeCharacter(
  64681. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64682. {
  64683. front: {
  64684. height: math.unit(15, "feet"),
  64685. weight: math.unit(3000, "kg"),
  64686. preyCapacity: math.unit(5, "people"),
  64687. name: "Front",
  64688. image: {
  64689. source: "./media/characters/frostfire/front.svg",
  64690. extra: 675/558,
  64691. bottom: 73/748
  64692. }
  64693. },
  64694. side: {
  64695. height: math.unit(15, "feet"),
  64696. weight: math.unit(3000, "kg"),
  64697. preyCapacity: math.unit(5, "people"),
  64698. name: "Side",
  64699. image: {
  64700. source: "./media/characters/frostfire/side.svg",
  64701. extra: 687/585,
  64702. bottom: 50/737
  64703. }
  64704. },
  64705. back: {
  64706. height: math.unit(15, "feet"),
  64707. weight: math.unit(3000, "kg"),
  64708. preyCapacity: math.unit(5, "people"),
  64709. name: "Back",
  64710. image: {
  64711. source: "./media/characters/frostfire/back.svg",
  64712. extra: 707/607,
  64713. bottom: 16/723
  64714. }
  64715. },
  64716. head: {
  64717. height: math.unit(9.35, "feet"),
  64718. name: "Head",
  64719. image: {
  64720. source: "./media/characters/frostfire/head.svg"
  64721. }
  64722. },
  64723. maw: {
  64724. height: math.unit(3.32, "feet"),
  64725. name: "Maw",
  64726. image: {
  64727. source: "./media/characters/frostfire/maw.svg"
  64728. }
  64729. },
  64730. hand: {
  64731. height: math.unit(3.7, "feet"),
  64732. name: "Hand",
  64733. image: {
  64734. source: "./media/characters/frostfire/hand.svg"
  64735. }
  64736. },
  64737. paw: {
  64738. height: math.unit(5.8, "feet"),
  64739. name: "Paw",
  64740. image: {
  64741. source: "./media/characters/frostfire/paw.svg"
  64742. }
  64743. },
  64744. },
  64745. [
  64746. {
  64747. name: "Normal",
  64748. height: math.unit(15, "feet"),
  64749. default: true
  64750. },
  64751. ]
  64752. ))
  64753. characterMakers.push(() => makeCharacter(
  64754. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64755. {
  64756. front: {
  64757. height: math.unit(5 + 2/12, "feet"),
  64758. weight: math.unit(122, "lb"),
  64759. name: "Front",
  64760. image: {
  64761. source: "./media/characters/valeroo/front.svg",
  64762. extra: 1789/1534,
  64763. bottom: 66/1855
  64764. }
  64765. },
  64766. back: {
  64767. height: math.unit(5 + 2/12, "feet"),
  64768. weight: math.unit(122, "lb"),
  64769. name: "Back",
  64770. image: {
  64771. source: "./media/characters/valeroo/back.svg",
  64772. extra: 1848/1588,
  64773. bottom: 68/1916
  64774. }
  64775. },
  64776. head: {
  64777. height: math.unit(1.87, "feet"),
  64778. name: "Head",
  64779. image: {
  64780. source: "./media/characters/valeroo/head.svg"
  64781. }
  64782. },
  64783. hand: {
  64784. height: math.unit(0.82, "feet"),
  64785. name: "Hand",
  64786. image: {
  64787. source: "./media/characters/valeroo/hand.svg"
  64788. }
  64789. },
  64790. foot: {
  64791. height: math.unit(2.42, "feet"),
  64792. name: "Foot",
  64793. image: {
  64794. source: "./media/characters/valeroo/foot.svg"
  64795. }
  64796. },
  64797. },
  64798. [
  64799. {
  64800. name: "Normal",
  64801. height: math.unit(5 + 2/12, "feet"),
  64802. default: true
  64803. },
  64804. ]
  64805. ))
  64806. characterMakers.push(() => makeCharacter(
  64807. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64808. {
  64809. front: {
  64810. height: math.unit(11 + 3/12, "feet"),
  64811. name: "Front",
  64812. image: {
  64813. source: "./media/characters/corrin/front.svg",
  64814. extra: 665/597,
  64815. bottom: 74/739
  64816. }
  64817. },
  64818. },
  64819. [
  64820. {
  64821. name: "Standard",
  64822. height: math.unit(11 + 3/12, "feet"),
  64823. default: true
  64824. },
  64825. {
  64826. name: "The Boss",
  64827. height: math.unit(110, "feet")
  64828. },
  64829. {
  64830. name: "Shipbreaker",
  64831. height: math.unit(38, "km")
  64832. },
  64833. ]
  64834. ))
  64835. characterMakers.push(() => makeCharacter(
  64836. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64837. {
  64838. front: {
  64839. height: math.unit(10, "feet"),
  64840. weight: math.unit(1750, "lb"),
  64841. name: "Front",
  64842. image: {
  64843. source: "./media/characters/kiba-ulrich/front.svg",
  64844. extra: 1037/973,
  64845. bottom: 36/1073
  64846. }
  64847. },
  64848. },
  64849. [
  64850. {
  64851. name: "Normal",
  64852. height: math.unit(10, "feet"),
  64853. default: true
  64854. },
  64855. {
  64856. name: "Minimacro",
  64857. height: math.unit(20, "feet")
  64858. },
  64859. {
  64860. name: "Macro",
  64861. height: math.unit(200, "feet")
  64862. },
  64863. {
  64864. name: "Megamacro",
  64865. height: math.unit(22500, "feet")
  64866. },
  64867. {
  64868. name: "Gigamacro",
  64869. height: math.unit(2700, "miles")
  64870. },
  64871. {
  64872. name: "Teramacro",
  64873. height: math.unit(10000, "miles")
  64874. },
  64875. ]
  64876. ))
  64877. characterMakers.push(() => makeCharacter(
  64878. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64879. {
  64880. gryphon_front: {
  64881. height: math.unit(220, "cm"),
  64882. weight: math.unit(160, "kg"),
  64883. name: "Front",
  64884. image: {
  64885. source: "./media/characters/ceanoth/gryphon-front.svg",
  64886. extra: 616/552,
  64887. bottom: 33/649
  64888. },
  64889. form: "gryphon",
  64890. default: true
  64891. },
  64892. },
  64893. [
  64894. {
  64895. name: "Normal",
  64896. height: math.unit(220, "cm"),
  64897. form: "gryphon",
  64898. default: true
  64899. },
  64900. ],
  64901. {
  64902. "gryphon": {
  64903. name: "Grpyhon",
  64904. default: true
  64905. },
  64906. }
  64907. ))
  64908. characterMakers.push(() => makeCharacter(
  64909. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64910. {
  64911. dressed: {
  64912. height: math.unit(2.2 * 0.79, "meters"),
  64913. weight: math.unit(0.5, "tonnes"),
  64914. name: "Dressed",
  64915. image: {
  64916. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64917. extra: 665/315,
  64918. bottom: 106/771
  64919. },
  64920. extraAttributes: {
  64921. "bodyLength": {
  64922. name: "Body Length",
  64923. power: 1,
  64924. type: "length",
  64925. base: math.unit(2.5, "meters")
  64926. },
  64927. "tailLength": {
  64928. name: "Tail Length",
  64929. power: 1,
  64930. type: "length",
  64931. base: math.unit(4.5, "meters")
  64932. },
  64933. "wingspan": {
  64934. name: "Wingspan",
  64935. power: 1,
  64936. type: "length",
  64937. base: math.unit(6, "meters")
  64938. },
  64939. "taurStomachCapacity": {
  64940. name: "Taur Stomach Capacity",
  64941. power: 3,
  64942. type: "volume",
  64943. base: math.unit(4, "people"),
  64944. defaultUnit: "people"
  64945. },
  64946. "anthroStomachCapacity": {
  64947. name: "Anthro Stomach Capacity",
  64948. power: 3,
  64949. type: "volume",
  64950. base: math.unit(1, "people"),
  64951. defaultUnit: "people"
  64952. },
  64953. }
  64954. },
  64955. nude: {
  64956. height: math.unit(2.2 * 0.79, "meters"),
  64957. weight: math.unit(0.5, "tonnes"),
  64958. name: "Nude",
  64959. image: {
  64960. source: "./media/characters/vanadiya-athelya/nude.svg",
  64961. extra: 665/315,
  64962. bottom: 106/771
  64963. },
  64964. extraAttributes: {
  64965. "bodyLength": {
  64966. name: "Body Length",
  64967. power: 1,
  64968. type: "length",
  64969. base: math.unit(2.5, "meters")
  64970. },
  64971. "tailLength": {
  64972. name: "Tail Length",
  64973. power: 1,
  64974. type: "length",
  64975. base: math.unit(4.5, "meters")
  64976. },
  64977. "wingspan": {
  64978. name: "Wingspan",
  64979. power: 1,
  64980. type: "length",
  64981. base: math.unit(6, "meters")
  64982. },
  64983. "taurStomachCapacity": {
  64984. name: "Taur Stomach Capacity",
  64985. power: 3,
  64986. type: "volume",
  64987. base: math.unit(4, "people"),
  64988. defaultUnit: "people"
  64989. },
  64990. "anthroStomachCapacity": {
  64991. name: "Anthro Stomach Capacity",
  64992. power: 3,
  64993. type: "volume",
  64994. base: math.unit(1, "people"),
  64995. defaultUnit: "people"
  64996. },
  64997. }
  64998. },
  64999. },
  65000. [
  65001. {
  65002. name: "Handheld",
  65003. height: math.unit(0.79 * 0.06, "meters")
  65004. },
  65005. {
  65006. name: "Mini",
  65007. height: math.unit(0.79 * 0.7, "meters")
  65008. },
  65009. {
  65010. name: "Short",
  65011. height: math.unit(0.79 * 1.4, "meters")
  65012. },
  65013. {
  65014. name: "Imposing",
  65015. height: math.unit(0.79 * 2.2, "meters"),
  65016. default: true
  65017. },
  65018. {
  65019. name: "Big",
  65020. height: math.unit(0.79 * 3.8, "meters")
  65021. },
  65022. {
  65023. name: "Giant",
  65024. height: math.unit(0.79 * 6.7, "meters")
  65025. },
  65026. {
  65027. name: "Airliner",
  65028. height: math.unit(0.79 * 64, "meters")
  65029. },
  65030. {
  65031. name: "Skyscraper",
  65032. height: math.unit(0.79 * 220, "meters")
  65033. },
  65034. {
  65035. name: "Mountain",
  65036. height: math.unit(0.79 * 3.6, "km")
  65037. },
  65038. {
  65039. name: "Spacescraper",
  65040. height: math.unit(0.79 * 70, "km")
  65041. },
  65042. {
  65043. name: "Continental",
  65044. height: math.unit(0.79 * 1290, "km")
  65045. },
  65046. {
  65047. name: "Moon",
  65048. height: math.unit(0.79 * 32200, "km")
  65049. },
  65050. {
  65051. name: "Planetary",
  65052. height: math.unit(0.79 * 145000, "km")
  65053. },
  65054. {
  65055. name: "Stellar",
  65056. height: math.unit(0.79 * 19e6, "km")
  65057. },
  65058. {
  65059. name: "Solar",
  65060. height: math.unit(0.79 * 40, "AU")
  65061. },
  65062. {
  65063. name: "Intersteller",
  65064. height: math.unit(0.79 * 3, "lightyears")
  65065. },
  65066. {
  65067. name: "Star Cluster",
  65068. height: math.unit(0.79 * 80, "lightyears")
  65069. },
  65070. {
  65071. name: "Ecumenical",
  65072. height: math.unit(0.79 * 2e3, "lightyears")
  65073. },
  65074. {
  65075. name: "Galactic",
  65076. height: math.unit(0.79 * 175000, "lightyears")
  65077. },
  65078. {
  65079. name: "Galaxy Cluster",
  65080. height: math.unit(0.79 * 25e6, "lightyears")
  65081. },
  65082. ]
  65083. ))
  65084. characterMakers.push(() => makeCharacter(
  65085. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65086. {
  65087. front: {
  65088. height: math.unit(6 + 2/12, "feet"),
  65089. weight: math.unit(160, "lb"),
  65090. name: "Front",
  65091. image: {
  65092. source: "./media/characters/yana-amelin/front.svg",
  65093. extra: 1413/1295,
  65094. bottom: 42/1455
  65095. }
  65096. },
  65097. back: {
  65098. height: math.unit(6 + 2/12, "feet"),
  65099. weight: math.unit(160, "lb"),
  65100. name: "Back",
  65101. image: {
  65102. source: "./media/characters/yana-amelin/back.svg",
  65103. extra: 1424/1310,
  65104. bottom: 24/1448
  65105. }
  65106. },
  65107. paws: {
  65108. height: math.unit(1.48, "feet"),
  65109. name: "Paws",
  65110. image: {
  65111. source: "./media/characters/yana-amelin/paws.svg",
  65112. extra: 304/304,
  65113. bottom: 49/353
  65114. }
  65115. },
  65116. },
  65117. [
  65118. {
  65119. name: "Micro",
  65120. height: math.unit(4, "inches")
  65121. },
  65122. {
  65123. name: "Normal",
  65124. height: math.unit(6 + 2/12, "feet"),
  65125. default: true
  65126. },
  65127. {
  65128. name: "Minimacro",
  65129. height: math.unit(20, "feet")
  65130. },
  65131. {
  65132. name: "Macro",
  65133. height: math.unit(70, "feet")
  65134. },
  65135. ]
  65136. ))
  65137. characterMakers.push(() => makeCharacter(
  65138. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65139. {
  65140. frontNsfw: {
  65141. height: math.unit(2.48, "meters"),
  65142. weight: math.unit(112, "kg"),
  65143. name: "Front (NSFW)",
  65144. image: {
  65145. source: "./media/characters/titania/front-nsfw.svg",
  65146. extra: 1302/1232,
  65147. bottom: 90/1392
  65148. }
  65149. },
  65150. backNsfw: {
  65151. height: math.unit(2.48, "meters"),
  65152. weight: math.unit(112, "kg"),
  65153. name: "Back (NSFW)",
  65154. image: {
  65155. source: "./media/characters/titania/back-nsfw.svg",
  65156. extra: 1355/1288,
  65157. bottom: 18/1373
  65158. }
  65159. },
  65160. frontSfw: {
  65161. height: math.unit(2.48, "meters"),
  65162. weight: math.unit(112, "kg"),
  65163. name: "Front (SFW)",
  65164. image: {
  65165. source: "./media/characters/titania/front-sfw.svg",
  65166. extra: 1302/1232,
  65167. bottom: 90/1392
  65168. }
  65169. },
  65170. backSfw: {
  65171. height: math.unit(2.48, "meters"),
  65172. weight: math.unit(112, "kg"),
  65173. name: "Back (SFW)",
  65174. image: {
  65175. source: "./media/characters/titania/back-sfw.svg",
  65176. extra: 1355/1288,
  65177. bottom: 18/1373
  65178. }
  65179. },
  65180. head: {
  65181. height: math.unit(2.06, "feet"),
  65182. name: "Head",
  65183. image: {
  65184. source: "./media/characters/titania/head.svg"
  65185. }
  65186. },
  65187. maw: {
  65188. height: math.unit(0.8, "feet"),
  65189. name: "Maw",
  65190. image: {
  65191. source: "./media/characters/titania/maw.svg"
  65192. }
  65193. },
  65194. foot: {
  65195. height: math.unit(1.65, "feet"),
  65196. name: "Foot",
  65197. image: {
  65198. source: "./media/characters/titania/foot.svg"
  65199. }
  65200. },
  65201. nethers: {
  65202. height: math.unit(1.7, "feet"),
  65203. name: "Nethers",
  65204. image: {
  65205. source: "./media/characters/titania/nethers.svg"
  65206. }
  65207. },
  65208. },
  65209. [
  65210. {
  65211. name: "Normal",
  65212. height: math.unit(2.48, "meters"),
  65213. default: true
  65214. },
  65215. {
  65216. name: "Mini Macro",
  65217. height: math.unit(248, "meters")
  65218. },
  65219. {
  65220. name: "Macro",
  65221. height: math.unit(620, "meters")
  65222. },
  65223. {
  65224. name: "Mega Macro",
  65225. height: math.unit(1860, "meters")
  65226. },
  65227. ]
  65228. ))
  65229. characterMakers.push(() => makeCharacter(
  65230. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65231. {
  65232. front: {
  65233. height: math.unit(5 + 9/12, "feet"),
  65234. weight: math.unit(1500, "lb"),
  65235. name: "Front",
  65236. image: {
  65237. source: "./media/characters/tony-gray/front.svg",
  65238. extra: 700/575,
  65239. bottom: 71/771
  65240. }
  65241. },
  65242. },
  65243. [
  65244. {
  65245. name: "Normal",
  65246. height: math.unit(5 + 9/12, "feet"),
  65247. default: true
  65248. },
  65249. ]
  65250. ))
  65251. characterMakers.push(() => makeCharacter(
  65252. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65253. {
  65254. side: {
  65255. height: math.unit(8 + 2/12, "feet"),
  65256. name: "Side",
  65257. image: {
  65258. source: "./media/characters/kelby/side.svg",
  65259. extra: 804/578,
  65260. bottom: 70/874
  65261. },
  65262. form: "regular",
  65263. default: true
  65264. },
  65265. lounging: {
  65266. height: math.unit(12.41, "feet"),
  65267. name: "Lounging",
  65268. image: {
  65269. source: "./media/characters/kelby/lounging.svg"
  65270. },
  65271. form: "regular"
  65272. },
  65273. maw: {
  65274. height: math.unit(5, "feet"),
  65275. name: "Maw",
  65276. image: {
  65277. source: "./media/characters/kelby/maw.svg"
  65278. },
  65279. form: "regular"
  65280. },
  65281. dick: {
  65282. height: math.unit(2.4, "feet"),
  65283. name: "Dick",
  65284. image: {
  65285. source: "./media/characters/kelby/dick.svg"
  65286. },
  65287. form: "regular"
  65288. },
  65289. slit: {
  65290. height: math.unit(1.2, "feet"),
  65291. name: "Slit",
  65292. image: {
  65293. source: "./media/characters/kelby/slit.svg"
  65294. },
  65295. form: "regular"
  65296. },
  65297. chibi: {
  65298. height: math.unit(5, "feet"),
  65299. name: "Chibi",
  65300. image: {
  65301. source: "./media/characters/kelby/chibi.svg",
  65302. extra: 245/200,
  65303. bottom: 43/288
  65304. },
  65305. form: "chibi",
  65306. default: true
  65307. },
  65308. },
  65309. [
  65310. {
  65311. name: "Normal",
  65312. height: math.unit(8 + 2/12, "feet"),
  65313. default: true,
  65314. form: "regular"
  65315. },
  65316. {
  65317. name: "Normal",
  65318. height: math.unit(5, "feet"),
  65319. default: true,
  65320. form: "chibi"
  65321. },
  65322. ],
  65323. {
  65324. "regular": {
  65325. name: "Regular",
  65326. default: true
  65327. },
  65328. "chibi": {
  65329. name: "Chibi",
  65330. },
  65331. }
  65332. ))
  65333. characterMakers.push(() => makeCharacter(
  65334. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65335. {
  65336. front: {
  65337. height: math.unit(7 + 10/12, "feet"),
  65338. weight: math.unit(300, "lb"),
  65339. name: "Front",
  65340. image: {
  65341. source: "./media/characters/elisa-mitchell/front.svg",
  65342. extra: 2562/2355,
  65343. bottom: 62/2624
  65344. }
  65345. },
  65346. maw: {
  65347. height: math.unit(2.37, "feet"),
  65348. name: "Maw",
  65349. image: {
  65350. source: "./media/characters/elisa-mitchell/maw.svg"
  65351. }
  65352. },
  65353. },
  65354. [
  65355. {
  65356. name: "Normal",
  65357. height: math.unit(7 + 10/12, "feet"),
  65358. default: true
  65359. },
  65360. {
  65361. name: "Macro",
  65362. height: math.unit(1490, "feet"),
  65363. default: true
  65364. },
  65365. ]
  65366. ))
  65367. characterMakers.push(() => makeCharacter(
  65368. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65369. {
  65370. front: {
  65371. height: math.unit(122, "cm"),
  65372. weight: math.unit(40, "lb"),
  65373. name: "Front",
  65374. image: {
  65375. source: "./media/characters/camia-vertigo-zott/front.svg",
  65376. extra: 2112/1902,
  65377. bottom: 21/2133
  65378. }
  65379. },
  65380. },
  65381. [
  65382. {
  65383. name: "Base Height",
  65384. height: math.unit(122, "cm")
  65385. },
  65386. {
  65387. name: "Macro Height",
  65388. height: math.unit(345, "meters"),
  65389. default: true
  65390. },
  65391. ]
  65392. ))
  65393. characterMakers.push(() => makeCharacter(
  65394. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65395. {
  65396. front: {
  65397. height: math.unit(6 + 3/12, "feet"),
  65398. weight: math.unit(180, "lb"),
  65399. name: "Front",
  65400. image: {
  65401. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65402. extra: 2580/2457,
  65403. bottom: 131/2711
  65404. }
  65405. },
  65406. },
  65407. [
  65408. {
  65409. name: "Normal",
  65410. height: math.unit(6 + 3/12, "feet"),
  65411. default: true
  65412. },
  65413. ]
  65414. ))
  65415. characterMakers.push(() => makeCharacter(
  65416. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65417. {
  65418. front: {
  65419. height: math.unit(165, "cm"),
  65420. weight: math.unit(130, "lb"),
  65421. name: "Front",
  65422. image: {
  65423. source: "./media/characters/sleeka/front.svg",
  65424. extra: 1252/1200,
  65425. bottom: 46/1298
  65426. }
  65427. },
  65428. },
  65429. [
  65430. {
  65431. name: "Normal",
  65432. height: math.unit(165, "cm")
  65433. },
  65434. {
  65435. name: "Galactic",
  65436. height: math.unit(5.8e22, "meters"),
  65437. default: true
  65438. },
  65439. {
  65440. name: "Universal",
  65441. height: math.unit(1.02e29, "meters")
  65442. },
  65443. ]
  65444. ))
  65445. characterMakers.push(() => makeCharacter(
  65446. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65447. {
  65448. front: {
  65449. height: math.unit(5 + 11/12, "feet"),
  65450. weight: math.unit(145, "lb"),
  65451. name: "Front",
  65452. image: {
  65453. source: "./media/characters/emily-whitetail/front.svg",
  65454. extra: 2510/2280,
  65455. bottom: 128/2638
  65456. }
  65457. },
  65458. },
  65459. [
  65460. {
  65461. name: "Normal",
  65462. height: math.unit(5 + 11/12, "feet")
  65463. },
  65464. {
  65465. name: "Galactic",
  65466. height: math.unit(6.3e22, "meters"),
  65467. default: true
  65468. },
  65469. {
  65470. name: "Universal",
  65471. height: math.unit(1.12e29, "meters")
  65472. },
  65473. ]
  65474. ))
  65475. characterMakers.push(() => makeCharacter(
  65476. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65477. {
  65478. front: {
  65479. height: math.unit(5 + 4/12, "feet"),
  65480. weight: math.unit(110, "lb"),
  65481. name: "Front",
  65482. image: {
  65483. source: "./media/characters/buck-whitetail/front.svg",
  65484. extra: 2430/2186,
  65485. bottom: 125/2555
  65486. }
  65487. },
  65488. },
  65489. [
  65490. {
  65491. name: "Normal",
  65492. height: math.unit(5 + 4/12, "feet")
  65493. },
  65494. {
  65495. name: "Galactic",
  65496. height: math.unit(5.4e22, "meters"),
  65497. default: true
  65498. },
  65499. {
  65500. name: "Universal",
  65501. height: math.unit(9.6e28, "meters")
  65502. },
  65503. ]
  65504. ))
  65505. //characters
  65506. function makeCharacters() {
  65507. const results = [];
  65508. characterMakers.forEach(character => {
  65509. results.push(character());
  65510. });
  65511. return results;
  65512. }