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

63821 строка
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. }
  2335. //species
  2336. function getSpeciesInfo(speciesList) {
  2337. let result = new Set();
  2338. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2339. result.add(entry)
  2340. });
  2341. return Array.from(result);
  2342. };
  2343. function getSpeciesInfoHelper(species) {
  2344. if (!speciesData[species]) {
  2345. console.warn(species + " doesn't exist");
  2346. return [];
  2347. }
  2348. if (speciesData[species].parents) {
  2349. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2350. } else {
  2351. return [species];
  2352. }
  2353. }
  2354. characterMakers.push(() => makeCharacter(
  2355. {
  2356. name: "Fen",
  2357. species: ["crux"],
  2358. description: {
  2359. title: "Bio",
  2360. text: "Very furry. Sheds on everything."
  2361. },
  2362. tags: [
  2363. "anthro",
  2364. "goo"
  2365. ]
  2366. },
  2367. {
  2368. front: {
  2369. height: math.unit(12, "feet"),
  2370. weight: math.unit(2400, "lb"),
  2371. preyCapacity: math.unit(1, "people"),
  2372. name: "Front",
  2373. image: {
  2374. source: "./media/characters/fen/front.svg",
  2375. extra: 1804/1562,
  2376. bottom: 205/2009
  2377. },
  2378. extraAttributes: {
  2379. pawSize: {
  2380. name: "Paw Size",
  2381. power: 2,
  2382. type: "area",
  2383. base: math.unit(0.35, "m^2")
  2384. }
  2385. }
  2386. },
  2387. diving: {
  2388. height: math.unit(4.9, "meters"),
  2389. weight: math.unit(2400, "lb"),
  2390. name: "Diving",
  2391. image: {
  2392. source: "./media/characters/fen/diving.svg"
  2393. }
  2394. },
  2395. sleeby: {
  2396. height: math.unit(3.45, "meters"),
  2397. weight: math.unit(2400, "lb"),
  2398. name: "Sleeby",
  2399. image: {
  2400. source: "./media/characters/fen/sleeby.svg"
  2401. }
  2402. },
  2403. goo: {
  2404. height: math.unit(12, "feet"),
  2405. weight: math.unit(3600, "lb"),
  2406. volume: math.unit(1000, "liters"),
  2407. preyCapacity: math.unit(6, "people"),
  2408. name: "Goo",
  2409. image: {
  2410. source: "./media/characters/fen/goo.svg",
  2411. extra: 1307/1071,
  2412. bottom: 134/1441
  2413. }
  2414. },
  2415. horror: {
  2416. height: math.unit(13.6, "feet"),
  2417. weight: math.unit(2400, "lb"),
  2418. preyCapacity: math.unit(1, "people"),
  2419. name: "Horror",
  2420. image: {
  2421. source: "./media/characters/fen/horror.svg",
  2422. extra: 893/797,
  2423. bottom: 0/893
  2424. }
  2425. },
  2426. gooNsfw: {
  2427. height: math.unit(12, "feet"),
  2428. weight: math.unit(3750, "lb"),
  2429. volume: math.unit(1000, "liters"),
  2430. preyCapacity: math.unit(6, "people"),
  2431. name: "Goo (NSFW)",
  2432. image: {
  2433. source: "./media/characters/fen/goo-nsfw.svg",
  2434. extra: 1875/1734,
  2435. bottom: 122/1997
  2436. }
  2437. },
  2438. maw: {
  2439. height: math.unit(5.03, "feet"),
  2440. name: "Maw",
  2441. image: {
  2442. source: "./media/characters/fen/maw.svg"
  2443. }
  2444. },
  2445. gooCeiling: {
  2446. height: math.unit(6.6, "feet"),
  2447. weight: math.unit(3000, "lb"),
  2448. volume: math.unit(1000, "liters"),
  2449. preyCapacity: math.unit(6, "people"),
  2450. name: "Maw (Goo)",
  2451. image: {
  2452. source: "./media/characters/fen/goo-maw.svg"
  2453. }
  2454. },
  2455. paw: {
  2456. height: math.unit(3.77, "feet"),
  2457. name: "Paw",
  2458. image: {
  2459. source: "./media/characters/fen/paw.svg"
  2460. },
  2461. extraAttributes: {
  2462. "toeSize": {
  2463. name: "Toe Size",
  2464. power: 2,
  2465. type: "area",
  2466. base: math.unit(0.02875, "m^2")
  2467. },
  2468. "pawSize": {
  2469. name: "Paw Size",
  2470. power: 2,
  2471. type: "area",
  2472. base: math.unit(0.378, "m^2")
  2473. },
  2474. }
  2475. },
  2476. tail: {
  2477. height: math.unit(12.1, "feet"),
  2478. name: "Tail",
  2479. image: {
  2480. source: "./media/characters/fen/tail.svg"
  2481. }
  2482. },
  2483. tailFull: {
  2484. height: math.unit(12.1, "feet"),
  2485. name: "Full Tail",
  2486. image: {
  2487. source: "./media/characters/fen/tail-full.svg"
  2488. }
  2489. },
  2490. back: {
  2491. height: math.unit(12, "feet"),
  2492. weight: math.unit(2400, "lb"),
  2493. name: "Back",
  2494. image: {
  2495. source: "./media/characters/fen/back.svg",
  2496. },
  2497. info: {
  2498. description: {
  2499. mode: "append",
  2500. text: "\n\nHe is not currently looking at you."
  2501. }
  2502. }
  2503. },
  2504. full: {
  2505. height: math.unit(1.85, "meter"),
  2506. weight: math.unit(3200, "lb"),
  2507. preyCapacity: math.unit(3, "people"),
  2508. name: "Full",
  2509. image: {
  2510. source: "./media/characters/fen/full.svg",
  2511. extra: 1133/859,
  2512. bottom: 145/1278
  2513. },
  2514. info: {
  2515. description: {
  2516. mode: "append",
  2517. text: "\n\nMunch."
  2518. }
  2519. }
  2520. },
  2521. gooLounging: {
  2522. height: math.unit(4.53, "feet"),
  2523. weight: math.unit(3000, "lb"),
  2524. preyCapacity: math.unit(6, "people"),
  2525. name: "Goo (Lounging)",
  2526. image: {
  2527. source: "./media/characters/fen/goo-lounging.svg",
  2528. bottom: 116 / 613
  2529. }
  2530. },
  2531. lounging: {
  2532. height: math.unit(10.52, "feet"),
  2533. weight: math.unit(2400, "lb"),
  2534. name: "Lounging",
  2535. image: {
  2536. source: "./media/characters/fen/lounging.svg"
  2537. }
  2538. },
  2539. },
  2540. [
  2541. {
  2542. name: "Small",
  2543. height: math.unit(2.2428, "meter")
  2544. },
  2545. {
  2546. name: "Normal",
  2547. height: math.unit(12, "feet"),
  2548. default: true,
  2549. },
  2550. {
  2551. name: "Big",
  2552. height: math.unit(20, "feet")
  2553. },
  2554. {
  2555. name: "Minimacro",
  2556. height: math.unit(40, "feet"),
  2557. info: {
  2558. description: {
  2559. mode: "append",
  2560. text: "\n\nTOO DAMN BIG"
  2561. }
  2562. }
  2563. },
  2564. {
  2565. name: "Macro",
  2566. height: math.unit(100, "feet"),
  2567. info: {
  2568. description: {
  2569. mode: "append",
  2570. text: "\n\nTOO DAMN BIG"
  2571. }
  2572. }
  2573. },
  2574. {
  2575. name: "Megamacro",
  2576. height: math.unit(2, "miles")
  2577. },
  2578. {
  2579. name: "Gigamacro",
  2580. height: math.unit(10, "earths")
  2581. },
  2582. ]
  2583. ))
  2584. characterMakers.push(() => makeCharacter(
  2585. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2586. {
  2587. front: {
  2588. height: math.unit(183, "cm"),
  2589. weight: math.unit(80, "kg"),
  2590. name: "Front",
  2591. image: {
  2592. source: "./media/characters/sofia-fluttertail/front.svg",
  2593. bottom: 0.01,
  2594. extra: 2154 / 2081
  2595. }
  2596. },
  2597. frontAlt: {
  2598. height: math.unit(183, "cm"),
  2599. weight: math.unit(80, "kg"),
  2600. name: "Front (alt)",
  2601. image: {
  2602. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2603. }
  2604. },
  2605. back: {
  2606. height: math.unit(183, "cm"),
  2607. weight: math.unit(80, "kg"),
  2608. name: "Back",
  2609. image: {
  2610. source: "./media/characters/sofia-fluttertail/back.svg"
  2611. }
  2612. },
  2613. kneeling: {
  2614. height: math.unit(125, "cm"),
  2615. weight: math.unit(80, "kg"),
  2616. name: "Kneeling",
  2617. image: {
  2618. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2619. extra: 1033 / 977,
  2620. bottom: 23.7 / 1057
  2621. }
  2622. },
  2623. maw: {
  2624. height: math.unit(183 / 5, "cm"),
  2625. name: "Maw",
  2626. image: {
  2627. source: "./media/characters/sofia-fluttertail/maw.svg"
  2628. }
  2629. },
  2630. mawcloseup: {
  2631. height: math.unit(183 / 5 * 0.41, "cm"),
  2632. name: "Maw (Closeup)",
  2633. image: {
  2634. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2635. }
  2636. },
  2637. paws: {
  2638. height: math.unit(1.17, "feet"),
  2639. name: "Paws",
  2640. image: {
  2641. source: "./media/characters/sofia-fluttertail/paws.svg",
  2642. extra: 851 / 851,
  2643. bottom: 17 / 868
  2644. }
  2645. },
  2646. },
  2647. [
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(1.83, "meter")
  2651. },
  2652. {
  2653. name: "Size Thief",
  2654. height: math.unit(18, "feet")
  2655. },
  2656. {
  2657. name: "50 Foot Collie",
  2658. height: math.unit(50, "feet")
  2659. },
  2660. {
  2661. name: "Macro",
  2662. height: math.unit(96, "feet"),
  2663. default: true
  2664. },
  2665. {
  2666. name: "Megamerger",
  2667. height: math.unit(650, "feet")
  2668. },
  2669. ]
  2670. ))
  2671. characterMakers.push(() => makeCharacter(
  2672. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2673. {
  2674. front: {
  2675. height: math.unit(7, "feet"),
  2676. weight: math.unit(100, "kg"),
  2677. name: "Front",
  2678. image: {
  2679. source: "./media/characters/march/front.svg",
  2680. extra: 1992/1851,
  2681. bottom: 39/2031
  2682. }
  2683. },
  2684. foot: {
  2685. height: math.unit(0.9, "feet"),
  2686. name: "Foot",
  2687. image: {
  2688. source: "./media/characters/march/foot.svg"
  2689. }
  2690. },
  2691. },
  2692. [
  2693. {
  2694. name: "Normal",
  2695. height: math.unit(7.9, "feet")
  2696. },
  2697. {
  2698. name: "Macro",
  2699. height: math.unit(220, "meters")
  2700. },
  2701. {
  2702. name: "Megamacro",
  2703. height: math.unit(2.98, "km"),
  2704. default: true
  2705. },
  2706. {
  2707. name: "Gigamacro",
  2708. height: math.unit(15963, "km")
  2709. },
  2710. {
  2711. name: "Teramacro",
  2712. height: math.unit(2980000000, "km")
  2713. },
  2714. {
  2715. name: "Examacro",
  2716. height: math.unit(250, "parsecs")
  2717. },
  2718. ]
  2719. ))
  2720. characterMakers.push(() => makeCharacter(
  2721. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2722. {
  2723. front: {
  2724. height: math.unit(6, "feet"),
  2725. weight: math.unit(60, "kg"),
  2726. name: "Front",
  2727. image: {
  2728. source: "./media/characters/noir/front.svg",
  2729. extra: 1,
  2730. bottom: 0.032
  2731. }
  2732. },
  2733. },
  2734. [
  2735. {
  2736. name: "Normal",
  2737. height: math.unit(6.6, "feet")
  2738. },
  2739. {
  2740. name: "Macro",
  2741. height: math.unit(500, "feet")
  2742. },
  2743. {
  2744. name: "Megamacro",
  2745. height: math.unit(2.5, "km"),
  2746. default: true
  2747. },
  2748. {
  2749. name: "Gigamacro",
  2750. height: math.unit(22500, "km")
  2751. },
  2752. {
  2753. name: "Teramacro",
  2754. height: math.unit(2500000000, "km")
  2755. },
  2756. {
  2757. name: "Examacro",
  2758. height: math.unit(200, "parsecs")
  2759. },
  2760. ]
  2761. ))
  2762. characterMakers.push(() => makeCharacter(
  2763. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2764. {
  2765. front: {
  2766. height: math.unit(7, "feet"),
  2767. weight: math.unit(100, "kg"),
  2768. name: "Front",
  2769. image: {
  2770. source: "./media/characters/okuri/front.svg",
  2771. extra: 739/665,
  2772. bottom: 39/778
  2773. }
  2774. },
  2775. back: {
  2776. height: math.unit(7, "feet"),
  2777. weight: math.unit(100, "kg"),
  2778. name: "Back",
  2779. image: {
  2780. source: "./media/characters/okuri/back.svg",
  2781. extra: 734/653,
  2782. bottom: 13/747
  2783. }
  2784. },
  2785. sitting: {
  2786. height: math.unit(2.95, "feet"),
  2787. weight: math.unit(100, "kg"),
  2788. name: "Sitting",
  2789. image: {
  2790. source: "./media/characters/okuri/sitting.svg",
  2791. extra: 370/318,
  2792. bottom: 99/469
  2793. }
  2794. },
  2795. },
  2796. [
  2797. {
  2798. name: "Smallest",
  2799. height: math.unit(5 + 2/12, "feet")
  2800. },
  2801. {
  2802. name: "Smaller",
  2803. height: math.unit(300, "feet")
  2804. },
  2805. {
  2806. name: "Small",
  2807. height: math.unit(1000, "feet")
  2808. },
  2809. {
  2810. name: "Macro",
  2811. height: math.unit(1, "mile")
  2812. },
  2813. {
  2814. name: "Mega Macro (Small)",
  2815. height: math.unit(20, "km")
  2816. },
  2817. {
  2818. name: "Mega Macro (Large)",
  2819. height: math.unit(600, "km")
  2820. },
  2821. {
  2822. name: "Giga Macro",
  2823. height: math.unit(10000, "km")
  2824. },
  2825. {
  2826. name: "Normal",
  2827. height: math.unit(577560, "km"),
  2828. default: true
  2829. },
  2830. {
  2831. name: "Large",
  2832. height: math.unit(4, "galaxies")
  2833. },
  2834. {
  2835. name: "Largest",
  2836. height: math.unit(15, "multiverses")
  2837. },
  2838. ]
  2839. ))
  2840. characterMakers.push(() => makeCharacter(
  2841. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2842. {
  2843. front: {
  2844. height: math.unit(7, "feet"),
  2845. weight: math.unit(100, "kg"),
  2846. name: "Front",
  2847. image: {
  2848. source: "./media/characters/manny/front.svg",
  2849. extra: 1,
  2850. bottom: 0.06
  2851. }
  2852. },
  2853. back: {
  2854. height: math.unit(7, "feet"),
  2855. weight: math.unit(100, "kg"),
  2856. name: "Back",
  2857. image: {
  2858. source: "./media/characters/manny/back.svg",
  2859. extra: 1,
  2860. bottom: 0.014
  2861. }
  2862. },
  2863. },
  2864. [
  2865. {
  2866. name: "Normal",
  2867. height: math.unit(7, "feet"),
  2868. },
  2869. {
  2870. name: "Macro",
  2871. height: math.unit(78, "feet"),
  2872. default: true
  2873. },
  2874. {
  2875. name: "Macro+",
  2876. height: math.unit(300, "meters")
  2877. },
  2878. {
  2879. name: "Macro++",
  2880. height: math.unit(2400, "meters")
  2881. },
  2882. {
  2883. name: "Megamacro",
  2884. height: math.unit(5167, "meters")
  2885. },
  2886. {
  2887. name: "Gigamacro",
  2888. height: math.unit(41769, "miles")
  2889. },
  2890. ]
  2891. ))
  2892. characterMakers.push(() => makeCharacter(
  2893. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2894. {
  2895. front: {
  2896. height: math.unit(7, "feet"),
  2897. weight: math.unit(100, "kg"),
  2898. name: "Front",
  2899. image: {
  2900. source: "./media/characters/adake/front-1.svg"
  2901. }
  2902. },
  2903. frontAlt: {
  2904. height: math.unit(7, "feet"),
  2905. weight: math.unit(100, "kg"),
  2906. name: "Front (Alt)",
  2907. image: {
  2908. source: "./media/characters/adake/front-2.svg",
  2909. extra: 1,
  2910. bottom: 0.01
  2911. }
  2912. },
  2913. back: {
  2914. height: math.unit(7, "feet"),
  2915. weight: math.unit(100, "kg"),
  2916. name: "Back",
  2917. image: {
  2918. source: "./media/characters/adake/back.svg",
  2919. }
  2920. },
  2921. kneel: {
  2922. height: math.unit(5.385, "feet"),
  2923. weight: math.unit(100, "kg"),
  2924. name: "Kneeling",
  2925. image: {
  2926. source: "./media/characters/adake/kneel.svg",
  2927. bottom: 0.052
  2928. }
  2929. },
  2930. },
  2931. [
  2932. {
  2933. name: "Normal",
  2934. height: math.unit(7, "feet"),
  2935. },
  2936. {
  2937. name: "Macro",
  2938. height: math.unit(78, "feet"),
  2939. default: true
  2940. },
  2941. {
  2942. name: "Macro+",
  2943. height: math.unit(300, "meters")
  2944. },
  2945. {
  2946. name: "Macro++",
  2947. height: math.unit(2400, "meters")
  2948. },
  2949. {
  2950. name: "Megamacro",
  2951. height: math.unit(5167, "meters")
  2952. },
  2953. {
  2954. name: "Gigamacro",
  2955. height: math.unit(41769, "miles")
  2956. },
  2957. ]
  2958. ))
  2959. characterMakers.push(() => makeCharacter(
  2960. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2961. {
  2962. front: {
  2963. height: math.unit(1.65, "meters"),
  2964. weight: math.unit(50, "kg"),
  2965. name: "Front",
  2966. image: {
  2967. source: "./media/characters/elijah/front.svg",
  2968. extra: 858 / 830,
  2969. bottom: 95.5 / 953.8559
  2970. }
  2971. },
  2972. back: {
  2973. height: math.unit(1.65, "meters"),
  2974. weight: math.unit(50, "kg"),
  2975. name: "Back",
  2976. image: {
  2977. source: "./media/characters/elijah/back.svg",
  2978. extra: 895 / 850,
  2979. bottom: 5.3 / 897.956
  2980. }
  2981. },
  2982. frontNsfw: {
  2983. height: math.unit(1.65, "meters"),
  2984. weight: math.unit(50, "kg"),
  2985. name: "Front (NSFW)",
  2986. image: {
  2987. source: "./media/characters/elijah/front-nsfw.svg",
  2988. extra: 858 / 830,
  2989. bottom: 95.5 / 953.8559
  2990. }
  2991. },
  2992. backNsfw: {
  2993. height: math.unit(1.65, "meters"),
  2994. weight: math.unit(50, "kg"),
  2995. name: "Back (NSFW)",
  2996. image: {
  2997. source: "./media/characters/elijah/back-nsfw.svg",
  2998. extra: 895 / 850,
  2999. bottom: 5.3 / 897.956
  3000. }
  3001. },
  3002. dick: {
  3003. height: math.unit(1, "feet"),
  3004. name: "Dick",
  3005. image: {
  3006. source: "./media/characters/elijah/dick.svg"
  3007. }
  3008. },
  3009. beakOpen: {
  3010. height: math.unit(1.25, "feet"),
  3011. name: "Beak (Open)",
  3012. image: {
  3013. source: "./media/characters/elijah/beak-open.svg"
  3014. }
  3015. },
  3016. beakShut: {
  3017. height: math.unit(1.25, "feet"),
  3018. name: "Beak (Shut)",
  3019. image: {
  3020. source: "./media/characters/elijah/beak-shut.svg"
  3021. }
  3022. },
  3023. footFlexing: {
  3024. height: math.unit(1.61, "feet"),
  3025. name: "Foot (Flexing)",
  3026. image: {
  3027. source: "./media/characters/elijah/foot-flexing.svg"
  3028. }
  3029. },
  3030. footStepping: {
  3031. height: math.unit(1.44, "feet"),
  3032. name: "Foot (Stepping)",
  3033. image: {
  3034. source: "./media/characters/elijah/foot-stepping.svg"
  3035. }
  3036. },
  3037. plantigradeLeg: {
  3038. height: math.unit(2.34, "feet"),
  3039. name: "Plantigrade Leg",
  3040. image: {
  3041. source: "./media/characters/elijah/plantigrade-leg.svg"
  3042. }
  3043. },
  3044. plantigradeFootLeft: {
  3045. height: math.unit(0.9, "feet"),
  3046. name: "Plantigrade Foot (Left)",
  3047. image: {
  3048. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3049. }
  3050. },
  3051. plantigradeFootRight: {
  3052. height: math.unit(0.9, "feet"),
  3053. name: "Plantigrade Foot (Right)",
  3054. image: {
  3055. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3056. }
  3057. },
  3058. },
  3059. [
  3060. {
  3061. name: "Normal",
  3062. height: math.unit(1.65, "meters")
  3063. },
  3064. {
  3065. name: "Macro",
  3066. height: math.unit(55, "meters"),
  3067. default: true
  3068. },
  3069. {
  3070. name: "Macro+",
  3071. height: math.unit(105, "meters")
  3072. },
  3073. ]
  3074. ))
  3075. characterMakers.push(() => makeCharacter(
  3076. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3077. {
  3078. front: {
  3079. height: math.unit(7 + 2/12, "feet"),
  3080. weight: math.unit(320, "kg"),
  3081. preyCapacity: math.unit(0.276549935, "people"),
  3082. name: "Front",
  3083. image: {
  3084. source: "./media/characters/rai/front.svg",
  3085. extra: 1802/1696,
  3086. bottom: 68/1870
  3087. },
  3088. form: "anthro",
  3089. default: true
  3090. },
  3091. frontDressed: {
  3092. height: math.unit(7 + 2/12, "feet"),
  3093. weight: math.unit(320, "kg"),
  3094. preyCapacity: math.unit(0.276549935, "people"),
  3095. name: "Front (Dressed)",
  3096. image: {
  3097. source: "./media/characters/rai/front-dressed.svg",
  3098. extra: 1802/1696,
  3099. bottom: 68/1870
  3100. },
  3101. form: "anthro"
  3102. },
  3103. side: {
  3104. height: math.unit(7 + 2/12, "feet"),
  3105. weight: math.unit(320, "kg"),
  3106. preyCapacity: math.unit(0.276549935, "people"),
  3107. name: "Side",
  3108. image: {
  3109. source: "./media/characters/rai/side.svg",
  3110. extra: 1789/1710,
  3111. bottom: 115/1904
  3112. },
  3113. form: "anthro"
  3114. },
  3115. back: {
  3116. height: math.unit(7 + 2/12, "feet"),
  3117. weight: math.unit(320, "kg"),
  3118. preyCapacity: math.unit(0.276549935, "people"),
  3119. name: "Back",
  3120. image: {
  3121. source: "./media/characters/rai/back.svg",
  3122. extra: 1770/1707,
  3123. bottom: 28/1798
  3124. },
  3125. form: "anthro"
  3126. },
  3127. feral: {
  3128. height: math.unit(9.5, "feet"),
  3129. weight: math.unit(640, "kg"),
  3130. preyCapacity: math.unit(4, "people"),
  3131. name: "Feral",
  3132. image: {
  3133. source: "./media/characters/rai/feral.svg",
  3134. extra: 945/553,
  3135. bottom: 176/1121
  3136. },
  3137. form: "feral",
  3138. default: true
  3139. },
  3140. dragon: {
  3141. height: math.unit(23, "feet"),
  3142. weight: math.unit(50000, "lb"),
  3143. name: "Dragon",
  3144. image: {
  3145. source: "./media/characters/rai/dragon.svg",
  3146. extra: 2498 / 2030,
  3147. bottom: 85.2 / 2584
  3148. },
  3149. form: "dragon",
  3150. default: true
  3151. },
  3152. maw: {
  3153. height: math.unit(1.69, "feet"),
  3154. name: "Maw",
  3155. image: {
  3156. source: "./media/characters/rai/maw.svg"
  3157. },
  3158. form: "anthro"
  3159. },
  3160. },
  3161. [
  3162. {
  3163. name: "Normal",
  3164. height: math.unit(7 + 2/12, "feet"),
  3165. form: "anthro"
  3166. },
  3167. {
  3168. name: "Big",
  3169. height: math.unit(11, "feet"),
  3170. form: "anthro"
  3171. },
  3172. {
  3173. name: "Minimacro",
  3174. height: math.unit(77, "feet"),
  3175. form: "anthro"
  3176. },
  3177. {
  3178. name: "Macro",
  3179. height: math.unit(302, "feet"),
  3180. default: true,
  3181. form: "anthro"
  3182. },
  3183. {
  3184. name: "Normal",
  3185. height: math.unit(9.5, "feet"),
  3186. form: "feral",
  3187. default: true
  3188. },
  3189. {
  3190. name: "Normal",
  3191. height: math.unit(23, "feet"),
  3192. form: "dragon",
  3193. default: true
  3194. }
  3195. ],
  3196. {
  3197. "anthro": {
  3198. name: "Anthro",
  3199. default: true
  3200. },
  3201. "feral": {
  3202. name: "Feral",
  3203. },
  3204. "dragon": {
  3205. name: "Dragon",
  3206. },
  3207. }
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3211. {
  3212. frontDressed: {
  3213. height: math.unit(216, "feet"),
  3214. weight: math.unit(7000000, "lb"),
  3215. preyCapacity: math.unit(1321, "people"),
  3216. name: "Front (Dressed)",
  3217. image: {
  3218. source: "./media/characters/jazzy/front-dressed.svg",
  3219. extra: 2738 / 2651,
  3220. bottom: 41.8 / 2786
  3221. }
  3222. },
  3223. backDressed: {
  3224. height: math.unit(216, "feet"),
  3225. weight: math.unit(7000000, "lb"),
  3226. preyCapacity: math.unit(1321, "people"),
  3227. name: "Back (Dressed)",
  3228. image: {
  3229. source: "./media/characters/jazzy/back-dressed.svg",
  3230. extra: 2775 / 2673,
  3231. bottom: 36.8 / 2817
  3232. }
  3233. },
  3234. front: {
  3235. height: math.unit(216, "feet"),
  3236. weight: math.unit(7000000, "lb"),
  3237. preyCapacity: math.unit(1321, "people"),
  3238. name: "Front",
  3239. image: {
  3240. source: "./media/characters/jazzy/front.svg",
  3241. extra: 2738 / 2651,
  3242. bottom: 41.8 / 2786
  3243. }
  3244. },
  3245. back: {
  3246. height: math.unit(216, "feet"),
  3247. weight: math.unit(7000000, "lb"),
  3248. preyCapacity: math.unit(1321, "people"),
  3249. name: "Back",
  3250. image: {
  3251. source: "./media/characters/jazzy/back.svg",
  3252. extra: 2775 / 2673,
  3253. bottom: 36.8 / 2817
  3254. }
  3255. },
  3256. maw: {
  3257. height: math.unit(20, "feet"),
  3258. name: "Maw",
  3259. image: {
  3260. source: "./media/characters/jazzy/maw.svg"
  3261. }
  3262. },
  3263. paws: {
  3264. height: math.unit(27.5, "feet"),
  3265. name: "Paws",
  3266. image: {
  3267. source: "./media/characters/jazzy/paws.svg"
  3268. }
  3269. },
  3270. eye: {
  3271. height: math.unit(4.4, "feet"),
  3272. name: "Eye",
  3273. image: {
  3274. source: "./media/characters/jazzy/eye.svg"
  3275. }
  3276. },
  3277. droneOffense: {
  3278. height: math.unit(9.5, "inches"),
  3279. name: "Drone (Offense)",
  3280. image: {
  3281. source: "./media/characters/jazzy/drone-offense.svg"
  3282. }
  3283. },
  3284. droneRecon: {
  3285. height: math.unit(9.5, "inches"),
  3286. name: "Drone (Recon)",
  3287. image: {
  3288. source: "./media/characters/jazzy/drone-recon.svg"
  3289. }
  3290. },
  3291. droneDefense: {
  3292. height: math.unit(9.5, "inches"),
  3293. name: "Drone (Defense)",
  3294. image: {
  3295. source: "./media/characters/jazzy/drone-defense.svg"
  3296. }
  3297. },
  3298. },
  3299. [
  3300. {
  3301. name: "Macro",
  3302. height: math.unit(216, "feet"),
  3303. default: true
  3304. },
  3305. ]
  3306. ))
  3307. characterMakers.push(() => makeCharacter(
  3308. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3309. {
  3310. front: {
  3311. height: math.unit(9 + 6/12, "feet"),
  3312. weight: math.unit(700, "lb"),
  3313. name: "Front",
  3314. image: {
  3315. source: "./media/characters/flamm/front.svg",
  3316. extra: 1736/1596,
  3317. bottom: 93/1829
  3318. }
  3319. },
  3320. buff: {
  3321. height: math.unit(9 + 6/12, "feet"),
  3322. weight: math.unit(950, "lb"),
  3323. name: "Buff",
  3324. image: {
  3325. source: "./media/characters/flamm/buff.svg",
  3326. extra: 3018/2874,
  3327. bottom: 221/3239
  3328. }
  3329. },
  3330. },
  3331. [
  3332. {
  3333. name: "Normal",
  3334. height: math.unit(9.5, "feet")
  3335. },
  3336. {
  3337. name: "Macro",
  3338. height: math.unit(200, "feet"),
  3339. default: true
  3340. },
  3341. ]
  3342. ))
  3343. characterMakers.push(() => makeCharacter(
  3344. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3345. {
  3346. front: {
  3347. height: math.unit(5 + 3/12, "feet"),
  3348. weight: math.unit(60, "kg"),
  3349. name: "Front",
  3350. image: {
  3351. source: "./media/characters/zephiro/front.svg",
  3352. extra: 1873/1761,
  3353. bottom: 147/2020
  3354. }
  3355. },
  3356. side: {
  3357. height: math.unit(5 + 3/12, "feet"),
  3358. weight: math.unit(60, "kg"),
  3359. name: "Side",
  3360. image: {
  3361. source: "./media/characters/zephiro/side.svg",
  3362. extra: 1929/1827,
  3363. bottom: 65/1994
  3364. }
  3365. },
  3366. back: {
  3367. height: math.unit(5 + 3/12, "feet"),
  3368. weight: math.unit(60, "kg"),
  3369. name: "Back",
  3370. image: {
  3371. source: "./media/characters/zephiro/back.svg",
  3372. extra: 1926/1816,
  3373. bottom: 41/1967
  3374. }
  3375. },
  3376. hand: {
  3377. height: math.unit(0.68, "feet"),
  3378. name: "Hand",
  3379. image: {
  3380. source: "./media/characters/zephiro/hand.svg"
  3381. }
  3382. },
  3383. paw: {
  3384. height: math.unit(1, "feet"),
  3385. name: "Paw",
  3386. image: {
  3387. source: "./media/characters/zephiro/paw.svg"
  3388. }
  3389. },
  3390. beans: {
  3391. height: math.unit(0.93, "feet"),
  3392. name: "Beans",
  3393. image: {
  3394. source: "./media/characters/zephiro/beans.svg"
  3395. }
  3396. },
  3397. },
  3398. [
  3399. {
  3400. name: "Micro",
  3401. height: math.unit(3, "inches")
  3402. },
  3403. {
  3404. name: "Normal",
  3405. height: math.unit(5 + 3 / 12, "feet"),
  3406. default: true
  3407. },
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(118, "feet")
  3411. },
  3412. ]
  3413. ))
  3414. characterMakers.push(() => makeCharacter(
  3415. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3416. {
  3417. front: {
  3418. height: math.unit(5, "feet"),
  3419. weight: math.unit(90, "kg"),
  3420. preyCapacity: math.unit(14, "people"),
  3421. name: "Front",
  3422. image: {
  3423. source: "./media/characters/fory/front.svg",
  3424. extra: 2862 / 2674,
  3425. bottom: 180 / 3043.8
  3426. },
  3427. form: "weaselbun",
  3428. default: true,
  3429. extraAttributes: {
  3430. "pawSize": {
  3431. name: "Paw Size",
  3432. power: 2,
  3433. type: "area",
  3434. base: math.unit(0.1596, "m^2")
  3435. },
  3436. "pawLength": {
  3437. name: "Paw Length",
  3438. power: 1,
  3439. type: "length",
  3440. base: math.unit(0.7, "m")
  3441. }
  3442. }
  3443. },
  3444. back: {
  3445. height: math.unit(5, "feet"),
  3446. weight: math.unit(90, "kg"),
  3447. preyCapacity: math.unit(14, "people"),
  3448. name: "Back",
  3449. image: {
  3450. source: "./media/characters/fory/back.svg",
  3451. extra: 1790/1672,
  3452. bottom: 84/1874
  3453. },
  3454. form: "weaselbun",
  3455. extraAttributes: {
  3456. "pawSize": {
  3457. name: "Paw Size",
  3458. power: 2,
  3459. type: "area",
  3460. base: math.unit(0.1596, "m^2")
  3461. },
  3462. "pawLength": {
  3463. name: "Paw Length",
  3464. power: 1,
  3465. type: "length",
  3466. base: math.unit(0.7, "m")
  3467. }
  3468. }
  3469. },
  3470. paw: {
  3471. height: math.unit(2.14, "feet"),
  3472. name: "Paw",
  3473. image: {
  3474. source: "./media/characters/fory/paw.svg"
  3475. },
  3476. form: "weaselbun",
  3477. extraAttributes: {
  3478. "pawSize": {
  3479. name: "Paw Size",
  3480. power: 2,
  3481. type: "area",
  3482. base: math.unit(0.1596, "m^2")
  3483. },
  3484. "pawLength": {
  3485. name: "Paw Length",
  3486. power: 1,
  3487. type: "length",
  3488. base: math.unit(0.48, "m")
  3489. }
  3490. }
  3491. },
  3492. bunBack: {
  3493. height: math.unit(3, "feet"),
  3494. weight: math.unit(20, "kg"),
  3495. preyCapacity: math.unit(3, "people"),
  3496. name: "Back",
  3497. image: {
  3498. source: "./media/characters/fory/bun-back.svg",
  3499. extra: 1749/1564,
  3500. bottom: 246/1995
  3501. },
  3502. form: "bun",
  3503. default: true,
  3504. extraAttributes: {
  3505. "pawSize": {
  3506. name: "Paw Size",
  3507. power: 2,
  3508. type: "area",
  3509. base: math.unit(0.072, "m^2")
  3510. },
  3511. "pawLength": {
  3512. name: "Paw Length",
  3513. power: 1,
  3514. type: "length",
  3515. base: math.unit(0.45, "m")
  3516. }
  3517. }
  3518. },
  3519. },
  3520. [
  3521. {
  3522. name: "Normal",
  3523. height: math.unit(5, "feet"),
  3524. form: "weaselbun"
  3525. },
  3526. {
  3527. name: "Macro",
  3528. height: math.unit(50, "feet"),
  3529. default: true,
  3530. form: "weaselbun"
  3531. },
  3532. {
  3533. name: "Megamacro",
  3534. height: math.unit(10, "miles"),
  3535. form: "weaselbun"
  3536. },
  3537. {
  3538. name: "Gigamacro",
  3539. height: math.unit(5, "earths"),
  3540. form: "weaselbun"
  3541. },
  3542. {
  3543. name: "Normal",
  3544. height: math.unit(3, "feet"),
  3545. default: true,
  3546. form: "bun"
  3547. },
  3548. {
  3549. name: "Fun-Size",
  3550. height: math.unit(12, "feet"),
  3551. form: "bun"
  3552. },
  3553. {
  3554. name: "Macro",
  3555. height: math.unit(100, "feet"),
  3556. form: "bun"
  3557. },
  3558. {
  3559. name: "Planetary",
  3560. height: math.unit(3, "earths"),
  3561. form: "bun"
  3562. },
  3563. ],
  3564. {
  3565. "weaselbun": {
  3566. name: "Weaselbun",
  3567. default: true
  3568. },
  3569. "bun": {
  3570. name: "Bun",
  3571. },
  3572. }
  3573. ))
  3574. characterMakers.push(() => makeCharacter(
  3575. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3576. {
  3577. front: {
  3578. height: math.unit(7, "feet"),
  3579. weight: math.unit(90, "kg"),
  3580. name: "Front",
  3581. image: {
  3582. source: "./media/characters/kurrikage/front.svg",
  3583. extra: 1845/1733,
  3584. bottom: 119/1964
  3585. }
  3586. },
  3587. back: {
  3588. height: math.unit(7, "feet"),
  3589. weight: math.unit(90, "kg"),
  3590. name: "Back",
  3591. image: {
  3592. source: "./media/characters/kurrikage/back.svg",
  3593. extra: 1790/1677,
  3594. bottom: 61/1851
  3595. }
  3596. },
  3597. dressed: {
  3598. height: math.unit(7, "feet"),
  3599. weight: math.unit(90, "kg"),
  3600. name: "Dressed",
  3601. image: {
  3602. source: "./media/characters/kurrikage/dressed.svg",
  3603. extra: 1845/1733,
  3604. bottom: 119/1964
  3605. }
  3606. },
  3607. foot: {
  3608. height: math.unit(1.5, "feet"),
  3609. name: "Foot",
  3610. image: {
  3611. source: "./media/characters/kurrikage/foot.svg"
  3612. }
  3613. },
  3614. staff: {
  3615. height: math.unit(6.7, "feet"),
  3616. name: "Staff",
  3617. image: {
  3618. source: "./media/characters/kurrikage/staff.svg"
  3619. }
  3620. },
  3621. peek: {
  3622. height: math.unit(1.05, "feet"),
  3623. name: "Peeking",
  3624. image: {
  3625. source: "./media/characters/kurrikage/peek.svg",
  3626. bottom: 0.08
  3627. }
  3628. },
  3629. },
  3630. [
  3631. {
  3632. name: "Normal",
  3633. height: math.unit(12, "feet"),
  3634. default: true
  3635. },
  3636. {
  3637. name: "Big",
  3638. height: math.unit(20, "feet")
  3639. },
  3640. {
  3641. name: "Macro",
  3642. height: math.unit(500, "feet")
  3643. },
  3644. {
  3645. name: "Megamacro",
  3646. height: math.unit(20, "miles")
  3647. },
  3648. ]
  3649. ))
  3650. characterMakers.push(() => makeCharacter(
  3651. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3652. {
  3653. front: {
  3654. height: math.unit(6, "feet"),
  3655. weight: math.unit(75, "kg"),
  3656. name: "Front",
  3657. image: {
  3658. source: "./media/characters/shingo/front.svg",
  3659. extra: 1900/1825,
  3660. bottom: 82/1982
  3661. }
  3662. },
  3663. side: {
  3664. height: math.unit(6, "feet"),
  3665. weight: math.unit(75, "kg"),
  3666. name: "Side",
  3667. image: {
  3668. source: "./media/characters/shingo/side.svg",
  3669. extra: 1930/1865,
  3670. bottom: 16/1946
  3671. }
  3672. },
  3673. back: {
  3674. height: math.unit(6, "feet"),
  3675. weight: math.unit(75, "kg"),
  3676. name: "Back",
  3677. image: {
  3678. source: "./media/characters/shingo/back.svg",
  3679. extra: 1922/1852,
  3680. bottom: 16/1938
  3681. }
  3682. },
  3683. frontDressed: {
  3684. height: math.unit(6, "feet"),
  3685. weight: math.unit(150, "lb"),
  3686. name: "Front-dressed",
  3687. image: {
  3688. source: "./media/characters/shingo/front-dressed.svg",
  3689. extra: 1900/1825,
  3690. bottom: 82/1982
  3691. }
  3692. },
  3693. paw: {
  3694. height: math.unit(1.29, "feet"),
  3695. name: "Paw",
  3696. image: {
  3697. source: "./media/characters/shingo/paw.svg"
  3698. }
  3699. },
  3700. hand: {
  3701. height: math.unit(1.07, "feet"),
  3702. name: "Hand",
  3703. image: {
  3704. source: "./media/characters/shingo/hand.svg"
  3705. }
  3706. },
  3707. frontAlt: {
  3708. height: math.unit(6, "feet"),
  3709. weight: math.unit(75, "kg"),
  3710. name: "Front (Alt)",
  3711. image: {
  3712. source: "./media/characters/shingo/front-alt.svg",
  3713. extra: 3511 / 3338,
  3714. bottom: 0.005
  3715. }
  3716. },
  3717. frontAlt2: {
  3718. height: math.unit(6, "feet"),
  3719. weight: math.unit(75, "kg"),
  3720. name: "Front (Alt 2)",
  3721. image: {
  3722. source: "./media/characters/shingo/front-alt-2.svg",
  3723. extra: 706/681,
  3724. bottom: 11/717
  3725. }
  3726. },
  3727. pawAlt: {
  3728. height: math.unit(1, "feet"),
  3729. name: "Paw (Alt)",
  3730. image: {
  3731. source: "./media/characters/shingo/paw-alt.svg"
  3732. }
  3733. },
  3734. },
  3735. [
  3736. {
  3737. name: "Micro",
  3738. height: math.unit(4, "inches")
  3739. },
  3740. {
  3741. name: "Normal",
  3742. height: math.unit(6, "feet"),
  3743. default: true
  3744. },
  3745. {
  3746. name: "Macro",
  3747. height: math.unit(108, "feet")
  3748. },
  3749. {
  3750. name: "Macro+",
  3751. height: math.unit(1500, "feet")
  3752. },
  3753. ]
  3754. ))
  3755. characterMakers.push(() => makeCharacter(
  3756. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3757. {
  3758. side: {
  3759. height: math.unit(6, "feet"),
  3760. weight: math.unit(75, "kg"),
  3761. name: "Side",
  3762. image: {
  3763. source: "./media/characters/aigey/side.svg"
  3764. }
  3765. },
  3766. },
  3767. [
  3768. {
  3769. name: "Macro",
  3770. height: math.unit(200, "feet"),
  3771. default: true
  3772. },
  3773. {
  3774. name: "Megamacro",
  3775. height: math.unit(100, "miles")
  3776. },
  3777. ]
  3778. )
  3779. )
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3782. {
  3783. front: {
  3784. height: math.unit(5 + 5 / 12, "feet"),
  3785. weight: math.unit(75, "kg"),
  3786. name: "Front",
  3787. image: {
  3788. source: "./media/characters/natasha/front.svg",
  3789. extra: 859 / 824,
  3790. bottom: 23 / 879.6
  3791. }
  3792. },
  3793. frontNsfw: {
  3794. height: math.unit(5 + 5 / 12, "feet"),
  3795. weight: math.unit(75, "kg"),
  3796. name: "Front (NSFW)",
  3797. image: {
  3798. source: "./media/characters/natasha/front-nsfw.svg",
  3799. extra: 859 / 824,
  3800. bottom: 23 / 879.6
  3801. }
  3802. },
  3803. frontErect: {
  3804. height: math.unit(5 + 5 / 12, "feet"),
  3805. weight: math.unit(75, "kg"),
  3806. name: "Front (Erect)",
  3807. image: {
  3808. source: "./media/characters/natasha/front-erect.svg",
  3809. extra: 859 / 824,
  3810. bottom: 23 / 879.6
  3811. }
  3812. },
  3813. back: {
  3814. height: math.unit(5 + 5 / 12, "feet"),
  3815. weight: math.unit(75, "kg"),
  3816. name: "Back",
  3817. image: {
  3818. source: "./media/characters/natasha/back.svg",
  3819. extra: 887.9 / 852.6,
  3820. bottom: 9.7 / 896.4
  3821. }
  3822. },
  3823. backAlt: {
  3824. height: math.unit(5 + 5 / 12, "feet"),
  3825. weight: math.unit(75, "kg"),
  3826. name: "Back (Alt)",
  3827. image: {
  3828. source: "./media/characters/natasha/back-alt.svg",
  3829. extra: 1236.7 / 1192,
  3830. bottom: 22.3 / 1258.2
  3831. }
  3832. },
  3833. dick: {
  3834. height: math.unit(1.772, "feet"),
  3835. name: "Dick",
  3836. image: {
  3837. source: "./media/characters/natasha/dick.svg"
  3838. }
  3839. },
  3840. paw: {
  3841. height: math.unit(0.250, "meters"),
  3842. name: "Paw",
  3843. image: {
  3844. source: "./media/characters/natasha/paw.svg"
  3845. },
  3846. extraAttributes: {
  3847. "toeSize": {
  3848. name: "Toe Size",
  3849. power: 2,
  3850. type: "area",
  3851. base: math.unit(0.0024, "m^2")
  3852. },
  3853. "padSize": {
  3854. name: "Pad Size",
  3855. power: 2,
  3856. type: "area",
  3857. base: math.unit(0.00889, "m^2")
  3858. },
  3859. "pawSize": {
  3860. name: "Paw Size",
  3861. power: 2,
  3862. type: "area",
  3863. base: math.unit(0.023667, "m^2")
  3864. },
  3865. }
  3866. },
  3867. },
  3868. [
  3869. {
  3870. name: "Shortstack",
  3871. height: math.unit(3, "feet"),
  3872. default: true
  3873. },
  3874. {
  3875. name: "Normal",
  3876. height: math.unit(5 + 5 / 12, "feet")
  3877. },
  3878. {
  3879. name: "Large",
  3880. height: math.unit(12, "feet")
  3881. },
  3882. {
  3883. name: "Macro",
  3884. height: math.unit(100, "feet")
  3885. },
  3886. {
  3887. name: "Macro+",
  3888. height: math.unit(260, "feet")
  3889. },
  3890. {
  3891. name: "Macro++",
  3892. height: math.unit(1, "mile")
  3893. },
  3894. ]
  3895. ))
  3896. characterMakers.push(() => makeCharacter(
  3897. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3898. {
  3899. front: {
  3900. height: math.unit(6, "feet"),
  3901. weight: math.unit(75, "kg"),
  3902. name: "Front",
  3903. image: {
  3904. source: "./media/characters/malik/front.svg",
  3905. extra: 1750/1561,
  3906. bottom: 80/1830
  3907. },
  3908. extraAttributes: {
  3909. "toeSize": {
  3910. name: "Toe Size",
  3911. power: 2,
  3912. type: "area",
  3913. base: math.unit(0.0159, "m^2")
  3914. },
  3915. "pawSize": {
  3916. name: "Paw Size",
  3917. power: 2,
  3918. type: "area",
  3919. base: math.unit(0.09834, "m^2")
  3920. },
  3921. }
  3922. },
  3923. side: {
  3924. height: math.unit(6, "feet"),
  3925. weight: math.unit(75, "kg"),
  3926. name: "Side",
  3927. image: {
  3928. source: "./media/characters/malik/side.svg",
  3929. extra: 1802/1685,
  3930. bottom: 42/1844
  3931. },
  3932. extraAttributes: {
  3933. "toeSize": {
  3934. name: "Toe Size",
  3935. power: 2,
  3936. type: "area",
  3937. base: math.unit(0.0159, "m^2")
  3938. },
  3939. "pawSize": {
  3940. name: "Paw Size",
  3941. power: 2,
  3942. type: "area",
  3943. base: math.unit(0.09834, "m^2")
  3944. },
  3945. }
  3946. },
  3947. back: {
  3948. height: math.unit(6, "feet"),
  3949. weight: math.unit(75, "kg"),
  3950. name: "Back",
  3951. image: {
  3952. source: "./media/characters/malik/back.svg",
  3953. extra: 1803/1607,
  3954. bottom: 33/1836
  3955. },
  3956. extraAttributes: {
  3957. "toeSize": {
  3958. name: "Toe Size",
  3959. power: 2,
  3960. type: "area",
  3961. base: math.unit(0.0159, "m^2")
  3962. },
  3963. "pawSize": {
  3964. name: "Paw Size",
  3965. power: 2,
  3966. type: "area",
  3967. base: math.unit(0.09834, "m^2")
  3968. },
  3969. }
  3970. },
  3971. },
  3972. [
  3973. {
  3974. name: "Macro",
  3975. height: math.unit(156, "feet"),
  3976. default: true
  3977. },
  3978. {
  3979. name: "Macro+",
  3980. height: math.unit(1188, "feet")
  3981. },
  3982. ]
  3983. ))
  3984. characterMakers.push(() => makeCharacter(
  3985. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3986. {
  3987. front: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(75, "kg"),
  3990. name: "Front",
  3991. image: {
  3992. source: "./media/characters/sefer/front.svg",
  3993. extra: 848 / 659,
  3994. bottom: 28.3 / 876.442
  3995. }
  3996. },
  3997. back: {
  3998. height: math.unit(6, "feet"),
  3999. weight: math.unit(75, "kg"),
  4000. name: "Back",
  4001. image: {
  4002. source: "./media/characters/sefer/back.svg",
  4003. extra: 864 / 695,
  4004. bottom: 10 / 871
  4005. }
  4006. },
  4007. frontDressed: {
  4008. height: math.unit(6, "feet"),
  4009. weight: math.unit(75, "kg"),
  4010. name: "Dressed",
  4011. image: {
  4012. source: "./media/characters/sefer/dressed.svg",
  4013. extra: 839 / 653,
  4014. bottom: 37.6 / 878
  4015. }
  4016. },
  4017. },
  4018. [
  4019. {
  4020. name: "Normal",
  4021. height: math.unit(6, "feet"),
  4022. default: true
  4023. },
  4024. {
  4025. name: "Big",
  4026. height: math.unit(8, "meters")
  4027. },
  4028. ]
  4029. ))
  4030. characterMakers.push(() => makeCharacter(
  4031. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4032. {
  4033. body: {
  4034. height: math.unit(2.2428, "meter"),
  4035. weight: math.unit(124.738, "kg"),
  4036. name: "Body",
  4037. image: {
  4038. extra: 1225 / 1050,
  4039. source: "./media/characters/north/front.svg"
  4040. }
  4041. }
  4042. },
  4043. [
  4044. {
  4045. name: "Micro",
  4046. height: math.unit(4, "inches")
  4047. },
  4048. {
  4049. name: "Macro",
  4050. height: math.unit(63, "meters")
  4051. },
  4052. {
  4053. name: "Megamacro",
  4054. height: math.unit(101, "miles"),
  4055. default: true
  4056. }
  4057. ]
  4058. ))
  4059. characterMakers.push(() => makeCharacter(
  4060. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4061. {
  4062. angled: {
  4063. height: math.unit(4, "meter"),
  4064. weight: math.unit(150, "kg"),
  4065. name: "Angled",
  4066. image: {
  4067. source: "./media/characters/talan/angled-sfw.svg",
  4068. bottom: 29 / 3734
  4069. }
  4070. },
  4071. angledNsfw: {
  4072. height: math.unit(4, "meter"),
  4073. weight: math.unit(150, "kg"),
  4074. name: "Angled (NSFW)",
  4075. image: {
  4076. source: "./media/characters/talan/angled-nsfw.svg",
  4077. bottom: 29 / 3734
  4078. }
  4079. },
  4080. frontNsfw: {
  4081. height: math.unit(4, "meter"),
  4082. weight: math.unit(150, "kg"),
  4083. name: "Front (NSFW)",
  4084. image: {
  4085. source: "./media/characters/talan/front-nsfw.svg",
  4086. bottom: 29 / 3734
  4087. }
  4088. },
  4089. sideNsfw: {
  4090. height: math.unit(4, "meter"),
  4091. weight: math.unit(150, "kg"),
  4092. name: "Side (NSFW)",
  4093. image: {
  4094. source: "./media/characters/talan/side-nsfw.svg",
  4095. bottom: 29 / 3734
  4096. }
  4097. },
  4098. back: {
  4099. height: math.unit(4, "meter"),
  4100. weight: math.unit(150, "kg"),
  4101. name: "Back",
  4102. image: {
  4103. source: "./media/characters/talan/back.svg"
  4104. }
  4105. },
  4106. dickBottom: {
  4107. height: math.unit(0.621, "meter"),
  4108. name: "Dick (Bottom)",
  4109. image: {
  4110. source: "./media/characters/talan/dick-bottom.svg"
  4111. }
  4112. },
  4113. dickTop: {
  4114. height: math.unit(0.621, "meter"),
  4115. name: "Dick (Top)",
  4116. image: {
  4117. source: "./media/characters/talan/dick-top.svg"
  4118. }
  4119. },
  4120. dickSide: {
  4121. height: math.unit(0.305, "meter"),
  4122. name: "Dick (Side)",
  4123. image: {
  4124. source: "./media/characters/talan/dick-side.svg"
  4125. }
  4126. },
  4127. dickFront: {
  4128. height: math.unit(0.305, "meter"),
  4129. name: "Dick (Front)",
  4130. image: {
  4131. source: "./media/characters/talan/dick-front.svg"
  4132. }
  4133. },
  4134. },
  4135. [
  4136. {
  4137. name: "Normal",
  4138. height: math.unit(4, "meters")
  4139. },
  4140. {
  4141. name: "Macro",
  4142. height: math.unit(100, "meters")
  4143. },
  4144. {
  4145. name: "Megamacro",
  4146. height: math.unit(2, "miles"),
  4147. default: true
  4148. },
  4149. {
  4150. name: "Gigamacro",
  4151. height: math.unit(5000, "miles")
  4152. },
  4153. {
  4154. name: "Teramacro",
  4155. height: math.unit(100, "parsecs")
  4156. }
  4157. ]
  4158. ))
  4159. characterMakers.push(() => makeCharacter(
  4160. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4161. {
  4162. front: {
  4163. height: math.unit(2, "meter"),
  4164. weight: math.unit(90, "kg"),
  4165. name: "Front",
  4166. image: {
  4167. source: "./media/characters/gael'rathus/front.svg"
  4168. }
  4169. },
  4170. frontAlt: {
  4171. height: math.unit(2, "meter"),
  4172. weight: math.unit(90, "kg"),
  4173. name: "Front (alt)",
  4174. image: {
  4175. source: "./media/characters/gael'rathus/front-alt.svg"
  4176. }
  4177. },
  4178. frontAlt2: {
  4179. height: math.unit(2, "meter"),
  4180. weight: math.unit(90, "kg"),
  4181. name: "Front (alt 2)",
  4182. image: {
  4183. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4184. }
  4185. }
  4186. },
  4187. [
  4188. {
  4189. name: "Normal",
  4190. height: math.unit(9, "feet"),
  4191. default: true
  4192. },
  4193. {
  4194. name: "Large",
  4195. height: math.unit(25, "feet")
  4196. },
  4197. {
  4198. name: "Macro",
  4199. height: math.unit(0.25, "miles")
  4200. },
  4201. {
  4202. name: "Megamacro",
  4203. height: math.unit(10, "miles")
  4204. }
  4205. ]
  4206. ))
  4207. characterMakers.push(() => makeCharacter(
  4208. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4209. {
  4210. side: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(140, "kg"),
  4213. name: "Side",
  4214. image: {
  4215. source: "./media/characters/sosha/side.svg",
  4216. extra: 1170/1006,
  4217. bottom: 94/1264
  4218. }
  4219. },
  4220. maw: {
  4221. height: math.unit(2.87, "feet"),
  4222. name: "Maw",
  4223. image: {
  4224. source: "./media/characters/sosha/maw.svg",
  4225. extra: 966/865,
  4226. bottom: 0/966
  4227. }
  4228. },
  4229. cooch: {
  4230. height: math.unit(5.6, "feet"),
  4231. name: "Cooch",
  4232. image: {
  4233. source: "./media/characters/sosha/cooch.svg"
  4234. }
  4235. },
  4236. },
  4237. [
  4238. {
  4239. name: "Normal",
  4240. height: math.unit(12, "feet"),
  4241. default: true
  4242. }
  4243. ]
  4244. ))
  4245. characterMakers.push(() => makeCharacter(
  4246. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4247. {
  4248. side: {
  4249. height: math.unit(5 + 5 / 12, "feet"),
  4250. weight: math.unit(170, "kg"),
  4251. name: "Side",
  4252. image: {
  4253. source: "./media/characters/runnola/side.svg",
  4254. extra: 741 / 448,
  4255. bottom: 0.05
  4256. }
  4257. },
  4258. },
  4259. [
  4260. {
  4261. name: "Small",
  4262. height: math.unit(3, "feet")
  4263. },
  4264. {
  4265. name: "Normal",
  4266. height: math.unit(5 + 5 / 12, "feet"),
  4267. default: true
  4268. },
  4269. {
  4270. name: "Big",
  4271. height: math.unit(10, "feet")
  4272. },
  4273. ]
  4274. ))
  4275. characterMakers.push(() => makeCharacter(
  4276. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4277. {
  4278. front: {
  4279. height: math.unit(2, "meter"),
  4280. weight: math.unit(50, "kg"),
  4281. name: "Front",
  4282. image: {
  4283. source: "./media/characters/kurribird/front.svg",
  4284. bottom: 0.015
  4285. }
  4286. },
  4287. frontAlt: {
  4288. height: math.unit(1.5, "meter"),
  4289. weight: math.unit(50, "kg"),
  4290. name: "Front (Alt)",
  4291. image: {
  4292. source: "./media/characters/kurribird/front-alt.svg",
  4293. extra: 1.45
  4294. }
  4295. },
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(7, "feet")
  4301. },
  4302. {
  4303. name: "Big",
  4304. height: math.unit(12, "feet"),
  4305. default: true
  4306. },
  4307. {
  4308. name: "Macro",
  4309. height: math.unit(1500, "feet")
  4310. },
  4311. {
  4312. name: "Megamacro",
  4313. height: math.unit(2, "miles")
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4319. {
  4320. front: {
  4321. height: math.unit(2, "meter"),
  4322. weight: math.unit(80, "kg"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/elbial/front.svg",
  4326. extra: 1643 / 1556,
  4327. bottom: 60.2 / 1696
  4328. }
  4329. },
  4330. side: {
  4331. height: math.unit(2, "meter"),
  4332. weight: math.unit(80, "kg"),
  4333. name: "Side",
  4334. image: {
  4335. source: "./media/characters/elbial/side.svg",
  4336. extra: 1601/1528,
  4337. bottom: 97/1698
  4338. }
  4339. },
  4340. back: {
  4341. height: math.unit(2, "meter"),
  4342. weight: math.unit(80, "kg"),
  4343. name: "Back",
  4344. image: {
  4345. source: "./media/characters/elbial/back.svg",
  4346. extra: 1653/1569,
  4347. bottom: 20/1673
  4348. }
  4349. },
  4350. frontDressed: {
  4351. height: math.unit(2, "meter"),
  4352. weight: math.unit(80, "kg"),
  4353. name: "Front (Dressed)",
  4354. image: {
  4355. source: "./media/characters/elbial/front-dressed.svg",
  4356. extra: 1638/1569,
  4357. bottom: 70/1708
  4358. }
  4359. },
  4360. genitals: {
  4361. height: math.unit(2 / 3.367, "meter"),
  4362. name: "Genitals",
  4363. image: {
  4364. source: "./media/characters/elbial/genitals.svg"
  4365. }
  4366. },
  4367. },
  4368. [
  4369. {
  4370. name: "Large",
  4371. height: math.unit(100, "feet")
  4372. },
  4373. {
  4374. name: "Macro",
  4375. height: math.unit(500, "feet"),
  4376. default: true
  4377. },
  4378. {
  4379. name: "Megamacro",
  4380. height: math.unit(10, "miles")
  4381. },
  4382. {
  4383. name: "Gigamacro",
  4384. height: math.unit(25000, "miles")
  4385. },
  4386. {
  4387. name: "Full-Size",
  4388. height: math.unit(8000000, "gigaparsecs")
  4389. }
  4390. ]
  4391. ))
  4392. characterMakers.push(() => makeCharacter(
  4393. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4394. {
  4395. front: {
  4396. height: math.unit(2, "meter"),
  4397. weight: math.unit(60, "kg"),
  4398. name: "Front",
  4399. image: {
  4400. source: "./media/characters/noah/front.svg",
  4401. extra: 1383/1313,
  4402. bottom: 104/1487
  4403. }
  4404. },
  4405. hand: {
  4406. height: math.unit(0.6, "feet"),
  4407. name: "Hand",
  4408. image: {
  4409. source: "./media/characters/noah/hand.svg"
  4410. }
  4411. },
  4412. talons: {
  4413. height: math.unit(1.385, "feet"),
  4414. name: "Talons",
  4415. image: {
  4416. source: "./media/characters/noah/talons.svg"
  4417. }
  4418. },
  4419. beak: {
  4420. height: math.unit(0.43, "feet"),
  4421. name: "Beak",
  4422. image: {
  4423. source: "./media/characters/noah/beak.svg"
  4424. }
  4425. },
  4426. collar: {
  4427. height: math.unit(0.88, "feet"),
  4428. name: "Collar",
  4429. image: {
  4430. source: "./media/characters/noah/collar.svg"
  4431. }
  4432. },
  4433. eyeNarrow: {
  4434. height: math.unit(0.18, "feet"),
  4435. name: "Eye (Narrow)",
  4436. image: {
  4437. source: "./media/characters/noah/eye-narrow.svg"
  4438. }
  4439. },
  4440. eyeNormal: {
  4441. height: math.unit(0.18, "feet"),
  4442. name: "Eye (Normal)",
  4443. image: {
  4444. source: "./media/characters/noah/eye-normal.svg"
  4445. }
  4446. },
  4447. eyeWide: {
  4448. height: math.unit(0.18, "feet"),
  4449. name: "Eye (Wide)",
  4450. image: {
  4451. source: "./media/characters/noah/eye-wide.svg"
  4452. }
  4453. },
  4454. ear: {
  4455. height: math.unit(0.64, "feet"),
  4456. name: "Ear",
  4457. image: {
  4458. source: "./media/characters/noah/ear.svg"
  4459. }
  4460. },
  4461. },
  4462. [
  4463. {
  4464. name: "Large",
  4465. height: math.unit(50, "feet")
  4466. },
  4467. {
  4468. name: "Macro",
  4469. height: math.unit(750, "feet"),
  4470. default: true
  4471. },
  4472. {
  4473. name: "Megamacro",
  4474. height: math.unit(50, "miles")
  4475. },
  4476. {
  4477. name: "Gigamacro",
  4478. height: math.unit(100000, "miles")
  4479. },
  4480. {
  4481. name: "Full-Size",
  4482. height: math.unit(3000000000, "miles")
  4483. }
  4484. ]
  4485. ))
  4486. characterMakers.push(() => makeCharacter(
  4487. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4488. {
  4489. front: {
  4490. height: math.unit(2, "meter"),
  4491. weight: math.unit(80, "kg"),
  4492. name: "Front",
  4493. image: {
  4494. source: "./media/characters/natalya/front.svg"
  4495. }
  4496. },
  4497. back: {
  4498. height: math.unit(2, "meter"),
  4499. weight: math.unit(80, "kg"),
  4500. name: "Back",
  4501. image: {
  4502. source: "./media/characters/natalya/back.svg"
  4503. }
  4504. }
  4505. },
  4506. [
  4507. {
  4508. name: "Normal",
  4509. height: math.unit(150, "feet"),
  4510. default: true
  4511. },
  4512. {
  4513. name: "Megamacro",
  4514. height: math.unit(5, "miles")
  4515. },
  4516. {
  4517. name: "Full-Size",
  4518. height: math.unit(600, "kiloparsecs")
  4519. }
  4520. ]
  4521. ))
  4522. characterMakers.push(() => makeCharacter(
  4523. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4524. {
  4525. front: {
  4526. height: math.unit(2, "meter"),
  4527. weight: math.unit(50, "kg"),
  4528. name: "Front",
  4529. image: {
  4530. source: "./media/characters/erestrebah/front.svg",
  4531. extra: 1262/1162,
  4532. bottom: 96/1358
  4533. }
  4534. },
  4535. back: {
  4536. height: math.unit(2, "meter"),
  4537. weight: math.unit(50, "kg"),
  4538. name: "Back",
  4539. image: {
  4540. source: "./media/characters/erestrebah/back.svg",
  4541. extra: 1257/1139,
  4542. bottom: 13/1270
  4543. }
  4544. },
  4545. wing: {
  4546. height: math.unit(2, "meter"),
  4547. weight: math.unit(50, "kg"),
  4548. name: "Wing",
  4549. image: {
  4550. source: "./media/characters/erestrebah/wing.svg",
  4551. extra: 1262/1162,
  4552. bottom: 96/1358
  4553. }
  4554. },
  4555. mouth: {
  4556. height: math.unit(0.39, "feet"),
  4557. name: "Mouth",
  4558. image: {
  4559. source: "./media/characters/erestrebah/mouth.svg"
  4560. }
  4561. }
  4562. },
  4563. [
  4564. {
  4565. name: "Normal",
  4566. height: math.unit(10, "feet")
  4567. },
  4568. {
  4569. name: "Large",
  4570. height: math.unit(50, "feet"),
  4571. default: true
  4572. },
  4573. {
  4574. name: "Macro",
  4575. height: math.unit(300, "feet")
  4576. },
  4577. {
  4578. name: "Macro+",
  4579. height: math.unit(750, "feet")
  4580. },
  4581. {
  4582. name: "Megamacro",
  4583. height: math.unit(3, "miles")
  4584. }
  4585. ]
  4586. ))
  4587. characterMakers.push(() => makeCharacter(
  4588. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4589. {
  4590. front: {
  4591. height: math.unit(2, "meter"),
  4592. weight: math.unit(80, "kg"),
  4593. name: "Front",
  4594. image: {
  4595. source: "./media/characters/jennifer/front.svg",
  4596. bottom: 0.11,
  4597. extra: 1.16
  4598. }
  4599. },
  4600. frontAlt: {
  4601. height: math.unit(2, "meter"),
  4602. weight: math.unit(80, "kg"),
  4603. name: "Front (Alt)",
  4604. image: {
  4605. source: "./media/characters/jennifer/front-alt.svg"
  4606. }
  4607. }
  4608. },
  4609. [
  4610. {
  4611. name: "Canon Height",
  4612. height: math.unit(120, "feet"),
  4613. default: true
  4614. },
  4615. {
  4616. name: "Macro+",
  4617. height: math.unit(300, "feet")
  4618. },
  4619. {
  4620. name: "Megamacro",
  4621. height: math.unit(20000, "feet")
  4622. }
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4627. {
  4628. front: {
  4629. height: math.unit(2, "meter"),
  4630. weight: math.unit(50, "kg"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/kalista/front.svg",
  4634. extra: 1314/1145,
  4635. bottom: 101/1415
  4636. }
  4637. },
  4638. back: {
  4639. height: math.unit(2, "meter"),
  4640. weight: math.unit(50, "kg"),
  4641. name: "Back",
  4642. image: {
  4643. source: "./media/characters/kalista/back.svg",
  4644. extra: 1366 / 1156,
  4645. bottom: 33.9 / 1362.78
  4646. }
  4647. }
  4648. },
  4649. [
  4650. {
  4651. name: "Uncomfortably Small",
  4652. height: math.unit(10, "feet")
  4653. },
  4654. {
  4655. name: "Small",
  4656. height: math.unit(30, "feet")
  4657. },
  4658. {
  4659. name: "Macro",
  4660. height: math.unit(100, "feet"),
  4661. default: true
  4662. },
  4663. {
  4664. name: "Macro+",
  4665. height: math.unit(2000, "feet")
  4666. },
  4667. {
  4668. name: "True Form",
  4669. height: math.unit(8924, "miles")
  4670. }
  4671. ]
  4672. ))
  4673. characterMakers.push(() => makeCharacter(
  4674. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4675. {
  4676. front: {
  4677. height: math.unit(2, "meter"),
  4678. weight: math.unit(120, "kg"),
  4679. name: "Front",
  4680. image: {
  4681. source: "./media/characters/ggv/front.svg"
  4682. }
  4683. },
  4684. side: {
  4685. height: math.unit(2, "meter"),
  4686. weight: math.unit(120, "kg"),
  4687. name: "Side",
  4688. image: {
  4689. source: "./media/characters/ggv/side.svg"
  4690. }
  4691. }
  4692. },
  4693. [
  4694. {
  4695. name: "Extremely Puny",
  4696. height: math.unit(9 + 5 / 12, "feet")
  4697. },
  4698. {
  4699. name: "Horribly Small",
  4700. height: math.unit(47.7, "miles"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "Reasonably Sized",
  4705. height: math.unit(25000, "parsecs")
  4706. },
  4707. {
  4708. name: "Slightly Uncompressed",
  4709. height: math.unit(7.77e31, "parsecs")
  4710. },
  4711. {
  4712. name: "Omniversal",
  4713. height: math.unit(1e300, "meters")
  4714. },
  4715. ]
  4716. ))
  4717. characterMakers.push(() => makeCharacter(
  4718. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4719. {
  4720. front: {
  4721. height: math.unit(2, "meter"),
  4722. weight: math.unit(75, "lb"),
  4723. name: "Front",
  4724. image: {
  4725. source: "./media/characters/napalm/front.svg"
  4726. }
  4727. },
  4728. back: {
  4729. height: math.unit(2, "meter"),
  4730. weight: math.unit(75, "lb"),
  4731. name: "Back",
  4732. image: {
  4733. source: "./media/characters/napalm/back.svg"
  4734. }
  4735. }
  4736. },
  4737. [
  4738. {
  4739. name: "Standard",
  4740. height: math.unit(55, "feet"),
  4741. default: true
  4742. }
  4743. ]
  4744. ))
  4745. characterMakers.push(() => makeCharacter(
  4746. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4747. {
  4748. front: {
  4749. height: math.unit(7 + 5 / 6, "feet"),
  4750. weight: math.unit(325, "lb"),
  4751. name: "Front",
  4752. image: {
  4753. source: "./media/characters/asana/front.svg",
  4754. extra: 1133 / 1060,
  4755. bottom: 15.2 / 1148.6
  4756. }
  4757. },
  4758. back: {
  4759. height: math.unit(7 + 5 / 6, "feet"),
  4760. weight: math.unit(325, "lb"),
  4761. name: "Back",
  4762. image: {
  4763. source: "./media/characters/asana/back.svg",
  4764. extra: 1114 / 1043,
  4765. bottom: 5 / 1120
  4766. }
  4767. },
  4768. dressedDark: {
  4769. height: math.unit(7 + 5 / 6, "feet"),
  4770. weight: math.unit(325, "lb"),
  4771. name: "Dressed (Dark)",
  4772. image: {
  4773. source: "./media/characters/asana/dressed-dark.svg",
  4774. extra: 1133 / 1060,
  4775. bottom: 15.2 / 1148.6
  4776. }
  4777. },
  4778. dressedLight: {
  4779. height: math.unit(7 + 5 / 6, "feet"),
  4780. weight: math.unit(325, "lb"),
  4781. name: "Dressed (Light)",
  4782. image: {
  4783. source: "./media/characters/asana/dressed-light.svg",
  4784. extra: 1133 / 1060,
  4785. bottom: 15.2 / 1148.6
  4786. }
  4787. },
  4788. },
  4789. [
  4790. {
  4791. name: "Standard",
  4792. height: math.unit(7 + 5 / 6, "feet"),
  4793. default: true
  4794. },
  4795. {
  4796. name: "Large",
  4797. height: math.unit(10, "meters")
  4798. },
  4799. {
  4800. name: "Macro",
  4801. height: math.unit(2500, "meters")
  4802. },
  4803. {
  4804. name: "Megamacro",
  4805. height: math.unit(5e6, "meters")
  4806. },
  4807. {
  4808. name: "Examacro",
  4809. height: math.unit(5e12, "lightyears")
  4810. },
  4811. {
  4812. name: "Max Size",
  4813. height: math.unit(1e31, "lightyears")
  4814. }
  4815. ]
  4816. ))
  4817. characterMakers.push(() => makeCharacter(
  4818. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4819. {
  4820. front: {
  4821. height: math.unit(2, "meter"),
  4822. weight: math.unit(60, "kg"),
  4823. name: "Front",
  4824. image: {
  4825. source: "./media/characters/ebony/front.svg",
  4826. bottom: 0.03,
  4827. extra: 1045 / 810 + 0.03
  4828. }
  4829. },
  4830. side: {
  4831. height: math.unit(2, "meter"),
  4832. weight: math.unit(60, "kg"),
  4833. name: "Side",
  4834. image: {
  4835. source: "./media/characters/ebony/side.svg",
  4836. bottom: 0.03,
  4837. extra: 1045 / 810 + 0.03
  4838. }
  4839. },
  4840. back: {
  4841. height: math.unit(2, "meter"),
  4842. weight: math.unit(60, "kg"),
  4843. name: "Back",
  4844. image: {
  4845. source: "./media/characters/ebony/back.svg",
  4846. bottom: 0.01,
  4847. extra: 1045 / 810 + 0.01
  4848. }
  4849. },
  4850. },
  4851. [
  4852. // TODO check why I did this lol
  4853. {
  4854. name: "Standard",
  4855. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4856. default: true
  4857. },
  4858. {
  4859. name: "Macro",
  4860. height: math.unit(200, "feet")
  4861. },
  4862. {
  4863. name: "Gigamacro",
  4864. height: math.unit(13000, "km")
  4865. }
  4866. ]
  4867. ))
  4868. characterMakers.push(() => makeCharacter(
  4869. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4870. {
  4871. front: {
  4872. height: math.unit(6, "feet"),
  4873. weight: math.unit(175, "lb"),
  4874. name: "Front",
  4875. image: {
  4876. source: "./media/characters/mountain/front.svg",
  4877. extra: 972 / 955,
  4878. bottom: 64 / 1036.6
  4879. }
  4880. },
  4881. back: {
  4882. height: math.unit(6, "feet"),
  4883. weight: math.unit(175, "lb"),
  4884. name: "Back",
  4885. image: {
  4886. source: "./media/characters/mountain/back.svg",
  4887. extra: 970 / 950,
  4888. bottom: 28.25 / 999
  4889. }
  4890. },
  4891. },
  4892. [
  4893. {
  4894. name: "Large",
  4895. height: math.unit(20, "meters")
  4896. },
  4897. {
  4898. name: "Macro",
  4899. height: math.unit(300, "meters")
  4900. },
  4901. {
  4902. name: "Gigamacro",
  4903. height: math.unit(10000, "km"),
  4904. default: true
  4905. },
  4906. {
  4907. name: "Examacro",
  4908. height: math.unit(10e9, "lightyears")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4914. {
  4915. front: {
  4916. height: math.unit(8, "feet"),
  4917. weight: math.unit(500, "lb"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/rick/front.svg"
  4921. }
  4922. }
  4923. },
  4924. [
  4925. {
  4926. name: "Normal",
  4927. height: math.unit(8, "feet"),
  4928. default: true
  4929. },
  4930. {
  4931. name: "Macro",
  4932. height: math.unit(5, "km")
  4933. }
  4934. ]
  4935. ))
  4936. characterMakers.push(() => makeCharacter(
  4937. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4938. {
  4939. front: {
  4940. height: math.unit(8, "feet"),
  4941. weight: math.unit(120, "lb"),
  4942. name: "Front",
  4943. image: {
  4944. source: "./media/characters/ona/front.svg"
  4945. }
  4946. },
  4947. frontAlt: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(120, "lb"),
  4950. name: "Front (Alt)",
  4951. image: {
  4952. source: "./media/characters/ona/front-alt.svg"
  4953. }
  4954. },
  4955. back: {
  4956. height: math.unit(8, "feet"),
  4957. weight: math.unit(120, "lb"),
  4958. name: "Back",
  4959. image: {
  4960. source: "./media/characters/ona/back.svg"
  4961. }
  4962. },
  4963. foot: {
  4964. height: math.unit(1.1, "feet"),
  4965. name: "Foot",
  4966. image: {
  4967. source: "./media/characters/ona/foot.svg"
  4968. }
  4969. }
  4970. },
  4971. [
  4972. {
  4973. name: "Megamacro",
  4974. height: math.unit(70, "km"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Gigamacro",
  4979. height: math.unit(681818, "miles")
  4980. },
  4981. {
  4982. name: "Examacro",
  4983. height: math.unit(3800000, "lightyears")
  4984. },
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4989. {
  4990. front: {
  4991. height: math.unit(12, "feet"),
  4992. weight: math.unit(3000, "lb"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/mech/front.svg",
  4996. extra: 2900 / 2770,
  4997. bottom: 110 / 3010
  4998. }
  4999. },
  5000. back: {
  5001. height: math.unit(12, "feet"),
  5002. weight: math.unit(3000, "lb"),
  5003. name: "Back",
  5004. image: {
  5005. source: "./media/characters/mech/back.svg",
  5006. extra: 3011 / 2890,
  5007. bottom: 94 / 3105
  5008. }
  5009. },
  5010. maw: {
  5011. height: math.unit(3.07, "feet"),
  5012. name: "Maw",
  5013. image: {
  5014. source: "./media/characters/mech/maw.svg"
  5015. }
  5016. },
  5017. head: {
  5018. height: math.unit(3.07, "feet"),
  5019. name: "Head",
  5020. image: {
  5021. source: "./media/characters/mech/head.svg"
  5022. }
  5023. },
  5024. dick: {
  5025. height: math.unit(1.43, "feet"),
  5026. name: "Dick",
  5027. image: {
  5028. source: "./media/characters/mech/dick.svg"
  5029. }
  5030. },
  5031. },
  5032. [
  5033. {
  5034. name: "Normal",
  5035. height: math.unit(12, "feet")
  5036. },
  5037. {
  5038. name: "Macro",
  5039. height: math.unit(300, "feet"),
  5040. default: true
  5041. },
  5042. {
  5043. name: "Macro+",
  5044. height: math.unit(1500, "feet")
  5045. },
  5046. ]
  5047. ))
  5048. characterMakers.push(() => makeCharacter(
  5049. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5050. {
  5051. front: {
  5052. height: math.unit(1.3, "meter"),
  5053. weight: math.unit(30, "kg"),
  5054. name: "Front",
  5055. image: {
  5056. source: "./media/characters/gregory/front.svg",
  5057. }
  5058. }
  5059. },
  5060. [
  5061. {
  5062. name: "Normal",
  5063. height: math.unit(1.3, "meter"),
  5064. default: true
  5065. },
  5066. {
  5067. name: "Macro",
  5068. height: math.unit(20, "meter")
  5069. }
  5070. ]
  5071. ))
  5072. characterMakers.push(() => makeCharacter(
  5073. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5074. {
  5075. front: {
  5076. height: math.unit(2.8, "meter"),
  5077. weight: math.unit(200, "kg"),
  5078. name: "Front",
  5079. image: {
  5080. source: "./media/characters/elory/front.svg",
  5081. }
  5082. }
  5083. },
  5084. [
  5085. {
  5086. name: "Normal",
  5087. height: math.unit(2.8, "meter"),
  5088. default: true
  5089. },
  5090. {
  5091. name: "Macro",
  5092. height: math.unit(38, "meter")
  5093. }
  5094. ]
  5095. ))
  5096. characterMakers.push(() => makeCharacter(
  5097. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5098. {
  5099. front: {
  5100. height: math.unit(470, "feet"),
  5101. weight: math.unit(924, "tons"),
  5102. name: "Front",
  5103. image: {
  5104. source: "./media/characters/angelpatamon/front.svg",
  5105. }
  5106. }
  5107. },
  5108. [
  5109. {
  5110. name: "Normal",
  5111. height: math.unit(470, "feet"),
  5112. default: true
  5113. },
  5114. {
  5115. name: "Deity Size I",
  5116. height: math.unit(28651.2, "km")
  5117. },
  5118. {
  5119. name: "Deity Size II",
  5120. height: math.unit(171907.2, "km")
  5121. }
  5122. ]
  5123. ))
  5124. characterMakers.push(() => makeCharacter(
  5125. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5126. {
  5127. side: {
  5128. height: math.unit(7.2, "meter"),
  5129. weight: math.unit(8.2, "tons"),
  5130. name: "Side",
  5131. image: {
  5132. source: "./media/characters/cryae/side.svg",
  5133. extra: 3500 / 1500
  5134. }
  5135. }
  5136. },
  5137. [
  5138. {
  5139. name: "Normal",
  5140. height: math.unit(7.2, "meter"),
  5141. default: true
  5142. }
  5143. ]
  5144. ))
  5145. characterMakers.push(() => makeCharacter(
  5146. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5147. {
  5148. front: {
  5149. height: math.unit(6, "feet"),
  5150. weight: math.unit(175, "lb"),
  5151. name: "Front",
  5152. image: {
  5153. source: "./media/characters/xera/front.svg",
  5154. extra: 2377 / 1972,
  5155. bottom: 75.5 / 2452
  5156. }
  5157. },
  5158. side: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(175, "lb"),
  5161. name: "Side",
  5162. image: {
  5163. source: "./media/characters/xera/side.svg",
  5164. extra: 2345 / 2019,
  5165. bottom: 39.7 / 2384
  5166. }
  5167. },
  5168. back: {
  5169. height: math.unit(6, "feet"),
  5170. weight: math.unit(175, "lb"),
  5171. name: "Back",
  5172. image: {
  5173. source: "./media/characters/xera/back.svg",
  5174. extra: 2095 / 1984,
  5175. bottom: 67 / 2166
  5176. }
  5177. },
  5178. },
  5179. [
  5180. {
  5181. name: "Small",
  5182. height: math.unit(10, "feet")
  5183. },
  5184. {
  5185. name: "Macro",
  5186. height: math.unit(500, "meters"),
  5187. default: true
  5188. },
  5189. {
  5190. name: "Macro+",
  5191. height: math.unit(10, "km")
  5192. },
  5193. {
  5194. name: "Gigamacro",
  5195. height: math.unit(25000, "km")
  5196. },
  5197. {
  5198. name: "Teramacro",
  5199. height: math.unit(3e6, "km")
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5205. {
  5206. front: {
  5207. height: math.unit(6, "feet"),
  5208. weight: math.unit(175, "lb"),
  5209. name: "Front",
  5210. image: {
  5211. source: "./media/characters/nebula/front.svg",
  5212. extra: 2566 / 2362,
  5213. bottom: 81 / 2644
  5214. }
  5215. }
  5216. },
  5217. [
  5218. {
  5219. name: "Small",
  5220. height: math.unit(4.5, "meters")
  5221. },
  5222. {
  5223. name: "Macro",
  5224. height: math.unit(1500, "meters"),
  5225. default: true
  5226. },
  5227. {
  5228. name: "Megamacro",
  5229. height: math.unit(150, "km")
  5230. },
  5231. {
  5232. name: "Gigamacro",
  5233. height: math.unit(27000, "km")
  5234. }
  5235. ]
  5236. ))
  5237. characterMakers.push(() => makeCharacter(
  5238. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5239. {
  5240. front: {
  5241. height: math.unit(6, "feet"),
  5242. weight: math.unit(225, "lb"),
  5243. name: "Front",
  5244. image: {
  5245. source: "./media/characters/abysgar/front.svg",
  5246. extra: 1739/1614,
  5247. bottom: 71/1810
  5248. }
  5249. },
  5250. frontNsfw: {
  5251. height: math.unit(6, "feet"),
  5252. weight: math.unit(225, "lb"),
  5253. name: "Front (NSFW)",
  5254. image: {
  5255. source: "./media/characters/abysgar/front-nsfw.svg",
  5256. extra: 1739/1614,
  5257. bottom: 71/1810
  5258. }
  5259. },
  5260. back: {
  5261. height: math.unit(4.6, "feet"),
  5262. weight: math.unit(225, "lb"),
  5263. name: "Back",
  5264. image: {
  5265. source: "./media/characters/abysgar/back.svg",
  5266. extra: 1384/1327,
  5267. bottom: 0/1384
  5268. }
  5269. },
  5270. head: {
  5271. height: math.unit(1.25, "feet"),
  5272. name: "Head",
  5273. image: {
  5274. source: "./media/characters/abysgar/head.svg",
  5275. extra: 669/569,
  5276. bottom: 0/669
  5277. }
  5278. },
  5279. },
  5280. [
  5281. {
  5282. name: "Small",
  5283. height: math.unit(4.5, "meters")
  5284. },
  5285. {
  5286. name: "Macro",
  5287. height: math.unit(1250, "meters"),
  5288. default: true
  5289. },
  5290. {
  5291. name: "Megamacro",
  5292. height: math.unit(125, "km")
  5293. },
  5294. {
  5295. name: "Gigamacro",
  5296. height: math.unit(26000, "km")
  5297. }
  5298. ]
  5299. ))
  5300. characterMakers.push(() => makeCharacter(
  5301. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5302. {
  5303. front: {
  5304. height: math.unit(6, "feet"),
  5305. weight: math.unit(180, "lb"),
  5306. name: "Front",
  5307. image: {
  5308. source: "./media/characters/yakuz/front.svg"
  5309. }
  5310. }
  5311. },
  5312. [
  5313. {
  5314. name: "Small",
  5315. height: math.unit(5, "meters")
  5316. },
  5317. {
  5318. name: "Macro",
  5319. height: math.unit(1500, "meters"),
  5320. default: true
  5321. },
  5322. {
  5323. name: "Megamacro",
  5324. height: math.unit(200, "km")
  5325. },
  5326. {
  5327. name: "Gigamacro",
  5328. height: math.unit(100000, "km")
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5334. {
  5335. front: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(175, "lb"),
  5338. name: "Front",
  5339. image: {
  5340. source: "./media/characters/mirova/front.svg",
  5341. extra: 3334 / 3071,
  5342. bottom: 42 / 3375.6
  5343. }
  5344. }
  5345. },
  5346. [
  5347. {
  5348. name: "Small",
  5349. height: math.unit(5, "meters")
  5350. },
  5351. {
  5352. name: "Macro",
  5353. height: math.unit(900, "meters"),
  5354. default: true
  5355. },
  5356. {
  5357. name: "Megamacro",
  5358. height: math.unit(135, "km")
  5359. },
  5360. {
  5361. name: "Gigamacro",
  5362. height: math.unit(20000, "km")
  5363. }
  5364. ]
  5365. ))
  5366. characterMakers.push(() => makeCharacter(
  5367. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5368. {
  5369. side: {
  5370. height: math.unit(28.35, "feet"),
  5371. weight: math.unit(99.75, "tons"),
  5372. name: "Side",
  5373. image: {
  5374. source: "./media/characters/asana-mech/side.svg",
  5375. extra: 923 / 699,
  5376. bottom: 50 / 975
  5377. }
  5378. },
  5379. chaingun: {
  5380. height: math.unit(7, "feet"),
  5381. weight: math.unit(2400, "lb"),
  5382. name: "Chaingun",
  5383. image: {
  5384. source: "./media/characters/asana-mech/chaingun.svg"
  5385. }
  5386. },
  5387. laser: {
  5388. height: math.unit(7.12, "feet"),
  5389. weight: math.unit(2000, "lb"),
  5390. name: "Laser",
  5391. image: {
  5392. source: "./media/characters/asana-mech/laser.svg"
  5393. }
  5394. },
  5395. },
  5396. [
  5397. {
  5398. name: "Normal",
  5399. height: math.unit(28.35, "feet"),
  5400. default: true
  5401. },
  5402. {
  5403. name: "Macro",
  5404. height: math.unit(2500, "feet")
  5405. },
  5406. {
  5407. name: "Megamacro",
  5408. height: math.unit(25, "miles")
  5409. },
  5410. {
  5411. name: "Examacro",
  5412. height: math.unit(6e8, "lightyears")
  5413. },
  5414. ]
  5415. ))
  5416. characterMakers.push(() => makeCharacter(
  5417. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5418. {
  5419. front: {
  5420. height: math.unit(5, "meters"),
  5421. weight: math.unit(1000, "kg"),
  5422. name: "Front",
  5423. image: {
  5424. source: "./media/characters/asche/front.svg",
  5425. extra: 1258 / 1190,
  5426. bottom: 47 / 1305
  5427. }
  5428. },
  5429. frontUnderwear: {
  5430. height: math.unit(5, "meters"),
  5431. weight: math.unit(1000, "kg"),
  5432. name: "Front (Underwear)",
  5433. image: {
  5434. source: "./media/characters/asche/front-underwear.svg",
  5435. extra: 1258 / 1190,
  5436. bottom: 47 / 1305
  5437. }
  5438. },
  5439. frontDressed: {
  5440. height: math.unit(5, "meters"),
  5441. weight: math.unit(1000, "kg"),
  5442. name: "Front (Dressed)",
  5443. image: {
  5444. source: "./media/characters/asche/front-dressed.svg",
  5445. extra: 1258 / 1190,
  5446. bottom: 47 / 1305
  5447. }
  5448. },
  5449. frontArmor: {
  5450. height: math.unit(5, "meters"),
  5451. weight: math.unit(1000, "kg"),
  5452. name: "Front (Armored)",
  5453. image: {
  5454. source: "./media/characters/asche/front-armored.svg",
  5455. extra: 1374 / 1308,
  5456. bottom: 23 / 1397
  5457. }
  5458. },
  5459. mp724: {
  5460. height: math.unit(0.96, "meters"),
  5461. weight: math.unit(38, "kg"),
  5462. name: "H&K MP724",
  5463. image: {
  5464. source: "./media/characters/asche/h&k-mp724.svg"
  5465. }
  5466. },
  5467. side: {
  5468. height: math.unit(5, "meters"),
  5469. weight: math.unit(1000, "kg"),
  5470. name: "Side",
  5471. image: {
  5472. source: "./media/characters/asche/side.svg",
  5473. extra: 1717 / 1609,
  5474. bottom: 0.005
  5475. }
  5476. },
  5477. back: {
  5478. height: math.unit(5, "meters"),
  5479. weight: math.unit(1000, "kg"),
  5480. name: "Back",
  5481. image: {
  5482. source: "./media/characters/asche/back.svg",
  5483. extra: 1570 / 1501
  5484. }
  5485. },
  5486. },
  5487. [
  5488. {
  5489. name: "DEFCON 5",
  5490. height: math.unit(5, "meters")
  5491. },
  5492. {
  5493. name: "DEFCON 4",
  5494. height: math.unit(500, "meters"),
  5495. default: true
  5496. },
  5497. {
  5498. name: "DEFCON 3",
  5499. height: math.unit(5, "km")
  5500. },
  5501. {
  5502. name: "DEFCON 2",
  5503. height: math.unit(500, "km")
  5504. },
  5505. {
  5506. name: "DEFCON 1",
  5507. height: math.unit(500000, "km")
  5508. },
  5509. {
  5510. name: "DEFCON 0",
  5511. height: math.unit(3, "gigaparsecs")
  5512. },
  5513. ]
  5514. ))
  5515. characterMakers.push(() => makeCharacter(
  5516. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5517. {
  5518. front: {
  5519. height: math.unit(7, "feet"),
  5520. weight: math.unit(92.7, "kg"),
  5521. name: "Front",
  5522. image: {
  5523. source: "./media/characters/gale/front.svg",
  5524. extra: 977/919,
  5525. bottom: 105/1082
  5526. }
  5527. },
  5528. side: {
  5529. height: math.unit(6.7, "feet"),
  5530. weight: math.unit(92.7, "kg"),
  5531. name: "Side",
  5532. image: {
  5533. source: "./media/characters/gale/side.svg",
  5534. extra: 978/922,
  5535. bottom: 140/1118
  5536. }
  5537. },
  5538. back: {
  5539. height: math.unit(7, "feet"),
  5540. weight: math.unit(92.7, "kg"),
  5541. name: "Back",
  5542. image: {
  5543. source: "./media/characters/gale/back.svg",
  5544. extra: 966/920,
  5545. bottom: 61/1027
  5546. }
  5547. },
  5548. maw: {
  5549. height: math.unit(2.23, "feet"),
  5550. name: "Maw",
  5551. image: {
  5552. source: "./media/characters/gale/maw.svg"
  5553. }
  5554. },
  5555. foot: {
  5556. height: math.unit(2.1, "feet"),
  5557. name: "Foot",
  5558. image: {
  5559. source: "./media/characters/gale/foot.svg"
  5560. }
  5561. },
  5562. },
  5563. [
  5564. {
  5565. name: "Normal",
  5566. height: math.unit(7, "feet")
  5567. },
  5568. {
  5569. name: "Macro",
  5570. height: math.unit(150, "feet"),
  5571. default: true
  5572. },
  5573. {
  5574. name: "Macro+",
  5575. height: math.unit(300, "feet")
  5576. },
  5577. ]
  5578. ))
  5579. characterMakers.push(() => makeCharacter(
  5580. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5581. {
  5582. front: {
  5583. height: math.unit(5 + 10/12, "feet"),
  5584. weight: math.unit(67, "kg"),
  5585. name: "Front",
  5586. image: {
  5587. source: "./media/characters/draylen/front.svg",
  5588. extra: 832/777,
  5589. bottom: 85/917
  5590. }
  5591. }
  5592. },
  5593. [
  5594. {
  5595. name: "Normal",
  5596. height: math.unit(5 + 10/12, "feet")
  5597. },
  5598. {
  5599. name: "Macro",
  5600. height: math.unit(150, "feet"),
  5601. default: true
  5602. }
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(7 + 9 / 12, "feet"),
  5610. weight: math.unit(379, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/chez/front.svg"
  5614. }
  5615. },
  5616. side: {
  5617. height: math.unit(7 + 9 / 12, "feet"),
  5618. weight: math.unit(379, "lbs"),
  5619. name: "Side",
  5620. image: {
  5621. source: "./media/characters/chez/side.svg"
  5622. }
  5623. }
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(7 + 9 / 12, "feet"),
  5629. default: true
  5630. },
  5631. {
  5632. name: "God King",
  5633. height: math.unit(9750000, "meters")
  5634. }
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5639. {
  5640. front: {
  5641. height: math.unit(6, "feet"),
  5642. weight: math.unit(275, "lbs"),
  5643. name: "Front",
  5644. image: {
  5645. source: "./media/characters/kaylum/front.svg",
  5646. bottom: 0.01,
  5647. extra: 1166 / 1031
  5648. }
  5649. },
  5650. frontWingless: {
  5651. height: math.unit(6, "feet"),
  5652. weight: math.unit(275, "lbs"),
  5653. name: "Front (Wingless)",
  5654. image: {
  5655. source: "./media/characters/kaylum/front-wingless.svg",
  5656. bottom: 0.01,
  5657. extra: 1117 / 1031
  5658. }
  5659. }
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(3.05, "meters")
  5665. },
  5666. {
  5667. name: "Master",
  5668. height: math.unit(5.5, "meters")
  5669. },
  5670. {
  5671. name: "Rampage",
  5672. height: math.unit(19, "meters")
  5673. },
  5674. {
  5675. name: "Macro Lite",
  5676. height: math.unit(37, "meters")
  5677. },
  5678. {
  5679. name: "Hyper Predator",
  5680. height: math.unit(61, "meters")
  5681. },
  5682. {
  5683. name: "Macro",
  5684. height: math.unit(138, "meters"),
  5685. default: true
  5686. }
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5691. {
  5692. front: {
  5693. height: math.unit(5 + 5 / 12, "feet"),
  5694. weight: math.unit(120, "lbs"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/geta/front.svg",
  5698. extra: 1003/933,
  5699. bottom: 21/1024
  5700. }
  5701. },
  5702. paw: {
  5703. height: math.unit(0.35, "feet"),
  5704. name: "Paw",
  5705. image: {
  5706. source: "./media/characters/geta/paw.svg"
  5707. }
  5708. },
  5709. },
  5710. [
  5711. {
  5712. name: "Micro",
  5713. height: math.unit(3, "inches"),
  5714. default: true
  5715. },
  5716. {
  5717. name: "Normal",
  5718. height: math.unit(5 + 5 / 12, "feet")
  5719. }
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5724. {
  5725. front: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(300, "lbs"),
  5728. name: "Front",
  5729. image: {
  5730. source: "./media/characters/tyrnn/front.svg"
  5731. }
  5732. }
  5733. },
  5734. [
  5735. {
  5736. name: "Main Height",
  5737. height: math.unit(355, "feet"),
  5738. default: true
  5739. },
  5740. {
  5741. name: "Fave. Height",
  5742. height: math.unit(2400, "feet")
  5743. }
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5748. {
  5749. front: {
  5750. height: math.unit(6, "feet"),
  5751. weight: math.unit(300, "lbs"),
  5752. name: "Front",
  5753. image: {
  5754. source: "./media/characters/appledectomy/front.svg"
  5755. }
  5756. }
  5757. },
  5758. [
  5759. {
  5760. name: "Macro",
  5761. height: math.unit(2500, "feet")
  5762. },
  5763. {
  5764. name: "Megamacro",
  5765. height: math.unit(50, "miles"),
  5766. default: true
  5767. },
  5768. {
  5769. name: "Gigamacro",
  5770. height: math.unit(5000, "miles")
  5771. },
  5772. {
  5773. name: "Teramacro",
  5774. height: math.unit(250000, "miles")
  5775. },
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(200, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/vulpes/front.svg",
  5787. extra: 573 / 543,
  5788. bottom: 0.033
  5789. }
  5790. },
  5791. side: {
  5792. height: math.unit(6, "feet"),
  5793. weight: math.unit(200, "lbs"),
  5794. name: "Side",
  5795. image: {
  5796. source: "./media/characters/vulpes/side.svg",
  5797. extra: 577 / 549,
  5798. bottom: 11 / 588
  5799. }
  5800. },
  5801. back: {
  5802. height: math.unit(6, "feet"),
  5803. weight: math.unit(200, "lbs"),
  5804. name: "Back",
  5805. image: {
  5806. source: "./media/characters/vulpes/back.svg",
  5807. extra: 573 / 549,
  5808. bottom: 20 / 593
  5809. }
  5810. },
  5811. feet: {
  5812. height: math.unit(1.276, "feet"),
  5813. name: "Feet",
  5814. image: {
  5815. source: "./media/characters/vulpes/feet.svg"
  5816. }
  5817. },
  5818. maw: {
  5819. height: math.unit(1.18, "feet"),
  5820. name: "Maw",
  5821. image: {
  5822. source: "./media/characters/vulpes/maw.svg"
  5823. }
  5824. },
  5825. },
  5826. [
  5827. {
  5828. name: "Micro",
  5829. height: math.unit(2, "inches")
  5830. },
  5831. {
  5832. name: "Normal",
  5833. height: math.unit(6.3, "feet")
  5834. },
  5835. {
  5836. name: "Macro",
  5837. height: math.unit(850, "feet")
  5838. },
  5839. {
  5840. name: "Megamacro",
  5841. height: math.unit(7500, "feet"),
  5842. default: true
  5843. },
  5844. {
  5845. name: "Gigamacro",
  5846. height: math.unit(570000, "miles")
  5847. }
  5848. ]
  5849. ))
  5850. characterMakers.push(() => makeCharacter(
  5851. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5852. {
  5853. front: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(210, "lbs"),
  5856. name: "Front",
  5857. image: {
  5858. source: "./media/characters/rain-fallen/front.svg"
  5859. }
  5860. },
  5861. side: {
  5862. height: math.unit(6, "feet"),
  5863. weight: math.unit(210, "lbs"),
  5864. name: "Side",
  5865. image: {
  5866. source: "./media/characters/rain-fallen/side.svg"
  5867. }
  5868. },
  5869. back: {
  5870. height: math.unit(6, "feet"),
  5871. weight: math.unit(210, "lbs"),
  5872. name: "Back",
  5873. image: {
  5874. source: "./media/characters/rain-fallen/back.svg"
  5875. }
  5876. },
  5877. feral: {
  5878. height: math.unit(9, "feet"),
  5879. weight: math.unit(700, "lbs"),
  5880. name: "Feral",
  5881. image: {
  5882. source: "./media/characters/rain-fallen/feral.svg"
  5883. }
  5884. },
  5885. },
  5886. [
  5887. {
  5888. name: "Meddling with Mortals",
  5889. height: math.unit(8 + 8/12, "feet")
  5890. },
  5891. {
  5892. name: "Normal",
  5893. height: math.unit(5, "meter")
  5894. },
  5895. {
  5896. name: "Macro",
  5897. height: math.unit(150, "meter"),
  5898. default: true
  5899. },
  5900. {
  5901. name: "Megamacro",
  5902. height: math.unit(278e6, "meter")
  5903. },
  5904. {
  5905. name: "Gigamacro",
  5906. height: math.unit(2e9, "meter")
  5907. },
  5908. {
  5909. name: "Teramacro",
  5910. height: math.unit(8e12, "meter")
  5911. },
  5912. {
  5913. name: "Devourer",
  5914. height: math.unit(14, "zettameters")
  5915. },
  5916. {
  5917. name: "Scarlet King",
  5918. height: math.unit(18, "yottameters")
  5919. },
  5920. {
  5921. name: "Void",
  5922. height: math.unit(1e88, "yottameters")
  5923. }
  5924. ]
  5925. ))
  5926. characterMakers.push(() => makeCharacter(
  5927. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5928. {
  5929. standing: {
  5930. height: math.unit(6, "feet"),
  5931. weight: math.unit(180, "lbs"),
  5932. name: "Standing",
  5933. image: {
  5934. source: "./media/characters/zaakira/standing.svg",
  5935. extra: 1599/1504,
  5936. bottom: 39/1638
  5937. }
  5938. },
  5939. laying: {
  5940. height: math.unit(3.3, "feet"),
  5941. weight: math.unit(180, "lbs"),
  5942. name: "Laying",
  5943. image: {
  5944. source: "./media/characters/zaakira/laying.svg"
  5945. }
  5946. },
  5947. },
  5948. [
  5949. {
  5950. name: "Normal",
  5951. height: math.unit(12, "feet")
  5952. },
  5953. {
  5954. name: "Macro",
  5955. height: math.unit(279, "feet"),
  5956. default: true
  5957. }
  5958. ]
  5959. ))
  5960. characterMakers.push(() => makeCharacter(
  5961. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5962. {
  5963. femSfw: {
  5964. height: math.unit(8, "feet"),
  5965. weight: math.unit(350, "lb"),
  5966. name: "Fem",
  5967. image: {
  5968. source: "./media/characters/sigvald/fem-sfw.svg",
  5969. extra: 182 / 164,
  5970. bottom: 8.7 / 190.5
  5971. }
  5972. },
  5973. femNsfw: {
  5974. height: math.unit(8, "feet"),
  5975. weight: math.unit(350, "lb"),
  5976. name: "Fem (NSFW)",
  5977. image: {
  5978. source: "./media/characters/sigvald/fem-nsfw.svg",
  5979. extra: 182 / 164,
  5980. bottom: 8.7 / 190.5
  5981. }
  5982. },
  5983. maleNsfw: {
  5984. height: math.unit(8, "feet"),
  5985. weight: math.unit(350, "lb"),
  5986. name: "Male (NSFW)",
  5987. image: {
  5988. source: "./media/characters/sigvald/male-nsfw.svg",
  5989. extra: 182 / 164,
  5990. bottom: 8.7 / 190.5
  5991. }
  5992. },
  5993. hermNsfw: {
  5994. height: math.unit(8, "feet"),
  5995. weight: math.unit(350, "lb"),
  5996. name: "Herm (NSFW)",
  5997. image: {
  5998. source: "./media/characters/sigvald/herm-nsfw.svg",
  5999. extra: 182 / 164,
  6000. bottom: 8.7 / 190.5
  6001. }
  6002. },
  6003. dick: {
  6004. height: math.unit(2.36, "feet"),
  6005. name: "Dick",
  6006. image: {
  6007. source: "./media/characters/sigvald/dick.svg"
  6008. }
  6009. },
  6010. eye: {
  6011. height: math.unit(0.31, "feet"),
  6012. name: "Eye",
  6013. image: {
  6014. source: "./media/characters/sigvald/eye.svg"
  6015. }
  6016. },
  6017. mouth: {
  6018. height: math.unit(0.92, "feet"),
  6019. name: "Mouth",
  6020. image: {
  6021. source: "./media/characters/sigvald/mouth.svg"
  6022. }
  6023. },
  6024. paws: {
  6025. height: math.unit(2.2, "feet"),
  6026. name: "Paws",
  6027. image: {
  6028. source: "./media/characters/sigvald/paws.svg"
  6029. }
  6030. }
  6031. },
  6032. [
  6033. {
  6034. name: "Normal",
  6035. height: math.unit(8, "feet")
  6036. },
  6037. {
  6038. name: "Large",
  6039. height: math.unit(12, "feet")
  6040. },
  6041. {
  6042. name: "Larger",
  6043. height: math.unit(20, "feet")
  6044. },
  6045. {
  6046. name: "Macro",
  6047. height: math.unit(150, "feet")
  6048. },
  6049. {
  6050. name: "Macro+",
  6051. height: math.unit(200, "feet"),
  6052. default: true
  6053. },
  6054. ]
  6055. ))
  6056. characterMakers.push(() => makeCharacter(
  6057. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6058. {
  6059. side: {
  6060. height: math.unit(12, "feet"),
  6061. weight: math.unit(2000, "kg"),
  6062. name: "Side",
  6063. image: {
  6064. source: "./media/characters/scott/side.svg",
  6065. extra: 754 / 724,
  6066. bottom: 0.069
  6067. }
  6068. },
  6069. upright: {
  6070. height: math.unit(12, "feet"),
  6071. weight: math.unit(2000, "kg"),
  6072. name: "Upright",
  6073. image: {
  6074. source: "./media/characters/scott/upright.svg",
  6075. extra: 3881 / 3722,
  6076. bottom: 0.05
  6077. }
  6078. },
  6079. },
  6080. [
  6081. {
  6082. name: "Normal",
  6083. height: math.unit(12, "feet"),
  6084. default: true
  6085. },
  6086. ]
  6087. ))
  6088. characterMakers.push(() => makeCharacter(
  6089. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6090. {
  6091. side: {
  6092. height: math.unit(8, "meters"),
  6093. weight: math.unit(84755, "lbs"),
  6094. name: "Side",
  6095. image: {
  6096. source: "./media/characters/tobias/side.svg",
  6097. extra: 1474 / 1096,
  6098. bottom: 38.9 / 1513.1235
  6099. }
  6100. },
  6101. maw: {
  6102. height: math.unit(2.3, "meters"),
  6103. name: "Maw",
  6104. image: {
  6105. source: "./media/characters/tobias/maw.svg"
  6106. }
  6107. },
  6108. burp: {
  6109. height: math.unit(2.85, "meters"),
  6110. name: "Burp",
  6111. image: {
  6112. source: "./media/characters/tobias/burp.svg"
  6113. }
  6114. },
  6115. },
  6116. [
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(8, "meters"),
  6120. default: true
  6121. },
  6122. ]
  6123. ))
  6124. characterMakers.push(() => makeCharacter(
  6125. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6126. {
  6127. front: {
  6128. height: math.unit(5.5, "feet"),
  6129. weight: math.unit(400, "lbs"),
  6130. name: "Front",
  6131. image: {
  6132. source: "./media/characters/kieran/front.svg",
  6133. extra: 2694 / 2364,
  6134. bottom: 217 / 2908
  6135. }
  6136. },
  6137. side: {
  6138. height: math.unit(5.5, "feet"),
  6139. weight: math.unit(400, "lbs"),
  6140. name: "Side",
  6141. image: {
  6142. source: "./media/characters/kieran/side.svg",
  6143. extra: 875 / 777,
  6144. bottom: 84.6 / 959
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(5.5, "feet"),
  6152. default: true
  6153. },
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6158. {
  6159. side: {
  6160. height: math.unit(2, "meters"),
  6161. weight: math.unit(70, "kg"),
  6162. name: "Side",
  6163. image: {
  6164. source: "./media/characters/sanya/side.svg",
  6165. bottom: 0.02,
  6166. extra: 1.02
  6167. }
  6168. },
  6169. },
  6170. [
  6171. {
  6172. name: "Small",
  6173. height: math.unit(2, "meters")
  6174. },
  6175. {
  6176. name: "Normal",
  6177. height: math.unit(3, "meters")
  6178. },
  6179. {
  6180. name: "Macro",
  6181. height: math.unit(16, "meters"),
  6182. default: true
  6183. },
  6184. ]
  6185. ))
  6186. characterMakers.push(() => makeCharacter(
  6187. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6188. {
  6189. front: {
  6190. height: math.unit(2, "meters"),
  6191. weight: math.unit(120, "kg"),
  6192. name: "Front",
  6193. image: {
  6194. source: "./media/characters/miranda/front.svg",
  6195. extra: 195 / 185,
  6196. bottom: 10.9 / 206.5
  6197. }
  6198. },
  6199. back: {
  6200. height: math.unit(2, "meters"),
  6201. weight: math.unit(120, "kg"),
  6202. name: "Back",
  6203. image: {
  6204. source: "./media/characters/miranda/back.svg",
  6205. extra: 201 / 193,
  6206. bottom: 2.3 / 203.7
  6207. }
  6208. },
  6209. },
  6210. [
  6211. {
  6212. name: "Normal",
  6213. height: math.unit(10, "feet"),
  6214. default: true
  6215. }
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "James", species: ["deer"], tags: ["anthro"] },
  6220. {
  6221. side: {
  6222. height: math.unit(2, "meters"),
  6223. weight: math.unit(100, "kg"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/james/front.svg",
  6227. extra: 10 / 8.5
  6228. }
  6229. },
  6230. },
  6231. [
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(8.5, "feet"),
  6235. default: true
  6236. }
  6237. ]
  6238. ))
  6239. characterMakers.push(() => makeCharacter(
  6240. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6241. {
  6242. side: {
  6243. height: math.unit(9.5, "feet"),
  6244. weight: math.unit(2500, "lbs"),
  6245. name: "Side",
  6246. image: {
  6247. source: "./media/characters/heather/side.svg"
  6248. }
  6249. },
  6250. },
  6251. [
  6252. {
  6253. name: "Normal",
  6254. height: math.unit(9.5, "feet"),
  6255. default: true
  6256. }
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6261. {
  6262. side: {
  6263. height: math.unit(6.5, "feet"),
  6264. weight: math.unit(400, "lbs"),
  6265. name: "Side",
  6266. image: {
  6267. source: "./media/characters/lukas/side.svg",
  6268. extra: 7.25 / 6.5
  6269. }
  6270. },
  6271. },
  6272. [
  6273. {
  6274. name: "Normal",
  6275. height: math.unit(6.5, "feet"),
  6276. default: true
  6277. }
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6282. {
  6283. side: {
  6284. height: math.unit(5, "feet"),
  6285. weight: math.unit(3000, "lbs"),
  6286. name: "Side",
  6287. image: {
  6288. source: "./media/characters/louise/side.svg"
  6289. }
  6290. },
  6291. },
  6292. [
  6293. {
  6294. name: "Normal",
  6295. height: math.unit(5, "feet"),
  6296. default: true
  6297. }
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6302. {
  6303. side: {
  6304. height: math.unit(6, "feet"),
  6305. weight: math.unit(150, "lbs"),
  6306. name: "Side",
  6307. image: {
  6308. source: "./media/characters/ramona/side.svg",
  6309. extra: 871/854,
  6310. bottom: 41/912
  6311. }
  6312. },
  6313. },
  6314. [
  6315. {
  6316. name: "Normal",
  6317. height: math.unit(6 + 4/12, "feet")
  6318. },
  6319. {
  6320. name: "Minimacro",
  6321. height: math.unit(5.3, "meters"),
  6322. default: true
  6323. },
  6324. {
  6325. name: "Macro",
  6326. height: math.unit(20, "stories")
  6327. },
  6328. {
  6329. name: "Macro+",
  6330. height: math.unit(50, "stories")
  6331. },
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6336. {
  6337. standing: {
  6338. height: math.unit(5.75, "feet"),
  6339. weight: math.unit(160, "lbs"),
  6340. name: "Standing",
  6341. image: {
  6342. source: "./media/characters/deerpuff/standing.svg",
  6343. extra: 682 / 624
  6344. }
  6345. },
  6346. sitting: {
  6347. height: math.unit(5.75 / 1.79, "feet"),
  6348. weight: math.unit(160, "lbs"),
  6349. name: "Sitting",
  6350. image: {
  6351. source: "./media/characters/deerpuff/sitting.svg",
  6352. bottom: 44 / 400,
  6353. extra: 1
  6354. }
  6355. },
  6356. taurLaying: {
  6357. height: math.unit(6, "feet"),
  6358. weight: math.unit(400, "lbs"),
  6359. name: "Taur (Laying)",
  6360. image: {
  6361. source: "./media/characters/deerpuff/taur-laying.svg"
  6362. }
  6363. },
  6364. },
  6365. [
  6366. {
  6367. name: "Puffball",
  6368. height: math.unit(6, "inches")
  6369. },
  6370. {
  6371. name: "Normalpuff",
  6372. height: math.unit(5.75, "feet")
  6373. },
  6374. {
  6375. name: "Macropuff",
  6376. height: math.unit(1500, "feet"),
  6377. default: true
  6378. },
  6379. {
  6380. name: "Megapuff",
  6381. height: math.unit(500, "miles")
  6382. },
  6383. {
  6384. name: "Gigapuff",
  6385. height: math.unit(250000, "miles")
  6386. },
  6387. {
  6388. name: "Omegapuff",
  6389. height: math.unit(1000, "lightyears")
  6390. },
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6395. {
  6396. stomping: {
  6397. height: math.unit(6, "feet"),
  6398. weight: math.unit(170, "lbs"),
  6399. name: "Stomping",
  6400. image: {
  6401. source: "./media/characters/vivian/stomping.svg"
  6402. }
  6403. },
  6404. sitting: {
  6405. height: math.unit(6 / 1.75, "feet"),
  6406. weight: math.unit(170, "lbs"),
  6407. name: "Sitting",
  6408. image: {
  6409. source: "./media/characters/vivian/sitting.svg",
  6410. bottom: 1 / 6.4,
  6411. extra: 1,
  6412. }
  6413. },
  6414. },
  6415. [
  6416. {
  6417. name: "Normal",
  6418. height: math.unit(7, "feet"),
  6419. default: true
  6420. },
  6421. {
  6422. name: "Macro",
  6423. height: math.unit(10, "stories")
  6424. },
  6425. {
  6426. name: "Macro+",
  6427. height: math.unit(30, "stories")
  6428. },
  6429. {
  6430. name: "Megamacro",
  6431. height: math.unit(10, "miles")
  6432. },
  6433. {
  6434. name: "Megamacro+",
  6435. height: math.unit(2750000, "meters")
  6436. },
  6437. ]
  6438. ))
  6439. characterMakers.push(() => makeCharacter(
  6440. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6441. {
  6442. front: {
  6443. height: math.unit(6, "feet"),
  6444. weight: math.unit(160, "lbs"),
  6445. name: "Front",
  6446. image: {
  6447. source: "./media/characters/prince/front.svg",
  6448. extra: 1938/1682,
  6449. bottom: 45/1983
  6450. }
  6451. },
  6452. back: {
  6453. height: math.unit(6, "feet"),
  6454. weight: math.unit(160, "lbs"),
  6455. name: "Back",
  6456. image: {
  6457. source: "./media/characters/prince/back.svg",
  6458. extra: 1955/1726,
  6459. bottom: 6/1961
  6460. }
  6461. },
  6462. },
  6463. [
  6464. {
  6465. name: "Normal",
  6466. height: math.unit(7.75, "feet"),
  6467. default: true
  6468. },
  6469. {
  6470. name: "Not cute",
  6471. height: math.unit(17, "feet")
  6472. },
  6473. {
  6474. name: "I said NOT",
  6475. height: math.unit(91, "feet")
  6476. },
  6477. {
  6478. name: "Please stop",
  6479. height: math.unit(560, "feet")
  6480. },
  6481. {
  6482. name: "What have you done",
  6483. height: math.unit(2200, "feet")
  6484. },
  6485. {
  6486. name: "Deer God",
  6487. height: math.unit(3.6, "miles")
  6488. },
  6489. ]
  6490. ))
  6491. characterMakers.push(() => makeCharacter(
  6492. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6493. {
  6494. standing: {
  6495. height: math.unit(6, "feet"),
  6496. weight: math.unit(300, "lbs"),
  6497. name: "Standing",
  6498. image: {
  6499. source: "./media/characters/psymon/standing.svg",
  6500. extra: 1888 / 1810,
  6501. bottom: 0.05
  6502. }
  6503. },
  6504. slithering: {
  6505. height: math.unit(6, "feet"),
  6506. weight: math.unit(300, "lbs"),
  6507. name: "Slithering",
  6508. image: {
  6509. source: "./media/characters/psymon/slithering.svg",
  6510. extra: 1330 / 1224
  6511. }
  6512. },
  6513. slitheringAlt: {
  6514. height: math.unit(6, "feet"),
  6515. weight: math.unit(300, "lbs"),
  6516. name: "Slithering (Alt)",
  6517. image: {
  6518. source: "./media/characters/psymon/slithering-alt.svg",
  6519. extra: 1330 / 1224
  6520. }
  6521. },
  6522. },
  6523. [
  6524. {
  6525. name: "Normal",
  6526. height: math.unit(11.25, "feet"),
  6527. default: true
  6528. },
  6529. {
  6530. name: "Large",
  6531. height: math.unit(27, "feet")
  6532. },
  6533. {
  6534. name: "Giant",
  6535. height: math.unit(87, "feet")
  6536. },
  6537. {
  6538. name: "Macro",
  6539. height: math.unit(365, "feet")
  6540. },
  6541. {
  6542. name: "Megamacro",
  6543. height: math.unit(3, "miles")
  6544. },
  6545. {
  6546. name: "World Serpent",
  6547. height: math.unit(8000, "miles")
  6548. },
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(6, "feet"),
  6556. weight: math.unit(180, "lbs"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/daimos/front.svg",
  6560. extra: 4160 / 3897,
  6561. bottom: 0.021
  6562. }
  6563. }
  6564. },
  6565. [
  6566. {
  6567. name: "Normal",
  6568. height: math.unit(8, "feet"),
  6569. default: true
  6570. },
  6571. {
  6572. name: "Big Dog",
  6573. height: math.unit(22, "feet")
  6574. },
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(127, "feet")
  6578. },
  6579. {
  6580. name: "Megamacro",
  6581. height: math.unit(3600, "feet")
  6582. },
  6583. ]
  6584. ))
  6585. characterMakers.push(() => makeCharacter(
  6586. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6587. {
  6588. side: {
  6589. height: math.unit(6, "feet"),
  6590. weight: math.unit(180, "lbs"),
  6591. name: "Side",
  6592. image: {
  6593. source: "./media/characters/blake/side.svg",
  6594. extra: 1212 / 1120,
  6595. bottom: 0.05
  6596. }
  6597. },
  6598. crouched: {
  6599. height: math.unit(6 * 0.57, "feet"),
  6600. weight: math.unit(180, "lbs"),
  6601. name: "Crouched",
  6602. image: {
  6603. source: "./media/characters/blake/crouched.svg",
  6604. extra: 840 / 587,
  6605. bottom: 0.04
  6606. }
  6607. },
  6608. bent: {
  6609. height: math.unit(6 * 0.75, "feet"),
  6610. weight: math.unit(180, "lbs"),
  6611. name: "Bent",
  6612. image: {
  6613. source: "./media/characters/blake/bent.svg",
  6614. extra: 592 / 544,
  6615. bottom: 0.035
  6616. }
  6617. },
  6618. },
  6619. [
  6620. {
  6621. name: "Normal",
  6622. height: math.unit(8 + 1 / 6, "feet"),
  6623. default: true
  6624. },
  6625. {
  6626. name: "Big Backside",
  6627. height: math.unit(37, "feet")
  6628. },
  6629. {
  6630. name: "Subway Shredder",
  6631. height: math.unit(72, "feet")
  6632. },
  6633. {
  6634. name: "City Carver",
  6635. height: math.unit(1675, "feet")
  6636. },
  6637. {
  6638. name: "Tectonic Tweaker",
  6639. height: math.unit(2300, "miles")
  6640. },
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(6, "feet"),
  6648. weight: math.unit(180, "lbs"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/guisetto/front.svg",
  6652. extra: 856 / 817,
  6653. bottom: 0.06
  6654. }
  6655. },
  6656. airborne: {
  6657. height: math.unit(6, "feet"),
  6658. weight: math.unit(180, "lbs"),
  6659. name: "Airborne",
  6660. image: {
  6661. source: "./media/characters/guisetto/airborne.svg",
  6662. extra: 584 / 525
  6663. }
  6664. },
  6665. },
  6666. [
  6667. {
  6668. name: "Normal",
  6669. height: math.unit(10 + 11 / 12, "feet"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Large",
  6674. height: math.unit(35, "feet")
  6675. },
  6676. {
  6677. name: "Macro",
  6678. height: math.unit(475, "feet")
  6679. },
  6680. ]
  6681. ))
  6682. characterMakers.push(() => makeCharacter(
  6683. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6684. {
  6685. front: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(180, "lbs"),
  6688. name: "Front",
  6689. image: {
  6690. source: "./media/characters/luxor/front.svg",
  6691. extra: 2940 / 2152
  6692. }
  6693. },
  6694. back: {
  6695. height: math.unit(6, "feet"),
  6696. weight: math.unit(180, "lbs"),
  6697. name: "Back",
  6698. image: {
  6699. source: "./media/characters/luxor/back.svg",
  6700. extra: 1083 / 960
  6701. }
  6702. },
  6703. },
  6704. [
  6705. {
  6706. name: "Normal",
  6707. height: math.unit(5 + 5 / 6, "feet"),
  6708. default: true
  6709. },
  6710. {
  6711. name: "Lamp",
  6712. height: math.unit(50, "feet")
  6713. },
  6714. {
  6715. name: "Lämp",
  6716. height: math.unit(300, "feet")
  6717. },
  6718. {
  6719. name: "The sun is a lamp",
  6720. height: math.unit(250000, "miles")
  6721. },
  6722. ]
  6723. ))
  6724. characterMakers.push(() => makeCharacter(
  6725. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6726. {
  6727. front: {
  6728. height: math.unit(6, "feet"),
  6729. weight: math.unit(50, "lbs"),
  6730. name: "Front",
  6731. image: {
  6732. source: "./media/characters/huoyan/front.svg"
  6733. }
  6734. },
  6735. side: {
  6736. height: math.unit(6, "feet"),
  6737. weight: math.unit(180, "lbs"),
  6738. name: "Side",
  6739. image: {
  6740. source: "./media/characters/huoyan/side.svg"
  6741. }
  6742. },
  6743. },
  6744. [
  6745. {
  6746. name: "Chef",
  6747. height: math.unit(9, "feet")
  6748. },
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(65, "feet"),
  6752. default: true
  6753. },
  6754. {
  6755. name: "Macro",
  6756. height: math.unit(780, "feet")
  6757. },
  6758. {
  6759. name: "Flaming Mountain",
  6760. height: math.unit(4.8, "miles")
  6761. },
  6762. {
  6763. name: "Celestial",
  6764. height: math.unit(765000, "miles")
  6765. },
  6766. ]
  6767. ))
  6768. characterMakers.push(() => makeCharacter(
  6769. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6770. {
  6771. front: {
  6772. height: math.unit(5 + 3 / 4, "feet"),
  6773. weight: math.unit(120, "lbs"),
  6774. name: "Front",
  6775. image: {
  6776. source: "./media/characters/tails/front.svg"
  6777. }
  6778. }
  6779. },
  6780. [
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(5 + 3 / 4, "feet"),
  6784. default: true
  6785. }
  6786. ]
  6787. ))
  6788. characterMakers.push(() => makeCharacter(
  6789. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6790. {
  6791. front: {
  6792. height: math.unit(4, "feet"),
  6793. weight: math.unit(50, "lbs"),
  6794. name: "Front",
  6795. image: {
  6796. source: "./media/characters/rainy/front.svg"
  6797. }
  6798. }
  6799. },
  6800. [
  6801. {
  6802. name: "Macro",
  6803. height: math.unit(800, "feet"),
  6804. default: true
  6805. }
  6806. ]
  6807. ))
  6808. characterMakers.push(() => makeCharacter(
  6809. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6810. {
  6811. front: {
  6812. height: math.unit(6, "feet"),
  6813. weight: math.unit(150, "lbs"),
  6814. name: "Front",
  6815. image: {
  6816. source: "./media/characters/rainier/front.svg"
  6817. }
  6818. }
  6819. },
  6820. [
  6821. {
  6822. name: "Micro",
  6823. height: math.unit(2, "mm"),
  6824. default: true
  6825. }
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(8 + 4/12, "feet"),
  6833. weight: math.unit(450, "kilograms"),
  6834. volume: math.unit(5, "cups"),
  6835. name: "Front",
  6836. image: {
  6837. source: "./media/characters/andy-renard/front.svg",
  6838. extra: 1839/1726,
  6839. bottom: 134/1973
  6840. }
  6841. },
  6842. back: {
  6843. height: math.unit(8 + 4/12, "feet"),
  6844. weight: math.unit(450, "kilograms"),
  6845. volume: math.unit(5, "cups"),
  6846. name: "Back",
  6847. image: {
  6848. source: "./media/characters/andy-renard/back.svg",
  6849. extra: 1838/1710,
  6850. bottom: 105/1943
  6851. }
  6852. },
  6853. },
  6854. [
  6855. {
  6856. name: "Tall",
  6857. height: math.unit(8 + 4/12, "feet")
  6858. },
  6859. {
  6860. name: "Mini Macro",
  6861. height: math.unit(15, "feet"),
  6862. default: true
  6863. },
  6864. {
  6865. name: "Macro",
  6866. height: math.unit(100, "feet")
  6867. },
  6868. {
  6869. name: "Mega Macro",
  6870. height: math.unit(1000, "feet")
  6871. },
  6872. {
  6873. name: "Giga Macro",
  6874. height: math.unit(10, "miles")
  6875. },
  6876. {
  6877. name: "God Macro",
  6878. height: math.unit(1, "multiverse")
  6879. },
  6880. ]
  6881. ))
  6882. characterMakers.push(() => makeCharacter(
  6883. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6884. {
  6885. front: {
  6886. height: math.unit(6, "feet"),
  6887. weight: math.unit(210, "lbs"),
  6888. name: "Front",
  6889. image: {
  6890. source: "./media/characters/cimmaron/front-sfw.svg",
  6891. extra: 701 / 676,
  6892. bottom: 0.046
  6893. }
  6894. },
  6895. back: {
  6896. height: math.unit(6, "feet"),
  6897. weight: math.unit(210, "lbs"),
  6898. name: "Back",
  6899. image: {
  6900. source: "./media/characters/cimmaron/back-sfw.svg",
  6901. extra: 701 / 676,
  6902. bottom: 0.046
  6903. }
  6904. },
  6905. frontNsfw: {
  6906. height: math.unit(6, "feet"),
  6907. weight: math.unit(210, "lbs"),
  6908. name: "Front (NSFW)",
  6909. image: {
  6910. source: "./media/characters/cimmaron/front-nsfw.svg",
  6911. extra: 701 / 676,
  6912. bottom: 0.046
  6913. }
  6914. },
  6915. backNsfw: {
  6916. height: math.unit(6, "feet"),
  6917. weight: math.unit(210, "lbs"),
  6918. name: "Back (NSFW)",
  6919. image: {
  6920. source: "./media/characters/cimmaron/back-nsfw.svg",
  6921. extra: 701 / 676,
  6922. bottom: 0.046
  6923. }
  6924. },
  6925. dick: {
  6926. height: math.unit(1.714, "feet"),
  6927. name: "Dick",
  6928. image: {
  6929. source: "./media/characters/cimmaron/dick.svg"
  6930. }
  6931. },
  6932. },
  6933. [
  6934. {
  6935. name: "Normal",
  6936. height: math.unit(6, "feet"),
  6937. default: true
  6938. },
  6939. {
  6940. name: "Macro Mayor",
  6941. height: math.unit(350, "meters")
  6942. },
  6943. ]
  6944. ))
  6945. characterMakers.push(() => makeCharacter(
  6946. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6947. {
  6948. front: {
  6949. height: math.unit(6, "feet"),
  6950. weight: math.unit(200, "lbs"),
  6951. name: "Front",
  6952. image: {
  6953. source: "./media/characters/akari/front.svg",
  6954. extra: 962 / 901,
  6955. bottom: 0.04
  6956. }
  6957. }
  6958. },
  6959. [
  6960. {
  6961. name: "Micro",
  6962. height: math.unit(5, "inches"),
  6963. default: true
  6964. },
  6965. {
  6966. name: "Normal",
  6967. height: math.unit(7, "feet")
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6973. {
  6974. front: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(140, "lbs"),
  6977. name: "Front",
  6978. image: {
  6979. source: "./media/characters/cynosura/front.svg",
  6980. extra: 437/410,
  6981. bottom: 9/446
  6982. }
  6983. },
  6984. back: {
  6985. height: math.unit(6, "feet"),
  6986. weight: math.unit(140, "lbs"),
  6987. name: "Back",
  6988. image: {
  6989. source: "./media/characters/cynosura/back.svg",
  6990. extra: 1304/1160,
  6991. bottom: 71/1375
  6992. }
  6993. },
  6994. },
  6995. [
  6996. {
  6997. name: "Micro",
  6998. height: math.unit(4, "inches")
  6999. },
  7000. {
  7001. name: "Normal",
  7002. height: math.unit(5.75, "feet"),
  7003. default: true
  7004. },
  7005. {
  7006. name: "Tall",
  7007. height: math.unit(10, "feet")
  7008. },
  7009. {
  7010. name: "Big",
  7011. height: math.unit(20, "feet")
  7012. },
  7013. {
  7014. name: "Macro",
  7015. height: math.unit(50, "feet")
  7016. },
  7017. ]
  7018. ))
  7019. characterMakers.push(() => makeCharacter(
  7020. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7021. {
  7022. front: {
  7023. height: math.unit(13 + 2/12, "feet"),
  7024. weight: math.unit(800, "kg"),
  7025. name: "Front",
  7026. image: {
  7027. source: "./media/characters/gin/front.svg",
  7028. extra: 1312/1191,
  7029. bottom: 45/1357
  7030. }
  7031. },
  7032. mouth: {
  7033. height: math.unit(2.39 * 1.8, "feet"),
  7034. name: "Mouth",
  7035. image: {
  7036. source: "./media/characters/gin/mouth.svg"
  7037. }
  7038. },
  7039. hand: {
  7040. height: math.unit(1.57 * 2.19, "feet"),
  7041. name: "Hand",
  7042. image: {
  7043. source: "./media/characters/gin/hand.svg"
  7044. }
  7045. },
  7046. foot: {
  7047. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7048. name: "Foot",
  7049. image: {
  7050. source: "./media/characters/gin/foot.svg"
  7051. }
  7052. },
  7053. sole: {
  7054. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7055. name: "Sole",
  7056. image: {
  7057. source: "./media/characters/gin/sole.svg"
  7058. }
  7059. },
  7060. },
  7061. [
  7062. {
  7063. name: "Very Small",
  7064. height: math.unit(13 + 2 / 12, "feet")
  7065. },
  7066. {
  7067. name: "Micro",
  7068. height: math.unit(600, "miles")
  7069. },
  7070. {
  7071. name: "Regular",
  7072. height: math.unit(20, "earths"),
  7073. default: true
  7074. },
  7075. {
  7076. name: "Macro",
  7077. height: math.unit(2.2, "solarradii")
  7078. },
  7079. {
  7080. name: "Teramacro",
  7081. height: math.unit(1.2, "galaxies")
  7082. },
  7083. {
  7084. name: "Omegamacro",
  7085. height: math.unit(200, "universes")
  7086. },
  7087. ]
  7088. ))
  7089. characterMakers.push(() => makeCharacter(
  7090. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7091. {
  7092. front: {
  7093. height: math.unit(6 + 1 / 6, "feet"),
  7094. weight: math.unit(178, "lbs"),
  7095. name: "Front",
  7096. image: {
  7097. source: "./media/characters/guy/front.svg"
  7098. }
  7099. }
  7100. },
  7101. [
  7102. {
  7103. name: "Normal",
  7104. height: math.unit(6 + 1 / 6, "feet"),
  7105. default: true
  7106. },
  7107. {
  7108. name: "Large",
  7109. height: math.unit(25 + 7 / 12, "feet")
  7110. },
  7111. {
  7112. name: "Macro",
  7113. height: math.unit(60 + 9 / 12, "feet")
  7114. },
  7115. {
  7116. name: "Macro+",
  7117. height: math.unit(246, "feet")
  7118. },
  7119. {
  7120. name: "Macro++",
  7121. height: math.unit(878, "feet")
  7122. }
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7127. {
  7128. front: {
  7129. height: math.unit(9, "feet"),
  7130. weight: math.unit(800, "lbs"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/tiberius/front.svg",
  7134. extra: 2295 / 2071
  7135. }
  7136. },
  7137. back: {
  7138. height: math.unit(9, "feet"),
  7139. weight: math.unit(800, "lbs"),
  7140. name: "Back",
  7141. image: {
  7142. source: "./media/characters/tiberius/back.svg",
  7143. extra: 2373 / 2160
  7144. }
  7145. },
  7146. },
  7147. [
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(9, "feet"),
  7151. default: true
  7152. }
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7157. {
  7158. front: {
  7159. height: math.unit(6, "feet"),
  7160. weight: math.unit(600, "lbs"),
  7161. name: "Front",
  7162. image: {
  7163. source: "./media/characters/surgo/front.svg",
  7164. extra: 3591 / 2227
  7165. }
  7166. },
  7167. back: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(600, "lbs"),
  7170. name: "Back",
  7171. image: {
  7172. source: "./media/characters/surgo/back.svg",
  7173. extra: 3557 / 2228
  7174. }
  7175. },
  7176. laying: {
  7177. height: math.unit(6 * 0.85, "feet"),
  7178. weight: math.unit(600, "lbs"),
  7179. name: "Laying",
  7180. image: {
  7181. source: "./media/characters/surgo/laying.svg"
  7182. }
  7183. },
  7184. },
  7185. [
  7186. {
  7187. name: "Normal",
  7188. height: math.unit(6, "feet"),
  7189. default: true
  7190. }
  7191. ]
  7192. ))
  7193. characterMakers.push(() => makeCharacter(
  7194. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7195. {
  7196. side: {
  7197. height: math.unit(6, "feet"),
  7198. weight: math.unit(150, "lbs"),
  7199. name: "Side",
  7200. image: {
  7201. source: "./media/characters/cibus/side.svg",
  7202. extra: 800 / 400
  7203. }
  7204. },
  7205. },
  7206. [
  7207. {
  7208. name: "Normal",
  7209. height: math.unit(6, "feet"),
  7210. default: true
  7211. }
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7216. {
  7217. front: {
  7218. height: math.unit(6, "feet"),
  7219. weight: math.unit(240, "lbs"),
  7220. name: "Front",
  7221. image: {
  7222. source: "./media/characters/nibbles/front.svg"
  7223. }
  7224. },
  7225. side: {
  7226. height: math.unit(6, "feet"),
  7227. weight: math.unit(240, "lbs"),
  7228. name: "Side",
  7229. image: {
  7230. source: "./media/characters/nibbles/side.svg"
  7231. }
  7232. },
  7233. },
  7234. [
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(9, "feet"),
  7238. default: true
  7239. }
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7244. {
  7245. side: {
  7246. height: math.unit(5 + 1 / 6, "feet"),
  7247. weight: math.unit(130, "lbs"),
  7248. name: "Side",
  7249. image: {
  7250. source: "./media/characters/rikky/side.svg",
  7251. extra: 851 / 801
  7252. }
  7253. },
  7254. },
  7255. [
  7256. {
  7257. name: "Normal",
  7258. height: math.unit(5 + 1 / 6, "feet")
  7259. },
  7260. {
  7261. name: "Macro",
  7262. height: math.unit(152, "feet"),
  7263. default: true
  7264. },
  7265. {
  7266. name: "Megamacro",
  7267. height: math.unit(7, "miles")
  7268. }
  7269. ]
  7270. ))
  7271. characterMakers.push(() => makeCharacter(
  7272. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7273. {
  7274. side: {
  7275. height: math.unit(370, "cm"),
  7276. weight: math.unit(350, "lbs"),
  7277. name: "Side",
  7278. image: {
  7279. source: "./media/characters/malfressa/side.svg"
  7280. }
  7281. },
  7282. walking: {
  7283. height: math.unit(370, "cm"),
  7284. weight: math.unit(350, "lbs"),
  7285. name: "Walking",
  7286. image: {
  7287. source: "./media/characters/malfressa/walking.svg"
  7288. }
  7289. },
  7290. feral: {
  7291. height: math.unit(2500, "cm"),
  7292. weight: math.unit(100000, "lbs"),
  7293. name: "Feral",
  7294. image: {
  7295. source: "./media/characters/malfressa/feral.svg",
  7296. extra: 2108 / 837,
  7297. bottom: 0.02
  7298. }
  7299. },
  7300. },
  7301. [
  7302. {
  7303. name: "Normal",
  7304. height: math.unit(370, "cm")
  7305. },
  7306. {
  7307. name: "Macro",
  7308. height: math.unit(300, "meters"),
  7309. default: true
  7310. }
  7311. ]
  7312. ))
  7313. characterMakers.push(() => makeCharacter(
  7314. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7315. {
  7316. front: {
  7317. height: math.unit(6, "feet"),
  7318. weight: math.unit(60, "kg"),
  7319. name: "Front",
  7320. image: {
  7321. source: "./media/characters/jaro/front.svg",
  7322. extra: 845/817,
  7323. bottom: 45/890
  7324. }
  7325. },
  7326. back: {
  7327. height: math.unit(6, "feet"),
  7328. weight: math.unit(60, "kg"),
  7329. name: "Back",
  7330. image: {
  7331. source: "./media/characters/jaro/back.svg",
  7332. extra: 847/817,
  7333. bottom: 34/881
  7334. }
  7335. },
  7336. },
  7337. [
  7338. {
  7339. name: "Micro",
  7340. height: math.unit(7, "inches")
  7341. },
  7342. {
  7343. name: "Normal",
  7344. height: math.unit(5.5, "feet"),
  7345. default: true
  7346. },
  7347. {
  7348. name: "Minimacro",
  7349. height: math.unit(20, "feet")
  7350. },
  7351. {
  7352. name: "Macro",
  7353. height: math.unit(200, "meters")
  7354. }
  7355. ]
  7356. ))
  7357. characterMakers.push(() => makeCharacter(
  7358. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7359. {
  7360. front: {
  7361. height: math.unit(6, "feet"),
  7362. weight: math.unit(195, "lb"),
  7363. name: "Front",
  7364. image: {
  7365. source: "./media/characters/rogue/front.svg"
  7366. }
  7367. },
  7368. },
  7369. [
  7370. {
  7371. name: "Macro",
  7372. height: math.unit(90, "feet"),
  7373. default: true
  7374. },
  7375. ]
  7376. ))
  7377. characterMakers.push(() => makeCharacter(
  7378. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7379. {
  7380. standing: {
  7381. height: math.unit(5 + 8 / 12, "feet"),
  7382. weight: math.unit(140, "lb"),
  7383. name: "Standing",
  7384. image: {
  7385. source: "./media/characters/piper/standing.svg",
  7386. extra: 1440/1284,
  7387. bottom: 66/1506
  7388. }
  7389. },
  7390. running: {
  7391. height: math.unit(5 + 8 / 12, "feet"),
  7392. weight: math.unit(140, "lb"),
  7393. name: "Running",
  7394. image: {
  7395. source: "./media/characters/piper/running.svg",
  7396. extra: 3948/3655,
  7397. bottom: 0/3948
  7398. }
  7399. },
  7400. sole: {
  7401. height: math.unit(0.81, "feet"),
  7402. weight: math.unit(2, "kg"),
  7403. name: "Sole",
  7404. image: {
  7405. source: "./media/characters/piper/sole.svg"
  7406. }
  7407. },
  7408. nipple: {
  7409. height: math.unit(0.25, "feet"),
  7410. weight: math.unit(1.5, "lb"),
  7411. name: "Nipple",
  7412. image: {
  7413. source: "./media/characters/piper/nipple.svg"
  7414. }
  7415. },
  7416. head: {
  7417. height: math.unit(1.1, "feet"),
  7418. name: "Head",
  7419. image: {
  7420. source: "./media/characters/piper/head.svg"
  7421. }
  7422. },
  7423. },
  7424. [
  7425. {
  7426. name: "Micro",
  7427. height: math.unit(2, "inches")
  7428. },
  7429. {
  7430. name: "Normal",
  7431. height: math.unit(5 + 8 / 12, "feet")
  7432. },
  7433. {
  7434. name: "Macro",
  7435. height: math.unit(250, "feet"),
  7436. default: true
  7437. },
  7438. {
  7439. name: "Megamacro",
  7440. height: math.unit(7, "miles")
  7441. },
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7446. {
  7447. front: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(220, "lb"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/gemini/front.svg"
  7453. }
  7454. },
  7455. back: {
  7456. height: math.unit(6, "feet"),
  7457. weight: math.unit(220, "lb"),
  7458. name: "Back",
  7459. image: {
  7460. source: "./media/characters/gemini/back.svg"
  7461. }
  7462. },
  7463. kneeling: {
  7464. height: math.unit(6 / 1.5, "feet"),
  7465. weight: math.unit(220, "lb"),
  7466. name: "Kneeling",
  7467. image: {
  7468. source: "./media/characters/gemini/kneeling.svg",
  7469. bottom: 0.02
  7470. }
  7471. },
  7472. },
  7473. [
  7474. {
  7475. name: "Macro",
  7476. height: math.unit(300, "meters"),
  7477. default: true
  7478. },
  7479. {
  7480. name: "Megamacro",
  7481. height: math.unit(6900, "meters")
  7482. },
  7483. ]
  7484. ))
  7485. characterMakers.push(() => makeCharacter(
  7486. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7487. {
  7488. anthro: {
  7489. height: math.unit(2.35, "meters"),
  7490. weight: math.unit(73, "kg"),
  7491. name: "Anthro",
  7492. image: {
  7493. source: "./media/characters/alicia/anthro.svg",
  7494. extra: 2571 / 2385,
  7495. bottom: 75 / 2648
  7496. }
  7497. },
  7498. paw: {
  7499. height: math.unit(1.32, "feet"),
  7500. name: "Paw",
  7501. image: {
  7502. source: "./media/characters/alicia/paw.svg"
  7503. }
  7504. },
  7505. feral: {
  7506. height: math.unit(1.69, "meters"),
  7507. weight: math.unit(73, "kg"),
  7508. name: "Feral",
  7509. image: {
  7510. source: "./media/characters/alicia/feral.svg",
  7511. extra: 2123 / 1715,
  7512. bottom: 222 / 2349
  7513. }
  7514. },
  7515. },
  7516. [
  7517. {
  7518. name: "Normal",
  7519. height: math.unit(2.35, "meters")
  7520. },
  7521. {
  7522. name: "Macro",
  7523. height: math.unit(60, "meters"),
  7524. default: true
  7525. },
  7526. {
  7527. name: "Megamacro",
  7528. height: math.unit(10000, "kilometers")
  7529. },
  7530. ]
  7531. ))
  7532. characterMakers.push(() => makeCharacter(
  7533. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7534. {
  7535. front: {
  7536. height: math.unit(7, "feet"),
  7537. weight: math.unit(250, "lbs"),
  7538. name: "Front",
  7539. image: {
  7540. source: "./media/characters/archy/front.svg"
  7541. }
  7542. }
  7543. },
  7544. [
  7545. {
  7546. name: "Micro",
  7547. height: math.unit(1, "inch")
  7548. },
  7549. {
  7550. name: "Shorty",
  7551. height: math.unit(5, "feet")
  7552. },
  7553. {
  7554. name: "Normal",
  7555. height: math.unit(7, "feet")
  7556. },
  7557. {
  7558. name: "Macro",
  7559. height: math.unit(600, "meters"),
  7560. default: true
  7561. },
  7562. {
  7563. name: "Megamacro",
  7564. height: math.unit(1, "mile")
  7565. },
  7566. ]
  7567. ))
  7568. characterMakers.push(() => makeCharacter(
  7569. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7570. {
  7571. front: {
  7572. height: math.unit(1.65, "meters"),
  7573. weight: math.unit(74, "kg"),
  7574. name: "Front",
  7575. image: {
  7576. source: "./media/characters/berri/front.svg",
  7577. extra: 857 / 837,
  7578. bottom: 18 / 877
  7579. }
  7580. },
  7581. bum: {
  7582. height: math.unit(1.46, "feet"),
  7583. name: "Bum",
  7584. image: {
  7585. source: "./media/characters/berri/bum.svg"
  7586. }
  7587. },
  7588. mouth: {
  7589. height: math.unit(0.44, "feet"),
  7590. name: "Mouth",
  7591. image: {
  7592. source: "./media/characters/berri/mouth.svg"
  7593. }
  7594. },
  7595. paw: {
  7596. height: math.unit(0.826, "feet"),
  7597. name: "Paw",
  7598. image: {
  7599. source: "./media/characters/berri/paw.svg"
  7600. }
  7601. },
  7602. },
  7603. [
  7604. {
  7605. name: "Normal",
  7606. height: math.unit(1.65, "meters")
  7607. },
  7608. {
  7609. name: "Macro",
  7610. height: math.unit(60, "m"),
  7611. default: true
  7612. },
  7613. {
  7614. name: "Megamacro",
  7615. height: math.unit(9.213, "km")
  7616. },
  7617. {
  7618. name: "Planet Eater",
  7619. height: math.unit(489, "megameters")
  7620. },
  7621. {
  7622. name: "Teramacro",
  7623. height: math.unit(2471635000000, "meters")
  7624. },
  7625. {
  7626. name: "Examacro",
  7627. height: math.unit(8.0624e+26, "meters")
  7628. }
  7629. ]
  7630. ))
  7631. characterMakers.push(() => makeCharacter(
  7632. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7633. {
  7634. front: {
  7635. height: math.unit(1.72, "meters"),
  7636. weight: math.unit(68, "kg"),
  7637. name: "Front",
  7638. image: {
  7639. source: "./media/characters/lexi/front.svg"
  7640. }
  7641. }
  7642. },
  7643. [
  7644. {
  7645. name: "Very Smol",
  7646. height: math.unit(10, "mm")
  7647. },
  7648. {
  7649. name: "Micro",
  7650. height: math.unit(6.8, "cm"),
  7651. default: true
  7652. },
  7653. {
  7654. name: "Normal",
  7655. height: math.unit(1.72, "m")
  7656. }
  7657. ]
  7658. ))
  7659. characterMakers.push(() => makeCharacter(
  7660. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7661. {
  7662. front: {
  7663. height: math.unit(1.69, "meters"),
  7664. weight: math.unit(68, "kg"),
  7665. name: "Front",
  7666. image: {
  7667. source: "./media/characters/martin/front.svg",
  7668. extra: 596 / 581
  7669. }
  7670. }
  7671. },
  7672. [
  7673. {
  7674. name: "Micro",
  7675. height: math.unit(6.85, "cm"),
  7676. default: true
  7677. },
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(1.69, "m")
  7681. }
  7682. ]
  7683. ))
  7684. characterMakers.push(() => makeCharacter(
  7685. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7686. {
  7687. front: {
  7688. height: math.unit(1.69, "meters"),
  7689. weight: math.unit(68, "kg"),
  7690. name: "Front",
  7691. image: {
  7692. source: "./media/characters/juno/front.svg"
  7693. }
  7694. }
  7695. },
  7696. [
  7697. {
  7698. name: "Micro",
  7699. height: math.unit(7, "cm")
  7700. },
  7701. {
  7702. name: "Normal",
  7703. height: math.unit(1.89, "m")
  7704. },
  7705. {
  7706. name: "Macro",
  7707. height: math.unit(353, "meters"),
  7708. default: true
  7709. }
  7710. ]
  7711. ))
  7712. characterMakers.push(() => makeCharacter(
  7713. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7714. {
  7715. front: {
  7716. height: math.unit(1.93, "meters"),
  7717. weight: math.unit(83, "kg"),
  7718. name: "Front",
  7719. image: {
  7720. source: "./media/characters/samantha/front.svg"
  7721. }
  7722. },
  7723. frontClothed: {
  7724. height: math.unit(1.93, "meters"),
  7725. weight: math.unit(83, "kg"),
  7726. name: "Front (Clothed)",
  7727. image: {
  7728. source: "./media/characters/samantha/front-clothed.svg"
  7729. }
  7730. },
  7731. back: {
  7732. height: math.unit(1.93, "meters"),
  7733. weight: math.unit(83, "kg"),
  7734. name: "Back",
  7735. image: {
  7736. source: "./media/characters/samantha/back.svg"
  7737. }
  7738. },
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(1.93, "m")
  7744. },
  7745. {
  7746. name: "Macro",
  7747. height: math.unit(74, "meters"),
  7748. default: true
  7749. },
  7750. {
  7751. name: "Macro+",
  7752. height: math.unit(223, "meters"),
  7753. },
  7754. {
  7755. name: "Megamacro",
  7756. height: math.unit(8381, "meters"),
  7757. },
  7758. {
  7759. name: "Megamacro+",
  7760. height: math.unit(12000, "kilometers")
  7761. },
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(1.92, "meters"),
  7769. weight: math.unit(80, "kg"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/dr-clay/front.svg"
  7773. }
  7774. },
  7775. frontClothed: {
  7776. height: math.unit(1.92, "meters"),
  7777. weight: math.unit(80, "kg"),
  7778. name: "Front (Clothed)",
  7779. image: {
  7780. source: "./media/characters/dr-clay/front-clothed.svg"
  7781. }
  7782. }
  7783. },
  7784. [
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(1.92, "m")
  7788. },
  7789. {
  7790. name: "Macro",
  7791. height: math.unit(214, "meters"),
  7792. default: true
  7793. },
  7794. {
  7795. name: "Macro+",
  7796. height: math.unit(12.237, "meters"),
  7797. },
  7798. {
  7799. name: "Megamacro",
  7800. height: math.unit(557, "megameters"),
  7801. },
  7802. {
  7803. name: "Unimaginable",
  7804. height: math.unit(120e9, "lightyears")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(2, "meters"),
  7813. weight: math.unit(80, "kg"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7817. }
  7818. }
  7819. },
  7820. [
  7821. {
  7822. name: "Teramacro",
  7823. height: math.unit(500000, "lightyears"),
  7824. default: true
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7830. {
  7831. crux: {
  7832. height: math.unit(2, "meters"),
  7833. weight: math.unit(150, "kg"),
  7834. name: "Crux",
  7835. image: {
  7836. source: "./media/characters/vemus/crux.svg",
  7837. extra: 1074/936,
  7838. bottom: 23/1097
  7839. }
  7840. },
  7841. skunkTanuki: {
  7842. height: math.unit(2, "meters"),
  7843. weight: math.unit(150, "kg"),
  7844. name: "Skunk-Tanuki",
  7845. image: {
  7846. source: "./media/characters/vemus/skunk-tanuki.svg",
  7847. extra: 926/893,
  7848. bottom: 20/946
  7849. }
  7850. },
  7851. },
  7852. [
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(4, "meters"),
  7856. default: true
  7857. },
  7858. {
  7859. name: "Big",
  7860. height: math.unit(8, "meters")
  7861. },
  7862. {
  7863. name: "Macro",
  7864. height: math.unit(100, "meters")
  7865. },
  7866. {
  7867. name: "Macro+",
  7868. height: math.unit(1500, "meters")
  7869. },
  7870. {
  7871. name: "Stellar",
  7872. height: math.unit(14e8, "meters")
  7873. },
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(2, "meters"),
  7881. weight: math.unit(70, "kg"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/beherit/front.svg",
  7885. extra: 1234/1109,
  7886. bottom: 55/1289
  7887. }
  7888. }
  7889. },
  7890. [
  7891. {
  7892. name: "Normal",
  7893. height: math.unit(6, "feet")
  7894. },
  7895. {
  7896. name: "Lorg",
  7897. height: math.unit(25, "feet"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Lorger",
  7902. height: math.unit(75, "feet")
  7903. },
  7904. {
  7905. name: "Macro",
  7906. height: math.unit(200, "meters")
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7912. {
  7913. front: {
  7914. height: math.unit(2, "meters"),
  7915. weight: math.unit(150, "kg"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/everett/front.svg",
  7919. extra: 1017/866,
  7920. bottom: 86/1103
  7921. }
  7922. },
  7923. paw: {
  7924. height: math.unit(2 / 3.6, "meters"),
  7925. name: "Paw",
  7926. image: {
  7927. source: "./media/characters/everett/paw.svg"
  7928. }
  7929. },
  7930. },
  7931. [
  7932. {
  7933. name: "Normal",
  7934. height: math.unit(15, "feet"),
  7935. default: true
  7936. },
  7937. {
  7938. name: "Lorg",
  7939. height: math.unit(70, "feet"),
  7940. default: true
  7941. },
  7942. {
  7943. name: "Lorger",
  7944. height: math.unit(250, "feet")
  7945. },
  7946. {
  7947. name: "Macro",
  7948. height: math.unit(500, "meters")
  7949. },
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(2, "meters"),
  7957. weight: math.unit(86, "kg"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/rose/front.svg",
  7961. extra: 1785/1636,
  7962. bottom: 30/1815
  7963. },
  7964. form: "liom",
  7965. default: true
  7966. },
  7967. frontSporty: {
  7968. height: math.unit(2, "meters"),
  7969. weight: math.unit(86, "kg"),
  7970. name: "Front (Sporty)",
  7971. image: {
  7972. source: "./media/characters/rose/front-sporty.svg",
  7973. extra: 350/335,
  7974. bottom: 10/360
  7975. },
  7976. form: "liom"
  7977. },
  7978. frontAlt: {
  7979. height: math.unit(1.6, "meters"),
  7980. weight: math.unit(86, "kg"),
  7981. name: "Front (Alt)",
  7982. image: {
  7983. source: "./media/characters/rose/front-alt.svg",
  7984. extra: 299/283,
  7985. bottom: 3/302
  7986. },
  7987. form: "liom"
  7988. },
  7989. plush: {
  7990. height: math.unit(2, "meters"),
  7991. weight: math.unit(86/3, "kg"),
  7992. name: "Plush",
  7993. image: {
  7994. source: "./media/characters/rose/plush.svg",
  7995. extra: 361/337,
  7996. bottom: 11/372
  7997. },
  7998. form: "plush",
  7999. default: true
  8000. },
  8001. faeStanding: {
  8002. height: math.unit(10, "cm"),
  8003. weight: math.unit(10, "grams"),
  8004. name: "Standing",
  8005. image: {
  8006. source: "./media/characters/rose/fae-standing.svg",
  8007. extra: 1189/1060,
  8008. bottom: 27/1216
  8009. },
  8010. form: "fae",
  8011. default: true
  8012. },
  8013. faeSitting: {
  8014. height: math.unit(5, "cm"),
  8015. weight: math.unit(10, "grams"),
  8016. name: "Sitting",
  8017. image: {
  8018. source: "./media/characters/rose/fae-sitting.svg",
  8019. extra: 737/577,
  8020. bottom: 356/1093
  8021. },
  8022. form: "fae"
  8023. },
  8024. faePaw: {
  8025. height: math.unit(1.35, "cm"),
  8026. name: "Paw",
  8027. image: {
  8028. source: "./media/characters/rose/fae-paw.svg"
  8029. },
  8030. form: "fae"
  8031. },
  8032. },
  8033. [
  8034. {
  8035. name: "True Micro",
  8036. height: math.unit(9, "cm"),
  8037. form: "liom"
  8038. },
  8039. {
  8040. name: "Micro",
  8041. height: math.unit(16, "cm"),
  8042. form: "liom"
  8043. },
  8044. {
  8045. name: "Normal",
  8046. height: math.unit(1.85, "meters"),
  8047. default: true,
  8048. form: "liom"
  8049. },
  8050. {
  8051. name: "Mini-Macro",
  8052. height: math.unit(5, "meters"),
  8053. form: "liom"
  8054. },
  8055. {
  8056. name: "Macro",
  8057. height: math.unit(15, "meters"),
  8058. form: "liom"
  8059. },
  8060. {
  8061. name: "True Macro",
  8062. height: math.unit(40, "meters"),
  8063. form: "liom"
  8064. },
  8065. {
  8066. name: "City Scale",
  8067. height: math.unit(1, "km"),
  8068. form: "liom"
  8069. },
  8070. {
  8071. name: "Plushie",
  8072. height: math.unit(9, "cm"),
  8073. form: "plush",
  8074. default: true
  8075. },
  8076. {
  8077. name: "Fae",
  8078. height: math.unit(10, "cm"),
  8079. form: "fae",
  8080. default: true
  8081. },
  8082. ],
  8083. {
  8084. "liom": {
  8085. name: "Liom"
  8086. },
  8087. "plush": {
  8088. name: "Plush"
  8089. },
  8090. "fae": {
  8091. name: "Fae Fox",
  8092. default: true
  8093. }
  8094. }
  8095. ))
  8096. characterMakers.push(() => makeCharacter(
  8097. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8098. {
  8099. front: {
  8100. height: math.unit(2, "meters"),
  8101. weight: math.unit(350, "lbs"),
  8102. name: "Front",
  8103. image: {
  8104. source: "./media/characters/regal/front.svg"
  8105. }
  8106. },
  8107. back: {
  8108. height: math.unit(2, "meters"),
  8109. weight: math.unit(350, "lbs"),
  8110. name: "Back",
  8111. image: {
  8112. source: "./media/characters/regal/back.svg"
  8113. }
  8114. },
  8115. },
  8116. [
  8117. {
  8118. name: "Macro",
  8119. height: math.unit(350, "feet"),
  8120. default: true
  8121. }
  8122. ]
  8123. ))
  8124. characterMakers.push(() => makeCharacter(
  8125. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8126. {
  8127. front: {
  8128. height: math.unit(4 + 11 / 12, "feet"),
  8129. weight: math.unit(100, "lbs"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/opal/front.svg"
  8133. }
  8134. },
  8135. frontAlt: {
  8136. height: math.unit(4 + 11 / 12, "feet"),
  8137. weight: math.unit(100, "lbs"),
  8138. name: "Front (Alt)",
  8139. image: {
  8140. source: "./media/characters/opal/front-alt.svg"
  8141. }
  8142. },
  8143. },
  8144. [
  8145. {
  8146. name: "Small",
  8147. height: math.unit(4 + 11 / 12, "feet")
  8148. },
  8149. {
  8150. name: "Normal",
  8151. height: math.unit(20, "feet"),
  8152. default: true
  8153. },
  8154. {
  8155. name: "Macro",
  8156. height: math.unit(120, "feet")
  8157. },
  8158. {
  8159. name: "Megamacro",
  8160. height: math.unit(80, "miles")
  8161. },
  8162. {
  8163. name: "True Size",
  8164. height: math.unit(100000, "lightyears")
  8165. },
  8166. ]
  8167. ))
  8168. characterMakers.push(() => makeCharacter(
  8169. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8170. {
  8171. front: {
  8172. height: math.unit(6, "feet"),
  8173. weight: math.unit(200, "lbs"),
  8174. name: "Front",
  8175. image: {
  8176. source: "./media/characters/vector-wuff/front.svg"
  8177. }
  8178. }
  8179. },
  8180. [
  8181. {
  8182. name: "Normal",
  8183. height: math.unit(2.8, "meters")
  8184. },
  8185. {
  8186. name: "Macro",
  8187. height: math.unit(450, "meters"),
  8188. default: true
  8189. },
  8190. {
  8191. name: "Megamacro",
  8192. height: math.unit(15, "kilometers")
  8193. }
  8194. ]
  8195. ))
  8196. characterMakers.push(() => makeCharacter(
  8197. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8198. {
  8199. front: {
  8200. height: math.unit(6, "feet"),
  8201. weight: math.unit(256, "lbs"),
  8202. name: "Front",
  8203. image: {
  8204. source: "./media/characters/dannik/front.svg"
  8205. }
  8206. }
  8207. },
  8208. [
  8209. {
  8210. name: "Macro",
  8211. height: math.unit(69.57, "meters"),
  8212. default: true
  8213. },
  8214. ]
  8215. ))
  8216. characterMakers.push(() => makeCharacter(
  8217. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8218. {
  8219. front: {
  8220. height: math.unit(6, "feet"),
  8221. weight: math.unit(120, "lbs"),
  8222. name: "Front",
  8223. image: {
  8224. source: "./media/characters/azura-saharah/front.svg"
  8225. }
  8226. },
  8227. back: {
  8228. height: math.unit(6, "feet"),
  8229. weight: math.unit(120, "lbs"),
  8230. name: "Back",
  8231. image: {
  8232. source: "./media/characters/azura-saharah/back.svg"
  8233. }
  8234. },
  8235. },
  8236. [
  8237. {
  8238. name: "Macro",
  8239. height: math.unit(100, "feet"),
  8240. default: true
  8241. },
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8246. {
  8247. side: {
  8248. height: math.unit(5 + 4 / 12, "feet"),
  8249. weight: math.unit(163, "lbs"),
  8250. name: "Side",
  8251. image: {
  8252. source: "./media/characters/kennedy/side.svg"
  8253. }
  8254. }
  8255. },
  8256. [
  8257. {
  8258. name: "Standard Doggo",
  8259. height: math.unit(5 + 4 / 12, "feet")
  8260. },
  8261. {
  8262. name: "Big Doggo",
  8263. height: math.unit(25 + 3 / 12, "feet"),
  8264. default: true
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8270. {
  8271. front: {
  8272. height: math.unit(5 + 5/12, "feet"),
  8273. weight: math.unit(100, "lbs"),
  8274. name: "Front",
  8275. image: {
  8276. source: "./media/characters/odios-de-lunar/front.svg",
  8277. extra: 1468/1323,
  8278. bottom: 22/1490
  8279. }
  8280. }
  8281. },
  8282. [
  8283. {
  8284. name: "Micro",
  8285. height: math.unit(3, "inches")
  8286. },
  8287. {
  8288. name: "Normal",
  8289. height: math.unit(5.5, "feet"),
  8290. default: true
  8291. },
  8292. {
  8293. name: "Macro",
  8294. height: math.unit(100, "feet")
  8295. },
  8296. ]
  8297. ))
  8298. characterMakers.push(() => makeCharacter(
  8299. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8300. {
  8301. back: {
  8302. height: math.unit(6, "feet"),
  8303. weight: math.unit(220, "lbs"),
  8304. name: "Back",
  8305. image: {
  8306. source: "./media/characters/mandake/back.svg"
  8307. }
  8308. }
  8309. },
  8310. [
  8311. {
  8312. name: "Normal",
  8313. height: math.unit(7, "feet"),
  8314. default: true
  8315. },
  8316. {
  8317. name: "Macro",
  8318. height: math.unit(78, "feet")
  8319. },
  8320. {
  8321. name: "Macro+",
  8322. height: math.unit(300, "meters")
  8323. },
  8324. {
  8325. name: "Macro++",
  8326. height: math.unit(2400, "feet")
  8327. },
  8328. {
  8329. name: "Megamacro",
  8330. height: math.unit(5167, "meters")
  8331. },
  8332. {
  8333. name: "Gigamacro",
  8334. height: math.unit(41769, "miles")
  8335. },
  8336. ]
  8337. ))
  8338. characterMakers.push(() => makeCharacter(
  8339. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8340. {
  8341. front: {
  8342. height: math.unit(6, "feet"),
  8343. weight: math.unit(120, "lbs"),
  8344. name: "Front",
  8345. image: {
  8346. source: "./media/characters/yozey/front.svg"
  8347. }
  8348. },
  8349. frontAlt: {
  8350. height: math.unit(6, "feet"),
  8351. weight: math.unit(120, "lbs"),
  8352. name: "Front (Alt)",
  8353. image: {
  8354. source: "./media/characters/yozey/front-alt.svg"
  8355. }
  8356. },
  8357. side: {
  8358. height: math.unit(6, "feet"),
  8359. weight: math.unit(120, "lbs"),
  8360. name: "Side",
  8361. image: {
  8362. source: "./media/characters/yozey/side.svg"
  8363. }
  8364. },
  8365. },
  8366. [
  8367. {
  8368. name: "Micro",
  8369. height: math.unit(3, "inches"),
  8370. default: true
  8371. },
  8372. {
  8373. name: "Normal",
  8374. height: math.unit(6, "feet")
  8375. }
  8376. ]
  8377. ))
  8378. characterMakers.push(() => makeCharacter(
  8379. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8380. {
  8381. front: {
  8382. height: math.unit(6, "feet"),
  8383. weight: math.unit(103, "lbs"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/valeska-voss/front.svg"
  8387. }
  8388. }
  8389. },
  8390. [
  8391. {
  8392. name: "Mini-Sized Sub",
  8393. height: math.unit(3.1, "inches")
  8394. },
  8395. {
  8396. name: "Mid-Sized Sub",
  8397. height: math.unit(6.2, "inches")
  8398. },
  8399. {
  8400. name: "Full-Sized Sub",
  8401. height: math.unit(9.3, "inches")
  8402. },
  8403. {
  8404. name: "Normal",
  8405. height: math.unit(5 + 2 / 12, "foot"),
  8406. default: true
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(6, "feet"),
  8415. weight: math.unit(160, "lbs"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/gene-zeta/front.svg",
  8419. extra: 3006 / 2826,
  8420. bottom: 182 / 3188
  8421. }
  8422. }
  8423. },
  8424. [
  8425. {
  8426. name: "Micro",
  8427. height: math.unit(6, "inches")
  8428. },
  8429. {
  8430. name: "Normal",
  8431. height: math.unit(5 + 11 / 12, "foot"),
  8432. default: true
  8433. },
  8434. {
  8435. name: "Macro",
  8436. height: math.unit(140, "feet")
  8437. },
  8438. {
  8439. name: "Supercharged",
  8440. height: math.unit(2500, "feet")
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8446. {
  8447. front: {
  8448. height: math.unit(6, "feet"),
  8449. weight: math.unit(350, "lbs"),
  8450. name: "Front",
  8451. image: {
  8452. source: "./media/characters/razinox/front.svg",
  8453. extra: 1686 / 1548,
  8454. bottom: 28.2 / 1868
  8455. }
  8456. },
  8457. back: {
  8458. height: math.unit(6, "feet"),
  8459. weight: math.unit(350, "lbs"),
  8460. name: "Back",
  8461. image: {
  8462. source: "./media/characters/razinox/back.svg",
  8463. extra: 1660 / 1590,
  8464. bottom: 15 / 1665
  8465. }
  8466. },
  8467. },
  8468. [
  8469. {
  8470. name: "Normal",
  8471. height: math.unit(10 + 8 / 12, "foot")
  8472. },
  8473. {
  8474. name: "Minimacro",
  8475. height: math.unit(15, "foot")
  8476. },
  8477. {
  8478. name: "Macro",
  8479. height: math.unit(60, "foot"),
  8480. default: true
  8481. },
  8482. {
  8483. name: "Megamacro",
  8484. height: math.unit(5, "miles")
  8485. },
  8486. {
  8487. name: "Gigamacro",
  8488. height: math.unit(6000, "miles")
  8489. },
  8490. ]
  8491. ))
  8492. characterMakers.push(() => makeCharacter(
  8493. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8494. {
  8495. front: {
  8496. height: math.unit(6, "feet"),
  8497. weight: math.unit(150, "lbs"),
  8498. name: "Front",
  8499. image: {
  8500. source: "./media/characters/cobalt/front.svg"
  8501. }
  8502. }
  8503. },
  8504. [
  8505. {
  8506. name: "Normal",
  8507. height: math.unit(8 + 1 / 12, "foot")
  8508. },
  8509. {
  8510. name: "Macro",
  8511. height: math.unit(111, "foot"),
  8512. default: true
  8513. },
  8514. {
  8515. name: "Supracosmic",
  8516. height: math.unit(1e42, "feet")
  8517. },
  8518. ]
  8519. ))
  8520. characterMakers.push(() => makeCharacter(
  8521. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8522. {
  8523. front: {
  8524. height: math.unit(5, "inches"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/amanda/front.svg",
  8528. extra: 926/791,
  8529. bottom: 38/964
  8530. }
  8531. },
  8532. back: {
  8533. height: math.unit(5, "inches"),
  8534. name: "Back",
  8535. image: {
  8536. source: "./media/characters/amanda/back.svg",
  8537. extra: 909/805,
  8538. bottom: 43/952
  8539. }
  8540. },
  8541. },
  8542. [
  8543. {
  8544. name: "Micro",
  8545. height: math.unit(5, "inches"),
  8546. default: true
  8547. },
  8548. ]
  8549. ))
  8550. characterMakers.push(() => makeCharacter(
  8551. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8552. {
  8553. front: {
  8554. height: math.unit(2.75, "meters"),
  8555. weight: math.unit(1200, "lb"),
  8556. name: "Front",
  8557. image: {
  8558. source: "./media/characters/teal/front.svg",
  8559. extra: 2463 / 2320,
  8560. bottom: 166 / 2629
  8561. }
  8562. },
  8563. back: {
  8564. height: math.unit(2.75, "meters"),
  8565. weight: math.unit(1200, "lb"),
  8566. name: "Back",
  8567. image: {
  8568. source: "./media/characters/teal/back.svg",
  8569. extra: 2580 / 2489,
  8570. bottom: 151 / 2731
  8571. }
  8572. },
  8573. sitting: {
  8574. height: math.unit(1.9, "meters"),
  8575. weight: math.unit(1200, "lb"),
  8576. name: "Sitting",
  8577. image: {
  8578. source: "./media/characters/teal/sitting.svg",
  8579. extra: 623 / 590,
  8580. bottom: 121 / 744
  8581. }
  8582. },
  8583. standing: {
  8584. height: math.unit(2.75, "meters"),
  8585. weight: math.unit(1200, "lb"),
  8586. name: "Standing",
  8587. image: {
  8588. source: "./media/characters/teal/standing.svg",
  8589. extra: 923 / 893,
  8590. bottom: 60 / 983
  8591. }
  8592. },
  8593. stretching: {
  8594. height: math.unit(3.65, "meters"),
  8595. weight: math.unit(1200, "lb"),
  8596. name: "Stretching",
  8597. image: {
  8598. source: "./media/characters/teal/stretching.svg",
  8599. extra: 1276 / 1244,
  8600. bottom: 0 / 1276
  8601. }
  8602. },
  8603. legged: {
  8604. height: math.unit(1.3, "meters"),
  8605. weight: math.unit(100, "lb"),
  8606. name: "Legged",
  8607. image: {
  8608. source: "./media/characters/teal/legged.svg",
  8609. extra: 462 / 437,
  8610. bottom: 24 / 486
  8611. }
  8612. },
  8613. naga: {
  8614. height: math.unit(5.4, "meters"),
  8615. weight: math.unit(4000, "lb"),
  8616. name: "Naga",
  8617. image: {
  8618. source: "./media/characters/teal/naga.svg",
  8619. extra: 1902 / 1858,
  8620. bottom: 0 / 1902
  8621. }
  8622. },
  8623. hand: {
  8624. height: math.unit(0.52, "meters"),
  8625. name: "Hand",
  8626. image: {
  8627. source: "./media/characters/teal/hand.svg"
  8628. }
  8629. },
  8630. maw: {
  8631. height: math.unit(0.43, "meters"),
  8632. name: "Maw",
  8633. image: {
  8634. source: "./media/characters/teal/maw.svg"
  8635. }
  8636. },
  8637. slit: {
  8638. height: math.unit(0.25, "meters"),
  8639. name: "Slit",
  8640. image: {
  8641. source: "./media/characters/teal/slit.svg"
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Normal",
  8648. height: math.unit(2.75, "meters"),
  8649. default: true
  8650. },
  8651. {
  8652. name: "Macro",
  8653. height: math.unit(300, "feet")
  8654. },
  8655. {
  8656. name: "Macro+",
  8657. height: math.unit(2000, "feet")
  8658. },
  8659. ]
  8660. ))
  8661. characterMakers.push(() => makeCharacter(
  8662. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8663. {
  8664. frontCat: {
  8665. height: math.unit(6, "feet"),
  8666. weight: math.unit(180, "lbs"),
  8667. name: "Front (Cat)",
  8668. image: {
  8669. source: "./media/characters/ravin-amulet/front-cat.svg"
  8670. }
  8671. },
  8672. frontCatAlt: {
  8673. height: math.unit(6, "feet"),
  8674. weight: math.unit(180, "lbs"),
  8675. name: "Front (Alt, Cat)",
  8676. image: {
  8677. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8678. }
  8679. },
  8680. frontWerewolf: {
  8681. height: math.unit(6 * 1.2, "feet"),
  8682. weight: math.unit(225, "lbs"),
  8683. name: "Front (Werewolf)",
  8684. image: {
  8685. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8686. }
  8687. },
  8688. backWerewolf: {
  8689. height: math.unit(6 * 1.2, "feet"),
  8690. weight: math.unit(225, "lbs"),
  8691. name: "Back (Werewolf)",
  8692. image: {
  8693. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8694. }
  8695. },
  8696. },
  8697. [
  8698. {
  8699. name: "Nano",
  8700. height: math.unit(1, "micrometer")
  8701. },
  8702. {
  8703. name: "Micro",
  8704. height: math.unit(1, "inch")
  8705. },
  8706. {
  8707. name: "Normal",
  8708. height: math.unit(6, "feet"),
  8709. default: true
  8710. },
  8711. {
  8712. name: "Macro",
  8713. height: math.unit(60, "feet")
  8714. }
  8715. ]
  8716. ))
  8717. characterMakers.push(() => makeCharacter(
  8718. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8719. {
  8720. front: {
  8721. height: math.unit(6, "feet"),
  8722. weight: math.unit(165, "lbs"),
  8723. name: "Front",
  8724. image: {
  8725. source: "./media/characters/fluoresce/front.svg"
  8726. }
  8727. }
  8728. },
  8729. [
  8730. {
  8731. name: "Micro",
  8732. height: math.unit(6, "cm")
  8733. },
  8734. {
  8735. name: "Normal",
  8736. height: math.unit(5 + 7 / 12, "feet"),
  8737. default: true
  8738. },
  8739. {
  8740. name: "Macro",
  8741. height: math.unit(56, "feet")
  8742. },
  8743. {
  8744. name: "Megamacro",
  8745. height: math.unit(1.9, "miles")
  8746. },
  8747. ]
  8748. ))
  8749. characterMakers.push(() => makeCharacter(
  8750. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8751. {
  8752. front: {
  8753. height: math.unit(9 + 6 / 12, "feet"),
  8754. weight: math.unit(523, "lbs"),
  8755. name: "Side",
  8756. image: {
  8757. source: "./media/characters/aurora/side.svg",
  8758. extra: 474/393,
  8759. bottom: 5/479
  8760. }
  8761. }
  8762. },
  8763. [
  8764. {
  8765. name: "Normal",
  8766. height: math.unit(9 + 6 / 12, "feet")
  8767. },
  8768. {
  8769. name: "Macro",
  8770. height: math.unit(96, "feet"),
  8771. default: true
  8772. },
  8773. {
  8774. name: "Macro+",
  8775. height: math.unit(243, "feet")
  8776. },
  8777. ]
  8778. ))
  8779. characterMakers.push(() => makeCharacter(
  8780. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8781. {
  8782. front: {
  8783. height: math.unit(194, "cm"),
  8784. weight: math.unit(90, "kg"),
  8785. name: "Front",
  8786. image: {
  8787. source: "./media/characters/ranek/front.svg",
  8788. extra: 1862/1791,
  8789. bottom: 80/1942
  8790. }
  8791. },
  8792. back: {
  8793. height: math.unit(194, "cm"),
  8794. weight: math.unit(90, "kg"),
  8795. name: "Back",
  8796. image: {
  8797. source: "./media/characters/ranek/back.svg",
  8798. extra: 1853/1787,
  8799. bottom: 74/1927
  8800. }
  8801. },
  8802. feral: {
  8803. height: math.unit(30, "cm"),
  8804. weight: math.unit(1.6, "lbs"),
  8805. name: "Feral",
  8806. image: {
  8807. source: "./media/characters/ranek/feral.svg",
  8808. extra: 990/631,
  8809. bottom: 29/1019
  8810. }
  8811. },
  8812. },
  8813. [
  8814. {
  8815. name: "Normal",
  8816. height: math.unit(194, "cm"),
  8817. default: true
  8818. },
  8819. {
  8820. name: "Macro",
  8821. height: math.unit(100, "meters")
  8822. },
  8823. ]
  8824. ))
  8825. characterMakers.push(() => makeCharacter(
  8826. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8827. {
  8828. front: {
  8829. height: math.unit(5 + 6 / 12, "feet"),
  8830. weight: math.unit(153, "lbs"),
  8831. name: "Front",
  8832. image: {
  8833. source: "./media/characters/andrew-cooper/front.svg"
  8834. }
  8835. },
  8836. },
  8837. [
  8838. {
  8839. name: "Nano",
  8840. height: math.unit(1, "mm")
  8841. },
  8842. {
  8843. name: "Micro",
  8844. height: math.unit(2, "inches")
  8845. },
  8846. {
  8847. name: "Normal",
  8848. height: math.unit(5 + 6 / 12, "feet"),
  8849. default: true
  8850. }
  8851. ]
  8852. ))
  8853. characterMakers.push(() => makeCharacter(
  8854. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8855. {
  8856. front: {
  8857. height: math.unit(6, "feet"),
  8858. weight: math.unit(180, "lbs"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/akane-sato/front.svg",
  8862. extra: 1219 / 1140
  8863. }
  8864. },
  8865. back: {
  8866. height: math.unit(6, "feet"),
  8867. weight: math.unit(180, "lbs"),
  8868. name: "Back",
  8869. image: {
  8870. source: "./media/characters/akane-sato/back.svg",
  8871. extra: 1219 / 1170
  8872. }
  8873. },
  8874. },
  8875. [
  8876. {
  8877. name: "Normal",
  8878. height: math.unit(2.5, "meters")
  8879. },
  8880. {
  8881. name: "Macro",
  8882. height: math.unit(250, "meters"),
  8883. default: true
  8884. },
  8885. {
  8886. name: "Megamacro",
  8887. height: math.unit(25, "km")
  8888. },
  8889. ]
  8890. ))
  8891. characterMakers.push(() => makeCharacter(
  8892. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8893. {
  8894. front: {
  8895. height: math.unit(6, "feet"),
  8896. weight: math.unit(65, "kg"),
  8897. name: "Front",
  8898. image: {
  8899. source: "./media/characters/rook/front.svg",
  8900. extra: 960 / 950
  8901. }
  8902. }
  8903. },
  8904. [
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(8.8, "feet")
  8908. },
  8909. {
  8910. name: "Macro",
  8911. height: math.unit(88, "feet"),
  8912. default: true
  8913. },
  8914. {
  8915. name: "Megamacro",
  8916. height: math.unit(8, "miles")
  8917. },
  8918. ]
  8919. ))
  8920. characterMakers.push(() => makeCharacter(
  8921. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8922. {
  8923. front: {
  8924. height: math.unit(12 + 2 / 12, "feet"),
  8925. weight: math.unit(808, "lbs"),
  8926. name: "Front",
  8927. image: {
  8928. source: "./media/characters/prodigy/front.svg"
  8929. }
  8930. }
  8931. },
  8932. [
  8933. {
  8934. name: "Normal",
  8935. height: math.unit(12 + 2 / 12, "feet"),
  8936. default: true
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(143, "feet")
  8941. },
  8942. {
  8943. name: "Macro+",
  8944. height: math.unit(400, "feet")
  8945. },
  8946. ]
  8947. ))
  8948. characterMakers.push(() => makeCharacter(
  8949. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8950. {
  8951. front: {
  8952. height: math.unit(6, "feet"),
  8953. weight: math.unit(225, "lbs"),
  8954. name: "Front",
  8955. image: {
  8956. source: "./media/characters/daniel/front.svg"
  8957. }
  8958. },
  8959. leaning: {
  8960. height: math.unit(6, "feet"),
  8961. weight: math.unit(225, "lbs"),
  8962. name: "Leaning",
  8963. image: {
  8964. source: "./media/characters/daniel/leaning.svg"
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Macro",
  8971. height: math.unit(1000, "feet"),
  8972. default: true
  8973. },
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(6, "feet"),
  8981. weight: math.unit(88, "lbs"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/chiros/front.svg",
  8985. extra: 306 / 226
  8986. }
  8987. },
  8988. side: {
  8989. height: math.unit(6, "feet"),
  8990. weight: math.unit(88, "lbs"),
  8991. name: "Side",
  8992. image: {
  8993. source: "./media/characters/chiros/side.svg",
  8994. extra: 306 / 226
  8995. }
  8996. },
  8997. },
  8998. [
  8999. {
  9000. name: "Normal",
  9001. height: math.unit(6, "cm"),
  9002. default: true
  9003. },
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9008. {
  9009. front: {
  9010. height: math.unit(6, "feet"),
  9011. weight: math.unit(100, "lbs"),
  9012. name: "Front",
  9013. image: {
  9014. source: "./media/characters/selka/front.svg",
  9015. extra: 947 / 887
  9016. }
  9017. }
  9018. },
  9019. [
  9020. {
  9021. name: "Normal",
  9022. height: math.unit(5, "cm"),
  9023. default: true
  9024. },
  9025. ]
  9026. ))
  9027. characterMakers.push(() => makeCharacter(
  9028. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9029. {
  9030. front: {
  9031. height: math.unit(8 + 3 / 12, "feet"),
  9032. weight: math.unit(424, "lbs"),
  9033. name: "Front",
  9034. image: {
  9035. source: "./media/characters/verin/front.svg",
  9036. extra: 1845 / 1550
  9037. }
  9038. },
  9039. frontArmored: {
  9040. height: math.unit(8 + 3 / 12, "feet"),
  9041. weight: math.unit(424, "lbs"),
  9042. name: "Front (Armored)",
  9043. image: {
  9044. source: "./media/characters/verin/front-armor.svg",
  9045. extra: 1845 / 1550,
  9046. bottom: 0.01
  9047. }
  9048. },
  9049. back: {
  9050. height: math.unit(8 + 3 / 12, "feet"),
  9051. weight: math.unit(424, "lbs"),
  9052. name: "Back",
  9053. image: {
  9054. source: "./media/characters/verin/back.svg",
  9055. bottom: 0.1,
  9056. extra: 1
  9057. }
  9058. },
  9059. foot: {
  9060. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9061. name: "Foot",
  9062. image: {
  9063. source: "./media/characters/verin/foot.svg"
  9064. }
  9065. },
  9066. },
  9067. [
  9068. {
  9069. name: "Normal",
  9070. height: math.unit(8 + 3 / 12, "feet")
  9071. },
  9072. {
  9073. name: "Minimacro",
  9074. height: math.unit(21, "feet"),
  9075. default: true
  9076. },
  9077. {
  9078. name: "Macro",
  9079. height: math.unit(626, "feet")
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9085. {
  9086. front: {
  9087. height: math.unit(2.718, "meters"),
  9088. weight: math.unit(150, "lbs"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/sovrim-terraquian/front.svg",
  9092. extra: 1752/1689,
  9093. bottom: 36/1788
  9094. }
  9095. },
  9096. back: {
  9097. height: math.unit(2.718, "meters"),
  9098. weight: math.unit(150, "lbs"),
  9099. name: "Back",
  9100. image: {
  9101. source: "./media/characters/sovrim-terraquian/back.svg",
  9102. extra: 1698/1657,
  9103. bottom: 58/1756
  9104. }
  9105. },
  9106. tongue: {
  9107. height: math.unit(2.865, "feet"),
  9108. name: "Tongue",
  9109. image: {
  9110. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9111. }
  9112. },
  9113. hand: {
  9114. height: math.unit(1.61, "feet"),
  9115. name: "Hand",
  9116. image: {
  9117. source: "./media/characters/sovrim-terraquian/hand.svg"
  9118. }
  9119. },
  9120. foot: {
  9121. height: math.unit(1.05, "feet"),
  9122. name: "Foot",
  9123. image: {
  9124. source: "./media/characters/sovrim-terraquian/foot.svg"
  9125. }
  9126. },
  9127. footAlt: {
  9128. height: math.unit(0.88, "feet"),
  9129. name: "Foot (Alt)",
  9130. image: {
  9131. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9132. }
  9133. },
  9134. },
  9135. [
  9136. {
  9137. name: "Micro",
  9138. height: math.unit(2, "inches")
  9139. },
  9140. {
  9141. name: "Small",
  9142. height: math.unit(1, "meter")
  9143. },
  9144. {
  9145. name: "Normal",
  9146. height: math.unit(Math.E, "meters"),
  9147. default: true
  9148. },
  9149. {
  9150. name: "Macro",
  9151. height: math.unit(20, "meters")
  9152. },
  9153. {
  9154. name: "Macro+",
  9155. height: math.unit(400, "meters")
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(7, "feet"),
  9164. weight: math.unit(489, "lbs"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/reece-silvermane/front.svg",
  9168. bottom: 0.02,
  9169. extra: 1
  9170. }
  9171. },
  9172. },
  9173. [
  9174. {
  9175. name: "Macro",
  9176. height: math.unit(1.5, "miles"),
  9177. default: true
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9183. {
  9184. front: {
  9185. height: math.unit(6, "feet"),
  9186. weight: math.unit(78, "kg"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/kane/front.svg",
  9190. extra: 978 / 899
  9191. }
  9192. },
  9193. back: {
  9194. height: math.unit(6, "feet"),
  9195. weight: math.unit(78, "kg"),
  9196. name: "Back",
  9197. image: {
  9198. source: "./media/characters/kane/back.svg",
  9199. extra: 1966/1800,
  9200. bottom: 0/1966
  9201. }
  9202. },
  9203. head: {
  9204. height: math.unit(1.4, "feet"),
  9205. name: "Head",
  9206. image: {
  9207. source: "./media/characters/kane/head.svg"
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Normal",
  9214. height: math.unit(2.1, "m"),
  9215. },
  9216. {
  9217. name: "Macro",
  9218. height: math.unit(1, "km"),
  9219. default: true
  9220. },
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9225. {
  9226. front: {
  9227. height: math.unit(6, "feet"),
  9228. weight: math.unit(200, "kg"),
  9229. name: "Front",
  9230. image: {
  9231. source: "./media/characters/tegon/front.svg",
  9232. bottom: 0.01,
  9233. extra: 1
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(1, "inch")
  9241. },
  9242. {
  9243. name: "Normal",
  9244. height: math.unit(6 + 3 / 12, "feet"),
  9245. default: true
  9246. },
  9247. {
  9248. name: "Macro",
  9249. height: math.unit(300, "feet")
  9250. },
  9251. {
  9252. name: "Megamacro",
  9253. height: math.unit(69, "miles")
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9259. {
  9260. side: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(2304, "lbs"),
  9263. name: "Side",
  9264. image: {
  9265. source: "./media/characters/arcturax/side.svg",
  9266. extra: 790 / 376,
  9267. bottom: 0.01
  9268. }
  9269. },
  9270. },
  9271. [
  9272. {
  9273. name: "Micro",
  9274. height: math.unit(2, "inch")
  9275. },
  9276. {
  9277. name: "Normal",
  9278. height: math.unit(6, "feet")
  9279. },
  9280. {
  9281. name: "Macro",
  9282. height: math.unit(39, "feet"),
  9283. default: true
  9284. },
  9285. {
  9286. name: "Megamacro",
  9287. height: math.unit(7, "miles")
  9288. },
  9289. ]
  9290. ))
  9291. characterMakers.push(() => makeCharacter(
  9292. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9293. {
  9294. front: {
  9295. height: math.unit(6, "feet"),
  9296. weight: math.unit(50, "lbs"),
  9297. name: "Front",
  9298. image: {
  9299. source: "./media/characters/sentri/front.svg",
  9300. extra: 1750 / 1570,
  9301. bottom: 0.025
  9302. }
  9303. },
  9304. frontAlt: {
  9305. height: math.unit(6, "feet"),
  9306. weight: math.unit(50, "lbs"),
  9307. name: "Front (Alt)",
  9308. image: {
  9309. source: "./media/characters/sentri/front-alt.svg",
  9310. extra: 1750 / 1570,
  9311. bottom: 0.025
  9312. }
  9313. },
  9314. },
  9315. [
  9316. {
  9317. name: "Normal",
  9318. height: math.unit(15, "feet"),
  9319. default: true
  9320. },
  9321. {
  9322. name: "Macro",
  9323. height: math.unit(2500, "feet")
  9324. }
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9329. {
  9330. front: {
  9331. height: math.unit(5 + 8 / 12, "feet"),
  9332. weight: math.unit(130, "lbs"),
  9333. name: "Front",
  9334. image: {
  9335. source: "./media/characters/corvin/front.svg",
  9336. extra: 1803 / 1629
  9337. }
  9338. },
  9339. frontShirt: {
  9340. height: math.unit(5 + 8 / 12, "feet"),
  9341. weight: math.unit(130, "lbs"),
  9342. name: "Front (Shirt)",
  9343. image: {
  9344. source: "./media/characters/corvin/front-shirt.svg",
  9345. extra: 1803 / 1629
  9346. }
  9347. },
  9348. frontPoncho: {
  9349. height: math.unit(5 + 8 / 12, "feet"),
  9350. weight: math.unit(130, "lbs"),
  9351. name: "Front (Poncho)",
  9352. image: {
  9353. source: "./media/characters/corvin/front-poncho.svg",
  9354. extra: 1803 / 1629
  9355. }
  9356. },
  9357. side: {
  9358. height: math.unit(5 + 8 / 12, "feet"),
  9359. weight: math.unit(130, "lbs"),
  9360. name: "Side",
  9361. image: {
  9362. source: "./media/characters/corvin/side.svg",
  9363. extra: 1012 / 945
  9364. }
  9365. },
  9366. back: {
  9367. height: math.unit(5 + 8 / 12, "feet"),
  9368. weight: math.unit(130, "lbs"),
  9369. name: "Back",
  9370. image: {
  9371. source: "./media/characters/corvin/back.svg",
  9372. extra: 1803 / 1629
  9373. }
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Micro",
  9379. height: math.unit(3, "inches")
  9380. },
  9381. {
  9382. name: "Normal",
  9383. height: math.unit(5 + 8 / 12, "feet")
  9384. },
  9385. {
  9386. name: "Macro",
  9387. height: math.unit(300, "feet"),
  9388. default: true
  9389. },
  9390. {
  9391. name: "Megamacro",
  9392. height: math.unit(500, "miles")
  9393. }
  9394. ]
  9395. ))
  9396. characterMakers.push(() => makeCharacter(
  9397. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9398. {
  9399. front: {
  9400. height: math.unit(6, "feet"),
  9401. weight: math.unit(135, "lbs"),
  9402. name: "Front",
  9403. image: {
  9404. source: "./media/characters/q/front.svg",
  9405. extra: 854 / 752,
  9406. bottom: 0.005
  9407. }
  9408. },
  9409. back: {
  9410. height: math.unit(6, "feet"),
  9411. weight: math.unit(130, "lbs"),
  9412. name: "Back",
  9413. image: {
  9414. source: "./media/characters/q/back.svg",
  9415. extra: 854 / 752
  9416. }
  9417. },
  9418. },
  9419. [
  9420. {
  9421. name: "Macro",
  9422. height: math.unit(90, "feet"),
  9423. default: true
  9424. },
  9425. {
  9426. name: "Extra Macro",
  9427. height: math.unit(300, "feet"),
  9428. },
  9429. {
  9430. name: "BIG WALF",
  9431. height: math.unit(750, "feet"),
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9437. {
  9438. front: {
  9439. height: math.unit(3, "feet"),
  9440. weight: math.unit(28, "lbs"),
  9441. name: "Front",
  9442. image: {
  9443. source: "./media/characters/citrine/front.svg"
  9444. }
  9445. }
  9446. },
  9447. [
  9448. {
  9449. name: "Normal",
  9450. height: math.unit(3, "feet"),
  9451. default: true
  9452. }
  9453. ]
  9454. ))
  9455. characterMakers.push(() => makeCharacter(
  9456. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9457. {
  9458. front: {
  9459. height: math.unit(14, "feet"),
  9460. weight: math.unit(1450, "kg"),
  9461. preyCapacity: math.unit(15, "people"),
  9462. name: "Front",
  9463. image: {
  9464. source: "./media/characters/aura-starwind/front.svg",
  9465. extra: 1440/1327,
  9466. bottom: 11/1451
  9467. }
  9468. },
  9469. side: {
  9470. height: math.unit(14, "feet"),
  9471. weight: math.unit(1450, "kg"),
  9472. preyCapacity: math.unit(15, "people"),
  9473. name: "Side",
  9474. image: {
  9475. source: "./media/characters/aura-starwind/side.svg",
  9476. extra: 1654 / 1497
  9477. }
  9478. },
  9479. taur: {
  9480. height: math.unit(18, "feet"),
  9481. weight: math.unit(5500, "kg"),
  9482. preyCapacity: math.unit(50, "people"),
  9483. name: "Taur",
  9484. image: {
  9485. source: "./media/characters/aura-starwind/taur.svg",
  9486. extra: 1760 / 1650
  9487. }
  9488. },
  9489. feral: {
  9490. height: math.unit(46, "feet"),
  9491. weight: math.unit(25000, "kg"),
  9492. preyCapacity: math.unit(120, "people"),
  9493. name: "Feral",
  9494. image: {
  9495. source: "./media/characters/aura-starwind/feral.svg"
  9496. }
  9497. },
  9498. },
  9499. [
  9500. {
  9501. name: "Normal",
  9502. height: math.unit(14, "feet"),
  9503. default: true
  9504. },
  9505. {
  9506. name: "Macro",
  9507. height: math.unit(50, "meters")
  9508. },
  9509. {
  9510. name: "Megamacro",
  9511. height: math.unit(5000, "meters")
  9512. },
  9513. {
  9514. name: "Gigamacro",
  9515. height: math.unit(100000, "kilometers")
  9516. },
  9517. ]
  9518. ))
  9519. characterMakers.push(() => makeCharacter(
  9520. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9521. {
  9522. front: {
  9523. height: math.unit(2 + 7 / 12, "feet"),
  9524. weight: math.unit(32, "lbs"),
  9525. name: "Front",
  9526. image: {
  9527. source: "./media/characters/rivet/front.svg",
  9528. extra: 1716 / 1658,
  9529. bottom: 0.03
  9530. }
  9531. },
  9532. foot: {
  9533. height: math.unit(0.551, "feet"),
  9534. name: "Rivet's Foot",
  9535. image: {
  9536. source: "./media/characters/rivet/foot.svg"
  9537. },
  9538. rename: true
  9539. }
  9540. },
  9541. [
  9542. {
  9543. name: "Micro",
  9544. height: math.unit(1.5, "inches"),
  9545. },
  9546. {
  9547. name: "Normal",
  9548. height: math.unit(2 + 7 / 12, "feet"),
  9549. default: true
  9550. },
  9551. {
  9552. name: "Macro",
  9553. height: math.unit(85, "feet")
  9554. },
  9555. {
  9556. name: "Megamacro",
  9557. height: math.unit(2.2, "km")
  9558. }
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9563. {
  9564. front: {
  9565. height: math.unit(5 + 9 / 12, "feet"),
  9566. weight: math.unit(150, "lbs"),
  9567. name: "Front",
  9568. image: {
  9569. source: "./media/characters/coffee/front.svg",
  9570. extra: 946/880,
  9571. bottom: 66/1012
  9572. }
  9573. },
  9574. foot: {
  9575. height: math.unit(1.29, "feet"),
  9576. name: "Foot",
  9577. image: {
  9578. source: "./media/characters/coffee/foot.svg"
  9579. }
  9580. },
  9581. },
  9582. [
  9583. {
  9584. name: "Micro",
  9585. height: math.unit(2, "inches"),
  9586. },
  9587. {
  9588. name: "Normal",
  9589. height: math.unit(5 + 9 / 12, "feet"),
  9590. default: true
  9591. },
  9592. {
  9593. name: "Macro",
  9594. height: math.unit(800, "feet")
  9595. },
  9596. {
  9597. name: "Megamacro",
  9598. height: math.unit(25, "miles")
  9599. }
  9600. ]
  9601. ))
  9602. characterMakers.push(() => makeCharacter(
  9603. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9604. {
  9605. front: {
  9606. height: math.unit(6, "feet"),
  9607. weight: math.unit(200, "lbs"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/chari-gal/front.svg",
  9611. extra: 735/649,
  9612. bottom: 55/790
  9613. },
  9614. form: "normal",
  9615. default: true
  9616. },
  9617. back: {
  9618. height: math.unit(6, "feet"),
  9619. weight: math.unit(200, "lb"),
  9620. name: "Back",
  9621. image: {
  9622. source: "./media/characters/chari-gal/back.svg",
  9623. extra: 762/666,
  9624. bottom: 31/793
  9625. },
  9626. form: "normal"
  9627. },
  9628. mouth: {
  9629. height: math.unit(1.35, "feet"),
  9630. name: "Mouth",
  9631. image: {
  9632. source: "./media/characters/chari-gal/mouth.svg"
  9633. },
  9634. form: "normal"
  9635. },
  9636. gigantamax: {
  9637. height: math.unit(6 * 16, "feet"),
  9638. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9639. name: "Gigantamax",
  9640. image: {
  9641. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9642. extra: 1507/1149,
  9643. bottom: 254/1761
  9644. },
  9645. form: "gigantamax",
  9646. default: true
  9647. },
  9648. },
  9649. [
  9650. {
  9651. name: "Normal",
  9652. height: math.unit(5 + 7 / 12, "feet"),
  9653. form: "normal",
  9654. },
  9655. {
  9656. name: "Macro",
  9657. height: math.unit(200, "feet"),
  9658. default: true,
  9659. form: "normal"
  9660. },
  9661. {
  9662. name: "Normal",
  9663. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9664. form: "gigantamax",
  9665. },
  9666. {
  9667. name: "Macro",
  9668. height: math.unit(16 * 200, "feet"),
  9669. default: true,
  9670. form: "gigantamax"
  9671. },
  9672. ],
  9673. {
  9674. "normal": {
  9675. name: "Normal",
  9676. default: true
  9677. },
  9678. "gigantamax": {
  9679. name: "Gigantamax",
  9680. },
  9681. }
  9682. ))
  9683. characterMakers.push(() => makeCharacter(
  9684. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9685. {
  9686. front: {
  9687. height: math.unit(6, "feet"),
  9688. weight: math.unit(150, "lbs"),
  9689. name: "Front",
  9690. image: {
  9691. source: "./media/characters/nova/front.svg",
  9692. extra: 5000 / 4722,
  9693. bottom: 0.02
  9694. }
  9695. }
  9696. },
  9697. [
  9698. {
  9699. name: "Micro-",
  9700. height: math.unit(0.8, "inches")
  9701. },
  9702. {
  9703. name: "Micro",
  9704. height: math.unit(2, "inches"),
  9705. default: true
  9706. },
  9707. ]
  9708. ))
  9709. characterMakers.push(() => makeCharacter(
  9710. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9711. {
  9712. koboldFront: {
  9713. height: math.unit(3 + 1 / 12, "feet"),
  9714. weight: math.unit(21.7, "lbs"),
  9715. name: "Front",
  9716. image: {
  9717. source: "./media/characters/argent/kobold-front.svg",
  9718. extra: 1471 / 1331,
  9719. bottom: 100.8 / 1575.5
  9720. },
  9721. form: "kobold",
  9722. default: true
  9723. },
  9724. dragonFront: {
  9725. height: math.unit(75, "inches"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/argent/dragon-front.svg",
  9729. extra: 1389/1248,
  9730. bottom: 54/1443
  9731. },
  9732. form: "dragon",
  9733. },
  9734. dragonBack: {
  9735. height: math.unit(75, "inches"),
  9736. name: "Back",
  9737. image: {
  9738. source: "./media/characters/argent/dragon-back.svg",
  9739. extra: 1399/1271,
  9740. bottom: 23/1422
  9741. },
  9742. form: "dragon",
  9743. },
  9744. dragonDressed: {
  9745. height: math.unit(75, "inches"),
  9746. name: "Dressed",
  9747. image: {
  9748. source: "./media/characters/argent/dragon-dressed.svg",
  9749. extra: 1350/1215,
  9750. bottom: 26/1376
  9751. },
  9752. form: "dragon"
  9753. },
  9754. dragonHead: {
  9755. height: math.unit(23.5, "inches"),
  9756. name: "Head",
  9757. image: {
  9758. source: "./media/characters/argent/dragon-head.svg"
  9759. },
  9760. form: "dragon",
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Micro",
  9766. height: math.unit(2, "inches"),
  9767. form: "kobold",
  9768. },
  9769. {
  9770. name: "Normal",
  9771. height: math.unit(3 + 1 / 12, "feet"),
  9772. form: "kobold",
  9773. default: true
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(120, "feet"),
  9778. form: "kobold",
  9779. },
  9780. {
  9781. name: "Speck",
  9782. height: math.unit(1, "mm"),
  9783. form: "dragon",
  9784. },
  9785. {
  9786. name: "Tiny",
  9787. height: math.unit(1, "cm"),
  9788. form: "dragon",
  9789. },
  9790. {
  9791. name: "Micro",
  9792. height: math.unit(5, "cm"),
  9793. form: "dragon",
  9794. },
  9795. {
  9796. name: "Normal",
  9797. height: math.unit(75, "inches"),
  9798. form: "dragon",
  9799. default: true
  9800. },
  9801. {
  9802. name: "Extra Tall",
  9803. height: math.unit(9, "feet"),
  9804. form: "dragon",
  9805. },
  9806. {
  9807. name: "Inconvenient",
  9808. height: math.unit(5, "meters"),
  9809. form: "dragon",
  9810. },
  9811. {
  9812. name: "Macro",
  9813. height: math.unit(70, "meters"),
  9814. form: "dragon",
  9815. },
  9816. {
  9817. name: "Macro+",
  9818. height: math.unit(250, "meters"),
  9819. form: "dragon",
  9820. },
  9821. {
  9822. name: "Megamacro",
  9823. height: math.unit(20, "km"),
  9824. form: "dragon",
  9825. },
  9826. {
  9827. name: "Mountainous",
  9828. height: math.unit(100, "km"),
  9829. form: "dragon",
  9830. },
  9831. {
  9832. name: "Continental",
  9833. height: math.unit(2, "megameters"),
  9834. form: "dragon",
  9835. },
  9836. {
  9837. name: "Too Big",
  9838. height: math.unit(900, "megameters"),
  9839. form: "dragon",
  9840. },
  9841. ],
  9842. {
  9843. "kobold": {
  9844. name: "Kobold",
  9845. default: true
  9846. },
  9847. "dragon": {
  9848. name: "Dragon",
  9849. },
  9850. }
  9851. ))
  9852. characterMakers.push(() => makeCharacter(
  9853. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9854. {
  9855. lamp: {
  9856. height: math.unit(7 * 1559 / 989, "feet"),
  9857. name: "Magic Lamp",
  9858. image: {
  9859. source: "./media/characters/mira-al-cul/lamp.svg",
  9860. extra: 1617 / 1559
  9861. }
  9862. },
  9863. front: {
  9864. height: math.unit(7, "feet"),
  9865. name: "Front",
  9866. image: {
  9867. source: "./media/characters/mira-al-cul/front.svg",
  9868. extra: 1044 / 990
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Heavily Restricted",
  9875. height: math.unit(7 * 1559 / 989, "feet")
  9876. },
  9877. {
  9878. name: "Freshly Freed",
  9879. height: math.unit(50 * 1559 / 989, "feet")
  9880. },
  9881. {
  9882. name: "World Encompassing",
  9883. height: math.unit(10000 * 1559 / 989, "miles")
  9884. },
  9885. {
  9886. name: "Galactic",
  9887. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9888. },
  9889. {
  9890. name: "Palmed Universe",
  9891. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9892. default: true
  9893. },
  9894. {
  9895. name: "Multiversal Matriarch",
  9896. height: math.unit(8.87e10, "yottameters")
  9897. },
  9898. {
  9899. name: "Void Mother",
  9900. height: math.unit(3.14e110, "yottaparsecs")
  9901. },
  9902. {
  9903. name: "Toying with Transcendence",
  9904. height: math.unit(1e307, "meters")
  9905. },
  9906. ]
  9907. ))
  9908. characterMakers.push(() => makeCharacter(
  9909. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9910. {
  9911. front: {
  9912. height: math.unit(17 + 1 / 12, "feet"),
  9913. weight: math.unit(476.2 * 5, "lbs"),
  9914. name: "Front",
  9915. image: {
  9916. source: "./media/characters/kuro-shi-uchū/front.svg",
  9917. extra: 2329 / 1835,
  9918. bottom: 0.02
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Micro",
  9925. height: math.unit(2, "inches")
  9926. },
  9927. {
  9928. name: "Normal",
  9929. height: math.unit(12, "meters")
  9930. },
  9931. {
  9932. name: "Planetary",
  9933. height: math.unit(0.00929, "AU"),
  9934. default: true
  9935. },
  9936. {
  9937. name: "Universal",
  9938. height: math.unit(20, "gigaparsecs")
  9939. },
  9940. ]
  9941. ))
  9942. characterMakers.push(() => makeCharacter(
  9943. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9944. {
  9945. front: {
  9946. height: math.unit(5 + 2 / 12, "feet"),
  9947. weight: math.unit(120, "lbs"),
  9948. name: "Front",
  9949. image: {
  9950. source: "./media/characters/katherine/front.svg",
  9951. extra: 2075 / 1969
  9952. }
  9953. },
  9954. dress: {
  9955. height: math.unit(5 + 2 / 12, "feet"),
  9956. weight: math.unit(120, "lbs"),
  9957. name: "Dress",
  9958. image: {
  9959. source: "./media/characters/katherine/dress.svg",
  9960. extra: 2258 / 2064
  9961. }
  9962. },
  9963. },
  9964. [
  9965. {
  9966. name: "Micro",
  9967. height: math.unit(1, "inches"),
  9968. default: true
  9969. },
  9970. {
  9971. name: "Normal",
  9972. height: math.unit(5 + 2 / 12, "feet")
  9973. },
  9974. {
  9975. name: "Macro",
  9976. height: math.unit(100, "meters")
  9977. },
  9978. {
  9979. name: "Megamacro",
  9980. height: math.unit(80, "miles")
  9981. },
  9982. ]
  9983. ))
  9984. characterMakers.push(() => makeCharacter(
  9985. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9986. {
  9987. front: {
  9988. height: math.unit(7 + 8 / 12, "feet"),
  9989. weight: math.unit(250, "lbs"),
  9990. name: "Front",
  9991. image: {
  9992. source: "./media/characters/yevis/front.svg",
  9993. extra: 1938 / 1755
  9994. }
  9995. }
  9996. },
  9997. [
  9998. {
  9999. name: "Mortal",
  10000. height: math.unit(7 + 8 / 12, "feet")
  10001. },
  10002. {
  10003. name: "Battle",
  10004. height: math.unit(25 + 11 / 12, "feet")
  10005. },
  10006. {
  10007. name: "Wrath",
  10008. height: math.unit(1654 + 11 / 12, "feet")
  10009. },
  10010. {
  10011. name: "Planet Destroyer",
  10012. height: math.unit(12000, "miles")
  10013. },
  10014. {
  10015. name: "Galaxy Conqueror",
  10016. height: math.unit(1.45, "zettameters"),
  10017. default: true
  10018. },
  10019. {
  10020. name: "Universal War",
  10021. height: math.unit(184, "gigaparsecs")
  10022. },
  10023. {
  10024. name: "Eternity War",
  10025. height: math.unit(1.98e55, "yottaparsecs")
  10026. },
  10027. ]
  10028. ))
  10029. characterMakers.push(() => makeCharacter(
  10030. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10031. {
  10032. front: {
  10033. height: math.unit(5 + 8 / 12, "feet"),
  10034. weight: math.unit(63, "kg"),
  10035. name: "Front",
  10036. image: {
  10037. source: "./media/characters/xavier/front.svg",
  10038. extra: 944 / 883
  10039. }
  10040. },
  10041. frontStretch: {
  10042. height: math.unit(5 + 8 / 12, "feet"),
  10043. weight: math.unit(63, "kg"),
  10044. name: "Stretching",
  10045. image: {
  10046. source: "./media/characters/xavier/front-stretch.svg",
  10047. extra: 962 / 820
  10048. }
  10049. },
  10050. },
  10051. [
  10052. {
  10053. name: "Normal",
  10054. height: math.unit(5 + 8 / 12, "feet")
  10055. },
  10056. {
  10057. name: "Macro",
  10058. height: math.unit(100, "meters"),
  10059. default: true
  10060. },
  10061. {
  10062. name: "McLargeHuge",
  10063. height: math.unit(10, "miles")
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10069. {
  10070. front: {
  10071. height: math.unit(5 + 5 / 12, "feet"),
  10072. weight: math.unit(150, "lb"),
  10073. name: "Front",
  10074. image: {
  10075. source: "./media/characters/joshii/front.svg",
  10076. extra: 765 / 653,
  10077. bottom: 51 / 816
  10078. }
  10079. },
  10080. foot: {
  10081. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10082. name: "Foot",
  10083. image: {
  10084. source: "./media/characters/joshii/foot.svg"
  10085. }
  10086. },
  10087. },
  10088. [
  10089. {
  10090. name: "Micro",
  10091. height: math.unit(2, "inches")
  10092. },
  10093. {
  10094. name: "Normal",
  10095. height: math.unit(5 + 5 / 12, "feet")
  10096. },
  10097. {
  10098. name: "Macro",
  10099. height: math.unit(785, "feet"),
  10100. default: true
  10101. },
  10102. {
  10103. name: "Megamacro",
  10104. height: math.unit(24.5, "miles")
  10105. },
  10106. ]
  10107. ))
  10108. characterMakers.push(() => makeCharacter(
  10109. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10110. {
  10111. front: {
  10112. height: math.unit(6, "feet"),
  10113. weight: math.unit(150, "lb"),
  10114. name: "Front",
  10115. image: {
  10116. source: "./media/characters/goddess-elizabeth/front.svg",
  10117. extra: 1800 / 1525,
  10118. bottom: 0.005
  10119. }
  10120. },
  10121. foot: {
  10122. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10123. name: "Foot",
  10124. image: {
  10125. source: "./media/characters/goddess-elizabeth/foot.svg"
  10126. }
  10127. },
  10128. mouth: {
  10129. height: math.unit(6, "feet"),
  10130. name: "Mouth",
  10131. image: {
  10132. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Micro",
  10139. height: math.unit(12, "feet")
  10140. },
  10141. {
  10142. name: "Normal",
  10143. height: math.unit(80, "miles"),
  10144. default: true
  10145. },
  10146. {
  10147. name: "Macro",
  10148. height: math.unit(15000, "parsecs")
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(5 + 9 / 12, "feet"),
  10157. weight: math.unit(144, "lb"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/kara/front.svg"
  10161. }
  10162. },
  10163. feet: {
  10164. height: math.unit(6 / 6.765, "feet"),
  10165. name: "Kara's Feet",
  10166. rename: true,
  10167. image: {
  10168. source: "./media/characters/kara/feet.svg"
  10169. }
  10170. },
  10171. },
  10172. [
  10173. {
  10174. name: "Normal",
  10175. height: math.unit(5 + 9 / 12, "feet")
  10176. },
  10177. {
  10178. name: "Macro",
  10179. height: math.unit(174, "feet"),
  10180. default: true
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(18, "feet"),
  10189. weight: math.unit(4050, "lb"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/tyrone/front.svg",
  10193. extra: 2405 / 2270,
  10194. bottom: 182 / 2587
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(18, "feet"),
  10202. default: true
  10203. },
  10204. {
  10205. name: "Macro",
  10206. height: math.unit(300, "feet")
  10207. },
  10208. {
  10209. name: "Megamacro",
  10210. height: math.unit(15, "km")
  10211. },
  10212. {
  10213. name: "Gigamacro",
  10214. height: math.unit(500, "km")
  10215. },
  10216. {
  10217. name: "Teramacro",
  10218. height: math.unit(0.5, "gigameters")
  10219. },
  10220. {
  10221. name: "Omnimacro",
  10222. height: math.unit(1e252, "yottauniverse")
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(7 + 8 / 12, "feet"),
  10231. weight: math.unit(120, "lb"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/danny/front.svg",
  10235. extra: 1490 / 1350
  10236. }
  10237. },
  10238. back: {
  10239. height: math.unit(7 + 8 / 12, "feet"),
  10240. weight: math.unit(120, "lb"),
  10241. name: "Back",
  10242. image: {
  10243. source: "./media/characters/danny/back.svg",
  10244. extra: 1490 / 1350
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(7 + 8 / 12, "feet"),
  10252. default: true
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(3.5, "inches"),
  10261. weight: math.unit(19, "grams"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/mallow/front.svg",
  10265. extra: 471 / 431
  10266. }
  10267. },
  10268. back: {
  10269. height: math.unit(3.5, "inches"),
  10270. weight: math.unit(19, "grams"),
  10271. name: "Back",
  10272. image: {
  10273. source: "./media/characters/mallow/back.svg",
  10274. extra: 471 / 431
  10275. }
  10276. },
  10277. },
  10278. [
  10279. {
  10280. name: "Normal",
  10281. height: math.unit(3.5, "inches"),
  10282. default: true
  10283. },
  10284. ]
  10285. ))
  10286. characterMakers.push(() => makeCharacter(
  10287. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10288. {
  10289. front: {
  10290. height: math.unit(9, "feet"),
  10291. weight: math.unit(230, "kg"),
  10292. name: "Front",
  10293. image: {
  10294. source: "./media/characters/starry-aqua/front.svg"
  10295. }
  10296. },
  10297. back: {
  10298. height: math.unit(9, "feet"),
  10299. weight: math.unit(230, "kg"),
  10300. name: "Back",
  10301. image: {
  10302. source: "./media/characters/starry-aqua/back.svg"
  10303. }
  10304. },
  10305. hand: {
  10306. height: math.unit(9 * 0.1168, "feet"),
  10307. name: "Hand",
  10308. image: {
  10309. source: "./media/characters/starry-aqua/hand.svg"
  10310. }
  10311. },
  10312. foot: {
  10313. height: math.unit(9 * 0.18, "feet"),
  10314. name: "Foot",
  10315. image: {
  10316. source: "./media/characters/starry-aqua/foot.svg"
  10317. }
  10318. }
  10319. },
  10320. [
  10321. {
  10322. name: "Micro",
  10323. height: math.unit(3, "inches")
  10324. },
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(9, "feet")
  10328. },
  10329. {
  10330. name: "Macro",
  10331. height: math.unit(300, "feet"),
  10332. default: true
  10333. },
  10334. {
  10335. name: "Megamacro",
  10336. height: math.unit(3200, "feet")
  10337. }
  10338. ]
  10339. ))
  10340. characterMakers.push(() => makeCharacter(
  10341. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10342. {
  10343. front: {
  10344. height: math.unit(15, "feet"),
  10345. weight: math.unit(5026, "lb"),
  10346. name: "Front",
  10347. image: {
  10348. source: "./media/characters/luka-towers/front.svg",
  10349. extra: 1269/1133,
  10350. bottom: 51/1320
  10351. }
  10352. },
  10353. },
  10354. [
  10355. {
  10356. name: "Normal",
  10357. height: math.unit(15, "feet"),
  10358. default: true
  10359. },
  10360. {
  10361. name: "Minimacro",
  10362. height: math.unit(25, "feet")
  10363. },
  10364. {
  10365. name: "Macro",
  10366. height: math.unit(320, "feet")
  10367. },
  10368. {
  10369. name: "Megamacro",
  10370. height: math.unit(35000, "feet")
  10371. },
  10372. {
  10373. name: "Gigamacro",
  10374. height: math.unit(4000, "miles")
  10375. },
  10376. {
  10377. name: "Teramacro",
  10378. height: math.unit(15000, "miles")
  10379. },
  10380. ]
  10381. ))
  10382. characterMakers.push(() => makeCharacter(
  10383. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10384. {
  10385. front: {
  10386. height: math.unit(6, "feet"),
  10387. weight: math.unit(150, "lb"),
  10388. name: "Front",
  10389. image: {
  10390. source: "./media/characters/natalie-nightring/front.svg",
  10391. extra: 1,
  10392. bottom: 0.06
  10393. }
  10394. },
  10395. },
  10396. [
  10397. {
  10398. name: "Uh Oh",
  10399. height: math.unit(0.1, "mm")
  10400. },
  10401. {
  10402. name: "Small",
  10403. height: math.unit(3, "inches")
  10404. },
  10405. {
  10406. name: "Human Scale",
  10407. height: math.unit(6, "feet")
  10408. },
  10409. {
  10410. name: "Librarian",
  10411. height: math.unit(50, "feet"),
  10412. default: true
  10413. },
  10414. {
  10415. name: "Immense",
  10416. height: math.unit(200, "miles")
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(180, "lbs"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/danni-rosie/front.svg",
  10429. extra: 1260 / 1128,
  10430. bottom: 0.022
  10431. }
  10432. },
  10433. },
  10434. [
  10435. {
  10436. name: "Micro",
  10437. height: math.unit(2, "inches"),
  10438. default: true
  10439. },
  10440. ]
  10441. ))
  10442. characterMakers.push(() => makeCharacter(
  10443. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10444. {
  10445. front: {
  10446. height: math.unit(5 + 9 / 12, "feet"),
  10447. weight: math.unit(220, "lb"),
  10448. name: "Front",
  10449. image: {
  10450. source: "./media/characters/samantha-kruse/front.svg",
  10451. extra: (985 / 935),
  10452. bottom: 0.03
  10453. }
  10454. },
  10455. frontUndressed: {
  10456. height: math.unit(5 + 9 / 12, "feet"),
  10457. weight: math.unit(220, "lb"),
  10458. name: "Front (Undressed)",
  10459. image: {
  10460. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10461. extra: (973 / 923),
  10462. bottom: 0.025
  10463. }
  10464. },
  10465. fat: {
  10466. height: math.unit(5 + 9 / 12, "feet"),
  10467. weight: math.unit(900, "lb"),
  10468. name: "Front (Fat)",
  10469. image: {
  10470. source: "./media/characters/samantha-kruse/fat.svg",
  10471. extra: 2688 / 2561
  10472. }
  10473. },
  10474. },
  10475. [
  10476. {
  10477. name: "Normal",
  10478. height: math.unit(5 + 9 / 12, "feet"),
  10479. default: true
  10480. }
  10481. ]
  10482. ))
  10483. characterMakers.push(() => makeCharacter(
  10484. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10485. {
  10486. back: {
  10487. height: math.unit(5 + 4 / 12, "feet"),
  10488. weight: math.unit(4963, "lb"),
  10489. name: "Back",
  10490. image: {
  10491. source: "./media/characters/amelia-rosie/back.svg",
  10492. extra: 1113 / 963,
  10493. bottom: 0.01
  10494. }
  10495. },
  10496. },
  10497. [
  10498. {
  10499. name: "Level 0",
  10500. height: math.unit(5 + 4 / 12, "feet")
  10501. },
  10502. {
  10503. name: "Level 1",
  10504. height: math.unit(164597, "feet"),
  10505. default: true
  10506. },
  10507. {
  10508. name: "Level 2",
  10509. height: math.unit(956243, "miles")
  10510. },
  10511. {
  10512. name: "Level 3",
  10513. height: math.unit(29421709423, "miles")
  10514. },
  10515. {
  10516. name: "Level 4",
  10517. height: math.unit(154, "lightyears")
  10518. },
  10519. {
  10520. name: "Level 5",
  10521. height: math.unit(4738272, "lightyears")
  10522. },
  10523. {
  10524. name: "Level 6",
  10525. height: math.unit(145787152896, "lightyears")
  10526. },
  10527. ]
  10528. ))
  10529. characterMakers.push(() => makeCharacter(
  10530. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10531. {
  10532. front: {
  10533. height: math.unit(5 + 11 / 12, "feet"),
  10534. weight: math.unit(65, "kg"),
  10535. name: "Front",
  10536. image: {
  10537. source: "./media/characters/rook-kitara/front.svg",
  10538. extra: 1347 / 1274,
  10539. bottom: 0.005
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Totally Unfair",
  10546. height: math.unit(1.8, "mm")
  10547. },
  10548. {
  10549. name: "Lap Rookie",
  10550. height: math.unit(1.4, "feet")
  10551. },
  10552. {
  10553. name: "Normal",
  10554. height: math.unit(5 + 11 / 12, "feet"),
  10555. default: true
  10556. },
  10557. {
  10558. name: "How Did This Happen",
  10559. height: math.unit(80, "miles")
  10560. }
  10561. ]
  10562. ))
  10563. characterMakers.push(() => makeCharacter(
  10564. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10565. {
  10566. front: {
  10567. height: math.unit(7, "feet"),
  10568. weight: math.unit(300, "lb"),
  10569. name: "Front",
  10570. image: {
  10571. source: "./media/characters/pisces/front.svg",
  10572. extra: 2255 / 2115,
  10573. bottom: 0.03
  10574. }
  10575. },
  10576. back: {
  10577. height: math.unit(7, "feet"),
  10578. weight: math.unit(300, "lb"),
  10579. name: "Back",
  10580. image: {
  10581. source: "./media/characters/pisces/back.svg",
  10582. extra: 2146 / 2055,
  10583. bottom: 0.04
  10584. }
  10585. },
  10586. },
  10587. [
  10588. {
  10589. name: "Normal",
  10590. height: math.unit(7, "feet"),
  10591. default: true
  10592. },
  10593. {
  10594. name: "Swimming Pool",
  10595. height: math.unit(12.2, "meters")
  10596. },
  10597. {
  10598. name: "Olympic Swimming Pool",
  10599. height: math.unit(56.3, "meters")
  10600. },
  10601. {
  10602. name: "Lake Superior",
  10603. height: math.unit(93900, "meters")
  10604. },
  10605. {
  10606. name: "Mediterranean Sea",
  10607. height: math.unit(644457, "meters")
  10608. },
  10609. {
  10610. name: "World's Oceans",
  10611. height: math.unit(4567491, "meters")
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10617. {
  10618. front: {
  10619. height: math.unit(2.3, "meters"),
  10620. weight: math.unit(120, "kg"),
  10621. name: "Front",
  10622. image: {
  10623. source: "./media/characters/zelas/front.svg"
  10624. }
  10625. },
  10626. side: {
  10627. height: math.unit(2.3, "meters"),
  10628. weight: math.unit(120, "kg"),
  10629. name: "Side",
  10630. image: {
  10631. source: "./media/characters/zelas/side.svg"
  10632. }
  10633. },
  10634. back: {
  10635. height: math.unit(2.3, "meters"),
  10636. weight: math.unit(120, "kg"),
  10637. name: "Back",
  10638. image: {
  10639. source: "./media/characters/zelas/back.svg"
  10640. }
  10641. },
  10642. foot: {
  10643. height: math.unit(1.116, "feet"),
  10644. name: "Foot",
  10645. image: {
  10646. source: "./media/characters/zelas/foot.svg"
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(2.3, "meters")
  10654. },
  10655. {
  10656. name: "Macro",
  10657. height: math.unit(30, "meters"),
  10658. default: true
  10659. },
  10660. ]
  10661. ))
  10662. characterMakers.push(() => makeCharacter(
  10663. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10664. {
  10665. front: {
  10666. height: math.unit(1, "inch"),
  10667. weight: math.unit(0.21, "grams"),
  10668. name: "Front",
  10669. image: {
  10670. source: "./media/characters/talbot/front.svg",
  10671. extra: 594 / 544
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Micro",
  10678. height: math.unit(1, "inch"),
  10679. default: true
  10680. },
  10681. ]
  10682. ))
  10683. characterMakers.push(() => makeCharacter(
  10684. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10685. {
  10686. front: {
  10687. height: math.unit(3 + 3 / 12, "feet"),
  10688. weight: math.unit(51.8, "lb"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/fliss/front.svg",
  10692. extra: 840 / 640
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Teeny Tiny",
  10699. height: math.unit(1, "mm")
  10700. },
  10701. {
  10702. name: "Small",
  10703. height: math.unit(1, "inch"),
  10704. default: true
  10705. },
  10706. {
  10707. name: "Standard Sylveon",
  10708. height: math.unit(3 + 3 / 12, "feet")
  10709. },
  10710. {
  10711. name: "Large Nuisance",
  10712. height: math.unit(33, "feet")
  10713. },
  10714. {
  10715. name: "City Filler",
  10716. height: math.unit(3000, "feet")
  10717. },
  10718. {
  10719. name: "New Horizon",
  10720. height: math.unit(6000, "miles")
  10721. },
  10722. ]
  10723. ))
  10724. characterMakers.push(() => makeCharacter(
  10725. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10726. {
  10727. front: {
  10728. height: math.unit(5, "cm"),
  10729. weight: math.unit(1.94, "g"),
  10730. name: "Front",
  10731. image: {
  10732. source: "./media/characters/fleta/front.svg",
  10733. extra: 835 / 803
  10734. }
  10735. },
  10736. back: {
  10737. height: math.unit(5, "cm"),
  10738. weight: math.unit(1.94, "g"),
  10739. name: "Back",
  10740. image: {
  10741. source: "./media/characters/fleta/back.svg",
  10742. extra: 835 / 803
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Micro",
  10749. height: math.unit(5, "cm"),
  10750. default: true
  10751. },
  10752. ]
  10753. ))
  10754. characterMakers.push(() => makeCharacter(
  10755. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10756. {
  10757. front: {
  10758. height: math.unit(6, "feet"),
  10759. weight: math.unit(225, "lb"),
  10760. name: "Front",
  10761. image: {
  10762. source: "./media/characters/dominic/front.svg",
  10763. extra: 1770 / 1620,
  10764. bottom: 0.025
  10765. }
  10766. },
  10767. back: {
  10768. height: math.unit(6, "feet"),
  10769. weight: math.unit(225, "lb"),
  10770. name: "Back",
  10771. image: {
  10772. source: "./media/characters/dominic/back.svg",
  10773. extra: 1745 / 1620,
  10774. bottom: 0.065
  10775. }
  10776. },
  10777. },
  10778. [
  10779. {
  10780. name: "Nano",
  10781. height: math.unit(0.1, "mm")
  10782. },
  10783. {
  10784. name: "Micro-",
  10785. height: math.unit(1, "mm")
  10786. },
  10787. {
  10788. name: "Micro",
  10789. height: math.unit(4, "inches")
  10790. },
  10791. {
  10792. name: "Normal",
  10793. height: math.unit(6 + 4 / 12, "feet"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "Macro",
  10798. height: math.unit(115, "feet")
  10799. },
  10800. {
  10801. name: "Macro+",
  10802. height: math.unit(955, "feet")
  10803. },
  10804. {
  10805. name: "Megamacro",
  10806. height: math.unit(8990, "feet")
  10807. },
  10808. {
  10809. name: "Gigmacro",
  10810. height: math.unit(9310, "miles")
  10811. },
  10812. {
  10813. name: "Teramacro",
  10814. height: math.unit(1567005010, "miles")
  10815. },
  10816. {
  10817. name: "Examacro",
  10818. height: math.unit(1425, "parsecs")
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10824. {
  10825. front: {
  10826. height: math.unit(400, "feet"),
  10827. weight: math.unit(44444444, "lb"),
  10828. name: "Front",
  10829. image: {
  10830. source: "./media/characters/major-colonel/front.svg"
  10831. }
  10832. },
  10833. back: {
  10834. height: math.unit(400, "feet"),
  10835. weight: math.unit(44444444, "lb"),
  10836. name: "Back",
  10837. image: {
  10838. source: "./media/characters/major-colonel/back.svg"
  10839. }
  10840. },
  10841. },
  10842. [
  10843. {
  10844. name: "Macro",
  10845. height: math.unit(400, "feet"),
  10846. default: true
  10847. },
  10848. ]
  10849. ))
  10850. characterMakers.push(() => makeCharacter(
  10851. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10852. {
  10853. catFront: {
  10854. height: math.unit(6, "feet"),
  10855. weight: math.unit(120, "lb"),
  10856. name: "Front (Cat Side)",
  10857. image: {
  10858. source: "./media/characters/axel-lycan/cat-front.svg",
  10859. extra: 430 / 402,
  10860. bottom: 43 / 472.35
  10861. }
  10862. },
  10863. catBack: {
  10864. height: math.unit(6, "feet"),
  10865. weight: math.unit(120, "lb"),
  10866. name: "Back (Cat Side)",
  10867. image: {
  10868. source: "./media/characters/axel-lycan/cat-back.svg",
  10869. extra: 447 / 419,
  10870. bottom: 23.3 / 469
  10871. }
  10872. },
  10873. wolfFront: {
  10874. height: math.unit(6, "feet"),
  10875. weight: math.unit(120, "lb"),
  10876. name: "Front (Wolf Side)",
  10877. image: {
  10878. source: "./media/characters/axel-lycan/wolf-front.svg",
  10879. extra: 485 / 456,
  10880. bottom: 19 / 504
  10881. }
  10882. },
  10883. wolfBack: {
  10884. height: math.unit(6, "feet"),
  10885. weight: math.unit(120, "lb"),
  10886. name: "Back (Wolf Side)",
  10887. image: {
  10888. source: "./media/characters/axel-lycan/wolf-back.svg",
  10889. extra: 475 / 438,
  10890. bottom: 39.2 / 514
  10891. }
  10892. },
  10893. },
  10894. [
  10895. {
  10896. name: "Macro",
  10897. height: math.unit(1, "km"),
  10898. default: true
  10899. },
  10900. ]
  10901. ))
  10902. characterMakers.push(() => makeCharacter(
  10903. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10904. {
  10905. front: {
  10906. height: math.unit(5 + 9 / 12, "feet"),
  10907. weight: math.unit(175, "lb"),
  10908. name: "Front",
  10909. image: {
  10910. source: "./media/characters/vanrel-hyena/front.svg",
  10911. extra: 1086 / 1010,
  10912. bottom: 0.04
  10913. }
  10914. },
  10915. },
  10916. [
  10917. {
  10918. name: "Normal",
  10919. height: math.unit(5 + 9 / 12, "feet"),
  10920. default: true
  10921. },
  10922. ]
  10923. ))
  10924. characterMakers.push(() => makeCharacter(
  10925. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10926. {
  10927. front: {
  10928. height: math.unit(6, "feet"),
  10929. weight: math.unit(103, "lb"),
  10930. name: "Front",
  10931. image: {
  10932. source: "./media/characters/abbott-absol/front.svg",
  10933. extra: 765/694,
  10934. bottom: 47/812
  10935. }
  10936. },
  10937. },
  10938. [
  10939. {
  10940. name: "Megamicro",
  10941. height: math.unit(0.1, "mm")
  10942. },
  10943. {
  10944. name: "Micro",
  10945. height: math.unit(1, "inch")
  10946. },
  10947. {
  10948. name: "Normal",
  10949. height: math.unit(6, "feet"),
  10950. default: true
  10951. },
  10952. ]
  10953. ))
  10954. characterMakers.push(() => makeCharacter(
  10955. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10956. {
  10957. front: {
  10958. height: math.unit(6, "feet"),
  10959. weight: math.unit(264, "lb"),
  10960. name: "Front",
  10961. image: {
  10962. source: "./media/characters/hector/front.svg",
  10963. extra: 2280 / 2130,
  10964. bottom: 0.07
  10965. }
  10966. },
  10967. },
  10968. [
  10969. {
  10970. name: "Normal",
  10971. height: math.unit(12.25, "foot"),
  10972. default: true
  10973. },
  10974. {
  10975. name: "Macro",
  10976. height: math.unit(160, "feet")
  10977. },
  10978. ]
  10979. ))
  10980. characterMakers.push(() => makeCharacter(
  10981. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10982. {
  10983. front: {
  10984. height: math.unit(6, "feet"),
  10985. weight: math.unit(150, "lb"),
  10986. name: "Front",
  10987. image: {
  10988. source: "./media/characters/sal/front.svg",
  10989. extra: 1846 / 1699,
  10990. bottom: 0.04
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Megamacro",
  10997. height: math.unit(10, "miles"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11004. {
  11005. front: {
  11006. height: math.unit(3, "meters"),
  11007. weight: math.unit(450, "kg"),
  11008. name: "front",
  11009. image: {
  11010. source: "./media/characters/ranger/front.svg",
  11011. extra: 2401 / 2243,
  11012. bottom: 0.05
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(3, "meters"),
  11020. default: true
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(14, "feet"),
  11029. weight: math.unit(800, "kg"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/theresa/front.svg",
  11033. extra: 3575 / 3346,
  11034. bottom: 0.03
  11035. }
  11036. },
  11037. },
  11038. [
  11039. {
  11040. name: "Normal",
  11041. height: math.unit(14, "feet"),
  11042. default: true
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11048. {
  11049. front: {
  11050. height: math.unit(6, "feet"),
  11051. weight: math.unit(3, "kg"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/ine/front.svg",
  11055. extra: 678 / 539,
  11056. bottom: 0.023
  11057. }
  11058. },
  11059. },
  11060. [
  11061. {
  11062. name: "Normal",
  11063. height: math.unit(2.265, "feet"),
  11064. default: true
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11070. {
  11071. front: {
  11072. height: math.unit(5, "feet"),
  11073. weight: math.unit(30, "kg"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/vial/front.svg",
  11077. extra: 1365 / 1277,
  11078. bottom: 0.04
  11079. }
  11080. },
  11081. },
  11082. [
  11083. {
  11084. name: "Normal",
  11085. height: math.unit(5, "feet"),
  11086. default: true
  11087. },
  11088. ]
  11089. ))
  11090. characterMakers.push(() => makeCharacter(
  11091. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11092. {
  11093. side: {
  11094. height: math.unit(3.4, "meters"),
  11095. weight: math.unit(1000, "lb"),
  11096. name: "Side",
  11097. image: {
  11098. source: "./media/characters/rovoska/side.svg",
  11099. extra: 4403 / 1515
  11100. }
  11101. },
  11102. },
  11103. [
  11104. {
  11105. name: "Normal",
  11106. height: math.unit(3.4, "meters"),
  11107. default: true
  11108. },
  11109. ]
  11110. ))
  11111. characterMakers.push(() => makeCharacter(
  11112. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11113. {
  11114. front: {
  11115. height: math.unit(8, "feet"),
  11116. weight: math.unit(315, "lb"),
  11117. name: "Front",
  11118. image: {
  11119. source: "./media/characters/gunner-rotthbauer/front.svg"
  11120. }
  11121. },
  11122. back: {
  11123. height: math.unit(8, "feet"),
  11124. weight: math.unit(315, "lb"),
  11125. name: "Back",
  11126. image: {
  11127. source: "./media/characters/gunner-rotthbauer/back.svg"
  11128. }
  11129. },
  11130. },
  11131. [
  11132. {
  11133. name: "Micro",
  11134. height: math.unit(3.5, "inches")
  11135. },
  11136. {
  11137. name: "Normal",
  11138. height: math.unit(8, "feet"),
  11139. default: true
  11140. },
  11141. {
  11142. name: "Macro",
  11143. height: math.unit(250, "feet")
  11144. },
  11145. {
  11146. name: "Megamacro",
  11147. height: math.unit(1, "AU")
  11148. },
  11149. ]
  11150. ))
  11151. characterMakers.push(() => makeCharacter(
  11152. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11153. {
  11154. front: {
  11155. height: math.unit(5 + 5 / 12, "feet"),
  11156. weight: math.unit(140, "lb"),
  11157. name: "Front",
  11158. image: {
  11159. source: "./media/characters/allatia/front.svg",
  11160. extra: 1227 / 1180,
  11161. bottom: 0.027
  11162. }
  11163. },
  11164. },
  11165. [
  11166. {
  11167. name: "Normal",
  11168. height: math.unit(5 + 5 / 12, "feet")
  11169. },
  11170. {
  11171. name: "Macro",
  11172. height: math.unit(250, "feet"),
  11173. default: true
  11174. },
  11175. {
  11176. name: "Megamacro",
  11177. height: math.unit(8, "miles")
  11178. }
  11179. ]
  11180. ))
  11181. characterMakers.push(() => makeCharacter(
  11182. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11183. {
  11184. front: {
  11185. height: math.unit(6, "feet"),
  11186. weight: math.unit(120, "lb"),
  11187. name: "Front",
  11188. image: {
  11189. source: "./media/characters/tene/front.svg",
  11190. extra: 814/750,
  11191. bottom: 36/850
  11192. }
  11193. },
  11194. stomping: {
  11195. height: math.unit(2.025, "meters"),
  11196. weight: math.unit(120, "lb"),
  11197. name: "Stomping",
  11198. image: {
  11199. source: "./media/characters/tene/stomping.svg",
  11200. extra: 885/821,
  11201. bottom: 15/900
  11202. }
  11203. },
  11204. sitting: {
  11205. height: math.unit(1, "meter"),
  11206. weight: math.unit(120, "lb"),
  11207. name: "Sitting",
  11208. image: {
  11209. source: "./media/characters/tene/sitting.svg",
  11210. extra: 396/366,
  11211. bottom: 79/475
  11212. }
  11213. },
  11214. smiling: {
  11215. height: math.unit(1.2, "feet"),
  11216. name: "Smiling",
  11217. image: {
  11218. source: "./media/characters/tene/smiling.svg",
  11219. extra: 1364/1071,
  11220. bottom: 0/1364
  11221. }
  11222. },
  11223. smug: {
  11224. height: math.unit(1.3, "feet"),
  11225. name: "Smug",
  11226. image: {
  11227. source: "./media/characters/tene/smug.svg",
  11228. extra: 1323/1082,
  11229. bottom: 0/1323
  11230. }
  11231. },
  11232. feral: {
  11233. height: math.unit(3.9, "feet"),
  11234. weight: math.unit(250, "lb"),
  11235. name: "Feral",
  11236. image: {
  11237. source: "./media/characters/tene/feral.svg",
  11238. extra: 717 / 458,
  11239. bottom: 0.179
  11240. }
  11241. },
  11242. },
  11243. [
  11244. {
  11245. name: "Normal",
  11246. height: math.unit(6, "feet")
  11247. },
  11248. {
  11249. name: "Macro",
  11250. height: math.unit(300, "feet"),
  11251. default: true
  11252. },
  11253. {
  11254. name: "Megamacro",
  11255. height: math.unit(5, "miles")
  11256. },
  11257. ]
  11258. ))
  11259. characterMakers.push(() => makeCharacter(
  11260. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11261. {
  11262. side: {
  11263. height: math.unit(6, "feet"),
  11264. name: "Side",
  11265. image: {
  11266. source: "./media/characters/evander/side.svg",
  11267. extra: 877 / 477
  11268. }
  11269. },
  11270. },
  11271. [
  11272. {
  11273. name: "Normal",
  11274. height: math.unit(0.83, "meters"),
  11275. default: true
  11276. },
  11277. ]
  11278. ))
  11279. characterMakers.push(() => makeCharacter(
  11280. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11281. {
  11282. front: {
  11283. height: math.unit(12, "feet"),
  11284. weight: math.unit(1000, "lb"),
  11285. name: "Front",
  11286. image: {
  11287. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11288. extra: 1762 / 1611
  11289. }
  11290. },
  11291. back: {
  11292. height: math.unit(12, "feet"),
  11293. weight: math.unit(1000, "lb"),
  11294. name: "Back",
  11295. image: {
  11296. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11297. extra: 1762 / 1611
  11298. }
  11299. },
  11300. },
  11301. [
  11302. {
  11303. name: "Normal",
  11304. height: math.unit(12, "feet"),
  11305. default: true
  11306. },
  11307. {
  11308. name: "Kaiju",
  11309. height: math.unit(150, "feet")
  11310. },
  11311. ]
  11312. ))
  11313. characterMakers.push(() => makeCharacter(
  11314. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11315. {
  11316. front: {
  11317. height: math.unit(6, "feet"),
  11318. weight: math.unit(150, "lb"),
  11319. name: "Front",
  11320. image: {
  11321. source: "./media/characters/zero-alurus/front.svg"
  11322. }
  11323. },
  11324. back: {
  11325. height: math.unit(6, "feet"),
  11326. weight: math.unit(150, "lb"),
  11327. name: "Back",
  11328. image: {
  11329. source: "./media/characters/zero-alurus/back.svg"
  11330. }
  11331. },
  11332. },
  11333. [
  11334. {
  11335. name: "Normal",
  11336. height: math.unit(5 + 10 / 12, "feet")
  11337. },
  11338. {
  11339. name: "Macro",
  11340. height: math.unit(60, "feet"),
  11341. default: true
  11342. },
  11343. {
  11344. name: "Macro+",
  11345. height: math.unit(450, "feet")
  11346. },
  11347. ]
  11348. ))
  11349. characterMakers.push(() => makeCharacter(
  11350. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11351. {
  11352. front: {
  11353. height: math.unit(6, "feet"),
  11354. weight: math.unit(200, "lb"),
  11355. name: "Front",
  11356. image: {
  11357. source: "./media/characters/mega-shi/front.svg",
  11358. extra: 1279 / 1250,
  11359. bottom: 0.02
  11360. }
  11361. },
  11362. back: {
  11363. height: math.unit(6, "feet"),
  11364. weight: math.unit(200, "lb"),
  11365. name: "Back",
  11366. image: {
  11367. source: "./media/characters/mega-shi/back.svg",
  11368. extra: 1279 / 1250,
  11369. bottom: 0.02
  11370. }
  11371. },
  11372. },
  11373. [
  11374. {
  11375. name: "Micro",
  11376. height: math.unit(16 + 6 / 12, "feet")
  11377. },
  11378. {
  11379. name: "Third Dimension",
  11380. height: math.unit(40, "meters")
  11381. },
  11382. {
  11383. name: "Normal",
  11384. height: math.unit(660, "feet"),
  11385. default: true
  11386. },
  11387. {
  11388. name: "Megamacro",
  11389. height: math.unit(10, "miles")
  11390. },
  11391. {
  11392. name: "Planetary Launch",
  11393. height: math.unit(500, "miles")
  11394. },
  11395. {
  11396. name: "Interstellar",
  11397. height: math.unit(1e9, "miles")
  11398. },
  11399. {
  11400. name: "Leaving the Universe",
  11401. height: math.unit(1, "gigaparsec")
  11402. },
  11403. {
  11404. name: "Travelling Universes",
  11405. height: math.unit(30e15, "parsecs")
  11406. },
  11407. ]
  11408. ))
  11409. characterMakers.push(() => makeCharacter(
  11410. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11411. {
  11412. front: {
  11413. height: math.unit(5 + 4/12, "feet"),
  11414. weight: math.unit(120, "lb"),
  11415. name: "Front",
  11416. image: {
  11417. source: "./media/characters/odyssey/front.svg",
  11418. extra: 1747/1571,
  11419. bottom: 47/1794
  11420. }
  11421. },
  11422. side: {
  11423. height: math.unit(5.1, "feet"),
  11424. weight: math.unit(120, "lb"),
  11425. name: "Side",
  11426. image: {
  11427. source: "./media/characters/odyssey/side.svg",
  11428. extra: 1847/1619,
  11429. bottom: 47/1894
  11430. }
  11431. },
  11432. lounging: {
  11433. height: math.unit(1.464, "feet"),
  11434. weight: math.unit(120, "lb"),
  11435. name: "Lounging",
  11436. image: {
  11437. source: "./media/characters/odyssey/lounging.svg",
  11438. extra: 1235/837,
  11439. bottom: 551/1786
  11440. }
  11441. },
  11442. },
  11443. [
  11444. {
  11445. name: "Normal",
  11446. height: math.unit(5 + 4 / 12, "feet")
  11447. },
  11448. {
  11449. name: "Macro",
  11450. height: math.unit(1, "km")
  11451. },
  11452. {
  11453. name: "Megamacro",
  11454. height: math.unit(3000, "km")
  11455. },
  11456. {
  11457. name: "Gigamacro",
  11458. height: math.unit(1, "AU"),
  11459. default: true
  11460. },
  11461. {
  11462. name: "Omniversal",
  11463. height: math.unit(100e14, "lightyears")
  11464. },
  11465. ]
  11466. ))
  11467. characterMakers.push(() => makeCharacter(
  11468. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11469. {
  11470. front: {
  11471. height: math.unit(5 + 10/12, "feet"),
  11472. name: "Front",
  11473. image: {
  11474. source: "./media/characters/mekuto/front.svg",
  11475. extra: 875/835,
  11476. bottom: 46/921
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Minimicro",
  11483. height: math.unit(0.2, "inches")
  11484. },
  11485. {
  11486. name: "Micro",
  11487. height: math.unit(1.5, "inches")
  11488. },
  11489. {
  11490. name: "Normal",
  11491. height: math.unit(5 + 10 / 12, "feet"),
  11492. default: true
  11493. },
  11494. {
  11495. name: "Minimacro",
  11496. height: math.unit(17 + 9 / 12, "feet")
  11497. },
  11498. {
  11499. name: "Macro",
  11500. height: math.unit(177.5, "feet")
  11501. },
  11502. {
  11503. name: "Megamacro",
  11504. height: math.unit(152, "miles")
  11505. },
  11506. ]
  11507. ))
  11508. characterMakers.push(() => makeCharacter(
  11509. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11510. {
  11511. front: {
  11512. height: math.unit(6.5, "inches"),
  11513. weight: math.unit(13, "oz"),
  11514. name: "Front",
  11515. image: {
  11516. source: "./media/characters/dafydd-tomos/front.svg",
  11517. extra: 2990 / 2603,
  11518. bottom: 0.03
  11519. }
  11520. },
  11521. },
  11522. [
  11523. {
  11524. name: "Micro",
  11525. height: math.unit(6.5, "inches"),
  11526. default: true
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11532. {
  11533. front: {
  11534. height: math.unit(6, "feet"),
  11535. weight: math.unit(150, "lb"),
  11536. name: "Front",
  11537. image: {
  11538. source: "./media/characters/splinter/front.svg",
  11539. extra: 2990 / 2882,
  11540. bottom: 0.04
  11541. }
  11542. },
  11543. back: {
  11544. height: math.unit(6, "feet"),
  11545. weight: math.unit(150, "lb"),
  11546. name: "Back",
  11547. image: {
  11548. source: "./media/characters/splinter/back.svg",
  11549. extra: 2990 / 2882,
  11550. bottom: 0.04
  11551. }
  11552. },
  11553. },
  11554. [
  11555. {
  11556. name: "Normal",
  11557. height: math.unit(6, "feet")
  11558. },
  11559. {
  11560. name: "Macro",
  11561. height: math.unit(230, "meters"),
  11562. default: true
  11563. },
  11564. ]
  11565. ))
  11566. characterMakers.push(() => makeCharacter(
  11567. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11568. {
  11569. front: {
  11570. height: math.unit(4 + 10 / 12, "feet"),
  11571. weight: math.unit(480, "lb"),
  11572. name: "Front",
  11573. image: {
  11574. source: "./media/characters/snow-gabumon/front.svg",
  11575. extra: 1140 / 963,
  11576. bottom: 0.058
  11577. }
  11578. },
  11579. back: {
  11580. height: math.unit(4 + 10 / 12, "feet"),
  11581. weight: math.unit(480, "lb"),
  11582. name: "Back",
  11583. image: {
  11584. source: "./media/characters/snow-gabumon/back.svg",
  11585. extra: 1115 / 962,
  11586. bottom: 0.041
  11587. }
  11588. },
  11589. frontUndresed: {
  11590. height: math.unit(4 + 10 / 12, "feet"),
  11591. weight: math.unit(480, "lb"),
  11592. name: "Front (Undressed)",
  11593. image: {
  11594. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11595. extra: 1061 / 960,
  11596. bottom: 0.045
  11597. }
  11598. },
  11599. },
  11600. [
  11601. {
  11602. name: "Micro",
  11603. height: math.unit(1, "inch")
  11604. },
  11605. {
  11606. name: "Normal",
  11607. height: math.unit(4 + 10 / 12, "feet"),
  11608. default: true
  11609. },
  11610. {
  11611. name: "Macro",
  11612. height: math.unit(200, "feet")
  11613. },
  11614. {
  11615. name: "Megamacro",
  11616. height: math.unit(120, "miles")
  11617. },
  11618. {
  11619. name: "Gigamacro",
  11620. height: math.unit(9800, "miles")
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11626. {
  11627. front: {
  11628. height: math.unit(1.7, "meters"),
  11629. weight: math.unit(140, "lb"),
  11630. name: "Front",
  11631. image: {
  11632. source: "./media/characters/moody/front.svg",
  11633. extra: 3226 / 3007,
  11634. bottom: 0.087
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Micro",
  11641. height: math.unit(1, "mm")
  11642. },
  11643. {
  11644. name: "Normal",
  11645. height: math.unit(1.7, "meters"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Macro",
  11650. height: math.unit(80, "meters")
  11651. },
  11652. {
  11653. name: "Macro+",
  11654. height: math.unit(500, "meters")
  11655. },
  11656. ]
  11657. ))
  11658. characterMakers.push(() => makeCharacter(
  11659. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11660. {
  11661. front: {
  11662. height: math.unit(6, "feet"),
  11663. weight: math.unit(150, "lb"),
  11664. name: "Front",
  11665. image: {
  11666. source: "./media/characters/zyas/front.svg",
  11667. extra: 1180 / 1120,
  11668. bottom: 0.045
  11669. }
  11670. },
  11671. },
  11672. [
  11673. {
  11674. name: "Normal",
  11675. height: math.unit(10, "feet"),
  11676. default: true
  11677. },
  11678. {
  11679. name: "Macro",
  11680. height: math.unit(500, "feet")
  11681. },
  11682. {
  11683. name: "Megamacro",
  11684. height: math.unit(5, "miles")
  11685. },
  11686. {
  11687. name: "Teramacro",
  11688. height: math.unit(150000, "miles")
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(6, "feet"),
  11697. weight: math.unit(150, "lb"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/cuon/front.svg",
  11701. extra: 1390 / 1320,
  11702. bottom: 0.008
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Micro",
  11709. height: math.unit(3, "inches")
  11710. },
  11711. {
  11712. name: "Normal",
  11713. height: math.unit(18 + 9 / 12, "feet"),
  11714. default: true
  11715. },
  11716. {
  11717. name: "Macro",
  11718. height: math.unit(360, "feet")
  11719. },
  11720. {
  11721. name: "Megamacro",
  11722. height: math.unit(360, "miles")
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(2.4, "meters"),
  11731. weight: math.unit(70, "kg"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/nyanuxk/front.svg",
  11735. extra: 1172 / 1084,
  11736. bottom: 0.065
  11737. }
  11738. },
  11739. side: {
  11740. height: math.unit(2.4, "meters"),
  11741. weight: math.unit(70, "kg"),
  11742. name: "Side",
  11743. image: {
  11744. source: "./media/characters/nyanuxk/side.svg",
  11745. extra: 1190 / 1132,
  11746. bottom: 0.007
  11747. }
  11748. },
  11749. back: {
  11750. height: math.unit(2.4, "meters"),
  11751. weight: math.unit(70, "kg"),
  11752. name: "Back",
  11753. image: {
  11754. source: "./media/characters/nyanuxk/back.svg",
  11755. extra: 1200 / 1141,
  11756. bottom: 0.015
  11757. }
  11758. },
  11759. foot: {
  11760. height: math.unit(0.52, "meters"),
  11761. name: "Foot",
  11762. image: {
  11763. source: "./media/characters/nyanuxk/foot.svg"
  11764. }
  11765. },
  11766. },
  11767. [
  11768. {
  11769. name: "Micro",
  11770. height: math.unit(2, "cm")
  11771. },
  11772. {
  11773. name: "Normal",
  11774. height: math.unit(2.4, "meters"),
  11775. default: true
  11776. },
  11777. {
  11778. name: "Smaller Macro",
  11779. height: math.unit(120, "meters")
  11780. },
  11781. {
  11782. name: "Bigger Macro",
  11783. height: math.unit(1.2, "km")
  11784. },
  11785. {
  11786. name: "Megamacro",
  11787. height: math.unit(15, "kilometers")
  11788. },
  11789. {
  11790. name: "Gigamacro",
  11791. height: math.unit(2000, "km")
  11792. },
  11793. {
  11794. name: "Teramacro",
  11795. height: math.unit(500000, "km")
  11796. },
  11797. ]
  11798. ))
  11799. characterMakers.push(() => makeCharacter(
  11800. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11801. {
  11802. side: {
  11803. height: math.unit(6, "feet"),
  11804. name: "Side",
  11805. image: {
  11806. source: "./media/characters/ailbhe/side.svg",
  11807. extra: 757 / 464,
  11808. bottom: 0.041
  11809. }
  11810. },
  11811. },
  11812. [
  11813. {
  11814. name: "Normal",
  11815. height: math.unit(1.07, "meters"),
  11816. default: true
  11817. },
  11818. ]
  11819. ))
  11820. characterMakers.push(() => makeCharacter(
  11821. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11822. {
  11823. front: {
  11824. height: math.unit(6, "feet"),
  11825. weight: math.unit(120, "kg"),
  11826. name: "Front",
  11827. image: {
  11828. source: "./media/characters/zevulfius/front.svg",
  11829. extra: 965 / 903
  11830. }
  11831. },
  11832. side: {
  11833. height: math.unit(6, "feet"),
  11834. weight: math.unit(120, "kg"),
  11835. name: "Side",
  11836. image: {
  11837. source: "./media/characters/zevulfius/side.svg",
  11838. extra: 939 / 900
  11839. }
  11840. },
  11841. back: {
  11842. height: math.unit(6, "feet"),
  11843. weight: math.unit(120, "kg"),
  11844. name: "Back",
  11845. image: {
  11846. source: "./media/characters/zevulfius/back.svg",
  11847. extra: 918 / 854,
  11848. bottom: 0.005
  11849. }
  11850. },
  11851. foot: {
  11852. height: math.unit(6 / 3.72, "feet"),
  11853. name: "Foot",
  11854. image: {
  11855. source: "./media/characters/zevulfius/foot.svg"
  11856. }
  11857. },
  11858. },
  11859. [
  11860. {
  11861. name: "Macro",
  11862. height: math.unit(750, "meters")
  11863. },
  11864. {
  11865. name: "Megamacro",
  11866. height: math.unit(20, "km"),
  11867. default: true
  11868. },
  11869. {
  11870. name: "Gigamacro",
  11871. height: math.unit(2000, "km")
  11872. },
  11873. {
  11874. name: "Teramacro",
  11875. height: math.unit(250000, "km")
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(100, "feet"),
  11884. weight: math.unit(350, "kg"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/rikes/front.svg",
  11888. extra: 1565 / 1483,
  11889. bottom: 0.017
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Macro",
  11896. height: math.unit(100, "feet"),
  11897. default: true
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(8, "feet"),
  11906. weight: math.unit(356, "lb"),
  11907. name: "Front",
  11908. image: {
  11909. source: "./media/characters/adam-silver-mane/front.svg",
  11910. extra: 1036/937,
  11911. bottom: 63/1099
  11912. }
  11913. },
  11914. side: {
  11915. height: math.unit(8, "feet"),
  11916. weight: math.unit(356, "lb"),
  11917. name: "Side",
  11918. image: {
  11919. source: "./media/characters/adam-silver-mane/side.svg",
  11920. extra: 997/901,
  11921. bottom: 59/1056
  11922. }
  11923. },
  11924. frontNsfw: {
  11925. height: math.unit(8, "feet"),
  11926. weight: math.unit(356, "lb"),
  11927. name: "Front (NSFW)",
  11928. image: {
  11929. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11930. extra: 1036/937,
  11931. bottom: 63/1099
  11932. }
  11933. },
  11934. sideNsfw: {
  11935. height: math.unit(8, "feet"),
  11936. weight: math.unit(356, "lb"),
  11937. name: "Side (NSFW)",
  11938. image: {
  11939. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11940. extra: 997/901,
  11941. bottom: 59/1056
  11942. }
  11943. },
  11944. dick: {
  11945. height: math.unit(2.1, "feet"),
  11946. name: "Dick",
  11947. image: {
  11948. source: "./media/characters/adam-silver-mane/dick.svg"
  11949. }
  11950. },
  11951. taur: {
  11952. height: math.unit(16, "feet"),
  11953. weight: math.unit(1500, "kg"),
  11954. name: "Taur",
  11955. image: {
  11956. source: "./media/characters/adam-silver-mane/taur.svg",
  11957. extra: 1713 / 1571,
  11958. bottom: 0.01
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Normal",
  11965. height: math.unit(8, "feet")
  11966. },
  11967. {
  11968. name: "Minimacro",
  11969. height: math.unit(80, "feet")
  11970. },
  11971. {
  11972. name: "MDA",
  11973. height: math.unit(80, "meters")
  11974. },
  11975. {
  11976. name: "Macro",
  11977. height: math.unit(800, "feet"),
  11978. default: true
  11979. },
  11980. {
  11981. name: "Megamacro",
  11982. height: math.unit(8000, "feet")
  11983. },
  11984. {
  11985. name: "Gigamacro",
  11986. height: math.unit(800, "miles")
  11987. },
  11988. {
  11989. name: "Teramacro",
  11990. height: math.unit(80000, "miles")
  11991. },
  11992. {
  11993. name: "Celestial",
  11994. height: math.unit(8e6, "miles")
  11995. },
  11996. {
  11997. name: "Star Dragon",
  11998. height: math.unit(800000, "parsecs")
  11999. },
  12000. {
  12001. name: "Godly",
  12002. height: math.unit(800, "teraparsecs")
  12003. },
  12004. ]
  12005. ))
  12006. characterMakers.push(() => makeCharacter(
  12007. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12008. {
  12009. front: {
  12010. height: math.unit(6, "feet"),
  12011. weight: math.unit(150, "lb"),
  12012. name: "Front",
  12013. image: {
  12014. source: "./media/characters/ky'owin/front.svg",
  12015. extra: 3862/3053,
  12016. bottom: 74/3936
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Normal",
  12023. height: math.unit(6 + 8 / 12, "feet")
  12024. },
  12025. {
  12026. name: "Large",
  12027. height: math.unit(68, "feet")
  12028. },
  12029. {
  12030. name: "Macro",
  12031. height: math.unit(132, "feet")
  12032. },
  12033. {
  12034. name: "Macro+",
  12035. height: math.unit(340, "feet")
  12036. },
  12037. {
  12038. name: "Macro++",
  12039. height: math.unit(680, "feet"),
  12040. default: true
  12041. },
  12042. {
  12043. name: "Megamacro",
  12044. height: math.unit(1, "mile")
  12045. },
  12046. {
  12047. name: "Megamacro+",
  12048. height: math.unit(10, "miles")
  12049. },
  12050. ]
  12051. ))
  12052. characterMakers.push(() => makeCharacter(
  12053. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12054. {
  12055. front: {
  12056. height: math.unit(4, "feet"),
  12057. weight: math.unit(50, "lb"),
  12058. name: "Front",
  12059. image: {
  12060. source: "./media/characters/mal/front.svg",
  12061. extra: 785 / 724,
  12062. bottom: 0.07
  12063. }
  12064. },
  12065. },
  12066. [
  12067. {
  12068. name: "Micro",
  12069. height: math.unit(4, "inches")
  12070. },
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(4, "feet"),
  12074. default: true
  12075. },
  12076. {
  12077. name: "Macro",
  12078. height: math.unit(200, "feet")
  12079. },
  12080. ]
  12081. ))
  12082. characterMakers.push(() => makeCharacter(
  12083. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12084. {
  12085. front: {
  12086. height: math.unit(6, "feet"),
  12087. weight: math.unit(150, "lb"),
  12088. name: "Front",
  12089. image: {
  12090. source: "./media/characters/jordan-deware/front.svg",
  12091. extra: 1191 / 1012
  12092. }
  12093. },
  12094. },
  12095. [
  12096. {
  12097. name: "Nano",
  12098. height: math.unit(0.01, "mm")
  12099. },
  12100. {
  12101. name: "Minimicro",
  12102. height: math.unit(1, "mm")
  12103. },
  12104. {
  12105. name: "Micro",
  12106. height: math.unit(0.5, "inches")
  12107. },
  12108. {
  12109. name: "Normal",
  12110. height: math.unit(4, "feet"),
  12111. default: true
  12112. },
  12113. {
  12114. name: "Minimacro",
  12115. height: math.unit(40, "meters")
  12116. },
  12117. {
  12118. name: "Small Macro",
  12119. height: math.unit(400, "meters")
  12120. },
  12121. {
  12122. name: "Macro",
  12123. height: math.unit(4, "miles")
  12124. },
  12125. {
  12126. name: "Megamacro",
  12127. height: math.unit(40, "miles")
  12128. },
  12129. {
  12130. name: "Megamacro+",
  12131. height: math.unit(400, "miles")
  12132. },
  12133. {
  12134. name: "Gigamacro",
  12135. height: math.unit(400000, "miles")
  12136. },
  12137. ]
  12138. ))
  12139. characterMakers.push(() => makeCharacter(
  12140. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12141. {
  12142. side: {
  12143. height: math.unit(6, "feet"),
  12144. weight: math.unit(150, "lb"),
  12145. name: "Side",
  12146. image: {
  12147. source: "./media/characters/kimiko/side.svg",
  12148. extra: 600 / 358
  12149. }
  12150. },
  12151. },
  12152. [
  12153. {
  12154. name: "Normal",
  12155. height: math.unit(15, "feet"),
  12156. default: true
  12157. },
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(220, "feet")
  12161. },
  12162. {
  12163. name: "Macro+",
  12164. height: math.unit(1450, "feet")
  12165. },
  12166. {
  12167. name: "Megamacro",
  12168. height: math.unit(11500, "feet")
  12169. },
  12170. {
  12171. name: "Gigamacro",
  12172. height: math.unit(9500, "miles")
  12173. },
  12174. {
  12175. name: "Teramacro",
  12176. height: math.unit(2208005005, "miles")
  12177. },
  12178. {
  12179. name: "Examacro",
  12180. height: math.unit(2750, "parsecs")
  12181. },
  12182. {
  12183. name: "Zettamacro",
  12184. height: math.unit(101500, "parsecs")
  12185. },
  12186. ]
  12187. ))
  12188. characterMakers.push(() => makeCharacter(
  12189. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12190. {
  12191. front: {
  12192. height: math.unit(6, "feet"),
  12193. weight: math.unit(70, "kg"),
  12194. name: "Front",
  12195. image: {
  12196. source: "./media/characters/andrew-sleepy/front.svg"
  12197. }
  12198. },
  12199. side: {
  12200. height: math.unit(6, "feet"),
  12201. weight: math.unit(70, "kg"),
  12202. name: "Side",
  12203. image: {
  12204. source: "./media/characters/andrew-sleepy/side.svg"
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Micro",
  12211. height: math.unit(1, "mm"),
  12212. default: true
  12213. },
  12214. ]
  12215. ))
  12216. characterMakers.push(() => makeCharacter(
  12217. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12218. {
  12219. front: {
  12220. height: math.unit(6, "feet"),
  12221. weight: math.unit(150, "lb"),
  12222. name: "Front",
  12223. image: {
  12224. source: "./media/characters/judio/front.svg",
  12225. extra: 1258 / 1110
  12226. }
  12227. },
  12228. },
  12229. [
  12230. {
  12231. name: "Normal",
  12232. height: math.unit(5 + 6 / 12, "feet")
  12233. },
  12234. {
  12235. name: "Macro",
  12236. height: math.unit(1000, "feet"),
  12237. default: true
  12238. },
  12239. {
  12240. name: "Megamacro",
  12241. height: math.unit(10, "miles")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12247. {
  12248. frontDressed: {
  12249. height: math.unit(6, "feet"),
  12250. weight: math.unit(68, "kg"),
  12251. name: "Front (Dressed)",
  12252. image: {
  12253. source: "./media/characters/nomaxice/front-dressed.svg",
  12254. extra: 1137/824,
  12255. bottom: 74/1211
  12256. }
  12257. },
  12258. frontShorts: {
  12259. height: math.unit(6, "feet"),
  12260. weight: math.unit(68, "kg"),
  12261. name: "Front (Shorts)",
  12262. image: {
  12263. source: "./media/characters/nomaxice/front-shorts.svg",
  12264. extra: 1137/824,
  12265. bottom: 74/1211
  12266. }
  12267. },
  12268. back: {
  12269. height: math.unit(6, "feet"),
  12270. weight: math.unit(68, "kg"),
  12271. name: "Back",
  12272. image: {
  12273. source: "./media/characters/nomaxice/back.svg",
  12274. extra: 822/786,
  12275. bottom: 39/861
  12276. }
  12277. },
  12278. hand: {
  12279. height: math.unit(0.565, "feet"),
  12280. name: "Hand",
  12281. image: {
  12282. source: "./media/characters/nomaxice/hand.svg"
  12283. }
  12284. },
  12285. foot: {
  12286. height: math.unit(1, "feet"),
  12287. name: "Foot",
  12288. image: {
  12289. source: "./media/characters/nomaxice/foot.svg"
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Micro",
  12296. height: math.unit(8, "cm")
  12297. },
  12298. {
  12299. name: "Norm",
  12300. height: math.unit(1.82, "m")
  12301. },
  12302. {
  12303. name: "Norm+",
  12304. height: math.unit(8.8, "feet"),
  12305. default: true
  12306. },
  12307. {
  12308. name: "Big",
  12309. height: math.unit(8, "meters")
  12310. },
  12311. {
  12312. name: "Macro",
  12313. height: math.unit(18, "meters")
  12314. },
  12315. {
  12316. name: "Macro+",
  12317. height: math.unit(88, "meters")
  12318. },
  12319. ]
  12320. ))
  12321. characterMakers.push(() => makeCharacter(
  12322. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12323. {
  12324. front: {
  12325. height: math.unit(12, "feet"),
  12326. weight: math.unit(1.5, "tons"),
  12327. name: "Front",
  12328. image: {
  12329. source: "./media/characters/dydros/front.svg",
  12330. extra: 863 / 800,
  12331. bottom: 0.015
  12332. }
  12333. },
  12334. back: {
  12335. height: math.unit(12, "feet"),
  12336. weight: math.unit(1.5, "tons"),
  12337. name: "Back",
  12338. image: {
  12339. source: "./media/characters/dydros/back.svg",
  12340. extra: 900 / 843,
  12341. bottom: 0.005
  12342. }
  12343. },
  12344. },
  12345. [
  12346. {
  12347. name: "Normal",
  12348. height: math.unit(12, "feet"),
  12349. default: true
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(6, "feet"),
  12358. weight: math.unit(100, "kg"),
  12359. name: "Front",
  12360. image: {
  12361. source: "./media/characters/riggi/front.svg",
  12362. extra: 5787 / 5303
  12363. }
  12364. },
  12365. hyper: {
  12366. height: math.unit(6 * 5 / 3, "feet"),
  12367. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12368. name: "Hyper",
  12369. image: {
  12370. source: "./media/characters/riggi/hyper.svg",
  12371. extra: 3595 / 3485
  12372. }
  12373. },
  12374. },
  12375. [
  12376. {
  12377. name: "Small Macro",
  12378. height: math.unit(50, "feet")
  12379. },
  12380. {
  12381. name: "Default",
  12382. height: math.unit(200, "feet"),
  12383. default: true
  12384. },
  12385. {
  12386. name: "Loom",
  12387. height: math.unit(10000, "feet")
  12388. },
  12389. {
  12390. name: "Cruising Altitude",
  12391. height: math.unit(30000, "feet")
  12392. },
  12393. {
  12394. name: "Megamacro",
  12395. height: math.unit(100, "miles")
  12396. },
  12397. {
  12398. name: "Continent Sized",
  12399. height: math.unit(2800, "miles")
  12400. },
  12401. {
  12402. name: "Earth Sized",
  12403. height: math.unit(8000, "miles")
  12404. },
  12405. ]
  12406. ))
  12407. characterMakers.push(() => makeCharacter(
  12408. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12409. {
  12410. front: {
  12411. height: math.unit(6, "feet"),
  12412. weight: math.unit(250, "lb"),
  12413. name: "Front",
  12414. image: {
  12415. source: "./media/characters/alexi/front.svg",
  12416. extra: 3483 / 3291,
  12417. bottom: 0.04
  12418. }
  12419. },
  12420. back: {
  12421. height: math.unit(6, "feet"),
  12422. weight: math.unit(250, "lb"),
  12423. name: "Back",
  12424. image: {
  12425. source: "./media/characters/alexi/back.svg",
  12426. extra: 3533 / 3356,
  12427. bottom: 0.021
  12428. }
  12429. },
  12430. frontTransforming: {
  12431. height: math.unit(8.58, "feet"),
  12432. weight: math.unit(1300, "lb"),
  12433. name: "Transforming",
  12434. image: {
  12435. source: "./media/characters/alexi/front-transforming.svg",
  12436. extra: 437 / 409,
  12437. bottom: 19 / 458.66
  12438. }
  12439. },
  12440. frontTransformed: {
  12441. height: math.unit(12.5, "feet"),
  12442. weight: math.unit(4000, "lb"),
  12443. name: "Transformed",
  12444. image: {
  12445. source: "./media/characters/alexi/front-transformed.svg",
  12446. extra: 639 / 614,
  12447. bottom: 30.55 / 671
  12448. }
  12449. },
  12450. },
  12451. [
  12452. {
  12453. name: "Normal",
  12454. height: math.unit(14, "feet"),
  12455. default: true
  12456. },
  12457. {
  12458. name: "Minimacro",
  12459. height: math.unit(30, "meters")
  12460. },
  12461. {
  12462. name: "Macro",
  12463. height: math.unit(500, "meters")
  12464. },
  12465. {
  12466. name: "Megamacro",
  12467. height: math.unit(9000, "km")
  12468. },
  12469. {
  12470. name: "Teramacro",
  12471. height: math.unit(384000, "km")
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12477. {
  12478. front: {
  12479. height: math.unit(6, "feet"),
  12480. weight: math.unit(150, "lb"),
  12481. name: "Front",
  12482. image: {
  12483. source: "./media/characters/kayroo/front.svg",
  12484. extra: 1153 / 1038,
  12485. bottom: 0.06
  12486. }
  12487. },
  12488. foot: {
  12489. height: math.unit(6, "feet"),
  12490. weight: math.unit(150, "lb"),
  12491. name: "Foot",
  12492. image: {
  12493. source: "./media/characters/kayroo/foot.svg"
  12494. }
  12495. },
  12496. },
  12497. [
  12498. {
  12499. name: "Normal",
  12500. height: math.unit(8, "feet"),
  12501. default: true
  12502. },
  12503. {
  12504. name: "Minimacro",
  12505. height: math.unit(250, "feet")
  12506. },
  12507. {
  12508. name: "Macro",
  12509. height: math.unit(2800, "feet")
  12510. },
  12511. {
  12512. name: "Megamacro",
  12513. height: math.unit(5200, "feet")
  12514. },
  12515. {
  12516. name: "Gigamacro",
  12517. height: math.unit(27000, "feet")
  12518. },
  12519. {
  12520. name: "Omega",
  12521. height: math.unit(45000, "feet")
  12522. },
  12523. ]
  12524. ))
  12525. characterMakers.push(() => makeCharacter(
  12526. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12527. {
  12528. front: {
  12529. height: math.unit(18, "feet"),
  12530. weight: math.unit(5800, "lb"),
  12531. name: "Front",
  12532. image: {
  12533. source: "./media/characters/rhys/front.svg",
  12534. extra: 3386 / 3090,
  12535. bottom: 0.07
  12536. }
  12537. },
  12538. },
  12539. [
  12540. {
  12541. name: "Normal",
  12542. height: math.unit(18, "feet"),
  12543. default: true
  12544. },
  12545. {
  12546. name: "Working Size",
  12547. height: math.unit(200, "feet")
  12548. },
  12549. {
  12550. name: "Demolition Size",
  12551. height: math.unit(2000, "feet")
  12552. },
  12553. {
  12554. name: "Maximum Licensed Size",
  12555. height: math.unit(5, "miles")
  12556. },
  12557. {
  12558. name: "Maximum Observed Size",
  12559. height: math.unit(10, "yottameters")
  12560. },
  12561. ]
  12562. ))
  12563. characterMakers.push(() => makeCharacter(
  12564. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12565. {
  12566. front: {
  12567. height: math.unit(6, "feet"),
  12568. weight: math.unit(250, "lb"),
  12569. name: "Front",
  12570. image: {
  12571. source: "./media/characters/toto/front.svg",
  12572. extra: 527 / 479,
  12573. bottom: 0.05
  12574. }
  12575. },
  12576. },
  12577. [
  12578. {
  12579. name: "Micro",
  12580. height: math.unit(3, "feet")
  12581. },
  12582. {
  12583. name: "Normal",
  12584. height: math.unit(10, "feet")
  12585. },
  12586. {
  12587. name: "Macro",
  12588. height: math.unit(150, "feet"),
  12589. default: true
  12590. },
  12591. {
  12592. name: "Megamacro",
  12593. height: math.unit(1200, "feet")
  12594. },
  12595. ]
  12596. ))
  12597. characterMakers.push(() => makeCharacter(
  12598. { name: "King", species: ["lion"], tags: ["anthro"] },
  12599. {
  12600. back: {
  12601. height: math.unit(6, "feet"),
  12602. weight: math.unit(150, "lb"),
  12603. name: "Back",
  12604. image: {
  12605. source: "./media/characters/king/back.svg"
  12606. }
  12607. },
  12608. },
  12609. [
  12610. {
  12611. name: "Micro",
  12612. height: math.unit(2, "inches")
  12613. },
  12614. {
  12615. name: "Normal",
  12616. height: math.unit(8, "feet")
  12617. },
  12618. {
  12619. name: "Macro",
  12620. height: math.unit(200, "feet"),
  12621. default: true
  12622. },
  12623. {
  12624. name: "Megamacro",
  12625. height: math.unit(50, "miles")
  12626. },
  12627. ]
  12628. ))
  12629. characterMakers.push(() => makeCharacter(
  12630. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12631. {
  12632. front: {
  12633. height: math.unit(11, "feet"),
  12634. weight: math.unit(1400, "lb"),
  12635. name: "Front",
  12636. image: {
  12637. source: "./media/characters/cordite/front.svg",
  12638. extra: 1919/1827,
  12639. bottom: 40/1959
  12640. }
  12641. },
  12642. side: {
  12643. height: math.unit(11, "feet"),
  12644. weight: math.unit(1400, "lb"),
  12645. name: "Side",
  12646. image: {
  12647. source: "./media/characters/cordite/side.svg",
  12648. extra: 1908/1793,
  12649. bottom: 38/1946
  12650. }
  12651. },
  12652. back: {
  12653. height: math.unit(11, "feet"),
  12654. weight: math.unit(1400, "lb"),
  12655. name: "Back",
  12656. image: {
  12657. source: "./media/characters/cordite/back.svg",
  12658. extra: 1938/1837,
  12659. bottom: 10/1948
  12660. }
  12661. },
  12662. feral: {
  12663. height: math.unit(2, "feet"),
  12664. weight: math.unit(90, "lb"),
  12665. name: "Feral",
  12666. image: {
  12667. source: "./media/characters/cordite/feral.svg",
  12668. extra: 1260 / 755,
  12669. bottom: 0.05
  12670. }
  12671. },
  12672. },
  12673. [
  12674. {
  12675. name: "Normal",
  12676. height: math.unit(11, "feet"),
  12677. default: true
  12678. },
  12679. ]
  12680. ))
  12681. characterMakers.push(() => makeCharacter(
  12682. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12683. {
  12684. front: {
  12685. height: math.unit(6, "feet"),
  12686. weight: math.unit(150, "lb"),
  12687. name: "Front",
  12688. image: {
  12689. source: "./media/characters/pianostrong/front.svg",
  12690. extra: 6577 / 6254,
  12691. bottom: 0.02
  12692. }
  12693. },
  12694. side: {
  12695. height: math.unit(6, "feet"),
  12696. weight: math.unit(150, "lb"),
  12697. name: "Side",
  12698. image: {
  12699. source: "./media/characters/pianostrong/side.svg",
  12700. extra: 6106 / 5730
  12701. }
  12702. },
  12703. back: {
  12704. height: math.unit(6, "feet"),
  12705. weight: math.unit(150, "lb"),
  12706. name: "Back",
  12707. image: {
  12708. source: "./media/characters/pianostrong/back.svg",
  12709. extra: 6085 / 5733,
  12710. bottom: 0.01
  12711. }
  12712. },
  12713. },
  12714. [
  12715. {
  12716. name: "Macro",
  12717. height: math.unit(100, "feet")
  12718. },
  12719. {
  12720. name: "Macro+",
  12721. height: math.unit(300, "feet"),
  12722. default: true
  12723. },
  12724. {
  12725. name: "Macro++",
  12726. height: math.unit(1000, "feet")
  12727. },
  12728. ]
  12729. ))
  12730. characterMakers.push(() => makeCharacter(
  12731. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12732. {
  12733. front: {
  12734. height: math.unit(6, "feet"),
  12735. weight: math.unit(150, "lb"),
  12736. name: "Front",
  12737. image: {
  12738. source: "./media/characters/kona/front.svg",
  12739. extra: 2960 / 2629,
  12740. bottom: 0.005
  12741. }
  12742. },
  12743. },
  12744. [
  12745. {
  12746. name: "Normal",
  12747. height: math.unit(11 + 8 / 12, "feet")
  12748. },
  12749. {
  12750. name: "Macro",
  12751. height: math.unit(850, "feet"),
  12752. default: true
  12753. },
  12754. {
  12755. name: "Macro+",
  12756. height: math.unit(1.5, "km"),
  12757. default: true
  12758. },
  12759. {
  12760. name: "Megamacro",
  12761. height: math.unit(80, "miles")
  12762. },
  12763. {
  12764. name: "Gigamacro",
  12765. height: math.unit(3500, "miles")
  12766. },
  12767. ]
  12768. ))
  12769. characterMakers.push(() => makeCharacter(
  12770. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12771. {
  12772. side: {
  12773. height: math.unit(1.9, "meters"),
  12774. weight: math.unit(326, "kg"),
  12775. name: "Side",
  12776. image: {
  12777. source: "./media/characters/levi/side.svg",
  12778. extra: 1704 / 1334,
  12779. bottom: 0.02
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Normal",
  12786. height: math.unit(1.9, "meters"),
  12787. default: true
  12788. },
  12789. {
  12790. name: "Macro",
  12791. height: math.unit(20, "meters")
  12792. },
  12793. {
  12794. name: "Macro+",
  12795. height: math.unit(200, "meters")
  12796. },
  12797. {
  12798. name: "Megamacro",
  12799. height: math.unit(2, "km")
  12800. },
  12801. {
  12802. name: "Megamacro+",
  12803. height: math.unit(20, "km")
  12804. },
  12805. {
  12806. name: "Gigamacro",
  12807. height: math.unit(2500, "km")
  12808. },
  12809. {
  12810. name: "Gigamacro+",
  12811. height: math.unit(120000, "km")
  12812. },
  12813. {
  12814. name: "Teramacro",
  12815. height: math.unit(7.77e6, "km")
  12816. },
  12817. ]
  12818. ))
  12819. characterMakers.push(() => makeCharacter(
  12820. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12821. {
  12822. front: {
  12823. height: math.unit(6 + 4/12, "feet"),
  12824. weight: math.unit(190, "lb"),
  12825. name: "Front",
  12826. image: {
  12827. source: "./media/characters/bmc/front.svg",
  12828. extra: 1626/1472,
  12829. bottom: 79/1705
  12830. }
  12831. },
  12832. back: {
  12833. height: math.unit(6 + 4/12, "feet"),
  12834. weight: math.unit(190, "lb"),
  12835. name: "Back",
  12836. image: {
  12837. source: "./media/characters/bmc/back.svg",
  12838. extra: 1640/1479,
  12839. bottom: 45/1685
  12840. }
  12841. },
  12842. frontArmor: {
  12843. height: math.unit(6 + 4/12, "feet"),
  12844. weight: math.unit(190, "lb"),
  12845. name: "Front-armor",
  12846. image: {
  12847. source: "./media/characters/bmc/front-armor.svg",
  12848. extra: 1538/1468,
  12849. bottom: 79/1617
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Human-sized",
  12856. height: math.unit(6 + 4 / 12, "feet")
  12857. },
  12858. {
  12859. name: "Interactive Size",
  12860. height: math.unit(25, "feet")
  12861. },
  12862. {
  12863. name: "Small",
  12864. height: math.unit(250, "feet")
  12865. },
  12866. {
  12867. name: "Normal",
  12868. height: math.unit(1250, "feet"),
  12869. default: true
  12870. },
  12871. {
  12872. name: "Good Day",
  12873. height: math.unit(88, "miles")
  12874. },
  12875. {
  12876. name: "Largest Measured Size",
  12877. height: math.unit(105.960, "galaxies")
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12883. {
  12884. front: {
  12885. height: math.unit(20, "feet"),
  12886. weight: math.unit(2016, "kg"),
  12887. name: "Front",
  12888. image: {
  12889. source: "./media/characters/sven-the-kaiju/front.svg",
  12890. extra: 1277/1250,
  12891. bottom: 35/1312
  12892. }
  12893. },
  12894. mouth: {
  12895. height: math.unit(1.85, "feet"),
  12896. name: "Mouth",
  12897. image: {
  12898. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12899. }
  12900. },
  12901. },
  12902. [
  12903. {
  12904. name: "Fairy",
  12905. height: math.unit(6, "inches")
  12906. },
  12907. {
  12908. name: "Normal",
  12909. height: math.unit(20, "feet"),
  12910. default: true
  12911. },
  12912. {
  12913. name: "Rampage",
  12914. height: math.unit(200, "feet")
  12915. },
  12916. {
  12917. name: "Archfey Forest Guardian",
  12918. height: math.unit(1, "mile")
  12919. },
  12920. ]
  12921. ))
  12922. characterMakers.push(() => makeCharacter(
  12923. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12924. {
  12925. front: {
  12926. height: math.unit(4, "meters"),
  12927. weight: math.unit(2, "tons"),
  12928. name: "Front",
  12929. image: {
  12930. source: "./media/characters/marik/front.svg",
  12931. extra: 1057 / 1003,
  12932. bottom: 0.08
  12933. }
  12934. },
  12935. },
  12936. [
  12937. {
  12938. name: "Normal",
  12939. height: math.unit(4, "meters"),
  12940. default: true
  12941. },
  12942. {
  12943. name: "Macro",
  12944. height: math.unit(20, "meters")
  12945. },
  12946. {
  12947. name: "Megamacro",
  12948. height: math.unit(50, "km")
  12949. },
  12950. {
  12951. name: "Gigamacro",
  12952. height: math.unit(100, "km")
  12953. },
  12954. {
  12955. name: "Alpha Macro",
  12956. height: math.unit(7.88e7, "yottameters")
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12962. {
  12963. front: {
  12964. height: math.unit(6, "feet"),
  12965. weight: math.unit(110, "lb"),
  12966. name: "Front",
  12967. image: {
  12968. source: "./media/characters/mel/front.svg",
  12969. extra: 736 / 617,
  12970. bottom: 0.017
  12971. }
  12972. },
  12973. },
  12974. [
  12975. {
  12976. name: "Pico",
  12977. height: math.unit(3, "pm")
  12978. },
  12979. {
  12980. name: "Nano",
  12981. height: math.unit(3, "nm")
  12982. },
  12983. {
  12984. name: "Micro",
  12985. height: math.unit(0.3, "mm"),
  12986. default: true
  12987. },
  12988. {
  12989. name: "Micro+",
  12990. height: math.unit(3, "mm")
  12991. },
  12992. {
  12993. name: "Normal",
  12994. height: math.unit(5 + 10.5 / 12, "feet")
  12995. },
  12996. ]
  12997. ))
  12998. characterMakers.push(() => makeCharacter(
  12999. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13000. {
  13001. kaiju: {
  13002. height: math.unit(1.75, "meters"),
  13003. weight: math.unit(55, "kg"),
  13004. name: "Kaiju",
  13005. image: {
  13006. source: "./media/characters/lykonous/kaiju.svg",
  13007. extra: 1055 / 946,
  13008. bottom: 0.135
  13009. }
  13010. },
  13011. },
  13012. [
  13013. {
  13014. name: "Normal",
  13015. height: math.unit(2.5, "meters"),
  13016. default: true
  13017. },
  13018. {
  13019. name: "Kaiju Dragon",
  13020. height: math.unit(60, "meters")
  13021. },
  13022. {
  13023. name: "Mega Kaiju",
  13024. height: math.unit(120, "km")
  13025. },
  13026. {
  13027. name: "Giga Kaiju",
  13028. height: math.unit(200, "megameters")
  13029. },
  13030. {
  13031. name: "Terra Kaiju",
  13032. height: math.unit(400, "gigameters")
  13033. },
  13034. {
  13035. name: "Kaiju Dragon God",
  13036. height: math.unit(13000, "exaparsecs")
  13037. },
  13038. ]
  13039. ))
  13040. characterMakers.push(() => makeCharacter(
  13041. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13042. {
  13043. front: {
  13044. height: math.unit(6, "feet"),
  13045. weight: math.unit(150, "lb"),
  13046. name: "Front",
  13047. image: {
  13048. source: "./media/characters/blü/front.svg",
  13049. extra: 1883 / 1564,
  13050. bottom: 0.031
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Normal",
  13057. height: math.unit(13, "feet"),
  13058. default: true
  13059. },
  13060. {
  13061. name: "Big Boi",
  13062. height: math.unit(150, "meters")
  13063. },
  13064. {
  13065. name: "Mini Stomper",
  13066. height: math.unit(300, "meters")
  13067. },
  13068. {
  13069. name: "Macro",
  13070. height: math.unit(1000, "meters")
  13071. },
  13072. {
  13073. name: "Megamacro",
  13074. height: math.unit(11000, "meters")
  13075. },
  13076. {
  13077. name: "Gigamacro",
  13078. height: math.unit(11000, "km")
  13079. },
  13080. {
  13081. name: "Teramacro",
  13082. height: math.unit(420000, "km")
  13083. },
  13084. {
  13085. name: "Examacro",
  13086. height: math.unit(120, "parsecs")
  13087. },
  13088. {
  13089. name: "God Tho",
  13090. height: math.unit(98000000000, "parsecs")
  13091. },
  13092. ]
  13093. ))
  13094. characterMakers.push(() => makeCharacter(
  13095. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13096. {
  13097. taurFront: {
  13098. height: math.unit(6, "feet"),
  13099. weight: math.unit(200, "lb"),
  13100. name: "Taur (Front)",
  13101. image: {
  13102. source: "./media/characters/scales/taur-front.svg",
  13103. extra: 1,
  13104. bottom: 0.05
  13105. }
  13106. },
  13107. taurBack: {
  13108. height: math.unit(6, "feet"),
  13109. weight: math.unit(200, "lb"),
  13110. name: "Taur (Back)",
  13111. image: {
  13112. source: "./media/characters/scales/taur-back.svg",
  13113. extra: 1,
  13114. bottom: 0.08
  13115. }
  13116. },
  13117. anthro: {
  13118. height: math.unit(6 * 7 / 12, "feet"),
  13119. weight: math.unit(100, "lb"),
  13120. name: "Anthro",
  13121. image: {
  13122. source: "./media/characters/scales/anthro.svg",
  13123. extra: 1,
  13124. bottom: 0.06
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Normal",
  13131. height: math.unit(12, "feet"),
  13132. default: true
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13138. {
  13139. front: {
  13140. height: math.unit(6, "feet"),
  13141. weight: math.unit(150, "lb"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/koragos/front.svg",
  13145. extra: 841 / 794,
  13146. bottom: 0.035
  13147. }
  13148. },
  13149. back: {
  13150. height: math.unit(6, "feet"),
  13151. weight: math.unit(150, "lb"),
  13152. name: "Back",
  13153. image: {
  13154. source: "./media/characters/koragos/back.svg",
  13155. extra: 841 / 810,
  13156. bottom: 0.022
  13157. }
  13158. },
  13159. },
  13160. [
  13161. {
  13162. name: "Normal",
  13163. height: math.unit(6 + 11 / 12, "feet"),
  13164. default: true
  13165. },
  13166. {
  13167. name: "Macro",
  13168. height: math.unit(490, "feet")
  13169. },
  13170. {
  13171. name: "Megamacro",
  13172. height: math.unit(10, "miles")
  13173. },
  13174. {
  13175. name: "Gigamacro",
  13176. height: math.unit(50, "miles")
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13182. {
  13183. front: {
  13184. height: math.unit(6, "feet"),
  13185. weight: math.unit(250, "lb"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/xylrem/front.svg",
  13189. extra: 3323 / 3050,
  13190. bottom: 0.065
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Micro",
  13197. height: math.unit(4, "feet")
  13198. },
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(16, "feet"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Macro",
  13206. height: math.unit(2720, "feet")
  13207. },
  13208. {
  13209. name: "Megamacro",
  13210. height: math.unit(25000, "miles")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(8, "feet"),
  13219. weight: math.unit(250, "kg"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/ikideru/front.svg",
  13223. extra: 930 / 870,
  13224. bottom: 0.087
  13225. }
  13226. },
  13227. back: {
  13228. height: math.unit(8, "feet"),
  13229. weight: math.unit(250, "kg"),
  13230. name: "Back",
  13231. image: {
  13232. source: "./media/characters/ikideru/back.svg",
  13233. extra: 919 / 852,
  13234. bottom: 0.055
  13235. }
  13236. },
  13237. },
  13238. [
  13239. {
  13240. name: "Rare",
  13241. height: math.unit(8, "feet"),
  13242. default: true
  13243. },
  13244. {
  13245. name: "Playful Loom",
  13246. height: math.unit(80, "feet")
  13247. },
  13248. {
  13249. name: "City Leaner",
  13250. height: math.unit(230, "feet")
  13251. },
  13252. {
  13253. name: "Megamacro",
  13254. height: math.unit(2500, "feet")
  13255. },
  13256. {
  13257. name: "Gigamacro",
  13258. height: math.unit(26400, "feet")
  13259. },
  13260. {
  13261. name: "Tectonic Shifter",
  13262. height: math.unit(1.7, "megameters")
  13263. },
  13264. {
  13265. name: "Planet Carer",
  13266. height: math.unit(21, "megameters")
  13267. },
  13268. {
  13269. name: "God",
  13270. height: math.unit(11157.22, "parsecs")
  13271. },
  13272. ]
  13273. ))
  13274. characterMakers.push(() => makeCharacter(
  13275. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13276. {
  13277. front: {
  13278. height: math.unit(6, "feet"),
  13279. weight: math.unit(120, "lb"),
  13280. name: "Front",
  13281. image: {
  13282. source: "./media/characters/neo/front.svg"
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Micro",
  13289. height: math.unit(2, "inches"),
  13290. default: true
  13291. },
  13292. {
  13293. name: "Human Size",
  13294. height: math.unit(5 + 8 / 12, "feet")
  13295. },
  13296. ]
  13297. ))
  13298. characterMakers.push(() => makeCharacter(
  13299. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13300. {
  13301. front: {
  13302. height: math.unit(13 + 10 / 12, "feet"),
  13303. weight: math.unit(5320, "lb"),
  13304. name: "Front",
  13305. image: {
  13306. source: "./media/characters/chauncey-chantz/front.svg",
  13307. extra: 1587 / 1435,
  13308. bottom: 0.02
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Normal",
  13315. height: math.unit(13 + 10 / 12, "feet"),
  13316. default: true
  13317. },
  13318. {
  13319. name: "Macro",
  13320. height: math.unit(45, "feet")
  13321. },
  13322. {
  13323. name: "Megamacro",
  13324. height: math.unit(250, "miles")
  13325. },
  13326. {
  13327. name: "Planetary",
  13328. height: math.unit(10000, "miles")
  13329. },
  13330. {
  13331. name: "Galactic",
  13332. height: math.unit(40000, "parsecs")
  13333. },
  13334. {
  13335. name: "Universal",
  13336. height: math.unit(1, "yottameter")
  13337. },
  13338. ]
  13339. ))
  13340. characterMakers.push(() => makeCharacter(
  13341. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13342. {
  13343. front: {
  13344. height: math.unit(6, "feet"),
  13345. weight: math.unit(150, "lb"),
  13346. name: "Front",
  13347. image: {
  13348. source: "./media/characters/epifox/front.svg",
  13349. extra: 1,
  13350. bottom: 0.075
  13351. }
  13352. },
  13353. },
  13354. [
  13355. {
  13356. name: "Micro",
  13357. height: math.unit(6, "inches")
  13358. },
  13359. {
  13360. name: "Normal",
  13361. height: math.unit(12, "feet"),
  13362. default: true
  13363. },
  13364. {
  13365. name: "Macro",
  13366. height: math.unit(3810, "feet")
  13367. },
  13368. {
  13369. name: "Megamacro",
  13370. height: math.unit(500, "miles")
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(1.8796, "m"),
  13379. weight: math.unit(230, "lb"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/colin-t/front.svg",
  13383. extra: 1272 / 1193,
  13384. bottom: 0.07
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Micro",
  13391. height: math.unit(0.571, "meters")
  13392. },
  13393. {
  13394. name: "Normal",
  13395. height: math.unit(1.8796, "meters"),
  13396. default: true
  13397. },
  13398. {
  13399. name: "Tall",
  13400. height: math.unit(4, "meters")
  13401. },
  13402. {
  13403. name: "Macro",
  13404. height: math.unit(67.241, "meters")
  13405. },
  13406. {
  13407. name: "Megamacro",
  13408. height: math.unit(371.856, "meters")
  13409. },
  13410. {
  13411. name: "Planetary",
  13412. height: math.unit(12631.5689, "km")
  13413. },
  13414. ]
  13415. ))
  13416. characterMakers.push(() => makeCharacter(
  13417. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13418. {
  13419. front: {
  13420. height: math.unit(1.85, "meters"),
  13421. weight: math.unit(80, "kg"),
  13422. name: "Front",
  13423. image: {
  13424. source: "./media/characters/matvei/front.svg",
  13425. extra: 456/447,
  13426. bottom: 8/464
  13427. }
  13428. },
  13429. back: {
  13430. height: math.unit(1.85, "meters"),
  13431. weight: math.unit(80, "kg"),
  13432. name: "Back",
  13433. image: {
  13434. source: "./media/characters/matvei/back.svg",
  13435. extra: 434/427,
  13436. bottom: 11/445
  13437. }
  13438. },
  13439. },
  13440. [
  13441. {
  13442. name: "Normal",
  13443. height: math.unit(1.85, "meters"),
  13444. default: true
  13445. },
  13446. ]
  13447. ))
  13448. characterMakers.push(() => makeCharacter(
  13449. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13450. {
  13451. front: {
  13452. height: math.unit(5 + 9 / 12, "feet"),
  13453. weight: math.unit(70, "lb"),
  13454. name: "Front",
  13455. image: {
  13456. source: "./media/characters/quincy/front.svg",
  13457. extra: 3041 / 2751
  13458. }
  13459. },
  13460. back: {
  13461. height: math.unit(5 + 9 / 12, "feet"),
  13462. weight: math.unit(70, "lb"),
  13463. name: "Back",
  13464. image: {
  13465. source: "./media/characters/quincy/back.svg",
  13466. extra: 3041 / 2751
  13467. }
  13468. },
  13469. flying: {
  13470. height: math.unit(5 + 4 / 12, "feet"),
  13471. weight: math.unit(70, "lb"),
  13472. name: "Flying",
  13473. image: {
  13474. source: "./media/characters/quincy/flying.svg",
  13475. extra: 1044 / 930
  13476. }
  13477. },
  13478. },
  13479. [
  13480. {
  13481. name: "Micro",
  13482. height: math.unit(3, "cm")
  13483. },
  13484. {
  13485. name: "Normal",
  13486. height: math.unit(5 + 9 / 12, "feet")
  13487. },
  13488. {
  13489. name: "Macro",
  13490. height: math.unit(200, "meters"),
  13491. default: true
  13492. },
  13493. {
  13494. name: "Megamacro",
  13495. height: math.unit(1000, "meters")
  13496. },
  13497. ]
  13498. ))
  13499. characterMakers.push(() => makeCharacter(
  13500. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13501. {
  13502. front: {
  13503. height: math.unit(3 + 11/12, "feet"),
  13504. weight: math.unit(50, "lb"),
  13505. name: "Front",
  13506. image: {
  13507. source: "./media/characters/vanrel/front.svg",
  13508. extra: 1104/949,
  13509. bottom: 52/1156
  13510. }
  13511. },
  13512. back: {
  13513. height: math.unit(3 + 11/12, "feet"),
  13514. weight: math.unit(50, "lb"),
  13515. name: "Back",
  13516. image: {
  13517. source: "./media/characters/vanrel/back.svg",
  13518. extra: 1119/976,
  13519. bottom: 37/1156
  13520. }
  13521. },
  13522. tome: {
  13523. height: math.unit(1.35, "feet"),
  13524. weight: math.unit(10, "lb"),
  13525. name: "Vanrel's Tome",
  13526. rename: true,
  13527. image: {
  13528. source: "./media/characters/vanrel/tome.svg"
  13529. }
  13530. },
  13531. beans: {
  13532. height: math.unit(0.89, "feet"),
  13533. name: "Beans",
  13534. image: {
  13535. source: "./media/characters/vanrel/beans.svg"
  13536. }
  13537. },
  13538. },
  13539. [
  13540. {
  13541. name: "Normal",
  13542. height: math.unit(3 + 11/12, "feet"),
  13543. default: true
  13544. },
  13545. ]
  13546. ))
  13547. characterMakers.push(() => makeCharacter(
  13548. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13549. {
  13550. front: {
  13551. height: math.unit(7 + 5 / 12, "feet"),
  13552. name: "Front",
  13553. image: {
  13554. source: "./media/characters/kuiper-vanrel/front.svg",
  13555. extra: 1219/1169,
  13556. bottom: 69/1288
  13557. }
  13558. },
  13559. back: {
  13560. height: math.unit(7 + 5 / 12, "feet"),
  13561. name: "Back",
  13562. image: {
  13563. source: "./media/characters/kuiper-vanrel/back.svg",
  13564. extra: 1236/1193,
  13565. bottom: 27/1263
  13566. }
  13567. },
  13568. foot: {
  13569. height: math.unit(0.55, "meters"),
  13570. name: "Foot",
  13571. image: {
  13572. source: "./media/characters/kuiper-vanrel/foot.svg",
  13573. }
  13574. },
  13575. battle: {
  13576. height: math.unit(6.824, "feet"),
  13577. name: "Battle",
  13578. image: {
  13579. source: "./media/characters/kuiper-vanrel/battle.svg",
  13580. extra: 1466 / 1327,
  13581. bottom: 29 / 1492.5
  13582. }
  13583. },
  13584. meerkui: {
  13585. height: math.unit(18, "inches"),
  13586. name: "Meerkui",
  13587. image: {
  13588. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13589. extra: 1354/1289,
  13590. bottom: 69/1423
  13591. }
  13592. },
  13593. },
  13594. [
  13595. {
  13596. name: "Normal",
  13597. height: math.unit(7 + 5 / 12, "feet"),
  13598. default: true
  13599. },
  13600. ]
  13601. ))
  13602. characterMakers.push(() => makeCharacter(
  13603. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13604. {
  13605. front: {
  13606. height: math.unit(8 + 5 / 12, "feet"),
  13607. name: "Front",
  13608. image: {
  13609. source: "./media/characters/keset-vanrel/front.svg",
  13610. extra: 1231/1148,
  13611. bottom: 82/1313
  13612. }
  13613. },
  13614. back: {
  13615. height: math.unit(8 + 5 / 12, "feet"),
  13616. name: "Back",
  13617. image: {
  13618. source: "./media/characters/keset-vanrel/back.svg",
  13619. extra: 1240/1174,
  13620. bottom: 33/1273
  13621. }
  13622. },
  13623. hand: {
  13624. height: math.unit(0.6, "meters"),
  13625. name: "Hand",
  13626. image: {
  13627. source: "./media/characters/keset-vanrel/hand.svg"
  13628. }
  13629. },
  13630. foot: {
  13631. height: math.unit(0.94978, "meters"),
  13632. name: "Foot",
  13633. image: {
  13634. source: "./media/characters/keset-vanrel/foot.svg"
  13635. }
  13636. },
  13637. battle: {
  13638. height: math.unit(7.408, "feet"),
  13639. name: "Battle",
  13640. image: {
  13641. source: "./media/characters/keset-vanrel/battle.svg",
  13642. extra: 1890 / 1386,
  13643. bottom: 73.28 / 1970
  13644. }
  13645. },
  13646. },
  13647. [
  13648. {
  13649. name: "Normal",
  13650. height: math.unit(8 + 5 / 12, "feet"),
  13651. default: true
  13652. },
  13653. ]
  13654. ))
  13655. characterMakers.push(() => makeCharacter(
  13656. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13657. {
  13658. front: {
  13659. height: math.unit(6, "feet"),
  13660. weight: math.unit(150, "lb"),
  13661. name: "Front",
  13662. image: {
  13663. source: "./media/characters/neos/front.svg",
  13664. extra: 1696 / 992,
  13665. bottom: 0.14
  13666. }
  13667. },
  13668. },
  13669. [
  13670. {
  13671. name: "Normal",
  13672. height: math.unit(54, "cm"),
  13673. default: true
  13674. },
  13675. {
  13676. name: "Macro",
  13677. height: math.unit(100, "m")
  13678. },
  13679. {
  13680. name: "Megamacro",
  13681. height: math.unit(10, "km")
  13682. },
  13683. {
  13684. name: "Megamacro+",
  13685. height: math.unit(100, "km")
  13686. },
  13687. {
  13688. name: "Gigamacro",
  13689. height: math.unit(100, "Mm")
  13690. },
  13691. {
  13692. name: "Teramacro",
  13693. height: math.unit(100, "Gm")
  13694. },
  13695. {
  13696. name: "Examacro",
  13697. height: math.unit(100, "Em")
  13698. },
  13699. {
  13700. name: "Godly",
  13701. height: math.unit(10000, "Ym")
  13702. },
  13703. {
  13704. name: "Beyond Godly",
  13705. height: math.unit(25, "multiverses")
  13706. },
  13707. ]
  13708. ))
  13709. characterMakers.push(() => makeCharacter(
  13710. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13711. {
  13712. feminine: {
  13713. height: math.unit(5, "feet"),
  13714. weight: math.unit(100, "lb"),
  13715. name: "Feminine",
  13716. image: {
  13717. source: "./media/characters/sammy-mouse/feminine.svg",
  13718. extra: 2526 / 2425,
  13719. bottom: 0.123
  13720. }
  13721. },
  13722. masculine: {
  13723. height: math.unit(5, "feet"),
  13724. weight: math.unit(100, "lb"),
  13725. name: "Masculine",
  13726. image: {
  13727. source: "./media/characters/sammy-mouse/masculine.svg",
  13728. extra: 2526 / 2425,
  13729. bottom: 0.123
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Micro",
  13736. height: math.unit(5, "inches")
  13737. },
  13738. {
  13739. name: "Normal",
  13740. height: math.unit(5, "feet"),
  13741. default: true
  13742. },
  13743. {
  13744. name: "Macro",
  13745. height: math.unit(60, "feet")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(4, "feet"),
  13754. weight: math.unit(50, "lb"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/kole/front.svg",
  13758. extra: 1423 / 1303,
  13759. bottom: 0.025
  13760. }
  13761. },
  13762. back: {
  13763. height: math.unit(4, "feet"),
  13764. weight: math.unit(50, "lb"),
  13765. name: "Back",
  13766. image: {
  13767. source: "./media/characters/kole/back.svg",
  13768. extra: 1426 / 1280,
  13769. bottom: 0.02
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Normal",
  13776. height: math.unit(4, "feet"),
  13777. default: true
  13778. },
  13779. ]
  13780. ))
  13781. characterMakers.push(() => makeCharacter(
  13782. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13783. {
  13784. front: {
  13785. height: math.unit(2.5, "feet"),
  13786. weight: math.unit(32, "lb"),
  13787. name: "Front",
  13788. image: {
  13789. source: "./media/characters/rufran/front.svg",
  13790. extra: 1313/885,
  13791. bottom: 94/1407
  13792. }
  13793. },
  13794. side: {
  13795. height: math.unit(2.5, "feet"),
  13796. weight: math.unit(32, "lb"),
  13797. name: "Side",
  13798. image: {
  13799. source: "./media/characters/rufran/side.svg",
  13800. extra: 1109/852,
  13801. bottom: 118/1227
  13802. }
  13803. },
  13804. back: {
  13805. height: math.unit(2.5, "feet"),
  13806. weight: math.unit(32, "lb"),
  13807. name: "Back",
  13808. image: {
  13809. source: "./media/characters/rufran/back.svg",
  13810. extra: 1280/878,
  13811. bottom: 131/1411
  13812. }
  13813. },
  13814. mouth: {
  13815. height: math.unit(1.13, "feet"),
  13816. name: "Mouth",
  13817. image: {
  13818. source: "./media/characters/rufran/mouth.svg"
  13819. }
  13820. },
  13821. foot: {
  13822. height: math.unit(1.33, "feet"),
  13823. name: "Foot",
  13824. image: {
  13825. source: "./media/characters/rufran/foot.svg"
  13826. }
  13827. },
  13828. koboldFront: {
  13829. height: math.unit(2 + 6 / 12, "feet"),
  13830. weight: math.unit(20, "lb"),
  13831. name: "Front (Kobold)",
  13832. image: {
  13833. source: "./media/characters/rufran/kobold-front.svg",
  13834. extra: 2041 / 1839,
  13835. bottom: 0.055
  13836. }
  13837. },
  13838. koboldBack: {
  13839. height: math.unit(2 + 6 / 12, "feet"),
  13840. weight: math.unit(20, "lb"),
  13841. name: "Back (Kobold)",
  13842. image: {
  13843. source: "./media/characters/rufran/kobold-back.svg",
  13844. extra: 2054 / 1839,
  13845. bottom: 0.01
  13846. }
  13847. },
  13848. koboldHand: {
  13849. height: math.unit(0.2166, "meters"),
  13850. name: "Hand (Kobold)",
  13851. image: {
  13852. source: "./media/characters/rufran/kobold-hand.svg"
  13853. }
  13854. },
  13855. koboldFoot: {
  13856. height: math.unit(0.185, "meters"),
  13857. name: "Foot (Kobold)",
  13858. image: {
  13859. source: "./media/characters/rufran/kobold-foot.svg"
  13860. }
  13861. },
  13862. },
  13863. [
  13864. {
  13865. name: "Micro",
  13866. height: math.unit(1, "inch")
  13867. },
  13868. {
  13869. name: "Normal",
  13870. height: math.unit(2 + 6 / 12, "feet"),
  13871. default: true
  13872. },
  13873. {
  13874. name: "Big",
  13875. height: math.unit(60, "feet")
  13876. },
  13877. {
  13878. name: "Macro",
  13879. height: math.unit(325, "feet")
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13885. {
  13886. front: {
  13887. height: math.unit(0.3, "meters"),
  13888. weight: math.unit(3.5, "kg"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/chip/front.svg",
  13892. extra: 748 / 674
  13893. }
  13894. },
  13895. },
  13896. [
  13897. {
  13898. name: "Micro",
  13899. height: math.unit(1, "inch"),
  13900. default: true
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13906. {
  13907. side: {
  13908. height: math.unit(2.3, "meters"),
  13909. weight: math.unit(3500, "lb"),
  13910. name: "Side",
  13911. image: {
  13912. source: "./media/characters/torvid/side.svg",
  13913. extra: 1972 / 722,
  13914. bottom: 0.035
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Normal",
  13921. height: math.unit(2.3, "meters"),
  13922. default: true
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13928. {
  13929. front: {
  13930. height: math.unit(2, "meters"),
  13931. weight: math.unit(150.5, "kg"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/susan/front.svg",
  13935. extra: 693 / 635,
  13936. bottom: 0.05
  13937. }
  13938. },
  13939. },
  13940. [
  13941. {
  13942. name: "Megamacro",
  13943. height: math.unit(505, "miles"),
  13944. default: true
  13945. },
  13946. ]
  13947. ))
  13948. characterMakers.push(() => makeCharacter(
  13949. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13950. {
  13951. front: {
  13952. height: math.unit(6, "feet"),
  13953. weight: math.unit(150, "lb"),
  13954. name: "Front",
  13955. image: {
  13956. source: "./media/characters/raindrops/front.svg",
  13957. extra: 2655 / 2461,
  13958. bottom: 49 / 2705
  13959. }
  13960. },
  13961. back: {
  13962. height: math.unit(6, "feet"),
  13963. weight: math.unit(150, "lb"),
  13964. name: "Back",
  13965. image: {
  13966. source: "./media/characters/raindrops/back.svg",
  13967. extra: 2574 / 2400,
  13968. bottom: 65 / 2634
  13969. }
  13970. },
  13971. },
  13972. [
  13973. {
  13974. name: "Micro",
  13975. height: math.unit(6, "inches")
  13976. },
  13977. {
  13978. name: "Normal",
  13979. height: math.unit(6 + 2 / 12, "feet")
  13980. },
  13981. {
  13982. name: "Macro",
  13983. height: math.unit(131, "feet"),
  13984. default: true
  13985. },
  13986. {
  13987. name: "Megamacro",
  13988. height: math.unit(15, "miles")
  13989. },
  13990. {
  13991. name: "Gigamacro",
  13992. height: math.unit(4000, "miles")
  13993. },
  13994. {
  13995. name: "Teramacro",
  13996. height: math.unit(315000, "miles")
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(2.794, "meters"),
  14005. weight: math.unit(325, "kg"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/tezwa/front.svg",
  14009. extra: 2083 / 1906,
  14010. bottom: 0.031
  14011. }
  14012. },
  14013. foot: {
  14014. height: math.unit(0.687, "meters"),
  14015. name: "Foot",
  14016. image: {
  14017. source: "./media/characters/tezwa/foot.svg"
  14018. }
  14019. },
  14020. },
  14021. [
  14022. {
  14023. name: "Normal",
  14024. height: math.unit(9 + 2 / 12, "feet"),
  14025. default: true
  14026. },
  14027. ]
  14028. ))
  14029. characterMakers.push(() => makeCharacter(
  14030. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14031. {
  14032. front: {
  14033. height: math.unit(58, "feet"),
  14034. weight: math.unit(89000, "lb"),
  14035. name: "Front",
  14036. image: {
  14037. source: "./media/characters/typhus/front.svg",
  14038. extra: 816 / 800,
  14039. bottom: 0.065
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Macro",
  14046. height: math.unit(58, "feet"),
  14047. default: true
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14053. {
  14054. front: {
  14055. height: math.unit(12, "feet"),
  14056. weight: math.unit(6, "tonnes"),
  14057. name: "Front",
  14058. image: {
  14059. source: "./media/characters/lyra-von-wulf/front.svg",
  14060. extra: 1,
  14061. bottom: 0.10
  14062. }
  14063. },
  14064. frontMecha: {
  14065. height: math.unit(12, "feet"),
  14066. weight: math.unit(12, "tonnes"),
  14067. name: "Front (Mecha)",
  14068. image: {
  14069. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14070. extra: 1,
  14071. bottom: 0.042
  14072. }
  14073. },
  14074. maw: {
  14075. height: math.unit(2.2, "feet"),
  14076. name: "Maw",
  14077. image: {
  14078. source: "./media/characters/lyra-von-wulf/maw.svg"
  14079. }
  14080. },
  14081. },
  14082. [
  14083. {
  14084. name: "Normal",
  14085. height: math.unit(12, "feet"),
  14086. default: true
  14087. },
  14088. {
  14089. name: "Classic",
  14090. height: math.unit(50, "feet")
  14091. },
  14092. {
  14093. name: "Macro",
  14094. height: math.unit(500, "feet")
  14095. },
  14096. {
  14097. name: "Megamacro",
  14098. height: math.unit(1, "mile")
  14099. },
  14100. {
  14101. name: "Gigamacro",
  14102. height: math.unit(400, "miles")
  14103. },
  14104. {
  14105. name: "Teramacro",
  14106. height: math.unit(22000, "miles")
  14107. },
  14108. {
  14109. name: "Solarmacro",
  14110. height: math.unit(8600000, "miles")
  14111. },
  14112. {
  14113. name: "Galactic",
  14114. height: math.unit(1057000, "lightyears")
  14115. },
  14116. ]
  14117. ))
  14118. characterMakers.push(() => makeCharacter(
  14119. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14120. {
  14121. front: {
  14122. height: math.unit(6 + 10 / 12, "feet"),
  14123. weight: math.unit(150, "lb"),
  14124. name: "Front",
  14125. image: {
  14126. source: "./media/characters/dixon/front.svg",
  14127. extra: 3361 / 3209,
  14128. bottom: 0.01
  14129. }
  14130. },
  14131. },
  14132. [
  14133. {
  14134. name: "Normal",
  14135. height: math.unit(6 + 10 / 12, "feet"),
  14136. default: true
  14137. },
  14138. {
  14139. name: "Big",
  14140. height: math.unit(12, "meters")
  14141. },
  14142. {
  14143. name: "Macro",
  14144. height: math.unit(500, "meters")
  14145. },
  14146. {
  14147. name: "Megamacro",
  14148. height: math.unit(2, "km")
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14154. {
  14155. front: {
  14156. height: math.unit(185, "cm"),
  14157. weight: math.unit(68, "kg"),
  14158. name: "Front",
  14159. image: {
  14160. source: "./media/characters/kauko/front.svg",
  14161. extra: 1455 / 1421,
  14162. bottom: 0.03
  14163. }
  14164. },
  14165. back: {
  14166. height: math.unit(185, "cm"),
  14167. weight: math.unit(68, "kg"),
  14168. name: "Back",
  14169. image: {
  14170. source: "./media/characters/kauko/back.svg",
  14171. extra: 1455 / 1421,
  14172. bottom: 0.004
  14173. }
  14174. },
  14175. },
  14176. [
  14177. {
  14178. name: "Normal",
  14179. height: math.unit(185, "cm"),
  14180. default: true
  14181. },
  14182. ]
  14183. ))
  14184. characterMakers.push(() => makeCharacter(
  14185. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14186. {
  14187. frontSfw: {
  14188. height: math.unit(5, "meters"),
  14189. weight: math.unit(4250, "lb"),
  14190. name: "Front",
  14191. image: {
  14192. source: "./media/characters/varg/front-sfw.svg",
  14193. extra: 1103/1010,
  14194. bottom: 50/1153
  14195. },
  14196. form: "anthro",
  14197. default: true
  14198. },
  14199. backSfw: {
  14200. height: math.unit(5, "meters"),
  14201. weight: math.unit(4250, "lb"),
  14202. name: "Back",
  14203. image: {
  14204. source: "./media/characters/varg/back-sfw.svg",
  14205. extra: 1038/1022,
  14206. bottom: 36/1074
  14207. },
  14208. form: "anthro"
  14209. },
  14210. frontNsfw: {
  14211. height: math.unit(5, "meters"),
  14212. weight: math.unit(4250, "lb"),
  14213. name: "Front (NSFW)",
  14214. image: {
  14215. source: "./media/characters/varg/front-nsfw.svg",
  14216. extra: 1103/1010,
  14217. bottom: 50/1153
  14218. },
  14219. form: "anthro"
  14220. },
  14221. sheath: {
  14222. height: math.unit(3.8, "feet"),
  14223. weight: math.unit(90, "kilograms"),
  14224. name: "Sheath",
  14225. image: {
  14226. source: "./media/characters/varg/sheath.svg"
  14227. },
  14228. form: "anthro"
  14229. },
  14230. dick: {
  14231. height: math.unit(4.6, "feet"),
  14232. weight: math.unit(451, "kilograms"),
  14233. name: "Dick",
  14234. image: {
  14235. source: "./media/characters/varg/dick.svg"
  14236. },
  14237. form: "anthro"
  14238. },
  14239. feralSfw: {
  14240. height: math.unit(5, "meters"),
  14241. weight: math.unit(100000, "lb"),
  14242. name: "Side",
  14243. image: {
  14244. source: "./media/characters/varg/feral-sfw.svg",
  14245. extra: 1065/511,
  14246. bottom: 211/1276
  14247. },
  14248. form: "feral",
  14249. default: true
  14250. },
  14251. feralNsfw: {
  14252. height: math.unit(5, "meters"),
  14253. weight: math.unit(100000, "lb"),
  14254. name: "Side (NSFW)",
  14255. image: {
  14256. source: "./media/characters/varg/feral-nsfw.svg",
  14257. extra: 1065/511,
  14258. bottom: 211/1276
  14259. },
  14260. form: "feral",
  14261. },
  14262. feralSheath: {
  14263. height: math.unit(9.8, "feet"),
  14264. weight: math.unit(2000, "kilograms"),
  14265. name: "Sheath",
  14266. image: {
  14267. source: "./media/characters/varg/sheath.svg"
  14268. },
  14269. form: "feral"
  14270. },
  14271. feralDick: {
  14272. height: math.unit(13.11, "feet"),
  14273. weight: math.unit(10440, "kilograms"),
  14274. name: "Dick",
  14275. image: {
  14276. source: "./media/characters/varg/dick.svg"
  14277. },
  14278. form: "feral"
  14279. },
  14280. },
  14281. [
  14282. {
  14283. name: "Normal",
  14284. height: math.unit(5, "meters"),
  14285. form: "anthro"
  14286. },
  14287. {
  14288. name: "Macro",
  14289. height: math.unit(200, "meters"),
  14290. form: "anthro"
  14291. },
  14292. {
  14293. name: "Megamacro",
  14294. height: math.unit(20, "kilometers"),
  14295. form: "anthro"
  14296. },
  14297. {
  14298. name: "True Size",
  14299. height: math.unit(211, "km"),
  14300. form: "anthro",
  14301. default: true
  14302. },
  14303. {
  14304. name: "Gigamacro",
  14305. height: math.unit(1000, "km"),
  14306. form: "anthro"
  14307. },
  14308. {
  14309. name: "Gigamacro+",
  14310. height: math.unit(8000, "km"),
  14311. form: "anthro"
  14312. },
  14313. {
  14314. name: "Teramacro",
  14315. height: math.unit(1000000, "km"),
  14316. form: "anthro"
  14317. },
  14318. {
  14319. name: "Normal",
  14320. height: math.unit(5, "meters"),
  14321. form: "feral"
  14322. },
  14323. {
  14324. name: "Macro",
  14325. height: math.unit(200, "meters"),
  14326. form: "feral"
  14327. },
  14328. {
  14329. name: "Megamacro",
  14330. height: math.unit(20, "kilometers"),
  14331. form: "feral"
  14332. },
  14333. {
  14334. name: "True Size",
  14335. height: math.unit(211, "km"),
  14336. form: "feral",
  14337. default: true
  14338. },
  14339. {
  14340. name: "Gigamacro",
  14341. height: math.unit(1000, "km"),
  14342. form: "feral"
  14343. },
  14344. {
  14345. name: "Gigamacro+",
  14346. height: math.unit(8000, "km"),
  14347. form: "feral"
  14348. },
  14349. {
  14350. name: "Teramacro",
  14351. height: math.unit(1000000, "km"),
  14352. form: "feral"
  14353. },
  14354. ],
  14355. {
  14356. "anthro": {
  14357. name: "Anthro",
  14358. default: true
  14359. },
  14360. "feral": {
  14361. name: "Feral",
  14362. },
  14363. }
  14364. ))
  14365. characterMakers.push(() => makeCharacter(
  14366. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14367. {
  14368. front: {
  14369. height: math.unit(7 + 7 / 12, "feet"),
  14370. weight: math.unit(267, "lb"),
  14371. name: "Front",
  14372. image: {
  14373. source: "./media/characters/dayza/front.svg",
  14374. extra: 1262 / 1200,
  14375. bottom: 0.035
  14376. }
  14377. },
  14378. side: {
  14379. height: math.unit(7 + 7 / 12, "feet"),
  14380. weight: math.unit(267, "lb"),
  14381. name: "Side",
  14382. image: {
  14383. source: "./media/characters/dayza/side.svg",
  14384. extra: 1295 / 1245,
  14385. bottom: 0.05
  14386. }
  14387. },
  14388. back: {
  14389. height: math.unit(7 + 7 / 12, "feet"),
  14390. weight: math.unit(267, "lb"),
  14391. name: "Back",
  14392. image: {
  14393. source: "./media/characters/dayza/back.svg",
  14394. extra: 1241 / 1170
  14395. }
  14396. },
  14397. },
  14398. [
  14399. {
  14400. name: "Normal",
  14401. height: math.unit(7 + 7 / 12, "feet"),
  14402. default: true
  14403. },
  14404. {
  14405. name: "Macro",
  14406. height: math.unit(155, "feet")
  14407. },
  14408. ]
  14409. ))
  14410. characterMakers.push(() => makeCharacter(
  14411. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14412. {
  14413. front: {
  14414. height: math.unit(6 + 5 / 12, "feet"),
  14415. weight: math.unit(160, "lb"),
  14416. name: "Front",
  14417. image: {
  14418. source: "./media/characters/xanthos/front.svg",
  14419. extra: 1,
  14420. bottom: 0.04
  14421. }
  14422. },
  14423. back: {
  14424. height: math.unit(6 + 5 / 12, "feet"),
  14425. weight: math.unit(160, "lb"),
  14426. name: "Back",
  14427. image: {
  14428. source: "./media/characters/xanthos/back.svg",
  14429. extra: 1,
  14430. bottom: 0.03
  14431. }
  14432. },
  14433. hand: {
  14434. height: math.unit(0.928, "feet"),
  14435. name: "Hand",
  14436. image: {
  14437. source: "./media/characters/xanthos/hand.svg"
  14438. }
  14439. },
  14440. foot: {
  14441. height: math.unit(1.286, "feet"),
  14442. name: "Foot",
  14443. image: {
  14444. source: "./media/characters/xanthos/foot.svg"
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Normal",
  14451. height: math.unit(6 + 5 / 12, "feet"),
  14452. default: true
  14453. },
  14454. {
  14455. name: "Normal+",
  14456. height: math.unit(6, "meters")
  14457. },
  14458. {
  14459. name: "Macro",
  14460. height: math.unit(40, "feet")
  14461. },
  14462. {
  14463. name: "Macro+",
  14464. height: math.unit(200, "meters")
  14465. },
  14466. {
  14467. name: "Megamacro",
  14468. height: math.unit(20, "km")
  14469. },
  14470. {
  14471. name: "Megamacro+",
  14472. height: math.unit(100, "km")
  14473. },
  14474. {
  14475. name: "Gigamacro",
  14476. height: math.unit(200, "megameters")
  14477. },
  14478. {
  14479. name: "Gigamacro+",
  14480. height: math.unit(1.5, "gigameters")
  14481. },
  14482. ]
  14483. ))
  14484. characterMakers.push(() => makeCharacter(
  14485. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14486. {
  14487. front: {
  14488. height: math.unit(6 + 3 / 12, "feet"),
  14489. weight: math.unit(215, "lb"),
  14490. name: "Front",
  14491. image: {
  14492. source: "./media/characters/grynn/front.svg",
  14493. extra: 4627 / 4209,
  14494. bottom: 0.047
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Micro",
  14501. height: math.unit(6, "inches")
  14502. },
  14503. {
  14504. name: "Normal",
  14505. height: math.unit(6 + 3 / 12, "feet"),
  14506. default: true
  14507. },
  14508. {
  14509. name: "Big",
  14510. height: math.unit(104, "feet")
  14511. },
  14512. {
  14513. name: "Macro",
  14514. height: math.unit(944, "feet")
  14515. },
  14516. {
  14517. name: "Macro+",
  14518. height: math.unit(9480, "feet")
  14519. },
  14520. {
  14521. name: "Megamacro",
  14522. height: math.unit(78752, "feet")
  14523. },
  14524. {
  14525. name: "Megamacro+",
  14526. height: math.unit(630128, "feet")
  14527. },
  14528. {
  14529. name: "Megamacro++",
  14530. height: math.unit(3150695, "feet")
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14536. {
  14537. front: {
  14538. height: math.unit(7 + 5 / 12, "feet"),
  14539. weight: math.unit(450, "lb"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/mocha-aura/front.svg",
  14543. extra: 1907 / 1817,
  14544. bottom: 0.04
  14545. }
  14546. },
  14547. back: {
  14548. height: math.unit(7 + 5 / 12, "feet"),
  14549. weight: math.unit(450, "lb"),
  14550. name: "Back",
  14551. image: {
  14552. source: "./media/characters/mocha-aura/back.svg",
  14553. extra: 1900 / 1825,
  14554. bottom: 0.045
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Nano",
  14561. height: math.unit(1, "nm")
  14562. },
  14563. {
  14564. name: "Megamicro",
  14565. height: math.unit(1, "mm")
  14566. },
  14567. {
  14568. name: "Micro",
  14569. height: math.unit(3, "inches")
  14570. },
  14571. {
  14572. name: "Normal",
  14573. height: math.unit(7 + 5 / 12, "feet"),
  14574. default: true
  14575. },
  14576. {
  14577. name: "Macro",
  14578. height: math.unit(30, "feet")
  14579. },
  14580. {
  14581. name: "Megamacro",
  14582. height: math.unit(3500, "feet")
  14583. },
  14584. {
  14585. name: "Teramacro",
  14586. height: math.unit(500000, "miles")
  14587. },
  14588. {
  14589. name: "Petamacro",
  14590. height: math.unit(50000000000000000, "parsecs")
  14591. },
  14592. ]
  14593. ))
  14594. characterMakers.push(() => makeCharacter(
  14595. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14596. {
  14597. front: {
  14598. height: math.unit(6, "feet"),
  14599. weight: math.unit(150, "lb"),
  14600. name: "Front",
  14601. image: {
  14602. source: "./media/characters/ilisha-devya/front.svg",
  14603. extra: 1053/1049,
  14604. bottom: 270/1323
  14605. }
  14606. },
  14607. back: {
  14608. height: math.unit(6, "feet"),
  14609. weight: math.unit(150, "lb"),
  14610. name: "Back",
  14611. image: {
  14612. source: "./media/characters/ilisha-devya/back.svg",
  14613. extra: 1131/1128,
  14614. bottom: 39/1170
  14615. }
  14616. },
  14617. },
  14618. [
  14619. {
  14620. name: "Macro",
  14621. height: math.unit(500, "feet"),
  14622. default: true
  14623. },
  14624. {
  14625. name: "Megamacro",
  14626. height: math.unit(10, "miles")
  14627. },
  14628. {
  14629. name: "Gigamacro",
  14630. height: math.unit(100000, "miles")
  14631. },
  14632. {
  14633. name: "Examacro",
  14634. height: math.unit(1e9, "lightyears")
  14635. },
  14636. {
  14637. name: "Omniversal",
  14638. height: math.unit(1e33, "lightyears")
  14639. },
  14640. {
  14641. name: "Beyond Infinite",
  14642. height: math.unit(1e100, "lightyears")
  14643. },
  14644. ]
  14645. ))
  14646. characterMakers.push(() => makeCharacter(
  14647. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14648. {
  14649. Side: {
  14650. height: math.unit(6, "feet"),
  14651. weight: math.unit(150, "lb"),
  14652. name: "Side",
  14653. image: {
  14654. source: "./media/characters/mira/side.svg",
  14655. extra: 900 / 799,
  14656. bottom: 0.02
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Human Size",
  14663. height: math.unit(6, "feet")
  14664. },
  14665. {
  14666. name: "Macro",
  14667. height: math.unit(100, "feet"),
  14668. default: true
  14669. },
  14670. {
  14671. name: "Megamacro",
  14672. height: math.unit(10, "miles")
  14673. },
  14674. {
  14675. name: "Gigamacro",
  14676. height: math.unit(25000, "miles")
  14677. },
  14678. {
  14679. name: "Teramacro",
  14680. height: math.unit(300, "AU")
  14681. },
  14682. {
  14683. name: "Full Size",
  14684. height: math.unit(4.5e10, "lightyears")
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14690. {
  14691. front: {
  14692. height: math.unit(6, "feet"),
  14693. weight: math.unit(150, "lb"),
  14694. name: "Front",
  14695. image: {
  14696. source: "./media/characters/holly/front.svg",
  14697. extra: 639 / 606
  14698. }
  14699. },
  14700. back: {
  14701. height: math.unit(6, "feet"),
  14702. weight: math.unit(150, "lb"),
  14703. name: "Back",
  14704. image: {
  14705. source: "./media/characters/holly/back.svg",
  14706. extra: 623 / 598
  14707. }
  14708. },
  14709. frontWorking: {
  14710. height: math.unit(6, "feet"),
  14711. weight: math.unit(150, "lb"),
  14712. name: "Front (Working)",
  14713. image: {
  14714. source: "./media/characters/holly/front-working.svg",
  14715. extra: 607 / 577,
  14716. bottom: 0.048
  14717. }
  14718. },
  14719. },
  14720. [
  14721. {
  14722. name: "Normal",
  14723. height: math.unit(12 + 3 / 12, "feet"),
  14724. default: true
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(6, "feet"),
  14733. weight: math.unit(150, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/porter/front.svg",
  14737. extra: 1,
  14738. bottom: 0.01
  14739. }
  14740. },
  14741. frontRobes: {
  14742. height: math.unit(6, "feet"),
  14743. weight: math.unit(150, "lb"),
  14744. name: "Front (Robes)",
  14745. image: {
  14746. source: "./media/characters/porter/front-robes.svg",
  14747. extra: 1.01,
  14748. bottom: 0.01
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Normal",
  14755. height: math.unit(11 + 9 / 12, "feet"),
  14756. default: true
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14762. {
  14763. legendary: {
  14764. height: math.unit(6, "feet"),
  14765. weight: math.unit(150, "lb"),
  14766. name: "Legendary",
  14767. image: {
  14768. source: "./media/characters/lucy/legendary.svg",
  14769. extra: 1355 / 1100,
  14770. bottom: 0.045
  14771. }
  14772. },
  14773. },
  14774. [
  14775. {
  14776. name: "Legendary",
  14777. height: math.unit(86882 * 2, "miles"),
  14778. default: true
  14779. },
  14780. ]
  14781. ))
  14782. characterMakers.push(() => makeCharacter(
  14783. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14784. {
  14785. front: {
  14786. height: math.unit(6, "feet"),
  14787. weight: math.unit(150, "lb"),
  14788. name: "Front",
  14789. image: {
  14790. source: "./media/characters/drusilla/front.svg",
  14791. extra: 678 / 635,
  14792. bottom: 0.03
  14793. }
  14794. },
  14795. back: {
  14796. height: math.unit(6, "feet"),
  14797. weight: math.unit(150, "lb"),
  14798. name: "Back",
  14799. image: {
  14800. source: "./media/characters/drusilla/back.svg",
  14801. extra: 678 / 635,
  14802. bottom: 0.005
  14803. }
  14804. },
  14805. },
  14806. [
  14807. {
  14808. name: "Macro",
  14809. height: math.unit(100, "feet")
  14810. },
  14811. {
  14812. name: "Canon Height",
  14813. height: math.unit(2000, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(6, "feet"),
  14823. weight: math.unit(180, "lb"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/renard-thatch/front.svg",
  14827. extra: 2411 / 2275,
  14828. bottom: 0.01
  14829. }
  14830. },
  14831. frontPosing: {
  14832. height: math.unit(6, "feet"),
  14833. weight: math.unit(180, "lb"),
  14834. name: "Front (Posing)",
  14835. image: {
  14836. source: "./media/characters/renard-thatch/front-posing.svg",
  14837. extra: 2381 / 2261,
  14838. bottom: 0.01
  14839. }
  14840. },
  14841. back: {
  14842. height: math.unit(6, "feet"),
  14843. weight: math.unit(180, "lb"),
  14844. name: "Back",
  14845. image: {
  14846. source: "./media/characters/renard-thatch/back.svg",
  14847. extra: 2428 / 2288
  14848. }
  14849. },
  14850. },
  14851. [
  14852. {
  14853. name: "Micro",
  14854. height: math.unit(3, "inches")
  14855. },
  14856. {
  14857. name: "Default",
  14858. height: math.unit(6, "feet"),
  14859. default: true
  14860. },
  14861. {
  14862. name: "Macro",
  14863. height: math.unit(75, "feet")
  14864. },
  14865. ]
  14866. ))
  14867. characterMakers.push(() => makeCharacter(
  14868. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14869. {
  14870. front: {
  14871. height: math.unit(1450, "feet"),
  14872. weight: math.unit(1.21e6, "tons"),
  14873. name: "Front",
  14874. image: {
  14875. source: "./media/characters/sekvra/front.svg",
  14876. extra: 1193/1190,
  14877. bottom: 78/1271
  14878. }
  14879. },
  14880. side: {
  14881. height: math.unit(1450, "feet"),
  14882. weight: math.unit(1.21e6, "tons"),
  14883. name: "Side",
  14884. image: {
  14885. source: "./media/characters/sekvra/side.svg",
  14886. extra: 1193/1190,
  14887. bottom: 52/1245
  14888. }
  14889. },
  14890. back: {
  14891. height: math.unit(1450, "feet"),
  14892. weight: math.unit(1.21e6, "tons"),
  14893. name: "Back",
  14894. image: {
  14895. source: "./media/characters/sekvra/back.svg",
  14896. extra: 1219/1216,
  14897. bottom: 21/1240
  14898. }
  14899. },
  14900. frontClothed: {
  14901. height: math.unit(1450, "feet"),
  14902. weight: math.unit(1.21e6, "tons"),
  14903. name: "Front (Clothed)",
  14904. image: {
  14905. source: "./media/characters/sekvra/front-clothed.svg",
  14906. extra: 1192/1189,
  14907. bottom: 79/1271
  14908. }
  14909. },
  14910. },
  14911. [
  14912. {
  14913. name: "Macro",
  14914. height: math.unit(1450, "feet"),
  14915. default: true
  14916. },
  14917. {
  14918. name: "Megamacro",
  14919. height: math.unit(15000, "feet")
  14920. },
  14921. ]
  14922. ))
  14923. characterMakers.push(() => makeCharacter(
  14924. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14925. {
  14926. front: {
  14927. height: math.unit(6, "feet"),
  14928. weight: math.unit(150, "lb"),
  14929. name: "Front",
  14930. image: {
  14931. source: "./media/characters/carmine/front.svg",
  14932. extra: 1557/1538,
  14933. bottom: 68/1625
  14934. }
  14935. },
  14936. frontArmor: {
  14937. height: math.unit(6, "feet"),
  14938. weight: math.unit(150, "lb"),
  14939. name: "Front (Armor)",
  14940. image: {
  14941. source: "./media/characters/carmine/front-armor.svg",
  14942. extra: 1549/1530,
  14943. bottom: 82/1631
  14944. }
  14945. },
  14946. mouth: {
  14947. height: math.unit(0.55, "feet"),
  14948. name: "Mouth",
  14949. image: {
  14950. source: "./media/characters/carmine/mouth.svg"
  14951. }
  14952. },
  14953. hand: {
  14954. height: math.unit(1.05, "feet"),
  14955. name: "Hand",
  14956. image: {
  14957. source: "./media/characters/carmine/hand.svg"
  14958. }
  14959. },
  14960. foot: {
  14961. height: math.unit(0.6, "feet"),
  14962. name: "Foot",
  14963. image: {
  14964. source: "./media/characters/carmine/foot.svg"
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Large",
  14971. height: math.unit(1, "mile")
  14972. },
  14973. {
  14974. name: "Huge",
  14975. height: math.unit(40, "miles"),
  14976. default: true
  14977. },
  14978. {
  14979. name: "Colossal",
  14980. height: math.unit(2500, "miles")
  14981. },
  14982. ]
  14983. ))
  14984. characterMakers.push(() => makeCharacter(
  14985. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14986. {
  14987. front: {
  14988. height: math.unit(6, "feet"),
  14989. weight: math.unit(150, "lb"),
  14990. name: "Front",
  14991. image: {
  14992. source: "./media/characters/elyssia/front.svg",
  14993. extra: 2201 / 2035,
  14994. bottom: 0.05
  14995. }
  14996. },
  14997. frontClothed: {
  14998. height: math.unit(6, "feet"),
  14999. weight: math.unit(150, "lb"),
  15000. name: "Front (Clothed)",
  15001. image: {
  15002. source: "./media/characters/elyssia/front-clothed.svg",
  15003. extra: 2201 / 2035,
  15004. bottom: 0.05
  15005. }
  15006. },
  15007. back: {
  15008. height: math.unit(6, "feet"),
  15009. weight: math.unit(150, "lb"),
  15010. name: "Back",
  15011. image: {
  15012. source: "./media/characters/elyssia/back.svg",
  15013. extra: 2201 / 2035,
  15014. bottom: 0.013
  15015. }
  15016. },
  15017. },
  15018. [
  15019. {
  15020. name: "Smaller",
  15021. height: math.unit(150, "feet")
  15022. },
  15023. {
  15024. name: "Standard",
  15025. height: math.unit(1400, "feet"),
  15026. default: true
  15027. },
  15028. {
  15029. name: "Distracted",
  15030. height: math.unit(15000, "feet")
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(7 + 4/12, "feet"),
  15039. weight: math.unit(690, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/geno-maxwell/front.svg",
  15043. extra: 984/856,
  15044. bottom: 87/1071
  15045. }
  15046. },
  15047. back: {
  15048. height: math.unit(7 + 4/12, "feet"),
  15049. weight: math.unit(690, "lb"),
  15050. name: "Back",
  15051. image: {
  15052. source: "./media/characters/geno-maxwell/back.svg",
  15053. extra: 981/854,
  15054. bottom: 57/1038
  15055. }
  15056. },
  15057. frontCostume: {
  15058. height: math.unit(7 + 4/12, "feet"),
  15059. weight: math.unit(690, "lb"),
  15060. name: "Front (Costume)",
  15061. image: {
  15062. source: "./media/characters/geno-maxwell/front-costume.svg",
  15063. extra: 984/856,
  15064. bottom: 87/1071
  15065. }
  15066. },
  15067. backcostume: {
  15068. height: math.unit(7 + 4/12, "feet"),
  15069. weight: math.unit(690, "lb"),
  15070. name: "Back (Costume)",
  15071. image: {
  15072. source: "./media/characters/geno-maxwell/back-costume.svg",
  15073. extra: 981/854,
  15074. bottom: 57/1038
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Micro",
  15081. height: math.unit(3, "inches")
  15082. },
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(7 + 4 / 12, "feet"),
  15086. default: true
  15087. },
  15088. {
  15089. name: "Macro",
  15090. height: math.unit(220, "feet")
  15091. },
  15092. {
  15093. name: "Megamacro",
  15094. height: math.unit(11, "miles")
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15100. {
  15101. front: {
  15102. height: math.unit(7 + 4/12, "feet"),
  15103. weight: math.unit(750, "lb"),
  15104. name: "Front",
  15105. image: {
  15106. source: "./media/characters/regena-maxwell/front.svg",
  15107. extra: 984/856,
  15108. bottom: 87/1071
  15109. }
  15110. },
  15111. back: {
  15112. height: math.unit(7 + 4/12, "feet"),
  15113. weight: math.unit(750, "lb"),
  15114. name: "Back",
  15115. image: {
  15116. source: "./media/characters/regena-maxwell/back.svg",
  15117. extra: 981/854,
  15118. bottom: 57/1038
  15119. }
  15120. },
  15121. frontCostume: {
  15122. height: math.unit(7 + 4/12, "feet"),
  15123. weight: math.unit(750, "lb"),
  15124. name: "Front (Costume)",
  15125. image: {
  15126. source: "./media/characters/regena-maxwell/front-costume.svg",
  15127. extra: 984/856,
  15128. bottom: 87/1071
  15129. }
  15130. },
  15131. backcostume: {
  15132. height: math.unit(7 + 4/12, "feet"),
  15133. weight: math.unit(750, "lb"),
  15134. name: "Back (Costume)",
  15135. image: {
  15136. source: "./media/characters/regena-maxwell/back-costume.svg",
  15137. extra: 981/854,
  15138. bottom: 57/1038
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Normal",
  15145. height: math.unit(7 + 4 / 12, "feet"),
  15146. default: true
  15147. },
  15148. {
  15149. name: "Macro",
  15150. height: math.unit(220, "feet")
  15151. },
  15152. {
  15153. name: "Megamacro",
  15154. height: math.unit(11, "miles")
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15160. {
  15161. front: {
  15162. height: math.unit(6, "feet"),
  15163. weight: math.unit(150, "lb"),
  15164. name: "Front",
  15165. image: {
  15166. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15167. extra: 860 / 690,
  15168. bottom: 0.03
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Normal",
  15175. height: math.unit(1.7, "meters"),
  15176. default: true
  15177. },
  15178. ]
  15179. ))
  15180. characterMakers.push(() => makeCharacter(
  15181. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15182. {
  15183. front: {
  15184. height: math.unit(6, "feet"),
  15185. weight: math.unit(150, "lb"),
  15186. name: "Front",
  15187. image: {
  15188. source: "./media/characters/quilly/front.svg",
  15189. extra: 890 / 776
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Gigamacro",
  15196. height: math.unit(404090, "miles"),
  15197. default: true
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15203. {
  15204. front: {
  15205. height: math.unit(7 + 8 / 12, "feet"),
  15206. weight: math.unit(350, "lb"),
  15207. name: "Front",
  15208. image: {
  15209. source: "./media/characters/tempest/front.svg",
  15210. extra: 1175 / 1086,
  15211. bottom: 0.02
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Normal",
  15218. height: math.unit(7 + 8 / 12, "feet"),
  15219. default: true
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15225. {
  15226. side: {
  15227. height: math.unit(4 + 5 / 12, "feet"),
  15228. weight: math.unit(80, "lb"),
  15229. name: "Side",
  15230. image: {
  15231. source: "./media/characters/rodger/side.svg",
  15232. extra: 1235 / 1118
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Micro",
  15239. height: math.unit(1, "inch")
  15240. },
  15241. {
  15242. name: "Normal",
  15243. height: math.unit(4 + 5 / 12, "feet"),
  15244. default: true
  15245. },
  15246. {
  15247. name: "Macro",
  15248. height: math.unit(120, "feet")
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(6, "feet"),
  15257. weight: math.unit(150, "lb"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/danyel/front.svg",
  15261. extra: 1185 / 1123,
  15262. bottom: 0.05
  15263. }
  15264. },
  15265. },
  15266. [
  15267. {
  15268. name: "Shrunken",
  15269. height: math.unit(0.5, "mm")
  15270. },
  15271. {
  15272. name: "Micro",
  15273. height: math.unit(1, "mm"),
  15274. default: true
  15275. },
  15276. {
  15277. name: "Upsized",
  15278. height: math.unit(5 + 5 / 12, "feet")
  15279. },
  15280. ]
  15281. ))
  15282. characterMakers.push(() => makeCharacter(
  15283. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15284. {
  15285. front: {
  15286. height: math.unit(5 + 6 / 12, "feet"),
  15287. weight: math.unit(200, "lb"),
  15288. name: "Front",
  15289. image: {
  15290. source: "./media/characters/vivian-bijoux/front.svg",
  15291. extra: 1217/1209,
  15292. bottom: 76/1293
  15293. }
  15294. },
  15295. back: {
  15296. height: math.unit(5 + 6 / 12, "feet"),
  15297. weight: math.unit(200, "lb"),
  15298. name: "Back",
  15299. image: {
  15300. source: "./media/characters/vivian-bijoux/back.svg",
  15301. extra: 1214/1208,
  15302. bottom: 51/1265
  15303. }
  15304. },
  15305. dressed: {
  15306. height: math.unit(5 + 6 / 12, "feet"),
  15307. weight: math.unit(200, "lb"),
  15308. name: "Dressed",
  15309. image: {
  15310. source: "./media/characters/vivian-bijoux/dressed.svg",
  15311. extra: 1217/1209,
  15312. bottom: 76/1293
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(5 + 6 / 12, "feet"),
  15320. default: true
  15321. },
  15322. {
  15323. name: "Bad Dream",
  15324. height: math.unit(500, "feet")
  15325. },
  15326. {
  15327. name: "Nightmare",
  15328. height: math.unit(500, "miles")
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(6 + 1 / 12, "feet"),
  15337. weight: math.unit(260, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/zeta/front.svg",
  15341. extra: 1968 / 1889,
  15342. bottom: 0.06
  15343. }
  15344. },
  15345. back: {
  15346. height: math.unit(6 + 1 / 12, "feet"),
  15347. weight: math.unit(260, "lb"),
  15348. name: "Back",
  15349. image: {
  15350. source: "./media/characters/zeta/back.svg",
  15351. extra: 1944 / 1858,
  15352. bottom: 0.03
  15353. }
  15354. },
  15355. hand: {
  15356. height: math.unit(1.112, "feet"),
  15357. name: "Hand",
  15358. image: {
  15359. source: "./media/characters/zeta/hand.svg"
  15360. }
  15361. },
  15362. foot: {
  15363. height: math.unit(1.48, "feet"),
  15364. name: "Foot",
  15365. image: {
  15366. source: "./media/characters/zeta/foot.svg"
  15367. }
  15368. },
  15369. },
  15370. [
  15371. {
  15372. name: "Micro",
  15373. height: math.unit(6, "inches")
  15374. },
  15375. {
  15376. name: "Normal",
  15377. height: math.unit(6 + 1 / 12, "feet"),
  15378. default: true
  15379. },
  15380. {
  15381. name: "Macro",
  15382. height: math.unit(20, "feet")
  15383. },
  15384. ]
  15385. ))
  15386. characterMakers.push(() => makeCharacter(
  15387. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15388. {
  15389. front: {
  15390. height: math.unit(6, "feet"),
  15391. weight: math.unit(150, "lb"),
  15392. name: "Front",
  15393. image: {
  15394. source: "./media/characters/jamie-larsen/front.svg",
  15395. extra: 962 / 933,
  15396. bottom: 0.02
  15397. }
  15398. },
  15399. back: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(150, "lb"),
  15402. name: "Back",
  15403. image: {
  15404. source: "./media/characters/jamie-larsen/back.svg",
  15405. extra: 997 / 946
  15406. }
  15407. },
  15408. },
  15409. [
  15410. {
  15411. name: "Macro",
  15412. height: math.unit(28 + 7 / 12, "feet"),
  15413. default: true
  15414. },
  15415. {
  15416. name: "Macro+",
  15417. height: math.unit(180, "feet")
  15418. },
  15419. {
  15420. name: "Megamacro",
  15421. height: math.unit(10, "miles")
  15422. },
  15423. {
  15424. name: "Gigamacro",
  15425. height: math.unit(200000, "miles")
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15431. {
  15432. front: {
  15433. height: math.unit(6, "feet"),
  15434. weight: math.unit(120, "lb"),
  15435. name: "Front",
  15436. image: {
  15437. source: "./media/characters/vance/front.svg",
  15438. extra: 1980 / 1890,
  15439. bottom: 0.09
  15440. }
  15441. },
  15442. back: {
  15443. height: math.unit(6, "feet"),
  15444. weight: math.unit(120, "lb"),
  15445. name: "Back",
  15446. image: {
  15447. source: "./media/characters/vance/back.svg",
  15448. extra: 2081 / 1994,
  15449. bottom: 0.014
  15450. }
  15451. },
  15452. hand: {
  15453. height: math.unit(0.88, "feet"),
  15454. name: "Hand",
  15455. image: {
  15456. source: "./media/characters/vance/hand.svg"
  15457. }
  15458. },
  15459. foot: {
  15460. height: math.unit(0.64, "feet"),
  15461. name: "Foot",
  15462. image: {
  15463. source: "./media/characters/vance/foot.svg"
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Small",
  15470. height: math.unit(90, "feet"),
  15471. default: true
  15472. },
  15473. {
  15474. name: "Macro",
  15475. height: math.unit(100, "meters")
  15476. },
  15477. {
  15478. name: "Megamacro",
  15479. height: math.unit(15, "miles")
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15485. {
  15486. front: {
  15487. height: math.unit(6, "feet"),
  15488. weight: math.unit(180, "lb"),
  15489. name: "Front",
  15490. image: {
  15491. source: "./media/characters/xochitl/front.svg",
  15492. extra: 2297 / 2261,
  15493. bottom: 0.065
  15494. }
  15495. },
  15496. back: {
  15497. height: math.unit(6, "feet"),
  15498. weight: math.unit(180, "lb"),
  15499. name: "Back",
  15500. image: {
  15501. source: "./media/characters/xochitl/back.svg",
  15502. extra: 2386 / 2354,
  15503. bottom: 0.01
  15504. }
  15505. },
  15506. foot: {
  15507. height: math.unit(6 / 5 * 1.15, "feet"),
  15508. weight: math.unit(150, "lb"),
  15509. name: "Foot",
  15510. image: {
  15511. source: "./media/characters/xochitl/foot.svg"
  15512. }
  15513. },
  15514. },
  15515. [
  15516. {
  15517. name: "Macro",
  15518. height: math.unit(80, "feet")
  15519. },
  15520. {
  15521. name: "Macro+",
  15522. height: math.unit(400, "feet"),
  15523. default: true
  15524. },
  15525. {
  15526. name: "Gigamacro",
  15527. height: math.unit(80000, "miles")
  15528. },
  15529. {
  15530. name: "Gigamacro+",
  15531. height: math.unit(400000, "miles")
  15532. },
  15533. {
  15534. name: "Teramacro",
  15535. height: math.unit(300, "AU")
  15536. },
  15537. ]
  15538. ))
  15539. characterMakers.push(() => makeCharacter(
  15540. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15541. {
  15542. front: {
  15543. height: math.unit(6, "feet"),
  15544. weight: math.unit(150, "lb"),
  15545. name: "Front",
  15546. image: {
  15547. source: "./media/characters/vincent/front.svg",
  15548. extra: 1130 / 1080,
  15549. bottom: 0.055
  15550. }
  15551. },
  15552. beak: {
  15553. height: math.unit(6 * 0.1, "feet"),
  15554. name: "Beak",
  15555. image: {
  15556. source: "./media/characters/vincent/beak.svg"
  15557. }
  15558. },
  15559. hand: {
  15560. height: math.unit(6 * 0.85, "feet"),
  15561. weight: math.unit(150, "lb"),
  15562. name: "Hand",
  15563. image: {
  15564. source: "./media/characters/vincent/hand.svg"
  15565. }
  15566. },
  15567. foot: {
  15568. height: math.unit(6 * 0.19, "feet"),
  15569. weight: math.unit(150, "lb"),
  15570. name: "Foot",
  15571. image: {
  15572. source: "./media/characters/vincent/foot.svg"
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Base",
  15579. height: math.unit(6 + 5 / 12, "feet"),
  15580. default: true
  15581. },
  15582. {
  15583. name: "Macro",
  15584. height: math.unit(300, "feet")
  15585. },
  15586. {
  15587. name: "Megamacro",
  15588. height: math.unit(2, "miles")
  15589. },
  15590. {
  15591. name: "Gigamacro",
  15592. height: math.unit(1000, "miles")
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15598. {
  15599. front: {
  15600. height: math.unit(2, "meters"),
  15601. weight: math.unit(500, "kg"),
  15602. name: "Front",
  15603. image: {
  15604. source: "./media/characters/coatl/front.svg",
  15605. extra: 3948 / 3500,
  15606. bottom: 0.082
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(4, "meters")
  15614. },
  15615. {
  15616. name: "Macro",
  15617. height: math.unit(100, "meters"),
  15618. default: true
  15619. },
  15620. {
  15621. name: "Macro+",
  15622. height: math.unit(300, "meters")
  15623. },
  15624. {
  15625. name: "Megamacro",
  15626. height: math.unit(3, "gigameters")
  15627. },
  15628. {
  15629. name: "Megamacro+",
  15630. height: math.unit(300, "terameters")
  15631. },
  15632. {
  15633. name: "Megamacro++",
  15634. height: math.unit(3, "lightyears")
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15640. {
  15641. front: {
  15642. height: math.unit(6, "feet"),
  15643. weight: math.unit(50, "kg"),
  15644. name: "front",
  15645. image: {
  15646. source: "./media/characters/shiroryu/front.svg",
  15647. extra: 1990 / 1935
  15648. }
  15649. },
  15650. },
  15651. [
  15652. {
  15653. name: "Mortal Mingling",
  15654. height: math.unit(3, "meters")
  15655. },
  15656. {
  15657. name: "Kaiju-ish",
  15658. height: math.unit(250, "meters")
  15659. },
  15660. {
  15661. name: "Somewhat Godly",
  15662. height: math.unit(400, "km"),
  15663. default: true
  15664. },
  15665. {
  15666. name: "Planetary",
  15667. height: math.unit(300, "megameters")
  15668. },
  15669. {
  15670. name: "Galaxy-dwarfing",
  15671. height: math.unit(450, "kiloparsecs")
  15672. },
  15673. {
  15674. name: "Universe Eater",
  15675. height: math.unit(150, "gigaparsecs")
  15676. },
  15677. {
  15678. name: "Almost Immeasurable",
  15679. height: math.unit(1.3e266, "yottaparsecs")
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(6, "feet"),
  15688. weight: math.unit(150, "lb"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/umeko/front.svg",
  15692. extra: 1,
  15693. bottom: 0.019
  15694. }
  15695. },
  15696. frontArmored: {
  15697. height: math.unit(6, "feet"),
  15698. weight: math.unit(150, "lb"),
  15699. name: "Front (Armored)",
  15700. image: {
  15701. source: "./media/characters/umeko/front-armored.svg",
  15702. extra: 1,
  15703. bottom: 0.021
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Macro",
  15710. height: math.unit(220, "feet"),
  15711. default: true
  15712. },
  15713. {
  15714. name: "Guardian Dragon",
  15715. height: math.unit(50, "miles")
  15716. },
  15717. {
  15718. name: "Cosmic",
  15719. height: math.unit(800000, "miles")
  15720. },
  15721. ]
  15722. ))
  15723. characterMakers.push(() => makeCharacter(
  15724. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15725. {
  15726. front: {
  15727. height: math.unit(6, "feet"),
  15728. weight: math.unit(150, "lb"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/cassidy/front.svg",
  15732. extra: 810/808,
  15733. bottom: 41/851
  15734. }
  15735. },
  15736. },
  15737. [
  15738. {
  15739. name: "Canon Height",
  15740. height: math.unit(120, "feet"),
  15741. default: true
  15742. },
  15743. {
  15744. name: "Macro+",
  15745. height: math.unit(400, "feet")
  15746. },
  15747. {
  15748. name: "Macro++",
  15749. height: math.unit(4000, "feet")
  15750. },
  15751. {
  15752. name: "Megamacro",
  15753. height: math.unit(3, "miles")
  15754. },
  15755. ]
  15756. ))
  15757. characterMakers.push(() => makeCharacter(
  15758. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15759. {
  15760. front: {
  15761. height: math.unit(6, "feet"),
  15762. weight: math.unit(150, "lb"),
  15763. name: "Front",
  15764. image: {
  15765. source: "./media/characters/isaac/front.svg",
  15766. extra: 896 / 815,
  15767. bottom: 0.11
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Human Size",
  15774. height: math.unit(8, "feet"),
  15775. default: true
  15776. },
  15777. {
  15778. name: "Macro",
  15779. height: math.unit(400, "feet")
  15780. },
  15781. {
  15782. name: "Megamacro",
  15783. height: math.unit(50, "miles")
  15784. },
  15785. {
  15786. name: "Canon Height",
  15787. height: math.unit(200, "AU")
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15793. {
  15794. front: {
  15795. height: math.unit(6, "feet"),
  15796. weight: math.unit(72, "kg"),
  15797. name: "Front",
  15798. image: {
  15799. source: "./media/characters/sleekit/front.svg",
  15800. extra: 4693 / 4487,
  15801. bottom: 0.012
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Minimum Height",
  15808. height: math.unit(10, "meters")
  15809. },
  15810. {
  15811. name: "Smaller",
  15812. height: math.unit(25, "meters")
  15813. },
  15814. {
  15815. name: "Larger",
  15816. height: math.unit(38, "meters"),
  15817. default: true
  15818. },
  15819. {
  15820. name: "Maximum height",
  15821. height: math.unit(100, "meters")
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15827. {
  15828. front: {
  15829. height: math.unit(6, "feet"),
  15830. weight: math.unit(150, "lb"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/nillia/front.svg",
  15834. extra: 719/665,
  15835. bottom: 6/725
  15836. }
  15837. },
  15838. back: {
  15839. height: math.unit(6, "feet"),
  15840. weight: math.unit(150, "lb"),
  15841. name: "Back",
  15842. image: {
  15843. source: "./media/characters/nillia/back.svg",
  15844. extra: 705/651,
  15845. bottom: 5/710
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Canon Height",
  15852. height: math.unit(489, "feet"),
  15853. default: true
  15854. }
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15859. {
  15860. front: {
  15861. height: math.unit(6, "feet"),
  15862. weight: math.unit(150, "lb"),
  15863. name: "Front",
  15864. image: {
  15865. source: "./media/characters/mesmyriza/front.svg",
  15866. extra: 1541/1291,
  15867. bottom: 87/1628
  15868. }
  15869. },
  15870. foot: {
  15871. height: math.unit(6 / (250 / 35), "feet"),
  15872. name: "Foot",
  15873. image: {
  15874. source: "./media/characters/mesmyriza/foot.svg"
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Macro",
  15881. height: math.unit(457, "meters"),
  15882. default: true
  15883. },
  15884. {
  15885. name: "Megamacro",
  15886. height: math.unit(8, "megameters")
  15887. },
  15888. ]
  15889. ))
  15890. characterMakers.push(() => makeCharacter(
  15891. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15892. {
  15893. front: {
  15894. height: math.unit(6, "feet"),
  15895. weight: math.unit(250, "lb"),
  15896. name: "Front",
  15897. image: {
  15898. source: "./media/characters/saudade/front.svg",
  15899. extra: 1172 / 1139,
  15900. bottom: 0.035
  15901. }
  15902. },
  15903. },
  15904. [
  15905. {
  15906. name: "Micro",
  15907. height: math.unit(3, "inches")
  15908. },
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(6, "feet"),
  15912. default: true
  15913. },
  15914. {
  15915. name: "Macro",
  15916. height: math.unit(50, "feet")
  15917. },
  15918. {
  15919. name: "Megamacro",
  15920. height: math.unit(2800, "feet")
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(5 + 4 / 12, "feet"),
  15929. weight: math.unit(100, "lb"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/keireer/front.svg",
  15933. extra: 716 / 666,
  15934. bottom: 0.05
  15935. }
  15936. },
  15937. },
  15938. [
  15939. {
  15940. name: "Normal",
  15941. height: math.unit(5 + 4 / 12, "feet"),
  15942. default: true
  15943. },
  15944. ]
  15945. ))
  15946. characterMakers.push(() => makeCharacter(
  15947. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15948. {
  15949. front: {
  15950. height: math.unit(5.5, "feet"),
  15951. weight: math.unit(90, "kg"),
  15952. name: "Front",
  15953. image: {
  15954. source: "./media/characters/mirja/front.svg",
  15955. extra: 1452/1262,
  15956. bottom: 67/1519
  15957. }
  15958. },
  15959. frontDressed: {
  15960. height: math.unit(5.5, "feet"),
  15961. weight: math.unit(90, "lb"),
  15962. name: "Front (Dressed)",
  15963. image: {
  15964. source: "./media/characters/mirja/dressed.svg",
  15965. extra: 1452/1262,
  15966. bottom: 67/1519
  15967. }
  15968. },
  15969. back: {
  15970. height: math.unit(6, "feet"),
  15971. weight: math.unit(90, "lb"),
  15972. name: "Back",
  15973. image: {
  15974. source: "./media/characters/mirja/back.svg",
  15975. extra: 1892/1795,
  15976. bottom: 48/1940
  15977. }
  15978. },
  15979. maw: {
  15980. height: math.unit(1.312, "feet"),
  15981. name: "Maw",
  15982. image: {
  15983. source: "./media/characters/mirja/maw.svg"
  15984. }
  15985. },
  15986. paw: {
  15987. height: math.unit(1.15, "feet"),
  15988. name: "Paw",
  15989. image: {
  15990. source: "./media/characters/mirja/paw.svg"
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "\"Incognito\"",
  15997. height: math.unit(3, "meters")
  15998. },
  15999. {
  16000. name: "Strolling Size",
  16001. height: math.unit(15, "km")
  16002. },
  16003. {
  16004. name: "Larger Strolling Size",
  16005. height: math.unit(400, "km")
  16006. },
  16007. {
  16008. name: "Preferred Size",
  16009. height: math.unit(5000, "km"),
  16010. default: true
  16011. },
  16012. {
  16013. name: "True Size",
  16014. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16015. },
  16016. ]
  16017. ))
  16018. characterMakers.push(() => makeCharacter(
  16019. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16020. {
  16021. front: {
  16022. height: math.unit(15, "feet"),
  16023. weight: math.unit(880, "kg"),
  16024. name: "Front",
  16025. image: {
  16026. source: "./media/characters/nightraver/front.svg",
  16027. extra: 2444 / 2160,
  16028. bottom: 0.027
  16029. }
  16030. },
  16031. back: {
  16032. height: math.unit(15, "feet"),
  16033. weight: math.unit(880, "kg"),
  16034. name: "Back",
  16035. image: {
  16036. source: "./media/characters/nightraver/back.svg",
  16037. extra: 2309 / 2180,
  16038. bottom: 0.005
  16039. }
  16040. },
  16041. sole: {
  16042. height: math.unit(2.878, "feet"),
  16043. name: "Sole",
  16044. image: {
  16045. source: "./media/characters/nightraver/sole.svg"
  16046. }
  16047. },
  16048. foot: {
  16049. height: math.unit(2.285, "feet"),
  16050. name: "Foot",
  16051. image: {
  16052. source: "./media/characters/nightraver/foot.svg"
  16053. }
  16054. },
  16055. maw: {
  16056. height: math.unit(2.67, "feet"),
  16057. name: "Maw",
  16058. image: {
  16059. source: "./media/characters/nightraver/maw.svg"
  16060. }
  16061. },
  16062. },
  16063. [
  16064. {
  16065. name: "Micro",
  16066. height: math.unit(1, "cm")
  16067. },
  16068. {
  16069. name: "Normal",
  16070. height: math.unit(15, "feet"),
  16071. default: true
  16072. },
  16073. {
  16074. name: "Macro",
  16075. height: math.unit(300, "feet")
  16076. },
  16077. {
  16078. name: "Megamacro",
  16079. height: math.unit(300, "miles")
  16080. },
  16081. {
  16082. name: "Gigamacro",
  16083. height: math.unit(10000, "miles")
  16084. },
  16085. ]
  16086. ))
  16087. characterMakers.push(() => makeCharacter(
  16088. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16089. {
  16090. side: {
  16091. height: math.unit(2, "inches"),
  16092. weight: math.unit(5, "grams"),
  16093. name: "Side",
  16094. image: {
  16095. source: "./media/characters/arc/side.svg"
  16096. }
  16097. },
  16098. },
  16099. [
  16100. {
  16101. name: "Micro",
  16102. height: math.unit(2, "inches"),
  16103. default: true
  16104. },
  16105. ]
  16106. ))
  16107. characterMakers.push(() => makeCharacter(
  16108. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16109. {
  16110. front: {
  16111. height: math.unit(1.1938, "meters"),
  16112. weight: math.unit(54, "kg"),
  16113. name: "Front",
  16114. image: {
  16115. source: "./media/characters/nebula-shahar/front.svg",
  16116. extra: 1642 / 1436,
  16117. bottom: 0.06
  16118. }
  16119. },
  16120. },
  16121. [
  16122. {
  16123. name: "Megamicro",
  16124. height: math.unit(0.3, "mm")
  16125. },
  16126. {
  16127. name: "Micro",
  16128. height: math.unit(3, "cm")
  16129. },
  16130. {
  16131. name: "Normal",
  16132. height: math.unit(138, "cm"),
  16133. default: true
  16134. },
  16135. {
  16136. name: "Macro",
  16137. height: math.unit(30, "m")
  16138. },
  16139. ]
  16140. ))
  16141. characterMakers.push(() => makeCharacter(
  16142. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16143. {
  16144. front: {
  16145. height: math.unit(5.24, "feet"),
  16146. weight: math.unit(150, "lb"),
  16147. name: "Front",
  16148. image: {
  16149. source: "./media/characters/shayla/front.svg",
  16150. extra: 1512 / 1414,
  16151. bottom: 0.01
  16152. }
  16153. },
  16154. back: {
  16155. height: math.unit(5.24, "feet"),
  16156. weight: math.unit(150, "lb"),
  16157. name: "Back",
  16158. image: {
  16159. source: "./media/characters/shayla/back.svg",
  16160. extra: 1512 / 1414
  16161. }
  16162. },
  16163. hand: {
  16164. height: math.unit(0.7781496062992126, "feet"),
  16165. name: "Hand",
  16166. image: {
  16167. source: "./media/characters/shayla/hand.svg"
  16168. }
  16169. },
  16170. foot: {
  16171. height: math.unit(1.4206036745406823, "feet"),
  16172. name: "Foot",
  16173. image: {
  16174. source: "./media/characters/shayla/foot.svg"
  16175. }
  16176. },
  16177. },
  16178. [
  16179. {
  16180. name: "Micro",
  16181. height: math.unit(0.32, "feet")
  16182. },
  16183. {
  16184. name: "Normal",
  16185. height: math.unit(5.24, "feet"),
  16186. default: true
  16187. },
  16188. {
  16189. name: "Macro",
  16190. height: math.unit(492.12, "feet")
  16191. },
  16192. {
  16193. name: "Megamacro",
  16194. height: math.unit(186.41, "miles")
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(2.2, "m"),
  16203. weight: math.unit(120, "kg"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/pia-jr/front.svg",
  16207. extra: 1000 / 970,
  16208. bottom: 0.035
  16209. }
  16210. },
  16211. hand: {
  16212. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16213. name: "Hand",
  16214. image: {
  16215. source: "./media/characters/pia-jr/hand.svg"
  16216. }
  16217. },
  16218. paw: {
  16219. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16220. name: "Paw",
  16221. image: {
  16222. source: "./media/characters/pia-jr/paw.svg"
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "Micro",
  16229. height: math.unit(1.2, "cm")
  16230. },
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(2.2, "m"),
  16234. default: true
  16235. },
  16236. {
  16237. name: "Macro",
  16238. height: math.unit(180, "m")
  16239. },
  16240. {
  16241. name: "Megamacro",
  16242. height: math.unit(420, "km")
  16243. },
  16244. ]
  16245. ))
  16246. characterMakers.push(() => makeCharacter(
  16247. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16248. {
  16249. front: {
  16250. height: math.unit(2, "m"),
  16251. weight: math.unit(115, "kg"),
  16252. name: "Front",
  16253. image: {
  16254. source: "./media/characters/pia-sr/front.svg",
  16255. extra: 760 / 730,
  16256. bottom: 0.015
  16257. }
  16258. },
  16259. back: {
  16260. height: math.unit(2, "m"),
  16261. weight: math.unit(115, "kg"),
  16262. name: "Back",
  16263. image: {
  16264. source: "./media/characters/pia-sr/back.svg",
  16265. extra: 760 / 730,
  16266. bottom: 0.01
  16267. }
  16268. },
  16269. hand: {
  16270. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16271. name: "Hand",
  16272. image: {
  16273. source: "./media/characters/pia-sr/hand.svg"
  16274. }
  16275. },
  16276. foot: {
  16277. height: math.unit(1.83, "feet"),
  16278. name: "Foot",
  16279. image: {
  16280. source: "./media/characters/pia-sr/foot.svg"
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Micro",
  16287. height: math.unit(88, "mm")
  16288. },
  16289. {
  16290. name: "Normal",
  16291. height: math.unit(2, "m"),
  16292. default: true
  16293. },
  16294. {
  16295. name: "Macro",
  16296. height: math.unit(200, "m")
  16297. },
  16298. {
  16299. name: "Megamacro",
  16300. height: math.unit(420, "km")
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16306. {
  16307. front: {
  16308. height: math.unit(8 + 2 / 12, "feet"),
  16309. weight: math.unit(300, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/kibibyte/front.svg",
  16313. extra: 2221 / 2098,
  16314. bottom: 0.04
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Normal",
  16321. height: math.unit(8 + 2 / 12, "feet"),
  16322. default: true
  16323. },
  16324. {
  16325. name: "Socialable Macro",
  16326. height: math.unit(50, "feet")
  16327. },
  16328. {
  16329. name: "Macro",
  16330. height: math.unit(300, "feet")
  16331. },
  16332. {
  16333. name: "Megamacro",
  16334. height: math.unit(500, "miles")
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(6, "feet"),
  16343. weight: math.unit(150, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/felix/front.svg",
  16347. extra: 762 / 722,
  16348. bottom: 0.02
  16349. }
  16350. },
  16351. frontClothed: {
  16352. height: math.unit(6, "feet"),
  16353. weight: math.unit(150, "lb"),
  16354. name: "Front (Clothed)",
  16355. image: {
  16356. source: "./media/characters/felix/front-clothed.svg",
  16357. extra: 762 / 722,
  16358. bottom: 0.02
  16359. }
  16360. },
  16361. },
  16362. [
  16363. {
  16364. name: "Normal",
  16365. height: math.unit(6 + 8 / 12, "feet"),
  16366. default: true
  16367. },
  16368. {
  16369. name: "Macro",
  16370. height: math.unit(2600, "feet")
  16371. },
  16372. {
  16373. name: "Megamacro",
  16374. height: math.unit(450, "miles")
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16380. {
  16381. front: {
  16382. height: math.unit(6 + 1 / 12, "feet"),
  16383. weight: math.unit(250, "lb"),
  16384. name: "Front",
  16385. image: {
  16386. source: "./media/characters/tobo/front.svg",
  16387. extra: 608 / 586,
  16388. bottom: 0.023
  16389. }
  16390. },
  16391. back: {
  16392. height: math.unit(6 + 1 / 12, "feet"),
  16393. weight: math.unit(250, "lb"),
  16394. name: "Back",
  16395. image: {
  16396. source: "./media/characters/tobo/back.svg",
  16397. extra: 608 / 586
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Nano",
  16404. height: math.unit(2, "nm")
  16405. },
  16406. {
  16407. name: "Megamicro",
  16408. height: math.unit(0.1, "mm")
  16409. },
  16410. {
  16411. name: "Micro",
  16412. height: math.unit(1, "inch"),
  16413. default: true
  16414. },
  16415. {
  16416. name: "Human-sized",
  16417. height: math.unit(6 + 1 / 12, "feet")
  16418. },
  16419. {
  16420. name: "Macro",
  16421. height: math.unit(250, "feet")
  16422. },
  16423. {
  16424. name: "Megamacro",
  16425. height: math.unit(75, "miles")
  16426. },
  16427. {
  16428. name: "Texas-sized",
  16429. height: math.unit(750, "miles")
  16430. },
  16431. {
  16432. name: "Teramacro",
  16433. height: math.unit(50000, "miles")
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16439. {
  16440. front: {
  16441. height: math.unit(6, "feet"),
  16442. weight: math.unit(269, "lb"),
  16443. name: "Front",
  16444. image: {
  16445. source: "./media/characters/danny-kapowsky/front.svg",
  16446. extra: 766 / 736,
  16447. bottom: 0.044
  16448. }
  16449. },
  16450. back: {
  16451. height: math.unit(6, "feet"),
  16452. weight: math.unit(269, "lb"),
  16453. name: "Back",
  16454. image: {
  16455. source: "./media/characters/danny-kapowsky/back.svg",
  16456. extra: 797 / 760,
  16457. bottom: 0.025
  16458. }
  16459. },
  16460. },
  16461. [
  16462. {
  16463. name: "Macro",
  16464. height: math.unit(150, "feet"),
  16465. default: true
  16466. },
  16467. {
  16468. name: "Macro+",
  16469. height: math.unit(200, "feet")
  16470. },
  16471. {
  16472. name: "Macro++",
  16473. height: math.unit(300, "feet")
  16474. },
  16475. {
  16476. name: "Macro+++",
  16477. height: math.unit(400, "feet")
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16483. {
  16484. side: {
  16485. height: math.unit(6, "feet"),
  16486. weight: math.unit(170, "lb"),
  16487. name: "Side",
  16488. image: {
  16489. source: "./media/characters/finn/side.svg",
  16490. extra: 1953 / 1807,
  16491. bottom: 0.057
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Megamacro",
  16498. height: math.unit(14445, "feet"),
  16499. default: true
  16500. },
  16501. ]
  16502. ))
  16503. characterMakers.push(() => makeCharacter(
  16504. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16505. {
  16506. front: {
  16507. height: math.unit(5 + 6 / 12, "feet"),
  16508. weight: math.unit(125, "lb"),
  16509. name: "Front",
  16510. image: {
  16511. source: "./media/characters/roy/front.svg",
  16512. extra: 1,
  16513. bottom: 0.11
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Micro",
  16520. height: math.unit(3, "inches"),
  16521. default: true
  16522. },
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(5 + 6 / 12, "feet")
  16526. },
  16527. {
  16528. name: "Lesser Macro",
  16529. height: math.unit(60, "feet")
  16530. },
  16531. {
  16532. name: "Greater Macro",
  16533. height: math.unit(120, "feet")
  16534. },
  16535. ]
  16536. ))
  16537. characterMakers.push(() => makeCharacter(
  16538. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16539. {
  16540. front: {
  16541. height: math.unit(6, "feet"),
  16542. weight: math.unit(100, "lb"),
  16543. name: "Front",
  16544. image: {
  16545. source: "./media/characters/aevsivs/front.svg",
  16546. extra: 1,
  16547. bottom: 0.03
  16548. }
  16549. },
  16550. back: {
  16551. height: math.unit(6, "feet"),
  16552. weight: math.unit(100, "lb"),
  16553. name: "Back",
  16554. image: {
  16555. source: "./media/characters/aevsivs/back.svg"
  16556. }
  16557. },
  16558. },
  16559. [
  16560. {
  16561. name: "Micro",
  16562. height: math.unit(2, "inches"),
  16563. default: true
  16564. },
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(5, "feet")
  16568. },
  16569. ]
  16570. ))
  16571. characterMakers.push(() => makeCharacter(
  16572. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16573. {
  16574. front: {
  16575. height: math.unit(5 + 7 / 12, "feet"),
  16576. weight: math.unit(159, "lb"),
  16577. name: "Front",
  16578. image: {
  16579. source: "./media/characters/hildegard/front.svg",
  16580. extra: 289 / 269,
  16581. bottom: 7.63 / 297.8
  16582. }
  16583. },
  16584. back: {
  16585. height: math.unit(5 + 7 / 12, "feet"),
  16586. weight: math.unit(159, "lb"),
  16587. name: "Back",
  16588. image: {
  16589. source: "./media/characters/hildegard/back.svg",
  16590. extra: 280 / 260,
  16591. bottom: 2.3 / 282
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(5 + 7 / 12, "feet"),
  16599. default: true
  16600. },
  16601. ]
  16602. ))
  16603. characterMakers.push(() => makeCharacter(
  16604. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16605. {
  16606. bernard: {
  16607. height: math.unit(2 + 7 / 12, "feet"),
  16608. weight: math.unit(66, "lb"),
  16609. name: "Bernard",
  16610. rename: true,
  16611. image: {
  16612. source: "./media/characters/bernard-wilder/bernard.svg",
  16613. extra: 192 / 128,
  16614. bottom: 0.05
  16615. }
  16616. },
  16617. wilder: {
  16618. height: math.unit(5 + 8 / 12, "feet"),
  16619. weight: math.unit(143, "lb"),
  16620. name: "Wilder",
  16621. rename: true,
  16622. image: {
  16623. source: "./media/characters/bernard-wilder/wilder.svg",
  16624. extra: 361 / 312,
  16625. bottom: 0.02
  16626. }
  16627. },
  16628. },
  16629. [
  16630. {
  16631. name: "Normal",
  16632. height: math.unit(2 + 7 / 12, "feet"),
  16633. default: true
  16634. },
  16635. ]
  16636. ))
  16637. characterMakers.push(() => makeCharacter(
  16638. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16639. {
  16640. anthro: {
  16641. height: math.unit(6 + 1 / 12, "feet"),
  16642. weight: math.unit(155, "lb"),
  16643. name: "Anthro",
  16644. image: {
  16645. source: "./media/characters/hearth/anthro.svg",
  16646. extra: 1178/1136,
  16647. bottom: 28/1206
  16648. }
  16649. },
  16650. feral: {
  16651. height: math.unit(3.78, "feet"),
  16652. weight: math.unit(35, "kg"),
  16653. name: "Feral",
  16654. image: {
  16655. source: "./media/characters/hearth/feral.svg",
  16656. extra: 153 / 135,
  16657. bottom: 0.03
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Normal",
  16664. height: math.unit(6 + 1 / 12, "feet"),
  16665. default: true
  16666. },
  16667. ]
  16668. ))
  16669. characterMakers.push(() => makeCharacter(
  16670. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16671. {
  16672. front: {
  16673. height: math.unit(6, "feet"),
  16674. weight: math.unit(182, "lb"),
  16675. name: "Front",
  16676. image: {
  16677. source: "./media/characters/ingrid/front.svg",
  16678. extra: 294 / 268,
  16679. bottom: 0.027
  16680. }
  16681. },
  16682. },
  16683. [
  16684. {
  16685. name: "Normal",
  16686. height: math.unit(6, "feet"),
  16687. default: true
  16688. },
  16689. ]
  16690. ))
  16691. characterMakers.push(() => makeCharacter(
  16692. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16693. {
  16694. eevee: {
  16695. height: math.unit(2 + 10 / 12, "feet"),
  16696. weight: math.unit(86, "lb"),
  16697. name: "Malgam",
  16698. image: {
  16699. source: "./media/characters/malgam/eevee.svg",
  16700. extra: 952/784,
  16701. bottom: 38/990
  16702. }
  16703. },
  16704. sylveon: {
  16705. height: math.unit(4, "feet"),
  16706. weight: math.unit(101, "lb"),
  16707. name: "Future Malgam",
  16708. rename: true,
  16709. image: {
  16710. source: "./media/characters/malgam/sylveon.svg",
  16711. extra: 371 / 325,
  16712. bottom: 0.015
  16713. }
  16714. },
  16715. gigantamax: {
  16716. height: math.unit(50, "feet"),
  16717. name: "Gigantamax Malgam",
  16718. rename: true,
  16719. image: {
  16720. source: "./media/characters/malgam/gigantamax.svg"
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(2 + 10 / 12, "feet"),
  16728. default: true
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(5 + 11 / 12, "feet"),
  16737. weight: math.unit(188, "lb"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/fleur/front.svg",
  16741. extra: 309 / 283,
  16742. bottom: 0.007
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Normal",
  16749. height: math.unit(5 + 11 / 12, "feet"),
  16750. default: true
  16751. },
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16756. {
  16757. front: {
  16758. height: math.unit(5 + 4 / 12, "feet"),
  16759. weight: math.unit(122, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/jude/front.svg",
  16763. extra: 288 / 273,
  16764. bottom: 0.03
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(5 + 4 / 12, "feet"),
  16772. default: true
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16778. {
  16779. front: {
  16780. height: math.unit(5 + 11 / 12, "feet"),
  16781. weight: math.unit(190, "lb"),
  16782. name: "Front",
  16783. image: {
  16784. source: "./media/characters/seara/front.svg",
  16785. extra: 1,
  16786. bottom: 0.05
  16787. }
  16788. },
  16789. },
  16790. [
  16791. {
  16792. name: "Normal",
  16793. height: math.unit(5 + 11 / 12, "feet"),
  16794. default: true
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16800. {
  16801. front: {
  16802. height: math.unit(16 + 5 / 12, "feet"),
  16803. weight: math.unit(524, "lb"),
  16804. name: "Front",
  16805. image: {
  16806. source: "./media/characters/caspian-lugia/front.svg",
  16807. extra: 1,
  16808. bottom: 0.04
  16809. }
  16810. },
  16811. },
  16812. [
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(16 + 5 / 12, "feet"),
  16816. default: true
  16817. },
  16818. ]
  16819. ))
  16820. characterMakers.push(() => makeCharacter(
  16821. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16822. {
  16823. front: {
  16824. height: math.unit(5 + 7 / 12, "feet"),
  16825. weight: math.unit(170, "lb"),
  16826. name: "Front",
  16827. image: {
  16828. source: "./media/characters/mika/front.svg",
  16829. extra: 1,
  16830. bottom: 0.016
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Normal",
  16837. height: math.unit(5 + 7 / 12, "feet"),
  16838. default: true
  16839. },
  16840. ]
  16841. ))
  16842. characterMakers.push(() => makeCharacter(
  16843. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16844. {
  16845. front: {
  16846. height: math.unit(6 + 2 / 12, "feet"),
  16847. weight: math.unit(268, "lb"),
  16848. name: "Front",
  16849. image: {
  16850. source: "./media/characters/sol/front.svg",
  16851. extra: 247 / 231,
  16852. bottom: 0.05
  16853. }
  16854. },
  16855. },
  16856. [
  16857. {
  16858. name: "Normal",
  16859. height: math.unit(6 + 2 / 12, "feet"),
  16860. default: true
  16861. },
  16862. ]
  16863. ))
  16864. characterMakers.push(() => makeCharacter(
  16865. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16866. {
  16867. buizel: {
  16868. height: math.unit(2 + 5 / 12, "feet"),
  16869. weight: math.unit(87, "lb"),
  16870. name: "Front",
  16871. image: {
  16872. source: "./media/characters/umiko/buizel.svg",
  16873. extra: 172 / 157,
  16874. bottom: 0.01
  16875. },
  16876. form: "buizel",
  16877. default: true
  16878. },
  16879. floatzel: {
  16880. height: math.unit(5 + 9 / 12, "feet"),
  16881. weight: math.unit(250, "lb"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/umiko/floatzel.svg",
  16885. extra: 1076/1006,
  16886. bottom: 15/1091
  16887. },
  16888. form: "floatzel",
  16889. default: true
  16890. },
  16891. },
  16892. [
  16893. {
  16894. name: "Normal",
  16895. height: math.unit(2 + 5 / 12, "feet"),
  16896. form: "buizel",
  16897. default: true
  16898. },
  16899. {
  16900. name: "Normal",
  16901. height: math.unit(5 + 9 / 12, "feet"),
  16902. form: "floatzel",
  16903. default: true
  16904. },
  16905. ],
  16906. {
  16907. "buizel": {
  16908. name: "Buizel"
  16909. },
  16910. "floatzel": {
  16911. name: "Floatzel",
  16912. default: true
  16913. }
  16914. }
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16918. {
  16919. front: {
  16920. height: math.unit(6 + 2 / 12, "feet"),
  16921. weight: math.unit(146, "lb"),
  16922. name: "Front",
  16923. image: {
  16924. source: "./media/characters/iliac/front.svg",
  16925. extra: 389 / 365,
  16926. bottom: 0.035
  16927. }
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(6 + 2 / 12, "feet"),
  16934. default: true
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16940. {
  16941. front: {
  16942. height: math.unit(6, "feet"),
  16943. weight: math.unit(170, "lb"),
  16944. name: "Front",
  16945. image: {
  16946. source: "./media/characters/topaz/front.svg",
  16947. extra: 317 / 303,
  16948. bottom: 0.055
  16949. }
  16950. },
  16951. },
  16952. [
  16953. {
  16954. name: "Normal",
  16955. height: math.unit(6, "feet"),
  16956. default: true
  16957. },
  16958. ]
  16959. ))
  16960. characterMakers.push(() => makeCharacter(
  16961. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16962. {
  16963. front: {
  16964. height: math.unit(5 + 11 / 12, "feet"),
  16965. weight: math.unit(144, "lb"),
  16966. name: "Front",
  16967. image: {
  16968. source: "./media/characters/gabriel/front.svg",
  16969. extra: 285 / 262,
  16970. bottom: 0.004
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(5 + 11 / 12, "feet"),
  16978. default: true
  16979. },
  16980. ]
  16981. ))
  16982. characterMakers.push(() => makeCharacter(
  16983. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16984. {
  16985. side: {
  16986. height: math.unit(6 + 5 / 12, "feet"),
  16987. weight: math.unit(300, "lb"),
  16988. name: "Side",
  16989. image: {
  16990. source: "./media/characters/tempest-suicune/side.svg",
  16991. extra: 195 / 154,
  16992. bottom: 0.04
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(6 + 5 / 12, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(7 + 2 / 12, "feet"),
  17009. weight: math.unit(322, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/vulcan/front.svg",
  17013. extra: 154 / 147,
  17014. bottom: 0.04
  17015. }
  17016. },
  17017. },
  17018. [
  17019. {
  17020. name: "Normal",
  17021. height: math.unit(7 + 2 / 12, "feet"),
  17022. default: true
  17023. },
  17024. ]
  17025. ))
  17026. characterMakers.push(() => makeCharacter(
  17027. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17028. {
  17029. front: {
  17030. height: math.unit(5 + 10 / 12, "feet"),
  17031. weight: math.unit(264, "lb"),
  17032. name: "Front",
  17033. image: {
  17034. source: "./media/characters/gault/front.svg",
  17035. extra: 161 / 140,
  17036. bottom: 0.028
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(5 + 10 / 12, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(6, "feet"),
  17053. weight: math.unit(150, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/shard/front.svg",
  17057. extra: 273 / 238,
  17058. bottom: 0.02
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Normal",
  17065. height: math.unit(3 + 6 / 12, "feet"),
  17066. default: true
  17067. },
  17068. ]
  17069. ))
  17070. characterMakers.push(() => makeCharacter(
  17071. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17072. {
  17073. front: {
  17074. height: math.unit(5 + 11 / 12, "feet"),
  17075. weight: math.unit(146, "lb"),
  17076. name: "Front",
  17077. image: {
  17078. source: "./media/characters/ashe/front.svg",
  17079. extra: 400 / 373,
  17080. bottom: 0.01
  17081. }
  17082. },
  17083. },
  17084. [
  17085. {
  17086. name: "Normal",
  17087. height: math.unit(5 + 11 / 12, "feet"),
  17088. default: true
  17089. },
  17090. ]
  17091. ))
  17092. characterMakers.push(() => makeCharacter(
  17093. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17094. {
  17095. front: {
  17096. height: math.unit(5 + 5 / 12, "feet"),
  17097. weight: math.unit(135, "lb"),
  17098. name: "Front",
  17099. image: {
  17100. source: "./media/characters/beatrix/front.svg",
  17101. extra: 392 / 379,
  17102. bottom: 0.01
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Normal",
  17109. height: math.unit(6, "feet"),
  17110. default: true
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(6 + 2/12, "feet"),
  17119. weight: math.unit(135, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/ignatius/front.svg",
  17123. extra: 1380/1259,
  17124. bottom: 27/1407
  17125. }
  17126. },
  17127. },
  17128. [
  17129. {
  17130. name: "Normal",
  17131. height: math.unit(6 + 2/12, "feet"),
  17132. default: true
  17133. },
  17134. ]
  17135. ))
  17136. characterMakers.push(() => makeCharacter(
  17137. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17138. {
  17139. front: {
  17140. height: math.unit(6 + 2 / 12, "feet"),
  17141. weight: math.unit(138, "lb"),
  17142. name: "Front",
  17143. image: {
  17144. source: "./media/characters/mei-li/front.svg",
  17145. extra: 237 / 229,
  17146. bottom: 0.03
  17147. }
  17148. },
  17149. },
  17150. [
  17151. {
  17152. name: "Normal",
  17153. height: math.unit(6 + 2 / 12, "feet"),
  17154. default: true
  17155. },
  17156. ]
  17157. ))
  17158. characterMakers.push(() => makeCharacter(
  17159. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17160. {
  17161. front: {
  17162. height: math.unit(2 + 4 / 12, "feet"),
  17163. weight: math.unit(62, "lb"),
  17164. name: "Front",
  17165. image: {
  17166. source: "./media/characters/puru/front.svg",
  17167. extra: 206 / 149,
  17168. bottom: 0.06
  17169. }
  17170. },
  17171. },
  17172. [
  17173. {
  17174. name: "Normal",
  17175. height: math.unit(2 + 4 / 12, "feet"),
  17176. default: true
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17182. {
  17183. anthro: {
  17184. height: math.unit(5 + 8/12, "feet"),
  17185. weight: math.unit(200, "lb"),
  17186. energyNeed: math.unit(2000, "kcal"),
  17187. name: "Anthro",
  17188. image: {
  17189. source: "./media/characters/kee/anthro.svg",
  17190. extra: 3251/3184,
  17191. bottom: 250/3501
  17192. }
  17193. },
  17194. taur: {
  17195. height: math.unit(11, "feet"),
  17196. weight: math.unit(500, "lb"),
  17197. energyNeed: math.unit(5000, "kcal"),
  17198. name: "Taur",
  17199. image: {
  17200. source: "./media/characters/kee/taur.svg",
  17201. extra: 1362/1320,
  17202. bottom: 83/1445
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(5 + 8/12, "feet"),
  17210. default: true
  17211. },
  17212. {
  17213. name: "Macro",
  17214. height: math.unit(35, "feet")
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17220. {
  17221. anthro: {
  17222. height: math.unit(7, "feet"),
  17223. weight: math.unit(190, "lb"),
  17224. name: "Anthro",
  17225. image: {
  17226. source: "./media/characters/cobalt-dracha/anthro.svg",
  17227. extra: 231 / 225,
  17228. bottom: 0.04
  17229. }
  17230. },
  17231. feral: {
  17232. height: math.unit(9 + 7 / 12, "feet"),
  17233. weight: math.unit(294, "lb"),
  17234. name: "Feral",
  17235. image: {
  17236. source: "./media/characters/cobalt-dracha/feral.svg",
  17237. extra: 692 / 633,
  17238. bottom: 0.05
  17239. }
  17240. },
  17241. },
  17242. [
  17243. {
  17244. name: "Normal",
  17245. height: math.unit(7, "feet"),
  17246. default: true
  17247. },
  17248. ]
  17249. ))
  17250. characterMakers.push(() => makeCharacter(
  17251. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17252. {
  17253. fallen: {
  17254. height: math.unit(11 + 8 / 12, "feet"),
  17255. weight: math.unit(485, "lb"),
  17256. name: "Java (Fallen)",
  17257. rename: true,
  17258. image: {
  17259. source: "./media/characters/java/fallen.svg",
  17260. extra: 226 / 208,
  17261. bottom: 0.005
  17262. }
  17263. },
  17264. godkin: {
  17265. height: math.unit(10 + 6 / 12, "feet"),
  17266. weight: math.unit(328, "lb"),
  17267. name: "Java (Godkin)",
  17268. rename: true,
  17269. image: {
  17270. source: "./media/characters/java/godkin.svg",
  17271. extra: 1104/1068,
  17272. bottom: 36/1140
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(11 + 8 / 12, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17286. {
  17287. front: {
  17288. height: math.unit(5 + 9 / 12, "feet"),
  17289. weight: math.unit(170, "lb"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/purna/front.svg",
  17293. extra: 239 / 229,
  17294. bottom: 0.01
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Normal",
  17301. height: math.unit(5 + 9 / 12, "feet"),
  17302. default: true
  17303. },
  17304. ]
  17305. ))
  17306. characterMakers.push(() => makeCharacter(
  17307. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17308. {
  17309. front: {
  17310. height: math.unit(5 + 9 / 12, "feet"),
  17311. weight: math.unit(142, "lb"),
  17312. name: "Front",
  17313. image: {
  17314. source: "./media/characters/kuva/front.svg",
  17315. extra: 281 / 271,
  17316. bottom: 0.006
  17317. }
  17318. },
  17319. },
  17320. [
  17321. {
  17322. name: "Normal",
  17323. height: math.unit(5 + 9 / 12, "feet"),
  17324. default: true
  17325. },
  17326. ]
  17327. ))
  17328. characterMakers.push(() => makeCharacter(
  17329. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17330. {
  17331. anthro: {
  17332. height: math.unit(9 + 2 / 12, "feet"),
  17333. weight: math.unit(270, "lb"),
  17334. name: "Anthro",
  17335. image: {
  17336. source: "./media/characters/embra/anthro.svg",
  17337. extra: 200 / 187,
  17338. bottom: 0.02
  17339. }
  17340. },
  17341. feral: {
  17342. height: math.unit(18 + 8 / 12, "feet"),
  17343. weight: math.unit(576, "lb"),
  17344. name: "Feral",
  17345. image: {
  17346. source: "./media/characters/embra/feral.svg",
  17347. extra: 152 / 137,
  17348. bottom: 0.037
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(9 + 2 / 12, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17362. {
  17363. anthro: {
  17364. height: math.unit(10 + 9 / 12, "feet"),
  17365. weight: math.unit(224, "lb"),
  17366. name: "Anthro",
  17367. image: {
  17368. source: "./media/characters/grottos/anthro.svg",
  17369. extra: 350 / 332,
  17370. bottom: 0.045
  17371. }
  17372. },
  17373. feral: {
  17374. height: math.unit(20 + 7 / 12, "feet"),
  17375. weight: math.unit(629, "lb"),
  17376. name: "Feral",
  17377. image: {
  17378. source: "./media/characters/grottos/feral.svg",
  17379. extra: 207 / 190,
  17380. bottom: 0.05
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(10 + 9 / 12, "feet"),
  17388. default: true
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17394. {
  17395. anthro: {
  17396. height: math.unit(9 + 6 / 12, "feet"),
  17397. weight: math.unit(298, "lb"),
  17398. name: "Anthro",
  17399. image: {
  17400. source: "./media/characters/frifna/anthro.svg",
  17401. extra: 282 / 269,
  17402. bottom: 0.015
  17403. }
  17404. },
  17405. feral: {
  17406. height: math.unit(16 + 2 / 12, "feet"),
  17407. weight: math.unit(624, "lb"),
  17408. name: "Feral",
  17409. image: {
  17410. source: "./media/characters/frifna/feral.svg"
  17411. }
  17412. },
  17413. },
  17414. [
  17415. {
  17416. name: "Normal",
  17417. height: math.unit(9 + 6 / 12, "feet"),
  17418. default: true
  17419. },
  17420. ]
  17421. ))
  17422. characterMakers.push(() => makeCharacter(
  17423. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17424. {
  17425. front: {
  17426. height: math.unit(6 + 2 / 12, "feet"),
  17427. weight: math.unit(168, "lb"),
  17428. name: "Front",
  17429. image: {
  17430. source: "./media/characters/elise/front.svg",
  17431. extra: 276 / 271
  17432. }
  17433. },
  17434. },
  17435. [
  17436. {
  17437. name: "Normal",
  17438. height: math.unit(6 + 2 / 12, "feet"),
  17439. default: true
  17440. },
  17441. ]
  17442. ))
  17443. characterMakers.push(() => makeCharacter(
  17444. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17445. {
  17446. front: {
  17447. height: math.unit(5 + 10 / 12, "feet"),
  17448. weight: math.unit(210, "lb"),
  17449. name: "Front",
  17450. image: {
  17451. source: "./media/characters/glade/front.svg",
  17452. extra: 258 / 247,
  17453. bottom: 0.008
  17454. }
  17455. },
  17456. },
  17457. [
  17458. {
  17459. name: "Normal",
  17460. height: math.unit(5 + 10 / 12, "feet"),
  17461. default: true
  17462. },
  17463. ]
  17464. ))
  17465. characterMakers.push(() => makeCharacter(
  17466. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17467. {
  17468. front: {
  17469. height: math.unit(5 + 10 / 12, "feet"),
  17470. weight: math.unit(129, "lb"),
  17471. name: "Front",
  17472. image: {
  17473. source: "./media/characters/rina/front.svg",
  17474. extra: 266 / 255,
  17475. bottom: 0.005
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(5 + 10 / 12, "feet"),
  17483. default: true
  17484. },
  17485. ]
  17486. ))
  17487. characterMakers.push(() => makeCharacter(
  17488. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17489. {
  17490. front: {
  17491. height: math.unit(6 + 1 / 12, "feet"),
  17492. weight: math.unit(192, "lb"),
  17493. name: "Front",
  17494. image: {
  17495. source: "./media/characters/veronica/front.svg",
  17496. extra: 319 / 309,
  17497. bottom: 0.005
  17498. }
  17499. },
  17500. },
  17501. [
  17502. {
  17503. name: "Normal",
  17504. height: math.unit(6 + 1 / 12, "feet"),
  17505. default: true
  17506. },
  17507. ]
  17508. ))
  17509. characterMakers.push(() => makeCharacter(
  17510. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17511. {
  17512. front: {
  17513. height: math.unit(9 + 3 / 12, "feet"),
  17514. weight: math.unit(1100, "lb"),
  17515. name: "Front",
  17516. image: {
  17517. source: "./media/characters/braxton/front.svg",
  17518. extra: 1057 / 984,
  17519. bottom: 0.05
  17520. }
  17521. },
  17522. },
  17523. [
  17524. {
  17525. name: "Normal",
  17526. height: math.unit(9 + 3 / 12, "feet")
  17527. },
  17528. {
  17529. name: "Giant",
  17530. height: math.unit(300, "feet"),
  17531. default: true
  17532. },
  17533. {
  17534. name: "Macro",
  17535. height: math.unit(700, "feet")
  17536. },
  17537. {
  17538. name: "Megamacro",
  17539. height: math.unit(6000, "feet")
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17545. {
  17546. front: {
  17547. height: math.unit(6 + 7 / 12, "feet"),
  17548. weight: math.unit(150, "lb"),
  17549. name: "Front",
  17550. image: {
  17551. source: "./media/characters/blue-feyonics/front.svg",
  17552. extra: 1403 / 1306,
  17553. bottom: 0.047
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(6 + 7 / 12, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17567. {
  17568. front: {
  17569. height: math.unit(1.8, "meters"),
  17570. weight: math.unit(60, "kg"),
  17571. name: "Front",
  17572. image: {
  17573. source: "./media/characters/maxwell/front.svg",
  17574. extra: 2060 / 1873
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Micro",
  17581. height: math.unit(1, "mm")
  17582. },
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(1.8, "meter"),
  17586. default: true
  17587. },
  17588. {
  17589. name: "Macro",
  17590. height: math.unit(30, "meters")
  17591. },
  17592. {
  17593. name: "Megamacro",
  17594. height: math.unit(10, "km")
  17595. },
  17596. ]
  17597. ))
  17598. characterMakers.push(() => makeCharacter(
  17599. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17600. {
  17601. front: {
  17602. height: math.unit(6, "feet"),
  17603. weight: math.unit(150, "lb"),
  17604. name: "Front",
  17605. image: {
  17606. source: "./media/characters/jack/front.svg",
  17607. extra: 1754 / 1640,
  17608. bottom: 0.01
  17609. }
  17610. },
  17611. },
  17612. [
  17613. {
  17614. name: "Normal",
  17615. height: math.unit(80000, "feet"),
  17616. default: true
  17617. },
  17618. {
  17619. name: "Max size",
  17620. height: math.unit(10, "lightyears")
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17626. {
  17627. urban: {
  17628. height: math.unit(5, "feet"),
  17629. weight: math.unit(240, "lb"),
  17630. name: "Urban",
  17631. image: {
  17632. source: "./media/characters/cafat/urban.svg",
  17633. extra: 1223/1126,
  17634. bottom: 205/1428
  17635. }
  17636. },
  17637. summer: {
  17638. height: math.unit(5, "feet"),
  17639. weight: math.unit(240, "lb"),
  17640. name: "Summer",
  17641. image: {
  17642. source: "./media/characters/cafat/summer.svg",
  17643. extra: 1223/1126,
  17644. bottom: 205/1428
  17645. }
  17646. },
  17647. winter: {
  17648. height: math.unit(5, "feet"),
  17649. weight: math.unit(240, "lb"),
  17650. name: "Winter",
  17651. image: {
  17652. source: "./media/characters/cafat/winter.svg",
  17653. extra: 1223/1126,
  17654. bottom: 205/1428
  17655. }
  17656. },
  17657. lingerie: {
  17658. height: math.unit(5, "feet"),
  17659. weight: math.unit(240, "lb"),
  17660. name: "Lingerie",
  17661. image: {
  17662. source: "./media/characters/cafat/lingerie.svg",
  17663. extra: 1223/1126,
  17664. bottom: 205/1428
  17665. }
  17666. },
  17667. upright: {
  17668. height: math.unit(6.3, "feet"),
  17669. weight: math.unit(240, "lb"),
  17670. name: "Upright",
  17671. image: {
  17672. source: "./media/characters/cafat/upright.svg",
  17673. bottom: 0.01
  17674. }
  17675. },
  17676. uprightFull: {
  17677. height: math.unit(6.3, "feet"),
  17678. weight: math.unit(240, "lb"),
  17679. name: "Upright (Full)",
  17680. image: {
  17681. source: "./media/characters/cafat/upright-full.svg",
  17682. bottom: 0.01
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Small",
  17689. height: math.unit(5, "feet"),
  17690. default: true
  17691. },
  17692. {
  17693. name: "Large",
  17694. height: math.unit(13, "feet")
  17695. },
  17696. ]
  17697. ))
  17698. characterMakers.push(() => makeCharacter(
  17699. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17700. {
  17701. front: {
  17702. height: math.unit(6, "feet"),
  17703. weight: math.unit(150, "lb"),
  17704. name: "Front",
  17705. image: {
  17706. source: "./media/characters/verin-raharra/front.svg",
  17707. extra: 5019 / 4835,
  17708. bottom: 0.023
  17709. }
  17710. },
  17711. },
  17712. [
  17713. {
  17714. name: "Normal",
  17715. height: math.unit(7 + 5 / 12, "feet"),
  17716. default: true
  17717. },
  17718. {
  17719. name: "Upsized",
  17720. height: math.unit(20, "feet")
  17721. },
  17722. ]
  17723. ))
  17724. characterMakers.push(() => makeCharacter(
  17725. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17726. {
  17727. front: {
  17728. height: math.unit(7, "feet"),
  17729. weight: math.unit(230, "lb"),
  17730. name: "Front",
  17731. image: {
  17732. source: "./media/characters/nakata/front.svg",
  17733. extra: 1.005,
  17734. bottom: 0.01
  17735. }
  17736. },
  17737. },
  17738. [
  17739. {
  17740. name: "Normal",
  17741. height: math.unit(7, "feet"),
  17742. default: true
  17743. },
  17744. {
  17745. name: "Big",
  17746. height: math.unit(14, "feet")
  17747. },
  17748. {
  17749. name: "Macro",
  17750. height: math.unit(400, "feet")
  17751. },
  17752. ]
  17753. ))
  17754. characterMakers.push(() => makeCharacter(
  17755. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17756. {
  17757. front: {
  17758. height: math.unit(4.91, "feet"),
  17759. weight: math.unit(100, "lb"),
  17760. name: "Front",
  17761. image: {
  17762. source: "./media/characters/lily/front.svg",
  17763. extra: 1585 / 1415,
  17764. bottom: 0.02
  17765. }
  17766. },
  17767. },
  17768. [
  17769. {
  17770. name: "Normal",
  17771. height: math.unit(4.91, "feet"),
  17772. default: true
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17778. {
  17779. laying: {
  17780. height: math.unit(4 + 4 / 12, "feet"),
  17781. weight: math.unit(600, "lb"),
  17782. name: "Laying",
  17783. image: {
  17784. source: "./media/characters/sheila/laying.svg",
  17785. extra: 1333 / 1265,
  17786. bottom: 0.16
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(4 + 4 / 12, "feet"),
  17794. default: true
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17800. {
  17801. front: {
  17802. height: math.unit(6, "feet"),
  17803. weight: math.unit(190, "lb"),
  17804. name: "Front",
  17805. image: {
  17806. source: "./media/characters/sax/front.svg",
  17807. extra: 1187 / 973,
  17808. bottom: 0.042
  17809. }
  17810. },
  17811. },
  17812. [
  17813. {
  17814. name: "Micro",
  17815. height: math.unit(4, "inches"),
  17816. default: true
  17817. },
  17818. ]
  17819. ))
  17820. characterMakers.push(() => makeCharacter(
  17821. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17822. {
  17823. front: {
  17824. height: math.unit(6, "feet"),
  17825. weight: math.unit(150, "lb"),
  17826. name: "Front",
  17827. image: {
  17828. source: "./media/characters/pandora/front.svg",
  17829. extra: 2720 / 2556,
  17830. bottom: 0.015
  17831. }
  17832. },
  17833. back: {
  17834. height: math.unit(6, "feet"),
  17835. weight: math.unit(150, "lb"),
  17836. name: "Back",
  17837. image: {
  17838. source: "./media/characters/pandora/back.svg",
  17839. extra: 2720 / 2556,
  17840. bottom: 0.01
  17841. }
  17842. },
  17843. beans: {
  17844. height: math.unit(6 / 8, "feet"),
  17845. name: "Beans",
  17846. image: {
  17847. source: "./media/characters/pandora/beans.svg"
  17848. }
  17849. },
  17850. collar: {
  17851. height: math.unit(0.31, "feet"),
  17852. name: "Collar",
  17853. image: {
  17854. source: "./media/characters/pandora/collar.svg"
  17855. }
  17856. },
  17857. skirt: {
  17858. height: math.unit(6, "feet"),
  17859. weight: math.unit(150, "lb"),
  17860. name: "Skirt",
  17861. image: {
  17862. source: "./media/characters/pandora/skirt.svg",
  17863. extra: 1622 / 1525,
  17864. bottom: 0.015
  17865. }
  17866. },
  17867. hoodie: {
  17868. height: math.unit(6, "feet"),
  17869. weight: math.unit(150, "lb"),
  17870. name: "Hoodie",
  17871. image: {
  17872. source: "./media/characters/pandora/hoodie.svg",
  17873. extra: 1622 / 1525,
  17874. bottom: 0.015
  17875. }
  17876. },
  17877. casual: {
  17878. height: math.unit(6, "feet"),
  17879. weight: math.unit(150, "lb"),
  17880. name: "Casual",
  17881. image: {
  17882. source: "./media/characters/pandora/casual.svg",
  17883. extra: 1622 / 1525,
  17884. bottom: 0.015
  17885. }
  17886. },
  17887. },
  17888. [
  17889. {
  17890. name: "Normal",
  17891. height: math.unit(6, "feet")
  17892. },
  17893. {
  17894. name: "Big Steppy",
  17895. height: math.unit(1, "km"),
  17896. default: true
  17897. },
  17898. {
  17899. name: "Galactic Steppy",
  17900. height: math.unit(2, "gigameters")
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17906. {
  17907. side: {
  17908. height: math.unit(10, "feet"),
  17909. weight: math.unit(800, "kg"),
  17910. name: "Side",
  17911. image: {
  17912. source: "./media/characters/venio-darcony/side.svg",
  17913. extra: 1373 / 1003,
  17914. bottom: 0.037
  17915. }
  17916. },
  17917. front: {
  17918. height: math.unit(19, "feet"),
  17919. weight: math.unit(800, "kg"),
  17920. name: "Front",
  17921. image: {
  17922. source: "./media/characters/venio-darcony/front.svg"
  17923. }
  17924. },
  17925. back: {
  17926. height: math.unit(19, "feet"),
  17927. weight: math.unit(800, "kg"),
  17928. name: "Back",
  17929. image: {
  17930. source: "./media/characters/venio-darcony/back.svg"
  17931. }
  17932. },
  17933. sideNsfw: {
  17934. height: math.unit(10, "feet"),
  17935. weight: math.unit(800, "kg"),
  17936. name: "Side (NSFW)",
  17937. image: {
  17938. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17939. extra: 1373 / 1003,
  17940. bottom: 0.037
  17941. }
  17942. },
  17943. frontNsfw: {
  17944. height: math.unit(19, "feet"),
  17945. weight: math.unit(800, "kg"),
  17946. name: "Front (NSFW)",
  17947. image: {
  17948. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17949. }
  17950. },
  17951. backNsfw: {
  17952. height: math.unit(19, "feet"),
  17953. weight: math.unit(800, "kg"),
  17954. name: "Back (NSFW)",
  17955. image: {
  17956. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17957. }
  17958. },
  17959. sideArmored: {
  17960. height: math.unit(10, "feet"),
  17961. weight: math.unit(800, "kg"),
  17962. name: "Side (Armored)",
  17963. image: {
  17964. source: "./media/characters/venio-darcony/side-armored.svg",
  17965. extra: 1373 / 1003,
  17966. bottom: 0.037
  17967. }
  17968. },
  17969. frontArmored: {
  17970. height: math.unit(19, "feet"),
  17971. weight: math.unit(900, "kg"),
  17972. name: "Front (Armored)",
  17973. image: {
  17974. source: "./media/characters/venio-darcony/front-armored.svg"
  17975. }
  17976. },
  17977. backArmored: {
  17978. height: math.unit(19, "feet"),
  17979. weight: math.unit(900, "kg"),
  17980. name: "Back (Armored)",
  17981. image: {
  17982. source: "./media/characters/venio-darcony/back-armored.svg"
  17983. }
  17984. },
  17985. sword: {
  17986. height: math.unit(10, "feet"),
  17987. weight: math.unit(50, "lb"),
  17988. name: "Sword",
  17989. image: {
  17990. source: "./media/characters/venio-darcony/sword.svg"
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(10, "feet")
  17998. },
  17999. {
  18000. name: "Macro",
  18001. height: math.unit(130, "feet"),
  18002. default: true
  18003. },
  18004. {
  18005. name: "Macro+",
  18006. height: math.unit(240, "feet")
  18007. },
  18008. ]
  18009. ))
  18010. characterMakers.push(() => makeCharacter(
  18011. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18012. {
  18013. front: {
  18014. height: math.unit(6, "feet"),
  18015. weight: math.unit(150, "lb"),
  18016. name: "Front",
  18017. image: {
  18018. source: "./media/characters/veski/front.svg",
  18019. extra: 1299 / 1225,
  18020. bottom: 0.04
  18021. }
  18022. },
  18023. back: {
  18024. height: math.unit(6, "feet"),
  18025. weight: math.unit(150, "lb"),
  18026. name: "Back",
  18027. image: {
  18028. source: "./media/characters/veski/back.svg",
  18029. extra: 1299 / 1225,
  18030. bottom: 0.008
  18031. }
  18032. },
  18033. maw: {
  18034. height: math.unit(1.5 * 1.21, "feet"),
  18035. name: "Maw",
  18036. image: {
  18037. source: "./media/characters/veski/maw.svg"
  18038. }
  18039. },
  18040. },
  18041. [
  18042. {
  18043. name: "Macro",
  18044. height: math.unit(2, "km"),
  18045. default: true
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18051. {
  18052. front: {
  18053. height: math.unit(5 + 7 / 12, "feet"),
  18054. name: "Front",
  18055. image: {
  18056. source: "./media/characters/isabelle/front.svg",
  18057. extra: 2130 / 1976,
  18058. bottom: 0.05
  18059. }
  18060. },
  18061. },
  18062. [
  18063. {
  18064. name: "Supermicro",
  18065. height: math.unit(10, "micrometers")
  18066. },
  18067. {
  18068. name: "Micro",
  18069. height: math.unit(1, "inch")
  18070. },
  18071. {
  18072. name: "Tiny",
  18073. height: math.unit(5, "inches")
  18074. },
  18075. {
  18076. name: "Standard",
  18077. height: math.unit(5 + 7 / 12, "inches")
  18078. },
  18079. {
  18080. name: "Macro",
  18081. height: math.unit(80, "meters"),
  18082. default: true
  18083. },
  18084. {
  18085. name: "Megamacro",
  18086. height: math.unit(250, "meters")
  18087. },
  18088. {
  18089. name: "Gigamacro",
  18090. height: math.unit(5, "km")
  18091. },
  18092. {
  18093. name: "Cosmic",
  18094. height: math.unit(2.5e6, "miles")
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18100. {
  18101. front: {
  18102. height: math.unit(6, "feet"),
  18103. weight: math.unit(150, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/hanzo/front.svg",
  18107. extra: 374 / 344,
  18108. bottom: 0.02
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(8, "feet"),
  18116. default: true
  18117. },
  18118. ]
  18119. ))
  18120. characterMakers.push(() => makeCharacter(
  18121. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18122. {
  18123. front: {
  18124. height: math.unit(7, "feet"),
  18125. weight: math.unit(130, "lb"),
  18126. name: "Front",
  18127. image: {
  18128. source: "./media/characters/anna/front.svg",
  18129. extra: 169 / 145,
  18130. bottom: 0.06
  18131. }
  18132. },
  18133. full: {
  18134. height: math.unit(4.96, "feet"),
  18135. weight: math.unit(220, "lb"),
  18136. name: "Full",
  18137. image: {
  18138. source: "./media/characters/anna/full.svg",
  18139. extra: 138 / 114,
  18140. bottom: 0.15
  18141. }
  18142. },
  18143. tongue: {
  18144. height: math.unit(2.53, "feet"),
  18145. name: "Tongue",
  18146. image: {
  18147. source: "./media/characters/anna/tongue.svg"
  18148. }
  18149. },
  18150. },
  18151. [
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(7, "feet"),
  18155. default: true
  18156. },
  18157. ]
  18158. ))
  18159. characterMakers.push(() => makeCharacter(
  18160. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18161. {
  18162. front: {
  18163. height: math.unit(7, "feet"),
  18164. weight: math.unit(150, "lb"),
  18165. name: "Front",
  18166. image: {
  18167. source: "./media/characters/ian-corvid/front.svg",
  18168. extra: 150 / 142,
  18169. bottom: 0.02
  18170. }
  18171. },
  18172. back: {
  18173. height: math.unit(7, "feet"),
  18174. weight: math.unit(150, "lb"),
  18175. name: "Back",
  18176. image: {
  18177. source: "./media/characters/ian-corvid/back.svg",
  18178. extra: 150 / 143,
  18179. bottom: 0.01
  18180. }
  18181. },
  18182. stomping: {
  18183. height: math.unit(7, "feet"),
  18184. weight: math.unit(150, "lb"),
  18185. name: "Stomping",
  18186. image: {
  18187. source: "./media/characters/ian-corvid/stomping.svg",
  18188. extra: 76 / 72
  18189. }
  18190. },
  18191. sitting: {
  18192. height: math.unit(7 / 1.8, "feet"),
  18193. weight: math.unit(150, "lb"),
  18194. name: "Sitting",
  18195. image: {
  18196. source: "./media/characters/ian-corvid/sitting.svg",
  18197. extra: 1400 / 1269,
  18198. bottom: 0.15
  18199. }
  18200. },
  18201. },
  18202. [
  18203. {
  18204. name: "Tiny Microw",
  18205. height: math.unit(1, "inch")
  18206. },
  18207. {
  18208. name: "Microw",
  18209. height: math.unit(6, "inches")
  18210. },
  18211. {
  18212. name: "Crow",
  18213. height: math.unit(7 + 1 / 12, "feet"),
  18214. default: true
  18215. },
  18216. {
  18217. name: "Macrow",
  18218. height: math.unit(176, "feet")
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18224. {
  18225. front: {
  18226. height: math.unit(5 + 7 / 12, "feet"),
  18227. weight: math.unit(147, "lb"),
  18228. name: "Front",
  18229. image: {
  18230. source: "./media/characters/natalie-kellon/front.svg",
  18231. extra: 1214 / 1141,
  18232. bottom: 0.02
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Micro",
  18239. height: math.unit(1 / 16, "inch")
  18240. },
  18241. {
  18242. name: "Tiny",
  18243. height: math.unit(4, "inches")
  18244. },
  18245. {
  18246. name: "Normal",
  18247. height: math.unit(5 + 7 / 12, "feet"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Amazon",
  18252. height: math.unit(12, "feet")
  18253. },
  18254. {
  18255. name: "Giantess",
  18256. height: math.unit(160, "meters")
  18257. },
  18258. {
  18259. name: "Titaness",
  18260. height: math.unit(800, "meters")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(6, "feet"),
  18269. weight: math.unit(150, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/alluria/front.svg",
  18273. extra: 806 / 738,
  18274. bottom: 0.01
  18275. }
  18276. },
  18277. side: {
  18278. height: math.unit(6, "feet"),
  18279. weight: math.unit(150, "lb"),
  18280. name: "Side",
  18281. image: {
  18282. source: "./media/characters/alluria/side.svg",
  18283. extra: 800 / 750,
  18284. }
  18285. },
  18286. back: {
  18287. height: math.unit(6, "feet"),
  18288. weight: math.unit(150, "lb"),
  18289. name: "Back",
  18290. image: {
  18291. source: "./media/characters/alluria/back.svg",
  18292. extra: 806 / 738,
  18293. }
  18294. },
  18295. frontMaid: {
  18296. height: math.unit(6, "feet"),
  18297. weight: math.unit(150, "lb"),
  18298. name: "Front (Maid)",
  18299. image: {
  18300. source: "./media/characters/alluria/front-maid.svg",
  18301. extra: 806 / 738,
  18302. bottom: 0.01
  18303. }
  18304. },
  18305. sideMaid: {
  18306. height: math.unit(6, "feet"),
  18307. weight: math.unit(150, "lb"),
  18308. name: "Side (Maid)",
  18309. image: {
  18310. source: "./media/characters/alluria/side-maid.svg",
  18311. extra: 800 / 750,
  18312. bottom: 0.005
  18313. }
  18314. },
  18315. backMaid: {
  18316. height: math.unit(6, "feet"),
  18317. weight: math.unit(150, "lb"),
  18318. name: "Back (Maid)",
  18319. image: {
  18320. source: "./media/characters/alluria/back-maid.svg",
  18321. extra: 806 / 738,
  18322. }
  18323. },
  18324. },
  18325. [
  18326. {
  18327. name: "Micro",
  18328. height: math.unit(6, "inches"),
  18329. default: true
  18330. },
  18331. ]
  18332. ))
  18333. characterMakers.push(() => makeCharacter(
  18334. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18335. {
  18336. front: {
  18337. height: math.unit(6, "feet"),
  18338. weight: math.unit(150, "lb"),
  18339. name: "Front",
  18340. image: {
  18341. source: "./media/characters/kyle/front.svg",
  18342. extra: 1069 / 962,
  18343. bottom: 77.228 / 1727.45
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Macro",
  18350. height: math.unit(150, "feet"),
  18351. default: true
  18352. },
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18357. {
  18358. front: {
  18359. height: math.unit(6, "feet"),
  18360. weight: math.unit(300, "lb"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/duncan/front.svg",
  18364. extra: 1650 / 1482,
  18365. bottom: 0.05
  18366. }
  18367. },
  18368. },
  18369. [
  18370. {
  18371. name: "Macro",
  18372. height: math.unit(100, "feet"),
  18373. default: true
  18374. },
  18375. ]
  18376. ))
  18377. characterMakers.push(() => makeCharacter(
  18378. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18379. {
  18380. front: {
  18381. height: math.unit(5 + 4 / 12, "feet"),
  18382. weight: math.unit(220, "lb"),
  18383. name: "Front",
  18384. image: {
  18385. source: "./media/characters/memory/front.svg",
  18386. extra: 3641 / 3545,
  18387. bottom: 0.03
  18388. }
  18389. },
  18390. back: {
  18391. height: math.unit(5 + 4 / 12, "feet"),
  18392. weight: math.unit(220, "lb"),
  18393. name: "Back",
  18394. image: {
  18395. source: "./media/characters/memory/back.svg",
  18396. extra: 3641 / 3545,
  18397. bottom: 0.025
  18398. }
  18399. },
  18400. frontSkirt: {
  18401. height: math.unit(5 + 4 / 12, "feet"),
  18402. weight: math.unit(220, "lb"),
  18403. name: "Front (Skirt)",
  18404. image: {
  18405. source: "./media/characters/memory/front-skirt.svg",
  18406. extra: 3641 / 3545,
  18407. bottom: 0.03
  18408. }
  18409. },
  18410. frontDress: {
  18411. height: math.unit(5 + 4 / 12, "feet"),
  18412. weight: math.unit(220, "lb"),
  18413. name: "Front (Dress)",
  18414. image: {
  18415. source: "./media/characters/memory/front-dress.svg",
  18416. extra: 3641 / 3545,
  18417. bottom: 0.03
  18418. }
  18419. },
  18420. },
  18421. [
  18422. {
  18423. name: "Micro",
  18424. height: math.unit(6, "inches"),
  18425. default: true
  18426. },
  18427. {
  18428. name: "Normal",
  18429. height: math.unit(5 + 4 / 12, "feet")
  18430. },
  18431. ]
  18432. ))
  18433. characterMakers.push(() => makeCharacter(
  18434. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18435. {
  18436. front: {
  18437. height: math.unit(4 + 11 / 12, "feet"),
  18438. weight: math.unit(100, "lb"),
  18439. name: "Front",
  18440. image: {
  18441. source: "./media/characters/luno/front.svg",
  18442. extra: 1535 / 1487,
  18443. bottom: 0.03
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Micro",
  18450. height: math.unit(3, "inches")
  18451. },
  18452. {
  18453. name: "Normal",
  18454. height: math.unit(4 + 11 / 12, "feet"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Macro",
  18459. height: math.unit(300, "feet")
  18460. },
  18461. {
  18462. name: "Megamacro",
  18463. height: math.unit(700, "miles")
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(6 + 2 / 12, "feet"),
  18472. weight: math.unit(170, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/jamesy/front.svg",
  18476. extra: 440 / 382,
  18477. bottom: 0.005
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Micro",
  18484. height: math.unit(3, "inches")
  18485. },
  18486. {
  18487. name: "Normal",
  18488. height: math.unit(6 + 2 / 12, "feet"),
  18489. default: true
  18490. },
  18491. {
  18492. name: "Macro",
  18493. height: math.unit(300, "feet")
  18494. },
  18495. {
  18496. name: "Megamacro",
  18497. height: math.unit(700, "miles")
  18498. },
  18499. ]
  18500. ))
  18501. characterMakers.push(() => makeCharacter(
  18502. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18503. {
  18504. front: {
  18505. height: math.unit(6, "feet"),
  18506. weight: math.unit(160, "lb"),
  18507. name: "Front",
  18508. image: {
  18509. source: "./media/characters/mark/front.svg",
  18510. extra: 3300 / 3100,
  18511. bottom: 136.42 / 3440.47
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Macro",
  18518. height: math.unit(120, "meters")
  18519. },
  18520. {
  18521. name: "Bigger Macro",
  18522. height: math.unit(350, "meters")
  18523. },
  18524. {
  18525. name: "Megamacro",
  18526. height: math.unit(8, "km"),
  18527. default: true
  18528. },
  18529. {
  18530. name: "Continental",
  18531. height: math.unit(4550, "km")
  18532. },
  18533. {
  18534. name: "Planetary",
  18535. height: math.unit(65000, "km")
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(6, "feet"),
  18544. weight: math.unit(400, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/mac/front.svg",
  18548. extra: 1048 / 987.7,
  18549. bottom: 60 / 1107.6,
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Macro",
  18556. height: math.unit(500, "feet"),
  18557. default: true
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(5 + 2 / 12, "feet"),
  18566. weight: math.unit(190, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/bari/front.svg",
  18570. extra: 3156 / 2880,
  18571. bottom: 0.03
  18572. }
  18573. },
  18574. back: {
  18575. height: math.unit(5 + 2 / 12, "feet"),
  18576. weight: math.unit(190, "lb"),
  18577. name: "Back",
  18578. image: {
  18579. source: "./media/characters/bari/back.svg",
  18580. extra: 3260 / 2834,
  18581. bottom: 0.025
  18582. }
  18583. },
  18584. frontPlush: {
  18585. height: math.unit(5 + 2 / 12, "feet"),
  18586. weight: math.unit(190, "lb"),
  18587. name: "Front (Plush)",
  18588. image: {
  18589. source: "./media/characters/bari/front-plush.svg",
  18590. extra: 1112 / 1061,
  18591. bottom: 0.002
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Micro",
  18598. height: math.unit(3, "inches")
  18599. },
  18600. {
  18601. name: "Normal",
  18602. height: math.unit(5 + 2 / 12, "feet"),
  18603. default: true
  18604. },
  18605. {
  18606. name: "Macro",
  18607. height: math.unit(20, "feet")
  18608. },
  18609. ]
  18610. ))
  18611. characterMakers.push(() => makeCharacter(
  18612. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18613. {
  18614. front: {
  18615. height: math.unit(6 + 1 / 12, "feet"),
  18616. weight: math.unit(275, "lb"),
  18617. name: "Front",
  18618. image: {
  18619. source: "./media/characters/hunter-misha-raven/front.svg"
  18620. }
  18621. },
  18622. },
  18623. [
  18624. {
  18625. name: "Mortal",
  18626. height: math.unit(6 + 1 / 12, "feet")
  18627. },
  18628. {
  18629. name: "Divine",
  18630. height: math.unit(1.12134e34, "parsecs"),
  18631. default: true
  18632. },
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18637. {
  18638. front: {
  18639. height: math.unit(6 + 3 / 12, "feet"),
  18640. weight: math.unit(220, "lb"),
  18641. name: "Front",
  18642. image: {
  18643. source: "./media/characters/max-calore/front.svg",
  18644. extra: 1700 / 1648,
  18645. bottom: 0.01
  18646. }
  18647. },
  18648. back: {
  18649. height: math.unit(6 + 3 / 12, "feet"),
  18650. weight: math.unit(220, "lb"),
  18651. name: "Back",
  18652. image: {
  18653. source: "./media/characters/max-calore/back.svg",
  18654. extra: 1700 / 1648,
  18655. bottom: 0.01
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Normal",
  18662. height: math.unit(6 + 3 / 12, "feet"),
  18663. default: true
  18664. },
  18665. ]
  18666. ))
  18667. characterMakers.push(() => makeCharacter(
  18668. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18669. {
  18670. side: {
  18671. height: math.unit(2 + 8 / 12, "feet"),
  18672. weight: math.unit(99, "lb"),
  18673. name: "Side",
  18674. image: {
  18675. source: "./media/characters/aspen/side.svg",
  18676. extra: 152 / 138,
  18677. bottom: 0.032
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Normal",
  18684. height: math.unit(2 + 8 / 12, "feet"),
  18685. default: true
  18686. },
  18687. ]
  18688. ))
  18689. characterMakers.push(() => makeCharacter(
  18690. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18691. {
  18692. side: {
  18693. height: math.unit(3 + 2 / 12, "feet"),
  18694. weight: math.unit(224, "lb"),
  18695. name: "Side",
  18696. image: {
  18697. source: "./media/characters/sheila-feral-wolf/side.svg",
  18698. extra: 179 / 166,
  18699. bottom: 0.03
  18700. }
  18701. },
  18702. },
  18703. [
  18704. {
  18705. name: "Normal",
  18706. height: math.unit(3 + 2 / 12, "feet"),
  18707. default: true
  18708. },
  18709. ]
  18710. ))
  18711. characterMakers.push(() => makeCharacter(
  18712. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18713. {
  18714. side: {
  18715. height: math.unit(1 + 9 / 12, "feet"),
  18716. weight: math.unit(38, "lb"),
  18717. name: "Side",
  18718. image: {
  18719. source: "./media/characters/michelle/side.svg",
  18720. extra: 147 / 136.7,
  18721. bottom: 0.03
  18722. }
  18723. },
  18724. },
  18725. [
  18726. {
  18727. name: "Normal",
  18728. height: math.unit(1 + 9 / 12, "feet"),
  18729. default: true
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18735. {
  18736. front: {
  18737. height: math.unit(1.54, "feet"),
  18738. weight: math.unit(50, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/nino/front.svg"
  18742. }
  18743. },
  18744. },
  18745. [
  18746. {
  18747. name: "Normal",
  18748. height: math.unit(1.54, "feet"),
  18749. default: true
  18750. },
  18751. ]
  18752. ))
  18753. characterMakers.push(() => makeCharacter(
  18754. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18755. {
  18756. front: {
  18757. height: math.unit(1.49, "feet"),
  18758. weight: math.unit(45, "lb"),
  18759. name: "Front",
  18760. image: {
  18761. source: "./media/characters/viola/front.svg"
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(1.49, "feet"),
  18769. default: true
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18775. {
  18776. front: {
  18777. height: math.unit(6 + 5 / 12, "feet"),
  18778. weight: math.unit(580, "lb"),
  18779. name: "Front",
  18780. image: {
  18781. source: "./media/characters/atlas/front.svg",
  18782. extra: 298.5 / 290,
  18783. bottom: 0.015
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Normal",
  18790. height: math.unit(6 + 5 / 12, "feet"),
  18791. default: true
  18792. },
  18793. ]
  18794. ))
  18795. characterMakers.push(() => makeCharacter(
  18796. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18797. {
  18798. side: {
  18799. height: math.unit(15.6, "inches"),
  18800. weight: math.unit(10, "lb"),
  18801. name: "Side",
  18802. image: {
  18803. source: "./media/characters/davy/side.svg",
  18804. extra: 200 / 170,
  18805. bottom: 0.01
  18806. }
  18807. },
  18808. },
  18809. [
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(15.6, "inches"),
  18813. default: true
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18819. {
  18820. side: {
  18821. height: math.unit(4 + 8 / 12, "feet"),
  18822. weight: math.unit(166, "lb"),
  18823. name: "Side",
  18824. image: {
  18825. source: "./media/characters/fiona/side.svg",
  18826. extra: 232 / 220,
  18827. bottom: 0.03
  18828. }
  18829. },
  18830. },
  18831. [
  18832. {
  18833. name: "Normal",
  18834. height: math.unit(4 + 8 / 12, "feet"),
  18835. default: true
  18836. },
  18837. ]
  18838. ))
  18839. characterMakers.push(() => makeCharacter(
  18840. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18841. {
  18842. front: {
  18843. height: math.unit(26, "inches"),
  18844. weight: math.unit(35, "lb"),
  18845. name: "Front",
  18846. image: {
  18847. source: "./media/characters/lyla/front.svg",
  18848. bottom: 0.1
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(3, "feet"),
  18856. default: true
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18862. {
  18863. side: {
  18864. height: math.unit(1.8, "feet"),
  18865. weight: math.unit(44, "lb"),
  18866. name: "Side",
  18867. image: {
  18868. source: "./media/characters/perseus/side.svg",
  18869. bottom: 0.21
  18870. }
  18871. },
  18872. },
  18873. [
  18874. {
  18875. name: "Normal",
  18876. height: math.unit(1.8, "feet"),
  18877. default: true
  18878. },
  18879. ]
  18880. ))
  18881. characterMakers.push(() => makeCharacter(
  18882. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18883. {
  18884. side: {
  18885. height: math.unit(4 + 2 / 12, "feet"),
  18886. weight: math.unit(20, "lb"),
  18887. name: "Side",
  18888. image: {
  18889. source: "./media/characters/remus/side.svg"
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(4 + 2 / 12, "feet"),
  18897. default: true
  18898. },
  18899. ]
  18900. ))
  18901. characterMakers.push(() => makeCharacter(
  18902. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18903. {
  18904. front: {
  18905. height: math.unit(4 + 11 / 12, "feet"),
  18906. weight: math.unit(114, "lb"),
  18907. name: "Front",
  18908. image: {
  18909. source: "./media/characters/raf/front.svg",
  18910. extra: 1504/1339,
  18911. bottom: 26/1530
  18912. }
  18913. },
  18914. side: {
  18915. height: math.unit(4 + 11 / 12, "feet"),
  18916. weight: math.unit(114, "lb"),
  18917. name: "Side",
  18918. image: {
  18919. source: "./media/characters/raf/side.svg",
  18920. extra: 1466/1316,
  18921. bottom: 29/1495
  18922. }
  18923. },
  18924. paw: {
  18925. height: math.unit(1.45, "feet"),
  18926. name: "Paw",
  18927. image: {
  18928. source: "./media/characters/raf/paw.svg"
  18929. },
  18930. extraAttributes: {
  18931. "toeSize": {
  18932. name: "Toe Size",
  18933. power: 2,
  18934. type: "area",
  18935. base: math.unit(0.004, "m^2")
  18936. },
  18937. "padSize": {
  18938. name: "Pad Size",
  18939. power: 2,
  18940. type: "area",
  18941. base: math.unit(0.04, "m^2")
  18942. },
  18943. "footSize": {
  18944. name: "Foot Size",
  18945. power: 2,
  18946. type: "area",
  18947. base: math.unit(0.08, "m^2")
  18948. },
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Micro",
  18955. height: math.unit(2, "inches")
  18956. },
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(4 + 11 / 12, "feet"),
  18960. default: true
  18961. },
  18962. {
  18963. name: "Macro",
  18964. height: math.unit(70, "feet")
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(1.5, "meters"),
  18973. weight: math.unit(68, "kg"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/liam-einarr/front.svg",
  18977. extra: 2822 / 2666
  18978. }
  18979. },
  18980. back: {
  18981. height: math.unit(1.5, "meters"),
  18982. weight: math.unit(68, "kg"),
  18983. name: "Back",
  18984. image: {
  18985. source: "./media/characters/liam-einarr/back.svg",
  18986. extra: 2822 / 2666,
  18987. bottom: 0.015
  18988. }
  18989. },
  18990. },
  18991. [
  18992. {
  18993. name: "Normal",
  18994. height: math.unit(1.5, "meters"),
  18995. default: true
  18996. },
  18997. {
  18998. name: "Macro",
  18999. height: math.unit(150, "meters")
  19000. },
  19001. {
  19002. name: "Megamacro",
  19003. height: math.unit(35, "km")
  19004. },
  19005. ]
  19006. ))
  19007. characterMakers.push(() => makeCharacter(
  19008. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19009. {
  19010. front: {
  19011. height: math.unit(6, "feet"),
  19012. weight: math.unit(75, "kg"),
  19013. name: "Front",
  19014. image: {
  19015. source: "./media/characters/linda/front.svg",
  19016. extra: 930 / 874,
  19017. bottom: 0.004
  19018. }
  19019. },
  19020. },
  19021. [
  19022. {
  19023. name: "Normal",
  19024. height: math.unit(6, "feet"),
  19025. default: true
  19026. },
  19027. ]
  19028. ))
  19029. characterMakers.push(() => makeCharacter(
  19030. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19031. {
  19032. front: {
  19033. height: math.unit(6 + 8 / 12, "feet"),
  19034. weight: math.unit(220, "lb"),
  19035. name: "Front",
  19036. image: {
  19037. source: "./media/characters/caylex/front.svg",
  19038. extra: 821 / 772,
  19039. bottom: 0.07
  19040. }
  19041. },
  19042. back: {
  19043. height: math.unit(6 + 8 / 12, "feet"),
  19044. weight: math.unit(220, "lb"),
  19045. name: "Back",
  19046. image: {
  19047. source: "./media/characters/caylex/back.svg",
  19048. extra: 821 / 772,
  19049. bottom: 0.022
  19050. }
  19051. },
  19052. hand: {
  19053. height: math.unit(1.25, "feet"),
  19054. name: "Hand",
  19055. image: {
  19056. source: "./media/characters/caylex/hand.svg"
  19057. }
  19058. },
  19059. foot: {
  19060. height: math.unit(1.6, "feet"),
  19061. name: "Foot",
  19062. image: {
  19063. source: "./media/characters/caylex/foot.svg"
  19064. }
  19065. },
  19066. armored: {
  19067. height: math.unit(6 + 8 / 12, "feet"),
  19068. weight: math.unit(250, "lb"),
  19069. name: "Armored",
  19070. image: {
  19071. source: "./media/characters/caylex/armored.svg",
  19072. extra: 1420 / 1310,
  19073. bottom: 0.045
  19074. }
  19075. },
  19076. },
  19077. [
  19078. {
  19079. name: "Normal",
  19080. height: math.unit(6 + 8 / 12, "feet"),
  19081. default: true
  19082. },
  19083. {
  19084. name: "Normal+",
  19085. height: math.unit(12, "feet")
  19086. },
  19087. ]
  19088. ))
  19089. characterMakers.push(() => makeCharacter(
  19090. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19091. {
  19092. front: {
  19093. height: math.unit(7 + 6 / 12, "feet"),
  19094. weight: math.unit(288, "lb"),
  19095. name: "Front",
  19096. image: {
  19097. source: "./media/characters/alana/front.svg",
  19098. extra: 679 / 653,
  19099. bottom: 22.5 / 701
  19100. }
  19101. },
  19102. },
  19103. [
  19104. {
  19105. name: "Normal",
  19106. height: math.unit(7 + 6 / 12, "feet")
  19107. },
  19108. {
  19109. name: "Large",
  19110. height: math.unit(50, "feet")
  19111. },
  19112. {
  19113. name: "Macro",
  19114. height: math.unit(100, "feet"),
  19115. default: true
  19116. },
  19117. {
  19118. name: "Macro+",
  19119. height: math.unit(200, "feet")
  19120. },
  19121. ]
  19122. ))
  19123. characterMakers.push(() => makeCharacter(
  19124. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19125. {
  19126. front: {
  19127. height: math.unit(6 + 1 / 12, "feet"),
  19128. weight: math.unit(210, "lb"),
  19129. name: "Front",
  19130. image: {
  19131. source: "./media/characters/hasani/front.svg",
  19132. extra: 244 / 232,
  19133. bottom: 0.01
  19134. }
  19135. },
  19136. back: {
  19137. height: math.unit(6 + 1 / 12, "feet"),
  19138. weight: math.unit(210, "lb"),
  19139. name: "Back",
  19140. image: {
  19141. source: "./media/characters/hasani/back.svg",
  19142. extra: 244 / 232,
  19143. bottom: 0.01
  19144. }
  19145. },
  19146. },
  19147. [
  19148. {
  19149. name: "Normal",
  19150. height: math.unit(6 + 1 / 12, "feet")
  19151. },
  19152. {
  19153. name: "Macro",
  19154. height: math.unit(175, "feet"),
  19155. default: true
  19156. },
  19157. ]
  19158. ))
  19159. characterMakers.push(() => makeCharacter(
  19160. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19161. {
  19162. front: {
  19163. height: math.unit(1.82, "meters"),
  19164. weight: math.unit(140, "lb"),
  19165. name: "Front",
  19166. image: {
  19167. source: "./media/characters/nita/front.svg",
  19168. extra: 2473 / 2363,
  19169. bottom: 0.01
  19170. }
  19171. },
  19172. },
  19173. [
  19174. {
  19175. name: "Normal",
  19176. height: math.unit(1.82, "m")
  19177. },
  19178. {
  19179. name: "Macro",
  19180. height: math.unit(300, "m")
  19181. },
  19182. {
  19183. name: "Mistake Canon",
  19184. height: math.unit(0.5, "miles"),
  19185. default: true
  19186. },
  19187. {
  19188. name: "Big Mistake",
  19189. height: math.unit(13, "miles")
  19190. },
  19191. {
  19192. name: "Playing God",
  19193. height: math.unit(2450, "miles")
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19199. {
  19200. front: {
  19201. height: math.unit(4, "feet"),
  19202. weight: math.unit(120, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/shiriko/front.svg",
  19206. extra: 970/934,
  19207. bottom: 5/975
  19208. }
  19209. },
  19210. },
  19211. [
  19212. {
  19213. name: "Normal",
  19214. height: math.unit(4, "feet"),
  19215. default: true
  19216. },
  19217. ]
  19218. ))
  19219. characterMakers.push(() => makeCharacter(
  19220. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19221. {
  19222. front: {
  19223. height: math.unit(6, "feet"),
  19224. name: "front",
  19225. image: {
  19226. source: "./media/characters/deja/front.svg",
  19227. extra: 926 / 840,
  19228. bottom: 0.07
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Planck Length",
  19235. height: math.unit(1.6e-35, "meters")
  19236. },
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(30.48, "meters"),
  19240. default: true
  19241. },
  19242. {
  19243. name: "Universal",
  19244. height: math.unit(8.8e26, "meters")
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19250. {
  19251. side: {
  19252. height: math.unit(8, "feet"),
  19253. weight: math.unit(6300, "lb"),
  19254. name: "Side",
  19255. image: {
  19256. source: "./media/characters/anima/side.svg",
  19257. bottom: 0.035
  19258. }
  19259. },
  19260. },
  19261. [
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(8, "feet"),
  19265. default: true
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19271. {
  19272. front: {
  19273. height: math.unit(8, "feet"),
  19274. weight: math.unit(350, "lb"),
  19275. name: "Front",
  19276. image: {
  19277. source: "./media/characters/bianca/front.svg",
  19278. extra: 234 / 225,
  19279. bottom: 0.03
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(8, "feet"),
  19287. default: true
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(11 + 5/12, "feet"),
  19296. weight: math.unit(1200, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/adinia/front.svg",
  19300. extra: 1767/1641,
  19301. bottom: 44/1811
  19302. },
  19303. extraAttributes: {
  19304. "energyIntake": {
  19305. name: "Energy Intake",
  19306. power: 3,
  19307. type: "energy",
  19308. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19309. },
  19310. }
  19311. },
  19312. back: {
  19313. height: math.unit(11 + 5/12, "feet"),
  19314. weight: math.unit(1200, "lb"),
  19315. name: "Back",
  19316. image: {
  19317. source: "./media/characters/adinia/back.svg",
  19318. extra: 1834/1684,
  19319. bottom: 14/1848
  19320. },
  19321. extraAttributes: {
  19322. "energyIntake": {
  19323. name: "Energy Intake",
  19324. power: 3,
  19325. type: "energy",
  19326. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19327. },
  19328. }
  19329. },
  19330. maw: {
  19331. height: math.unit(3.79, "feet"),
  19332. name: "Maw",
  19333. image: {
  19334. source: "./media/characters/adinia/maw.svg"
  19335. }
  19336. },
  19337. rump: {
  19338. height: math.unit(4.6, "feet"),
  19339. name: "Rump",
  19340. image: {
  19341. source: "./media/characters/adinia/rump.svg"
  19342. }
  19343. },
  19344. },
  19345. [
  19346. {
  19347. name: "Normal",
  19348. height: math.unit(11 + 5 / 12, "feet"),
  19349. default: true
  19350. },
  19351. ]
  19352. ))
  19353. characterMakers.push(() => makeCharacter(
  19354. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19355. {
  19356. front: {
  19357. height: math.unit(3, "meters"),
  19358. weight: math.unit(200, "kg"),
  19359. name: "Front",
  19360. image: {
  19361. source: "./media/characters/lykasa/front.svg",
  19362. extra: 1076 / 976,
  19363. bottom: 0.06
  19364. }
  19365. },
  19366. },
  19367. [
  19368. {
  19369. name: "Normal",
  19370. height: math.unit(3, "meters")
  19371. },
  19372. {
  19373. name: "Kaiju",
  19374. height: math.unit(120, "meters"),
  19375. default: true
  19376. },
  19377. {
  19378. name: "Mega Kaiju",
  19379. height: math.unit(240, "km")
  19380. },
  19381. {
  19382. name: "Giga Kaiju",
  19383. height: math.unit(400, "megameters")
  19384. },
  19385. {
  19386. name: "Tera Kaiju",
  19387. height: math.unit(800, "gigameters")
  19388. },
  19389. {
  19390. name: "Kaiju Dragon Goddess",
  19391. height: math.unit(26, "zettaparsecs")
  19392. },
  19393. ]
  19394. ))
  19395. characterMakers.push(() => makeCharacter(
  19396. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19397. {
  19398. side: {
  19399. height: math.unit(283 / 124 * 6, "feet"),
  19400. weight: math.unit(35000, "lb"),
  19401. name: "Side",
  19402. image: {
  19403. source: "./media/characters/malfaren/side.svg",
  19404. extra: 1310/529,
  19405. bottom: 24/1334
  19406. }
  19407. },
  19408. front: {
  19409. height: math.unit(22.36, "feet"),
  19410. weight: math.unit(35000, "lb"),
  19411. name: "Front",
  19412. image: {
  19413. source: "./media/characters/malfaren/front.svg",
  19414. extra: 1237/1115,
  19415. bottom: 32/1269
  19416. }
  19417. },
  19418. maw: {
  19419. height: math.unit(6.9, "feet"),
  19420. name: "Maw",
  19421. image: {
  19422. source: "./media/characters/malfaren/maw.svg"
  19423. }
  19424. },
  19425. dick: {
  19426. height: math.unit(6.19, "feet"),
  19427. name: "Dick",
  19428. image: {
  19429. source: "./media/characters/malfaren/dick.svg"
  19430. }
  19431. },
  19432. eye: {
  19433. height: math.unit(0.69, "feet"),
  19434. name: "Eye",
  19435. image: {
  19436. source: "./media/characters/malfaren/eye.svg"
  19437. }
  19438. },
  19439. },
  19440. [
  19441. {
  19442. name: "Big",
  19443. height: math.unit(283 / 162 * 6, "feet"),
  19444. },
  19445. {
  19446. name: "Bigger",
  19447. height: math.unit(283 / 124 * 6, "feet")
  19448. },
  19449. {
  19450. name: "Massive",
  19451. height: math.unit(283 / 92 * 6, "feet"),
  19452. default: true
  19453. },
  19454. {
  19455. name: "👀💦",
  19456. height: math.unit(283 / 73 * 6, "feet"),
  19457. },
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19462. {
  19463. front: {
  19464. height: math.unit(1.7, "m"),
  19465. weight: math.unit(70, "kg"),
  19466. name: "Front",
  19467. image: {
  19468. source: "./media/characters/kernel/front.svg",
  19469. extra: 222 / 210,
  19470. bottom: 0.007
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Nano",
  19477. height: math.unit(17, "micrometers")
  19478. },
  19479. {
  19480. name: "Micro",
  19481. height: math.unit(1.7, "mm")
  19482. },
  19483. {
  19484. name: "Small",
  19485. height: math.unit(1.7, "cm")
  19486. },
  19487. {
  19488. name: "Normal",
  19489. height: math.unit(1.7, "m"),
  19490. default: true
  19491. },
  19492. ]
  19493. ))
  19494. characterMakers.push(() => makeCharacter(
  19495. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19496. {
  19497. front: {
  19498. height: math.unit(1.75, "meters"),
  19499. weight: math.unit(65, "kg"),
  19500. name: "Front",
  19501. image: {
  19502. source: "./media/characters/jayne-folest/front.svg",
  19503. extra: 2115 / 2007,
  19504. bottom: 0.02
  19505. }
  19506. },
  19507. back: {
  19508. height: math.unit(1.75, "meters"),
  19509. weight: math.unit(65, "kg"),
  19510. name: "Back",
  19511. image: {
  19512. source: "./media/characters/jayne-folest/back.svg",
  19513. extra: 2115 / 2007,
  19514. bottom: 0.005
  19515. }
  19516. },
  19517. frontClothed: {
  19518. height: math.unit(1.75, "meters"),
  19519. weight: math.unit(65, "kg"),
  19520. name: "Front (Clothed)",
  19521. image: {
  19522. source: "./media/characters/jayne-folest/front-clothed.svg",
  19523. extra: 2115 / 2007,
  19524. bottom: 0.035
  19525. }
  19526. },
  19527. hand: {
  19528. height: math.unit(1 / 1.260, "feet"),
  19529. name: "Hand",
  19530. image: {
  19531. source: "./media/characters/jayne-folest/hand.svg"
  19532. }
  19533. },
  19534. foot: {
  19535. height: math.unit(1 / 0.918, "feet"),
  19536. name: "Foot",
  19537. image: {
  19538. source: "./media/characters/jayne-folest/foot.svg"
  19539. }
  19540. },
  19541. },
  19542. [
  19543. {
  19544. name: "Micro",
  19545. height: math.unit(4, "cm")
  19546. },
  19547. {
  19548. name: "Normal",
  19549. height: math.unit(1.75, "meters")
  19550. },
  19551. {
  19552. name: "Macro",
  19553. height: math.unit(47.5, "meters"),
  19554. default: true
  19555. },
  19556. ]
  19557. ))
  19558. characterMakers.push(() => makeCharacter(
  19559. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19560. {
  19561. front: {
  19562. height: math.unit(180, "cm"),
  19563. weight: math.unit(70, "kg"),
  19564. name: "Front",
  19565. image: {
  19566. source: "./media/characters/algier/front.svg",
  19567. extra: 596 / 572,
  19568. bottom: 0.04
  19569. }
  19570. },
  19571. back: {
  19572. height: math.unit(180, "cm"),
  19573. weight: math.unit(70, "kg"),
  19574. name: "Back",
  19575. image: {
  19576. source: "./media/characters/algier/back.svg",
  19577. extra: 596 / 572,
  19578. bottom: 0.025
  19579. }
  19580. },
  19581. frontdressed: {
  19582. height: math.unit(180, "cm"),
  19583. weight: math.unit(150, "kg"),
  19584. name: "Front-dressed",
  19585. image: {
  19586. source: "./media/characters/algier/front-dressed.svg",
  19587. extra: 596 / 572,
  19588. bottom: 0.038
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Micro",
  19595. height: math.unit(5, "cm")
  19596. },
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(180, "cm"),
  19600. default: true
  19601. },
  19602. {
  19603. name: "Macro",
  19604. height: math.unit(64, "m")
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19610. {
  19611. upright: {
  19612. height: math.unit(7, "feet"),
  19613. weight: math.unit(300, "lb"),
  19614. name: "Upright",
  19615. image: {
  19616. source: "./media/characters/pretzel/upright.svg",
  19617. extra: 534 / 522,
  19618. bottom: 0.065
  19619. }
  19620. },
  19621. sprawling: {
  19622. height: math.unit(3.75, "feet"),
  19623. weight: math.unit(300, "lb"),
  19624. name: "Sprawling",
  19625. image: {
  19626. source: "./media/characters/pretzel/sprawling.svg",
  19627. extra: 314 / 281,
  19628. bottom: 0.1
  19629. }
  19630. },
  19631. tongue: {
  19632. height: math.unit(2, "feet"),
  19633. name: "Tongue",
  19634. image: {
  19635. source: "./media/characters/pretzel/tongue.svg"
  19636. }
  19637. },
  19638. },
  19639. [
  19640. {
  19641. name: "Normal",
  19642. height: math.unit(7, "feet"),
  19643. default: true
  19644. },
  19645. {
  19646. name: "Oversized",
  19647. height: math.unit(15, "feet")
  19648. },
  19649. {
  19650. name: "Huge",
  19651. height: math.unit(30, "feet")
  19652. },
  19653. {
  19654. name: "Macro",
  19655. height: math.unit(250, "feet")
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19661. {
  19662. sideFront: {
  19663. height: math.unit(5 + 2 / 12, "feet"),
  19664. weight: math.unit(120, "lb"),
  19665. name: "Front Side",
  19666. image: {
  19667. source: "./media/characters/roxi/side-front.svg",
  19668. extra: 2924 / 2717,
  19669. bottom: 0.08
  19670. }
  19671. },
  19672. sideBack: {
  19673. height: math.unit(5 + 2 / 12, "feet"),
  19674. weight: math.unit(120, "lb"),
  19675. name: "Back Side",
  19676. image: {
  19677. source: "./media/characters/roxi/side-back.svg",
  19678. extra: 2904 / 2693,
  19679. bottom: 0.06
  19680. }
  19681. },
  19682. front: {
  19683. height: math.unit(5 + 2 / 12, "feet"),
  19684. weight: math.unit(120, "lb"),
  19685. name: "Front",
  19686. image: {
  19687. source: "./media/characters/roxi/front.svg",
  19688. extra: 2028 / 1907,
  19689. bottom: 0.01
  19690. }
  19691. },
  19692. frontAlt: {
  19693. height: math.unit(5 + 2 / 12, "feet"),
  19694. weight: math.unit(120, "lb"),
  19695. name: "Front (Alt)",
  19696. image: {
  19697. source: "./media/characters/roxi/front-alt.svg",
  19698. extra: 1828 / 1798,
  19699. bottom: 0.01
  19700. }
  19701. },
  19702. sitting: {
  19703. height: math.unit(2.8, "feet"),
  19704. weight: math.unit(120, "lb"),
  19705. name: "Sitting",
  19706. image: {
  19707. source: "./media/characters/roxi/sitting.svg",
  19708. extra: 2660 / 2462,
  19709. bottom: 0.1
  19710. }
  19711. },
  19712. },
  19713. [
  19714. {
  19715. name: "Normal",
  19716. height: math.unit(5 + 2 / 12, "feet"),
  19717. default: true
  19718. },
  19719. ]
  19720. ))
  19721. characterMakers.push(() => makeCharacter(
  19722. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19723. {
  19724. side: {
  19725. height: math.unit(55, "feet"),
  19726. weight: math.unit(153, "tons"),
  19727. name: "Side",
  19728. image: {
  19729. source: "./media/characters/shadow/side.svg",
  19730. extra: 701 / 628,
  19731. bottom: 0.02
  19732. }
  19733. },
  19734. flying: {
  19735. height: math.unit(145, "feet"),
  19736. weight: math.unit(153, "tons"),
  19737. name: "Flying",
  19738. image: {
  19739. source: "./media/characters/shadow/flying.svg"
  19740. }
  19741. },
  19742. },
  19743. [
  19744. {
  19745. name: "Normal",
  19746. height: math.unit(55, "feet"),
  19747. default: true
  19748. },
  19749. ]
  19750. ))
  19751. characterMakers.push(() => makeCharacter(
  19752. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19753. {
  19754. front: {
  19755. height: math.unit(6, "feet"),
  19756. weight: math.unit(200, "lb"),
  19757. name: "Front",
  19758. image: {
  19759. source: "./media/characters/marcie/front.svg",
  19760. extra: 960 / 876,
  19761. bottom: 58 / 1017.87
  19762. }
  19763. },
  19764. },
  19765. [
  19766. {
  19767. name: "Macro",
  19768. height: math.unit(1, "mile"),
  19769. default: true
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19775. {
  19776. front: {
  19777. height: math.unit(7, "feet"),
  19778. weight: math.unit(200, "lb"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/kachina/front.svg",
  19782. extra: 1290.68 / 1119,
  19783. bottom: 36.5 / 1327.18
  19784. }
  19785. },
  19786. },
  19787. [
  19788. {
  19789. name: "Normal",
  19790. height: math.unit(7, "feet"),
  19791. default: true
  19792. },
  19793. ]
  19794. ))
  19795. characterMakers.push(() => makeCharacter(
  19796. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19797. {
  19798. looking: {
  19799. height: math.unit(2, "meters"),
  19800. weight: math.unit(300, "kg"),
  19801. name: "Looking",
  19802. image: {
  19803. source: "./media/characters/kash/looking.svg",
  19804. extra: 474 / 344,
  19805. bottom: 0.03
  19806. }
  19807. },
  19808. side: {
  19809. height: math.unit(2, "meters"),
  19810. weight: math.unit(300, "kg"),
  19811. name: "Side",
  19812. image: {
  19813. source: "./media/characters/kash/side.svg",
  19814. extra: 302 / 251,
  19815. bottom: 0.03
  19816. }
  19817. },
  19818. front: {
  19819. height: math.unit(2, "meters"),
  19820. weight: math.unit(300, "kg"),
  19821. name: "Front",
  19822. image: {
  19823. source: "./media/characters/kash/front.svg",
  19824. extra: 495 / 360,
  19825. bottom: 0.015
  19826. }
  19827. },
  19828. },
  19829. [
  19830. {
  19831. name: "Normal",
  19832. height: math.unit(2, "meters"),
  19833. default: true
  19834. },
  19835. {
  19836. name: "Big",
  19837. height: math.unit(3, "meters")
  19838. },
  19839. {
  19840. name: "Large",
  19841. height: math.unit(5, "meters")
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19847. {
  19848. feeding: {
  19849. height: math.unit(6.7, "feet"),
  19850. weight: math.unit(350, "lb"),
  19851. name: "Feeding",
  19852. image: {
  19853. source: "./media/characters/lalim/feeding.svg",
  19854. }
  19855. },
  19856. },
  19857. [
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(6.7, "feet"),
  19861. default: true
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19867. {
  19868. front: {
  19869. height: math.unit(9.5, "feet"),
  19870. weight: math.unit(600, "lb"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/de'vout/front.svg",
  19874. extra: 1443 / 1328,
  19875. bottom: 0.025
  19876. }
  19877. },
  19878. back: {
  19879. height: math.unit(9.5, "feet"),
  19880. weight: math.unit(600, "lb"),
  19881. name: "Back",
  19882. image: {
  19883. source: "./media/characters/de'vout/back.svg",
  19884. extra: 1443 / 1328
  19885. }
  19886. },
  19887. frontDressed: {
  19888. height: math.unit(9.5, "feet"),
  19889. weight: math.unit(600, "lb"),
  19890. name: "Front (Dressed",
  19891. image: {
  19892. source: "./media/characters/de'vout/front-dressed.svg",
  19893. extra: 1443 / 1328,
  19894. bottom: 0.025
  19895. }
  19896. },
  19897. backDressed: {
  19898. height: math.unit(9.5, "feet"),
  19899. weight: math.unit(600, "lb"),
  19900. name: "Back (Dressed",
  19901. image: {
  19902. source: "./media/characters/de'vout/back-dressed.svg",
  19903. extra: 1443 / 1328
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(9.5, "feet"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19917. {
  19918. front: {
  19919. height: math.unit(8, "feet"),
  19920. weight: math.unit(225, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/talana/front.svg",
  19924. extra: 1410 / 1300,
  19925. bottom: 0.015
  19926. }
  19927. },
  19928. frontDressed: {
  19929. height: math.unit(8, "feet"),
  19930. weight: math.unit(225, "lb"),
  19931. name: "Front (Dressed",
  19932. image: {
  19933. source: "./media/characters/talana/front-dressed.svg",
  19934. extra: 1410 / 1300,
  19935. bottom: 0.015
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(8, "feet"),
  19943. default: true
  19944. },
  19945. ]
  19946. ))
  19947. characterMakers.push(() => makeCharacter(
  19948. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19949. {
  19950. side: {
  19951. height: math.unit(7.2, "feet"),
  19952. weight: math.unit(150, "lb"),
  19953. name: "Side",
  19954. image: {
  19955. source: "./media/characters/xeauvok/side.svg",
  19956. extra: 1975 / 1523,
  19957. bottom: 0.07
  19958. }
  19959. },
  19960. },
  19961. [
  19962. {
  19963. name: "Normal",
  19964. height: math.unit(7.2, "feet"),
  19965. default: true
  19966. },
  19967. ]
  19968. ))
  19969. characterMakers.push(() => makeCharacter(
  19970. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19971. {
  19972. side: {
  19973. height: math.unit(4, "meters"),
  19974. weight: math.unit(2200, "kg"),
  19975. name: "Side",
  19976. image: {
  19977. source: "./media/characters/zara/side.svg",
  19978. extra: 765/744,
  19979. bottom: 156/921
  19980. }
  19981. },
  19982. },
  19983. [
  19984. {
  19985. name: "Normal",
  19986. height: math.unit(4, "meters"),
  19987. default: true
  19988. },
  19989. ]
  19990. ))
  19991. characterMakers.push(() => makeCharacter(
  19992. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19993. {
  19994. side: {
  19995. height: math.unit(6, "feet"),
  19996. weight: math.unit(150, "lb"),
  19997. name: "Side",
  19998. image: {
  19999. source: "./media/characters/richard-dragon/side.svg",
  20000. extra: 845 / 340,
  20001. bottom: 0.017
  20002. }
  20003. },
  20004. maw: {
  20005. height: math.unit(2.97, "feet"),
  20006. name: "Maw",
  20007. image: {
  20008. source: "./media/characters/richard-dragon/maw.svg"
  20009. }
  20010. },
  20011. },
  20012. [
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(4, "feet"),
  20020. weight: math.unit(100, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/richard-smeargle/front.svg",
  20024. extra: 2952 / 2820,
  20025. bottom: 0.028
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Normal",
  20032. height: math.unit(4, "feet"),
  20033. default: true
  20034. },
  20035. {
  20036. name: "Dynamax",
  20037. height: math.unit(20, "meters")
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20043. {
  20044. front: {
  20045. height: math.unit(6, "feet"),
  20046. weight: math.unit(110, "lb"),
  20047. name: "Front",
  20048. image: {
  20049. source: "./media/characters/klay/front.svg",
  20050. extra: 962 / 883,
  20051. bottom: 0.04
  20052. }
  20053. },
  20054. back: {
  20055. height: math.unit(6, "feet"),
  20056. weight: math.unit(110, "lb"),
  20057. name: "Back",
  20058. image: {
  20059. source: "./media/characters/klay/back.svg",
  20060. extra: 962 / 883
  20061. }
  20062. },
  20063. beans: {
  20064. height: math.unit(1.15, "feet"),
  20065. name: "Beans",
  20066. image: {
  20067. source: "./media/characters/klay/beans.svg"
  20068. }
  20069. },
  20070. },
  20071. [
  20072. {
  20073. name: "Micro",
  20074. height: math.unit(6, "inches")
  20075. },
  20076. {
  20077. name: "Mini",
  20078. height: math.unit(3, "feet")
  20079. },
  20080. {
  20081. name: "Normal",
  20082. height: math.unit(6, "feet"),
  20083. default: true
  20084. },
  20085. {
  20086. name: "Big",
  20087. height: math.unit(25, "feet")
  20088. },
  20089. {
  20090. name: "Macro",
  20091. height: math.unit(100, "feet")
  20092. },
  20093. {
  20094. name: "Megamacro",
  20095. height: math.unit(400, "feet")
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20101. {
  20102. front: {
  20103. height: math.unit(6, "feet"),
  20104. weight: math.unit(160, "lb"),
  20105. name: "Front",
  20106. image: {
  20107. source: "./media/characters/marcus/front.svg",
  20108. extra: 734 / 676,
  20109. bottom: 0.03
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Little",
  20116. height: math.unit(6, "feet")
  20117. },
  20118. {
  20119. name: "Normal",
  20120. height: math.unit(110, "feet"),
  20121. default: true
  20122. },
  20123. {
  20124. name: "Macro",
  20125. height: math.unit(250, "feet")
  20126. },
  20127. {
  20128. name: "Megamacro",
  20129. height: math.unit(1000, "feet")
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(7, "feet"),
  20138. weight: math.unit(275, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/claude-delroute/front.svg",
  20142. extra: 902/827,
  20143. bottom: 26/928
  20144. }
  20145. },
  20146. side: {
  20147. height: math.unit(7, "feet"),
  20148. weight: math.unit(275, "lb"),
  20149. name: "Side",
  20150. image: {
  20151. source: "./media/characters/claude-delroute/side.svg",
  20152. extra: 908/853,
  20153. bottom: 16/924
  20154. }
  20155. },
  20156. back: {
  20157. height: math.unit(7, "feet"),
  20158. weight: math.unit(275, "lb"),
  20159. name: "Back",
  20160. image: {
  20161. source: "./media/characters/claude-delroute/back.svg",
  20162. extra: 911/829,
  20163. bottom: 18/929
  20164. }
  20165. },
  20166. maw: {
  20167. height: math.unit(0.6407, "meters"),
  20168. name: "Maw",
  20169. image: {
  20170. source: "./media/characters/claude-delroute/maw.svg"
  20171. }
  20172. },
  20173. },
  20174. [
  20175. {
  20176. name: "Normal",
  20177. height: math.unit(7, "feet"),
  20178. default: true
  20179. },
  20180. {
  20181. name: "Lorge",
  20182. height: math.unit(20, "feet")
  20183. },
  20184. ]
  20185. ))
  20186. characterMakers.push(() => makeCharacter(
  20187. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20188. {
  20189. front: {
  20190. height: math.unit(8 + 4 / 12, "feet"),
  20191. weight: math.unit(600, "lb"),
  20192. name: "Front",
  20193. image: {
  20194. source: "./media/characters/dragonien/front.svg",
  20195. extra: 100 / 94,
  20196. bottom: 3.3 / 103.3445
  20197. }
  20198. },
  20199. back: {
  20200. height: math.unit(8 + 4 / 12, "feet"),
  20201. weight: math.unit(600, "lb"),
  20202. name: "Back",
  20203. image: {
  20204. source: "./media/characters/dragonien/back.svg",
  20205. extra: 776 / 746,
  20206. bottom: 6.4 / 782.0616
  20207. }
  20208. },
  20209. foot: {
  20210. height: math.unit(1.54, "feet"),
  20211. name: "Foot",
  20212. image: {
  20213. source: "./media/characters/dragonien/foot.svg",
  20214. }
  20215. },
  20216. },
  20217. [
  20218. {
  20219. name: "Normal",
  20220. height: math.unit(8 + 4 / 12, "feet"),
  20221. default: true
  20222. },
  20223. {
  20224. name: "Macro",
  20225. height: math.unit(200, "feet")
  20226. },
  20227. {
  20228. name: "Megamacro",
  20229. height: math.unit(1, "mile")
  20230. },
  20231. {
  20232. name: "Gigamacro",
  20233. height: math.unit(1000, "miles")
  20234. },
  20235. ]
  20236. ))
  20237. characterMakers.push(() => makeCharacter(
  20238. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20239. {
  20240. front: {
  20241. height: math.unit(5 + 2 / 12, "feet"),
  20242. weight: math.unit(110, "lb"),
  20243. name: "Front",
  20244. image: {
  20245. source: "./media/characters/desta/front.svg",
  20246. extra: 767 / 726,
  20247. bottom: 11.7 / 779
  20248. }
  20249. },
  20250. back: {
  20251. height: math.unit(5 + 2 / 12, "feet"),
  20252. weight: math.unit(110, "lb"),
  20253. name: "Back",
  20254. image: {
  20255. source: "./media/characters/desta/back.svg",
  20256. extra: 777 / 728,
  20257. bottom: 6 / 784
  20258. }
  20259. },
  20260. frontAlt: {
  20261. height: math.unit(5 + 2 / 12, "feet"),
  20262. weight: math.unit(110, "lb"),
  20263. name: "Front",
  20264. image: {
  20265. source: "./media/characters/desta/front-alt.svg",
  20266. extra: 1482 / 1417
  20267. }
  20268. },
  20269. side: {
  20270. height: math.unit(5 + 2 / 12, "feet"),
  20271. weight: math.unit(110, "lb"),
  20272. name: "Side",
  20273. image: {
  20274. source: "./media/characters/desta/side.svg",
  20275. extra: 2579 / 2491,
  20276. bottom: 0.053
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Micro",
  20283. height: math.unit(6, "inches")
  20284. },
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(5 + 2 / 12, "feet"),
  20288. default: true
  20289. },
  20290. {
  20291. name: "Macro",
  20292. height: math.unit(62, "feet")
  20293. },
  20294. {
  20295. name: "Megamacro",
  20296. height: math.unit(1800, "feet")
  20297. },
  20298. ]
  20299. ))
  20300. characterMakers.push(() => makeCharacter(
  20301. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20302. {
  20303. front: {
  20304. height: math.unit(10, "feet"),
  20305. weight: math.unit(700, "lb"),
  20306. name: "Front",
  20307. image: {
  20308. source: "./media/characters/storm-alystar/front.svg",
  20309. extra: 2112 / 1898,
  20310. bottom: 0.034
  20311. }
  20312. },
  20313. },
  20314. [
  20315. {
  20316. name: "Micro",
  20317. height: math.unit(3.5, "inches")
  20318. },
  20319. {
  20320. name: "Normal",
  20321. height: math.unit(10, "feet"),
  20322. default: true
  20323. },
  20324. {
  20325. name: "Macro",
  20326. height: math.unit(400, "feet")
  20327. },
  20328. {
  20329. name: "Deific",
  20330. height: math.unit(60, "miles")
  20331. },
  20332. ]
  20333. ))
  20334. characterMakers.push(() => makeCharacter(
  20335. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20336. {
  20337. front: {
  20338. height: math.unit(2.35, "meters"),
  20339. weight: math.unit(119, "kg"),
  20340. name: "Front",
  20341. image: {
  20342. source: "./media/characters/ilia/front.svg",
  20343. extra: 1285 / 1255,
  20344. bottom: 0.06
  20345. }
  20346. },
  20347. },
  20348. [
  20349. {
  20350. name: "Normal",
  20351. height: math.unit(2.35, "meters")
  20352. },
  20353. {
  20354. name: "Macro",
  20355. height: math.unit(140, "meters"),
  20356. default: true
  20357. },
  20358. {
  20359. name: "Megamacro",
  20360. height: math.unit(100, "miles")
  20361. },
  20362. ]
  20363. ))
  20364. characterMakers.push(() => makeCharacter(
  20365. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20366. {
  20367. front: {
  20368. height: math.unit(6 + 5 / 12, "feet"),
  20369. weight: math.unit(190, "lb"),
  20370. name: "Front",
  20371. image: {
  20372. source: "./media/characters/kingdead/front.svg",
  20373. extra: 1228 / 1177
  20374. }
  20375. },
  20376. },
  20377. [
  20378. {
  20379. name: "Micro",
  20380. height: math.unit(7, "inches")
  20381. },
  20382. {
  20383. name: "Normal",
  20384. height: math.unit(6 + 5 / 12, "feet")
  20385. },
  20386. {
  20387. name: "Macro",
  20388. height: math.unit(150, "feet"),
  20389. default: true
  20390. },
  20391. {
  20392. name: "Megamacro",
  20393. height: math.unit(200, "miles")
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20399. {
  20400. front: {
  20401. height: math.unit(8, "feet"),
  20402. weight: math.unit(600, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/kyrehx/front.svg",
  20406. extra: 1195 / 1095,
  20407. bottom: 0.034
  20408. }
  20409. },
  20410. },
  20411. [
  20412. {
  20413. name: "Micro",
  20414. height: math.unit(2, "inches")
  20415. },
  20416. {
  20417. name: "Normal",
  20418. height: math.unit(8, "feet"),
  20419. default: true
  20420. },
  20421. {
  20422. name: "Macro",
  20423. height: math.unit(255, "feet")
  20424. },
  20425. ]
  20426. ))
  20427. characterMakers.push(() => makeCharacter(
  20428. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20429. {
  20430. front: {
  20431. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20432. weight: math.unit(184, "lb"),
  20433. name: "Front",
  20434. image: {
  20435. source: "./media/characters/xang/front.svg",
  20436. extra: 845 / 755
  20437. }
  20438. },
  20439. },
  20440. [
  20441. {
  20442. name: "Normal",
  20443. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20444. default: true
  20445. },
  20446. {
  20447. name: "Macro",
  20448. height: math.unit(0.935 * 146, "feet")
  20449. },
  20450. {
  20451. name: "Megamacro",
  20452. height: math.unit(0.935 * 3, "miles")
  20453. },
  20454. ]
  20455. ))
  20456. characterMakers.push(() => makeCharacter(
  20457. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20458. {
  20459. frontDressed: {
  20460. height: math.unit(5 + 7 / 12, "feet"),
  20461. weight: math.unit(140, "lb"),
  20462. name: "Front (Dressed)",
  20463. image: {
  20464. source: "./media/characters/doc-weardno/front-dressed.svg",
  20465. extra: 263 / 234
  20466. }
  20467. },
  20468. backDressed: {
  20469. height: math.unit(5 + 7 / 12, "feet"),
  20470. weight: math.unit(140, "lb"),
  20471. name: "Back (Dressed)",
  20472. image: {
  20473. source: "./media/characters/doc-weardno/back-dressed.svg",
  20474. extra: 266 / 238
  20475. }
  20476. },
  20477. front: {
  20478. height: math.unit(5 + 7 / 12, "feet"),
  20479. weight: math.unit(140, "lb"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/doc-weardno/front.svg",
  20483. extra: 254 / 233
  20484. }
  20485. },
  20486. },
  20487. [
  20488. {
  20489. name: "Micro",
  20490. height: math.unit(3, "inches")
  20491. },
  20492. {
  20493. name: "Normal",
  20494. height: math.unit(5 + 7 / 12, "feet"),
  20495. default: true
  20496. },
  20497. {
  20498. name: "Macro",
  20499. height: math.unit(25, "feet")
  20500. },
  20501. {
  20502. name: "Megamacro",
  20503. height: math.unit(2, "miles")
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20509. {
  20510. front: {
  20511. height: math.unit(6 + 2 / 12, "feet"),
  20512. weight: math.unit(153, "lb"),
  20513. name: "Front",
  20514. image: {
  20515. source: "./media/characters/seth-whilst/front.svg",
  20516. bottom: 0.07
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Micro",
  20523. height: math.unit(5, "inches")
  20524. },
  20525. {
  20526. name: "Normal",
  20527. height: math.unit(6 + 2 / 12, "feet"),
  20528. default: true
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20534. {
  20535. front: {
  20536. height: math.unit(3, "inches"),
  20537. weight: math.unit(8, "grams"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/pocket-jabari/front.svg",
  20541. extra: 1024 / 974,
  20542. bottom: 0.039
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Minimicro",
  20549. height: math.unit(8, "mm")
  20550. },
  20551. {
  20552. name: "Micro",
  20553. height: math.unit(3, "inches"),
  20554. default: true
  20555. },
  20556. {
  20557. name: "Normal",
  20558. height: math.unit(3, "feet")
  20559. },
  20560. ]
  20561. ))
  20562. characterMakers.push(() => makeCharacter(
  20563. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20564. {
  20565. frontDressed: {
  20566. height: math.unit(15, "feet"),
  20567. weight: math.unit(3280, "lb"),
  20568. name: "Front (Dressed)",
  20569. image: {
  20570. source: "./media/characters/sapphy/front-dressed.svg",
  20571. extra: 1951/1654,
  20572. bottom: 194/2145
  20573. },
  20574. form: "anthro",
  20575. default: true
  20576. },
  20577. backDressed: {
  20578. height: math.unit(15, "feet"),
  20579. weight: math.unit(3280, "lb"),
  20580. name: "Back (Dressed)",
  20581. image: {
  20582. source: "./media/characters/sapphy/back-dressed.svg",
  20583. extra: 2058/1918,
  20584. bottom: 125/2183
  20585. },
  20586. form: "anthro"
  20587. },
  20588. frontNude: {
  20589. height: math.unit(15, "feet"),
  20590. weight: math.unit(3280, "lb"),
  20591. name: "Front (Nude)",
  20592. image: {
  20593. source: "./media/characters/sapphy/front-nude.svg",
  20594. extra: 1951/1654,
  20595. bottom: 194/2145
  20596. },
  20597. form: "anthro"
  20598. },
  20599. backNude: {
  20600. height: math.unit(15, "feet"),
  20601. weight: math.unit(3280, "lb"),
  20602. name: "Back (Nude)",
  20603. image: {
  20604. source: "./media/characters/sapphy/back-nude.svg",
  20605. extra: 2058/1918,
  20606. bottom: 125/2183
  20607. },
  20608. form: "anthro"
  20609. },
  20610. full: {
  20611. height: math.unit(15, "feet"),
  20612. weight: math.unit(3280, "lb"),
  20613. name: "Full",
  20614. image: {
  20615. source: "./media/characters/sapphy/full.svg",
  20616. extra: 1396/1317,
  20617. bottom: 44/1440
  20618. },
  20619. form: "anthro"
  20620. },
  20621. dick: {
  20622. height: math.unit(3.8, "feet"),
  20623. name: "Dick",
  20624. image: {
  20625. source: "./media/characters/sapphy/dick.svg"
  20626. },
  20627. form: "anthro"
  20628. },
  20629. feral: {
  20630. height: math.unit(35, "feet"),
  20631. weight: math.unit(160, "tons"),
  20632. name: "Feral",
  20633. image: {
  20634. source: "./media/characters/sapphy/feral.svg",
  20635. extra: 1050/573,
  20636. bottom: 60/1110
  20637. },
  20638. form: "feral",
  20639. default: true
  20640. },
  20641. },
  20642. [
  20643. {
  20644. name: "Normal",
  20645. height: math.unit(15, "feet"),
  20646. form: "anthro"
  20647. },
  20648. {
  20649. name: "Casual Macro",
  20650. height: math.unit(120, "feet"),
  20651. form: "anthro"
  20652. },
  20653. {
  20654. name: "Macro",
  20655. height: math.unit(2150, "feet"),
  20656. default: true,
  20657. form: "anthro"
  20658. },
  20659. {
  20660. name: "Megamacro",
  20661. height: math.unit(8, "miles"),
  20662. form: "anthro"
  20663. },
  20664. {
  20665. name: "Galaxy Mom",
  20666. height: math.unit(6, "megalightyears"),
  20667. form: "anthro"
  20668. },
  20669. {
  20670. name: "Normal",
  20671. height: math.unit(35, "feet"),
  20672. form: "feral",
  20673. default: true
  20674. },
  20675. {
  20676. name: "Macro",
  20677. height: math.unit(300, "feet"),
  20678. form: "feral"
  20679. },
  20680. {
  20681. name: "Galaxy Mom",
  20682. height: math.unit(10, "megalightyears"),
  20683. form: "feral"
  20684. },
  20685. ],
  20686. {
  20687. "anthro": {
  20688. name: "Anthro",
  20689. default: true
  20690. },
  20691. "feral": {
  20692. name: "Feral"
  20693. }
  20694. }
  20695. ))
  20696. characterMakers.push(() => makeCharacter(
  20697. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20698. {
  20699. hyenaFront: {
  20700. height: math.unit(6, "feet"),
  20701. weight: math.unit(190, "lb"),
  20702. name: "Front",
  20703. image: {
  20704. source: "./media/characters/kiro/hyena-front.svg",
  20705. extra: 927/839,
  20706. bottom: 91/1018
  20707. },
  20708. form: "hyena",
  20709. default: true
  20710. },
  20711. front: {
  20712. height: math.unit(6, "feet"),
  20713. weight: math.unit(170, "lb"),
  20714. name: "Front",
  20715. image: {
  20716. source: "./media/characters/kiro/front.svg",
  20717. extra: 1064 / 1012,
  20718. bottom: 0.052
  20719. },
  20720. form: "folf",
  20721. default: true
  20722. },
  20723. },
  20724. [
  20725. {
  20726. name: "Micro",
  20727. height: math.unit(6, "inches"),
  20728. form: "folf"
  20729. },
  20730. {
  20731. name: "Normal",
  20732. height: math.unit(6, "feet"),
  20733. form: "folf",
  20734. default: true
  20735. },
  20736. {
  20737. name: "Macro",
  20738. height: math.unit(72, "feet"),
  20739. form: "folf"
  20740. },
  20741. {
  20742. name: "Micro",
  20743. height: math.unit(6, "inches"),
  20744. form: "hyena"
  20745. },
  20746. {
  20747. name: "Normal",
  20748. height: math.unit(6, "feet"),
  20749. form: "hyena",
  20750. default: true
  20751. },
  20752. {
  20753. name: "Macro",
  20754. height: math.unit(72, "feet"),
  20755. form: "hyena"
  20756. },
  20757. ],
  20758. {
  20759. "hyena": {
  20760. name: "Hyena",
  20761. default: true
  20762. },
  20763. "folf": {
  20764. name: "Folf",
  20765. },
  20766. }
  20767. ))
  20768. characterMakers.push(() => makeCharacter(
  20769. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20770. {
  20771. front: {
  20772. height: math.unit(5 + 9 / 12, "feet"),
  20773. weight: math.unit(175, "lb"),
  20774. name: "Front",
  20775. image: {
  20776. source: "./media/characters/irishfox/front.svg",
  20777. extra: 1912 / 1680,
  20778. bottom: 0.02
  20779. }
  20780. },
  20781. },
  20782. [
  20783. {
  20784. name: "Nano",
  20785. height: math.unit(1, "mm")
  20786. },
  20787. {
  20788. name: "Micro",
  20789. height: math.unit(2, "inches")
  20790. },
  20791. {
  20792. name: "Normal",
  20793. height: math.unit(5 + 9 / 12, "feet"),
  20794. default: true
  20795. },
  20796. {
  20797. name: "Macro",
  20798. height: math.unit(45, "feet")
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20804. {
  20805. front: {
  20806. height: math.unit(6 + 1 / 12, "feet"),
  20807. weight: math.unit(75, "lb"),
  20808. name: "Front",
  20809. image: {
  20810. source: "./media/characters/aronai-sieyes/front.svg",
  20811. extra: 1532/1450,
  20812. bottom: 42/1574
  20813. }
  20814. },
  20815. side: {
  20816. height: math.unit(6 + 1 / 12, "feet"),
  20817. weight: math.unit(75, "lb"),
  20818. name: "Side",
  20819. image: {
  20820. source: "./media/characters/aronai-sieyes/side.svg",
  20821. extra: 1422/1365,
  20822. bottom: 148/1570
  20823. }
  20824. },
  20825. back: {
  20826. height: math.unit(6 + 1 / 12, "feet"),
  20827. weight: math.unit(75, "lb"),
  20828. name: "Back",
  20829. image: {
  20830. source: "./media/characters/aronai-sieyes/back.svg",
  20831. extra: 1526/1464,
  20832. bottom: 51/1577
  20833. }
  20834. },
  20835. dressed: {
  20836. height: math.unit(6 + 1 / 12, "feet"),
  20837. weight: math.unit(75, "lb"),
  20838. name: "Dressed",
  20839. image: {
  20840. source: "./media/characters/aronai-sieyes/dressed.svg",
  20841. extra: 1559/1483,
  20842. bottom: 39/1598
  20843. }
  20844. },
  20845. slit: {
  20846. height: math.unit(1.3, "feet"),
  20847. name: "Slit",
  20848. image: {
  20849. source: "./media/characters/aronai-sieyes/slit.svg"
  20850. }
  20851. },
  20852. slitSpread: {
  20853. height: math.unit(0.9, "feet"),
  20854. name: "Slit (Spread)",
  20855. image: {
  20856. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20857. }
  20858. },
  20859. rump: {
  20860. height: math.unit(1.3, "feet"),
  20861. name: "Rump",
  20862. image: {
  20863. source: "./media/characters/aronai-sieyes/rump.svg"
  20864. }
  20865. },
  20866. maw: {
  20867. height: math.unit(1.25, "feet"),
  20868. name: "Maw",
  20869. image: {
  20870. source: "./media/characters/aronai-sieyes/maw.svg"
  20871. }
  20872. },
  20873. feral: {
  20874. height: math.unit(18, "feet"),
  20875. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20876. name: "Feral",
  20877. image: {
  20878. source: "./media/characters/aronai-sieyes/feral.svg",
  20879. extra: 1530 / 1240,
  20880. bottom: 0.035
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Micro",
  20887. height: math.unit(2, "inches")
  20888. },
  20889. {
  20890. name: "Normal",
  20891. height: math.unit(6 + 1 / 12, "feet"),
  20892. default: true
  20893. }
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20898. {
  20899. front: {
  20900. height: math.unit(12, "feet"),
  20901. weight: math.unit(410, "kg"),
  20902. name: "Front",
  20903. image: {
  20904. source: "./media/characters/xuna/front.svg",
  20905. extra: 2184 / 1980
  20906. }
  20907. },
  20908. side: {
  20909. height: math.unit(12, "feet"),
  20910. weight: math.unit(410, "kg"),
  20911. name: "Side",
  20912. image: {
  20913. source: "./media/characters/xuna/side.svg",
  20914. extra: 2184 / 1980
  20915. }
  20916. },
  20917. back: {
  20918. height: math.unit(12, "feet"),
  20919. weight: math.unit(410, "kg"),
  20920. name: "Back",
  20921. image: {
  20922. source: "./media/characters/xuna/back.svg",
  20923. extra: 2184 / 1980
  20924. }
  20925. },
  20926. },
  20927. [
  20928. {
  20929. name: "Nano glow",
  20930. height: math.unit(10, "nm")
  20931. },
  20932. {
  20933. name: "Micro floof",
  20934. height: math.unit(0.3, "m")
  20935. },
  20936. {
  20937. name: "Huggable softy boi",
  20938. height: math.unit(3.6576, "m"),
  20939. default: true
  20940. },
  20941. {
  20942. name: "Admirable floof",
  20943. height: math.unit(80, "meters")
  20944. },
  20945. {
  20946. name: "Gentle macro",
  20947. height: math.unit(300, "meters")
  20948. },
  20949. {
  20950. name: "Very careful floof",
  20951. height: math.unit(3200, "meters")
  20952. },
  20953. {
  20954. name: "The mega floof",
  20955. height: math.unit(36000, "meters")
  20956. },
  20957. {
  20958. name: "Giga-fur-Wicker",
  20959. height: math.unit(4800000, "meters")
  20960. },
  20961. {
  20962. name: "Licky world",
  20963. height: math.unit(20000000, "meters")
  20964. },
  20965. {
  20966. name: "Floofy cyan sun",
  20967. height: math.unit(1500000000, "meters")
  20968. },
  20969. {
  20970. name: "Milky Wicker",
  20971. height: math.unit(1000000000000000000000, "meters")
  20972. },
  20973. {
  20974. name: "The observing Wicker",
  20975. height: math.unit(999999999999999999999999999, "meters")
  20976. },
  20977. ]
  20978. ))
  20979. characterMakers.push(() => makeCharacter(
  20980. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20981. {
  20982. front: {
  20983. height: math.unit(5 + 9 / 12, "feet"),
  20984. weight: math.unit(150, "lb"),
  20985. name: "Front",
  20986. image: {
  20987. source: "./media/characters/arokha-sieyes/front.svg",
  20988. extra: 1425 / 1284,
  20989. bottom: 0.05
  20990. }
  20991. },
  20992. },
  20993. [
  20994. {
  20995. name: "Normal",
  20996. height: math.unit(5 + 9 / 12, "feet")
  20997. },
  20998. {
  20999. name: "Macro",
  21000. height: math.unit(30, "meters"),
  21001. default: true
  21002. },
  21003. ]
  21004. ))
  21005. characterMakers.push(() => makeCharacter(
  21006. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21007. {
  21008. front: {
  21009. height: math.unit(6, "feet"),
  21010. weight: math.unit(180, "lb"),
  21011. name: "Front",
  21012. image: {
  21013. source: "./media/characters/arokh-sieyes/front.svg",
  21014. extra: 1830 / 1769,
  21015. bottom: 0.01
  21016. }
  21017. },
  21018. },
  21019. [
  21020. {
  21021. name: "Normal",
  21022. height: math.unit(6, "feet")
  21023. },
  21024. {
  21025. name: "Macro",
  21026. height: math.unit(30, "meters"),
  21027. default: true
  21028. },
  21029. ]
  21030. ))
  21031. characterMakers.push(() => makeCharacter(
  21032. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21033. {
  21034. side: {
  21035. height: math.unit(13 + 1 / 12, "feet"),
  21036. weight: math.unit(8.5, "tonnes"),
  21037. preyCapacity: math.unit(36, "people"),
  21038. name: "Side",
  21039. image: {
  21040. source: "./media/characters/goldeneye/side.svg",
  21041. extra: 1139/741,
  21042. bottom: 98/1237
  21043. }
  21044. },
  21045. front: {
  21046. height: math.unit(5.1, "feet"),
  21047. weight: math.unit(8.5, "tonnes"),
  21048. preyCapacity: math.unit(36, "people"),
  21049. name: "Front",
  21050. image: {
  21051. source: "./media/characters/goldeneye/front.svg",
  21052. extra: 635/365,
  21053. bottom: 598/1233
  21054. }
  21055. },
  21056. maw: {
  21057. height: math.unit(6.6, "feet"),
  21058. name: "Maw",
  21059. image: {
  21060. source: "./media/characters/goldeneye/maw.svg"
  21061. }
  21062. },
  21063. headFront: {
  21064. height: math.unit(8, "feet"),
  21065. name: "Head (Front)",
  21066. image: {
  21067. source: "./media/characters/goldeneye/head-front.svg"
  21068. }
  21069. },
  21070. headSide: {
  21071. height: math.unit(6, "feet"),
  21072. name: "Head (Side)",
  21073. image: {
  21074. source: "./media/characters/goldeneye/head-side.svg"
  21075. }
  21076. },
  21077. headBack: {
  21078. height: math.unit(8, "feet"),
  21079. name: "Head (Back)",
  21080. image: {
  21081. source: "./media/characters/goldeneye/head-back.svg"
  21082. }
  21083. },
  21084. paw: {
  21085. height: math.unit(3.4, "feet"),
  21086. name: "Paw",
  21087. image: {
  21088. source: "./media/characters/goldeneye/paw.svg"
  21089. }
  21090. },
  21091. toering: {
  21092. height: math.unit(0.45, "feet"),
  21093. name: "Toering",
  21094. image: {
  21095. source: "./media/characters/goldeneye/toering.svg"
  21096. }
  21097. },
  21098. eyes: {
  21099. height: math.unit(0.5, "feet"),
  21100. name: "Eyes",
  21101. image: {
  21102. source: "./media/characters/goldeneye/eyes.svg"
  21103. }
  21104. },
  21105. },
  21106. [
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(13 + 1 / 12, "feet"),
  21110. default: true
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21116. {
  21117. front: {
  21118. height: math.unit(6 + 1 / 12, "feet"),
  21119. weight: math.unit(210, "lb"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/leonardo-lycheborne/front.svg",
  21123. extra: 776/723,
  21124. bottom: 34/810
  21125. }
  21126. },
  21127. side: {
  21128. height: math.unit(6 + 1 / 12, "feet"),
  21129. weight: math.unit(210, "lb"),
  21130. name: "Side",
  21131. image: {
  21132. source: "./media/characters/leonardo-lycheborne/side.svg",
  21133. extra: 780/728,
  21134. bottom: 12/792
  21135. }
  21136. },
  21137. back: {
  21138. height: math.unit(6 + 1 / 12, "feet"),
  21139. weight: math.unit(210, "lb"),
  21140. name: "Back",
  21141. image: {
  21142. source: "./media/characters/leonardo-lycheborne/back.svg",
  21143. extra: 775/721,
  21144. bottom: 17/792
  21145. }
  21146. },
  21147. hand: {
  21148. height: math.unit(1.08, "feet"),
  21149. name: "Hand",
  21150. image: {
  21151. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21152. }
  21153. },
  21154. foot: {
  21155. height: math.unit(1.32, "feet"),
  21156. name: "Foot",
  21157. image: {
  21158. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21159. }
  21160. },
  21161. maw: {
  21162. height: math.unit(1, "feet"),
  21163. name: "Maw",
  21164. image: {
  21165. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21166. }
  21167. },
  21168. were: {
  21169. height: math.unit(20, "feet"),
  21170. weight: math.unit(7800, "lb"),
  21171. name: "Were",
  21172. image: {
  21173. source: "./media/characters/leonardo-lycheborne/were.svg",
  21174. extra: 1224/1165,
  21175. bottom: 72/1296
  21176. }
  21177. },
  21178. feral: {
  21179. height: math.unit(7.5, "feet"),
  21180. weight: math.unit(600, "lb"),
  21181. name: "Feral",
  21182. image: {
  21183. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21184. extra: 797/702,
  21185. bottom: 139/936
  21186. }
  21187. },
  21188. taur: {
  21189. height: math.unit(11, "feet"),
  21190. weight: math.unit(3300, "lb"),
  21191. name: "Taur",
  21192. image: {
  21193. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21194. extra: 1271/1197,
  21195. bottom: 47/1318
  21196. }
  21197. },
  21198. barghest: {
  21199. height: math.unit(11, "feet"),
  21200. weight: math.unit(1300, "lb"),
  21201. name: "Barghest",
  21202. image: {
  21203. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21204. extra: 1291/1204,
  21205. bottom: 37/1328
  21206. }
  21207. },
  21208. dick: {
  21209. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21210. name: "Dick",
  21211. image: {
  21212. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21213. }
  21214. },
  21215. dickWere: {
  21216. height: math.unit((20) / 3.8, "feet"),
  21217. name: "Dick (Were)",
  21218. image: {
  21219. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21220. }
  21221. },
  21222. },
  21223. [
  21224. {
  21225. name: "Normal",
  21226. height: math.unit(6 + 1 / 12, "feet"),
  21227. default: true
  21228. },
  21229. ]
  21230. ))
  21231. characterMakers.push(() => makeCharacter(
  21232. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21233. {
  21234. front: {
  21235. height: math.unit(10, "feet"),
  21236. weight: math.unit(350, "lb"),
  21237. name: "Front",
  21238. image: {
  21239. source: "./media/characters/jet/front.svg",
  21240. extra: 2050 / 1980,
  21241. bottom: 0.013
  21242. }
  21243. },
  21244. back: {
  21245. height: math.unit(10, "feet"),
  21246. weight: math.unit(350, "lb"),
  21247. name: "Back",
  21248. image: {
  21249. source: "./media/characters/jet/back.svg",
  21250. extra: 2050 / 1980,
  21251. bottom: 0.013
  21252. }
  21253. },
  21254. },
  21255. [
  21256. {
  21257. name: "Micro",
  21258. height: math.unit(6, "inches")
  21259. },
  21260. {
  21261. name: "Normal",
  21262. height: math.unit(10, "feet"),
  21263. default: true
  21264. },
  21265. {
  21266. name: "Macro",
  21267. height: math.unit(100, "feet")
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21273. {
  21274. front: {
  21275. height: math.unit(15, "feet"),
  21276. weight: math.unit(2800, "lb"),
  21277. name: "Front",
  21278. image: {
  21279. source: "./media/characters/tanarath/front.svg",
  21280. extra: 2392 / 2220,
  21281. bottom: 0.03
  21282. }
  21283. },
  21284. back: {
  21285. height: math.unit(15, "feet"),
  21286. weight: math.unit(2800, "lb"),
  21287. name: "Back",
  21288. image: {
  21289. source: "./media/characters/tanarath/back.svg",
  21290. extra: 2392 / 2220,
  21291. bottom: 0.03
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Normal",
  21298. height: math.unit(15, "feet"),
  21299. default: true
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21305. {
  21306. front: {
  21307. height: math.unit(7 + 1 / 12, "feet"),
  21308. weight: math.unit(175, "lb"),
  21309. name: "Front",
  21310. image: {
  21311. source: "./media/characters/patty-cattybatty/front.svg",
  21312. extra: 908 / 874,
  21313. bottom: 0.025
  21314. }
  21315. },
  21316. },
  21317. [
  21318. {
  21319. name: "Micro",
  21320. height: math.unit(1, "inch")
  21321. },
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(7 + 1 / 12, "feet")
  21325. },
  21326. {
  21327. name: "Mini Macro",
  21328. height: math.unit(155, "feet")
  21329. },
  21330. {
  21331. name: "Macro",
  21332. height: math.unit(1077, "feet")
  21333. },
  21334. {
  21335. name: "Mega Macro",
  21336. height: math.unit(47650, "feet"),
  21337. default: true
  21338. },
  21339. {
  21340. name: "Giga Macro",
  21341. height: math.unit(440, "miles")
  21342. },
  21343. {
  21344. name: "Tera Macro",
  21345. height: math.unit(8700, "miles")
  21346. },
  21347. {
  21348. name: "Planetary Macro",
  21349. height: math.unit(32700, "miles")
  21350. },
  21351. {
  21352. name: "Solar Macro",
  21353. height: math.unit(550000, "miles")
  21354. },
  21355. {
  21356. name: "Celestial Macro",
  21357. height: math.unit(2.5, "AU")
  21358. },
  21359. ]
  21360. ))
  21361. characterMakers.push(() => makeCharacter(
  21362. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21363. {
  21364. front: {
  21365. height: math.unit(4 + 5 / 12, "feet"),
  21366. weight: math.unit(90, "lb"),
  21367. name: "Front",
  21368. image: {
  21369. source: "./media/characters/cappu/front.svg",
  21370. extra: 1247 / 1152,
  21371. bottom: 0.012
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(4 + 5 / 12, "feet"),
  21379. default: true
  21380. },
  21381. ]
  21382. ))
  21383. characterMakers.push(() => makeCharacter(
  21384. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21385. {
  21386. frontDressed: {
  21387. height: math.unit(70, "cm"),
  21388. weight: math.unit(6, "kg"),
  21389. name: "Front (Dressed)",
  21390. image: {
  21391. source: "./media/characters/sebi/front-dressed.svg",
  21392. extra: 713.5 / 686.5,
  21393. bottom: 0.003
  21394. }
  21395. },
  21396. front: {
  21397. height: math.unit(70, "cm"),
  21398. weight: math.unit(5, "kg"),
  21399. name: "Front",
  21400. image: {
  21401. source: "./media/characters/sebi/front.svg",
  21402. extra: 713.5 / 686.5,
  21403. bottom: 0.003
  21404. }
  21405. }
  21406. },
  21407. [
  21408. {
  21409. name: "Normal",
  21410. height: math.unit(70, "cm"),
  21411. default: true
  21412. },
  21413. {
  21414. name: "Macro",
  21415. height: math.unit(8, "meters")
  21416. },
  21417. ]
  21418. ))
  21419. characterMakers.push(() => makeCharacter(
  21420. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21421. {
  21422. front: {
  21423. height: math.unit(6, "feet"),
  21424. weight: math.unit(150, "lb"),
  21425. name: "Front",
  21426. image: {
  21427. source: "./media/characters/typhek/front.svg",
  21428. extra: 1948 / 1929,
  21429. bottom: 0.025
  21430. }
  21431. },
  21432. side: {
  21433. height: math.unit(6, "feet"),
  21434. weight: math.unit(150, "lb"),
  21435. name: "Side",
  21436. image: {
  21437. source: "./media/characters/typhek/side.svg",
  21438. extra: 2034 / 2010,
  21439. bottom: 0.003
  21440. }
  21441. },
  21442. back: {
  21443. height: math.unit(6, "feet"),
  21444. weight: math.unit(150, "lb"),
  21445. name: "Back",
  21446. image: {
  21447. source: "./media/characters/typhek/back.svg",
  21448. extra: 2005 / 1978,
  21449. bottom: 0.004
  21450. }
  21451. },
  21452. palm: {
  21453. height: math.unit(1.2, "feet"),
  21454. name: "Palm",
  21455. image: {
  21456. source: "./media/characters/typhek/palm.svg"
  21457. }
  21458. },
  21459. fist: {
  21460. height: math.unit(1.1, "feet"),
  21461. name: "Fist",
  21462. image: {
  21463. source: "./media/characters/typhek/fist.svg"
  21464. }
  21465. },
  21466. foot: {
  21467. height: math.unit(1.57, "feet"),
  21468. name: "Foot",
  21469. image: {
  21470. source: "./media/characters/typhek/foot.svg"
  21471. }
  21472. },
  21473. sole: {
  21474. height: math.unit(2.05, "feet"),
  21475. name: "Sole",
  21476. image: {
  21477. source: "./media/characters/typhek/sole.svg"
  21478. }
  21479. },
  21480. },
  21481. [
  21482. {
  21483. name: "Macro",
  21484. height: math.unit(40, "stories"),
  21485. default: true
  21486. },
  21487. {
  21488. name: "Megamacro",
  21489. height: math.unit(1, "mile")
  21490. },
  21491. {
  21492. name: "Gigamacro",
  21493. height: math.unit(4000, "solarradii")
  21494. },
  21495. {
  21496. name: "Universal",
  21497. height: math.unit(1.1, "universes")
  21498. }
  21499. ]
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21503. {
  21504. side: {
  21505. height: math.unit(5 + 7 / 12, "feet"),
  21506. weight: math.unit(150, "lb"),
  21507. name: "Side",
  21508. image: {
  21509. source: "./media/characters/kassy/side.svg",
  21510. extra: 1280 / 1225,
  21511. bottom: 0.002
  21512. }
  21513. },
  21514. front: {
  21515. height: math.unit(5 + 7 / 12, "feet"),
  21516. weight: math.unit(150, "lb"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/kassy/front.svg",
  21520. extra: 1280 / 1225,
  21521. bottom: 0.025
  21522. }
  21523. },
  21524. back: {
  21525. height: math.unit(5 + 7 / 12, "feet"),
  21526. weight: math.unit(150, "lb"),
  21527. name: "Back",
  21528. image: {
  21529. source: "./media/characters/kassy/back.svg",
  21530. extra: 1280 / 1225,
  21531. bottom: 0.002
  21532. }
  21533. },
  21534. foot: {
  21535. height: math.unit(1.266, "feet"),
  21536. name: "Foot",
  21537. image: {
  21538. source: "./media/characters/kassy/foot.svg"
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Normal",
  21545. height: math.unit(5 + 7 / 12, "feet")
  21546. },
  21547. {
  21548. name: "Macro",
  21549. height: math.unit(137, "feet"),
  21550. default: true
  21551. },
  21552. {
  21553. name: "Megamacro",
  21554. height: math.unit(1, "mile")
  21555. },
  21556. ]
  21557. ))
  21558. characterMakers.push(() => makeCharacter(
  21559. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21560. {
  21561. front: {
  21562. height: math.unit(6 + 1 / 12, "feet"),
  21563. weight: math.unit(200, "lb"),
  21564. name: "Front",
  21565. image: {
  21566. source: "./media/characters/neil/front.svg",
  21567. extra: 1326 / 1250,
  21568. bottom: 0.023
  21569. }
  21570. },
  21571. },
  21572. [
  21573. {
  21574. name: "Normal",
  21575. height: math.unit(6 + 1 / 12, "feet"),
  21576. default: true
  21577. },
  21578. {
  21579. name: "Macro",
  21580. height: math.unit(200, "feet")
  21581. },
  21582. ]
  21583. ))
  21584. characterMakers.push(() => makeCharacter(
  21585. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21586. {
  21587. front: {
  21588. height: math.unit(5 + 9 / 12, "feet"),
  21589. weight: math.unit(190, "lb"),
  21590. name: "Front",
  21591. image: {
  21592. source: "./media/characters/atticus/front.svg",
  21593. extra: 2934 / 2785,
  21594. bottom: 0.025
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Normal",
  21601. height: math.unit(5 + 9 / 12, "feet"),
  21602. default: true
  21603. },
  21604. {
  21605. name: "Macro",
  21606. height: math.unit(180, "feet")
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21612. {
  21613. side: {
  21614. height: math.unit(9, "feet"),
  21615. weight: math.unit(650, "lb"),
  21616. name: "Side",
  21617. image: {
  21618. source: "./media/characters/milo/side.svg",
  21619. extra: 2644 / 2310,
  21620. bottom: 0.032
  21621. }
  21622. },
  21623. },
  21624. [
  21625. {
  21626. name: "Normal",
  21627. height: math.unit(9, "feet"),
  21628. default: true
  21629. },
  21630. {
  21631. name: "Macro",
  21632. height: math.unit(300, "feet")
  21633. },
  21634. ]
  21635. ))
  21636. characterMakers.push(() => makeCharacter(
  21637. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21638. {
  21639. side: {
  21640. height: math.unit(8, "meters"),
  21641. weight: math.unit(90000, "kg"),
  21642. name: "Side",
  21643. image: {
  21644. source: "./media/characters/ijzer/side.svg",
  21645. extra: 2756 / 1600,
  21646. bottom: 0.01
  21647. }
  21648. },
  21649. },
  21650. [
  21651. {
  21652. name: "Small",
  21653. height: math.unit(3, "meters")
  21654. },
  21655. {
  21656. name: "Normal",
  21657. height: math.unit(8, "meters"),
  21658. default: true
  21659. },
  21660. {
  21661. name: "Normal+",
  21662. height: math.unit(10, "meters")
  21663. },
  21664. {
  21665. name: "Bigger",
  21666. height: math.unit(24, "meters")
  21667. },
  21668. {
  21669. name: "Huge",
  21670. height: math.unit(80, "meters")
  21671. },
  21672. ]
  21673. ))
  21674. characterMakers.push(() => makeCharacter(
  21675. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21676. {
  21677. front: {
  21678. height: math.unit(6 + 2 / 12, "feet"),
  21679. weight: math.unit(153, "lb"),
  21680. name: "Front",
  21681. image: {
  21682. source: "./media/characters/luca-cervicum/front.svg",
  21683. extra: 370 / 327,
  21684. bottom: 0.015
  21685. }
  21686. },
  21687. back: {
  21688. height: math.unit(6 + 2 / 12, "feet"),
  21689. weight: math.unit(153, "lb"),
  21690. name: "Back",
  21691. image: {
  21692. source: "./media/characters/luca-cervicum/back.svg",
  21693. extra: 367 / 333,
  21694. bottom: 0.005
  21695. }
  21696. },
  21697. frontGear: {
  21698. height: math.unit(6 + 2 / 12, "feet"),
  21699. weight: math.unit(173, "lb"),
  21700. name: "Front (Gear)",
  21701. image: {
  21702. source: "./media/characters/luca-cervicum/front-gear.svg",
  21703. extra: 377 / 333,
  21704. bottom: 0.006
  21705. }
  21706. },
  21707. },
  21708. [
  21709. {
  21710. name: "Normal",
  21711. height: math.unit(6 + 2 / 12, "feet"),
  21712. default: true
  21713. },
  21714. ]
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21718. {
  21719. front: {
  21720. height: math.unit(6 + 1 / 12, "feet"),
  21721. weight: math.unit(304, "lb"),
  21722. name: "Front",
  21723. image: {
  21724. source: "./media/characters/oliver/front.svg",
  21725. extra: 157 / 143,
  21726. bottom: 0.08
  21727. }
  21728. },
  21729. },
  21730. [
  21731. {
  21732. name: "Normal",
  21733. height: math.unit(6 + 1 / 12, "feet"),
  21734. default: true
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21740. {
  21741. front: {
  21742. height: math.unit(5 + 7 / 12, "feet"),
  21743. weight: math.unit(140, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/shane/front.svg",
  21747. extra: 304 / 289,
  21748. bottom: 0.005
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Normal",
  21755. height: math.unit(5 + 7 / 12, "feet"),
  21756. default: true
  21757. },
  21758. ]
  21759. ))
  21760. characterMakers.push(() => makeCharacter(
  21761. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21762. {
  21763. front: {
  21764. height: math.unit(5 + 9 / 12, "feet"),
  21765. weight: math.unit(178, "lb"),
  21766. name: "Front",
  21767. image: {
  21768. source: "./media/characters/shin/front.svg",
  21769. extra: 159 / 151,
  21770. bottom: 0.015
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Normal",
  21777. height: math.unit(5 + 9 / 12, "feet"),
  21778. default: true
  21779. },
  21780. ]
  21781. ))
  21782. characterMakers.push(() => makeCharacter(
  21783. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21784. {
  21785. front: {
  21786. height: math.unit(5 + 10 / 12, "feet"),
  21787. weight: math.unit(168, "lb"),
  21788. name: "Front",
  21789. image: {
  21790. source: "./media/characters/xerxes/front.svg",
  21791. extra: 282 / 260,
  21792. bottom: 0.045
  21793. }
  21794. },
  21795. },
  21796. [
  21797. {
  21798. name: "Normal",
  21799. height: math.unit(5 + 10 / 12, "feet"),
  21800. default: true
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21806. {
  21807. front: {
  21808. height: math.unit(6 + 7 / 12, "feet"),
  21809. weight: math.unit(208, "lb"),
  21810. name: "Front",
  21811. image: {
  21812. source: "./media/characters/chaska/front.svg",
  21813. extra: 332 / 319,
  21814. bottom: 0.015
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Normal",
  21821. height: math.unit(6 + 7 / 12, "feet"),
  21822. default: true
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21828. {
  21829. front: {
  21830. height: math.unit(5 + 8 / 12, "feet"),
  21831. weight: math.unit(208, "lb"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/enuk/front.svg",
  21835. extra: 437 / 406,
  21836. bottom: 0.02
  21837. }
  21838. },
  21839. },
  21840. [
  21841. {
  21842. name: "Normal",
  21843. height: math.unit(5 + 8 / 12, "feet"),
  21844. default: true
  21845. },
  21846. ]
  21847. ))
  21848. characterMakers.push(() => makeCharacter(
  21849. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21850. {
  21851. front: {
  21852. height: math.unit(5 + 10 / 12, "feet"),
  21853. weight: math.unit(252, "lb"),
  21854. name: "Front",
  21855. image: {
  21856. source: "./media/characters/bruun/front.svg",
  21857. extra: 197 / 187,
  21858. bottom: 0.012
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(5 + 10 / 12, "feet"),
  21866. default: true
  21867. },
  21868. ]
  21869. ))
  21870. characterMakers.push(() => makeCharacter(
  21871. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21872. {
  21873. front: {
  21874. height: math.unit(6 + 10 / 12, "feet"),
  21875. weight: math.unit(255, "lb"),
  21876. name: "Front",
  21877. image: {
  21878. source: "./media/characters/alexeev/front.svg",
  21879. extra: 213 / 200,
  21880. bottom: 0.05
  21881. }
  21882. },
  21883. },
  21884. [
  21885. {
  21886. name: "Normal",
  21887. height: math.unit(6 + 10 / 12, "feet"),
  21888. default: true
  21889. },
  21890. ]
  21891. ))
  21892. characterMakers.push(() => makeCharacter(
  21893. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21894. {
  21895. front: {
  21896. height: math.unit(2 + 8 / 12, "feet"),
  21897. weight: math.unit(22, "lb"),
  21898. name: "Front",
  21899. image: {
  21900. source: "./media/characters/evelyn/front.svg",
  21901. extra: 208 / 180
  21902. }
  21903. },
  21904. },
  21905. [
  21906. {
  21907. name: "Normal",
  21908. height: math.unit(2 + 8 / 12, "feet"),
  21909. default: true
  21910. },
  21911. ]
  21912. ))
  21913. characterMakers.push(() => makeCharacter(
  21914. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21915. {
  21916. front: {
  21917. height: math.unit(5 + 9 / 12, "feet"),
  21918. weight: math.unit(139, "lb"),
  21919. name: "Front",
  21920. image: {
  21921. source: "./media/characters/inca/front.svg",
  21922. extra: 294 / 291,
  21923. bottom: 0.03
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Normal",
  21930. height: math.unit(5 + 9 / 12, "feet"),
  21931. default: true
  21932. },
  21933. ]
  21934. ))
  21935. characterMakers.push(() => makeCharacter(
  21936. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21937. {
  21938. front: {
  21939. height: math.unit(6 + 3 / 12, "feet"),
  21940. weight: math.unit(185, "lb"),
  21941. name: "Front",
  21942. image: {
  21943. source: "./media/characters/mera/front.svg",
  21944. extra: 291 / 277,
  21945. bottom: 0.03
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Normal",
  21952. height: math.unit(6 + 3 / 12, "feet"),
  21953. default: true
  21954. },
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21959. {
  21960. front: {
  21961. height: math.unit(6 + 7 / 12, "feet"),
  21962. weight: math.unit(160, "lb"),
  21963. name: "Front",
  21964. image: {
  21965. source: "./media/characters/ceres/front.svg",
  21966. extra: 1023 / 950,
  21967. bottom: 0.027
  21968. }
  21969. },
  21970. back: {
  21971. height: math.unit(6 + 7 / 12, "feet"),
  21972. weight: math.unit(160, "lb"),
  21973. name: "Back",
  21974. image: {
  21975. source: "./media/characters/ceres/back.svg",
  21976. extra: 1023 / 950
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Normal",
  21983. height: math.unit(6 + 7 / 12, "feet"),
  21984. default: true
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21990. {
  21991. front: {
  21992. height: math.unit(5 + 10 / 12, "feet"),
  21993. weight: math.unit(150, "lb"),
  21994. name: "Front",
  21995. image: {
  21996. source: "./media/characters/kris/front.svg",
  21997. extra: 885 / 803,
  21998. bottom: 0.03
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Normal",
  22005. height: math.unit(5 + 10 / 12, "feet"),
  22006. default: true
  22007. },
  22008. ]
  22009. ))
  22010. characterMakers.push(() => makeCharacter(
  22011. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22012. {
  22013. dragon_front: {
  22014. height: math.unit(5, "feet"),
  22015. name: "Front",
  22016. image: {
  22017. source: "./media/characters/taluthus/dragon-front.svg",
  22018. extra: 1203/1098,
  22019. bottom: 46/1249
  22020. },
  22021. form: "dragon",
  22022. default: true
  22023. },
  22024. dragon_maw: {
  22025. height: math.unit(2.35, "feet"),
  22026. name: "Maw",
  22027. image: {
  22028. source: "./media/characters/taluthus/dragon-maw.svg"
  22029. },
  22030. form: "dragon",
  22031. },
  22032. kitsune_front: {
  22033. height: math.unit(7, "feet"),
  22034. name: "Front",
  22035. image: {
  22036. source: "./media/characters/taluthus/kitsune-front.svg",
  22037. extra: 900/841,
  22038. bottom: 65/965
  22039. },
  22040. form: "kitsune",
  22041. default: true
  22042. },
  22043. },
  22044. [
  22045. {
  22046. name: "Normal",
  22047. height: math.unit(5, "feet"),
  22048. form: "dragon",
  22049. default: true,
  22050. },
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(7, "feet"),
  22054. form: "kitsune",
  22055. default: true
  22056. },
  22057. {
  22058. name: "Macro",
  22059. height: math.unit(300, "feet"),
  22060. allForms: true
  22061. },
  22062. ],
  22063. {
  22064. "dragon": {
  22065. name: "Dragon",
  22066. default: true
  22067. },
  22068. "kitsune": {
  22069. name: "Kitsune",
  22070. },
  22071. }
  22072. ))
  22073. characterMakers.push(() => makeCharacter(
  22074. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22075. {
  22076. front: {
  22077. height: math.unit(5 + 9 / 12, "feet"),
  22078. weight: math.unit(145, "lb"),
  22079. name: "Front",
  22080. image: {
  22081. source: "./media/characters/dawn/front.svg",
  22082. extra: 2094 / 2016,
  22083. bottom: 0.025
  22084. }
  22085. },
  22086. back: {
  22087. height: math.unit(5 + 9 / 12, "feet"),
  22088. weight: math.unit(160, "lb"),
  22089. name: "Back",
  22090. image: {
  22091. source: "./media/characters/dawn/back.svg",
  22092. extra: 2112 / 2080,
  22093. bottom: 0.005
  22094. }
  22095. },
  22096. },
  22097. [
  22098. {
  22099. name: "Normal",
  22100. height: math.unit(6 + 7 / 12, "feet"),
  22101. default: true
  22102. },
  22103. ]
  22104. ))
  22105. characterMakers.push(() => makeCharacter(
  22106. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22107. {
  22108. anthro: {
  22109. height: math.unit(8 + 3 / 12, "feet"),
  22110. weight: math.unit(450, "lb"),
  22111. name: "Anthro",
  22112. image: {
  22113. source: "./media/characters/arador/anthro.svg",
  22114. extra: 1835 / 1718,
  22115. bottom: 0.025
  22116. }
  22117. },
  22118. feral: {
  22119. height: math.unit(4, "feet"),
  22120. weight: math.unit(200, "lb"),
  22121. name: "Feral",
  22122. image: {
  22123. source: "./media/characters/arador/feral.svg",
  22124. extra: 1683 / 1514,
  22125. bottom: 0.07
  22126. }
  22127. },
  22128. },
  22129. [
  22130. {
  22131. name: "Normal",
  22132. height: math.unit(8 + 3 / 12, "feet")
  22133. },
  22134. {
  22135. name: "Macro",
  22136. height: math.unit(82.5, "feet"),
  22137. default: true
  22138. },
  22139. ]
  22140. ))
  22141. characterMakers.push(() => makeCharacter(
  22142. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22143. {
  22144. front: {
  22145. height: math.unit(5 + 10 / 12, "feet"),
  22146. weight: math.unit(125, "lb"),
  22147. name: "Front",
  22148. image: {
  22149. source: "./media/characters/dharsi/front.svg",
  22150. extra: 716 / 630,
  22151. bottom: 0.035
  22152. }
  22153. },
  22154. },
  22155. [
  22156. {
  22157. name: "Nano",
  22158. height: math.unit(100, "nm")
  22159. },
  22160. {
  22161. name: "Micro",
  22162. height: math.unit(2, "inches")
  22163. },
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(5 + 10 / 12, "feet"),
  22167. default: true
  22168. },
  22169. {
  22170. name: "Macro",
  22171. height: math.unit(1000, "feet")
  22172. },
  22173. {
  22174. name: "Megamacro",
  22175. height: math.unit(10, "miles")
  22176. },
  22177. {
  22178. name: "Gigamacro",
  22179. height: math.unit(3000, "miles")
  22180. },
  22181. {
  22182. name: "Teramacro",
  22183. height: math.unit(500000, "miles")
  22184. },
  22185. {
  22186. name: "Teramacro+",
  22187. height: math.unit(30, "galaxies")
  22188. },
  22189. ]
  22190. ))
  22191. characterMakers.push(() => makeCharacter(
  22192. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22193. {
  22194. front: {
  22195. height: math.unit(6, "feet"),
  22196. weight: math.unit(150, "lb"),
  22197. name: "Front",
  22198. image: {
  22199. source: "./media/characters/deathy/front.svg",
  22200. extra: 1552 / 1463,
  22201. bottom: 0.025
  22202. }
  22203. },
  22204. side: {
  22205. height: math.unit(6, "feet"),
  22206. weight: math.unit(150, "lb"),
  22207. name: "Side",
  22208. image: {
  22209. source: "./media/characters/deathy/side.svg",
  22210. extra: 1604 / 1455,
  22211. bottom: 0.025
  22212. }
  22213. },
  22214. back: {
  22215. height: math.unit(6, "feet"),
  22216. weight: math.unit(150, "lb"),
  22217. name: "Back",
  22218. image: {
  22219. source: "./media/characters/deathy/back.svg",
  22220. extra: 1580 / 1463,
  22221. bottom: 0.005
  22222. }
  22223. },
  22224. },
  22225. [
  22226. {
  22227. name: "Micro",
  22228. height: math.unit(5, "millimeters")
  22229. },
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(6 + 5 / 12, "feet"),
  22233. default: true
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22239. {
  22240. front: {
  22241. height: math.unit(16, "feet"),
  22242. weight: math.unit(4000, "lb"),
  22243. name: "Front",
  22244. image: {
  22245. source: "./media/characters/juniper/front.svg",
  22246. bottom: 0.04
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Normal",
  22253. height: math.unit(16, "feet"),
  22254. default: true
  22255. },
  22256. ]
  22257. ))
  22258. characterMakers.push(() => makeCharacter(
  22259. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22260. {
  22261. front: {
  22262. height: math.unit(6, "feet"),
  22263. weight: math.unit(150, "lb"),
  22264. name: "Front",
  22265. image: {
  22266. source: "./media/characters/hipster/front.svg",
  22267. extra: 1312 / 1209,
  22268. bottom: 0.025
  22269. }
  22270. },
  22271. back: {
  22272. height: math.unit(6, "feet"),
  22273. weight: math.unit(150, "lb"),
  22274. name: "Back",
  22275. image: {
  22276. source: "./media/characters/hipster/back.svg",
  22277. extra: 1281 / 1196,
  22278. bottom: 0.01
  22279. }
  22280. },
  22281. },
  22282. [
  22283. {
  22284. name: "Micro",
  22285. height: math.unit(1, "mm")
  22286. },
  22287. {
  22288. name: "Normal",
  22289. height: math.unit(4, "inches"),
  22290. default: true
  22291. },
  22292. {
  22293. name: "Macro",
  22294. height: math.unit(500, "feet")
  22295. },
  22296. {
  22297. name: "Megamacro",
  22298. height: math.unit(1000, "miles")
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(6, "feet"),
  22307. weight: math.unit(150, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/tendirmuldr/front.svg",
  22311. extra: 1878 / 1772,
  22312. bottom: 0.015
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Megamacro",
  22319. height: math.unit(1500, "miles"),
  22320. default: true
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22326. {
  22327. front: {
  22328. height: math.unit(14, "feet"),
  22329. weight: math.unit(12000, "lb"),
  22330. name: "Front",
  22331. image: {
  22332. source: "./media/characters/mort/front.svg",
  22333. extra: 365 / 318,
  22334. bottom: 0.01
  22335. }
  22336. },
  22337. side: {
  22338. height: math.unit(14, "feet"),
  22339. weight: math.unit(12000, "lb"),
  22340. name: "Side",
  22341. image: {
  22342. source: "./media/characters/mort/side.svg",
  22343. extra: 365 / 318,
  22344. bottom: 0.052
  22345. },
  22346. default: true
  22347. },
  22348. back: {
  22349. height: math.unit(14, "feet"),
  22350. weight: math.unit(12000, "lb"),
  22351. name: "Back",
  22352. image: {
  22353. source: "./media/characters/mort/back.svg",
  22354. extra: 371 / 332,
  22355. bottom: 0.18
  22356. }
  22357. },
  22358. },
  22359. [
  22360. {
  22361. name: "Normal",
  22362. height: math.unit(14, "feet"),
  22363. default: true
  22364. },
  22365. ]
  22366. ))
  22367. characterMakers.push(() => makeCharacter(
  22368. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22369. {
  22370. front: {
  22371. height: math.unit(8, "feet"),
  22372. weight: math.unit(1, "ton"),
  22373. name: "Front",
  22374. image: {
  22375. source: "./media/characters/lycoa/front.svg",
  22376. extra: 1836/1728,
  22377. bottom: 81/1917
  22378. }
  22379. },
  22380. back: {
  22381. height: math.unit(8, "feet"),
  22382. weight: math.unit(1, "ton"),
  22383. name: "Back",
  22384. image: {
  22385. source: "./media/characters/lycoa/back.svg",
  22386. extra: 1785/1720,
  22387. bottom: 91/1876
  22388. }
  22389. },
  22390. head: {
  22391. height: math.unit(1.6243, "feet"),
  22392. name: "Head",
  22393. image: {
  22394. source: "./media/characters/lycoa/head.svg",
  22395. extra: 1011/782,
  22396. bottom: 0/1011
  22397. }
  22398. },
  22399. tailmaw: {
  22400. height: math.unit(1.9, "feet"),
  22401. name: "Tailmaw",
  22402. image: {
  22403. source: "./media/characters/lycoa/tailmaw.svg"
  22404. }
  22405. },
  22406. tentacles: {
  22407. height: math.unit(2.1, "feet"),
  22408. name: "Tentacles",
  22409. image: {
  22410. source: "./media/characters/lycoa/tentacles.svg"
  22411. }
  22412. },
  22413. dick: {
  22414. height: math.unit(1.73, "feet"),
  22415. name: "Dick",
  22416. image: {
  22417. source: "./media/characters/lycoa/dick.svg"
  22418. }
  22419. },
  22420. },
  22421. [
  22422. {
  22423. name: "Normal",
  22424. height: math.unit(8, "feet"),
  22425. default: true
  22426. },
  22427. {
  22428. name: "Macro",
  22429. height: math.unit(30, "feet")
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22435. {
  22436. front: {
  22437. height: math.unit(4 + 2 / 12, "feet"),
  22438. weight: math.unit(70, "lb"),
  22439. name: "Front",
  22440. image: {
  22441. source: "./media/characters/naldara/front.svg",
  22442. extra: 1664/1387,
  22443. bottom: 81/1745
  22444. },
  22445. form: "anthro",
  22446. default: true
  22447. },
  22448. naga: {
  22449. height: math.unit(20, "feet"),
  22450. weight: math.unit(15000, "kg"),
  22451. name: "Front",
  22452. image: {
  22453. source: "./media/characters/naldara/naga.svg",
  22454. extra: 1590/1396,
  22455. bottom: 285/1875
  22456. },
  22457. form: "naga",
  22458. default: true
  22459. },
  22460. },
  22461. [
  22462. {
  22463. name: "Normal",
  22464. height: math.unit(4 + 2 / 12, "feet"),
  22465. form: "anthro",
  22466. default: true
  22467. },
  22468. {
  22469. name: "Normal",
  22470. height: math.unit(20, "feet"),
  22471. form: "naga",
  22472. default: true
  22473. },
  22474. ],
  22475. {
  22476. "anthro": {
  22477. name: "Anthro",
  22478. default: true
  22479. },
  22480. "naga": {
  22481. name: "Naga"
  22482. }
  22483. }
  22484. ))
  22485. characterMakers.push(() => makeCharacter(
  22486. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22487. {
  22488. front: {
  22489. height: math.unit(13 + 7 / 12, "feet"),
  22490. weight: math.unit(1500, "lb"),
  22491. name: "Front",
  22492. image: {
  22493. source: "./media/characters/briar/front.svg",
  22494. extra: 1223/1157,
  22495. bottom: 123/1346
  22496. }
  22497. },
  22498. },
  22499. [
  22500. {
  22501. name: "Normal",
  22502. height: math.unit(13 + 7 / 12, "feet"),
  22503. default: true
  22504. },
  22505. ]
  22506. ))
  22507. characterMakers.push(() => makeCharacter(
  22508. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22509. {
  22510. side: {
  22511. height: math.unit(16, "feet"),
  22512. weight: math.unit(500, "lb"),
  22513. name: "Side",
  22514. image: {
  22515. source: "./media/characters/vanguard/side.svg",
  22516. extra: 1022/914,
  22517. bottom: 30/1052
  22518. }
  22519. },
  22520. sideAlt: {
  22521. height: math.unit(10, "feet"),
  22522. weight: math.unit(500, "lb"),
  22523. name: "Side (Alt)",
  22524. image: {
  22525. source: "./media/characters/vanguard/side-alt.svg",
  22526. extra: 502 / 425,
  22527. bottom: 0.087
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Normal",
  22534. height: math.unit(17.71, "feet"),
  22535. default: true
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22541. {
  22542. front: {
  22543. height: math.unit(7.5, "feet"),
  22544. weight: math.unit(2, "lb"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/artemis/work-safe-front.svg",
  22548. extra: 1192 / 1075,
  22549. bottom: 0.07
  22550. },
  22551. form: "work-safe",
  22552. default: true
  22553. },
  22554. frontNsfw: {
  22555. height: math.unit(7.5, "feet"),
  22556. weight: math.unit(2, "lb"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/artemis/calibrating-front.svg",
  22560. extra: 1192 / 1075,
  22561. bottom: 0.07
  22562. },
  22563. form: "calibrating",
  22564. default: true
  22565. },
  22566. frontNsfwer: {
  22567. height: math.unit(7.5, "feet"),
  22568. weight: math.unit(2, "lb"),
  22569. name: "Front",
  22570. image: {
  22571. source: "./media/characters/artemis/oversize-load-front.svg",
  22572. extra: 1192 / 1075,
  22573. bottom: 0.07
  22574. },
  22575. form: "oversize-load",
  22576. default: true
  22577. },
  22578. side: {
  22579. height: math.unit(7.5, "feet"),
  22580. weight: math.unit(2, "lb"),
  22581. name: "Side",
  22582. image: {
  22583. source: "./media/characters/artemis/work-safe-side.svg",
  22584. extra: 1192 / 1075,
  22585. bottom: 0.07
  22586. },
  22587. form: "work-safe"
  22588. },
  22589. sideNsfw: {
  22590. height: math.unit(7.5, "feet"),
  22591. weight: math.unit(2, "lb"),
  22592. name: "Side",
  22593. image: {
  22594. source: "./media/characters/artemis/calibrating-side.svg",
  22595. extra: 1192 / 1075,
  22596. bottom: 0.07
  22597. },
  22598. form: "calibrating"
  22599. },
  22600. sideNsfwer: {
  22601. height: math.unit(7.5, "feet"),
  22602. weight: math.unit(2, "lb"),
  22603. name: "Side",
  22604. image: {
  22605. source: "./media/characters/artemis/oversize-load-side.svg",
  22606. extra: 1192 / 1075,
  22607. bottom: 0.07
  22608. },
  22609. form: "oversize-load"
  22610. },
  22611. maw: {
  22612. height: math.unit(1.1, "feet"),
  22613. name: "Maw",
  22614. image: {
  22615. source: "./media/characters/artemis/maw.svg"
  22616. },
  22617. form: "work-safe"
  22618. },
  22619. stomach: {
  22620. height: math.unit(0.95, "feet"),
  22621. name: "Stomach",
  22622. image: {
  22623. source: "./media/characters/artemis/stomach.svg"
  22624. },
  22625. form: "work-safe"
  22626. },
  22627. dickCanine: {
  22628. height: math.unit(1, "feet"),
  22629. name: "Dick (Canine)",
  22630. image: {
  22631. source: "./media/characters/artemis/dick-canine.svg"
  22632. },
  22633. form: "calibrating"
  22634. },
  22635. dickEquine: {
  22636. height: math.unit(0.85, "feet"),
  22637. name: "Dick (Equine)",
  22638. image: {
  22639. source: "./media/characters/artemis/dick-equine.svg"
  22640. },
  22641. form: "calibrating"
  22642. },
  22643. dickExotic: {
  22644. height: math.unit(0.85, "feet"),
  22645. name: "Dick (Exotic)",
  22646. image: {
  22647. source: "./media/characters/artemis/dick-exotic.svg"
  22648. },
  22649. form: "calibrating"
  22650. },
  22651. dickCanineBigger: {
  22652. height: math.unit(1 * 1.33, "feet"),
  22653. name: "Dick (Canine)",
  22654. image: {
  22655. source: "./media/characters/artemis/dick-canine.svg"
  22656. },
  22657. form: "oversize-load"
  22658. },
  22659. dickEquineBigger: {
  22660. height: math.unit(0.85 * 1.33, "feet"),
  22661. name: "Dick (Equine)",
  22662. image: {
  22663. source: "./media/characters/artemis/dick-equine.svg"
  22664. },
  22665. form: "oversize-load"
  22666. },
  22667. dickExoticBigger: {
  22668. height: math.unit(0.85 * 1.33, "feet"),
  22669. name: "Dick (Exotic)",
  22670. image: {
  22671. source: "./media/characters/artemis/dick-exotic.svg"
  22672. },
  22673. form: "oversize-load"
  22674. },
  22675. },
  22676. [
  22677. {
  22678. name: "Normal",
  22679. height: math.unit(7.5, "feet"),
  22680. form: "work-safe",
  22681. default: true
  22682. },
  22683. {
  22684. name: "Normal",
  22685. height: math.unit(7.5, "feet"),
  22686. form: "calibrating",
  22687. default: true
  22688. },
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(7.5, "feet"),
  22692. form: "oversize-load",
  22693. default: true
  22694. },
  22695. {
  22696. name: "Enlarged",
  22697. height: math.unit(12, "feet"),
  22698. form: "work-safe",
  22699. },
  22700. {
  22701. name: "Enlarged",
  22702. height: math.unit(12, "feet"),
  22703. form: "calibrating",
  22704. },
  22705. {
  22706. name: "Enlarged",
  22707. height: math.unit(12, "feet"),
  22708. form: "oversize-load",
  22709. },
  22710. ],
  22711. {
  22712. "work-safe": {
  22713. name: "Work-Safe",
  22714. default: true
  22715. },
  22716. "calibrating": {
  22717. name: "Calibrating"
  22718. },
  22719. "oversize-load": {
  22720. name: "Oversize Load"
  22721. }
  22722. }
  22723. ))
  22724. characterMakers.push(() => makeCharacter(
  22725. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22726. {
  22727. front: {
  22728. height: math.unit(5 + 3 / 12, "feet"),
  22729. weight: math.unit(160, "lb"),
  22730. name: "Front",
  22731. image: {
  22732. source: "./media/characters/kira/front.svg",
  22733. extra: 906 / 786,
  22734. bottom: 0.01
  22735. }
  22736. },
  22737. back: {
  22738. height: math.unit(5 + 3 / 12, "feet"),
  22739. weight: math.unit(160, "lb"),
  22740. name: "Back",
  22741. image: {
  22742. source: "./media/characters/kira/back.svg",
  22743. extra: 882 / 757,
  22744. bottom: 0.005
  22745. }
  22746. },
  22747. frontDressed: {
  22748. height: math.unit(5 + 3 / 12, "feet"),
  22749. weight: math.unit(160, "lb"),
  22750. name: "Front (Dressed)",
  22751. image: {
  22752. source: "./media/characters/kira/front-dressed.svg",
  22753. extra: 906 / 786,
  22754. bottom: 0.01
  22755. }
  22756. },
  22757. beans: {
  22758. height: math.unit(0.92, "feet"),
  22759. name: "Beans",
  22760. image: {
  22761. source: "./media/characters/kira/beans.svg"
  22762. }
  22763. },
  22764. },
  22765. [
  22766. {
  22767. name: "Normal",
  22768. height: math.unit(5 + 3 / 12, "feet"),
  22769. default: true
  22770. },
  22771. ]
  22772. ))
  22773. characterMakers.push(() => makeCharacter(
  22774. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22775. {
  22776. front: {
  22777. height: math.unit(5 + 4 / 12, "feet"),
  22778. weight: math.unit(145, "lb"),
  22779. name: "Front",
  22780. image: {
  22781. source: "./media/characters/scramble/front.svg",
  22782. extra: 763 / 727,
  22783. bottom: 0.05
  22784. }
  22785. },
  22786. back: {
  22787. height: math.unit(5 + 4 / 12, "feet"),
  22788. weight: math.unit(145, "lb"),
  22789. name: "Back",
  22790. image: {
  22791. source: "./media/characters/scramble/back.svg",
  22792. extra: 826 / 737,
  22793. bottom: 0.002
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Normal",
  22800. height: math.unit(5 + 4 / 12, "feet"),
  22801. default: true
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22807. {
  22808. side: {
  22809. height: math.unit(6 + 2 / 12, "feet"),
  22810. weight: math.unit(190, "lb"),
  22811. name: "Side",
  22812. image: {
  22813. source: "./media/characters/biscuit/side.svg",
  22814. extra: 858 / 791,
  22815. bottom: 0.044
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Normal",
  22822. height: math.unit(6 + 2 / 12, "feet"),
  22823. default: true
  22824. },
  22825. ]
  22826. ))
  22827. characterMakers.push(() => makeCharacter(
  22828. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22829. {
  22830. front: {
  22831. height: math.unit(5 + 2 / 12, "feet"),
  22832. weight: math.unit(120, "lb"),
  22833. name: "Front",
  22834. image: {
  22835. source: "./media/characters/poffin/front.svg",
  22836. extra: 786 / 680,
  22837. bottom: 0.005
  22838. }
  22839. },
  22840. },
  22841. [
  22842. {
  22843. name: "Normal",
  22844. height: math.unit(5 + 2 / 12, "feet"),
  22845. default: true
  22846. },
  22847. ]
  22848. ))
  22849. characterMakers.push(() => makeCharacter(
  22850. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22851. {
  22852. front: {
  22853. height: math.unit(6 + 3 / 12, "feet"),
  22854. weight: math.unit(519, "lb"),
  22855. name: "Front",
  22856. image: {
  22857. source: "./media/characters/dhari/front.svg",
  22858. extra: 1048 / 946,
  22859. bottom: 0.015
  22860. }
  22861. },
  22862. back: {
  22863. height: math.unit(6 + 3 / 12, "feet"),
  22864. weight: math.unit(519, "lb"),
  22865. name: "Back",
  22866. image: {
  22867. source: "./media/characters/dhari/back.svg",
  22868. extra: 1048 / 931,
  22869. bottom: 0.005
  22870. }
  22871. },
  22872. frontDressed: {
  22873. height: math.unit(6 + 3 / 12, "feet"),
  22874. weight: math.unit(519, "lb"),
  22875. name: "Front (Dressed)",
  22876. image: {
  22877. source: "./media/characters/dhari/front-dressed.svg",
  22878. extra: 1713 / 1546,
  22879. bottom: 0.02
  22880. }
  22881. },
  22882. backDressed: {
  22883. height: math.unit(6 + 3 / 12, "feet"),
  22884. weight: math.unit(519, "lb"),
  22885. name: "Back (Dressed)",
  22886. image: {
  22887. source: "./media/characters/dhari/back-dressed.svg",
  22888. extra: 1699 / 1537,
  22889. bottom: 0.01
  22890. }
  22891. },
  22892. maw: {
  22893. height: math.unit(0.95, "feet"),
  22894. name: "Maw",
  22895. image: {
  22896. source: "./media/characters/dhari/maw.svg"
  22897. }
  22898. },
  22899. wereFront: {
  22900. height: math.unit(12 + 8 / 12, "feet"),
  22901. weight: math.unit(4000, "lb"),
  22902. name: "Front (Were)",
  22903. image: {
  22904. source: "./media/characters/dhari/were-front.svg",
  22905. extra: 1065 / 969,
  22906. bottom: 0.015
  22907. }
  22908. },
  22909. wereBack: {
  22910. height: math.unit(12 + 8 / 12, "feet"),
  22911. weight: math.unit(4000, "lb"),
  22912. name: "Back (Were)",
  22913. image: {
  22914. source: "./media/characters/dhari/were-back.svg",
  22915. extra: 1065 / 969,
  22916. bottom: 0.012
  22917. }
  22918. },
  22919. wereMaw: {
  22920. height: math.unit(0.625, "meters"),
  22921. name: "Maw (Were)",
  22922. image: {
  22923. source: "./media/characters/dhari/were-maw.svg"
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(6 + 3 / 12, "feet"),
  22931. default: true
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22937. {
  22938. anthro: {
  22939. height: math.unit(5 + 7 / 12, "feet"),
  22940. weight: math.unit(175, "lb"),
  22941. name: "Anthro",
  22942. image: {
  22943. source: "./media/characters/rena-dyne/anthro.svg",
  22944. extra: 1849 / 1785,
  22945. bottom: 0.005
  22946. }
  22947. },
  22948. taur: {
  22949. height: math.unit(15 + 6 / 12, "feet"),
  22950. weight: math.unit(8000, "lb"),
  22951. name: "Taur",
  22952. image: {
  22953. source: "./media/characters/rena-dyne/taur.svg",
  22954. extra: 2315 / 2234,
  22955. bottom: 0.033
  22956. }
  22957. },
  22958. },
  22959. [
  22960. {
  22961. name: "Normal",
  22962. height: math.unit(5 + 7 / 12, "feet"),
  22963. default: true
  22964. },
  22965. ]
  22966. ))
  22967. characterMakers.push(() => makeCharacter(
  22968. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22969. {
  22970. front: {
  22971. height: math.unit(8, "feet"),
  22972. weight: math.unit(600, "lb"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/weremeep/front.svg",
  22976. extra: 970/849,
  22977. bottom: 7/977
  22978. }
  22979. },
  22980. },
  22981. [
  22982. {
  22983. name: "Normal",
  22984. height: math.unit(8, "feet"),
  22985. default: true
  22986. },
  22987. {
  22988. name: "Lorg",
  22989. height: math.unit(12, "feet")
  22990. },
  22991. {
  22992. name: "Oh Lawd She Comin'",
  22993. height: math.unit(20, "feet")
  22994. },
  22995. ]
  22996. ))
  22997. characterMakers.push(() => makeCharacter(
  22998. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22999. {
  23000. front: {
  23001. height: math.unit(4, "feet"),
  23002. weight: math.unit(90, "lb"),
  23003. name: "Front",
  23004. image: {
  23005. source: "./media/characters/reza/front.svg",
  23006. extra: 1183 / 1111,
  23007. bottom: 0.017
  23008. }
  23009. },
  23010. back: {
  23011. height: math.unit(4, "feet"),
  23012. weight: math.unit(90, "lb"),
  23013. name: "Back",
  23014. image: {
  23015. source: "./media/characters/reza/back.svg",
  23016. extra: 1183 / 1111,
  23017. bottom: 0.01
  23018. }
  23019. },
  23020. drake: {
  23021. height: math.unit(30, "feet"),
  23022. weight: math.unit(246960, "lb"),
  23023. name: "Drake",
  23024. image: {
  23025. source: "./media/characters/reza/drake.svg",
  23026. extra: 2350 / 2024,
  23027. bottom: 60.7 / 2403
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Normal",
  23034. height: math.unit(4, "feet"),
  23035. default: true
  23036. },
  23037. ]
  23038. ))
  23039. characterMakers.push(() => makeCharacter(
  23040. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23041. {
  23042. side: {
  23043. height: math.unit(15, "feet"),
  23044. weight: math.unit(14, "tons"),
  23045. name: "Side",
  23046. image: {
  23047. source: "./media/characters/athea/side.svg",
  23048. extra: 960 / 540,
  23049. bottom: 0.003
  23050. }
  23051. },
  23052. sitting: {
  23053. height: math.unit(6 * 2.85, "feet"),
  23054. weight: math.unit(14, "tons"),
  23055. name: "Sitting",
  23056. image: {
  23057. source: "./media/characters/athea/sitting.svg",
  23058. extra: 621 / 581,
  23059. bottom: 0.075
  23060. }
  23061. },
  23062. maw: {
  23063. height: math.unit(7.59498031496063, "feet"),
  23064. name: "Maw",
  23065. image: {
  23066. source: "./media/characters/athea/maw.svg"
  23067. }
  23068. },
  23069. },
  23070. [
  23071. {
  23072. name: "Lap Cat",
  23073. height: math.unit(2.5, "feet")
  23074. },
  23075. {
  23076. name: "Minimacro",
  23077. height: math.unit(15, "feet"),
  23078. default: true
  23079. },
  23080. {
  23081. name: "Macro",
  23082. height: math.unit(120, "feet")
  23083. },
  23084. {
  23085. name: "Macro+",
  23086. height: math.unit(640, "feet")
  23087. },
  23088. {
  23089. name: "Colossus",
  23090. height: math.unit(2.2, "miles")
  23091. },
  23092. ]
  23093. ))
  23094. characterMakers.push(() => makeCharacter(
  23095. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23096. {
  23097. front: {
  23098. height: math.unit(8 + 8 / 12, "feet"),
  23099. weight: math.unit(130, "kg"),
  23100. name: "Front",
  23101. image: {
  23102. source: "./media/characters/seroko/front.svg",
  23103. extra: 1385 / 1280,
  23104. bottom: 0.025
  23105. }
  23106. },
  23107. back: {
  23108. height: math.unit(8 + 8 / 12, "feet"),
  23109. weight: math.unit(130, "kg"),
  23110. name: "Back",
  23111. image: {
  23112. source: "./media/characters/seroko/back.svg",
  23113. extra: 1369 / 1238,
  23114. bottom: 0.018
  23115. }
  23116. },
  23117. frontDressed: {
  23118. height: math.unit(8 + 8 / 12, "feet"),
  23119. weight: math.unit(130, "kg"),
  23120. name: "Front (Dressed)",
  23121. image: {
  23122. source: "./media/characters/seroko/front-dressed.svg",
  23123. extra: 1366 / 1275,
  23124. bottom: 0.03
  23125. }
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Normal",
  23131. height: math.unit(8 + 8 / 12, "feet"),
  23132. default: true
  23133. },
  23134. ]
  23135. ))
  23136. characterMakers.push(() => makeCharacter(
  23137. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23138. {
  23139. front: {
  23140. height: math.unit(5.5, "feet"),
  23141. weight: math.unit(160, "lb"),
  23142. name: "Front",
  23143. image: {
  23144. source: "./media/characters/quatzi/front.svg",
  23145. extra: 2346 / 2242,
  23146. bottom: 0.015
  23147. }
  23148. },
  23149. },
  23150. [
  23151. {
  23152. name: "Normal",
  23153. height: math.unit(5.5, "feet"),
  23154. default: true
  23155. },
  23156. {
  23157. name: "Big",
  23158. height: math.unit(7.7, "feet")
  23159. },
  23160. ]
  23161. ))
  23162. characterMakers.push(() => makeCharacter(
  23163. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23164. {
  23165. front: {
  23166. height: math.unit(5 + 11 / 12, "feet"),
  23167. weight: math.unit(180, "lb"),
  23168. name: "Front",
  23169. image: {
  23170. source: "./media/characters/sen/front.svg",
  23171. extra: 1321 / 1254,
  23172. bottom: 0.015
  23173. }
  23174. },
  23175. side: {
  23176. height: math.unit(5 + 11 / 12, "feet"),
  23177. weight: math.unit(180, "lb"),
  23178. name: "Side",
  23179. image: {
  23180. source: "./media/characters/sen/side.svg",
  23181. extra: 1321 / 1254,
  23182. bottom: 0.007
  23183. }
  23184. },
  23185. back: {
  23186. height: math.unit(5 + 11 / 12, "feet"),
  23187. weight: math.unit(180, "lb"),
  23188. name: "Back",
  23189. image: {
  23190. source: "./media/characters/sen/back.svg",
  23191. extra: 1321 / 1254
  23192. }
  23193. },
  23194. },
  23195. [
  23196. {
  23197. name: "Normal",
  23198. height: math.unit(5 + 11 / 12, "feet"),
  23199. default: true
  23200. },
  23201. ]
  23202. ))
  23203. characterMakers.push(() => makeCharacter(
  23204. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23205. {
  23206. front: {
  23207. height: math.unit(166.6, "cm"),
  23208. weight: math.unit(66.6, "kg"),
  23209. name: "Front",
  23210. image: {
  23211. source: "./media/characters/fruity/front.svg",
  23212. extra: 1510 / 1386,
  23213. bottom: 0.04
  23214. }
  23215. },
  23216. back: {
  23217. height: math.unit(166.6, "cm"),
  23218. weight: math.unit(66.6, "lb"),
  23219. name: "Back",
  23220. image: {
  23221. source: "./media/characters/fruity/back.svg",
  23222. extra: 1563 / 1435,
  23223. bottom: 0.005
  23224. }
  23225. },
  23226. },
  23227. [
  23228. {
  23229. name: "Normal",
  23230. height: math.unit(166.6, "cm"),
  23231. default: true
  23232. },
  23233. {
  23234. name: "Demonic",
  23235. height: math.unit(166.6, "feet")
  23236. },
  23237. ]
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23241. {
  23242. side: {
  23243. height: math.unit(10, "feet"),
  23244. weight: math.unit(500, "lb"),
  23245. name: "Side",
  23246. image: {
  23247. source: "./media/characters/zost/side.svg",
  23248. extra: 2870/2533,
  23249. bottom: 252/3122
  23250. }
  23251. },
  23252. mawFront: {
  23253. height: math.unit(1.08, "meters"),
  23254. name: "Maw (Front)",
  23255. image: {
  23256. source: "./media/characters/zost/maw-front.svg"
  23257. }
  23258. },
  23259. mawSide: {
  23260. height: math.unit(2.66, "feet"),
  23261. name: "Maw (Side)",
  23262. image: {
  23263. source: "./media/characters/zost/maw-side.svg"
  23264. }
  23265. },
  23266. wingspan: {
  23267. height: math.unit(7.4, "feet"),
  23268. name: "Wingspan",
  23269. image: {
  23270. source: "./media/characters/zost/wingspan.svg"
  23271. }
  23272. },
  23273. },
  23274. [
  23275. {
  23276. name: "Normal",
  23277. height: math.unit(10, "feet"),
  23278. default: true
  23279. },
  23280. ]
  23281. ))
  23282. characterMakers.push(() => makeCharacter(
  23283. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23284. {
  23285. front: {
  23286. height: math.unit(5 + 4 / 12, "feet"),
  23287. weight: math.unit(120, "lb"),
  23288. name: "Front",
  23289. image: {
  23290. source: "./media/characters/luci/front.svg",
  23291. extra: 1985 / 1884,
  23292. bottom: 0.04
  23293. }
  23294. },
  23295. back: {
  23296. height: math.unit(5 + 4 / 12, "feet"),
  23297. weight: math.unit(120, "lb"),
  23298. name: "Back",
  23299. image: {
  23300. source: "./media/characters/luci/back.svg",
  23301. extra: 1892 / 1791,
  23302. bottom: 0.002
  23303. }
  23304. },
  23305. },
  23306. [
  23307. {
  23308. name: "Normal",
  23309. height: math.unit(5 + 4 / 12, "feet"),
  23310. default: true
  23311. },
  23312. ]
  23313. ))
  23314. characterMakers.push(() => makeCharacter(
  23315. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23316. {
  23317. front: {
  23318. height: math.unit(1500, "feet"),
  23319. weight: math.unit(3.8e6, "tons"),
  23320. name: "Front",
  23321. image: {
  23322. source: "./media/characters/2th/front.svg",
  23323. extra: 3489 / 3350,
  23324. bottom: 0.1
  23325. }
  23326. },
  23327. foot: {
  23328. height: math.unit(461, "feet"),
  23329. name: "Foot",
  23330. image: {
  23331. source: "./media/characters/2th/foot.svg"
  23332. }
  23333. },
  23334. },
  23335. [
  23336. {
  23337. name: "\"Micro\"",
  23338. height: math.unit(15 + 7 / 12, "feet")
  23339. },
  23340. {
  23341. name: "Normal",
  23342. height: math.unit(1500, "feet"),
  23343. default: true
  23344. },
  23345. {
  23346. name: "Macro",
  23347. height: math.unit(5000, "feet")
  23348. },
  23349. {
  23350. name: "Megamacro",
  23351. height: math.unit(15, "miles")
  23352. },
  23353. {
  23354. name: "Gigamacro",
  23355. height: math.unit(4000, "miles")
  23356. },
  23357. {
  23358. name: "Galactic",
  23359. height: math.unit(50, "AU")
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(5 + 6 / 12, "feet"),
  23368. weight: math.unit(220, "lb"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/amethyst/front.svg",
  23372. extra: 2078 / 2040,
  23373. bottom: 0.045
  23374. }
  23375. },
  23376. back: {
  23377. height: math.unit(5 + 6 / 12, "feet"),
  23378. weight: math.unit(220, "lb"),
  23379. name: "Back",
  23380. image: {
  23381. source: "./media/characters/amethyst/back.svg",
  23382. extra: 2021 / 1989,
  23383. bottom: 0.02
  23384. }
  23385. },
  23386. },
  23387. [
  23388. {
  23389. name: "Normal",
  23390. height: math.unit(5 + 6 / 12, "feet"),
  23391. default: true
  23392. },
  23393. ]
  23394. ))
  23395. characterMakers.push(() => makeCharacter(
  23396. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23397. {
  23398. front: {
  23399. height: math.unit(4 + 11 / 12, "feet"),
  23400. weight: math.unit(120, "lb"),
  23401. name: "Front",
  23402. image: {
  23403. source: "./media/characters/yumi-akiyama/front.svg",
  23404. extra: 1327 / 1235,
  23405. bottom: 0.02
  23406. }
  23407. },
  23408. back: {
  23409. height: math.unit(4 + 11 / 12, "feet"),
  23410. weight: math.unit(120, "lb"),
  23411. name: "Back",
  23412. image: {
  23413. source: "./media/characters/yumi-akiyama/back.svg",
  23414. extra: 1287 / 1245,
  23415. bottom: 0.002
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "Galactic",
  23422. height: math.unit(50, "galaxies"),
  23423. default: true
  23424. },
  23425. {
  23426. name: "Universal",
  23427. height: math.unit(100, "universes")
  23428. },
  23429. ]
  23430. ))
  23431. characterMakers.push(() => makeCharacter(
  23432. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23433. {
  23434. front: {
  23435. height: math.unit(8, "feet"),
  23436. weight: math.unit(500, "lb"),
  23437. name: "Front",
  23438. image: {
  23439. source: "./media/characters/rifter-yrmori/front.svg",
  23440. extra: 1180 / 1125,
  23441. bottom: 0.02
  23442. }
  23443. },
  23444. back: {
  23445. height: math.unit(8, "feet"),
  23446. weight: math.unit(500, "lb"),
  23447. name: "Back",
  23448. image: {
  23449. source: "./media/characters/rifter-yrmori/back.svg",
  23450. extra: 1190 / 1145,
  23451. bottom: 0.001
  23452. }
  23453. },
  23454. wings: {
  23455. height: math.unit(7.75, "feet"),
  23456. weight: math.unit(500, "lb"),
  23457. name: "Wings",
  23458. image: {
  23459. source: "./media/characters/rifter-yrmori/wings.svg",
  23460. extra: 1357 / 1285
  23461. }
  23462. },
  23463. maw: {
  23464. height: math.unit(0.8, "feet"),
  23465. name: "Maw",
  23466. image: {
  23467. source: "./media/characters/rifter-yrmori/maw.svg"
  23468. }
  23469. },
  23470. mawfront: {
  23471. height: math.unit(1.45, "feet"),
  23472. name: "Maw (Front)",
  23473. image: {
  23474. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23475. }
  23476. },
  23477. },
  23478. [
  23479. {
  23480. name: "Normal",
  23481. height: math.unit(8, "feet"),
  23482. default: true
  23483. },
  23484. {
  23485. name: "Macro",
  23486. height: math.unit(42, "meters")
  23487. },
  23488. ]
  23489. ))
  23490. characterMakers.push(() => makeCharacter(
  23491. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23492. {
  23493. were: {
  23494. height: math.unit(25 + 6 / 12, "feet"),
  23495. weight: math.unit(10000, "lb"),
  23496. name: "Were",
  23497. image: {
  23498. source: "./media/characters/tahajin/were.svg",
  23499. extra: 801 / 770,
  23500. bottom: 0.042
  23501. }
  23502. },
  23503. aquatic: {
  23504. height: math.unit(6 + 4 / 12, "feet"),
  23505. weight: math.unit(160, "lb"),
  23506. name: "Aquatic",
  23507. image: {
  23508. source: "./media/characters/tahajin/aquatic.svg",
  23509. extra: 572 / 542,
  23510. bottom: 0.04
  23511. }
  23512. },
  23513. chow: {
  23514. height: math.unit(8 + 11 / 12, "feet"),
  23515. weight: math.unit(450, "lb"),
  23516. name: "Chow",
  23517. image: {
  23518. source: "./media/characters/tahajin/chow.svg",
  23519. extra: 660 / 640,
  23520. bottom: 0.015
  23521. }
  23522. },
  23523. demiNaga: {
  23524. height: math.unit(6 + 8 / 12, "feet"),
  23525. weight: math.unit(300, "lb"),
  23526. name: "Demi Naga",
  23527. image: {
  23528. source: "./media/characters/tahajin/demi-naga.svg",
  23529. extra: 643 / 615,
  23530. bottom: 0.1
  23531. }
  23532. },
  23533. data: {
  23534. height: math.unit(5, "inches"),
  23535. weight: math.unit(0.1, "lb"),
  23536. name: "Data",
  23537. image: {
  23538. source: "./media/characters/tahajin/data.svg"
  23539. }
  23540. },
  23541. fluu: {
  23542. height: math.unit(5 + 7 / 12, "feet"),
  23543. weight: math.unit(140, "lb"),
  23544. name: "Fluu",
  23545. image: {
  23546. source: "./media/characters/tahajin/fluu.svg",
  23547. extra: 628 / 592,
  23548. bottom: 0.02
  23549. }
  23550. },
  23551. starWarrior: {
  23552. height: math.unit(4 + 5 / 12, "feet"),
  23553. weight: math.unit(50, "lb"),
  23554. name: "Star Warrior",
  23555. image: {
  23556. source: "./media/characters/tahajin/star-warrior.svg"
  23557. }
  23558. },
  23559. },
  23560. [
  23561. {
  23562. name: "Normal",
  23563. height: math.unit(25 + 6 / 12, "feet"),
  23564. default: true
  23565. },
  23566. ]
  23567. ))
  23568. characterMakers.push(() => makeCharacter(
  23569. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23570. {
  23571. front: {
  23572. height: math.unit(8, "feet"),
  23573. weight: math.unit(350, "lb"),
  23574. name: "Front",
  23575. image: {
  23576. source: "./media/characters/gabira/front.svg",
  23577. extra: 1261/1154,
  23578. bottom: 51/1312
  23579. }
  23580. },
  23581. back: {
  23582. height: math.unit(8, "feet"),
  23583. weight: math.unit(350, "lb"),
  23584. name: "Back",
  23585. image: {
  23586. source: "./media/characters/gabira/back.svg",
  23587. extra: 1265/1163,
  23588. bottom: 46/1311
  23589. }
  23590. },
  23591. head: {
  23592. height: math.unit(2.85, "feet"),
  23593. name: "Head",
  23594. image: {
  23595. source: "./media/characters/gabira/head.svg"
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Normal",
  23602. height: math.unit(8, "feet"),
  23603. default: true
  23604. },
  23605. ]
  23606. ))
  23607. characterMakers.push(() => makeCharacter(
  23608. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23609. {
  23610. front: {
  23611. height: math.unit(5 + 3 / 12, "feet"),
  23612. weight: math.unit(137, "lb"),
  23613. name: "Front",
  23614. image: {
  23615. source: "./media/characters/sasha-katraine/front.svg",
  23616. extra: 1745/1694,
  23617. bottom: 37/1782
  23618. }
  23619. },
  23620. back: {
  23621. height: math.unit(5 + 3 / 12, "feet"),
  23622. weight: math.unit(137, "lb"),
  23623. name: "Back",
  23624. image: {
  23625. source: "./media/characters/sasha-katraine/back.svg",
  23626. extra: 1776/1699,
  23627. bottom: 26/1802
  23628. }
  23629. },
  23630. },
  23631. [
  23632. {
  23633. name: "Micro",
  23634. height: math.unit(5, "inches")
  23635. },
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(5 + 3 / 12, "feet"),
  23639. default: true
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23645. {
  23646. side: {
  23647. height: math.unit(4, "inches"),
  23648. weight: math.unit(200, "grams"),
  23649. name: "Side",
  23650. image: {
  23651. source: "./media/characters/der/side.svg",
  23652. extra: 719 / 400,
  23653. bottom: 30.6 / 749.9187
  23654. }
  23655. },
  23656. },
  23657. [
  23658. {
  23659. name: "Micro",
  23660. height: math.unit(4, "inches"),
  23661. default: true
  23662. },
  23663. ]
  23664. ))
  23665. characterMakers.push(() => makeCharacter(
  23666. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23667. {
  23668. side: {
  23669. height: math.unit(30, "meters"),
  23670. weight: math.unit(700, "tonnes"),
  23671. name: "Side",
  23672. image: {
  23673. source: "./media/characters/fixerdragon/side.svg",
  23674. extra: (1293.0514 - 116.03) / 1106.86,
  23675. bottom: 116.03 / 1293.0514
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Planck",
  23682. height: math.unit(1.6e-35, "meters")
  23683. },
  23684. {
  23685. name: "Micro",
  23686. height: math.unit(0.4, "meters")
  23687. },
  23688. {
  23689. name: "Normal",
  23690. height: math.unit(30, "meters"),
  23691. default: true
  23692. },
  23693. {
  23694. name: "Megamacro",
  23695. height: math.unit(1.2, "megameters")
  23696. },
  23697. {
  23698. name: "Teramacro",
  23699. height: math.unit(130, "terameters")
  23700. },
  23701. {
  23702. name: "Yottamacro",
  23703. height: math.unit(6200, "yottameters")
  23704. },
  23705. ]
  23706. ));
  23707. characterMakers.push(() => makeCharacter(
  23708. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23709. {
  23710. front: {
  23711. height: math.unit(8, "feet"),
  23712. weight: math.unit(250, "lb"),
  23713. name: "Front",
  23714. image: {
  23715. source: "./media/characters/kite/front.svg",
  23716. extra: 2796 / 2659,
  23717. bottom: 0.002
  23718. }
  23719. },
  23720. },
  23721. [
  23722. {
  23723. name: "Normal",
  23724. height: math.unit(8, "feet"),
  23725. default: true
  23726. },
  23727. {
  23728. name: "Macro",
  23729. height: math.unit(360, "feet")
  23730. },
  23731. {
  23732. name: "Megamacro",
  23733. height: math.unit(1500, "feet")
  23734. },
  23735. ]
  23736. ))
  23737. characterMakers.push(() => makeCharacter(
  23738. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23739. {
  23740. anthro_front: {
  23741. height: math.unit(5 + 11/12, "feet"),
  23742. weight: math.unit(170, "lb"),
  23743. name: "Front",
  23744. image: {
  23745. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23746. extra: 1735/1585,
  23747. bottom: 96/1831
  23748. },
  23749. form: "anthro",
  23750. default: true
  23751. },
  23752. anthro_back: {
  23753. height: math.unit(5 + 11/12, "feet"),
  23754. weight: math.unit(170, "lb"),
  23755. name: "Back",
  23756. image: {
  23757. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23758. extra: 1749/1607,
  23759. bottom: 28/1777
  23760. },
  23761. form: "anthro"
  23762. },
  23763. anthro_male: {
  23764. height: math.unit(5 + 11/12, "feet"),
  23765. weight: math.unit(170, "lb"),
  23766. name: "Male",
  23767. image: {
  23768. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23769. extra: 1855/1713,
  23770. bottom: 63/1918
  23771. },
  23772. form: "anthro"
  23773. },
  23774. taur_front: {
  23775. height: math.unit(5 + 7/12, "feet"),
  23776. weight: math.unit(170, "lb"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23780. extra: 1151/1059,
  23781. bottom: 356/1507
  23782. },
  23783. form: "taur",
  23784. default: true
  23785. },
  23786. anthro_frontDressed: {
  23787. height: math.unit(5 + 11/12, "feet"),
  23788. weight: math.unit(170, "lb"),
  23789. name: "Front (Dressed)",
  23790. image: {
  23791. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23792. extra: 1735/1585,
  23793. bottom: 96/1831
  23794. },
  23795. form: "anthro"
  23796. },
  23797. anthro_backDressed: {
  23798. height: math.unit(5 + 11/12, "feet"),
  23799. weight: math.unit(170, "lb"),
  23800. name: "Back (Dressed)",
  23801. image: {
  23802. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23803. extra: 1749/1607,
  23804. bottom: 28/1777
  23805. },
  23806. form: "anthro"
  23807. },
  23808. anthro_maleDressed: {
  23809. height: math.unit(5 + 11/12, "feet"),
  23810. weight: math.unit(170, "lb"),
  23811. name: "Male (Dressed)",
  23812. image: {
  23813. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23814. extra: 1855/1713,
  23815. bottom: 63/1918
  23816. },
  23817. form: "anthro"
  23818. },
  23819. taur_frontDressed: {
  23820. height: math.unit(5 + 7/12, "feet"),
  23821. weight: math.unit(170, "lb"),
  23822. name: "Front (Dressed)",
  23823. image: {
  23824. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23825. extra: 1151/1059,
  23826. bottom: 356/1507
  23827. },
  23828. form: "taur"
  23829. },
  23830. maw: {
  23831. height: math.unit(1.46, "feet"),
  23832. name: "Maw",
  23833. image: {
  23834. source: "./media/characters/poojawa-vynar/maw.svg"
  23835. },
  23836. allForms: true
  23837. },
  23838. head: {
  23839. height: math.unit(2.34, "feet"),
  23840. name: "Head",
  23841. image: {
  23842. source: "./media/characters/poojawa-vynar/head.svg"
  23843. },
  23844. allForms: true
  23845. },
  23846. leftPaw: {
  23847. height: math.unit(1.72, "feet"),
  23848. name: "Left Paw",
  23849. image: {
  23850. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23851. },
  23852. allForms: true
  23853. },
  23854. rightPaw: {
  23855. height: math.unit(1.61, "feet"),
  23856. name: "Right Paw",
  23857. image: {
  23858. source: "./media/characters/poojawa-vynar/paw-right.svg"
  23859. },
  23860. allForms: true
  23861. },
  23862. toering: {
  23863. height: math.unit(2.9, "inches"),
  23864. name: "Toering",
  23865. image: {
  23866. source: "./media/characters/poojawa-vynar/toering.svg"
  23867. },
  23868. allForms: true
  23869. },
  23870. shaft: {
  23871. height: math.unit(0.625, "feet"),
  23872. name: "Shaft",
  23873. image: {
  23874. source: "./media/characters/poojawa-vynar/shaft.svg"
  23875. },
  23876. allForms: true
  23877. },
  23878. spade: {
  23879. height: math.unit(0.42, "feet"),
  23880. name: "Spade",
  23881. image: {
  23882. source: "./media/characters/poojawa-vynar/spade.svg"
  23883. },
  23884. allForms: true
  23885. },
  23886. },
  23887. [
  23888. {
  23889. name: "Shortstack",
  23890. height: math.unit(4, "feet"),
  23891. form: "anthro"
  23892. },
  23893. {
  23894. name: "Normal",
  23895. height: math.unit(5 + 11 / 12, "feet"),
  23896. form: "anthro",
  23897. default: true
  23898. },
  23899. {
  23900. name: "Tauric",
  23901. height: math.unit(4, "meters"),
  23902. form: "taur",
  23903. default: true
  23904. },
  23905. ],
  23906. {
  23907. "anthro": {
  23908. name: "Anthro",
  23909. default: true
  23910. },
  23911. "taur": {
  23912. name: "Taur",
  23913. },
  23914. }
  23915. ))
  23916. characterMakers.push(() => makeCharacter(
  23917. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23918. {
  23919. front: {
  23920. height: math.unit(293, "meters"),
  23921. weight: math.unit(70400, "tons"),
  23922. name: "Front",
  23923. image: {
  23924. source: "./media/characters/violette/front.svg",
  23925. extra: 1227 / 1180,
  23926. bottom: 0.005
  23927. }
  23928. },
  23929. back: {
  23930. height: math.unit(293, "meters"),
  23931. weight: math.unit(70400, "tons"),
  23932. name: "Back",
  23933. image: {
  23934. source: "./media/characters/violette/back.svg",
  23935. extra: 1227 / 1180,
  23936. bottom: 0.005
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Macro",
  23943. height: math.unit(293, "meters"),
  23944. default: true
  23945. },
  23946. ]
  23947. ))
  23948. characterMakers.push(() => makeCharacter(
  23949. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23950. {
  23951. front: {
  23952. height: math.unit(1050, "feet"),
  23953. weight: math.unit(200000, "tons"),
  23954. name: "Front",
  23955. image: {
  23956. source: "./media/characters/alessandra/front.svg",
  23957. extra: 960 / 912,
  23958. bottom: 0.06
  23959. }
  23960. },
  23961. },
  23962. [
  23963. {
  23964. name: "Macro",
  23965. height: math.unit(1050, "feet")
  23966. },
  23967. {
  23968. name: "Macro+",
  23969. height: math.unit(900, "meters"),
  23970. default: true
  23971. },
  23972. ]
  23973. ))
  23974. characterMakers.push(() => makeCharacter(
  23975. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23976. {
  23977. front: {
  23978. height: math.unit(5, "feet"),
  23979. weight: math.unit(187, "lb"),
  23980. name: "Front",
  23981. image: {
  23982. source: "./media/characters/person/front.svg",
  23983. extra: 3087 / 2945,
  23984. bottom: 91 / 3181
  23985. }
  23986. },
  23987. },
  23988. [
  23989. {
  23990. name: "Micro",
  23991. height: math.unit(3, "inches")
  23992. },
  23993. {
  23994. name: "Normal",
  23995. height: math.unit(5, "feet"),
  23996. default: true
  23997. },
  23998. {
  23999. name: "Macro",
  24000. height: math.unit(90, "feet")
  24001. },
  24002. {
  24003. name: "Max Size",
  24004. height: math.unit(280, "feet")
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24010. {
  24011. front: {
  24012. height: math.unit(4.5, "meters"),
  24013. weight: math.unit(3200, "lb"),
  24014. name: "Front",
  24015. image: {
  24016. source: "./media/characters/ty/front.svg",
  24017. extra: 1038 / 960,
  24018. bottom: 31.156 / 1068
  24019. }
  24020. },
  24021. back: {
  24022. height: math.unit(4.5, "meters"),
  24023. weight: math.unit(3200, "lb"),
  24024. name: "Back",
  24025. image: {
  24026. source: "./media/characters/ty/back.svg",
  24027. extra: 1044 / 966,
  24028. bottom: 7.48 / 1049
  24029. }
  24030. },
  24031. },
  24032. [
  24033. {
  24034. name: "Normal",
  24035. height: math.unit(4.5, "meters"),
  24036. default: true
  24037. },
  24038. ]
  24039. ))
  24040. characterMakers.push(() => makeCharacter(
  24041. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24042. {
  24043. front: {
  24044. height: math.unit(5 + 4 / 12, "feet"),
  24045. weight: math.unit(115, "lb"),
  24046. name: "Front",
  24047. image: {
  24048. source: "./media/characters/rocky/front.svg",
  24049. extra: 1012 / 975,
  24050. bottom: 54 / 1066
  24051. }
  24052. },
  24053. },
  24054. [
  24055. {
  24056. name: "Normal",
  24057. height: math.unit(5 + 4 / 12, "feet"),
  24058. default: true
  24059. },
  24060. ]
  24061. ))
  24062. characterMakers.push(() => makeCharacter(
  24063. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24064. {
  24065. upright: {
  24066. height: math.unit(6, "meters"),
  24067. weight: math.unit(4000, "kg"),
  24068. name: "Upright",
  24069. image: {
  24070. source: "./media/characters/ruin/upright.svg",
  24071. extra: 668 / 661,
  24072. bottom: 42 / 799.8396
  24073. }
  24074. },
  24075. },
  24076. [
  24077. {
  24078. name: "Normal",
  24079. height: math.unit(6, "meters"),
  24080. default: true
  24081. },
  24082. ]
  24083. ))
  24084. characterMakers.push(() => makeCharacter(
  24085. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24086. {
  24087. front: {
  24088. height: math.unit(5, "feet"),
  24089. weight: math.unit(106, "lb"),
  24090. name: "Front",
  24091. image: {
  24092. source: "./media/characters/robin/front.svg",
  24093. extra: 862 / 799,
  24094. bottom: 42.4 / 914.8856
  24095. }
  24096. },
  24097. },
  24098. [
  24099. {
  24100. name: "Normal",
  24101. height: math.unit(5, "feet"),
  24102. default: true
  24103. },
  24104. ]
  24105. ))
  24106. characterMakers.push(() => makeCharacter(
  24107. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24108. {
  24109. side: {
  24110. height: math.unit(3, "feet"),
  24111. weight: math.unit(225, "lb"),
  24112. name: "Side",
  24113. image: {
  24114. source: "./media/characters/saian/side.svg",
  24115. extra: 566 / 356,
  24116. bottom: 79.7 / 643
  24117. }
  24118. },
  24119. maw: {
  24120. height: math.unit(2.85, "feet"),
  24121. name: "Maw",
  24122. image: {
  24123. source: "./media/characters/saian/maw.svg"
  24124. }
  24125. },
  24126. },
  24127. [
  24128. {
  24129. name: "Normal",
  24130. height: math.unit(3, "feet"),
  24131. default: true
  24132. },
  24133. ]
  24134. ))
  24135. characterMakers.push(() => makeCharacter(
  24136. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24137. {
  24138. side: {
  24139. height: math.unit(8, "feet"),
  24140. weight: math.unit(300, "lb"),
  24141. name: "Side",
  24142. image: {
  24143. source: "./media/characters/equus-silvermane/side.svg",
  24144. extra: 2176 / 2050,
  24145. bottom: 65.7 / 2245
  24146. }
  24147. },
  24148. front: {
  24149. height: math.unit(8, "feet"),
  24150. weight: math.unit(300, "lb"),
  24151. name: "Front",
  24152. image: {
  24153. source: "./media/characters/equus-silvermane/front.svg",
  24154. extra: 4633 / 4400,
  24155. bottom: 71.3 / 4706.915
  24156. }
  24157. },
  24158. sideStepping: {
  24159. height: math.unit(8, "feet"),
  24160. weight: math.unit(300, "lb"),
  24161. name: "Side (Stepping)",
  24162. image: {
  24163. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24164. extra: 1968 / 1860,
  24165. bottom: 16.4 / 1989
  24166. }
  24167. },
  24168. },
  24169. [
  24170. {
  24171. name: "Normal",
  24172. height: math.unit(8, "feet")
  24173. },
  24174. {
  24175. name: "Minimacro",
  24176. height: math.unit(75, "feet"),
  24177. default: true
  24178. },
  24179. {
  24180. name: "Macro",
  24181. height: math.unit(150, "feet")
  24182. },
  24183. {
  24184. name: "Macro+",
  24185. height: math.unit(1000, "feet")
  24186. },
  24187. {
  24188. name: "Megamacro",
  24189. height: math.unit(1, "mile")
  24190. },
  24191. ]
  24192. ))
  24193. characterMakers.push(() => makeCharacter(
  24194. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24195. {
  24196. side: {
  24197. height: math.unit(20, "feet"),
  24198. weight: math.unit(30000, "kg"),
  24199. name: "Side",
  24200. image: {
  24201. source: "./media/characters/windar/side.svg",
  24202. extra: 1491 / 1248,
  24203. bottom: 82.56 / 1568
  24204. }
  24205. },
  24206. },
  24207. [
  24208. {
  24209. name: "Normal",
  24210. height: math.unit(20, "feet"),
  24211. default: true
  24212. },
  24213. ]
  24214. ))
  24215. characterMakers.push(() => makeCharacter(
  24216. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24217. {
  24218. side: {
  24219. height: math.unit(15.66, "feet"),
  24220. weight: math.unit(150, "lb"),
  24221. name: "Side",
  24222. image: {
  24223. source: "./media/characters/melody/side.svg",
  24224. extra: 1097 / 944,
  24225. bottom: 11.8 / 1109
  24226. }
  24227. },
  24228. sideOutfit: {
  24229. height: math.unit(15.66, "feet"),
  24230. weight: math.unit(150, "lb"),
  24231. name: "Side (Outfit)",
  24232. image: {
  24233. source: "./media/characters/melody/side-outfit.svg",
  24234. extra: 1097 / 944,
  24235. bottom: 11.8 / 1109
  24236. }
  24237. },
  24238. },
  24239. [
  24240. {
  24241. name: "Normal",
  24242. height: math.unit(15.66, "feet"),
  24243. default: true
  24244. },
  24245. ]
  24246. ))
  24247. characterMakers.push(() => makeCharacter(
  24248. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24249. {
  24250. armoredFront: {
  24251. height: math.unit(8, "feet"),
  24252. weight: math.unit(325, "lb"),
  24253. name: "Front",
  24254. image: {
  24255. source: "./media/characters/windera/armored-front.svg",
  24256. extra: 1830/1598,
  24257. bottom: 151/1981
  24258. },
  24259. form: "armored",
  24260. default: true
  24261. },
  24262. macroFront: {
  24263. height: math.unit(70, "feet"),
  24264. weight: math.unit(315453, "lb"),
  24265. name: "Front",
  24266. image: {
  24267. source: "./media/characters/windera/macro-front.svg",
  24268. extra: 963/883,
  24269. bottom: 23/986
  24270. },
  24271. form: "macro",
  24272. default: true
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Normal",
  24278. height: math.unit(8, "feet"),
  24279. default: true,
  24280. form: "armored"
  24281. },
  24282. {
  24283. name: "Normal",
  24284. height: math.unit(70, "feet"),
  24285. default: true,
  24286. form: "macro"
  24287. },
  24288. ],
  24289. {
  24290. "armored": {
  24291. name: "Armored",
  24292. default: true
  24293. },
  24294. "macro": {
  24295. name: "Macro",
  24296. },
  24297. }
  24298. ))
  24299. characterMakers.push(() => makeCharacter(
  24300. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24301. {
  24302. front: {
  24303. height: math.unit(28.75, "feet"),
  24304. weight: math.unit(2000, "kg"),
  24305. name: "Front",
  24306. image: {
  24307. source: "./media/characters/sonear/front.svg",
  24308. extra: 1041.1 / 964.9,
  24309. bottom: 53.7 / 1096.6
  24310. }
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(28.75, "feet"),
  24317. default: true
  24318. },
  24319. ]
  24320. ))
  24321. characterMakers.push(() => makeCharacter(
  24322. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24323. {
  24324. side: {
  24325. height: math.unit(25.5, "feet"),
  24326. weight: math.unit(23000, "kg"),
  24327. name: "Side",
  24328. image: {
  24329. source: "./media/characters/kanara/side.svg"
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Normal",
  24336. height: math.unit(25.5, "feet"),
  24337. default: true
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24343. {
  24344. side: {
  24345. height: math.unit(10, "feet"),
  24346. weight: math.unit(1000, "kg"),
  24347. name: "Side",
  24348. image: {
  24349. source: "./media/characters/ereus/side.svg",
  24350. extra: 1157 / 959,
  24351. bottom: 153 / 1312.5
  24352. }
  24353. },
  24354. },
  24355. [
  24356. {
  24357. name: "Normal",
  24358. height: math.unit(10, "feet"),
  24359. default: true
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24365. {
  24366. side: {
  24367. height: math.unit(4.5, "feet"),
  24368. weight: math.unit(500, "lb"),
  24369. name: "Side",
  24370. image: {
  24371. source: "./media/characters/e-ter/side.svg",
  24372. extra: 1550 / 1248,
  24373. bottom: 146 / 1694
  24374. }
  24375. },
  24376. },
  24377. [
  24378. {
  24379. name: "Normal",
  24380. height: math.unit(4.5, "feet"),
  24381. default: true
  24382. },
  24383. ]
  24384. ))
  24385. characterMakers.push(() => makeCharacter(
  24386. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24387. {
  24388. side: {
  24389. height: math.unit(9.7, "feet"),
  24390. weight: math.unit(4000, "kg"),
  24391. name: "Side",
  24392. image: {
  24393. source: "./media/characters/yamie/side.svg"
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Normal",
  24400. height: math.unit(9.7, "feet"),
  24401. default: true
  24402. },
  24403. ]
  24404. ))
  24405. characterMakers.push(() => makeCharacter(
  24406. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24407. {
  24408. front: {
  24409. height: math.unit(50, "feet"),
  24410. weight: math.unit(50000, "kg"),
  24411. name: "Front",
  24412. image: {
  24413. source: "./media/characters/anders/front.svg",
  24414. extra: 570 / 539,
  24415. bottom: 14.7 / 586.7
  24416. }
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Large",
  24422. height: math.unit(50, "feet")
  24423. },
  24424. {
  24425. name: "Macro",
  24426. height: math.unit(2000, "feet"),
  24427. default: true
  24428. },
  24429. {
  24430. name: "Megamacro",
  24431. height: math.unit(12, "miles")
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(7 + 2 / 12, "feet"),
  24440. weight: math.unit(300, "lb"),
  24441. name: "Front",
  24442. image: {
  24443. source: "./media/characters/reban/front.svg",
  24444. extra: 1287/1212,
  24445. bottom: 148/1435
  24446. }
  24447. },
  24448. head: {
  24449. height: math.unit(1.95, "feet"),
  24450. name: "Head",
  24451. image: {
  24452. source: "./media/characters/reban/head.svg"
  24453. }
  24454. },
  24455. maw: {
  24456. height: math.unit(0.95, "feet"),
  24457. name: "Maw",
  24458. image: {
  24459. source: "./media/characters/reban/maw.svg"
  24460. }
  24461. },
  24462. foot: {
  24463. height: math.unit(1.65, "feet"),
  24464. name: "Foot",
  24465. image: {
  24466. source: "./media/characters/reban/foot.svg"
  24467. }
  24468. },
  24469. dick: {
  24470. height: math.unit(7 / 5, "feet"),
  24471. name: "Dick",
  24472. image: {
  24473. source: "./media/characters/reban/dick.svg"
  24474. }
  24475. },
  24476. },
  24477. [
  24478. {
  24479. name: "Natural Height",
  24480. height: math.unit(7 + 2 / 12, "feet")
  24481. },
  24482. {
  24483. name: "Macro",
  24484. height: math.unit(500, "feet"),
  24485. default: true
  24486. },
  24487. {
  24488. name: "Canon Height",
  24489. height: math.unit(50, "AU")
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24495. {
  24496. front: {
  24497. height: math.unit(6, "feet"),
  24498. weight: math.unit(150, "lb"),
  24499. name: "Front",
  24500. image: {
  24501. source: "./media/characters/terrance-keayes/front.svg",
  24502. extra: 1.005,
  24503. bottom: 151 / 1615
  24504. }
  24505. },
  24506. side: {
  24507. height: math.unit(6, "feet"),
  24508. weight: math.unit(150, "lb"),
  24509. name: "Side",
  24510. image: {
  24511. source: "./media/characters/terrance-keayes/side.svg",
  24512. extra: 1.005,
  24513. bottom: 129.4 / 1544
  24514. }
  24515. },
  24516. back: {
  24517. height: math.unit(6, "feet"),
  24518. weight: math.unit(150, "lb"),
  24519. name: "Back",
  24520. image: {
  24521. source: "./media/characters/terrance-keayes/back.svg",
  24522. extra: 1.005,
  24523. bottom: 58.4 / 1557.3
  24524. }
  24525. },
  24526. dick: {
  24527. height: math.unit(6 * 0.208, "feet"),
  24528. name: "Dick",
  24529. image: {
  24530. source: "./media/characters/terrance-keayes/dick.svg"
  24531. }
  24532. },
  24533. },
  24534. [
  24535. {
  24536. name: "Canon Height",
  24537. height: math.unit(35, "miles"),
  24538. default: true
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24544. {
  24545. front: {
  24546. height: math.unit(6, "feet"),
  24547. weight: math.unit(150, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/ofelia/front.svg",
  24551. extra: 1130/1117,
  24552. bottom: 91/1221
  24553. }
  24554. },
  24555. back: {
  24556. height: math.unit(6, "feet"),
  24557. weight: math.unit(150, "lb"),
  24558. name: "Back",
  24559. image: {
  24560. source: "./media/characters/ofelia/back.svg",
  24561. extra: 1172/1159,
  24562. bottom: 28/1200
  24563. }
  24564. },
  24565. maw: {
  24566. height: math.unit(1, "feet"),
  24567. name: "Maw",
  24568. image: {
  24569. source: "./media/characters/ofelia/maw.svg"
  24570. }
  24571. },
  24572. foot: {
  24573. height: math.unit(1.949, "feet"),
  24574. name: "Foot",
  24575. image: {
  24576. source: "./media/characters/ofelia/foot.svg"
  24577. }
  24578. },
  24579. },
  24580. [
  24581. {
  24582. name: "Canon Height",
  24583. height: math.unit(2000, "miles"),
  24584. default: true
  24585. },
  24586. ]
  24587. ))
  24588. characterMakers.push(() => makeCharacter(
  24589. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24590. {
  24591. front: {
  24592. height: math.unit(6, "feet"),
  24593. weight: math.unit(150, "lb"),
  24594. name: "Front",
  24595. image: {
  24596. source: "./media/characters/samuel/front.svg",
  24597. extra: 265 / 258,
  24598. bottom: 2 / 266.1566
  24599. }
  24600. },
  24601. },
  24602. [
  24603. {
  24604. name: "Macro",
  24605. height: math.unit(100, "feet"),
  24606. default: true
  24607. },
  24608. {
  24609. name: "Full Size",
  24610. height: math.unit(1000, "miles")
  24611. },
  24612. ]
  24613. ))
  24614. characterMakers.push(() => makeCharacter(
  24615. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24616. {
  24617. front: {
  24618. height: math.unit(6, "feet"),
  24619. weight: math.unit(300, "lb"),
  24620. name: "Front",
  24621. image: {
  24622. source: "./media/characters/beishir-kiel/front.svg",
  24623. extra: 569 / 547,
  24624. bottom: 41.9 / 609
  24625. }
  24626. },
  24627. maw: {
  24628. height: math.unit(6 * 0.202, "feet"),
  24629. name: "Maw",
  24630. image: {
  24631. source: "./media/characters/beishir-kiel/maw.svg"
  24632. }
  24633. },
  24634. },
  24635. [
  24636. {
  24637. name: "Macro",
  24638. height: math.unit(300, "feet"),
  24639. default: true
  24640. },
  24641. ]
  24642. ))
  24643. characterMakers.push(() => makeCharacter(
  24644. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24645. {
  24646. front: {
  24647. height: math.unit(5 + 7/12, "feet"),
  24648. weight: math.unit(120, "lb"),
  24649. name: "Front",
  24650. image: {
  24651. source: "./media/characters/logan-grey/front.svg",
  24652. extra: 1836/1738,
  24653. bottom: 108/1944
  24654. }
  24655. },
  24656. back: {
  24657. height: math.unit(5 + 7/12, "feet"),
  24658. weight: math.unit(120, "lb"),
  24659. name: "Back",
  24660. image: {
  24661. source: "./media/characters/logan-grey/back.svg",
  24662. extra: 1880/1794,
  24663. bottom: 24/1904
  24664. }
  24665. },
  24666. frontSfw: {
  24667. height: math.unit(5 + 7/12, "feet"),
  24668. weight: math.unit(120, "lb"),
  24669. name: "Front (SFW)",
  24670. image: {
  24671. source: "./media/characters/logan-grey/front-sfw.svg",
  24672. extra: 1836/1738,
  24673. bottom: 108/1944
  24674. }
  24675. },
  24676. backSfw: {
  24677. height: math.unit(5 + 7/12, "feet"),
  24678. weight: math.unit(120, "lb"),
  24679. name: "Back (SFW)",
  24680. image: {
  24681. source: "./media/characters/logan-grey/back-sfw.svg",
  24682. extra: 1880/1794,
  24683. bottom: 24/1904
  24684. }
  24685. },
  24686. hands: {
  24687. height: math.unit(0.84, "feet"),
  24688. name: "Hands",
  24689. image: {
  24690. source: "./media/characters/logan-grey/hands.svg"
  24691. }
  24692. },
  24693. paws: {
  24694. height: math.unit(0.72, "feet"),
  24695. name: "Paws",
  24696. image: {
  24697. source: "./media/characters/logan-grey/paws.svg"
  24698. }
  24699. },
  24700. cock: {
  24701. height: math.unit(1.45, "feet"),
  24702. name: "Cock",
  24703. image: {
  24704. source: "./media/characters/logan-grey/cock.svg"
  24705. }
  24706. },
  24707. cockAlt: {
  24708. height: math.unit(1.437, "feet"),
  24709. name: "Cock (alt)",
  24710. image: {
  24711. source: "./media/characters/logan-grey/cock-alt.svg"
  24712. }
  24713. },
  24714. },
  24715. [
  24716. {
  24717. name: "Normal",
  24718. height: math.unit(5 + 8 / 12, "feet")
  24719. },
  24720. {
  24721. name: "The 500 Foot Femboy",
  24722. height: math.unit(500, "feet"),
  24723. default: true
  24724. },
  24725. {
  24726. name: "Megmacro",
  24727. height: math.unit(20, "miles")
  24728. },
  24729. ]
  24730. ))
  24731. characterMakers.push(() => makeCharacter(
  24732. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24733. {
  24734. front: {
  24735. height: math.unit(8 + 2 / 12, "feet"),
  24736. weight: math.unit(275, "lb"),
  24737. name: "Front",
  24738. image: {
  24739. source: "./media/characters/draganta/front.svg",
  24740. extra: 1177 / 1135,
  24741. bottom: 33.46 / 1212.1
  24742. }
  24743. },
  24744. },
  24745. [
  24746. {
  24747. name: "Normal",
  24748. height: math.unit(8 + 6 / 12, "feet"),
  24749. default: true
  24750. },
  24751. {
  24752. name: "Macro",
  24753. height: math.unit(150, "feet")
  24754. },
  24755. {
  24756. name: "Megamacro",
  24757. height: math.unit(1000, "miles")
  24758. },
  24759. ]
  24760. ))
  24761. characterMakers.push(() => makeCharacter(
  24762. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24763. {
  24764. front: {
  24765. height: math.unit(1.72, "m"),
  24766. weight: math.unit(80, "lb"),
  24767. name: "Front",
  24768. image: {
  24769. source: "./media/characters/voski/front.svg",
  24770. extra: 2076.22 / 2022.4,
  24771. bottom: 102.7 / 2177.3866
  24772. }
  24773. },
  24774. frontFlaccid: {
  24775. height: math.unit(1.72, "m"),
  24776. weight: math.unit(80, "lb"),
  24777. name: "Front (Flaccid)",
  24778. image: {
  24779. source: "./media/characters/voski/front-flaccid.svg",
  24780. extra: 2076.22 / 2022.4,
  24781. bottom: 102.7 / 2177.3866
  24782. }
  24783. },
  24784. frontErect: {
  24785. height: math.unit(1.72, "m"),
  24786. weight: math.unit(80, "lb"),
  24787. name: "Front (Erect)",
  24788. image: {
  24789. source: "./media/characters/voski/front-erect.svg",
  24790. extra: 2076.22 / 2022.4,
  24791. bottom: 102.7 / 2177.3866
  24792. }
  24793. },
  24794. back: {
  24795. height: math.unit(1.72, "m"),
  24796. weight: math.unit(80, "lb"),
  24797. name: "Back",
  24798. image: {
  24799. source: "./media/characters/voski/back.svg",
  24800. extra: 2104 / 2051,
  24801. bottom: 10.45 / 2113.63
  24802. }
  24803. },
  24804. },
  24805. [
  24806. {
  24807. name: "Normal",
  24808. height: math.unit(1.72, "m")
  24809. },
  24810. {
  24811. name: "Macro",
  24812. height: math.unit(55, "m"),
  24813. default: true
  24814. },
  24815. {
  24816. name: "Macro+",
  24817. height: math.unit(300, "m")
  24818. },
  24819. {
  24820. name: "Macro++",
  24821. height: math.unit(700, "m")
  24822. },
  24823. {
  24824. name: "Macro+++",
  24825. height: math.unit(4500, "m")
  24826. },
  24827. {
  24828. name: "Macro++++",
  24829. height: math.unit(45, "km")
  24830. },
  24831. {
  24832. name: "Macro+++++",
  24833. height: math.unit(1220, "km")
  24834. },
  24835. ]
  24836. ))
  24837. characterMakers.push(() => makeCharacter(
  24838. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24839. {
  24840. front: {
  24841. height: math.unit(2.3, "m"),
  24842. weight: math.unit(304, "kg"),
  24843. name: "Front",
  24844. image: {
  24845. source: "./media/characters/icowom-lee/front.svg",
  24846. extra: 985 / 955,
  24847. bottom: 25.4 / 1012
  24848. }
  24849. },
  24850. fronttentacles: {
  24851. height: math.unit(2.3, "m"),
  24852. weight: math.unit(304, "kg"),
  24853. name: "Front-tentacles",
  24854. image: {
  24855. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24856. extra: 985 / 955,
  24857. bottom: 25.4 / 1012
  24858. }
  24859. },
  24860. back: {
  24861. height: math.unit(2.3, "m"),
  24862. weight: math.unit(304, "kg"),
  24863. name: "Back",
  24864. image: {
  24865. source: "./media/characters/icowom-lee/back.svg",
  24866. extra: 975 / 954,
  24867. bottom: 9.5 / 985
  24868. }
  24869. },
  24870. backtentacles: {
  24871. height: math.unit(2.3, "m"),
  24872. weight: math.unit(304, "kg"),
  24873. name: "Back-tentacles",
  24874. image: {
  24875. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24876. extra: 975 / 954,
  24877. bottom: 9.5 / 985
  24878. }
  24879. },
  24880. frontDressed: {
  24881. height: math.unit(2.3, "m"),
  24882. weight: math.unit(304, "kg"),
  24883. name: "Front (Dressed)",
  24884. image: {
  24885. source: "./media/characters/icowom-lee/front-dressed.svg",
  24886. extra: 3076 / 2933,
  24887. bottom: 51.4 / 3125.1889
  24888. }
  24889. },
  24890. rump: {
  24891. height: math.unit(0.776, "meters"),
  24892. name: "Rump",
  24893. image: {
  24894. source: "./media/characters/icowom-lee/rump.svg"
  24895. }
  24896. },
  24897. genitals: {
  24898. height: math.unit(0.78, "meters"),
  24899. name: "Genitals",
  24900. image: {
  24901. source: "./media/characters/icowom-lee/genitals.svg"
  24902. }
  24903. },
  24904. },
  24905. [
  24906. {
  24907. name: "Normal",
  24908. height: math.unit(2.3, "meters"),
  24909. default: true
  24910. },
  24911. {
  24912. name: "Macro",
  24913. height: math.unit(94, "meters"),
  24914. default: true
  24915. },
  24916. ]
  24917. ))
  24918. characterMakers.push(() => makeCharacter(
  24919. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24920. {
  24921. front: {
  24922. height: math.unit(22, "meters"),
  24923. weight: math.unit(21000, "kg"),
  24924. name: "Front",
  24925. image: {
  24926. source: "./media/characters/shock-diamond/front.svg",
  24927. extra: 2204 / 2053,
  24928. bottom: 65 / 2239.47
  24929. }
  24930. },
  24931. frontNude: {
  24932. height: math.unit(22, "meters"),
  24933. weight: math.unit(21000, "kg"),
  24934. name: "Front (Nude)",
  24935. image: {
  24936. source: "./media/characters/shock-diamond/front-nude.svg",
  24937. extra: 2514 / 2285,
  24938. bottom: 13 / 2527.56
  24939. }
  24940. },
  24941. },
  24942. [
  24943. {
  24944. name: "Normal",
  24945. height: math.unit(3, "meters")
  24946. },
  24947. {
  24948. name: "Macro",
  24949. height: math.unit(22, "meters"),
  24950. default: true
  24951. },
  24952. ]
  24953. ))
  24954. characterMakers.push(() => makeCharacter(
  24955. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24956. {
  24957. front: {
  24958. height: math.unit(5 + 4/12, "feet"),
  24959. weight: math.unit(125, "lb"),
  24960. name: "Front",
  24961. image: {
  24962. source: "./media/characters/rory/front.svg",
  24963. extra: 1790/1681,
  24964. bottom: 66/1856
  24965. },
  24966. form: "normal",
  24967. default: true
  24968. },
  24969. back: {
  24970. height: math.unit(5 + 4/12, "feet"),
  24971. weight: math.unit(125, "lb"),
  24972. name: "Back",
  24973. image: {
  24974. source: "./media/characters/rory/back.svg",
  24975. extra: 1805/1690,
  24976. bottom: 56/1861
  24977. },
  24978. form: "normal"
  24979. },
  24980. frontDressed: {
  24981. height: math.unit(5 + 4/12, "feet"),
  24982. weight: math.unit(125, "lb"),
  24983. name: "Front (Dressed)",
  24984. image: {
  24985. source: "./media/characters/rory/front-dressed.svg",
  24986. extra: 1790/1681,
  24987. bottom: 66/1856
  24988. },
  24989. form: "normal"
  24990. },
  24991. backDressed: {
  24992. height: math.unit(5 + 4/12, "feet"),
  24993. weight: math.unit(125, "lb"),
  24994. name: "Back (Dressed)",
  24995. image: {
  24996. source: "./media/characters/rory/back-dressed.svg",
  24997. extra: 1805/1690,
  24998. bottom: 56/1861
  24999. },
  25000. form: "normal"
  25001. },
  25002. frontNsfw: {
  25003. height: math.unit(5 + 4/12, "feet"),
  25004. weight: math.unit(125, "lb"),
  25005. name: "Front (NSFW)",
  25006. image: {
  25007. source: "./media/characters/rory/front-nsfw.svg",
  25008. extra: 1790/1681,
  25009. bottom: 66/1856
  25010. },
  25011. form: "normal"
  25012. },
  25013. backNsfw: {
  25014. height: math.unit(5 + 4/12, "feet"),
  25015. weight: math.unit(125, "lb"),
  25016. name: "Back (NSFW)",
  25017. image: {
  25018. source: "./media/characters/rory/back-nsfw.svg",
  25019. extra: 1805/1690,
  25020. bottom: 56/1861
  25021. },
  25022. form: "normal"
  25023. },
  25024. dick: {
  25025. height: math.unit(0.8, "feet"),
  25026. name: "Dick",
  25027. image: {
  25028. source: "./media/characters/rory/dick.svg"
  25029. },
  25030. form: "normal"
  25031. },
  25032. thicc_front: {
  25033. height: math.unit(5 + 4/12, "feet"),
  25034. weight: math.unit(195, "lb"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/rory/thicc-front.svg",
  25038. extra: 1220/1100,
  25039. bottom: 103/1323
  25040. },
  25041. form: "thicc",
  25042. default: true
  25043. },
  25044. thicc_back: {
  25045. height: math.unit(5 + 4/12, "feet"),
  25046. weight: math.unit(195, "lb"),
  25047. name: "Back",
  25048. image: {
  25049. source: "./media/characters/rory/thicc-back.svg",
  25050. extra: 1166/1086,
  25051. bottom: 35/1201
  25052. },
  25053. form: "thicc"
  25054. },
  25055. },
  25056. [
  25057. {
  25058. name: "Micro",
  25059. height: math.unit(3, "inches"),
  25060. allForms: true
  25061. },
  25062. {
  25063. name: "Normal",
  25064. height: math.unit(5 + 4/12, "feet"),
  25065. allForms: true,
  25066. default: true
  25067. },
  25068. {
  25069. name: "Macro",
  25070. height: math.unit(90, "feet"),
  25071. allForms: true
  25072. },
  25073. {
  25074. name: "Supercharged",
  25075. height: math.unit(270, "feet"),
  25076. allForms: true
  25077. },
  25078. ],
  25079. {
  25080. "normal": {
  25081. name: "Normal",
  25082. default: true
  25083. },
  25084. "thicc": {
  25085. name: "Thicc",
  25086. },
  25087. }
  25088. ))
  25089. characterMakers.push(() => makeCharacter(
  25090. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25091. {
  25092. front: {
  25093. height: math.unit(5 + 9 / 12, "feet"),
  25094. weight: math.unit(190, "lb"),
  25095. name: "Front",
  25096. image: {
  25097. source: "./media/characters/sprisk/front.svg",
  25098. extra: 1225 / 1180,
  25099. bottom: 42.7 / 1266.4
  25100. }
  25101. },
  25102. frontNsfw: {
  25103. height: math.unit(5 + 9 / 12, "feet"),
  25104. weight: math.unit(190, "lb"),
  25105. name: "Front (NSFW)",
  25106. image: {
  25107. source: "./media/characters/sprisk/front-nsfw.svg",
  25108. extra: 1225 / 1180,
  25109. bottom: 42.7 / 1266.4
  25110. }
  25111. },
  25112. back: {
  25113. height: math.unit(5 + 9 / 12, "feet"),
  25114. weight: math.unit(190, "lb"),
  25115. name: "Back",
  25116. image: {
  25117. source: "./media/characters/sprisk/back.svg",
  25118. extra: 1247 / 1200,
  25119. bottom: 5.6 / 1253.04
  25120. }
  25121. },
  25122. },
  25123. [
  25124. {
  25125. name: "Tiny",
  25126. height: math.unit(2, "inches")
  25127. },
  25128. {
  25129. name: "Normal",
  25130. height: math.unit(5 + 9 / 12, "feet"),
  25131. default: true
  25132. },
  25133. {
  25134. name: "Mini Macro",
  25135. height: math.unit(18, "feet")
  25136. },
  25137. {
  25138. name: "Macro",
  25139. height: math.unit(100, "feet")
  25140. },
  25141. {
  25142. name: "MACRO",
  25143. height: math.unit(50, "miles")
  25144. },
  25145. {
  25146. name: "M A C R O",
  25147. height: math.unit(300, "miles")
  25148. },
  25149. ]
  25150. ))
  25151. characterMakers.push(() => makeCharacter(
  25152. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25153. {
  25154. side: {
  25155. height: math.unit(15.6, "meters"),
  25156. weight: math.unit(700000, "kg"),
  25157. name: "Side",
  25158. image: {
  25159. source: "./media/characters/bunsen/side.svg",
  25160. extra: 1644 / 358
  25161. }
  25162. },
  25163. foot: {
  25164. height: math.unit(1.611 * 1644 / 358, "meter"),
  25165. name: "Foot",
  25166. image: {
  25167. source: "./media/characters/bunsen/foot.svg"
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Small",
  25174. height: math.unit(10, "feet")
  25175. },
  25176. {
  25177. name: "Normal",
  25178. height: math.unit(15.6, "meters"),
  25179. default: true
  25180. },
  25181. ]
  25182. ))
  25183. characterMakers.push(() => makeCharacter(
  25184. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25185. {
  25186. front: {
  25187. height: math.unit(4 + 11 / 12, "feet"),
  25188. weight: math.unit(140, "lb"),
  25189. name: "Front",
  25190. image: {
  25191. source: "./media/characters/sesh/front.svg",
  25192. extra: 3420 / 3231,
  25193. bottom: 72 / 3949.5
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Normal",
  25200. height: math.unit(4 + 11 / 12, "feet")
  25201. },
  25202. {
  25203. name: "Grown",
  25204. height: math.unit(15, "feet"),
  25205. default: true
  25206. },
  25207. {
  25208. name: "Macro",
  25209. height: math.unit(1500, "feet")
  25210. },
  25211. {
  25212. name: "Megamacro",
  25213. height: math.unit(30, "miles")
  25214. },
  25215. {
  25216. name: "Continental",
  25217. height: math.unit(3000, "miles")
  25218. },
  25219. {
  25220. name: "Gravity Mass",
  25221. height: math.unit(300000, "miles")
  25222. },
  25223. {
  25224. name: "Planet Buster",
  25225. height: math.unit(30000000, "miles")
  25226. },
  25227. {
  25228. name: "Big",
  25229. height: math.unit(3000000000, "miles")
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(9, "feet"),
  25238. weight: math.unit(350, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/pepper/front.svg",
  25242. extra: 1448 / 1312,
  25243. bottom: 9.4 / 1457.88
  25244. }
  25245. },
  25246. back: {
  25247. height: math.unit(9, "feet"),
  25248. weight: math.unit(350, "lb"),
  25249. name: "Back",
  25250. image: {
  25251. source: "./media/characters/pepper/back.svg",
  25252. extra: 1423 / 1300,
  25253. bottom: 4.6 / 1429
  25254. }
  25255. },
  25256. maw: {
  25257. height: math.unit(0.932, "feet"),
  25258. name: "Maw",
  25259. image: {
  25260. source: "./media/characters/pepper/maw.svg"
  25261. }
  25262. },
  25263. },
  25264. [
  25265. {
  25266. name: "Normal",
  25267. height: math.unit(9, "feet"),
  25268. default: true
  25269. },
  25270. ]
  25271. ))
  25272. characterMakers.push(() => makeCharacter(
  25273. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25274. {
  25275. front: {
  25276. height: math.unit(6, "feet"),
  25277. weight: math.unit(150, "lb"),
  25278. name: "Front",
  25279. image: {
  25280. source: "./media/characters/maelstrom/front.svg",
  25281. extra: 2100 / 1883,
  25282. bottom: 94 / 2196.7
  25283. }
  25284. },
  25285. },
  25286. [
  25287. {
  25288. name: "Less Kaiju",
  25289. height: math.unit(200, "feet")
  25290. },
  25291. {
  25292. name: "Kaiju",
  25293. height: math.unit(400, "feet"),
  25294. default: true
  25295. },
  25296. {
  25297. name: "Kaiju-er",
  25298. height: math.unit(600, "feet")
  25299. },
  25300. ]
  25301. ))
  25302. characterMakers.push(() => makeCharacter(
  25303. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25304. {
  25305. front: {
  25306. height: math.unit(6 + 5 / 12, "feet"),
  25307. weight: math.unit(180, "lb"),
  25308. name: "Front",
  25309. image: {
  25310. source: "./media/characters/lexir/front.svg",
  25311. extra: 180 / 172,
  25312. bottom: 12 / 192
  25313. }
  25314. },
  25315. back: {
  25316. height: math.unit(6 + 5 / 12, "feet"),
  25317. weight: math.unit(180, "lb"),
  25318. name: "Back",
  25319. image: {
  25320. source: "./media/characters/lexir/back.svg",
  25321. extra: 1273/1201,
  25322. bottom: 39/1312
  25323. }
  25324. },
  25325. },
  25326. [
  25327. {
  25328. name: "Very Smal",
  25329. height: math.unit(1, "nm")
  25330. },
  25331. {
  25332. name: "Normal",
  25333. height: math.unit(6 + 5 / 12, "feet"),
  25334. default: true
  25335. },
  25336. {
  25337. name: "Macro",
  25338. height: math.unit(1, "mile")
  25339. },
  25340. {
  25341. name: "Megamacro",
  25342. height: math.unit(50, "miles")
  25343. },
  25344. ]
  25345. ))
  25346. characterMakers.push(() => makeCharacter(
  25347. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25348. {
  25349. front: {
  25350. height: math.unit(1.5, "meters"),
  25351. weight: math.unit(100, "lb"),
  25352. name: "Front",
  25353. image: {
  25354. source: "./media/characters/maksio/front.svg",
  25355. extra: 1549 / 1531,
  25356. bottom: 123.7 / 1674.5429
  25357. }
  25358. },
  25359. back: {
  25360. height: math.unit(1.5, "meters"),
  25361. weight: math.unit(100, "lb"),
  25362. name: "Back",
  25363. image: {
  25364. source: "./media/characters/maksio/back.svg",
  25365. extra: 1541 / 1509,
  25366. bottom: 97 / 1639
  25367. }
  25368. },
  25369. hand: {
  25370. height: math.unit(0.621, "feet"),
  25371. name: "Hand",
  25372. image: {
  25373. source: "./media/characters/maksio/hand.svg"
  25374. }
  25375. },
  25376. foot: {
  25377. height: math.unit(1.611, "feet"),
  25378. name: "Foot",
  25379. image: {
  25380. source: "./media/characters/maksio/foot.svg"
  25381. }
  25382. },
  25383. },
  25384. [
  25385. {
  25386. name: "Shrunken",
  25387. height: math.unit(10, "cm")
  25388. },
  25389. {
  25390. name: "Normal",
  25391. height: math.unit(150, "cm"),
  25392. default: true
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25398. {
  25399. front: {
  25400. height: math.unit(100, "feet"),
  25401. name: "Front",
  25402. image: {
  25403. source: "./media/characters/erza-bear/front.svg",
  25404. extra: 2449 / 2390,
  25405. bottom: 46 / 2494
  25406. }
  25407. },
  25408. back: {
  25409. height: math.unit(100, "feet"),
  25410. name: "Back",
  25411. image: {
  25412. source: "./media/characters/erza-bear/back.svg",
  25413. extra: 2489 / 2430,
  25414. bottom: 85.4 / 2480
  25415. }
  25416. },
  25417. tail: {
  25418. height: math.unit(42, "feet"),
  25419. name: "Tail",
  25420. image: {
  25421. source: "./media/characters/erza-bear/tail.svg"
  25422. }
  25423. },
  25424. tongue: {
  25425. height: math.unit(8, "feet"),
  25426. name: "Tongue",
  25427. image: {
  25428. source: "./media/characters/erza-bear/tongue.svg"
  25429. }
  25430. },
  25431. dick: {
  25432. height: math.unit(10.5, "feet"),
  25433. name: "Dick",
  25434. image: {
  25435. source: "./media/characters/erza-bear/dick.svg"
  25436. }
  25437. },
  25438. dickVertical: {
  25439. height: math.unit(16.9, "feet"),
  25440. name: "Dick (Vertical)",
  25441. image: {
  25442. source: "./media/characters/erza-bear/dick-vertical.svg"
  25443. }
  25444. },
  25445. },
  25446. [
  25447. {
  25448. name: "Macro",
  25449. height: math.unit(100, "feet"),
  25450. default: true
  25451. },
  25452. ]
  25453. ))
  25454. characterMakers.push(() => makeCharacter(
  25455. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25456. {
  25457. front: {
  25458. height: math.unit(172, "cm"),
  25459. weight: math.unit(73, "kg"),
  25460. name: "Front",
  25461. image: {
  25462. source: "./media/characters/violet-flor/front.svg",
  25463. extra: 1530 / 1442,
  25464. bottom: 61.9 / 1588.8
  25465. }
  25466. },
  25467. back: {
  25468. height: math.unit(180, "cm"),
  25469. weight: math.unit(73, "kg"),
  25470. name: "Back",
  25471. image: {
  25472. source: "./media/characters/violet-flor/back.svg",
  25473. extra: 1692 / 1630,
  25474. bottom: 20 / 1712
  25475. }
  25476. },
  25477. },
  25478. [
  25479. {
  25480. name: "Normal",
  25481. height: math.unit(172, "cm"),
  25482. default: true
  25483. },
  25484. ]
  25485. ))
  25486. characterMakers.push(() => makeCharacter(
  25487. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25488. {
  25489. front: {
  25490. height: math.unit(6, "feet"),
  25491. weight: math.unit(220, "lb"),
  25492. name: "Front",
  25493. image: {
  25494. source: "./media/characters/lynn-rhea/front.svg",
  25495. extra: 310 / 273
  25496. }
  25497. },
  25498. back: {
  25499. height: math.unit(6, "feet"),
  25500. weight: math.unit(220, "lb"),
  25501. name: "Back",
  25502. image: {
  25503. source: "./media/characters/lynn-rhea/back.svg",
  25504. extra: 310 / 273
  25505. }
  25506. },
  25507. dicks: {
  25508. height: math.unit(0.9, "feet"),
  25509. name: "Dicks",
  25510. image: {
  25511. source: "./media/characters/lynn-rhea/dicks.svg"
  25512. }
  25513. },
  25514. slit: {
  25515. height: math.unit(0.4, "feet"),
  25516. name: "Slit",
  25517. image: {
  25518. source: "./media/characters/lynn-rhea/slit.svg"
  25519. }
  25520. },
  25521. },
  25522. [
  25523. {
  25524. name: "Micro",
  25525. height: math.unit(1, "inch")
  25526. },
  25527. {
  25528. name: "Macro",
  25529. height: math.unit(60, "feet"),
  25530. default: true
  25531. },
  25532. {
  25533. name: "Megamacro",
  25534. height: math.unit(2, "miles")
  25535. },
  25536. {
  25537. name: "Gigamacro",
  25538. height: math.unit(3, "earths")
  25539. },
  25540. {
  25541. name: "Galactic",
  25542. height: math.unit(0.8, "galaxies")
  25543. },
  25544. ]
  25545. ))
  25546. characterMakers.push(() => makeCharacter(
  25547. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25548. {
  25549. front: {
  25550. height: math.unit(1600, "feet"),
  25551. weight: math.unit(85758785169, "kg"),
  25552. name: "Front",
  25553. image: {
  25554. source: "./media/characters/valathos/front.svg",
  25555. extra: 1451 / 1339
  25556. }
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Macro",
  25562. height: math.unit(1600, "feet"),
  25563. default: true
  25564. },
  25565. ]
  25566. ))
  25567. characterMakers.push(() => makeCharacter(
  25568. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25569. {
  25570. front: {
  25571. height: math.unit(7 + 5 / 12, "feet"),
  25572. weight: math.unit(300, "lb"),
  25573. name: "Front",
  25574. image: {
  25575. source: "./media/characters/azula/front.svg",
  25576. extra: 3208 / 2880,
  25577. bottom: 80.2 / 3277
  25578. }
  25579. },
  25580. back: {
  25581. height: math.unit(7 + 5 / 12, "feet"),
  25582. weight: math.unit(300, "lb"),
  25583. name: "Back",
  25584. image: {
  25585. source: "./media/characters/azula/back.svg",
  25586. extra: 3169 / 2822,
  25587. bottom: 150.6 / 3321
  25588. }
  25589. },
  25590. },
  25591. [
  25592. {
  25593. name: "Normal",
  25594. height: math.unit(7 + 5 / 12, "feet"),
  25595. default: true
  25596. },
  25597. {
  25598. name: "Big",
  25599. height: math.unit(20, "feet")
  25600. },
  25601. ]
  25602. ))
  25603. characterMakers.push(() => makeCharacter(
  25604. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25605. {
  25606. front: {
  25607. height: math.unit(5 + 1 / 12, "feet"),
  25608. weight: math.unit(110, "lb"),
  25609. name: "Front",
  25610. image: {
  25611. source: "./media/characters/rupert/front.svg",
  25612. extra: 1549 / 1495,
  25613. bottom: 54.2 / 1604.4
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Normal",
  25620. height: math.unit(5 + 1 / 12, "feet"),
  25621. default: true
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25627. {
  25628. front: {
  25629. height: math.unit(8 + 4 / 12, "feet"),
  25630. weight: math.unit(350, "lb"),
  25631. name: "Front",
  25632. image: {
  25633. source: "./media/characters/sheera-castellar/front.svg",
  25634. extra: 1957 / 1894,
  25635. bottom: 26.97 / 1975.017
  25636. }
  25637. },
  25638. side: {
  25639. height: math.unit(8 + 4 / 12, "feet"),
  25640. weight: math.unit(350, "lb"),
  25641. name: "Side",
  25642. image: {
  25643. source: "./media/characters/sheera-castellar/side.svg",
  25644. extra: 1957 / 1894
  25645. }
  25646. },
  25647. back: {
  25648. height: math.unit(8 + 4 / 12, "feet"),
  25649. weight: math.unit(350, "lb"),
  25650. name: "Back",
  25651. image: {
  25652. source: "./media/characters/sheera-castellar/back.svg",
  25653. extra: 1957 / 1894
  25654. }
  25655. },
  25656. angled: {
  25657. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25658. weight: math.unit(350, "lb"),
  25659. name: "Angled",
  25660. image: {
  25661. source: "./media/characters/sheera-castellar/angled.svg",
  25662. extra: 1807 / 1707,
  25663. bottom: 68 / 1875
  25664. }
  25665. },
  25666. genitals: {
  25667. height: math.unit(2.2, "feet"),
  25668. name: "Genitals",
  25669. image: {
  25670. source: "./media/characters/sheera-castellar/genitals.svg"
  25671. }
  25672. },
  25673. taur: {
  25674. height: math.unit(10 + 6/12, "feet"),
  25675. name: "Taur",
  25676. image: {
  25677. source: "./media/characters/sheera-castellar/taur.svg",
  25678. extra: 2017/1909,
  25679. bottom: 185/2202
  25680. }
  25681. },
  25682. },
  25683. [
  25684. {
  25685. name: "Normal",
  25686. height: math.unit(8 + 4 / 12, "feet")
  25687. },
  25688. {
  25689. name: "Macro",
  25690. height: math.unit(150, "feet"),
  25691. default: true
  25692. },
  25693. {
  25694. name: "Macro+",
  25695. height: math.unit(800, "feet")
  25696. },
  25697. ]
  25698. ))
  25699. characterMakers.push(() => makeCharacter(
  25700. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25701. {
  25702. front: {
  25703. height: math.unit(6, "feet"),
  25704. weight: math.unit(150, "lb"),
  25705. name: "Front",
  25706. image: {
  25707. source: "./media/characters/jaipur/front.svg",
  25708. extra: 3860 / 3731,
  25709. bottom: 287 / 4140
  25710. }
  25711. },
  25712. back: {
  25713. height: math.unit(6, "feet"),
  25714. weight: math.unit(150, "lb"),
  25715. name: "Back",
  25716. image: {
  25717. source: "./media/characters/jaipur/back.svg",
  25718. extra: 1637/1561,
  25719. bottom: 154/1791
  25720. }
  25721. },
  25722. },
  25723. [
  25724. {
  25725. name: "Normal",
  25726. height: math.unit(1.85, "meters"),
  25727. default: true
  25728. },
  25729. {
  25730. name: "Macro",
  25731. height: math.unit(150, "meters")
  25732. },
  25733. {
  25734. name: "Macro+",
  25735. height: math.unit(0.5, "miles")
  25736. },
  25737. {
  25738. name: "Macro++",
  25739. height: math.unit(2.5, "miles")
  25740. },
  25741. {
  25742. name: "Macro+++",
  25743. height: math.unit(12, "miles")
  25744. },
  25745. {
  25746. name: "Macro++++",
  25747. height: math.unit(120, "miles")
  25748. },
  25749. {
  25750. name: "Macro+++++",
  25751. height: math.unit(1200, "miles")
  25752. },
  25753. ]
  25754. ))
  25755. characterMakers.push(() => makeCharacter(
  25756. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25757. {
  25758. front: {
  25759. height: math.unit(6, "feet"),
  25760. weight: math.unit(150, "lb"),
  25761. name: "Front",
  25762. image: {
  25763. source: "./media/characters/sheila-wolf/front.svg",
  25764. extra: 1931 / 1808,
  25765. bottom: 29.5 / 1960
  25766. }
  25767. },
  25768. dick: {
  25769. height: math.unit(1.464, "feet"),
  25770. name: "Dick",
  25771. image: {
  25772. source: "./media/characters/sheila-wolf/dick.svg"
  25773. }
  25774. },
  25775. muzzle: {
  25776. height: math.unit(0.513, "feet"),
  25777. name: "Muzzle",
  25778. image: {
  25779. source: "./media/characters/sheila-wolf/muzzle.svg"
  25780. }
  25781. },
  25782. },
  25783. [
  25784. {
  25785. name: "Macro",
  25786. height: math.unit(70, "feet"),
  25787. default: true
  25788. },
  25789. ]
  25790. ))
  25791. characterMakers.push(() => makeCharacter(
  25792. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25793. {
  25794. front: {
  25795. height: math.unit(32, "meters"),
  25796. weight: math.unit(300000, "kg"),
  25797. name: "Front",
  25798. image: {
  25799. source: "./media/characters/almor/front.svg",
  25800. extra: 1408 / 1322,
  25801. bottom: 94.6 / 1506.5
  25802. }
  25803. },
  25804. },
  25805. [
  25806. {
  25807. name: "Macro",
  25808. height: math.unit(32, "meters"),
  25809. default: true
  25810. },
  25811. ]
  25812. ))
  25813. characterMakers.push(() => makeCharacter(
  25814. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25815. {
  25816. front: {
  25817. height: math.unit(7, "feet"),
  25818. weight: math.unit(200, "lb"),
  25819. name: "Front",
  25820. image: {
  25821. source: "./media/characters/silver/front.svg",
  25822. extra: 472.1 / 450.5,
  25823. bottom: 26.5 / 499.424
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Normal",
  25830. height: math.unit(7, "feet"),
  25831. default: true
  25832. },
  25833. {
  25834. name: "Macro",
  25835. height: math.unit(800, "feet")
  25836. },
  25837. {
  25838. name: "Megamacro",
  25839. height: math.unit(250, "miles")
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25845. {
  25846. front: {
  25847. height: math.unit(6, "feet"),
  25848. weight: math.unit(150, "lb"),
  25849. name: "Front",
  25850. image: {
  25851. source: "./media/characters/pliskin/front.svg",
  25852. extra: 1469 / 1359,
  25853. bottom: 70 / 1540
  25854. }
  25855. },
  25856. },
  25857. [
  25858. {
  25859. name: "Micro",
  25860. height: math.unit(3, "inches")
  25861. },
  25862. {
  25863. name: "Normal",
  25864. height: math.unit(5 + 11 / 12, "feet"),
  25865. default: true
  25866. },
  25867. {
  25868. name: "Macro",
  25869. height: math.unit(120, "feet")
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(6, "feet"),
  25878. weight: math.unit(150, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/sammy/front.svg",
  25882. extra: 1193 / 1089,
  25883. bottom: 30.5 / 1226
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Macro",
  25890. height: math.unit(1700, "feet"),
  25891. default: true
  25892. },
  25893. {
  25894. name: "Examacro",
  25895. height: math.unit(2.5e9, "lightyears")
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25901. {
  25902. front: {
  25903. height: math.unit(21, "meters"),
  25904. weight: math.unit(12, "tonnes"),
  25905. name: "Front",
  25906. image: {
  25907. source: "./media/characters/kuru/front.svg",
  25908. extra: 4301 / 3785,
  25909. bottom: 371.3 / 4691
  25910. }
  25911. },
  25912. },
  25913. [
  25914. {
  25915. name: "Macro",
  25916. height: math.unit(21, "meters"),
  25917. default: true
  25918. },
  25919. ]
  25920. ))
  25921. characterMakers.push(() => makeCharacter(
  25922. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25923. {
  25924. front: {
  25925. height: math.unit(23, "meters"),
  25926. weight: math.unit(12.2, "tonnes"),
  25927. name: "Front",
  25928. image: {
  25929. source: "./media/characters/rakka/front.svg",
  25930. extra: 4670 / 4169,
  25931. bottom: 301 / 4968.7
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Macro",
  25938. height: math.unit(23, "meters"),
  25939. default: true
  25940. },
  25941. ]
  25942. ))
  25943. characterMakers.push(() => makeCharacter(
  25944. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25945. {
  25946. front: {
  25947. height: math.unit(6, "feet"),
  25948. weight: math.unit(150, "lb"),
  25949. name: "Front",
  25950. image: {
  25951. source: "./media/characters/rhys-feline/front.svg",
  25952. extra: 2488 / 2308,
  25953. bottom: 35.67 / 2519.19
  25954. }
  25955. },
  25956. },
  25957. [
  25958. {
  25959. name: "Really Small",
  25960. height: math.unit(1, "nm")
  25961. },
  25962. {
  25963. name: "Micro",
  25964. height: math.unit(4, "inches")
  25965. },
  25966. {
  25967. name: "Normal",
  25968. height: math.unit(4 + 10 / 12, "feet"),
  25969. default: true
  25970. },
  25971. {
  25972. name: "Macro",
  25973. height: math.unit(100, "feet")
  25974. },
  25975. {
  25976. name: "Megamacto",
  25977. height: math.unit(50, "miles")
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25983. {
  25984. side: {
  25985. height: math.unit(30, "feet"),
  25986. weight: math.unit(35000, "kg"),
  25987. name: "Side",
  25988. image: {
  25989. source: "./media/characters/alydar/side.svg",
  25990. extra: 234 / 222,
  25991. bottom: 6.5 / 241
  25992. }
  25993. },
  25994. front: {
  25995. height: math.unit(30, "feet"),
  25996. weight: math.unit(35000, "kg"),
  25997. name: "Front",
  25998. image: {
  25999. source: "./media/characters/alydar/front.svg",
  26000. extra: 223.37 / 210.2,
  26001. bottom: 22.3 / 246.76
  26002. }
  26003. },
  26004. top: {
  26005. height: math.unit(64.54, "feet"),
  26006. weight: math.unit(35000, "kg"),
  26007. name: "Top",
  26008. image: {
  26009. source: "./media/characters/alydar/top.svg"
  26010. }
  26011. },
  26012. anthro: {
  26013. height: math.unit(30, "feet"),
  26014. weight: math.unit(9000, "kg"),
  26015. name: "Anthro",
  26016. image: {
  26017. source: "./media/characters/alydar/anthro.svg",
  26018. extra: 432 / 421,
  26019. bottom: 7.18 / 440
  26020. }
  26021. },
  26022. maw: {
  26023. height: math.unit(11.693, "feet"),
  26024. name: "Maw",
  26025. image: {
  26026. source: "./media/characters/alydar/maw.svg"
  26027. }
  26028. },
  26029. head: {
  26030. height: math.unit(11.693, "feet"),
  26031. name: "Head",
  26032. image: {
  26033. source: "./media/characters/alydar/head.svg"
  26034. }
  26035. },
  26036. headAlt: {
  26037. height: math.unit(12.861, "feet"),
  26038. name: "Head (Alt)",
  26039. image: {
  26040. source: "./media/characters/alydar/head-alt.svg"
  26041. }
  26042. },
  26043. wing: {
  26044. height: math.unit(20.712, "feet"),
  26045. name: "Wing",
  26046. image: {
  26047. source: "./media/characters/alydar/wing.svg"
  26048. }
  26049. },
  26050. wingFeather: {
  26051. height: math.unit(9.662, "feet"),
  26052. name: "Wing Feather",
  26053. image: {
  26054. source: "./media/characters/alydar/wing-feather.svg"
  26055. }
  26056. },
  26057. countourFeather: {
  26058. height: math.unit(4.154, "feet"),
  26059. name: "Contour Feather",
  26060. image: {
  26061. source: "./media/characters/alydar/contour-feather.svg"
  26062. }
  26063. },
  26064. },
  26065. [
  26066. {
  26067. name: "Diplomatic",
  26068. height: math.unit(13, "feet"),
  26069. default: true
  26070. },
  26071. {
  26072. name: "Small",
  26073. height: math.unit(30, "feet")
  26074. },
  26075. {
  26076. name: "Normal",
  26077. height: math.unit(95, "feet"),
  26078. default: true
  26079. },
  26080. {
  26081. name: "Large",
  26082. height: math.unit(285, "feet")
  26083. },
  26084. {
  26085. name: "Incomprehensible",
  26086. height: math.unit(450, "megameters")
  26087. },
  26088. ]
  26089. ))
  26090. characterMakers.push(() => makeCharacter(
  26091. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26092. {
  26093. side: {
  26094. height: math.unit(11, "feet"),
  26095. weight: math.unit(1750, "kg"),
  26096. name: "Side",
  26097. image: {
  26098. source: "./media/characters/selicia/side.svg",
  26099. extra: 440 / 396,
  26100. bottom: 24.8 / 465.979
  26101. }
  26102. },
  26103. maw: {
  26104. height: math.unit(4.665, "feet"),
  26105. name: "Maw",
  26106. image: {
  26107. source: "./media/characters/selicia/maw.svg"
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Normal",
  26114. height: math.unit(11, "feet"),
  26115. default: true
  26116. },
  26117. ]
  26118. ))
  26119. characterMakers.push(() => makeCharacter(
  26120. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26121. {
  26122. side: {
  26123. height: math.unit(2 + 6 / 12, "feet"),
  26124. weight: math.unit(30, "lb"),
  26125. name: "Side",
  26126. image: {
  26127. source: "./media/characters/layla/side.svg",
  26128. extra: 244 / 188,
  26129. bottom: 18.2 / 262.1
  26130. }
  26131. },
  26132. back: {
  26133. height: math.unit(2 + 6 / 12, "feet"),
  26134. weight: math.unit(30, "lb"),
  26135. name: "Back",
  26136. image: {
  26137. source: "./media/characters/layla/back.svg",
  26138. extra: 308 / 241.5,
  26139. bottom: 8.9 / 316.8
  26140. }
  26141. },
  26142. cumming: {
  26143. height: math.unit(2 + 6 / 12, "feet"),
  26144. weight: math.unit(30, "lb"),
  26145. name: "Cumming",
  26146. image: {
  26147. source: "./media/characters/layla/cumming.svg",
  26148. extra: 342 / 279,
  26149. bottom: 595 / 938
  26150. }
  26151. },
  26152. dickFlaccid: {
  26153. height: math.unit(2.595, "feet"),
  26154. name: "Flaccid Genitals",
  26155. image: {
  26156. source: "./media/characters/layla/dick-flaccid.svg"
  26157. }
  26158. },
  26159. dickErect: {
  26160. height: math.unit(2.359, "feet"),
  26161. name: "Erect Genitals",
  26162. image: {
  26163. source: "./media/characters/layla/dick-erect.svg"
  26164. }
  26165. },
  26166. dragon: {
  26167. height: math.unit(40, "feet"),
  26168. name: "Dragon",
  26169. image: {
  26170. source: "./media/characters/layla/dragon.svg",
  26171. extra: 610/535,
  26172. bottom: 367/977
  26173. }
  26174. },
  26175. taur: {
  26176. height: math.unit(30, "feet"),
  26177. name: "Taur",
  26178. image: {
  26179. source: "./media/characters/layla/taur.svg",
  26180. extra: 1268/1199,
  26181. bottom: 112/1380
  26182. }
  26183. },
  26184. },
  26185. [
  26186. {
  26187. name: "Micro",
  26188. height: math.unit(1, "inch")
  26189. },
  26190. {
  26191. name: "Small",
  26192. height: math.unit(1, "foot")
  26193. },
  26194. {
  26195. name: "Normal",
  26196. height: math.unit(2 + 6 / 12, "feet"),
  26197. default: true
  26198. },
  26199. {
  26200. name: "Macro",
  26201. height: math.unit(200, "feet")
  26202. },
  26203. {
  26204. name: "Megamacro",
  26205. height: math.unit(1000, "miles")
  26206. },
  26207. {
  26208. name: "Planetary",
  26209. height: math.unit(8000, "miles")
  26210. },
  26211. {
  26212. name: "True Layla",
  26213. height: math.unit(200000 * 7, "multiverses")
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26219. {
  26220. back: {
  26221. height: math.unit(10.5, "feet"),
  26222. weight: math.unit(800, "lb"),
  26223. name: "Back",
  26224. image: {
  26225. source: "./media/characters/knox/back.svg",
  26226. extra: 1486 / 1089,
  26227. bottom: 107 / 1601.4
  26228. }
  26229. },
  26230. side: {
  26231. height: math.unit(10.5, "feet"),
  26232. weight: math.unit(800, "lb"),
  26233. name: "Side",
  26234. image: {
  26235. source: "./media/characters/knox/side.svg",
  26236. extra: 244 / 218,
  26237. bottom: 14 / 260
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Compact",
  26244. height: math.unit(10.5, "feet"),
  26245. default: true
  26246. },
  26247. {
  26248. name: "Dynamax",
  26249. height: math.unit(210, "feet")
  26250. },
  26251. {
  26252. name: "Full Macro",
  26253. height: math.unit(850, "feet")
  26254. },
  26255. ]
  26256. ))
  26257. characterMakers.push(() => makeCharacter(
  26258. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26259. {
  26260. front: {
  26261. height: math.unit(28, "feet"),
  26262. weight: math.unit(10500, "lb"),
  26263. name: "Front",
  26264. image: {
  26265. source: "./media/characters/kayda/front.svg",
  26266. extra: 1536 / 1428,
  26267. bottom: 68.7 / 1603
  26268. }
  26269. },
  26270. back: {
  26271. height: math.unit(28, "feet"),
  26272. weight: math.unit(10500, "lb"),
  26273. name: "Back",
  26274. image: {
  26275. source: "./media/characters/kayda/back.svg",
  26276. extra: 1557 / 1464,
  26277. bottom: 39.5 / 1597.49
  26278. }
  26279. },
  26280. dick: {
  26281. height: math.unit(3.858, "feet"),
  26282. name: "Dick",
  26283. image: {
  26284. source: "./media/characters/kayda/dick.svg"
  26285. }
  26286. },
  26287. },
  26288. [
  26289. {
  26290. name: "Macro",
  26291. height: math.unit(28, "feet"),
  26292. default: true
  26293. },
  26294. ]
  26295. ))
  26296. characterMakers.push(() => makeCharacter(
  26297. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26298. {
  26299. front: {
  26300. height: math.unit(10 + 11 / 12, "feet"),
  26301. weight: math.unit(1400, "lb"),
  26302. name: "Front",
  26303. image: {
  26304. source: "./media/characters/brian/front.svg",
  26305. extra: 737 / 692,
  26306. bottom: 55.4 / 785
  26307. }
  26308. },
  26309. },
  26310. [
  26311. {
  26312. name: "Normal",
  26313. height: math.unit(10 + 11 / 12, "feet"),
  26314. default: true
  26315. },
  26316. ]
  26317. ))
  26318. characterMakers.push(() => makeCharacter(
  26319. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26320. {
  26321. front: {
  26322. height: math.unit(5 + 8 / 12, "feet"),
  26323. weight: math.unit(140, "lb"),
  26324. name: "Front",
  26325. image: {
  26326. source: "./media/characters/khemri/front.svg",
  26327. extra: 4780 / 4059,
  26328. bottom: 80.1 / 4859.25
  26329. }
  26330. },
  26331. },
  26332. [
  26333. {
  26334. name: "Micro",
  26335. height: math.unit(6, "inches")
  26336. },
  26337. {
  26338. name: "Normal",
  26339. height: math.unit(5 + 8 / 12, "feet"),
  26340. default: true
  26341. },
  26342. ]
  26343. ))
  26344. characterMakers.push(() => makeCharacter(
  26345. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26346. {
  26347. front: {
  26348. height: math.unit(13, "feet"),
  26349. weight: math.unit(1700, "lb"),
  26350. name: "Front",
  26351. image: {
  26352. source: "./media/characters/felix-braveheart/front.svg",
  26353. extra: 1222 / 1157,
  26354. bottom: 53.2 / 1280
  26355. }
  26356. },
  26357. back: {
  26358. height: math.unit(13, "feet"),
  26359. weight: math.unit(1700, "lb"),
  26360. name: "Back",
  26361. image: {
  26362. source: "./media/characters/felix-braveheart/back.svg",
  26363. extra: 1277 / 1203,
  26364. bottom: 50.2 / 1327
  26365. }
  26366. },
  26367. feral: {
  26368. height: math.unit(6, "feet"),
  26369. weight: math.unit(400, "lb"),
  26370. name: "Feral",
  26371. image: {
  26372. source: "./media/characters/felix-braveheart/feral.svg",
  26373. extra: 682 / 625,
  26374. bottom: 6.9 / 688
  26375. }
  26376. },
  26377. },
  26378. [
  26379. {
  26380. name: "Normal",
  26381. height: math.unit(13, "feet"),
  26382. default: true
  26383. },
  26384. ]
  26385. ))
  26386. characterMakers.push(() => makeCharacter(
  26387. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26388. {
  26389. side: {
  26390. height: math.unit(5 + 11 / 12, "feet"),
  26391. weight: math.unit(1400, "lb"),
  26392. name: "Side",
  26393. image: {
  26394. source: "./media/characters/shadow-blade/side.svg",
  26395. extra: 1726 / 1267,
  26396. bottom: 58.4 / 1785
  26397. }
  26398. },
  26399. },
  26400. [
  26401. {
  26402. name: "Normal",
  26403. height: math.unit(5 + 11 / 12, "feet"),
  26404. default: true
  26405. },
  26406. ]
  26407. ))
  26408. characterMakers.push(() => makeCharacter(
  26409. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26410. {
  26411. front: {
  26412. height: math.unit(1 + 6 / 12, "feet"),
  26413. weight: math.unit(25, "lb"),
  26414. name: "Front",
  26415. image: {
  26416. source: "./media/characters/karla-halldor/front.svg",
  26417. extra: 1459 / 1383,
  26418. bottom: 12 / 1472
  26419. }
  26420. },
  26421. },
  26422. [
  26423. {
  26424. name: "Normal",
  26425. height: math.unit(1 + 6 / 12, "feet"),
  26426. default: true
  26427. },
  26428. ]
  26429. ))
  26430. characterMakers.push(() => makeCharacter(
  26431. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26432. {
  26433. front: {
  26434. height: math.unit(6 + 2 / 12, "feet"),
  26435. weight: math.unit(160, "lb"),
  26436. name: "Front",
  26437. image: {
  26438. source: "./media/characters/ariam/front.svg",
  26439. extra: 1073/976,
  26440. bottom: 52/1125
  26441. }
  26442. },
  26443. back: {
  26444. height: math.unit(6 + 2/12, "feet"),
  26445. weight: math.unit(160, "lb"),
  26446. name: "Back",
  26447. image: {
  26448. source: "./media/characters/ariam/back.svg",
  26449. extra: 1103/1023,
  26450. bottom: 9/1112
  26451. }
  26452. },
  26453. dressed: {
  26454. height: math.unit(6 + 2/12, "feet"),
  26455. weight: math.unit(160, "lb"),
  26456. name: "Dressed",
  26457. image: {
  26458. source: "./media/characters/ariam/dressed.svg",
  26459. extra: 1099/1009,
  26460. bottom: 25/1124
  26461. }
  26462. },
  26463. squatting: {
  26464. height: math.unit(4.1, "feet"),
  26465. weight: math.unit(160, "lb"),
  26466. name: "Squatting",
  26467. image: {
  26468. source: "./media/characters/ariam/squatting.svg",
  26469. extra: 2617 / 2112,
  26470. bottom: 61.2 / 2681,
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Normal",
  26477. height: math.unit(6 + 2 / 12, "feet"),
  26478. default: true
  26479. },
  26480. {
  26481. name: "Normal+",
  26482. height: math.unit(4, "meters")
  26483. },
  26484. {
  26485. name: "Macro",
  26486. height: math.unit(50, "meters")
  26487. },
  26488. {
  26489. name: "Macro+",
  26490. height: math.unit(100, "meters")
  26491. },
  26492. {
  26493. name: "Megamacro",
  26494. height: math.unit(20, "km")
  26495. },
  26496. {
  26497. name: "Caretaker",
  26498. height: math.unit(444, "megameters")
  26499. },
  26500. ]
  26501. ))
  26502. characterMakers.push(() => makeCharacter(
  26503. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26504. {
  26505. front: {
  26506. height: math.unit(1.67, "meters"),
  26507. weight: math.unit(140, "lb"),
  26508. name: "Front",
  26509. image: {
  26510. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26511. extra: 438 / 410,
  26512. bottom: 0.75 / 439
  26513. }
  26514. },
  26515. },
  26516. [
  26517. {
  26518. name: "Shrunken",
  26519. height: math.unit(7.6, "cm")
  26520. },
  26521. {
  26522. name: "Human Scale",
  26523. height: math.unit(1.67, "meters")
  26524. },
  26525. {
  26526. name: "Wolxi Scale",
  26527. height: math.unit(36.7, "meters"),
  26528. default: true
  26529. },
  26530. ]
  26531. ))
  26532. characterMakers.push(() => makeCharacter(
  26533. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26534. {
  26535. front: {
  26536. height: math.unit(1.73, "meters"),
  26537. weight: math.unit(240, "lb"),
  26538. name: "Front",
  26539. image: {
  26540. source: "./media/characters/izue-two-mothers/front.svg",
  26541. extra: 469 / 437,
  26542. bottom: 1.24 / 470.6
  26543. }
  26544. },
  26545. },
  26546. [
  26547. {
  26548. name: "Shrunken",
  26549. height: math.unit(7.86, "cm")
  26550. },
  26551. {
  26552. name: "Human Scale",
  26553. height: math.unit(1.73, "meters")
  26554. },
  26555. {
  26556. name: "Wolxi Scale",
  26557. height: math.unit(38, "meters"),
  26558. default: true
  26559. },
  26560. ]
  26561. ))
  26562. characterMakers.push(() => makeCharacter(
  26563. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26564. {
  26565. front: {
  26566. height: math.unit(1.55, "meters"),
  26567. weight: math.unit(120, "lb"),
  26568. name: "Front",
  26569. image: {
  26570. source: "./media/characters/teeku-love-shack/front.svg",
  26571. extra: 387 / 362,
  26572. bottom: 1.51 / 388
  26573. }
  26574. },
  26575. },
  26576. [
  26577. {
  26578. name: "Shrunken",
  26579. height: math.unit(7, "cm")
  26580. },
  26581. {
  26582. name: "Human Scale",
  26583. height: math.unit(1.55, "meters")
  26584. },
  26585. {
  26586. name: "Wolxi Scale",
  26587. height: math.unit(34.1, "meters"),
  26588. default: true
  26589. },
  26590. ]
  26591. ))
  26592. characterMakers.push(() => makeCharacter(
  26593. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26594. {
  26595. front: {
  26596. height: math.unit(1.83, "meters"),
  26597. weight: math.unit(135, "lb"),
  26598. name: "Front",
  26599. image: {
  26600. source: "./media/characters/dejma-the-red/front.svg",
  26601. extra: 480 / 458,
  26602. bottom: 1.8 / 482
  26603. }
  26604. },
  26605. },
  26606. [
  26607. {
  26608. name: "Shrunken",
  26609. height: math.unit(8.3, "cm")
  26610. },
  26611. {
  26612. name: "Human Scale",
  26613. height: math.unit(1.83, "meters")
  26614. },
  26615. {
  26616. name: "Wolxi Scale",
  26617. height: math.unit(40, "meters"),
  26618. default: true
  26619. },
  26620. ]
  26621. ))
  26622. characterMakers.push(() => makeCharacter(
  26623. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26624. {
  26625. front: {
  26626. height: math.unit(1.78, "meters"),
  26627. weight: math.unit(65, "kg"),
  26628. name: "Front",
  26629. image: {
  26630. source: "./media/characters/aki/front.svg",
  26631. extra: 452 / 415
  26632. }
  26633. },
  26634. frontNsfw: {
  26635. height: math.unit(1.78, "meters"),
  26636. weight: math.unit(65, "kg"),
  26637. name: "Front (NSFW)",
  26638. image: {
  26639. source: "./media/characters/aki/front-nsfw.svg",
  26640. extra: 452 / 415
  26641. }
  26642. },
  26643. back: {
  26644. height: math.unit(1.78, "meters"),
  26645. weight: math.unit(65, "kg"),
  26646. name: "Back",
  26647. image: {
  26648. source: "./media/characters/aki/back.svg",
  26649. extra: 452 / 415
  26650. }
  26651. },
  26652. rump: {
  26653. height: math.unit(2.05, "feet"),
  26654. name: "Rump",
  26655. image: {
  26656. source: "./media/characters/aki/rump.svg"
  26657. }
  26658. },
  26659. dick: {
  26660. height: math.unit(0.95, "feet"),
  26661. name: "Dick",
  26662. image: {
  26663. source: "./media/characters/aki/dick.svg"
  26664. }
  26665. },
  26666. },
  26667. [
  26668. {
  26669. name: "Micro",
  26670. height: math.unit(15, "cm")
  26671. },
  26672. {
  26673. name: "Normal",
  26674. height: math.unit(178, "cm"),
  26675. default: true
  26676. },
  26677. {
  26678. name: "Macro",
  26679. height: math.unit(214, "m")
  26680. },
  26681. {
  26682. name: "Macro+",
  26683. height: math.unit(534, "m")
  26684. },
  26685. ]
  26686. ))
  26687. characterMakers.push(() => makeCharacter(
  26688. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26689. {
  26690. front: {
  26691. height: math.unit(5 + 5 / 12, "feet"),
  26692. weight: math.unit(120, "lb"),
  26693. name: "Front",
  26694. image: {
  26695. source: "./media/characters/ari/front.svg",
  26696. extra: 1550/1471,
  26697. bottom: 39/1589
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(5 + 5 / 12, "feet")
  26705. },
  26706. {
  26707. name: "Macro",
  26708. height: math.unit(100, "feet"),
  26709. default: true
  26710. },
  26711. {
  26712. name: "Megamacro",
  26713. height: math.unit(100, "miles")
  26714. },
  26715. {
  26716. name: "Gigamacro",
  26717. height: math.unit(80000, "miles")
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26723. {
  26724. side: {
  26725. height: math.unit(9, "feet"),
  26726. weight: math.unit(400, "kg"),
  26727. name: "Side",
  26728. image: {
  26729. source: "./media/characters/bolt/side.svg",
  26730. extra: 1126 / 896,
  26731. bottom: 60 / 1187.3,
  26732. }
  26733. },
  26734. },
  26735. [
  26736. {
  26737. name: "Micro",
  26738. height: math.unit(5, "inches")
  26739. },
  26740. {
  26741. name: "Normal",
  26742. height: math.unit(9, "feet"),
  26743. default: true
  26744. },
  26745. {
  26746. name: "Macro",
  26747. height: math.unit(700, "feet")
  26748. },
  26749. {
  26750. name: "Max Size",
  26751. height: math.unit(1.52e22, "yottameters")
  26752. },
  26753. ]
  26754. ))
  26755. characterMakers.push(() => makeCharacter(
  26756. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26757. {
  26758. front: {
  26759. height: math.unit(4.3, "meters"),
  26760. weight: math.unit(3, "tons"),
  26761. name: "Front",
  26762. image: {
  26763. source: "./media/characters/draekon-sylviar/front.svg",
  26764. extra: 2072/1512,
  26765. bottom: 74/2146
  26766. }
  26767. },
  26768. back: {
  26769. height: math.unit(4.3, "meters"),
  26770. weight: math.unit(3, "tons"),
  26771. name: "Back",
  26772. image: {
  26773. source: "./media/characters/draekon-sylviar/back.svg",
  26774. extra: 1639/1483,
  26775. bottom: 41/1680
  26776. }
  26777. },
  26778. feral: {
  26779. height: math.unit(1.15, "meters"),
  26780. weight: math.unit(3, "tons"),
  26781. name: "Feral",
  26782. image: {
  26783. source: "./media/characters/draekon-sylviar/feral.svg",
  26784. extra: 1033/395,
  26785. bottom: 130/1163
  26786. }
  26787. },
  26788. maw: {
  26789. height: math.unit(1.3, "meters"),
  26790. name: "Maw",
  26791. image: {
  26792. source: "./media/characters/draekon-sylviar/maw.svg"
  26793. }
  26794. },
  26795. mawSeparated: {
  26796. height: math.unit(1.53, "meters"),
  26797. name: "Separated Maw",
  26798. image: {
  26799. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26800. }
  26801. },
  26802. tail: {
  26803. height: math.unit(1.15, "meters"),
  26804. name: "Tail",
  26805. image: {
  26806. source: "./media/characters/draekon-sylviar/tail.svg"
  26807. }
  26808. },
  26809. tailDick: {
  26810. height: math.unit(1.15, "meters"),
  26811. name: "Tail (Dick)",
  26812. image: {
  26813. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26814. }
  26815. },
  26816. tailDickSeparated: {
  26817. height: math.unit(1.19, "meters"),
  26818. name: "Tail (Separated Dick)",
  26819. image: {
  26820. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26821. }
  26822. },
  26823. slit: {
  26824. height: math.unit(1, "meters"),
  26825. name: "Slit",
  26826. image: {
  26827. source: "./media/characters/draekon-sylviar/slit.svg"
  26828. }
  26829. },
  26830. dick: {
  26831. height: math.unit(1.15, "meters"),
  26832. name: "Dick",
  26833. image: {
  26834. source: "./media/characters/draekon-sylviar/dick.svg"
  26835. }
  26836. },
  26837. dickSeparated: {
  26838. height: math.unit(1.1, "meters"),
  26839. name: "Separated Dick",
  26840. image: {
  26841. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26842. }
  26843. },
  26844. sheath: {
  26845. height: math.unit(1.15, "meters"),
  26846. name: "Sheath",
  26847. image: {
  26848. source: "./media/characters/draekon-sylviar/sheath.svg"
  26849. }
  26850. },
  26851. },
  26852. [
  26853. {
  26854. name: "Small",
  26855. height: math.unit(4.53 / 2, "meters"),
  26856. default: true
  26857. },
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(4.53, "meters"),
  26861. default: true
  26862. },
  26863. {
  26864. name: "Large",
  26865. height: math.unit(4.53 * 2, "meters"),
  26866. },
  26867. ]
  26868. ))
  26869. characterMakers.push(() => makeCharacter(
  26870. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26871. {
  26872. front: {
  26873. height: math.unit(6 + 2 / 12, "feet"),
  26874. weight: math.unit(180, "lb"),
  26875. name: "Front",
  26876. image: {
  26877. source: "./media/characters/brawler/front.svg",
  26878. extra: 3301 / 3027,
  26879. bottom: 138 / 3439
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Normal",
  26886. height: math.unit(6 + 2 / 12, "feet"),
  26887. default: true
  26888. },
  26889. ]
  26890. ))
  26891. characterMakers.push(() => makeCharacter(
  26892. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26893. {
  26894. front: {
  26895. height: math.unit(11, "feet"),
  26896. weight: math.unit(1000, "lb"),
  26897. name: "Front",
  26898. image: {
  26899. source: "./media/characters/alex/front.svg",
  26900. bottom: 44.5 / 620
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Micro",
  26907. height: math.unit(5, "inches")
  26908. },
  26909. {
  26910. name: "Normal",
  26911. height: math.unit(11, "feet"),
  26912. default: true
  26913. },
  26914. {
  26915. name: "Macro",
  26916. height: math.unit(9.5e9, "feet")
  26917. },
  26918. {
  26919. name: "Max Size",
  26920. height: math.unit(1.4e283, "yottameters")
  26921. },
  26922. ]
  26923. ))
  26924. characterMakers.push(() => makeCharacter(
  26925. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26926. {
  26927. female: {
  26928. height: math.unit(29.9, "m"),
  26929. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26930. name: "Female",
  26931. image: {
  26932. source: "./media/characters/zenari/female.svg",
  26933. extra: 3281.6 / 3217,
  26934. bottom: 72.2 / 3353
  26935. }
  26936. },
  26937. male: {
  26938. height: math.unit(27.7, "m"),
  26939. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26940. name: "Male",
  26941. image: {
  26942. source: "./media/characters/zenari/male.svg",
  26943. extra: 3008 / 2991,
  26944. bottom: 54.6 / 3069
  26945. }
  26946. },
  26947. },
  26948. [
  26949. {
  26950. name: "Macro",
  26951. height: math.unit(29.7, "meters"),
  26952. default: true
  26953. },
  26954. ]
  26955. ))
  26956. characterMakers.push(() => makeCharacter(
  26957. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26958. {
  26959. female: {
  26960. height: math.unit(23.8, "m"),
  26961. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26962. name: "Female",
  26963. image: {
  26964. source: "./media/characters/mactarian/female.svg",
  26965. extra: 2662 / 2569,
  26966. bottom: 73 / 2736
  26967. }
  26968. },
  26969. male: {
  26970. height: math.unit(23.8, "m"),
  26971. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26972. name: "Male",
  26973. image: {
  26974. source: "./media/characters/mactarian/male.svg",
  26975. extra: 2673 / 2600,
  26976. bottom: 76 / 2750
  26977. }
  26978. },
  26979. },
  26980. [
  26981. {
  26982. name: "Macro",
  26983. height: math.unit(23.8, "meters"),
  26984. default: true
  26985. },
  26986. ]
  26987. ))
  26988. characterMakers.push(() => makeCharacter(
  26989. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26990. {
  26991. female: {
  26992. height: math.unit(19.3, "m"),
  26993. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26994. name: "Female",
  26995. image: {
  26996. source: "./media/characters/umok/female.svg",
  26997. extra: 2186 / 2078,
  26998. bottom: 87 / 2277
  26999. }
  27000. },
  27001. male: {
  27002. height: math.unit(19.5, "m"),
  27003. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27004. name: "Male",
  27005. image: {
  27006. source: "./media/characters/umok/male.svg",
  27007. extra: 2233 / 2140,
  27008. bottom: 24.4 / 2258
  27009. }
  27010. },
  27011. },
  27012. [
  27013. {
  27014. name: "Macro",
  27015. height: math.unit(19.3, "meters"),
  27016. default: true
  27017. },
  27018. ]
  27019. ))
  27020. characterMakers.push(() => makeCharacter(
  27021. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27022. {
  27023. female: {
  27024. height: math.unit(26.15, "m"),
  27025. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27026. name: "Female",
  27027. image: {
  27028. source: "./media/characters/joraxian/female.svg",
  27029. extra: 2912 / 2824,
  27030. bottom: 36 / 2956
  27031. }
  27032. },
  27033. male: {
  27034. height: math.unit(25.4, "m"),
  27035. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27036. name: "Male",
  27037. image: {
  27038. source: "./media/characters/joraxian/male.svg",
  27039. extra: 2877 / 2721,
  27040. bottom: 82 / 2967
  27041. }
  27042. },
  27043. },
  27044. [
  27045. {
  27046. name: "Macro",
  27047. height: math.unit(26.15, "meters"),
  27048. default: true
  27049. },
  27050. ]
  27051. ))
  27052. characterMakers.push(() => makeCharacter(
  27053. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27054. {
  27055. female: {
  27056. height: math.unit(21.6, "m"),
  27057. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27058. name: "Female",
  27059. image: {
  27060. source: "./media/characters/sthara/female.svg",
  27061. extra: 2516 / 2347,
  27062. bottom: 21.5 / 2537
  27063. }
  27064. },
  27065. male: {
  27066. height: math.unit(24, "m"),
  27067. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27068. name: "Male",
  27069. image: {
  27070. source: "./media/characters/sthara/male.svg",
  27071. extra: 2732 / 2607,
  27072. bottom: 23 / 2732
  27073. }
  27074. },
  27075. },
  27076. [
  27077. {
  27078. name: "Macro",
  27079. height: math.unit(21.6, "meters"),
  27080. default: true
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27086. {
  27087. front: {
  27088. height: math.unit(6 + 4 / 12, "feet"),
  27089. weight: math.unit(175, "lb"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/luka-bryzant/front.svg",
  27093. extra: 311 / 289,
  27094. bottom: 4 / 315
  27095. }
  27096. },
  27097. back: {
  27098. height: math.unit(6 + 4 / 12, "feet"),
  27099. weight: math.unit(175, "lb"),
  27100. name: "Back",
  27101. image: {
  27102. source: "./media/characters/luka-bryzant/back.svg",
  27103. extra: 311 / 289,
  27104. bottom: 3.8 / 313.7
  27105. }
  27106. },
  27107. },
  27108. [
  27109. {
  27110. name: "Micro",
  27111. height: math.unit(10, "inches")
  27112. },
  27113. {
  27114. name: "Normal",
  27115. height: math.unit(6 + 4 / 12, "feet"),
  27116. default: true
  27117. },
  27118. {
  27119. name: "Large",
  27120. height: math.unit(12, "feet")
  27121. },
  27122. ]
  27123. ))
  27124. characterMakers.push(() => makeCharacter(
  27125. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27126. {
  27127. front: {
  27128. height: math.unit(5 + 7 / 12, "feet"),
  27129. weight: math.unit(185, "lb"),
  27130. name: "Front",
  27131. image: {
  27132. source: "./media/characters/aman-aquila/front.svg",
  27133. extra: 1013 / 976,
  27134. bottom: 45.6 / 1057
  27135. }
  27136. },
  27137. side: {
  27138. height: math.unit(5 + 7 / 12, "feet"),
  27139. weight: math.unit(185, "lb"),
  27140. name: "Side",
  27141. image: {
  27142. source: "./media/characters/aman-aquila/side.svg",
  27143. extra: 1054 / 1011,
  27144. bottom: 15 / 1070
  27145. }
  27146. },
  27147. back: {
  27148. height: math.unit(5 + 7 / 12, "feet"),
  27149. weight: math.unit(185, "lb"),
  27150. name: "Back",
  27151. image: {
  27152. source: "./media/characters/aman-aquila/back.svg",
  27153. extra: 1026 / 970,
  27154. bottom: 12 / 1039
  27155. }
  27156. },
  27157. head: {
  27158. height: math.unit(1.211, "feet"),
  27159. name: "Head",
  27160. image: {
  27161. source: "./media/characters/aman-aquila/head.svg",
  27162. }
  27163. },
  27164. },
  27165. [
  27166. {
  27167. name: "Minimicro",
  27168. height: math.unit(0.057, "inches")
  27169. },
  27170. {
  27171. name: "Micro",
  27172. height: math.unit(7, "inches")
  27173. },
  27174. {
  27175. name: "Mini",
  27176. height: math.unit(3 + 7 / 12, "feet")
  27177. },
  27178. {
  27179. name: "Normal",
  27180. height: math.unit(5 + 7 / 12, "feet"),
  27181. default: true
  27182. },
  27183. {
  27184. name: "Macro",
  27185. height: math.unit(157 + 7 / 12, "feet")
  27186. },
  27187. {
  27188. name: "Megamacro",
  27189. height: math.unit(1557 + 7 / 12, "feet")
  27190. },
  27191. {
  27192. name: "Gigamacro",
  27193. height: math.unit(15557 + 7 / 12, "feet")
  27194. },
  27195. ]
  27196. ))
  27197. characterMakers.push(() => makeCharacter(
  27198. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27199. {
  27200. front: {
  27201. height: math.unit(3 + 2 / 12, "inches"),
  27202. weight: math.unit(0.3, "ounces"),
  27203. name: "Front",
  27204. image: {
  27205. source: "./media/characters/hiphae/front.svg",
  27206. extra: 1931 / 1683,
  27207. bottom: 24 / 1955
  27208. }
  27209. },
  27210. },
  27211. [
  27212. {
  27213. name: "Normal",
  27214. height: math.unit(3 + 1 / 2, "inches"),
  27215. default: true
  27216. },
  27217. ]
  27218. ))
  27219. characterMakers.push(() => makeCharacter(
  27220. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27221. {
  27222. front: {
  27223. height: math.unit(5 + 10 / 12, "feet"),
  27224. weight: math.unit(165, "lb"),
  27225. name: "Front",
  27226. image: {
  27227. source: "./media/characters/nicky/front.svg",
  27228. extra: 3144 / 2886,
  27229. bottom: 45.6 / 3192
  27230. }
  27231. },
  27232. back: {
  27233. height: math.unit(5 + 10 / 12, "feet"),
  27234. weight: math.unit(165, "lb"),
  27235. name: "Back",
  27236. image: {
  27237. source: "./media/characters/nicky/back.svg",
  27238. extra: 3055 / 2804,
  27239. bottom: 28.4 / 3087
  27240. }
  27241. },
  27242. frontclothed: {
  27243. height: math.unit(5 + 10 / 12, "feet"),
  27244. weight: math.unit(165, "lb"),
  27245. name: "Front-clothed",
  27246. image: {
  27247. source: "./media/characters/nicky/front-clothed.svg",
  27248. extra: 3184.9 / 2926.9,
  27249. bottom: 86.5 / 3239.9
  27250. }
  27251. },
  27252. foot: {
  27253. height: math.unit(1.16, "feet"),
  27254. name: "Foot",
  27255. image: {
  27256. source: "./media/characters/nicky/foot.svg"
  27257. }
  27258. },
  27259. feet: {
  27260. height: math.unit(1.34, "feet"),
  27261. name: "Feet",
  27262. image: {
  27263. source: "./media/characters/nicky/feet.svg"
  27264. }
  27265. },
  27266. maw: {
  27267. height: math.unit(0.9, "feet"),
  27268. name: "Maw",
  27269. image: {
  27270. source: "./media/characters/nicky/maw.svg"
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(5 + 10 / 12, "feet"),
  27278. default: true
  27279. },
  27280. {
  27281. name: "Macro",
  27282. height: math.unit(60, "feet")
  27283. },
  27284. {
  27285. name: "Megamacro",
  27286. height: math.unit(1, "mile")
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27292. {
  27293. side: {
  27294. height: math.unit(10, "feet"),
  27295. weight: math.unit(600, "lb"),
  27296. name: "Side",
  27297. image: {
  27298. source: "./media/characters/blair/side.svg",
  27299. bottom: 16.6 / 475,
  27300. extra: 458 / 431
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Micro",
  27307. height: math.unit(8, "inches")
  27308. },
  27309. {
  27310. name: "Normal",
  27311. height: math.unit(10, "feet"),
  27312. default: true
  27313. },
  27314. {
  27315. name: "Macro",
  27316. height: math.unit(180, "feet")
  27317. },
  27318. ]
  27319. ))
  27320. characterMakers.push(() => makeCharacter(
  27321. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27322. {
  27323. front: {
  27324. height: math.unit(5 + 4 / 12, "feet"),
  27325. weight: math.unit(125, "lb"),
  27326. name: "Front",
  27327. image: {
  27328. source: "./media/characters/fisher/front.svg",
  27329. extra: 444 / 390,
  27330. bottom: 2 / 444.8
  27331. }
  27332. },
  27333. },
  27334. [
  27335. {
  27336. name: "Micro",
  27337. height: math.unit(4, "inches")
  27338. },
  27339. {
  27340. name: "Normal",
  27341. height: math.unit(5 + 4 / 12, "feet"),
  27342. default: true
  27343. },
  27344. {
  27345. name: "Macro",
  27346. height: math.unit(100, "feet")
  27347. },
  27348. ]
  27349. ))
  27350. characterMakers.push(() => makeCharacter(
  27351. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27352. {
  27353. front: {
  27354. height: math.unit(6.71, "feet"),
  27355. weight: math.unit(200, "lb"),
  27356. preyCapacity: math.unit(1000000, "people"),
  27357. name: "Front",
  27358. image: {
  27359. source: "./media/characters/gliss/front.svg",
  27360. extra: 2347 / 2231,
  27361. bottom: 113 / 2462
  27362. }
  27363. },
  27364. hammerspaceSize: {
  27365. height: math.unit(6.71 * 717, "feet"),
  27366. weight: math.unit(200, "lb"),
  27367. preyCapacity: math.unit(1000000, "people"),
  27368. name: "Hammerspace Size",
  27369. image: {
  27370. source: "./media/characters/gliss/front.svg",
  27371. extra: 2347 / 2231,
  27372. bottom: 113 / 2462
  27373. }
  27374. },
  27375. },
  27376. [
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(6.71, "feet"),
  27380. default: true
  27381. },
  27382. ]
  27383. ))
  27384. characterMakers.push(() => makeCharacter(
  27385. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27386. {
  27387. side: {
  27388. height: math.unit(1.44, "m"),
  27389. weight: math.unit(80, "kg"),
  27390. name: "Side",
  27391. image: {
  27392. source: "./media/characters/dune-anderson/side.svg",
  27393. bottom: 49 / 1426
  27394. }
  27395. },
  27396. },
  27397. [
  27398. {
  27399. name: "Wolf-sized",
  27400. height: math.unit(1.44, "meters")
  27401. },
  27402. {
  27403. name: "Normal",
  27404. height: math.unit(5.05, "meters"),
  27405. default: true
  27406. },
  27407. {
  27408. name: "Big",
  27409. height: math.unit(14.4, "meters")
  27410. },
  27411. {
  27412. name: "Huge",
  27413. height: math.unit(144, "meters")
  27414. },
  27415. ]
  27416. ))
  27417. characterMakers.push(() => makeCharacter(
  27418. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27419. {
  27420. front: {
  27421. height: math.unit(7, "feet"),
  27422. weight: math.unit(425, "lb"),
  27423. name: "Front",
  27424. image: {
  27425. source: "./media/characters/hind/front.svg",
  27426. extra: 2091 / 1860,
  27427. bottom: 129 / 2220
  27428. }
  27429. },
  27430. back: {
  27431. height: math.unit(7, "feet"),
  27432. weight: math.unit(425, "lb"),
  27433. name: "Back",
  27434. image: {
  27435. source: "./media/characters/hind/back.svg",
  27436. extra: 2091 / 1860,
  27437. bottom: 24.6 / 2309
  27438. }
  27439. },
  27440. tail: {
  27441. height: math.unit(2.8, "feet"),
  27442. name: "Tail",
  27443. image: {
  27444. source: "./media/characters/hind/tail.svg"
  27445. }
  27446. },
  27447. head: {
  27448. height: math.unit(2.55, "feet"),
  27449. name: "Head",
  27450. image: {
  27451. source: "./media/characters/hind/head.svg"
  27452. }
  27453. },
  27454. },
  27455. [
  27456. {
  27457. name: "XS",
  27458. height: math.unit(0.7, "feet")
  27459. },
  27460. {
  27461. name: "Normal",
  27462. height: math.unit(7, "feet"),
  27463. default: true
  27464. },
  27465. {
  27466. name: "XL",
  27467. height: math.unit(70, "feet")
  27468. },
  27469. ]
  27470. ))
  27471. characterMakers.push(() => makeCharacter(
  27472. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27473. {
  27474. front: {
  27475. height: math.unit(2.1, "meters"),
  27476. weight: math.unit(150, "lb"),
  27477. name: "Front",
  27478. image: {
  27479. source: "./media/characters/tharquench-sizestealer/front.svg",
  27480. extra: 1605/1470,
  27481. bottom: 36/1641
  27482. }
  27483. },
  27484. frontAlt: {
  27485. height: math.unit(2.1, "meters"),
  27486. weight: math.unit(150, "lb"),
  27487. name: "Front (Alt)",
  27488. image: {
  27489. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27490. extra: 2318 / 2063,
  27491. bottom: 93.4 / 2410
  27492. }
  27493. },
  27494. },
  27495. [
  27496. {
  27497. name: "Nano",
  27498. height: math.unit(1, "mm")
  27499. },
  27500. {
  27501. name: "Micro",
  27502. height: math.unit(1, "cm")
  27503. },
  27504. {
  27505. name: "Normal",
  27506. height: math.unit(2.1, "meters"),
  27507. default: true
  27508. },
  27509. ]
  27510. ))
  27511. characterMakers.push(() => makeCharacter(
  27512. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27513. {
  27514. front: {
  27515. height: math.unit(7 + 5 / 12, "feet"),
  27516. weight: math.unit(357, "lb"),
  27517. name: "Front",
  27518. image: {
  27519. source: "./media/characters/solex-draconov/front.svg",
  27520. extra: 1993 / 1865,
  27521. bottom: 117 / 2111
  27522. }
  27523. },
  27524. },
  27525. [
  27526. {
  27527. name: "Natural Height",
  27528. height: math.unit(7 + 5 / 12, "feet"),
  27529. default: true
  27530. },
  27531. {
  27532. name: "Macro",
  27533. height: math.unit(350, "feet")
  27534. },
  27535. {
  27536. name: "Macro+",
  27537. height: math.unit(1000, "feet")
  27538. },
  27539. {
  27540. name: "Megamacro",
  27541. height: math.unit(20, "km")
  27542. },
  27543. {
  27544. name: "Megamacro+",
  27545. height: math.unit(1000, "km")
  27546. },
  27547. {
  27548. name: "Gigamacro",
  27549. height: math.unit(2.5, "Gm")
  27550. },
  27551. {
  27552. name: "Teramacro",
  27553. height: math.unit(15, "Tm")
  27554. },
  27555. {
  27556. name: "Galactic",
  27557. height: math.unit(30, "Zm")
  27558. },
  27559. {
  27560. name: "Universal",
  27561. height: math.unit(21000, "Ym")
  27562. },
  27563. {
  27564. name: "Omniversal",
  27565. height: math.unit(9.861e50, "Ym")
  27566. },
  27567. {
  27568. name: "Existential",
  27569. height: math.unit(1e300, "meters")
  27570. },
  27571. ]
  27572. ))
  27573. characterMakers.push(() => makeCharacter(
  27574. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27575. {
  27576. side: {
  27577. height: math.unit(25, "feet"),
  27578. weight: math.unit(90000, "lb"),
  27579. name: "Side",
  27580. image: {
  27581. source: "./media/characters/mandarax/side.svg",
  27582. extra: 614 / 332,
  27583. bottom: 55 / 630
  27584. }
  27585. },
  27586. lounging: {
  27587. height: math.unit(15.4, "feet"),
  27588. weight: math.unit(90000, "lb"),
  27589. name: "Lounging",
  27590. image: {
  27591. source: "./media/characters/mandarax/lounging.svg",
  27592. extra: 817/609,
  27593. bottom: 685/1502
  27594. }
  27595. },
  27596. head: {
  27597. height: math.unit(11.4, "feet"),
  27598. name: "Head",
  27599. image: {
  27600. source: "./media/characters/mandarax/head.svg"
  27601. }
  27602. },
  27603. belly: {
  27604. height: math.unit(33, "feet"),
  27605. name: "Belly",
  27606. preyCapacity: math.unit(500, "people"),
  27607. image: {
  27608. source: "./media/characters/mandarax/belly.svg"
  27609. }
  27610. },
  27611. dick: {
  27612. height: math.unit(8.46, "feet"),
  27613. name: "Dick",
  27614. image: {
  27615. source: "./media/characters/mandarax/dick.svg"
  27616. }
  27617. },
  27618. top: {
  27619. height: math.unit(28, "meters"),
  27620. name: "Top",
  27621. image: {
  27622. source: "./media/characters/mandarax/top.svg"
  27623. }
  27624. },
  27625. },
  27626. [
  27627. {
  27628. name: "Normal",
  27629. height: math.unit(25, "feet"),
  27630. default: true
  27631. },
  27632. ]
  27633. ))
  27634. characterMakers.push(() => makeCharacter(
  27635. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27636. {
  27637. front: {
  27638. height: math.unit(5, "feet"),
  27639. weight: math.unit(90, "lb"),
  27640. name: "Front",
  27641. image: {
  27642. source: "./media/characters/pixil/front.svg",
  27643. extra: 2000 / 1618,
  27644. bottom: 12.3 / 2011
  27645. }
  27646. },
  27647. },
  27648. [
  27649. {
  27650. name: "Normal",
  27651. height: math.unit(5, "feet"),
  27652. default: true
  27653. },
  27654. {
  27655. name: "Megamacro",
  27656. height: math.unit(10, "miles"),
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27662. {
  27663. front: {
  27664. height: math.unit(7 + 2 / 12, "feet"),
  27665. weight: math.unit(200, "lb"),
  27666. name: "Front",
  27667. image: {
  27668. source: "./media/characters/angel/front.svg",
  27669. extra: 1946/1840,
  27670. bottom: 30/1976
  27671. }
  27672. },
  27673. },
  27674. [
  27675. {
  27676. name: "Normal",
  27677. height: math.unit(7 + 2 / 12, "feet"),
  27678. default: true
  27679. },
  27680. {
  27681. name: "Macro",
  27682. height: math.unit(1000, "feet")
  27683. },
  27684. {
  27685. name: "Megamacro",
  27686. height: math.unit(2, "miles")
  27687. },
  27688. {
  27689. name: "Gigamacro",
  27690. height: math.unit(20, "earths")
  27691. },
  27692. ]
  27693. ))
  27694. characterMakers.push(() => makeCharacter(
  27695. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27696. {
  27697. front: {
  27698. height: math.unit(5, "feet"),
  27699. weight: math.unit(180, "lb"),
  27700. name: "Front",
  27701. image: {
  27702. source: "./media/characters/mekana/front.svg",
  27703. extra: 1671 / 1605,
  27704. bottom: 3.5 / 1691
  27705. }
  27706. },
  27707. side: {
  27708. height: math.unit(5, "feet"),
  27709. weight: math.unit(180, "lb"),
  27710. name: "Side",
  27711. image: {
  27712. source: "./media/characters/mekana/side.svg",
  27713. extra: 1671 / 1605,
  27714. bottom: 3.5 / 1691
  27715. }
  27716. },
  27717. back: {
  27718. height: math.unit(5, "feet"),
  27719. weight: math.unit(180, "lb"),
  27720. name: "Back",
  27721. image: {
  27722. source: "./media/characters/mekana/back.svg",
  27723. extra: 1671 / 1605,
  27724. bottom: 3.5 / 1691
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Normal",
  27731. height: math.unit(5, "feet"),
  27732. default: true
  27733. },
  27734. ]
  27735. ))
  27736. characterMakers.push(() => makeCharacter(
  27737. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27738. {
  27739. front: {
  27740. height: math.unit(4 + 6 / 12, "feet"),
  27741. weight: math.unit(80, "lb"),
  27742. name: "Front",
  27743. image: {
  27744. source: "./media/characters/pixie/front.svg",
  27745. extra: 1924 / 1825,
  27746. bottom: 22.4 / 1946
  27747. }
  27748. },
  27749. },
  27750. [
  27751. {
  27752. name: "Normal",
  27753. height: math.unit(4 + 6 / 12, "feet"),
  27754. default: true
  27755. },
  27756. {
  27757. name: "Macro",
  27758. height: math.unit(40, "feet")
  27759. },
  27760. ]
  27761. ))
  27762. characterMakers.push(() => makeCharacter(
  27763. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27764. {
  27765. front: {
  27766. height: math.unit(2.1, "meters"),
  27767. weight: math.unit(200, "lb"),
  27768. name: "Front",
  27769. image: {
  27770. source: "./media/characters/the-lascivious/front.svg",
  27771. extra: 1 / 0.893,
  27772. bottom: 3.5 / 573.7
  27773. }
  27774. },
  27775. },
  27776. [
  27777. {
  27778. name: "Human Scale",
  27779. height: math.unit(2.1, "meters")
  27780. },
  27781. {
  27782. name: "Wolxi Scale",
  27783. height: math.unit(46.2, "m"),
  27784. default: true
  27785. },
  27786. {
  27787. name: "Boinker of Buildings",
  27788. height: math.unit(10, "km")
  27789. },
  27790. {
  27791. name: "Shagger of Skyscrapers",
  27792. height: math.unit(40, "km")
  27793. },
  27794. {
  27795. name: "Banger of Boroughs",
  27796. height: math.unit(4000, "km")
  27797. },
  27798. {
  27799. name: "Screwer of States",
  27800. height: math.unit(100000, "km")
  27801. },
  27802. {
  27803. name: "Pounder of Planets",
  27804. height: math.unit(2000000, "km")
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27810. {
  27811. front: {
  27812. height: math.unit(6, "feet"),
  27813. weight: math.unit(150, "lb"),
  27814. name: "Front",
  27815. image: {
  27816. source: "./media/characters/aj/front.svg",
  27817. extra: 2039 / 1562,
  27818. bottom: 40 / 2079
  27819. }
  27820. },
  27821. },
  27822. [
  27823. {
  27824. name: "Normal",
  27825. height: math.unit(11 + 6 / 12, "feet"),
  27826. default: true
  27827. },
  27828. {
  27829. name: "Megamacro",
  27830. height: math.unit(60, "megameters")
  27831. },
  27832. ]
  27833. ))
  27834. characterMakers.push(() => makeCharacter(
  27835. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27836. {
  27837. side: {
  27838. height: math.unit(31 + 8 / 12, "feet"),
  27839. weight: math.unit(75000, "kg"),
  27840. name: "Side",
  27841. image: {
  27842. source: "./media/characters/koros/side.svg",
  27843. extra: 1442 / 1297,
  27844. bottom: 122.7 / 1562
  27845. }
  27846. },
  27847. dicksKingsCrown: {
  27848. height: math.unit(6, "feet"),
  27849. name: "Dicks (King's Crown)",
  27850. image: {
  27851. source: "./media/characters/koros/dicks-kings-crown.svg"
  27852. }
  27853. },
  27854. dicksTailSet: {
  27855. height: math.unit(3, "feet"),
  27856. name: "Dicks (Tail Set)",
  27857. image: {
  27858. source: "./media/characters/koros/dicks-tail-set.svg"
  27859. }
  27860. },
  27861. dickCumming: {
  27862. height: math.unit(7.98, "feet"),
  27863. name: "Dick (Cumming)",
  27864. image: {
  27865. source: "./media/characters/koros/dick-cumming.svg"
  27866. }
  27867. },
  27868. dicksBack: {
  27869. height: math.unit(5.9, "feet"),
  27870. name: "Dicks (Back)",
  27871. image: {
  27872. source: "./media/characters/koros/dicks-back.svg"
  27873. }
  27874. },
  27875. dicksFront: {
  27876. height: math.unit(3.72, "feet"),
  27877. name: "Dicks (Front)",
  27878. image: {
  27879. source: "./media/characters/koros/dicks-front.svg"
  27880. }
  27881. },
  27882. dicksPeeking: {
  27883. height: math.unit(3.0, "feet"),
  27884. name: "Dicks (Peeking)",
  27885. image: {
  27886. source: "./media/characters/koros/dicks-peeking.svg"
  27887. }
  27888. },
  27889. eye: {
  27890. height: math.unit(1.7, "feet"),
  27891. name: "Eye",
  27892. image: {
  27893. source: "./media/characters/koros/eye.svg"
  27894. }
  27895. },
  27896. headFront: {
  27897. height: math.unit(11.69, "feet"),
  27898. name: "Head (Front)",
  27899. image: {
  27900. source: "./media/characters/koros/head-front.svg"
  27901. }
  27902. },
  27903. headSide: {
  27904. height: math.unit(14, "feet"),
  27905. name: "Head (Side)",
  27906. image: {
  27907. source: "./media/characters/koros/head-side.svg"
  27908. }
  27909. },
  27910. leg: {
  27911. height: math.unit(17, "feet"),
  27912. name: "Leg",
  27913. image: {
  27914. source: "./media/characters/koros/leg.svg"
  27915. }
  27916. },
  27917. mawSide: {
  27918. height: math.unit(12.8, "feet"),
  27919. name: "Maw (Side)",
  27920. image: {
  27921. source: "./media/characters/koros/maw-side.svg"
  27922. }
  27923. },
  27924. mawSpitting: {
  27925. height: math.unit(17, "feet"),
  27926. name: "Maw (Spitting)",
  27927. image: {
  27928. source: "./media/characters/koros/maw-spitting.svg"
  27929. }
  27930. },
  27931. slit: {
  27932. height: math.unit(2.8, "feet"),
  27933. name: "Slit",
  27934. image: {
  27935. source: "./media/characters/koros/slit.svg"
  27936. }
  27937. },
  27938. stomach: {
  27939. height: math.unit(6.8, "feet"),
  27940. preyCapacity: math.unit(20, "people"),
  27941. name: "Stomach",
  27942. image: {
  27943. source: "./media/characters/koros/stomach.svg"
  27944. }
  27945. },
  27946. wingspanBottom: {
  27947. height: math.unit(114, "feet"),
  27948. name: "Wingspan (Bottom)",
  27949. image: {
  27950. source: "./media/characters/koros/wingspan-bottom.svg"
  27951. }
  27952. },
  27953. wingspanTop: {
  27954. height: math.unit(104, "feet"),
  27955. name: "Wingspan (Top)",
  27956. image: {
  27957. source: "./media/characters/koros/wingspan-top.svg"
  27958. }
  27959. },
  27960. },
  27961. [
  27962. {
  27963. name: "Normal",
  27964. height: math.unit(31 + 8 / 12, "feet"),
  27965. default: true
  27966. },
  27967. ]
  27968. ))
  27969. characterMakers.push(() => makeCharacter(
  27970. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27971. {
  27972. front: {
  27973. height: math.unit(18 + 5 / 12, "feet"),
  27974. weight: math.unit(3750, "kg"),
  27975. name: "Front",
  27976. image: {
  27977. source: "./media/characters/vexx/front.svg",
  27978. extra: 426 / 396,
  27979. bottom: 31.5 / 458
  27980. }
  27981. },
  27982. maw: {
  27983. height: math.unit(6, "feet"),
  27984. name: "Maw",
  27985. image: {
  27986. source: "./media/characters/vexx/maw.svg"
  27987. }
  27988. },
  27989. },
  27990. [
  27991. {
  27992. name: "Normal",
  27993. height: math.unit(18 + 5 / 12, "feet"),
  27994. default: true
  27995. },
  27996. ]
  27997. ))
  27998. characterMakers.push(() => makeCharacter(
  27999. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28000. {
  28001. front: {
  28002. height: math.unit(17 + 6 / 12, "feet"),
  28003. weight: math.unit(150, "lb"),
  28004. name: "Front",
  28005. image: {
  28006. source: "./media/characters/baadra/front.svg",
  28007. extra: 1694/1553,
  28008. bottom: 179/1873
  28009. }
  28010. },
  28011. frontAlt: {
  28012. height: math.unit(17 + 6 / 12, "feet"),
  28013. weight: math.unit(150, "lb"),
  28014. name: "Front (Alt)",
  28015. image: {
  28016. source: "./media/characters/baadra/front-alt.svg",
  28017. extra: 3137 / 2890,
  28018. bottom: 168.4 / 3305
  28019. }
  28020. },
  28021. back: {
  28022. height: math.unit(17 + 6 / 12, "feet"),
  28023. weight: math.unit(150, "lb"),
  28024. name: "Back",
  28025. image: {
  28026. source: "./media/characters/baadra/back.svg",
  28027. extra: 3142 / 2890,
  28028. bottom: 220 / 3371
  28029. }
  28030. },
  28031. head: {
  28032. height: math.unit(5.45, "feet"),
  28033. name: "Head",
  28034. image: {
  28035. source: "./media/characters/baadra/head.svg"
  28036. }
  28037. },
  28038. headAngry: {
  28039. height: math.unit(4.95, "feet"),
  28040. name: "Head (Angry)",
  28041. image: {
  28042. source: "./media/characters/baadra/head-angry.svg"
  28043. }
  28044. },
  28045. headOpen: {
  28046. height: math.unit(6, "feet"),
  28047. name: "Head (Open)",
  28048. image: {
  28049. source: "./media/characters/baadra/head-open.svg"
  28050. }
  28051. },
  28052. },
  28053. [
  28054. {
  28055. name: "Normal",
  28056. height: math.unit(17 + 6 / 12, "feet"),
  28057. default: true
  28058. },
  28059. ]
  28060. ))
  28061. characterMakers.push(() => makeCharacter(
  28062. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28063. {
  28064. front: {
  28065. height: math.unit(7 + 3 / 12, "feet"),
  28066. weight: math.unit(180, "lb"),
  28067. name: "Front",
  28068. image: {
  28069. source: "./media/characters/juri/front.svg",
  28070. extra: 1401 / 1237,
  28071. bottom: 18.5 / 1418
  28072. }
  28073. },
  28074. side: {
  28075. height: math.unit(7 + 3 / 12, "feet"),
  28076. weight: math.unit(180, "lb"),
  28077. name: "Side",
  28078. image: {
  28079. source: "./media/characters/juri/side.svg",
  28080. extra: 1424 / 1242,
  28081. bottom: 18.5 / 1447
  28082. }
  28083. },
  28084. sitting: {
  28085. height: math.unit(6, "feet"),
  28086. weight: math.unit(180, "lb"),
  28087. name: "Sitting",
  28088. image: {
  28089. source: "./media/characters/juri/sitting.svg",
  28090. extra: 1270 / 1143,
  28091. bottom: 100 / 1343
  28092. }
  28093. },
  28094. back: {
  28095. height: math.unit(7 + 3 / 12, "feet"),
  28096. weight: math.unit(180, "lb"),
  28097. name: "Back",
  28098. image: {
  28099. source: "./media/characters/juri/back.svg",
  28100. extra: 1377 / 1240,
  28101. bottom: 23.7 / 1405
  28102. }
  28103. },
  28104. maw: {
  28105. height: math.unit(2.8, "feet"),
  28106. name: "Maw",
  28107. image: {
  28108. source: "./media/characters/juri/maw.svg"
  28109. }
  28110. },
  28111. stomach: {
  28112. height: math.unit(0.89, "feet"),
  28113. preyCapacity: math.unit(4, "liters"),
  28114. name: "Stomach",
  28115. image: {
  28116. source: "./media/characters/juri/stomach.svg"
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(7 + 3 / 12, "feet"),
  28124. default: true
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28130. {
  28131. fox: {
  28132. height: math.unit(5 + 6 / 12, "feet"),
  28133. weight: math.unit(140, "lb"),
  28134. name: "Fox",
  28135. image: {
  28136. source: "./media/characters/maxene-sita/fox.svg",
  28137. extra: 146 / 138,
  28138. bottom: 2.1 / 148.19
  28139. }
  28140. },
  28141. foxLaying: {
  28142. height: math.unit(1.70, "feet"),
  28143. weight: math.unit(140, "lb"),
  28144. name: "Fox (Laying)",
  28145. image: {
  28146. source: "./media/characters/maxene-sita/fox-laying.svg",
  28147. extra: 910 / 572,
  28148. bottom: 71 / 981
  28149. }
  28150. },
  28151. kitsune: {
  28152. height: math.unit(10, "feet"),
  28153. weight: math.unit(800, "lb"),
  28154. name: "Kitsune",
  28155. image: {
  28156. source: "./media/characters/maxene-sita/kitsune.svg",
  28157. extra: 185 / 176,
  28158. bottom: 4.7 / 189.9
  28159. }
  28160. },
  28161. hellhound: {
  28162. height: math.unit(10, "feet"),
  28163. weight: math.unit(700, "lb"),
  28164. name: "Hellhound",
  28165. image: {
  28166. source: "./media/characters/maxene-sita/hellhound.svg",
  28167. extra: 1600 / 1545,
  28168. bottom: 81 / 1681
  28169. }
  28170. },
  28171. },
  28172. [
  28173. {
  28174. name: "Normal",
  28175. height: math.unit(5 + 6 / 12, "feet"),
  28176. default: true
  28177. },
  28178. ]
  28179. ))
  28180. characterMakers.push(() => makeCharacter(
  28181. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28182. {
  28183. front: {
  28184. height: math.unit(3 + 4 / 12, "feet"),
  28185. weight: math.unit(70, "lb"),
  28186. name: "Front",
  28187. image: {
  28188. source: "./media/characters/maia/front.svg",
  28189. extra: 227 / 219.5,
  28190. bottom: 40 / 267
  28191. }
  28192. },
  28193. back: {
  28194. height: math.unit(3 + 4 / 12, "feet"),
  28195. weight: math.unit(70, "lb"),
  28196. name: "Back",
  28197. image: {
  28198. source: "./media/characters/maia/back.svg",
  28199. extra: 237 / 225
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Normal",
  28206. height: math.unit(3 + 4 / 12, "feet"),
  28207. default: true
  28208. },
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28213. {
  28214. front: {
  28215. height: math.unit(5 + 10 / 12, "feet"),
  28216. weight: math.unit(197, "lb"),
  28217. name: "Front",
  28218. image: {
  28219. source: "./media/characters/jabaro/front.svg",
  28220. extra: 225 / 216,
  28221. bottom: 5.06 / 230
  28222. }
  28223. },
  28224. back: {
  28225. height: math.unit(5 + 10 / 12, "feet"),
  28226. weight: math.unit(197, "lb"),
  28227. name: "Back",
  28228. image: {
  28229. source: "./media/characters/jabaro/back.svg",
  28230. extra: 225 / 219,
  28231. bottom: 1.9 / 227
  28232. }
  28233. },
  28234. },
  28235. [
  28236. {
  28237. name: "Normal",
  28238. height: math.unit(5 + 10 / 12, "feet"),
  28239. default: true
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28245. {
  28246. front: {
  28247. height: math.unit(5 + 8 / 12, "feet"),
  28248. weight: math.unit(139, "lb"),
  28249. name: "Front",
  28250. image: {
  28251. source: "./media/characters/risa/front.svg",
  28252. extra: 270 / 260,
  28253. bottom: 11.2 / 282
  28254. }
  28255. },
  28256. back: {
  28257. height: math.unit(5 + 8 / 12, "feet"),
  28258. weight: math.unit(139, "lb"),
  28259. name: "Back",
  28260. image: {
  28261. source: "./media/characters/risa/back.svg",
  28262. extra: 264 / 255,
  28263. bottom: 4 / 268
  28264. }
  28265. },
  28266. },
  28267. [
  28268. {
  28269. name: "Normal",
  28270. height: math.unit(5 + 8 / 12, "feet"),
  28271. default: true
  28272. },
  28273. ]
  28274. ))
  28275. characterMakers.push(() => makeCharacter(
  28276. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28277. {
  28278. front: {
  28279. height: math.unit(2 + 11 / 12, "feet"),
  28280. weight: math.unit(30, "lb"),
  28281. name: "Front",
  28282. image: {
  28283. source: "./media/characters/weatley/front.svg",
  28284. bottom: 10.7 / 414,
  28285. extra: 403.5 / 362
  28286. }
  28287. },
  28288. back: {
  28289. height: math.unit(2 + 11 / 12, "feet"),
  28290. weight: math.unit(30, "lb"),
  28291. name: "Back",
  28292. image: {
  28293. source: "./media/characters/weatley/back.svg",
  28294. bottom: 10.7 / 414,
  28295. extra: 403.5 / 362
  28296. }
  28297. },
  28298. },
  28299. [
  28300. {
  28301. name: "Normal",
  28302. height: math.unit(2 + 11 / 12, "feet"),
  28303. default: true
  28304. },
  28305. ]
  28306. ))
  28307. characterMakers.push(() => makeCharacter(
  28308. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28309. {
  28310. front: {
  28311. height: math.unit(5 + 2 / 12, "feet"),
  28312. weight: math.unit(50, "kg"),
  28313. name: "Front",
  28314. image: {
  28315. source: "./media/characters/mercury-crescent/front.svg",
  28316. extra: 1088 / 1033,
  28317. bottom: 18.9 / 1109
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(5 + 2 / 12, "feet"),
  28325. default: true
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28331. {
  28332. front: {
  28333. height: math.unit(2, "feet"),
  28334. weight: math.unit(15, "kg"),
  28335. name: "Front",
  28336. image: {
  28337. source: "./media/characters/diamond-jones/front.svg",
  28338. extra: 727/723,
  28339. bottom: 46/773
  28340. }
  28341. },
  28342. },
  28343. [
  28344. {
  28345. name: "Normal",
  28346. height: math.unit(2, "feet"),
  28347. default: true
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28353. {
  28354. front: {
  28355. height: math.unit(3, "feet"),
  28356. weight: math.unit(30, "kg"),
  28357. name: "Front",
  28358. image: {
  28359. source: "./media/characters/sweet-bit/front.svg",
  28360. extra: 675 / 567,
  28361. bottom: 27.7 / 703
  28362. }
  28363. },
  28364. },
  28365. [
  28366. {
  28367. name: "Normal",
  28368. height: math.unit(3, "feet"),
  28369. default: true
  28370. },
  28371. ]
  28372. ))
  28373. characterMakers.push(() => makeCharacter(
  28374. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28375. {
  28376. side: {
  28377. height: math.unit(9.178, "feet"),
  28378. weight: math.unit(500, "lb"),
  28379. name: "Side",
  28380. image: {
  28381. source: "./media/characters/umbrazen/side.svg",
  28382. extra: 1730 / 1473,
  28383. bottom: 34.6 / 1765
  28384. }
  28385. },
  28386. },
  28387. [
  28388. {
  28389. name: "Normal",
  28390. height: math.unit(9.178, "feet"),
  28391. default: true
  28392. },
  28393. ]
  28394. ))
  28395. characterMakers.push(() => makeCharacter(
  28396. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28397. {
  28398. front: {
  28399. height: math.unit(10, "feet"),
  28400. weight: math.unit(750, "lb"),
  28401. name: "Front",
  28402. image: {
  28403. source: "./media/characters/arlist/front.svg",
  28404. extra: 961 / 778,
  28405. bottom: 6.2 / 986
  28406. }
  28407. },
  28408. },
  28409. [
  28410. {
  28411. name: "Normal",
  28412. height: math.unit(10, "feet"),
  28413. default: true
  28414. },
  28415. ]
  28416. ))
  28417. characterMakers.push(() => makeCharacter(
  28418. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28419. {
  28420. front: {
  28421. height: math.unit(5 + 1 / 12, "feet"),
  28422. weight: math.unit(110, "lb"),
  28423. name: "Front",
  28424. image: {
  28425. source: "./media/characters/aradel/front.svg",
  28426. extra: 324 / 303,
  28427. bottom: 3.6 / 329.4
  28428. }
  28429. },
  28430. },
  28431. [
  28432. {
  28433. name: "Normal",
  28434. height: math.unit(5 + 1 / 12, "feet"),
  28435. default: true
  28436. },
  28437. ]
  28438. ))
  28439. characterMakers.push(() => makeCharacter(
  28440. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28441. {
  28442. dressed: {
  28443. height: math.unit(3 + 8 / 12, "feet"),
  28444. weight: math.unit(50, "lb"),
  28445. name: "Dressed",
  28446. image: {
  28447. source: "./media/characters/serryn/dressed.svg",
  28448. extra: 1792 / 1656,
  28449. bottom: 43.5 / 1840
  28450. }
  28451. },
  28452. nude: {
  28453. height: math.unit(3 + 8 / 12, "feet"),
  28454. weight: math.unit(50, "lb"),
  28455. name: "Nude",
  28456. image: {
  28457. source: "./media/characters/serryn/nude.svg",
  28458. extra: 1792 / 1656,
  28459. bottom: 43.5 / 1840
  28460. }
  28461. },
  28462. },
  28463. [
  28464. {
  28465. name: "Normal",
  28466. height: math.unit(3 + 8 / 12, "feet"),
  28467. default: true
  28468. },
  28469. ]
  28470. ))
  28471. characterMakers.push(() => makeCharacter(
  28472. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28473. {
  28474. front: {
  28475. height: math.unit(7 + 10 / 12, "feet"),
  28476. weight: math.unit(255, "lb"),
  28477. name: "Front",
  28478. image: {
  28479. source: "./media/characters/xavier-thyme/front.svg",
  28480. extra: 3733 / 3642,
  28481. bottom: 131 / 3869
  28482. }
  28483. },
  28484. frontRaven: {
  28485. height: math.unit(7 + 10 / 12, "feet"),
  28486. weight: math.unit(255, "lb"),
  28487. name: "Front (Raven)",
  28488. image: {
  28489. source: "./media/characters/xavier-thyme/front-raven.svg",
  28490. extra: 4385 / 3642,
  28491. bottom: 131 / 4517
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(7 + 10 / 12, "feet"),
  28499. default: true
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28505. {
  28506. front: {
  28507. height: math.unit(1.6, "m"),
  28508. weight: math.unit(50, "kg"),
  28509. name: "Front",
  28510. image: {
  28511. source: "./media/characters/kiki/front.svg",
  28512. extra: 4682 / 3610,
  28513. bottom: 115 / 4777
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Normal",
  28520. height: math.unit(1.6, "meters"),
  28521. default: true
  28522. },
  28523. ]
  28524. ))
  28525. characterMakers.push(() => makeCharacter(
  28526. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28527. {
  28528. front: {
  28529. height: math.unit(50, "m"),
  28530. weight: math.unit(500, "tonnes"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/ryoko/front.svg",
  28534. extra: 4632 / 3926,
  28535. bottom: 193 / 4823
  28536. }
  28537. },
  28538. },
  28539. [
  28540. {
  28541. name: "Normal",
  28542. height: math.unit(50, "meters"),
  28543. default: true
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28549. {
  28550. front: {
  28551. height: math.unit(30, "m"),
  28552. weight: math.unit(22, "tonnes"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/elio/front.svg",
  28556. extra: 4582 / 3720,
  28557. bottom: 236 / 4828
  28558. }
  28559. },
  28560. },
  28561. [
  28562. {
  28563. name: "Normal",
  28564. height: math.unit(30, "meters"),
  28565. default: true
  28566. },
  28567. ]
  28568. ))
  28569. characterMakers.push(() => makeCharacter(
  28570. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28571. {
  28572. front: {
  28573. height: math.unit(6 + 3 / 12, "feet"),
  28574. weight: math.unit(120, "lb"),
  28575. name: "Front",
  28576. image: {
  28577. source: "./media/characters/azura/front.svg",
  28578. extra: 1149 / 1135,
  28579. bottom: 45 / 1194
  28580. }
  28581. },
  28582. frontClothed: {
  28583. height: math.unit(6 + 3 / 12, "feet"),
  28584. weight: math.unit(120, "lb"),
  28585. name: "Front (Clothed)",
  28586. image: {
  28587. source: "./media/characters/azura/front-clothed.svg",
  28588. extra: 1149 / 1135,
  28589. bottom: 45 / 1194
  28590. }
  28591. },
  28592. },
  28593. [
  28594. {
  28595. name: "Normal",
  28596. height: math.unit(6 + 3 / 12, "feet"),
  28597. default: true
  28598. },
  28599. {
  28600. name: "Macro",
  28601. height: math.unit(20 + 6 / 12, "feet")
  28602. },
  28603. {
  28604. name: "Megamacro",
  28605. height: math.unit(12, "miles")
  28606. },
  28607. {
  28608. name: "Gigamacro",
  28609. height: math.unit(10000, "miles")
  28610. },
  28611. {
  28612. name: "Teramacro",
  28613. height: math.unit(900000, "miles")
  28614. },
  28615. ]
  28616. ))
  28617. characterMakers.push(() => makeCharacter(
  28618. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28619. {
  28620. front: {
  28621. height: math.unit(12, "feet"),
  28622. weight: math.unit(1, "ton"),
  28623. capacity: math.unit(660000, "gallons"),
  28624. name: "Front",
  28625. image: {
  28626. source: "./media/characters/zeus/front.svg",
  28627. extra: 5005 / 4717,
  28628. bottom: 363 / 5388
  28629. }
  28630. },
  28631. },
  28632. [
  28633. {
  28634. name: "Normal",
  28635. height: math.unit(12, "feet")
  28636. },
  28637. {
  28638. name: "Preferred Size",
  28639. height: math.unit(0.5, "miles"),
  28640. default: true
  28641. },
  28642. {
  28643. name: "Giga Horse",
  28644. height: math.unit(300, "miles")
  28645. },
  28646. {
  28647. name: "Riding Planets",
  28648. height: math.unit(30, "megameters")
  28649. },
  28650. {
  28651. name: "Cosmic Giant",
  28652. height: math.unit(3, "zettameters")
  28653. },
  28654. {
  28655. name: "Breeding God",
  28656. height: math.unit(9.92e22, "yottameters")
  28657. },
  28658. ]
  28659. ))
  28660. characterMakers.push(() => makeCharacter(
  28661. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28662. {
  28663. side: {
  28664. height: math.unit(9, "feet"),
  28665. weight: math.unit(1500, "kg"),
  28666. name: "Side",
  28667. image: {
  28668. source: "./media/characters/fang/side.svg",
  28669. extra: 924 / 866,
  28670. bottom: 47.5 / 972.3
  28671. }
  28672. },
  28673. },
  28674. [
  28675. {
  28676. name: "Normal",
  28677. height: math.unit(9, "feet"),
  28678. default: true
  28679. },
  28680. {
  28681. name: "Macro",
  28682. height: math.unit(75 + 6 / 12, "feet")
  28683. },
  28684. {
  28685. name: "Teramacro",
  28686. height: math.unit(50000, "miles")
  28687. },
  28688. ]
  28689. ))
  28690. characterMakers.push(() => makeCharacter(
  28691. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28692. {
  28693. front: {
  28694. height: math.unit(10, "feet"),
  28695. weight: math.unit(2, "tons"),
  28696. name: "Front",
  28697. image: {
  28698. source: "./media/characters/rekhit/front.svg",
  28699. extra: 2796 / 2590,
  28700. bottom: 225 / 3022
  28701. }
  28702. },
  28703. },
  28704. [
  28705. {
  28706. name: "Normal",
  28707. height: math.unit(10, "feet"),
  28708. default: true
  28709. },
  28710. {
  28711. name: "Macro",
  28712. height: math.unit(500, "feet")
  28713. },
  28714. ]
  28715. ))
  28716. characterMakers.push(() => makeCharacter(
  28717. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28718. {
  28719. front: {
  28720. height: math.unit(7 + 6.451 / 12, "feet"),
  28721. weight: math.unit(310, "lb"),
  28722. name: "Front",
  28723. image: {
  28724. source: "./media/characters/dahlia-verrick/front.svg",
  28725. extra: 1488 / 1365,
  28726. bottom: 6.2 / 1495
  28727. }
  28728. },
  28729. back: {
  28730. height: math.unit(7 + 6.451 / 12, "feet"),
  28731. weight: math.unit(310, "lb"),
  28732. name: "Back",
  28733. image: {
  28734. source: "./media/characters/dahlia-verrick/back.svg",
  28735. extra: 1472 / 1351,
  28736. bottom: 5.28 / 1477
  28737. }
  28738. },
  28739. frontBusiness: {
  28740. height: math.unit(7 + 6.451 / 12, "feet"),
  28741. weight: math.unit(200, "lb"),
  28742. name: "Front (Business)",
  28743. image: {
  28744. source: "./media/characters/dahlia-verrick/front-business.svg",
  28745. extra: 1478 / 1381,
  28746. bottom: 5.5 / 1484
  28747. }
  28748. },
  28749. frontCasual: {
  28750. height: math.unit(7 + 6.451 / 12, "feet"),
  28751. weight: math.unit(200, "lb"),
  28752. name: "Front (Casual)",
  28753. image: {
  28754. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28755. extra: 1478 / 1381,
  28756. bottom: 5.5 / 1484
  28757. }
  28758. },
  28759. },
  28760. [
  28761. {
  28762. name: "Travel-Sized",
  28763. height: math.unit(7.45, "inches")
  28764. },
  28765. {
  28766. name: "Normal",
  28767. height: math.unit(7 + 6.451 / 12, "feet"),
  28768. default: true
  28769. },
  28770. {
  28771. name: "Hitting the Town",
  28772. height: math.unit(37 + 8 / 12, "feet")
  28773. },
  28774. {
  28775. name: "Stomp in the Suburbs",
  28776. height: math.unit(964 + 9.728 / 12, "feet")
  28777. },
  28778. {
  28779. name: "Sit on the City",
  28780. height: math.unit(61747 + 10.592 / 12, "feet")
  28781. },
  28782. {
  28783. name: "Glomp the Globe",
  28784. height: math.unit(252919327 + 4.832 / 12, "feet")
  28785. },
  28786. ]
  28787. ))
  28788. characterMakers.push(() => makeCharacter(
  28789. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28790. {
  28791. front: {
  28792. height: math.unit(6 + 4 / 12, "feet"),
  28793. weight: math.unit(320, "lb"),
  28794. name: "Front",
  28795. image: {
  28796. source: "./media/characters/balina-mahigan/front.svg",
  28797. extra: 447 / 428,
  28798. bottom: 18 / 466
  28799. }
  28800. },
  28801. back: {
  28802. height: math.unit(6 + 4 / 12, "feet"),
  28803. weight: math.unit(320, "lb"),
  28804. name: "Back",
  28805. image: {
  28806. source: "./media/characters/balina-mahigan/back.svg",
  28807. extra: 445 / 428,
  28808. bottom: 4.07 / 448
  28809. }
  28810. },
  28811. arm: {
  28812. height: math.unit(1.88, "feet"),
  28813. name: "Arm",
  28814. image: {
  28815. source: "./media/characters/balina-mahigan/arm.svg"
  28816. }
  28817. },
  28818. backPort: {
  28819. height: math.unit(0.685, "feet"),
  28820. name: "Back Port",
  28821. image: {
  28822. source: "./media/characters/balina-mahigan/back-port.svg"
  28823. }
  28824. },
  28825. hoofpaw: {
  28826. height: math.unit(1.41, "feet"),
  28827. name: "Hoofpaw",
  28828. image: {
  28829. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28830. }
  28831. },
  28832. leftHandBack: {
  28833. height: math.unit(0.938, "feet"),
  28834. name: "Left Hand (Back)",
  28835. image: {
  28836. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28837. }
  28838. },
  28839. leftHandFront: {
  28840. height: math.unit(0.938, "feet"),
  28841. name: "Left Hand (Front)",
  28842. image: {
  28843. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28844. }
  28845. },
  28846. rightHandBack: {
  28847. height: math.unit(0.95, "feet"),
  28848. name: "Right Hand (Back)",
  28849. image: {
  28850. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28851. }
  28852. },
  28853. rightHandFront: {
  28854. height: math.unit(0.95, "feet"),
  28855. name: "Right Hand (Front)",
  28856. image: {
  28857. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28858. }
  28859. },
  28860. },
  28861. [
  28862. {
  28863. name: "Normal",
  28864. height: math.unit(6 + 4 / 12, "feet"),
  28865. default: true
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28871. {
  28872. front: {
  28873. height: math.unit(6, "feet"),
  28874. weight: math.unit(320, "lb"),
  28875. name: "Front",
  28876. image: {
  28877. source: "./media/characters/balina-mejeri/front.svg",
  28878. extra: 517 / 488,
  28879. bottom: 44.2 / 561
  28880. }
  28881. },
  28882. },
  28883. [
  28884. {
  28885. name: "Normal",
  28886. height: math.unit(6 + 4 / 12, "feet")
  28887. },
  28888. {
  28889. name: "Business",
  28890. height: math.unit(155, "feet"),
  28891. default: true
  28892. },
  28893. ]
  28894. ))
  28895. characterMakers.push(() => makeCharacter(
  28896. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28897. {
  28898. kneeling: {
  28899. height: math.unit(6 + 4 / 12, "feet"),
  28900. weight: math.unit(300 * 20, "lb"),
  28901. name: "Kneeling",
  28902. image: {
  28903. source: "./media/characters/balbarian/kneeling.svg",
  28904. extra: 922 / 862,
  28905. bottom: 42.4 / 965
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(6 + 4 / 12, "feet")
  28913. },
  28914. {
  28915. name: "Treasured",
  28916. height: math.unit(18 + 9 / 12, "feet"),
  28917. default: true
  28918. },
  28919. {
  28920. name: "Macro",
  28921. height: math.unit(900, "feet")
  28922. },
  28923. ]
  28924. ))
  28925. characterMakers.push(() => makeCharacter(
  28926. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28927. {
  28928. front: {
  28929. height: math.unit(6 + 4 / 12, "feet"),
  28930. weight: math.unit(325, "lb"),
  28931. name: "Front",
  28932. image: {
  28933. source: "./media/characters/balina-amarini/front.svg",
  28934. extra: 415 / 403,
  28935. bottom: 19 / 433.4
  28936. }
  28937. },
  28938. back: {
  28939. height: math.unit(6 + 4 / 12, "feet"),
  28940. weight: math.unit(325, "lb"),
  28941. name: "Back",
  28942. image: {
  28943. source: "./media/characters/balina-amarini/back.svg",
  28944. extra: 415 / 403,
  28945. bottom: 13.5 / 432
  28946. }
  28947. },
  28948. overdrive: {
  28949. height: math.unit(6 + 4 / 12, "feet"),
  28950. weight: math.unit(400, "lb"),
  28951. name: "Overdrive",
  28952. image: {
  28953. source: "./media/characters/balina-amarini/overdrive.svg",
  28954. extra: 269 / 259,
  28955. bottom: 12 / 282
  28956. }
  28957. },
  28958. },
  28959. [
  28960. {
  28961. name: "Boom",
  28962. height: math.unit(9 + 10 / 12, "feet"),
  28963. default: true
  28964. },
  28965. {
  28966. name: "Macro",
  28967. height: math.unit(280, "feet")
  28968. },
  28969. ]
  28970. ))
  28971. characterMakers.push(() => makeCharacter(
  28972. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28973. {
  28974. goddess: {
  28975. height: math.unit(600, "feet"),
  28976. weight: math.unit(2000000, "tons"),
  28977. name: "Goddess",
  28978. image: {
  28979. source: "./media/characters/lady-kubwa/goddess.svg",
  28980. extra: 1240.5 / 1223,
  28981. bottom: 22 / 1263
  28982. }
  28983. },
  28984. goddesser: {
  28985. height: math.unit(900, "feet"),
  28986. weight: math.unit(20000000, "lb"),
  28987. name: "Goddess-er",
  28988. image: {
  28989. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28990. extra: 899 / 888,
  28991. bottom: 12.6 / 912
  28992. }
  28993. },
  28994. },
  28995. [
  28996. {
  28997. name: "Macro",
  28998. height: math.unit(600, "feet"),
  28999. default: true
  29000. },
  29001. {
  29002. name: "Megamacro",
  29003. height: math.unit(250, "miles")
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29009. {
  29010. front: {
  29011. height: math.unit(7 + 7 / 12, "feet"),
  29012. weight: math.unit(250, "lb"),
  29013. name: "Front",
  29014. image: {
  29015. source: "./media/characters/tala-grovehorn/front.svg",
  29016. extra: 2636 / 2525,
  29017. bottom: 147 / 2781
  29018. }
  29019. },
  29020. back: {
  29021. height: math.unit(7 + 7 / 12, "feet"),
  29022. weight: math.unit(250, "lb"),
  29023. name: "Back",
  29024. image: {
  29025. source: "./media/characters/tala-grovehorn/back.svg",
  29026. extra: 2635 / 2539,
  29027. bottom: 100 / 2732.8
  29028. }
  29029. },
  29030. mouth: {
  29031. height: math.unit(1.15, "feet"),
  29032. name: "Mouth",
  29033. image: {
  29034. source: "./media/characters/tala-grovehorn/mouth.svg"
  29035. }
  29036. },
  29037. dick: {
  29038. height: math.unit(2.36, "feet"),
  29039. name: "Dick",
  29040. image: {
  29041. source: "./media/characters/tala-grovehorn/dick.svg"
  29042. }
  29043. },
  29044. slit: {
  29045. height: math.unit(0.61, "feet"),
  29046. name: "Slit",
  29047. image: {
  29048. source: "./media/characters/tala-grovehorn/slit.svg"
  29049. }
  29050. },
  29051. },
  29052. [
  29053. ]
  29054. ))
  29055. characterMakers.push(() => makeCharacter(
  29056. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29057. {
  29058. front: {
  29059. height: math.unit(7 + 7 / 12, "feet"),
  29060. weight: math.unit(225, "lb"),
  29061. name: "Front",
  29062. image: {
  29063. source: "./media/characters/epona/front.svg",
  29064. extra: 2445 / 2290,
  29065. bottom: 251 / 2696
  29066. }
  29067. },
  29068. back: {
  29069. height: math.unit(7 + 7 / 12, "feet"),
  29070. weight: math.unit(225, "lb"),
  29071. name: "Back",
  29072. image: {
  29073. source: "./media/characters/epona/back.svg",
  29074. extra: 2546 / 2408,
  29075. bottom: 44 / 2589
  29076. }
  29077. },
  29078. genitals: {
  29079. height: math.unit(1.5, "feet"),
  29080. name: "Genitals",
  29081. image: {
  29082. source: "./media/characters/epona/genitals.svg"
  29083. }
  29084. },
  29085. },
  29086. [
  29087. {
  29088. name: "Normal",
  29089. height: math.unit(7 + 7 / 12, "feet"),
  29090. default: true
  29091. },
  29092. ]
  29093. ))
  29094. characterMakers.push(() => makeCharacter(
  29095. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29096. {
  29097. front: {
  29098. height: math.unit(7, "feet"),
  29099. weight: math.unit(518, "lb"),
  29100. name: "Front",
  29101. image: {
  29102. source: "./media/characters/avia-bloodbourn/front.svg",
  29103. extra: 1466 / 1350,
  29104. bottom: 65 / 1527
  29105. }
  29106. },
  29107. },
  29108. [
  29109. ]
  29110. ))
  29111. characterMakers.push(() => makeCharacter(
  29112. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29113. {
  29114. front: {
  29115. height: math.unit(9.35, "feet"),
  29116. weight: math.unit(600, "lb"),
  29117. name: "Front",
  29118. image: {
  29119. source: "./media/characters/amera/front.svg",
  29120. extra: 891 / 818,
  29121. bottom: 30 / 922.7
  29122. }
  29123. },
  29124. back: {
  29125. height: math.unit(9.35, "feet"),
  29126. weight: math.unit(600, "lb"),
  29127. name: "Back",
  29128. image: {
  29129. source: "./media/characters/amera/back.svg",
  29130. extra: 876 / 824,
  29131. bottom: 6.8 / 884
  29132. }
  29133. },
  29134. dick: {
  29135. height: math.unit(2.14, "feet"),
  29136. name: "Dick",
  29137. image: {
  29138. source: "./media/characters/amera/dick.svg"
  29139. }
  29140. },
  29141. },
  29142. [
  29143. {
  29144. name: "Normal",
  29145. height: math.unit(9.35, "feet"),
  29146. default: true
  29147. },
  29148. ]
  29149. ))
  29150. characterMakers.push(() => makeCharacter(
  29151. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29152. {
  29153. kneeling: {
  29154. height: math.unit(3 + 4 / 12, "feet"),
  29155. weight: math.unit(90, "lb"),
  29156. name: "Kneeling",
  29157. image: {
  29158. source: "./media/characters/rosewen/kneeling.svg",
  29159. extra: 1835 / 1571,
  29160. bottom: 27.7 / 1862
  29161. }
  29162. },
  29163. },
  29164. [
  29165. {
  29166. name: "Normal",
  29167. height: math.unit(3 + 4 / 12, "feet"),
  29168. default: true
  29169. },
  29170. ]
  29171. ))
  29172. characterMakers.push(() => makeCharacter(
  29173. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29174. {
  29175. front: {
  29176. height: math.unit(5 + 10 / 12, "feet"),
  29177. weight: math.unit(200, "lb"),
  29178. name: "Front",
  29179. image: {
  29180. source: "./media/characters/sabah/front.svg",
  29181. extra: 849 / 763,
  29182. bottom: 33.9 / 881
  29183. }
  29184. },
  29185. },
  29186. [
  29187. {
  29188. name: "Normal",
  29189. height: math.unit(5 + 10 / 12, "feet"),
  29190. default: true
  29191. },
  29192. ]
  29193. ))
  29194. characterMakers.push(() => makeCharacter(
  29195. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29196. {
  29197. front: {
  29198. height: math.unit(3 + 5 / 12, "feet"),
  29199. weight: math.unit(40, "kg"),
  29200. name: "Front",
  29201. image: {
  29202. source: "./media/characters/purple-flame/front.svg",
  29203. extra: 1577 / 1412,
  29204. bottom: 97 / 1694
  29205. }
  29206. },
  29207. frontDressed: {
  29208. height: math.unit(3 + 5 / 12, "feet"),
  29209. weight: math.unit(40, "kg"),
  29210. name: "Front (Dressed)",
  29211. image: {
  29212. source: "./media/characters/purple-flame/front-dressed.svg",
  29213. extra: 1577 / 1412,
  29214. bottom: 97 / 1694
  29215. }
  29216. },
  29217. headphones: {
  29218. height: math.unit(0.85, "feet"),
  29219. name: "Headphones",
  29220. image: {
  29221. source: "./media/characters/purple-flame/headphones.svg"
  29222. }
  29223. },
  29224. },
  29225. [
  29226. {
  29227. name: "Really Small",
  29228. height: math.unit(5, "cm")
  29229. },
  29230. {
  29231. name: "Micro",
  29232. height: math.unit(1 + 5 / 12, "feet")
  29233. },
  29234. {
  29235. name: "Normal",
  29236. height: math.unit(3 + 5 / 12, "feet"),
  29237. default: true
  29238. },
  29239. {
  29240. name: "Minimacro",
  29241. height: math.unit(125, "feet")
  29242. },
  29243. {
  29244. name: "Macro",
  29245. height: math.unit(0.5, "miles")
  29246. },
  29247. {
  29248. name: "Megamacro",
  29249. height: math.unit(50, "miles")
  29250. },
  29251. {
  29252. name: "Gigantic",
  29253. height: math.unit(750, "miles")
  29254. },
  29255. {
  29256. name: "Planetary",
  29257. height: math.unit(15000, "miles")
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(14, "feet"),
  29266. weight: math.unit(959, "lb"),
  29267. name: "Front",
  29268. image: {
  29269. source: "./media/characters/arsenal/front.svg",
  29270. extra: 2357 / 2157,
  29271. bottom: 93 / 2458
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Normal",
  29278. height: math.unit(14, "feet"),
  29279. default: true
  29280. },
  29281. ]
  29282. ))
  29283. characterMakers.push(() => makeCharacter(
  29284. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29285. {
  29286. front: {
  29287. height: math.unit(6, "feet"),
  29288. weight: math.unit(150, "lb"),
  29289. name: "Front",
  29290. image: {
  29291. source: "./media/characters/adira/front.svg",
  29292. extra: 1078 / 1029,
  29293. bottom: 87 / 1166
  29294. }
  29295. },
  29296. },
  29297. [
  29298. {
  29299. name: "Micro",
  29300. height: math.unit(4, "inches"),
  29301. default: true
  29302. },
  29303. {
  29304. name: "Macro",
  29305. height: math.unit(50, "feet")
  29306. },
  29307. ]
  29308. ))
  29309. characterMakers.push(() => makeCharacter(
  29310. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29311. {
  29312. front: {
  29313. height: math.unit(16, "feet"),
  29314. weight: math.unit(1000, "lb"),
  29315. name: "Front",
  29316. image: {
  29317. source: "./media/characters/grim/front.svg",
  29318. extra: 622 / 614,
  29319. bottom: 18.1 / 642
  29320. }
  29321. },
  29322. back: {
  29323. height: math.unit(16, "feet"),
  29324. weight: math.unit(1000, "lb"),
  29325. name: "Back",
  29326. image: {
  29327. source: "./media/characters/grim/back.svg",
  29328. extra: 610.6 / 602,
  29329. bottom: 40.8 / 652
  29330. }
  29331. },
  29332. hunched: {
  29333. height: math.unit(9.75, "feet"),
  29334. weight: math.unit(1000, "lb"),
  29335. name: "Hunched",
  29336. image: {
  29337. source: "./media/characters/grim/hunched.svg",
  29338. extra: 304 / 297,
  29339. bottom: 35.4 / 394
  29340. }
  29341. },
  29342. },
  29343. [
  29344. {
  29345. name: "Normal",
  29346. height: math.unit(16, "feet"),
  29347. default: true
  29348. },
  29349. ]
  29350. ))
  29351. characterMakers.push(() => makeCharacter(
  29352. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29353. {
  29354. front: {
  29355. height: math.unit(2.3, "meters"),
  29356. weight: math.unit(300, "lb"),
  29357. name: "Front",
  29358. image: {
  29359. source: "./media/characters/sinja/front-sfw.svg",
  29360. extra: 1393 / 1294,
  29361. bottom: 70 / 1463
  29362. }
  29363. },
  29364. frontNsfw: {
  29365. height: math.unit(2.3, "meters"),
  29366. weight: math.unit(300, "lb"),
  29367. name: "Front (NSFW)",
  29368. image: {
  29369. source: "./media/characters/sinja/front-nsfw.svg",
  29370. extra: 1393 / 1294,
  29371. bottom: 70 / 1463
  29372. }
  29373. },
  29374. back: {
  29375. height: math.unit(2.3, "meters"),
  29376. weight: math.unit(300, "lb"),
  29377. name: "Back",
  29378. image: {
  29379. source: "./media/characters/sinja/back.svg",
  29380. extra: 1393 / 1294,
  29381. bottom: 70 / 1463
  29382. }
  29383. },
  29384. head: {
  29385. height: math.unit(1.771, "feet"),
  29386. name: "Head",
  29387. image: {
  29388. source: "./media/characters/sinja/head.svg"
  29389. }
  29390. },
  29391. slit: {
  29392. height: math.unit(0.8, "feet"),
  29393. name: "Slit",
  29394. image: {
  29395. source: "./media/characters/sinja/slit.svg"
  29396. }
  29397. },
  29398. },
  29399. [
  29400. {
  29401. name: "Normal",
  29402. height: math.unit(2.3, "meters")
  29403. },
  29404. {
  29405. name: "Macro",
  29406. height: math.unit(91, "meters"),
  29407. default: true
  29408. },
  29409. {
  29410. name: "Megamacro",
  29411. height: math.unit(91440, "meters")
  29412. },
  29413. {
  29414. name: "Gigamacro",
  29415. height: math.unit(60960000, "meters")
  29416. },
  29417. {
  29418. name: "Teramacro",
  29419. height: math.unit(9144000000, "meters")
  29420. },
  29421. ]
  29422. ))
  29423. characterMakers.push(() => makeCharacter(
  29424. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29425. {
  29426. front: {
  29427. height: math.unit(1.7, "meters"),
  29428. weight: math.unit(130, "lb"),
  29429. name: "Front",
  29430. image: {
  29431. source: "./media/characters/kyu/front.svg",
  29432. extra: 415 / 395,
  29433. bottom: 5 / 420
  29434. }
  29435. },
  29436. head: {
  29437. height: math.unit(1.75, "feet"),
  29438. name: "Head",
  29439. image: {
  29440. source: "./media/characters/kyu/head.svg"
  29441. }
  29442. },
  29443. foot: {
  29444. height: math.unit(0.81, "feet"),
  29445. name: "Foot",
  29446. image: {
  29447. source: "./media/characters/kyu/foot.svg"
  29448. }
  29449. },
  29450. },
  29451. [
  29452. {
  29453. name: "Normal",
  29454. height: math.unit(1.7, "meters")
  29455. },
  29456. {
  29457. name: "Macro",
  29458. height: math.unit(131, "feet"),
  29459. default: true
  29460. },
  29461. {
  29462. name: "Megamacro",
  29463. height: math.unit(91440, "meters")
  29464. },
  29465. {
  29466. name: "Gigamacro",
  29467. height: math.unit(60960000, "meters")
  29468. },
  29469. {
  29470. name: "Teramacro",
  29471. height: math.unit(9144000000, "meters")
  29472. },
  29473. ]
  29474. ))
  29475. characterMakers.push(() => makeCharacter(
  29476. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29477. {
  29478. front: {
  29479. height: math.unit(7 + 1 / 12, "feet"),
  29480. weight: math.unit(250, "lb"),
  29481. name: "Front",
  29482. image: {
  29483. source: "./media/characters/joey/front.svg",
  29484. extra: 1791 / 1537,
  29485. bottom: 28 / 1816
  29486. }
  29487. },
  29488. },
  29489. [
  29490. {
  29491. name: "Micro",
  29492. height: math.unit(3, "inches")
  29493. },
  29494. {
  29495. name: "Normal",
  29496. height: math.unit(7 + 1 / 12, "feet"),
  29497. default: true
  29498. },
  29499. ]
  29500. ))
  29501. characterMakers.push(() => makeCharacter(
  29502. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29503. {
  29504. front: {
  29505. height: math.unit(165, "cm"),
  29506. weight: math.unit(140, "lb"),
  29507. name: "Front",
  29508. image: {
  29509. source: "./media/characters/sam-evans/front.svg",
  29510. extra: 3417 / 3230,
  29511. bottom: 41.3 / 3417
  29512. }
  29513. },
  29514. frontSixTails: {
  29515. height: math.unit(165, "cm"),
  29516. weight: math.unit(140, "lb"),
  29517. name: "Front-six-tails",
  29518. image: {
  29519. source: "./media/characters/sam-evans/front-six-tails.svg",
  29520. extra: 3417 / 3230,
  29521. bottom: 41.3 / 3417
  29522. }
  29523. },
  29524. back: {
  29525. height: math.unit(165, "cm"),
  29526. weight: math.unit(140, "lb"),
  29527. name: "Back",
  29528. image: {
  29529. source: "./media/characters/sam-evans/back.svg",
  29530. extra: 3227 / 3032,
  29531. bottom: 6.8 / 3234
  29532. }
  29533. },
  29534. face: {
  29535. height: math.unit(0.68, "feet"),
  29536. name: "Face",
  29537. image: {
  29538. source: "./media/characters/sam-evans/face.svg"
  29539. }
  29540. },
  29541. },
  29542. [
  29543. {
  29544. name: "Normal",
  29545. height: math.unit(165, "cm"),
  29546. default: true
  29547. },
  29548. {
  29549. name: "Macro",
  29550. height: math.unit(100, "meters")
  29551. },
  29552. {
  29553. name: "Macro+",
  29554. height: math.unit(800, "meters")
  29555. },
  29556. {
  29557. name: "Macro++",
  29558. height: math.unit(3, "km")
  29559. },
  29560. {
  29561. name: "Macro+++",
  29562. height: math.unit(30, "km")
  29563. },
  29564. ]
  29565. ))
  29566. characterMakers.push(() => makeCharacter(
  29567. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29568. {
  29569. front: {
  29570. height: math.unit(10, "feet"),
  29571. weight: math.unit(750, "lb"),
  29572. name: "Front",
  29573. image: {
  29574. source: "./media/characters/juliet-a/front.svg",
  29575. extra: 1766 / 1720,
  29576. bottom: 43 / 1809
  29577. }
  29578. },
  29579. back: {
  29580. height: math.unit(10, "feet"),
  29581. weight: math.unit(750, "lb"),
  29582. name: "Back",
  29583. image: {
  29584. source: "./media/characters/juliet-a/back.svg",
  29585. extra: 1781 / 1734,
  29586. bottom: 35 / 1810,
  29587. }
  29588. },
  29589. },
  29590. [
  29591. {
  29592. name: "Normal",
  29593. height: math.unit(10, "feet"),
  29594. default: true
  29595. },
  29596. {
  29597. name: "Dragon Form",
  29598. height: math.unit(250, "feet")
  29599. },
  29600. {
  29601. name: "Macro",
  29602. height: math.unit(1000, "feet")
  29603. },
  29604. {
  29605. name: "Megamacro",
  29606. height: math.unit(10000, "feet")
  29607. }
  29608. ]
  29609. ))
  29610. characterMakers.push(() => makeCharacter(
  29611. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29612. {
  29613. regular: {
  29614. height: math.unit(7 + 3 / 12, "feet"),
  29615. weight: math.unit(260, "lb"),
  29616. name: "Regular",
  29617. image: {
  29618. source: "./media/characters/wild/regular.svg",
  29619. extra: 97.45 / 92,
  29620. bottom: 6.8 / 104.3
  29621. }
  29622. },
  29623. biggums: {
  29624. height: math.unit(8 + 6 / 12, "feet"),
  29625. weight: math.unit(425, "lb"),
  29626. name: "Biggums",
  29627. image: {
  29628. source: "./media/characters/wild/biggums.svg",
  29629. extra: 97.45 / 92,
  29630. bottom: 7.5 / 132.34
  29631. }
  29632. },
  29633. mawRegular: {
  29634. height: math.unit(1.24, "feet"),
  29635. name: "Maw (Regular)",
  29636. image: {
  29637. source: "./media/characters/wild/maw.svg"
  29638. }
  29639. },
  29640. mawBiggums: {
  29641. height: math.unit(1.47, "feet"),
  29642. name: "Maw (Biggums)",
  29643. image: {
  29644. source: "./media/characters/wild/maw.svg"
  29645. }
  29646. },
  29647. },
  29648. [
  29649. {
  29650. name: "Normal",
  29651. height: math.unit(7 + 3 / 12, "feet"),
  29652. default: true
  29653. },
  29654. ]
  29655. ))
  29656. characterMakers.push(() => makeCharacter(
  29657. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29658. {
  29659. front: {
  29660. height: math.unit(2.5, "meters"),
  29661. weight: math.unit(200, "kg"),
  29662. name: "Front",
  29663. image: {
  29664. source: "./media/characters/vidar/front.svg",
  29665. extra: 2994 / 2795,
  29666. bottom: 56 / 3061
  29667. }
  29668. },
  29669. back: {
  29670. height: math.unit(2.5, "meters"),
  29671. weight: math.unit(200, "kg"),
  29672. name: "Back",
  29673. image: {
  29674. source: "./media/characters/vidar/back.svg",
  29675. extra: 3131 / 2928,
  29676. bottom: 13.5 / 3141.5
  29677. }
  29678. },
  29679. feral: {
  29680. height: math.unit(2.5, "meters"),
  29681. weight: math.unit(2000, "kg"),
  29682. name: "Feral",
  29683. image: {
  29684. source: "./media/characters/vidar/feral.svg",
  29685. extra: 2790 / 1765,
  29686. bottom: 6 / 2796
  29687. }
  29688. },
  29689. },
  29690. [
  29691. {
  29692. name: "Normal",
  29693. height: math.unit(2.5, "meters"),
  29694. default: true
  29695. },
  29696. {
  29697. name: "Macro",
  29698. height: math.unit(100, "meters")
  29699. },
  29700. ]
  29701. ))
  29702. characterMakers.push(() => makeCharacter(
  29703. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29704. {
  29705. front: {
  29706. height: math.unit(5 + 9 / 12, "feet"),
  29707. weight: math.unit(120, "lb"),
  29708. name: "Front",
  29709. image: {
  29710. source: "./media/characters/ash/front.svg",
  29711. extra: 2189 / 1961,
  29712. bottom: 5.2 / 2194
  29713. }
  29714. },
  29715. },
  29716. [
  29717. {
  29718. name: "Normal",
  29719. height: math.unit(5 + 9 / 12, "feet"),
  29720. default: true
  29721. },
  29722. ]
  29723. ))
  29724. characterMakers.push(() => makeCharacter(
  29725. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29726. {
  29727. front: {
  29728. height: math.unit(9, "feet"),
  29729. weight: math.unit(10000, "lb"),
  29730. name: "Front",
  29731. image: {
  29732. source: "./media/characters/gygabite/front.svg",
  29733. bottom: 31.7 / 537.8,
  29734. extra: 505 / 370
  29735. }
  29736. },
  29737. },
  29738. [
  29739. {
  29740. name: "Normal",
  29741. height: math.unit(9, "feet"),
  29742. default: true
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29748. {
  29749. front: {
  29750. height: math.unit(12, "feet"),
  29751. weight: math.unit(4000, "lb"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/p0tat0/front.svg",
  29755. extra: 1065 / 921,
  29756. bottom: 55.7 / 1121.25
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Normal",
  29763. height: math.unit(12, "feet"),
  29764. default: true
  29765. },
  29766. ]
  29767. ))
  29768. characterMakers.push(() => makeCharacter(
  29769. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29770. {
  29771. side: {
  29772. height: math.unit(6.5, "feet"),
  29773. weight: math.unit(800, "lb"),
  29774. name: "Side",
  29775. image: {
  29776. source: "./media/characters/dusk/side.svg",
  29777. extra: 615 / 373,
  29778. bottom: 53 / 664
  29779. }
  29780. },
  29781. sitting: {
  29782. height: math.unit(7, "feet"),
  29783. weight: math.unit(800, "lb"),
  29784. name: "Sitting",
  29785. image: {
  29786. source: "./media/characters/dusk/sitting.svg",
  29787. extra: 753 / 425,
  29788. bottom: 33 / 774
  29789. }
  29790. },
  29791. head: {
  29792. height: math.unit(6.1, "feet"),
  29793. name: "Head",
  29794. image: {
  29795. source: "./media/characters/dusk/head.svg"
  29796. }
  29797. },
  29798. },
  29799. [
  29800. {
  29801. name: "Normal",
  29802. height: math.unit(7, "feet"),
  29803. default: true
  29804. },
  29805. ]
  29806. ))
  29807. characterMakers.push(() => makeCharacter(
  29808. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29809. {
  29810. front: {
  29811. height: math.unit(15, "feet"),
  29812. weight: math.unit(7000, "lb"),
  29813. name: "Front",
  29814. image: {
  29815. source: "./media/characters/jay-direwolf/front.svg",
  29816. extra: 1810 / 1732,
  29817. bottom: 66 / 1892
  29818. }
  29819. },
  29820. },
  29821. [
  29822. {
  29823. name: "Normal",
  29824. height: math.unit(15, "feet"),
  29825. default: true
  29826. },
  29827. ]
  29828. ))
  29829. characterMakers.push(() => makeCharacter(
  29830. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29831. {
  29832. front: {
  29833. height: math.unit(4 + 9 / 12, "feet"),
  29834. weight: math.unit(130, "lb"),
  29835. name: "Front",
  29836. image: {
  29837. source: "./media/characters/anchovie/front.svg",
  29838. extra: 382 / 350,
  29839. bottom: 25 / 409
  29840. }
  29841. },
  29842. back: {
  29843. height: math.unit(4 + 9 / 12, "feet"),
  29844. weight: math.unit(130, "lb"),
  29845. name: "Back",
  29846. image: {
  29847. source: "./media/characters/anchovie/back.svg",
  29848. extra: 385 / 352,
  29849. bottom: 16.6 / 402
  29850. }
  29851. },
  29852. frontDressed: {
  29853. height: math.unit(4 + 9 / 12, "feet"),
  29854. weight: math.unit(130, "lb"),
  29855. name: "Front (Dressed)",
  29856. image: {
  29857. source: "./media/characters/anchovie/front-dressed.svg",
  29858. extra: 382 / 350,
  29859. bottom: 25 / 409
  29860. }
  29861. },
  29862. backDressed: {
  29863. height: math.unit(4 + 9 / 12, "feet"),
  29864. weight: math.unit(130, "lb"),
  29865. name: "Back (Dressed)",
  29866. image: {
  29867. source: "./media/characters/anchovie/back-dressed.svg",
  29868. extra: 385 / 352,
  29869. bottom: 16.6 / 402
  29870. }
  29871. },
  29872. },
  29873. [
  29874. {
  29875. name: "Micro",
  29876. height: math.unit(6.4, "inches")
  29877. },
  29878. {
  29879. name: "Normal",
  29880. height: math.unit(4 + 9 / 12, "feet"),
  29881. default: true
  29882. },
  29883. ]
  29884. ))
  29885. characterMakers.push(() => makeCharacter(
  29886. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29887. {
  29888. front: {
  29889. height: math.unit(2, "meters"),
  29890. weight: math.unit(180, "lb"),
  29891. name: "Front",
  29892. image: {
  29893. source: "./media/characters/acidrenamon/front.svg",
  29894. extra: 987 / 890,
  29895. bottom: 22.8 / 1009
  29896. }
  29897. },
  29898. back: {
  29899. height: math.unit(2, "meters"),
  29900. weight: math.unit(180, "lb"),
  29901. name: "Back",
  29902. image: {
  29903. source: "./media/characters/acidrenamon/back.svg",
  29904. extra: 983 / 891,
  29905. bottom: 8.4 / 992
  29906. }
  29907. },
  29908. head: {
  29909. height: math.unit(1.92, "feet"),
  29910. name: "Head",
  29911. image: {
  29912. source: "./media/characters/acidrenamon/head.svg"
  29913. }
  29914. },
  29915. rump: {
  29916. height: math.unit(1.72, "feet"),
  29917. name: "Rump",
  29918. image: {
  29919. source: "./media/characters/acidrenamon/rump.svg"
  29920. }
  29921. },
  29922. tail: {
  29923. height: math.unit(4.2, "feet"),
  29924. name: "Tail",
  29925. image: {
  29926. source: "./media/characters/acidrenamon/tail.svg"
  29927. }
  29928. },
  29929. },
  29930. [
  29931. {
  29932. name: "Normal",
  29933. height: math.unit(2, "meters"),
  29934. default: true
  29935. },
  29936. {
  29937. name: "Minimacro",
  29938. height: math.unit(7, "meters")
  29939. },
  29940. {
  29941. name: "Macro",
  29942. height: math.unit(200, "meters")
  29943. },
  29944. {
  29945. name: "Gigamacro",
  29946. height: math.unit(0.2, "earths")
  29947. },
  29948. ]
  29949. ))
  29950. characterMakers.push(() => makeCharacter(
  29951. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29952. {
  29953. front: {
  29954. height: math.unit(152, "feet"),
  29955. name: "Front",
  29956. image: {
  29957. source: "./media/characters/kenzie-lee/front.svg",
  29958. extra: 1869/1774,
  29959. bottom: 128/1997
  29960. }
  29961. },
  29962. side: {
  29963. height: math.unit(86, "feet"),
  29964. name: "Side",
  29965. image: {
  29966. source: "./media/characters/kenzie-lee/side.svg",
  29967. extra: 930/815,
  29968. bottom: 177/1107
  29969. }
  29970. },
  29971. paw: {
  29972. height: math.unit(15, "feet"),
  29973. name: "Paw",
  29974. image: {
  29975. source: "./media/characters/kenzie-lee/paw.svg"
  29976. }
  29977. },
  29978. },
  29979. [
  29980. {
  29981. name: "Kenzie Flea",
  29982. height: math.unit(2, "mm"),
  29983. default: true
  29984. },
  29985. {
  29986. name: "Micro",
  29987. height: math.unit(2, "inches")
  29988. },
  29989. {
  29990. name: "Normal",
  29991. height: math.unit(152, "feet")
  29992. },
  29993. {
  29994. name: "Megamacro",
  29995. height: math.unit(7, "miles")
  29996. },
  29997. {
  29998. name: "Gigamacro",
  29999. height: math.unit(8000, "miles")
  30000. },
  30001. ]
  30002. ))
  30003. characterMakers.push(() => makeCharacter(
  30004. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30005. {
  30006. front: {
  30007. height: math.unit(6, "feet"),
  30008. name: "Front",
  30009. image: {
  30010. source: "./media/characters/withers/front.svg",
  30011. extra: 1935/1760,
  30012. bottom: 72/2007
  30013. }
  30014. },
  30015. back: {
  30016. height: math.unit(6, "feet"),
  30017. name: "Back",
  30018. image: {
  30019. source: "./media/characters/withers/back.svg",
  30020. extra: 1944/1792,
  30021. bottom: 12/1956
  30022. }
  30023. },
  30024. dressed: {
  30025. height: math.unit(6, "feet"),
  30026. name: "Dressed",
  30027. image: {
  30028. source: "./media/characters/withers/dressed.svg",
  30029. extra: 1937/1765,
  30030. bottom: 73/2010
  30031. }
  30032. },
  30033. phase1: {
  30034. height: math.unit(1.1, "feet"),
  30035. name: "Phase 1",
  30036. image: {
  30037. source: "./media/characters/withers/phase-1.svg",
  30038. extra: 1885/1232,
  30039. bottom: 0/1885
  30040. }
  30041. },
  30042. phase2: {
  30043. height: math.unit(1.05, "feet"),
  30044. name: "Phase 2",
  30045. image: {
  30046. source: "./media/characters/withers/phase-2.svg",
  30047. extra: 1792/1090,
  30048. bottom: 0/1792
  30049. }
  30050. },
  30051. partyWipe: {
  30052. height: math.unit(1.1, "feet"),
  30053. name: "Party Wipe",
  30054. image: {
  30055. source: "./media/characters/withers/party-wipe.svg",
  30056. extra: 1864/1207,
  30057. bottom: 0/1864
  30058. }
  30059. },
  30060. },
  30061. [
  30062. {
  30063. name: "Macro",
  30064. height: math.unit(167, "feet"),
  30065. default: true
  30066. },
  30067. {
  30068. name: "Megamacro",
  30069. height: math.unit(15, "miles")
  30070. }
  30071. ]
  30072. ))
  30073. characterMakers.push(() => makeCharacter(
  30074. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30075. {
  30076. front: {
  30077. height: math.unit(6 + 7 / 12, "feet"),
  30078. weight: math.unit(250, "lb"),
  30079. name: "Front",
  30080. image: {
  30081. source: "./media/characters/nemoskii/front.svg",
  30082. extra: 2270 / 1734,
  30083. bottom: 86 / 2354
  30084. }
  30085. },
  30086. back: {
  30087. height: math.unit(6 + 7 / 12, "feet"),
  30088. weight: math.unit(250, "lb"),
  30089. name: "Back",
  30090. image: {
  30091. source: "./media/characters/nemoskii/back.svg",
  30092. extra: 1845 / 1788,
  30093. bottom: 10.5 / 1852
  30094. }
  30095. },
  30096. head: {
  30097. height: math.unit(1.31, "feet"),
  30098. name: "Head",
  30099. image: {
  30100. source: "./media/characters/nemoskii/head.svg"
  30101. }
  30102. },
  30103. },
  30104. [
  30105. {
  30106. name: "Micro",
  30107. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30108. },
  30109. {
  30110. name: "Normal",
  30111. height: math.unit(6 + 7 / 12, "feet"),
  30112. default: true
  30113. },
  30114. {
  30115. name: "Macro",
  30116. height: math.unit((6 + 7 / 12) * 150, "feet")
  30117. },
  30118. {
  30119. name: "Macro+",
  30120. height: math.unit((6 + 7 / 12) * 500, "feet")
  30121. },
  30122. {
  30123. name: "Megamacro",
  30124. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30125. },
  30126. ]
  30127. ))
  30128. characterMakers.push(() => makeCharacter(
  30129. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30130. {
  30131. front: {
  30132. height: math.unit(1, "mile"),
  30133. weight: math.unit(265261.9, "lb"),
  30134. name: "Front",
  30135. image: {
  30136. source: "./media/characters/shui/front.svg",
  30137. extra: 1633 / 1564,
  30138. bottom: 91.5 / 1726
  30139. }
  30140. },
  30141. },
  30142. [
  30143. {
  30144. name: "Macro",
  30145. height: math.unit(1, "mile"),
  30146. default: true
  30147. },
  30148. ]
  30149. ))
  30150. characterMakers.push(() => makeCharacter(
  30151. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30152. {
  30153. front: {
  30154. height: math.unit(12 + 6 / 12, "feet"),
  30155. weight: math.unit(1342, "lb"),
  30156. name: "Front",
  30157. image: {
  30158. source: "./media/characters/arokh-takakura/front.svg",
  30159. extra: 1089 / 1043,
  30160. bottom: 77.4 / 1176.7
  30161. }
  30162. },
  30163. back: {
  30164. height: math.unit(12 + 6 / 12, "feet"),
  30165. weight: math.unit(1342, "lb"),
  30166. name: "Back",
  30167. image: {
  30168. source: "./media/characters/arokh-takakura/back.svg",
  30169. extra: 1046 / 1019,
  30170. bottom: 102 / 1150
  30171. }
  30172. },
  30173. },
  30174. [
  30175. {
  30176. name: "Big",
  30177. height: math.unit(12 + 6 / 12, "feet"),
  30178. default: true
  30179. },
  30180. ]
  30181. ))
  30182. characterMakers.push(() => makeCharacter(
  30183. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30184. {
  30185. front: {
  30186. height: math.unit(5 + 6 / 12, "feet"),
  30187. weight: math.unit(150, "lb"),
  30188. name: "Front",
  30189. image: {
  30190. source: "./media/characters/theo/front.svg",
  30191. extra: 1184 / 1131,
  30192. bottom: 7.4 / 1191
  30193. }
  30194. },
  30195. },
  30196. [
  30197. {
  30198. name: "Micro",
  30199. height: math.unit(5, "inches")
  30200. },
  30201. {
  30202. name: "Normal",
  30203. height: math.unit(5 + 6 / 12, "feet"),
  30204. default: true
  30205. },
  30206. ]
  30207. ))
  30208. characterMakers.push(() => makeCharacter(
  30209. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30210. {
  30211. front: {
  30212. height: math.unit(5 + 9 / 12, "feet"),
  30213. weight: math.unit(130, "lb"),
  30214. name: "Front",
  30215. image: {
  30216. source: "./media/characters/cecelia-swift/front.svg",
  30217. extra: 502 / 484,
  30218. bottom: 23 / 523
  30219. }
  30220. },
  30221. back: {
  30222. height: math.unit(5 + 9 / 12, "feet"),
  30223. weight: math.unit(130, "lb"),
  30224. name: "Back",
  30225. image: {
  30226. source: "./media/characters/cecelia-swift/back.svg",
  30227. extra: 499 / 485,
  30228. bottom: 12 / 511
  30229. }
  30230. },
  30231. head: {
  30232. height: math.unit(0.90, "feet"),
  30233. name: "Head",
  30234. image: {
  30235. source: "./media/characters/cecelia-swift/head.svg"
  30236. }
  30237. },
  30238. rump: {
  30239. height: math.unit(1.75, "feet"),
  30240. name: "Rump",
  30241. image: {
  30242. source: "./media/characters/cecelia-swift/rump.svg"
  30243. }
  30244. },
  30245. },
  30246. [
  30247. {
  30248. name: "Normal",
  30249. height: math.unit(5 + 9 / 12, "feet"),
  30250. default: true
  30251. },
  30252. {
  30253. name: "Big",
  30254. height: math.unit(50, "feet")
  30255. },
  30256. {
  30257. name: "Macro",
  30258. height: math.unit(100, "feet")
  30259. },
  30260. {
  30261. name: "Macro+",
  30262. height: math.unit(500, "feet")
  30263. },
  30264. {
  30265. name: "Macro++",
  30266. height: math.unit(1000, "feet")
  30267. },
  30268. ]
  30269. ))
  30270. characterMakers.push(() => makeCharacter(
  30271. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30272. {
  30273. front: {
  30274. height: math.unit(6, "feet"),
  30275. weight: math.unit(150, "lb"),
  30276. name: "Front",
  30277. image: {
  30278. source: "./media/characters/kaunan/front.svg",
  30279. extra: 2890 / 2523,
  30280. bottom: 49 / 2939
  30281. }
  30282. },
  30283. },
  30284. [
  30285. {
  30286. name: "Macro",
  30287. height: math.unit(150, "feet"),
  30288. default: true
  30289. },
  30290. ]
  30291. ))
  30292. characterMakers.push(() => makeCharacter(
  30293. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30294. {
  30295. dressed: {
  30296. height: math.unit(175, "cm"),
  30297. weight: math.unit(60, "kg"),
  30298. name: "Dressed",
  30299. image: {
  30300. source: "./media/characters/fei/dressed.svg",
  30301. extra: 1402/1278,
  30302. bottom: 27/1429
  30303. }
  30304. },
  30305. nude: {
  30306. height: math.unit(175, "cm"),
  30307. weight: math.unit(60, "kg"),
  30308. name: "Nude",
  30309. image: {
  30310. source: "./media/characters/fei/nude.svg",
  30311. extra: 1402/1278,
  30312. bottom: 27/1429
  30313. }
  30314. },
  30315. heels: {
  30316. height: math.unit(0.466, "feet"),
  30317. name: "Heels",
  30318. image: {
  30319. source: "./media/characters/fei/heels.svg",
  30320. extra: 156/152,
  30321. bottom: 28/184
  30322. }
  30323. },
  30324. },
  30325. [
  30326. {
  30327. name: "Mortal",
  30328. height: math.unit(175, "cm")
  30329. },
  30330. {
  30331. name: "Normal",
  30332. height: math.unit(3500, "m")
  30333. },
  30334. {
  30335. name: "Stroll",
  30336. height: math.unit(18.4, "km"),
  30337. default: true
  30338. },
  30339. {
  30340. name: "Showoff",
  30341. height: math.unit(175, "km")
  30342. },
  30343. ]
  30344. ))
  30345. characterMakers.push(() => makeCharacter(
  30346. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30347. {
  30348. front: {
  30349. height: math.unit(7, "feet"),
  30350. weight: math.unit(1000, "kg"),
  30351. name: "Front",
  30352. image: {
  30353. source: "./media/characters/edrax/front.svg",
  30354. extra: 2838 / 2550,
  30355. bottom: 130 / 2968
  30356. }
  30357. },
  30358. },
  30359. [
  30360. {
  30361. name: "Small",
  30362. height: math.unit(7, "feet")
  30363. },
  30364. {
  30365. name: "Normal",
  30366. height: math.unit(1500, "meters")
  30367. },
  30368. {
  30369. name: "Mega",
  30370. height: math.unit(12000000, "km"),
  30371. default: true
  30372. },
  30373. {
  30374. name: "Megamacro",
  30375. height: math.unit(10600000, "lightyears")
  30376. },
  30377. {
  30378. name: "Hypermacro",
  30379. height: math.unit(256, "yottameters")
  30380. },
  30381. ]
  30382. ))
  30383. characterMakers.push(() => makeCharacter(
  30384. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30385. {
  30386. front: {
  30387. height: math.unit(10, "feet"),
  30388. weight: math.unit(750, "lb"),
  30389. name: "Front",
  30390. image: {
  30391. source: "./media/characters/clove/front.svg",
  30392. extra: 1918/1751,
  30393. bottom: 52/1970
  30394. }
  30395. },
  30396. back: {
  30397. height: math.unit(10, "feet"),
  30398. weight: math.unit(750, "lb"),
  30399. name: "Back",
  30400. image: {
  30401. source: "./media/characters/clove/back.svg",
  30402. extra: 1912/1747,
  30403. bottom: 50/1962
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "Normal",
  30410. height: math.unit(10, "feet"),
  30411. default: true
  30412. },
  30413. ]
  30414. ))
  30415. characterMakers.push(() => makeCharacter(
  30416. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30417. {
  30418. front: {
  30419. height: math.unit(4, "feet"),
  30420. weight: math.unit(50, "lb"),
  30421. name: "Front",
  30422. image: {
  30423. source: "./media/characters/alex-rabbit/front.svg",
  30424. extra: 507 / 458,
  30425. bottom: 18.5 / 527
  30426. }
  30427. },
  30428. back: {
  30429. height: math.unit(4, "feet"),
  30430. weight: math.unit(50, "lb"),
  30431. name: "Back",
  30432. image: {
  30433. source: "./media/characters/alex-rabbit/back.svg",
  30434. extra: 502 / 460,
  30435. bottom: 18.9 / 521
  30436. }
  30437. },
  30438. },
  30439. [
  30440. {
  30441. name: "Normal",
  30442. height: math.unit(4, "feet"),
  30443. default: true
  30444. },
  30445. ]
  30446. ))
  30447. characterMakers.push(() => makeCharacter(
  30448. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30449. {
  30450. front: {
  30451. height: math.unit(1 + 3 / 12, "feet"),
  30452. weight: math.unit(80, "lb"),
  30453. name: "Front",
  30454. image: {
  30455. source: "./media/characters/zander-rose/front.svg",
  30456. extra: 916 / 797,
  30457. bottom: 17 / 933
  30458. }
  30459. },
  30460. back: {
  30461. height: math.unit(1 + 3 / 12, "feet"),
  30462. weight: math.unit(80, "lb"),
  30463. name: "Back",
  30464. image: {
  30465. source: "./media/characters/zander-rose/back.svg",
  30466. extra: 903 / 779,
  30467. bottom: 31 / 934
  30468. }
  30469. },
  30470. },
  30471. [
  30472. {
  30473. name: "Normal",
  30474. height: math.unit(1 + 3 / 12, "feet"),
  30475. default: true
  30476. },
  30477. ]
  30478. ))
  30479. characterMakers.push(() => makeCharacter(
  30480. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30481. {
  30482. anthro: {
  30483. height: math.unit(6, "feet"),
  30484. weight: math.unit(150, "lb"),
  30485. name: "Anthro",
  30486. image: {
  30487. source: "./media/characters/razz/anthro.svg",
  30488. extra: 1437 / 1343,
  30489. bottom: 48 / 1485
  30490. }
  30491. },
  30492. feral: {
  30493. height: math.unit(6, "feet"),
  30494. weight: math.unit(150, "lb"),
  30495. name: "Feral",
  30496. image: {
  30497. source: "./media/characters/razz/feral.svg",
  30498. extra: 2569 / 1385,
  30499. bottom: 95 / 2664
  30500. }
  30501. },
  30502. },
  30503. [
  30504. {
  30505. name: "Normal",
  30506. height: math.unit(6, "feet"),
  30507. default: true
  30508. },
  30509. ]
  30510. ))
  30511. characterMakers.push(() => makeCharacter(
  30512. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30513. {
  30514. front: {
  30515. height: math.unit(9 + 4 / 12, "feet"),
  30516. weight: math.unit(500, "lb"),
  30517. name: "Front",
  30518. image: {
  30519. source: "./media/characters/morrigan/front.svg",
  30520. extra: 2707 / 2579,
  30521. bottom: 156 / 2863
  30522. }
  30523. },
  30524. },
  30525. [
  30526. {
  30527. name: "Normal",
  30528. height: math.unit(9 + 4 / 12, "feet"),
  30529. default: true
  30530. },
  30531. ]
  30532. ))
  30533. characterMakers.push(() => makeCharacter(
  30534. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30535. {
  30536. front: {
  30537. height: math.unit(5, "stories"),
  30538. weight: math.unit(4000, "lb"),
  30539. name: "Front",
  30540. image: {
  30541. source: "./media/characters/jenene/front.svg",
  30542. extra: 1780 / 1710,
  30543. bottom: 57 / 1837
  30544. }
  30545. },
  30546. },
  30547. [
  30548. {
  30549. name: "Normal",
  30550. height: math.unit(5, "stories"),
  30551. default: true
  30552. },
  30553. ]
  30554. ))
  30555. characterMakers.push(() => makeCharacter(
  30556. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30557. {
  30558. taurSfw: {
  30559. height: math.unit(10, "meters"),
  30560. weight: math.unit(17500, "kg"),
  30561. name: "Taur",
  30562. image: {
  30563. source: "./media/characters/faey/taur-sfw.svg",
  30564. extra: 1200 / 968,
  30565. bottom: 41 / 1241
  30566. }
  30567. },
  30568. chestmaw: {
  30569. height: math.unit(2.01, "meters"),
  30570. name: "Chestmaw",
  30571. image: {
  30572. source: "./media/characters/faey/chestmaw.svg"
  30573. }
  30574. },
  30575. foot: {
  30576. height: math.unit(2.43, "meters"),
  30577. name: "Foot",
  30578. image: {
  30579. source: "./media/characters/faey/foot.svg"
  30580. }
  30581. },
  30582. jaws: {
  30583. height: math.unit(1.66, "meters"),
  30584. name: "Jaws",
  30585. image: {
  30586. source: "./media/characters/faey/jaws.svg"
  30587. }
  30588. },
  30589. tongues: {
  30590. height: math.unit(2.01, "meters"),
  30591. name: "Tongues",
  30592. image: {
  30593. source: "./media/characters/faey/tongues.svg"
  30594. }
  30595. },
  30596. },
  30597. [
  30598. {
  30599. name: "Small",
  30600. height: math.unit(10, "meters"),
  30601. default: true
  30602. },
  30603. {
  30604. name: "Big",
  30605. height: math.unit(500000, "km")
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30611. {
  30612. front: {
  30613. height: math.unit(7, "feet"),
  30614. weight: math.unit(275, "lb"),
  30615. name: "Front",
  30616. image: {
  30617. source: "./media/characters/roku/front.svg",
  30618. extra: 903 / 878,
  30619. bottom: 37 / 940
  30620. }
  30621. },
  30622. },
  30623. [
  30624. {
  30625. name: "Normal",
  30626. height: math.unit(7, "feet"),
  30627. default: true
  30628. },
  30629. {
  30630. name: "Macro",
  30631. height: math.unit(500, "feet")
  30632. },
  30633. {
  30634. name: "Megamacro",
  30635. height: math.unit(200, "miles")
  30636. },
  30637. ]
  30638. ))
  30639. characterMakers.push(() => makeCharacter(
  30640. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30641. {
  30642. front: {
  30643. height: math.unit(6 + 2 / 12, "feet"),
  30644. weight: math.unit(150, "lb"),
  30645. name: "Front",
  30646. image: {
  30647. source: "./media/characters/lira/front.svg",
  30648. extra: 1727 / 1605,
  30649. bottom: 26 / 1753
  30650. }
  30651. },
  30652. back: {
  30653. height: math.unit(6 + 2 / 12, "feet"),
  30654. weight: math.unit(150, "lb"),
  30655. name: "Back",
  30656. image: {
  30657. source: "./media/characters/lira/back.svg",
  30658. extra: 1713/1621,
  30659. bottom: 20/1733
  30660. }
  30661. },
  30662. hand: {
  30663. height: math.unit(0.75, "feet"),
  30664. name: "Hand",
  30665. image: {
  30666. source: "./media/characters/lira/hand.svg"
  30667. }
  30668. },
  30669. maw: {
  30670. height: math.unit(0.65, "feet"),
  30671. name: "Maw",
  30672. image: {
  30673. source: "./media/characters/lira/maw.svg"
  30674. }
  30675. },
  30676. pawDigi: {
  30677. height: math.unit(1.6, "feet"),
  30678. name: "Paw Digi",
  30679. image: {
  30680. source: "./media/characters/lira/paw-digi.svg"
  30681. }
  30682. },
  30683. pawPlanti: {
  30684. height: math.unit(1.4, "feet"),
  30685. name: "Paw Planti",
  30686. image: {
  30687. source: "./media/characters/lira/paw-planti.svg"
  30688. }
  30689. },
  30690. },
  30691. [
  30692. {
  30693. name: "Normal",
  30694. height: math.unit(6 + 2 / 12, "feet"),
  30695. default: true
  30696. },
  30697. {
  30698. name: "Macro",
  30699. height: math.unit(100, "feet")
  30700. },
  30701. {
  30702. name: "Macro²",
  30703. height: math.unit(1600, "feet")
  30704. },
  30705. {
  30706. name: "Planetary",
  30707. height: math.unit(20, "earths")
  30708. },
  30709. ]
  30710. ))
  30711. characterMakers.push(() => makeCharacter(
  30712. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30713. {
  30714. front: {
  30715. height: math.unit(6, "feet"),
  30716. weight: math.unit(150, "lb"),
  30717. name: "Front",
  30718. image: {
  30719. source: "./media/characters/hadjet/front.svg",
  30720. extra: 1480 / 1346,
  30721. bottom: 26 / 1506
  30722. }
  30723. },
  30724. frontNsfw: {
  30725. height: math.unit(6, "feet"),
  30726. weight: math.unit(150, "lb"),
  30727. name: "Front (NSFW)",
  30728. image: {
  30729. source: "./media/characters/hadjet/front-nsfw.svg",
  30730. extra: 1440 / 1358,
  30731. bottom: 52 / 1492
  30732. }
  30733. },
  30734. },
  30735. [
  30736. {
  30737. name: "Macro",
  30738. height: math.unit(10, "stories"),
  30739. default: true
  30740. },
  30741. {
  30742. name: "Megamacro",
  30743. height: math.unit(1.5, "miles")
  30744. },
  30745. {
  30746. name: "Megamacro+",
  30747. height: math.unit(5, "miles")
  30748. },
  30749. ]
  30750. ))
  30751. characterMakers.push(() => makeCharacter(
  30752. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30753. {
  30754. side: {
  30755. height: math.unit(106, "feet"),
  30756. weight: math.unit(500, "tonnes"),
  30757. name: "Side",
  30758. image: {
  30759. source: "./media/characters/kodran/side.svg",
  30760. extra: 553 / 480,
  30761. bottom: 33 / 586
  30762. }
  30763. },
  30764. front: {
  30765. height: math.unit(132, "feet"),
  30766. weight: math.unit(500, "tonnes"),
  30767. name: "Front",
  30768. image: {
  30769. source: "./media/characters/kodran/front.svg",
  30770. extra: 667 / 643,
  30771. bottom: 42 / 709
  30772. }
  30773. },
  30774. flying: {
  30775. height: math.unit(350, "feet"),
  30776. weight: math.unit(500, "tonnes"),
  30777. name: "Flying",
  30778. image: {
  30779. source: "./media/characters/kodran/flying.svg"
  30780. }
  30781. },
  30782. foot: {
  30783. height: math.unit(33, "feet"),
  30784. name: "Foot",
  30785. image: {
  30786. source: "./media/characters/kodran/foot.svg"
  30787. }
  30788. },
  30789. footFront: {
  30790. height: math.unit(19, "feet"),
  30791. name: "Foot (Front)",
  30792. image: {
  30793. source: "./media/characters/kodran/foot-front.svg",
  30794. extra: 261 / 261,
  30795. bottom: 91 / 352
  30796. }
  30797. },
  30798. headFront: {
  30799. height: math.unit(53, "feet"),
  30800. name: "Head (Front)",
  30801. image: {
  30802. source: "./media/characters/kodran/head-front.svg"
  30803. }
  30804. },
  30805. headSide: {
  30806. height: math.unit(65, "feet"),
  30807. name: "Head (Side)",
  30808. image: {
  30809. source: "./media/characters/kodran/head-side.svg"
  30810. }
  30811. },
  30812. throat: {
  30813. height: math.unit(79, "feet"),
  30814. name: "Throat",
  30815. image: {
  30816. source: "./media/characters/kodran/throat.svg"
  30817. }
  30818. },
  30819. },
  30820. [
  30821. {
  30822. name: "Large",
  30823. height: math.unit(106, "feet"),
  30824. default: true
  30825. },
  30826. ]
  30827. ))
  30828. characterMakers.push(() => makeCharacter(
  30829. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30830. {
  30831. side: {
  30832. height: math.unit(11, "feet"),
  30833. weight: math.unit(150, "lb"),
  30834. name: "Side",
  30835. image: {
  30836. source: "./media/characters/pyxaron/side.svg",
  30837. extra: 305 / 195,
  30838. bottom: 17 / 322
  30839. }
  30840. },
  30841. },
  30842. [
  30843. {
  30844. name: "Normal",
  30845. height: math.unit(11, "feet"),
  30846. default: true
  30847. },
  30848. ]
  30849. ))
  30850. characterMakers.push(() => makeCharacter(
  30851. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30852. {
  30853. front: {
  30854. height: math.unit(6, "feet"),
  30855. weight: math.unit(150, "lb"),
  30856. name: "Front",
  30857. image: {
  30858. source: "./media/characters/meep/front.svg",
  30859. extra: 88 / 80,
  30860. bottom: 6 / 94
  30861. }
  30862. },
  30863. },
  30864. [
  30865. {
  30866. name: "Fun Sized",
  30867. height: math.unit(2, "inches"),
  30868. default: true
  30869. },
  30870. {
  30871. name: "Friend Sized",
  30872. height: math.unit(8, "inches")
  30873. },
  30874. ]
  30875. ))
  30876. characterMakers.push(() => makeCharacter(
  30877. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30878. {
  30879. front: {
  30880. height: math.unit(15, "feet"),
  30881. weight: math.unit(2500, "lb"),
  30882. name: "Front",
  30883. image: {
  30884. source: "./media/characters/holly-rabbit/front.svg",
  30885. extra: 1433 / 1233,
  30886. bottom: 125 / 1558
  30887. }
  30888. },
  30889. dick: {
  30890. height: math.unit(4.6, "feet"),
  30891. name: "Dick",
  30892. image: {
  30893. source: "./media/characters/holly-rabbit/dick.svg"
  30894. }
  30895. },
  30896. },
  30897. [
  30898. {
  30899. name: "Normal",
  30900. height: math.unit(15, "feet"),
  30901. default: true
  30902. },
  30903. {
  30904. name: "Macro",
  30905. height: math.unit(250, "feet")
  30906. },
  30907. {
  30908. name: "Macro+",
  30909. height: math.unit(2500, "feet")
  30910. },
  30911. ]
  30912. ))
  30913. characterMakers.push(() => makeCharacter(
  30914. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30915. {
  30916. front: {
  30917. height: math.unit(3.02, "meters"),
  30918. weight: math.unit(500, "kg"),
  30919. name: "Front",
  30920. image: {
  30921. source: "./media/characters/drena/front.svg",
  30922. extra: 282 / 243,
  30923. bottom: 8 / 290
  30924. }
  30925. },
  30926. side: {
  30927. height: math.unit(3.02, "meters"),
  30928. weight: math.unit(500, "kg"),
  30929. name: "Side",
  30930. image: {
  30931. source: "./media/characters/drena/side.svg",
  30932. extra: 280 / 245,
  30933. bottom: 10 / 290
  30934. }
  30935. },
  30936. back: {
  30937. height: math.unit(3.02, "meters"),
  30938. weight: math.unit(500, "kg"),
  30939. name: "Back",
  30940. image: {
  30941. source: "./media/characters/drena/back.svg",
  30942. extra: 278 / 243,
  30943. bottom: 2 / 280
  30944. }
  30945. },
  30946. foot: {
  30947. height: math.unit(0.75, "meters"),
  30948. name: "Foot",
  30949. image: {
  30950. source: "./media/characters/drena/foot.svg"
  30951. }
  30952. },
  30953. maw: {
  30954. height: math.unit(0.82, "meters"),
  30955. name: "Maw",
  30956. image: {
  30957. source: "./media/characters/drena/maw.svg"
  30958. }
  30959. },
  30960. eating: {
  30961. height: math.unit(0.75, "meters"),
  30962. name: "Eating",
  30963. image: {
  30964. source: "./media/characters/drena/eating.svg"
  30965. }
  30966. },
  30967. rump: {
  30968. height: math.unit(0.93, "meters"),
  30969. name: "Rump",
  30970. image: {
  30971. source: "./media/characters/drena/rump.svg"
  30972. }
  30973. },
  30974. },
  30975. [
  30976. {
  30977. name: "Normal",
  30978. height: math.unit(3.02, "meters"),
  30979. default: true
  30980. },
  30981. ]
  30982. ))
  30983. characterMakers.push(() => makeCharacter(
  30984. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30985. {
  30986. front: {
  30987. height: math.unit(6 + 4 / 12, "feet"),
  30988. weight: math.unit(250, "lb"),
  30989. name: "Front",
  30990. image: {
  30991. source: "./media/characters/remmyzilla/front.svg",
  30992. extra: 4033 / 3588,
  30993. bottom: 123 / 4156
  30994. }
  30995. },
  30996. back: {
  30997. height: math.unit(6 + 4 / 12, "feet"),
  30998. weight: math.unit(250, "lb"),
  30999. name: "Back",
  31000. image: {
  31001. source: "./media/characters/remmyzilla/back.svg",
  31002. extra: 1696/1602,
  31003. bottom: 63/1759
  31004. }
  31005. },
  31006. paw: {
  31007. height: math.unit(1.73, "feet"),
  31008. name: "Paw",
  31009. image: {
  31010. source: "./media/characters/remmyzilla/paw.svg"
  31011. },
  31012. extraAttributes: {
  31013. "toeSize": {
  31014. name: "Toe Size",
  31015. power: 2,
  31016. type: "area",
  31017. base: math.unit(0.0035, "m^2")
  31018. },
  31019. "padSize": {
  31020. name: "Pad Size",
  31021. power: 2,
  31022. type: "area",
  31023. base: math.unit(0.015, "m^2")
  31024. },
  31025. "pawsize": {
  31026. name: "Paw Size",
  31027. power: 2,
  31028. type: "area",
  31029. base: math.unit(0.072, "m^2")
  31030. },
  31031. }
  31032. },
  31033. maw: {
  31034. height: math.unit(1.73, "feet"),
  31035. name: "Maw",
  31036. image: {
  31037. source: "./media/characters/remmyzilla/maw.svg"
  31038. }
  31039. },
  31040. },
  31041. [
  31042. {
  31043. name: "Normal",
  31044. height: math.unit(6 + 4 / 12, "feet")
  31045. },
  31046. {
  31047. name: "Minimacro",
  31048. height: math.unit(12 + 8 / 12, "feet")
  31049. },
  31050. {
  31051. name: "Normal",
  31052. height: math.unit(640, "feet"),
  31053. default: true
  31054. },
  31055. {
  31056. name: "Megamacro",
  31057. height: math.unit(6400, "feet")
  31058. },
  31059. {
  31060. name: "Gigamacro",
  31061. height: math.unit(64000, "miles")
  31062. },
  31063. ]
  31064. ))
  31065. characterMakers.push(() => makeCharacter(
  31066. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31067. {
  31068. front: {
  31069. height: math.unit(2.5, "meters"),
  31070. weight: math.unit(300, "lb"),
  31071. name: "Front",
  31072. image: {
  31073. source: "./media/characters/lawrence/front.svg",
  31074. extra: 357 / 335,
  31075. bottom: 30 / 387
  31076. }
  31077. },
  31078. back: {
  31079. height: math.unit(2.5, "meters"),
  31080. weight: math.unit(300, "lb"),
  31081. name: "Back",
  31082. image: {
  31083. source: "./media/characters/lawrence/back.svg",
  31084. extra: 357 / 338,
  31085. bottom: 16 / 373
  31086. }
  31087. },
  31088. head: {
  31089. height: math.unit(0.9, "meter"),
  31090. name: "Head",
  31091. image: {
  31092. source: "./media/characters/lawrence/head.svg"
  31093. }
  31094. },
  31095. maw: {
  31096. height: math.unit(0.7, "meter"),
  31097. name: "Maw",
  31098. image: {
  31099. source: "./media/characters/lawrence/maw.svg"
  31100. }
  31101. },
  31102. footBottom: {
  31103. height: math.unit(0.5, "meter"),
  31104. name: "Foot (Bottom)",
  31105. image: {
  31106. source: "./media/characters/lawrence/foot-bottom.svg"
  31107. }
  31108. },
  31109. footTop: {
  31110. height: math.unit(0.5, "meter"),
  31111. name: "Foot (Top)",
  31112. image: {
  31113. source: "./media/characters/lawrence/foot-top.svg"
  31114. }
  31115. },
  31116. },
  31117. [
  31118. {
  31119. name: "Normal",
  31120. height: math.unit(2.5, "meters"),
  31121. default: true
  31122. },
  31123. {
  31124. name: "Macro",
  31125. height: math.unit(95, "meters")
  31126. },
  31127. {
  31128. name: "Megamacro",
  31129. height: math.unit(150, "km")
  31130. },
  31131. ]
  31132. ))
  31133. characterMakers.push(() => makeCharacter(
  31134. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31135. {
  31136. front: {
  31137. height: math.unit(4.2, "meters"),
  31138. preyCapacity: math.unit(50, "m^3"),
  31139. weight: math.unit(30, "tonnes"),
  31140. name: "Front",
  31141. image: {
  31142. source: "./media/characters/sydney/front.svg",
  31143. extra: 1177/1129,
  31144. bottom: 197/1374
  31145. },
  31146. extraAttributes: {
  31147. "length": {
  31148. name: "Length",
  31149. power: 1,
  31150. type: "length",
  31151. base: math.unit(21, "meters")
  31152. },
  31153. }
  31154. },
  31155. },
  31156. [
  31157. {
  31158. name: "Normal",
  31159. height: math.unit(4.2, "meters"),
  31160. default: true
  31161. },
  31162. ]
  31163. ))
  31164. characterMakers.push(() => makeCharacter(
  31165. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31166. {
  31167. back: {
  31168. height: math.unit(201, "feet"),
  31169. name: "Back",
  31170. image: {
  31171. source: "./media/characters/jessica/back.svg",
  31172. extra: 273 / 259,
  31173. bottom: 7 / 280
  31174. }
  31175. },
  31176. },
  31177. [
  31178. {
  31179. name: "Normal",
  31180. height: math.unit(201, "feet"),
  31181. default: true
  31182. },
  31183. {
  31184. name: "Megamacro",
  31185. height: math.unit(8, "miles")
  31186. },
  31187. ]
  31188. ))
  31189. characterMakers.push(() => makeCharacter(
  31190. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31191. {
  31192. side: {
  31193. height: math.unit(5.6, "m"),
  31194. weight: math.unit(8000, "kg"),
  31195. name: "Side",
  31196. image: {
  31197. source: "./media/characters/victoria/side.svg",
  31198. extra: 1542/1229,
  31199. bottom: 124/1666
  31200. }
  31201. },
  31202. maw: {
  31203. height: math.unit(7.14, "feet"),
  31204. name: "Maw",
  31205. image: {
  31206. source: "./media/characters/victoria/maw.svg"
  31207. }
  31208. },
  31209. },
  31210. [
  31211. {
  31212. name: "Normal",
  31213. height: math.unit(5.6, "m"),
  31214. default: true
  31215. },
  31216. ]
  31217. ))
  31218. characterMakers.push(() => makeCharacter(
  31219. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31220. {
  31221. front: {
  31222. height: math.unit(5 + 6 / 12, "feet"),
  31223. name: "Front",
  31224. image: {
  31225. source: "./media/characters/cat/front.svg",
  31226. extra: 1449/1295,
  31227. bottom: 34/1483
  31228. },
  31229. form: "cat",
  31230. default: true
  31231. },
  31232. back: {
  31233. height: math.unit(5 + 6 / 12, "feet"),
  31234. name: "Back",
  31235. image: {
  31236. source: "./media/characters/cat/back.svg",
  31237. extra: 1466/1301,
  31238. bottom: 19/1485
  31239. },
  31240. form: "cat"
  31241. },
  31242. taur: {
  31243. height: math.unit(7, "feet"),
  31244. name: "Taur",
  31245. image: {
  31246. source: "./media/characters/cat/taur.svg",
  31247. extra: 1389/1233,
  31248. bottom: 83/1472
  31249. },
  31250. form: "taur",
  31251. default: true
  31252. },
  31253. lucarioFront: {
  31254. height: math.unit(4, "feet"),
  31255. name: "Lucario (Front)",
  31256. image: {
  31257. source: "./media/characters/cat/lucario-front.svg",
  31258. extra: 1149/1019,
  31259. bottom: 84/1233
  31260. },
  31261. form: "lucario",
  31262. default: true
  31263. },
  31264. lucarioBack: {
  31265. height: math.unit(4, "feet"),
  31266. name: "Lucario (Back)",
  31267. image: {
  31268. source: "./media/characters/cat/lucario-back.svg",
  31269. extra: 1190/1059,
  31270. bottom: 33/1223
  31271. },
  31272. form: "lucario"
  31273. },
  31274. megaLucario: {
  31275. height: math.unit(4, "feet"),
  31276. name: "Mega Lucario",
  31277. image: {
  31278. source: "./media/characters/cat/mega-lucario.svg",
  31279. extra: 1515 / 1319,
  31280. bottom: 63 / 1578
  31281. },
  31282. form: "lucario"
  31283. },
  31284. nickit: {
  31285. height: math.unit(2, "feet"),
  31286. name: "Nickit",
  31287. image: {
  31288. source: "./media/characters/cat/nickit.svg",
  31289. extra: 1980 / 1585,
  31290. bottom: 102 / 2082
  31291. },
  31292. form: "nickit",
  31293. default: true
  31294. },
  31295. lopunnyFront: {
  31296. height: math.unit(5, "feet"),
  31297. name: "Lopunny (Front)",
  31298. image: {
  31299. source: "./media/characters/cat/lopunny-front.svg",
  31300. extra: 1782 / 1469,
  31301. bottom: 38 / 1820
  31302. },
  31303. form: "lopunny",
  31304. default: true
  31305. },
  31306. lopunnyBack: {
  31307. height: math.unit(5, "feet"),
  31308. name: "Lopunny (Back)",
  31309. image: {
  31310. source: "./media/characters/cat/lopunny-back.svg",
  31311. extra: 1660 / 1490,
  31312. bottom: 25 / 1685
  31313. },
  31314. form: "lopunny"
  31315. },
  31316. },
  31317. [
  31318. {
  31319. name: "Really small",
  31320. height: math.unit(1, "nm")
  31321. },
  31322. {
  31323. name: "Micro",
  31324. height: math.unit(5, "inches")
  31325. },
  31326. {
  31327. name: "Normal",
  31328. height: math.unit(5 + 6 / 12, "feet"),
  31329. default: true
  31330. },
  31331. {
  31332. name: "Macro",
  31333. height: math.unit(50, "feet")
  31334. },
  31335. {
  31336. name: "Macro+",
  31337. height: math.unit(150, "feet")
  31338. },
  31339. {
  31340. name: "Megamacro",
  31341. height: math.unit(100, "miles")
  31342. },
  31343. ]
  31344. ))
  31345. characterMakers.push(() => makeCharacter(
  31346. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31347. {
  31348. front: {
  31349. height: math.unit(63.4, "meters"),
  31350. weight: math.unit(3.28349e+6, "kilograms"),
  31351. name: "Front",
  31352. image: {
  31353. source: "./media/characters/kirina-violet/front.svg",
  31354. extra: 2812 / 2725,
  31355. bottom: 0 / 2812
  31356. }
  31357. },
  31358. back: {
  31359. height: math.unit(63.4, "meters"),
  31360. weight: math.unit(3.28349e+6, "kilograms"),
  31361. name: "Back",
  31362. image: {
  31363. source: "./media/characters/kirina-violet/back.svg",
  31364. extra: 2812 / 2725,
  31365. bottom: 0 / 2812
  31366. }
  31367. },
  31368. mouth: {
  31369. height: math.unit(4.35, "meters"),
  31370. name: "Mouth",
  31371. image: {
  31372. source: "./media/characters/kirina-violet/mouth.svg"
  31373. }
  31374. },
  31375. paw: {
  31376. height: math.unit(5.6, "meters"),
  31377. name: "Paw",
  31378. image: {
  31379. source: "./media/characters/kirina-violet/paw.svg"
  31380. }
  31381. },
  31382. tail: {
  31383. height: math.unit(18, "meters"),
  31384. name: "Tail",
  31385. image: {
  31386. source: "./media/characters/kirina-violet/tail.svg"
  31387. }
  31388. },
  31389. },
  31390. [
  31391. {
  31392. name: "Macro",
  31393. height: math.unit(63.4, "meters"),
  31394. default: true
  31395. },
  31396. ]
  31397. ))
  31398. characterMakers.push(() => makeCharacter(
  31399. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31400. {
  31401. front: {
  31402. height: math.unit(75, "feet"),
  31403. name: "Front",
  31404. image: {
  31405. source: "./media/characters/cat-gigachu/front.svg",
  31406. extra: 1239/1027,
  31407. bottom: 32/1271
  31408. }
  31409. },
  31410. back: {
  31411. height: math.unit(75, "feet"),
  31412. name: "Back",
  31413. image: {
  31414. source: "./media/characters/cat-gigachu/back.svg",
  31415. extra: 1229/1030,
  31416. bottom: 9/1238
  31417. }
  31418. },
  31419. },
  31420. [
  31421. {
  31422. name: "Dynamax",
  31423. height: math.unit(75, "feet"),
  31424. default: true
  31425. },
  31426. ]
  31427. ))
  31428. characterMakers.push(() => makeCharacter(
  31429. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31430. {
  31431. front: {
  31432. height: math.unit(6, "feet"),
  31433. weight: math.unit(150, "lb"),
  31434. name: "Front",
  31435. image: {
  31436. source: "./media/characters/sfaiyan/front.svg",
  31437. extra: 999 / 978,
  31438. bottom: 5 / 1004
  31439. }
  31440. },
  31441. },
  31442. [
  31443. {
  31444. name: "Normal",
  31445. height: math.unit(1.82, "meters")
  31446. },
  31447. {
  31448. name: "Giant",
  31449. height: math.unit(2.27, "km"),
  31450. default: true
  31451. },
  31452. ]
  31453. ))
  31454. characterMakers.push(() => makeCharacter(
  31455. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31456. {
  31457. front: {
  31458. height: math.unit(179, "cm"),
  31459. weight: math.unit(100, "kg"),
  31460. name: "Front",
  31461. image: {
  31462. source: "./media/characters/raunehkeli/front.svg",
  31463. extra: 1934 / 1926,
  31464. bottom: 0 / 1934
  31465. }
  31466. },
  31467. },
  31468. [
  31469. {
  31470. name: "Normal",
  31471. height: math.unit(179, "cm")
  31472. },
  31473. {
  31474. name: "Maximum",
  31475. height: math.unit(575, "meters"),
  31476. default: true
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31482. {
  31483. front: {
  31484. height: math.unit(6, "feet"),
  31485. weight: math.unit(150, "lb"),
  31486. name: "Front",
  31487. image: {
  31488. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31489. extra: 2625 / 2518,
  31490. bottom: 60 / 2685
  31491. }
  31492. },
  31493. },
  31494. [
  31495. {
  31496. name: "Normal",
  31497. height: math.unit(6 + 2 / 12, "feet")
  31498. },
  31499. {
  31500. name: "Macro",
  31501. height: math.unit(1180, "feet"),
  31502. default: true
  31503. },
  31504. ]
  31505. ))
  31506. characterMakers.push(() => makeCharacter(
  31507. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31508. {
  31509. front: {
  31510. height: math.unit(5 + 6 / 12, "feet"),
  31511. weight: math.unit(108, "lb"),
  31512. name: "Front",
  31513. image: {
  31514. source: "./media/characters/lilith-zott/front.svg",
  31515. extra: 2510 / 2238,
  31516. bottom: 100 / 2610
  31517. }
  31518. },
  31519. frontDressed: {
  31520. height: math.unit(5 + 6 / 12, "feet"),
  31521. weight: math.unit(108, "lb"),
  31522. name: "Front (Dressed)",
  31523. image: {
  31524. source: "./media/characters/lilith-zott/front-dressed.svg",
  31525. extra: 2510 / 2238,
  31526. bottom: 100 / 2610
  31527. }
  31528. },
  31529. },
  31530. [
  31531. {
  31532. name: "Normal",
  31533. height: math.unit(5 + 6 / 12, "feet")
  31534. },
  31535. {
  31536. name: "Macro",
  31537. height: math.unit(1030, "feet"),
  31538. default: true
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31544. {
  31545. front: {
  31546. height: math.unit(6, "feet"),
  31547. weight: math.unit(150, "lb"),
  31548. name: "Front",
  31549. image: {
  31550. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31551. extra: 2567 / 2435,
  31552. bottom: 39 / 2606
  31553. }
  31554. },
  31555. frontSuper: {
  31556. height: math.unit(6, "feet"),
  31557. name: "Front (Super)",
  31558. image: {
  31559. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31560. extra: 2567 / 2435,
  31561. bottom: 39 / 2606
  31562. }
  31563. },
  31564. },
  31565. [
  31566. {
  31567. name: "Normal",
  31568. height: math.unit(5 + 10 / 12, "feet")
  31569. },
  31570. {
  31571. name: "Macro",
  31572. height: math.unit(1100, "feet"),
  31573. default: true
  31574. },
  31575. ]
  31576. ))
  31577. characterMakers.push(() => makeCharacter(
  31578. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31579. {
  31580. front: {
  31581. height: math.unit(100, "miles"),
  31582. name: "Front",
  31583. image: {
  31584. source: "./media/characters/sona/front.svg",
  31585. extra: 2433 / 2201,
  31586. bottom: 53 / 2486
  31587. }
  31588. },
  31589. foot: {
  31590. height: math.unit(16.1, "miles"),
  31591. name: "Foot",
  31592. image: {
  31593. source: "./media/characters/sona/foot.svg"
  31594. }
  31595. },
  31596. },
  31597. [
  31598. {
  31599. name: "Macro",
  31600. height: math.unit(100, "miles"),
  31601. default: true
  31602. },
  31603. ]
  31604. ))
  31605. characterMakers.push(() => makeCharacter(
  31606. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31607. {
  31608. front: {
  31609. height: math.unit(6, "feet"),
  31610. weight: math.unit(150, "lb"),
  31611. name: "Front",
  31612. image: {
  31613. source: "./media/characters/bailey/front.svg",
  31614. extra: 1778 / 1724,
  31615. bottom: 30 / 1808
  31616. }
  31617. },
  31618. },
  31619. [
  31620. {
  31621. name: "Micro",
  31622. height: math.unit(4, "inches")
  31623. },
  31624. {
  31625. name: "Normal",
  31626. height: math.unit(5 + 5 / 12, "feet"),
  31627. default: true
  31628. },
  31629. {
  31630. name: "Macro",
  31631. height: math.unit(250, "feet")
  31632. },
  31633. {
  31634. name: "Megamacro",
  31635. height: math.unit(100, "miles")
  31636. },
  31637. ]
  31638. ))
  31639. characterMakers.push(() => makeCharacter(
  31640. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31641. {
  31642. front: {
  31643. height: math.unit(5 + 2 / 12, "feet"),
  31644. weight: math.unit(120, "lb"),
  31645. name: "Front",
  31646. image: {
  31647. source: "./media/characters/snaps/front.svg",
  31648. extra: 2370 / 2177,
  31649. bottom: 48 / 2418
  31650. }
  31651. },
  31652. back: {
  31653. height: math.unit(5 + 2 / 12, "feet"),
  31654. weight: math.unit(120, "lb"),
  31655. name: "Back",
  31656. image: {
  31657. source: "./media/characters/snaps/back.svg",
  31658. extra: 2408 / 2258,
  31659. bottom: 15 / 2423
  31660. }
  31661. },
  31662. },
  31663. [
  31664. {
  31665. name: "Micro",
  31666. height: math.unit(9, "inches")
  31667. },
  31668. {
  31669. name: "Normal",
  31670. height: math.unit(5 + 2 / 12, "feet"),
  31671. default: true
  31672. },
  31673. {
  31674. name: "Mini Macro",
  31675. height: math.unit(10, "feet")
  31676. },
  31677. ]
  31678. ))
  31679. characterMakers.push(() => makeCharacter(
  31680. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31681. {
  31682. front: {
  31683. height: math.unit(1.8, "meters"),
  31684. weight: math.unit(85, "kg"),
  31685. name: "Front",
  31686. image: {
  31687. source: "./media/characters/azteck/front.svg",
  31688. extra: 2815 / 2625,
  31689. bottom: 89 / 2904
  31690. }
  31691. },
  31692. back: {
  31693. height: math.unit(1.8, "meters"),
  31694. weight: math.unit(85, "kg"),
  31695. name: "Back",
  31696. image: {
  31697. source: "./media/characters/azteck/back.svg",
  31698. extra: 2856 / 2648,
  31699. bottom: 85 / 2941
  31700. }
  31701. },
  31702. frontDressed: {
  31703. height: math.unit(1.8, "meters"),
  31704. weight: math.unit(85, "kg"),
  31705. name: "Front (Dressed)",
  31706. image: {
  31707. source: "./media/characters/azteck/front-dressed.svg",
  31708. extra: 2147 / 2003,
  31709. bottom: 68 / 2215
  31710. }
  31711. },
  31712. head: {
  31713. height: math.unit(0.47, "meters"),
  31714. weight: math.unit(85, "kg"),
  31715. name: "Head",
  31716. image: {
  31717. source: "./media/characters/azteck/head.svg"
  31718. }
  31719. },
  31720. },
  31721. [
  31722. {
  31723. name: "Bite sized",
  31724. height: math.unit(16, "cm")
  31725. },
  31726. {
  31727. name: "Normal",
  31728. height: math.unit(1.8, "meters"),
  31729. default: true
  31730. },
  31731. ]
  31732. ))
  31733. characterMakers.push(() => makeCharacter(
  31734. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31735. {
  31736. front: {
  31737. height: math.unit(6, "feet"),
  31738. weight: math.unit(150, "lb"),
  31739. name: "Front",
  31740. image: {
  31741. source: "./media/characters/pidge/front.svg",
  31742. extra: 1936/1820,
  31743. bottom: 0/1936
  31744. }
  31745. },
  31746. back: {
  31747. height: math.unit(6, "feet"),
  31748. weight: math.unit(150, "lb"),
  31749. name: "Back",
  31750. image: {
  31751. source: "./media/characters/pidge/back.svg",
  31752. extra: 1938/1843,
  31753. bottom: 0/1938
  31754. }
  31755. },
  31756. casual: {
  31757. height: math.unit(6, "feet"),
  31758. weight: math.unit(150, "lb"),
  31759. name: "Casual",
  31760. image: {
  31761. source: "./media/characters/pidge/casual.svg",
  31762. extra: 1936/1820,
  31763. bottom: 0/1936
  31764. }
  31765. },
  31766. tech: {
  31767. height: math.unit(6, "feet"),
  31768. weight: math.unit(150, "lb"),
  31769. name: "Tech",
  31770. image: {
  31771. source: "./media/characters/pidge/tech.svg",
  31772. extra: 1802/1682,
  31773. bottom: 0/1802
  31774. }
  31775. },
  31776. head: {
  31777. height: math.unit(1.61, "feet"),
  31778. name: "Head",
  31779. image: {
  31780. source: "./media/characters/pidge/head.svg"
  31781. }
  31782. },
  31783. collar: {
  31784. height: math.unit(0.82, "feet"),
  31785. name: "Collar",
  31786. image: {
  31787. source: "./media/characters/pidge/collar.svg"
  31788. }
  31789. },
  31790. },
  31791. [
  31792. {
  31793. name: "Macro",
  31794. height: math.unit(2, "mile"),
  31795. default: true
  31796. },
  31797. {
  31798. name: "PUPPY",
  31799. height: math.unit(20, "miles")
  31800. },
  31801. ]
  31802. ))
  31803. characterMakers.push(() => makeCharacter(
  31804. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31805. {
  31806. front: {
  31807. height: math.unit(6, "feet"),
  31808. weight: math.unit(150, "lb"),
  31809. name: "Front",
  31810. image: {
  31811. source: "./media/characters/en/front.svg",
  31812. extra: 1697 / 1563,
  31813. bottom: 103 / 1800
  31814. }
  31815. },
  31816. back: {
  31817. height: math.unit(6, "feet"),
  31818. weight: math.unit(150, "lb"),
  31819. name: "Back",
  31820. image: {
  31821. source: "./media/characters/en/back.svg",
  31822. extra: 1700 / 1570,
  31823. bottom: 51 / 1751
  31824. }
  31825. },
  31826. frontDressed: {
  31827. height: math.unit(6, "feet"),
  31828. weight: math.unit(150, "lb"),
  31829. name: "Front (Dressed)",
  31830. image: {
  31831. source: "./media/characters/en/front-dressed.svg",
  31832. extra: 1697 / 1563,
  31833. bottom: 103 / 1800
  31834. }
  31835. },
  31836. backDressed: {
  31837. height: math.unit(6, "feet"),
  31838. weight: math.unit(150, "lb"),
  31839. name: "Back (Dressed)",
  31840. image: {
  31841. source: "./media/characters/en/back-dressed.svg",
  31842. extra: 1700 / 1570,
  31843. bottom: 51 / 1751
  31844. }
  31845. },
  31846. },
  31847. [
  31848. {
  31849. name: "Macro",
  31850. height: math.unit(210, "feet"),
  31851. default: true
  31852. },
  31853. ]
  31854. ))
  31855. characterMakers.push(() => makeCharacter(
  31856. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31857. {
  31858. front: {
  31859. height: math.unit(6, "feet"),
  31860. weight: math.unit(150, "lb"),
  31861. name: "Front",
  31862. image: {
  31863. source: "./media/characters/haze-orris/front.svg",
  31864. extra: 3975 / 3525,
  31865. bottom: 137 / 4112
  31866. }
  31867. },
  31868. },
  31869. [
  31870. {
  31871. name: "Micro",
  31872. height: math.unit(150, "mm"),
  31873. default: true
  31874. },
  31875. ]
  31876. ))
  31877. characterMakers.push(() => makeCharacter(
  31878. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31879. {
  31880. front: {
  31881. height: math.unit(6, "feet"),
  31882. weight: math.unit(150, "lb"),
  31883. name: "Front",
  31884. image: {
  31885. source: "./media/characters/casselene-yaro/front.svg",
  31886. extra: 4721 / 4541,
  31887. bottom: 82 / 4803
  31888. }
  31889. },
  31890. back: {
  31891. height: math.unit(6, "feet"),
  31892. weight: math.unit(150, "lb"),
  31893. name: "Back",
  31894. image: {
  31895. source: "./media/characters/casselene-yaro/back.svg",
  31896. extra: 4569 / 4377,
  31897. bottom: 69 / 4638
  31898. }
  31899. },
  31900. dressed: {
  31901. height: math.unit(6, "feet"),
  31902. weight: math.unit(150, "lb"),
  31903. name: "Dressed",
  31904. image: {
  31905. source: "./media/characters/casselene-yaro/dressed.svg",
  31906. extra: 4721 / 4541,
  31907. bottom: 82 / 4803
  31908. }
  31909. },
  31910. maw: {
  31911. height: math.unit(1, "feet"),
  31912. name: "Maw",
  31913. image: {
  31914. source: "./media/characters/casselene-yaro/maw.svg"
  31915. }
  31916. },
  31917. },
  31918. [
  31919. {
  31920. name: "Macro",
  31921. height: math.unit(190, "feet"),
  31922. default: true
  31923. },
  31924. ]
  31925. ))
  31926. characterMakers.push(() => makeCharacter(
  31927. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31928. {
  31929. front: {
  31930. height: math.unit(10, "feet"),
  31931. weight: math.unit(15015, "lb"),
  31932. name: "Front",
  31933. image: {
  31934. source: "./media/characters/platine/front.svg",
  31935. extra: 1741/1650,
  31936. bottom: 84/1825
  31937. }
  31938. },
  31939. side: {
  31940. height: math.unit(10, "feet"),
  31941. weight: math.unit(15015, "lb"),
  31942. name: "Side",
  31943. image: {
  31944. source: "./media/characters/platine/side.svg",
  31945. extra: 1790/1705,
  31946. bottom: 29/1819
  31947. }
  31948. },
  31949. },
  31950. [
  31951. {
  31952. name: "Normal",
  31953. height: math.unit(10, "feet"),
  31954. default: true
  31955. },
  31956. {
  31957. name: "Macro",
  31958. height: math.unit(100, "feet")
  31959. },
  31960. {
  31961. name: "Megamacro",
  31962. height: math.unit(1000, "feet")
  31963. },
  31964. ]
  31965. ))
  31966. characterMakers.push(() => makeCharacter(
  31967. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31968. {
  31969. front: {
  31970. height: math.unit(15 + 5 / 12, "feet"),
  31971. weight: math.unit(4600, "lb"),
  31972. name: "Front",
  31973. image: {
  31974. source: "./media/characters/neapolitan-ananassa/front.svg",
  31975. extra: 2903 / 2736,
  31976. bottom: 0 / 2903
  31977. }
  31978. },
  31979. side: {
  31980. height: math.unit(15 + 5 / 12, "feet"),
  31981. weight: math.unit(4600, "lb"),
  31982. name: "Side",
  31983. image: {
  31984. source: "./media/characters/neapolitan-ananassa/side.svg",
  31985. extra: 2925 / 2719,
  31986. bottom: 0 / 2925
  31987. }
  31988. },
  31989. back: {
  31990. height: math.unit(15 + 5 / 12, "feet"),
  31991. weight: math.unit(4600, "lb"),
  31992. name: "Back",
  31993. image: {
  31994. source: "./media/characters/neapolitan-ananassa/back.svg",
  31995. extra: 2903 / 2736,
  31996. bottom: 0 / 2903
  31997. }
  31998. },
  31999. },
  32000. [
  32001. {
  32002. name: "Normal",
  32003. height: math.unit(15 + 5 / 12, "feet"),
  32004. default: true
  32005. },
  32006. {
  32007. name: "Post-Millenium",
  32008. height: math.unit(35 + 5 / 12, "feet")
  32009. },
  32010. {
  32011. name: "Post-Era",
  32012. height: math.unit(450 + 5 / 12, "feet")
  32013. },
  32014. ]
  32015. ))
  32016. characterMakers.push(() => makeCharacter(
  32017. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32018. {
  32019. front: {
  32020. height: math.unit(300, "meters"),
  32021. weight: math.unit(125000, "tonnes"),
  32022. name: "Front",
  32023. image: {
  32024. source: "./media/characters/pazuzu/front.svg",
  32025. extra: 877 / 794,
  32026. bottom: 47 / 924
  32027. }
  32028. },
  32029. },
  32030. [
  32031. {
  32032. name: "Macro",
  32033. height: math.unit(300, "meters"),
  32034. default: true
  32035. },
  32036. ]
  32037. ))
  32038. characterMakers.push(() => makeCharacter(
  32039. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32040. {
  32041. side: {
  32042. height: math.unit(10 + 7 / 12, "feet"),
  32043. weight: math.unit(2.5, "tons"),
  32044. name: "Side",
  32045. image: {
  32046. source: "./media/characters/aasha/side.svg",
  32047. extra: 1345 / 1245,
  32048. bottom: 111 / 1456
  32049. }
  32050. },
  32051. back: {
  32052. height: math.unit(10 + 7 / 12, "feet"),
  32053. weight: math.unit(2.5, "tons"),
  32054. name: "Back",
  32055. image: {
  32056. source: "./media/characters/aasha/back.svg",
  32057. extra: 1133 / 1057,
  32058. bottom: 257 / 1390
  32059. }
  32060. },
  32061. },
  32062. [
  32063. {
  32064. name: "Normal",
  32065. height: math.unit(10 + 7 / 12, "feet"),
  32066. default: true
  32067. },
  32068. ]
  32069. ))
  32070. characterMakers.push(() => makeCharacter(
  32071. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32072. {
  32073. front: {
  32074. height: math.unit(6 + 3 / 12, "feet"),
  32075. name: "Front",
  32076. image: {
  32077. source: "./media/characters/nevan/front.svg",
  32078. extra: 704 / 704,
  32079. bottom: 28 / 732
  32080. }
  32081. },
  32082. back: {
  32083. height: math.unit(6 + 3 / 12, "feet"),
  32084. name: "Back",
  32085. image: {
  32086. source: "./media/characters/nevan/back.svg",
  32087. extra: 714 / 714,
  32088. bottom: 21 / 735
  32089. }
  32090. },
  32091. frontFlaccid: {
  32092. height: math.unit(6 + 3 / 12, "feet"),
  32093. name: "Front (Flaccid)",
  32094. image: {
  32095. source: "./media/characters/nevan/front-flaccid.svg",
  32096. extra: 704 / 704,
  32097. bottom: 28 / 732
  32098. }
  32099. },
  32100. frontErect: {
  32101. height: math.unit(6 + 3 / 12, "feet"),
  32102. name: "Front (Erect)",
  32103. image: {
  32104. source: "./media/characters/nevan/front-erect.svg",
  32105. extra: 704 / 704,
  32106. bottom: 28 / 732
  32107. }
  32108. },
  32109. backFlaccid: {
  32110. height: math.unit(6 + 3 / 12, "feet"),
  32111. name: "Back (Flaccid)",
  32112. image: {
  32113. source: "./media/characters/nevan/back-flaccid.svg",
  32114. extra: 714 / 714,
  32115. bottom: 21 / 735
  32116. }
  32117. },
  32118. },
  32119. [
  32120. {
  32121. name: "Normal",
  32122. height: math.unit(6 + 3 / 12, "feet"),
  32123. default: true
  32124. },
  32125. ]
  32126. ))
  32127. characterMakers.push(() => makeCharacter(
  32128. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32129. {
  32130. front: {
  32131. height: math.unit(4, "feet"),
  32132. name: "Front",
  32133. image: {
  32134. source: "./media/characters/arhan/front.svg",
  32135. extra: 3368 / 3133,
  32136. bottom: 0 / 3368
  32137. }
  32138. },
  32139. side: {
  32140. height: math.unit(4, "feet"),
  32141. name: "Side",
  32142. image: {
  32143. source: "./media/characters/arhan/side.svg",
  32144. extra: 3347 / 3105,
  32145. bottom: 0 / 3347
  32146. }
  32147. },
  32148. tongue: {
  32149. height: math.unit(1.42, "feet"),
  32150. name: "Tongue",
  32151. image: {
  32152. source: "./media/characters/arhan/tongue.svg"
  32153. }
  32154. },
  32155. head: {
  32156. height: math.unit(0.85, "feet"),
  32157. name: "Head",
  32158. image: {
  32159. source: "./media/characters/arhan/head.svg"
  32160. }
  32161. },
  32162. },
  32163. [
  32164. {
  32165. name: "Normal",
  32166. height: math.unit(4, "feet"),
  32167. default: true
  32168. },
  32169. ]
  32170. ))
  32171. characterMakers.push(() => makeCharacter(
  32172. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32173. {
  32174. front: {
  32175. height: math.unit(5 + 7.5 / 12, "feet"),
  32176. weight: math.unit(120, "lb"),
  32177. name: "Front",
  32178. image: {
  32179. source: "./media/characters/digi-duncan/front.svg",
  32180. extra: 330 / 326,
  32181. bottom: 16 / 346
  32182. }
  32183. },
  32184. side: {
  32185. height: math.unit(5 + 7.5 / 12, "feet"),
  32186. weight: math.unit(120, "lb"),
  32187. name: "Side",
  32188. image: {
  32189. source: "./media/characters/digi-duncan/side.svg",
  32190. extra: 341 / 337,
  32191. bottom: 1 / 342
  32192. }
  32193. },
  32194. back: {
  32195. height: math.unit(5 + 7.5 / 12, "feet"),
  32196. weight: math.unit(120, "lb"),
  32197. name: "Back",
  32198. image: {
  32199. source: "./media/characters/digi-duncan/back.svg",
  32200. extra: 330 / 326,
  32201. bottom: 12 / 342
  32202. }
  32203. },
  32204. },
  32205. [
  32206. {
  32207. name: "Speck",
  32208. height: math.unit(0.25, "mm")
  32209. },
  32210. {
  32211. name: "Micro",
  32212. height: math.unit(5, "mm")
  32213. },
  32214. {
  32215. name: "Tiny",
  32216. height: math.unit(0.5, "inches"),
  32217. default: true
  32218. },
  32219. {
  32220. name: "Human",
  32221. height: math.unit(5 + 7.5 / 12, "feet")
  32222. },
  32223. {
  32224. name: "Minigiant",
  32225. height: math.unit(8 + 5.25, "feet")
  32226. },
  32227. {
  32228. name: "Giant",
  32229. height: math.unit(2000, "feet")
  32230. },
  32231. {
  32232. name: "Mega",
  32233. height: math.unit(371.1, "miles")
  32234. },
  32235. ]
  32236. ))
  32237. characterMakers.push(() => makeCharacter(
  32238. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32239. {
  32240. front: {
  32241. height: math.unit(2, "meters"),
  32242. weight: math.unit(350, "kg"),
  32243. name: "Front",
  32244. image: {
  32245. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32246. extra: 898 / 838,
  32247. bottom: 9 / 907
  32248. }
  32249. },
  32250. },
  32251. [
  32252. {
  32253. name: "Micro",
  32254. height: math.unit(8, "meters")
  32255. },
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(50, "meters"),
  32259. default: true
  32260. },
  32261. {
  32262. name: "Macro",
  32263. height: math.unit(500, "meters")
  32264. },
  32265. ]
  32266. ))
  32267. characterMakers.push(() => makeCharacter(
  32268. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32269. {
  32270. front: {
  32271. height: math.unit(6 + 6 / 12, "feet"),
  32272. name: "Front",
  32273. image: {
  32274. source: "./media/characters/khardesh/front.svg",
  32275. extra: 1788/1596,
  32276. bottom: 66/1854
  32277. }
  32278. },
  32279. back: {
  32280. height: math.unit(6 + 6 / 12, "feet"),
  32281. name: "Back",
  32282. image: {
  32283. source: "./media/characters/khardesh/back.svg",
  32284. extra: 1781/1584,
  32285. bottom: 68/1849
  32286. }
  32287. },
  32288. },
  32289. [
  32290. {
  32291. name: "Normal",
  32292. height: math.unit(6 + 6 / 12, "feet"),
  32293. default: true
  32294. },
  32295. {
  32296. name: "Normal+",
  32297. height: math.unit(4, "meters")
  32298. },
  32299. {
  32300. name: "Macro",
  32301. height: math.unit(50, "meters")
  32302. },
  32303. {
  32304. name: "Macro+",
  32305. height: math.unit(100, "meters")
  32306. },
  32307. {
  32308. name: "Megamacro",
  32309. height: math.unit(20, "km")
  32310. },
  32311. ]
  32312. ))
  32313. characterMakers.push(() => makeCharacter(
  32314. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32315. {
  32316. front: {
  32317. height: math.unit(6, "feet"),
  32318. weight: math.unit(150, "lb"),
  32319. name: "Front",
  32320. image: {
  32321. source: "./media/characters/kosho/front.svg",
  32322. extra: 1847 / 1847,
  32323. bottom: 86 / 1933
  32324. }
  32325. },
  32326. },
  32327. [
  32328. {
  32329. name: "Second-stage micro",
  32330. height: math.unit(0.5, "inches")
  32331. },
  32332. {
  32333. name: "First-stage micro",
  32334. height: math.unit(6, "inches")
  32335. },
  32336. {
  32337. name: "Normal",
  32338. height: math.unit(6, "feet"),
  32339. default: true
  32340. },
  32341. {
  32342. name: "First-stage macro",
  32343. height: math.unit(72, "feet")
  32344. },
  32345. {
  32346. name: "Second-stage macro",
  32347. height: math.unit(864, "feet")
  32348. },
  32349. ]
  32350. ))
  32351. characterMakers.push(() => makeCharacter(
  32352. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32353. {
  32354. normal: {
  32355. height: math.unit(4 + 6 / 12, "feet"),
  32356. name: "Normal",
  32357. image: {
  32358. source: "./media/characters/hydra/normal.svg",
  32359. extra: 2833 / 2634,
  32360. bottom: 68 / 2901
  32361. }
  32362. },
  32363. smol: {
  32364. height: math.unit(0.705, "inches"),
  32365. name: "Smol",
  32366. image: {
  32367. source: "./media/characters/hydra/smol.svg",
  32368. extra: 2715 / 2540,
  32369. bottom: 0 / 2715
  32370. }
  32371. },
  32372. },
  32373. [
  32374. {
  32375. name: "Normal",
  32376. height: math.unit(4 + 6 / 12, "feet"),
  32377. default: true
  32378. }
  32379. ]
  32380. ))
  32381. characterMakers.push(() => makeCharacter(
  32382. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32383. {
  32384. front: {
  32385. height: math.unit(0.6, "cm"),
  32386. name: "Front",
  32387. image: {
  32388. source: "./media/characters/daz/front.svg",
  32389. extra: 1682 / 1164,
  32390. bottom: 42 / 1724
  32391. }
  32392. },
  32393. },
  32394. [
  32395. {
  32396. name: "Normal",
  32397. height: math.unit(0.6, "cm"),
  32398. default: true
  32399. },
  32400. ]
  32401. ))
  32402. characterMakers.push(() => makeCharacter(
  32403. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32404. {
  32405. front: {
  32406. height: math.unit(6, "feet"),
  32407. weight: math.unit(235, "lb"),
  32408. name: "Front",
  32409. image: {
  32410. source: "./media/characters/theo-pangolin/front.svg",
  32411. extra: 1996 / 1969,
  32412. bottom: 115 / 2111
  32413. }
  32414. },
  32415. back: {
  32416. height: math.unit(6, "feet"),
  32417. weight: math.unit(235, "lb"),
  32418. name: "Back",
  32419. image: {
  32420. source: "./media/characters/theo-pangolin/back.svg",
  32421. extra: 1979 / 1979,
  32422. bottom: 40 / 2019
  32423. }
  32424. },
  32425. feral: {
  32426. height: math.unit(2, "feet"),
  32427. weight: math.unit(30, "lb"),
  32428. name: "Feral",
  32429. image: {
  32430. source: "./media/characters/theo-pangolin/feral.svg",
  32431. extra: 803 / 791,
  32432. bottom: 181 / 984
  32433. }
  32434. },
  32435. footFive: {
  32436. height: math.unit(1.43, "feet"),
  32437. name: "Foot (Five Toes)",
  32438. image: {
  32439. source: "./media/characters/theo-pangolin/foot-five.svg"
  32440. }
  32441. },
  32442. footFour: {
  32443. height: math.unit(1.43, "feet"),
  32444. name: "Foot (Four Toes)",
  32445. image: {
  32446. source: "./media/characters/theo-pangolin/foot-four.svg"
  32447. }
  32448. },
  32449. handFour: {
  32450. height: math.unit(0.81, "feet"),
  32451. name: "Hand (Four Fingers)",
  32452. image: {
  32453. source: "./media/characters/theo-pangolin/hand-four.svg"
  32454. }
  32455. },
  32456. handThree: {
  32457. height: math.unit(0.81, "feet"),
  32458. name: "Hand (Three Fingers)",
  32459. image: {
  32460. source: "./media/characters/theo-pangolin/hand-three.svg"
  32461. }
  32462. },
  32463. headFront: {
  32464. height: math.unit(1.37, "feet"),
  32465. name: "Head (Front)",
  32466. image: {
  32467. source: "./media/characters/theo-pangolin/head-front.svg"
  32468. }
  32469. },
  32470. headSide: {
  32471. height: math.unit(1.43, "feet"),
  32472. name: "Head (Side)",
  32473. image: {
  32474. source: "./media/characters/theo-pangolin/head-side.svg"
  32475. }
  32476. },
  32477. tongue: {
  32478. height: math.unit(2.29, "feet"),
  32479. name: "Tongue",
  32480. image: {
  32481. source: "./media/characters/theo-pangolin/tongue.svg"
  32482. }
  32483. },
  32484. },
  32485. [
  32486. {
  32487. name: "Normal",
  32488. height: math.unit(6, "feet")
  32489. },
  32490. {
  32491. name: "Macro",
  32492. height: math.unit(400, "feet"),
  32493. default: true
  32494. },
  32495. ]
  32496. ))
  32497. characterMakers.push(() => makeCharacter(
  32498. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32499. {
  32500. front: {
  32501. height: math.unit(6, "inches"),
  32502. weight: math.unit(0.036, "kg"),
  32503. name: "Front",
  32504. image: {
  32505. source: "./media/characters/renée/front.svg",
  32506. extra: 900 / 886,
  32507. bottom: 8 / 908
  32508. }
  32509. },
  32510. },
  32511. [
  32512. {
  32513. name: "Nano",
  32514. height: math.unit(1, "nm")
  32515. },
  32516. {
  32517. name: "Micro",
  32518. height: math.unit(1, "mm")
  32519. },
  32520. {
  32521. name: "Normal",
  32522. height: math.unit(6, "inches")
  32523. },
  32524. {
  32525. name: "Macro",
  32526. height: math.unit(2000, "feet"),
  32527. default: true
  32528. },
  32529. {
  32530. name: "Megamacro",
  32531. height: math.unit(2, "km")
  32532. },
  32533. {
  32534. name: "Gigamacro",
  32535. height: math.unit(2000, "km")
  32536. },
  32537. {
  32538. name: "Teramacro",
  32539. height: math.unit(250000, "km")
  32540. },
  32541. ]
  32542. ))
  32543. characterMakers.push(() => makeCharacter(
  32544. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32545. {
  32546. front: {
  32547. height: math.unit(4, "meters"),
  32548. weight: math.unit(150, "kg"),
  32549. name: "Front",
  32550. image: {
  32551. source: "./media/characters/caledvwlch/front.svg",
  32552. extra: 1757/1537,
  32553. bottom: 31/1788
  32554. }
  32555. },
  32556. side: {
  32557. height: math.unit(4, "meters"),
  32558. weight: math.unit(150, "kg"),
  32559. name: "Side",
  32560. image: {
  32561. source: "./media/characters/caledvwlch/side.svg",
  32562. extra: 1605 / 1536,
  32563. bottom: 31 / 1636
  32564. }
  32565. },
  32566. back: {
  32567. height: math.unit(4, "meters"),
  32568. weight: math.unit(150, "kg"),
  32569. name: "Back",
  32570. image: {
  32571. source: "./media/characters/caledvwlch/back.svg",
  32572. extra: 1635 / 1565,
  32573. bottom: 27 / 1662
  32574. }
  32575. },
  32576. },
  32577. [
  32578. {
  32579. name: "\"Incognito\"",
  32580. height: math.unit(4, "meters")
  32581. },
  32582. {
  32583. name: "Small rampage",
  32584. height: math.unit(600, "meters")
  32585. },
  32586. {
  32587. name: "Mega",
  32588. height: math.unit(30, "km")
  32589. },
  32590. {
  32591. name: "Home-size",
  32592. height: math.unit(50, "km"),
  32593. default: true
  32594. },
  32595. {
  32596. name: "Giga",
  32597. height: math.unit(300, "km")
  32598. },
  32599. {
  32600. name: "Lounging",
  32601. height: math.unit(11000, "km")
  32602. },
  32603. {
  32604. name: "Planet snacking",
  32605. height: math.unit(2000000, "km")
  32606. },
  32607. ]
  32608. ))
  32609. characterMakers.push(() => makeCharacter(
  32610. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32611. {
  32612. front: {
  32613. height: math.unit(6, "feet"),
  32614. weight: math.unit(215, "lb"),
  32615. name: "Front",
  32616. image: {
  32617. source: "./media/characters/sapphire-svell/front.svg",
  32618. extra: 495 / 455,
  32619. bottom: 20 / 515
  32620. }
  32621. },
  32622. back: {
  32623. height: math.unit(6, "feet"),
  32624. weight: math.unit(216, "lb"),
  32625. name: "Back",
  32626. image: {
  32627. source: "./media/characters/sapphire-svell/back.svg",
  32628. extra: 497 / 477,
  32629. bottom: 7 / 504
  32630. }
  32631. },
  32632. maw: {
  32633. height: math.unit(1.57, "feet"),
  32634. name: "Maw",
  32635. image: {
  32636. source: "./media/characters/sapphire-svell/maw.svg"
  32637. }
  32638. },
  32639. foot: {
  32640. height: math.unit(1.07, "feet"),
  32641. name: "Foot",
  32642. image: {
  32643. source: "./media/characters/sapphire-svell/foot.svg"
  32644. }
  32645. },
  32646. toering: {
  32647. height: math.unit(1.7, "inch"),
  32648. name: "Toering",
  32649. image: {
  32650. source: "./media/characters/sapphire-svell/toering.svg"
  32651. }
  32652. },
  32653. },
  32654. [
  32655. {
  32656. name: "Normal",
  32657. height: math.unit(300, "feet"),
  32658. default: true
  32659. },
  32660. {
  32661. name: "Augmented",
  32662. height: math.unit(1250, "feet")
  32663. },
  32664. {
  32665. name: "Unleashed",
  32666. height: math.unit(3000, "feet")
  32667. },
  32668. ]
  32669. ))
  32670. characterMakers.push(() => makeCharacter(
  32671. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32672. {
  32673. side: {
  32674. height: math.unit(2 + 3 / 12, "feet"),
  32675. weight: math.unit(110, "lb"),
  32676. name: "Side",
  32677. image: {
  32678. source: "./media/characters/glitch-flux/side.svg",
  32679. extra: 997 / 805,
  32680. bottom: 20 / 1017
  32681. }
  32682. },
  32683. },
  32684. [
  32685. {
  32686. name: "Normal",
  32687. height: math.unit(2 + 3 / 12, "feet"),
  32688. default: true
  32689. },
  32690. ]
  32691. ))
  32692. characterMakers.push(() => makeCharacter(
  32693. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32694. {
  32695. front: {
  32696. height: math.unit(4, "meters"),
  32697. name: "Front",
  32698. image: {
  32699. source: "./media/characters/mid/front.svg",
  32700. extra: 507 / 476,
  32701. bottom: 17 / 524
  32702. }
  32703. },
  32704. back: {
  32705. height: math.unit(4, "meters"),
  32706. name: "Back",
  32707. image: {
  32708. source: "./media/characters/mid/back.svg",
  32709. extra: 519 / 487,
  32710. bottom: 7 / 526
  32711. }
  32712. },
  32713. stuck: {
  32714. height: math.unit(2.2, "meters"),
  32715. name: "Stuck",
  32716. image: {
  32717. source: "./media/characters/mid/stuck.svg",
  32718. extra: 1951 / 1869,
  32719. bottom: 88 / 2039
  32720. }
  32721. }
  32722. },
  32723. [
  32724. {
  32725. name: "Normal",
  32726. height: math.unit(4, "meters"),
  32727. default: true
  32728. },
  32729. {
  32730. name: "Big",
  32731. height: math.unit(10, "meters")
  32732. },
  32733. {
  32734. name: "Macro",
  32735. height: math.unit(800, "meters")
  32736. },
  32737. {
  32738. name: "Megamacro",
  32739. height: math.unit(100, "km")
  32740. },
  32741. {
  32742. name: "Overgrown",
  32743. height: math.unit(1, "parsec")
  32744. },
  32745. ]
  32746. ))
  32747. characterMakers.push(() => makeCharacter(
  32748. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32749. {
  32750. front: {
  32751. height: math.unit(2.5, "meters"),
  32752. weight: math.unit(225, "kg"),
  32753. name: "Front",
  32754. image: {
  32755. source: "./media/characters/iris/front.svg",
  32756. extra: 3348 / 3251,
  32757. bottom: 205 / 3553
  32758. }
  32759. },
  32760. maw: {
  32761. height: math.unit(0.56, "meter"),
  32762. name: "Maw",
  32763. image: {
  32764. source: "./media/characters/iris/maw.svg"
  32765. }
  32766. },
  32767. },
  32768. [
  32769. {
  32770. name: "Mewter cat",
  32771. height: math.unit(1.2, "meters")
  32772. },
  32773. {
  32774. name: "Normal",
  32775. height: math.unit(2.5, "meters"),
  32776. default: true
  32777. },
  32778. {
  32779. name: "Minimacro",
  32780. height: math.unit(18, "feet")
  32781. },
  32782. {
  32783. name: "Macro",
  32784. height: math.unit(140, "feet")
  32785. },
  32786. {
  32787. name: "Macro+",
  32788. height: math.unit(180, "meters")
  32789. },
  32790. {
  32791. name: "Megamacro",
  32792. height: math.unit(2746, "meters")
  32793. },
  32794. ]
  32795. ))
  32796. characterMakers.push(() => makeCharacter(
  32797. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32798. {
  32799. front: {
  32800. height: math.unit(6, "feet"),
  32801. weight: math.unit(135, "lb"),
  32802. name: "Front",
  32803. image: {
  32804. source: "./media/characters/axel/front.svg",
  32805. extra: 908 / 908,
  32806. bottom: 58 / 966
  32807. }
  32808. },
  32809. side: {
  32810. height: math.unit(6, "feet"),
  32811. weight: math.unit(135, "lb"),
  32812. name: "Side",
  32813. image: {
  32814. source: "./media/characters/axel/side.svg",
  32815. extra: 958 / 958,
  32816. bottom: 11 / 969
  32817. }
  32818. },
  32819. back: {
  32820. height: math.unit(6, "feet"),
  32821. weight: math.unit(135, "lb"),
  32822. name: "Back",
  32823. image: {
  32824. source: "./media/characters/axel/back.svg",
  32825. extra: 887 / 887,
  32826. bottom: 34 / 921
  32827. }
  32828. },
  32829. head: {
  32830. height: math.unit(1.07, "feet"),
  32831. name: "Head",
  32832. image: {
  32833. source: "./media/characters/axel/head.svg"
  32834. }
  32835. },
  32836. beak: {
  32837. height: math.unit(1.4, "feet"),
  32838. name: "Beak",
  32839. image: {
  32840. source: "./media/characters/axel/beak.svg"
  32841. }
  32842. },
  32843. beakSide: {
  32844. height: math.unit(1.4, "feet"),
  32845. name: "Beak Side",
  32846. image: {
  32847. source: "./media/characters/axel/beak-side.svg"
  32848. }
  32849. },
  32850. sheath: {
  32851. height: math.unit(0.5, "feet"),
  32852. name: "Sheath",
  32853. image: {
  32854. source: "./media/characters/axel/sheath.svg"
  32855. }
  32856. },
  32857. dick: {
  32858. height: math.unit(0.98, "feet"),
  32859. name: "Dick",
  32860. image: {
  32861. source: "./media/characters/axel/dick.svg"
  32862. }
  32863. },
  32864. },
  32865. [
  32866. {
  32867. name: "Macro",
  32868. height: math.unit(68, "meters"),
  32869. default: true
  32870. },
  32871. ]
  32872. ))
  32873. characterMakers.push(() => makeCharacter(
  32874. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32875. {
  32876. front: {
  32877. height: math.unit(3.5, "meters"),
  32878. weight: math.unit(1200, "kg"),
  32879. name: "Front",
  32880. image: {
  32881. source: "./media/characters/joanna/front.svg",
  32882. extra: 1596 / 1488,
  32883. bottom: 29 / 1625
  32884. }
  32885. },
  32886. back: {
  32887. height: math.unit(3.5, "meters"),
  32888. weight: math.unit(1200, "kg"),
  32889. name: "Back",
  32890. image: {
  32891. source: "./media/characters/joanna/back.svg",
  32892. extra: 1594 / 1495,
  32893. bottom: 26 / 1620
  32894. }
  32895. },
  32896. frontShorts: {
  32897. height: math.unit(3.5, "meters"),
  32898. weight: math.unit(1200, "kg"),
  32899. name: "Front (Shorts)",
  32900. image: {
  32901. source: "./media/characters/joanna/front-shorts.svg",
  32902. extra: 1596 / 1488,
  32903. bottom: 29 / 1625
  32904. }
  32905. },
  32906. frontBiker: {
  32907. height: math.unit(3.5, "meters"),
  32908. weight: math.unit(1200, "kg"),
  32909. name: "Front (Biker)",
  32910. image: {
  32911. source: "./media/characters/joanna/front-biker.svg",
  32912. extra: 1596 / 1488,
  32913. bottom: 29 / 1625
  32914. }
  32915. },
  32916. backBiker: {
  32917. height: math.unit(3.5, "meters"),
  32918. weight: math.unit(1200, "kg"),
  32919. name: "Back (Biker)",
  32920. image: {
  32921. source: "./media/characters/joanna/back-biker.svg",
  32922. extra: 1594 / 1495,
  32923. bottom: 88 / 1682
  32924. }
  32925. },
  32926. bikeLeft: {
  32927. height: math.unit(2.4, "meters"),
  32928. weight: math.unit(1600, "kg"),
  32929. name: "Bike (Left)",
  32930. image: {
  32931. source: "./media/characters/joanna/bike-left.svg",
  32932. extra: 720 / 720,
  32933. bottom: 8 / 728
  32934. }
  32935. },
  32936. bikeRight: {
  32937. height: math.unit(2.4, "meters"),
  32938. weight: math.unit(1600, "kg"),
  32939. name: "Bike (Right)",
  32940. image: {
  32941. source: "./media/characters/joanna/bike-right.svg",
  32942. extra: 720 / 720,
  32943. bottom: 8 / 728
  32944. }
  32945. },
  32946. },
  32947. [
  32948. {
  32949. name: "Incognito",
  32950. height: math.unit(3.5, "meters")
  32951. },
  32952. {
  32953. name: "Casual Big",
  32954. height: math.unit(200, "meters")
  32955. },
  32956. {
  32957. name: "Macro",
  32958. height: math.unit(600, "meters")
  32959. },
  32960. {
  32961. name: "Original",
  32962. height: math.unit(20, "km"),
  32963. default: true
  32964. },
  32965. {
  32966. name: "Giga",
  32967. height: math.unit(400, "km")
  32968. },
  32969. {
  32970. name: "Lounging",
  32971. height: math.unit(1500, "km")
  32972. },
  32973. {
  32974. name: "Planetary",
  32975. height: math.unit(200000, "km")
  32976. },
  32977. ]
  32978. ))
  32979. characterMakers.push(() => makeCharacter(
  32980. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32981. {
  32982. front: {
  32983. height: math.unit(6, "feet"),
  32984. weight: math.unit(150, "lb"),
  32985. name: "Front",
  32986. image: {
  32987. source: "./media/characters/hugo-sigil/front.svg",
  32988. extra: 522 / 500,
  32989. bottom: 2 / 524
  32990. }
  32991. },
  32992. back: {
  32993. height: math.unit(6, "feet"),
  32994. weight: math.unit(150, "lb"),
  32995. name: "Back",
  32996. image: {
  32997. source: "./media/characters/hugo-sigil/back.svg",
  32998. extra: 519 / 495,
  32999. bottom: 5 / 524
  33000. }
  33001. },
  33002. maw: {
  33003. height: math.unit(1.4, "feet"),
  33004. weight: math.unit(150, "lb"),
  33005. name: "Maw",
  33006. image: {
  33007. source: "./media/characters/hugo-sigil/maw.svg"
  33008. }
  33009. },
  33010. feet: {
  33011. height: math.unit(1.56, "feet"),
  33012. weight: math.unit(150, "lb"),
  33013. name: "Feet",
  33014. image: {
  33015. source: "./media/characters/hugo-sigil/feet.svg",
  33016. extra: 177 / 177,
  33017. bottom: 12 / 189
  33018. }
  33019. },
  33020. },
  33021. [
  33022. {
  33023. name: "Normal",
  33024. height: math.unit(6, "feet")
  33025. },
  33026. {
  33027. name: "Macro",
  33028. height: math.unit(200, "feet"),
  33029. default: true
  33030. },
  33031. ]
  33032. ))
  33033. characterMakers.push(() => makeCharacter(
  33034. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33035. {
  33036. front: {
  33037. height: math.unit(6, "feet"),
  33038. weight: math.unit(150, "lb"),
  33039. name: "Front",
  33040. image: {
  33041. source: "./media/characters/peri/front.svg",
  33042. extra: 2354 / 2233,
  33043. bottom: 49 / 2403
  33044. }
  33045. },
  33046. },
  33047. [
  33048. {
  33049. name: "Really Small",
  33050. height: math.unit(1, "nm")
  33051. },
  33052. {
  33053. name: "Micro",
  33054. height: math.unit(4, "inches")
  33055. },
  33056. {
  33057. name: "Normal",
  33058. height: math.unit(7, "inches"),
  33059. default: true
  33060. },
  33061. {
  33062. name: "Macro",
  33063. height: math.unit(400, "feet")
  33064. },
  33065. {
  33066. name: "Megamacro",
  33067. height: math.unit(100, "miles")
  33068. },
  33069. ]
  33070. ))
  33071. characterMakers.push(() => makeCharacter(
  33072. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33073. {
  33074. frontSlim: {
  33075. height: math.unit(7, "feet"),
  33076. name: "Front (Slim)",
  33077. image: {
  33078. source: "./media/characters/issilora/front-slim.svg",
  33079. extra: 529 / 449,
  33080. bottom: 53 / 582
  33081. }
  33082. },
  33083. sideSlim: {
  33084. height: math.unit(7, "feet"),
  33085. name: "Side (Slim)",
  33086. image: {
  33087. source: "./media/characters/issilora/side-slim.svg",
  33088. extra: 570 / 480,
  33089. bottom: 30 / 600
  33090. }
  33091. },
  33092. backSlim: {
  33093. height: math.unit(7, "feet"),
  33094. name: "Back (Slim)",
  33095. image: {
  33096. source: "./media/characters/issilora/back-slim.svg",
  33097. extra: 537 / 455,
  33098. bottom: 46 / 583
  33099. }
  33100. },
  33101. frontBuff: {
  33102. height: math.unit(7, "feet"),
  33103. name: "Front (Buff)",
  33104. image: {
  33105. source: "./media/characters/issilora/front-buff.svg",
  33106. extra: 2310 / 2035,
  33107. bottom: 335 / 2645
  33108. }
  33109. },
  33110. head: {
  33111. height: math.unit(1.94, "feet"),
  33112. name: "Head",
  33113. image: {
  33114. source: "./media/characters/issilora/head.svg"
  33115. }
  33116. },
  33117. },
  33118. [
  33119. {
  33120. name: "Minimum",
  33121. height: math.unit(7, "feet")
  33122. },
  33123. {
  33124. name: "Comfortable",
  33125. height: math.unit(17, "feet")
  33126. },
  33127. {
  33128. name: "Fun Size",
  33129. height: math.unit(47, "feet")
  33130. },
  33131. {
  33132. name: "Natural Macro",
  33133. height: math.unit(137, "feet"),
  33134. default: true
  33135. },
  33136. {
  33137. name: "Maximum Kaiju",
  33138. height: math.unit(397, "feet")
  33139. },
  33140. ]
  33141. ))
  33142. characterMakers.push(() => makeCharacter(
  33143. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33144. {
  33145. front: {
  33146. height: math.unit(50 + 9/12, "feet"),
  33147. weight: math.unit(32.8, "tons"),
  33148. name: "Front",
  33149. image: {
  33150. source: "./media/characters/irb'iiritaahn/front.svg",
  33151. extra: 1878/1826,
  33152. bottom: 326/2204
  33153. }
  33154. },
  33155. back: {
  33156. height: math.unit(50 + 9/12, "feet"),
  33157. weight: math.unit(32.8, "tons"),
  33158. name: "Back",
  33159. image: {
  33160. source: "./media/characters/irb'iiritaahn/back.svg",
  33161. extra: 2052/2018,
  33162. bottom: 152/2204
  33163. }
  33164. },
  33165. head: {
  33166. height: math.unit(12.86, "feet"),
  33167. name: "Head",
  33168. image: {
  33169. source: "./media/characters/irb'iiritaahn/head.svg"
  33170. }
  33171. },
  33172. maw: {
  33173. height: math.unit(9.66, "feet"),
  33174. name: "Maw",
  33175. image: {
  33176. source: "./media/characters/irb'iiritaahn/maw.svg"
  33177. }
  33178. },
  33179. frontDick: {
  33180. height: math.unit(8.78461, "feet"),
  33181. name: "Front Dick",
  33182. image: {
  33183. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33184. }
  33185. },
  33186. rearDick: {
  33187. height: math.unit(8.78461, "feet"),
  33188. name: "Rear Dick",
  33189. image: {
  33190. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33191. }
  33192. },
  33193. rearDickUnfolded: {
  33194. height: math.unit(8.78, "feet"),
  33195. name: "Rear Dick (Unfolded)",
  33196. image: {
  33197. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33198. }
  33199. },
  33200. wings: {
  33201. height: math.unit(43, "feet"),
  33202. name: "Wings",
  33203. image: {
  33204. source: "./media/characters/irb'iiritaahn/wings.svg"
  33205. }
  33206. },
  33207. },
  33208. [
  33209. {
  33210. name: "Macro",
  33211. height: math.unit(50 + 9/12, "feet"),
  33212. default: true
  33213. },
  33214. ]
  33215. ))
  33216. characterMakers.push(() => makeCharacter(
  33217. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33218. {
  33219. front: {
  33220. height: math.unit(205, "cm"),
  33221. weight: math.unit(102, "kg"),
  33222. name: "Front",
  33223. image: {
  33224. source: "./media/characters/irbisgreif/front.svg",
  33225. extra: 785/706,
  33226. bottom: 13/798
  33227. }
  33228. },
  33229. back: {
  33230. height: math.unit(205, "cm"),
  33231. weight: math.unit(102, "kg"),
  33232. name: "Back",
  33233. image: {
  33234. source: "./media/characters/irbisgreif/back.svg",
  33235. extra: 713/701,
  33236. bottom: 26/739
  33237. }
  33238. },
  33239. frontDressed: {
  33240. height: math.unit(216, "cm"),
  33241. weight: math.unit(102, "kg"),
  33242. name: "Front-dressed",
  33243. image: {
  33244. source: "./media/characters/irbisgreif/front-dressed.svg",
  33245. extra: 902/776,
  33246. bottom: 14/916
  33247. }
  33248. },
  33249. sideDressed: {
  33250. height: math.unit(195, "cm"),
  33251. weight: math.unit(102, "kg"),
  33252. name: "Side-dressed",
  33253. image: {
  33254. source: "./media/characters/irbisgreif/side-dressed.svg",
  33255. extra: 788/688,
  33256. bottom: 21/809
  33257. }
  33258. },
  33259. backDressed: {
  33260. height: math.unit(216, "cm"),
  33261. weight: math.unit(102, "kg"),
  33262. name: "Back-dressed",
  33263. image: {
  33264. source: "./media/characters/irbisgreif/back-dressed.svg",
  33265. extra: 901/783,
  33266. bottom: 10/911
  33267. }
  33268. },
  33269. dick: {
  33270. height: math.unit(0.49, "feet"),
  33271. name: "Dick",
  33272. image: {
  33273. source: "./media/characters/irbisgreif/dick.svg"
  33274. }
  33275. },
  33276. wingTop: {
  33277. height: math.unit(1.93 , "feet"),
  33278. name: "Wing-top",
  33279. image: {
  33280. source: "./media/characters/irbisgreif/wing-top.svg"
  33281. }
  33282. },
  33283. wingBottom: {
  33284. height: math.unit(1.93 , "feet"),
  33285. name: "Wing-bottom",
  33286. image: {
  33287. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Normal",
  33294. height: math.unit(216, "cm"),
  33295. default: true
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33301. {
  33302. front: {
  33303. height: math.unit(6, "feet"),
  33304. weight: math.unit(150, "lb"),
  33305. name: "Front",
  33306. image: {
  33307. source: "./media/characters/pride/front.svg",
  33308. extra: 1299/1230,
  33309. bottom: 18/1317
  33310. }
  33311. },
  33312. },
  33313. [
  33314. {
  33315. name: "Normal",
  33316. height: math.unit(7, "feet")
  33317. },
  33318. {
  33319. name: "Mini-macro",
  33320. height: math.unit(11, "feet")
  33321. },
  33322. {
  33323. name: "Macro",
  33324. height: math.unit(15, "meters"),
  33325. default: true
  33326. },
  33327. {
  33328. name: "Macro+",
  33329. height: math.unit(40, "meters")
  33330. },
  33331. ]
  33332. ))
  33333. characterMakers.push(() => makeCharacter(
  33334. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33335. {
  33336. front: {
  33337. height: math.unit(4 + 2 / 12, "feet"),
  33338. weight: math.unit(95, "lb"),
  33339. name: "Front",
  33340. image: {
  33341. source: "./media/characters/vaelophis-nyx/front.svg",
  33342. extra: 2532/2330,
  33343. bottom: 0/2532
  33344. }
  33345. },
  33346. back: {
  33347. height: math.unit(4 + 2 / 12, "feet"),
  33348. weight: math.unit(95, "lb"),
  33349. name: "Back",
  33350. image: {
  33351. source: "./media/characters/vaelophis-nyx/back.svg",
  33352. extra: 2484/2361,
  33353. bottom: 0/2484
  33354. }
  33355. },
  33356. feralSide: {
  33357. height: math.unit(2 + 1/12, "feet"),
  33358. weight: math.unit(20, "lb"),
  33359. name: "Feral (Side)",
  33360. image: {
  33361. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33362. extra: 1721/1581,
  33363. bottom: 70/1791
  33364. }
  33365. },
  33366. feralLazing: {
  33367. height: math.unit(1.08, "feet"),
  33368. weight: math.unit(20, "lb"),
  33369. name: "Feral (Lazing)",
  33370. image: {
  33371. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33372. extra: 822/822,
  33373. bottom: 248/1070
  33374. }
  33375. },
  33376. ear: {
  33377. height: math.unit(0.416, "feet"),
  33378. name: "Ear",
  33379. image: {
  33380. source: "./media/characters/vaelophis-nyx/ear.svg"
  33381. }
  33382. },
  33383. eye: {
  33384. height: math.unit(0.0748, "feet"),
  33385. name: "Eye",
  33386. image: {
  33387. source: "./media/characters/vaelophis-nyx/eye.svg"
  33388. }
  33389. },
  33390. mouth: {
  33391. height: math.unit(0.378, "feet"),
  33392. name: "Mouth",
  33393. image: {
  33394. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33395. }
  33396. },
  33397. spade: {
  33398. height: math.unit(0.55, "feet"),
  33399. name: "Spade",
  33400. image: {
  33401. source: "./media/characters/vaelophis-nyx/spade.svg"
  33402. }
  33403. },
  33404. },
  33405. [
  33406. {
  33407. name: "Normal",
  33408. height: math.unit(4 + 2/12, "feet"),
  33409. default: true
  33410. },
  33411. ]
  33412. ))
  33413. characterMakers.push(() => makeCharacter(
  33414. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33415. {
  33416. front: {
  33417. height: math.unit(7, "feet"),
  33418. weight: math.unit(231, "lb"),
  33419. name: "Front",
  33420. image: {
  33421. source: "./media/characters/flux/front.svg",
  33422. extra: 919/871,
  33423. bottom: 0/919
  33424. }
  33425. },
  33426. back: {
  33427. height: math.unit(7, "feet"),
  33428. weight: math.unit(231, "lb"),
  33429. name: "Back",
  33430. image: {
  33431. source: "./media/characters/flux/back.svg",
  33432. extra: 1040/992,
  33433. bottom: 0/1040
  33434. }
  33435. },
  33436. frontDressed: {
  33437. height: math.unit(7, "feet"),
  33438. weight: math.unit(231, "lb"),
  33439. name: "Front (Dressed)",
  33440. image: {
  33441. source: "./media/characters/flux/front-dressed.svg",
  33442. extra: 919/871,
  33443. bottom: 0/919
  33444. }
  33445. },
  33446. feralSide: {
  33447. height: math.unit(5, "feet"),
  33448. weight: math.unit(150, "lb"),
  33449. name: "Feral (Side)",
  33450. image: {
  33451. source: "./media/characters/flux/feral-side.svg",
  33452. extra: 598/528,
  33453. bottom: 28/626
  33454. }
  33455. },
  33456. head: {
  33457. height: math.unit(1.585, "feet"),
  33458. name: "Head",
  33459. image: {
  33460. source: "./media/characters/flux/head.svg"
  33461. }
  33462. },
  33463. headSide: {
  33464. height: math.unit(1.74, "feet"),
  33465. name: "Head (Side)",
  33466. image: {
  33467. source: "./media/characters/flux/head-side.svg"
  33468. }
  33469. },
  33470. headSideFire: {
  33471. height: math.unit(1.76, "feet"),
  33472. name: "Head (Side, Fire)",
  33473. image: {
  33474. source: "./media/characters/flux/head-side-fire.svg"
  33475. }
  33476. },
  33477. },
  33478. [
  33479. {
  33480. name: "Normal",
  33481. height: math.unit(7, "feet"),
  33482. default: true
  33483. },
  33484. ]
  33485. ))
  33486. characterMakers.push(() => makeCharacter(
  33487. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33488. {
  33489. front: {
  33490. height: math.unit(9, "feet"),
  33491. weight: math.unit(1012, "lb"),
  33492. name: "Front",
  33493. image: {
  33494. source: "./media/characters/ulfra-lupae/front.svg",
  33495. extra: 1083/1011,
  33496. bottom: 67/1150
  33497. }
  33498. },
  33499. },
  33500. [
  33501. {
  33502. name: "Micro",
  33503. height: math.unit(6, "inches")
  33504. },
  33505. {
  33506. name: "Socializing",
  33507. height: math.unit(6 + 5/12, "feet")
  33508. },
  33509. {
  33510. name: "Normal",
  33511. height: math.unit(9, "feet"),
  33512. default: true
  33513. },
  33514. {
  33515. name: "Macro",
  33516. height: math.unit(150, "feet")
  33517. },
  33518. ]
  33519. ))
  33520. characterMakers.push(() => makeCharacter(
  33521. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33522. {
  33523. front: {
  33524. height: math.unit(5 + 2/12, "feet"),
  33525. weight: math.unit(120, "lb"),
  33526. name: "Front",
  33527. image: {
  33528. source: "./media/characters/timber/front.svg",
  33529. extra: 2814/2705,
  33530. bottom: 181/2995
  33531. }
  33532. },
  33533. },
  33534. [
  33535. {
  33536. name: "Normal",
  33537. height: math.unit(5 + 2/12, "feet"),
  33538. default: true
  33539. },
  33540. ]
  33541. ))
  33542. characterMakers.push(() => makeCharacter(
  33543. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33544. {
  33545. front: {
  33546. height: math.unit(9, "feet"),
  33547. name: "Front",
  33548. image: {
  33549. source: "./media/characters/nicki/front.svg",
  33550. extra: 1240/990,
  33551. bottom: 45/1285
  33552. },
  33553. form: "anthro",
  33554. default: true
  33555. },
  33556. side: {
  33557. height: math.unit(9, "feet"),
  33558. name: "Side",
  33559. image: {
  33560. source: "./media/characters/nicki/side.svg",
  33561. extra: 1047/973,
  33562. bottom: 61/1108
  33563. },
  33564. form: "anthro"
  33565. },
  33566. back: {
  33567. height: math.unit(9, "feet"),
  33568. name: "Back",
  33569. image: {
  33570. source: "./media/characters/nicki/back.svg",
  33571. extra: 1006/965,
  33572. bottom: 39/1045
  33573. },
  33574. form: "anthro"
  33575. },
  33576. taur: {
  33577. height: math.unit(15, "feet"),
  33578. name: "Taur",
  33579. image: {
  33580. source: "./media/characters/nicki/taur.svg",
  33581. extra: 1592/1347,
  33582. bottom: 0/1592
  33583. },
  33584. form: "taur",
  33585. default: true
  33586. },
  33587. },
  33588. [
  33589. {
  33590. name: "Normal",
  33591. height: math.unit(9, "feet"),
  33592. form: "anthro",
  33593. default: true
  33594. },
  33595. {
  33596. name: "Normal",
  33597. height: math.unit(15, "feet"),
  33598. form: "taur",
  33599. default: true
  33600. }
  33601. ],
  33602. {
  33603. "anthro": {
  33604. name: "Anthro",
  33605. default: true
  33606. },
  33607. "taur": {
  33608. name: "Taur"
  33609. }
  33610. }
  33611. ))
  33612. characterMakers.push(() => makeCharacter(
  33613. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33614. {
  33615. front: {
  33616. height: math.unit(7 + 10/12, "feet"),
  33617. weight: math.unit(3.5, "tons"),
  33618. name: "Front",
  33619. image: {
  33620. source: "./media/characters/lee/front.svg",
  33621. extra: 1773/1615,
  33622. bottom: 86/1859
  33623. }
  33624. },
  33625. hand: {
  33626. height: math.unit(1.78, "feet"),
  33627. name: "Hand",
  33628. image: {
  33629. source: "./media/characters/lee/hand.svg"
  33630. }
  33631. },
  33632. maw: {
  33633. height: math.unit(1.18, "feet"),
  33634. name: "Maw",
  33635. image: {
  33636. source: "./media/characters/lee/maw.svg"
  33637. }
  33638. },
  33639. },
  33640. [
  33641. {
  33642. name: "Normal",
  33643. height: math.unit(7 + 10/12, "feet"),
  33644. default: true
  33645. },
  33646. ]
  33647. ))
  33648. characterMakers.push(() => makeCharacter(
  33649. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33650. {
  33651. front: {
  33652. height: math.unit(9, "feet"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/guti/front.svg",
  33656. extra: 4551/4355,
  33657. bottom: 123/4674
  33658. }
  33659. },
  33660. tongue: {
  33661. height: math.unit(1, "feet"),
  33662. name: "Tongue",
  33663. image: {
  33664. source: "./media/characters/guti/tongue.svg"
  33665. }
  33666. },
  33667. paw: {
  33668. height: math.unit(1.18, "feet"),
  33669. name: "Paw",
  33670. image: {
  33671. source: "./media/characters/guti/paw.svg"
  33672. }
  33673. },
  33674. },
  33675. [
  33676. {
  33677. name: "Normal",
  33678. height: math.unit(9, "feet"),
  33679. default: true
  33680. },
  33681. ]
  33682. ))
  33683. characterMakers.push(() => makeCharacter(
  33684. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33685. {
  33686. side: {
  33687. height: math.unit(5, "meters"),
  33688. name: "Side",
  33689. image: {
  33690. source: "./media/characters/vesper/side.svg",
  33691. extra: 1605/1518,
  33692. bottom: 0/1605
  33693. }
  33694. },
  33695. },
  33696. [
  33697. {
  33698. name: "Small",
  33699. height: math.unit(5, "meters")
  33700. },
  33701. {
  33702. name: "Sage",
  33703. height: math.unit(100, "meters"),
  33704. default: true
  33705. },
  33706. {
  33707. name: "Fun Size",
  33708. height: math.unit(600, "meters")
  33709. },
  33710. {
  33711. name: "Goddess",
  33712. height: math.unit(20000, "km")
  33713. },
  33714. {
  33715. name: "Maximum",
  33716. height: math.unit(5, "galaxies")
  33717. },
  33718. ]
  33719. ))
  33720. characterMakers.push(() => makeCharacter(
  33721. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33722. {
  33723. front: {
  33724. height: math.unit(6 + 3/12, "feet"),
  33725. weight: math.unit(190, "lb"),
  33726. name: "Front",
  33727. image: {
  33728. source: "./media/characters/gawain/front.svg",
  33729. extra: 2222/2139,
  33730. bottom: 90/2312
  33731. }
  33732. },
  33733. back: {
  33734. height: math.unit(6 + 3/12, "feet"),
  33735. weight: math.unit(190, "lb"),
  33736. name: "Back",
  33737. image: {
  33738. source: "./media/characters/gawain/back.svg",
  33739. extra: 2199/2111,
  33740. bottom: 73/2272
  33741. }
  33742. },
  33743. },
  33744. [
  33745. {
  33746. name: "Normal",
  33747. height: math.unit(6 + 3/12, "feet"),
  33748. default: true
  33749. },
  33750. ]
  33751. ))
  33752. characterMakers.push(() => makeCharacter(
  33753. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33754. {
  33755. side: {
  33756. height: math.unit(3.5, "meters"),
  33757. weight: math.unit(16000, "lb"),
  33758. name: "Side",
  33759. image: {
  33760. source: "./media/characters/dascalti/side.svg",
  33761. extra: 392/273,
  33762. bottom: 47/439
  33763. }
  33764. },
  33765. breath: {
  33766. height: math.unit(7.4, "feet"),
  33767. name: "Breath",
  33768. image: {
  33769. source: "./media/characters/dascalti/breath.svg"
  33770. }
  33771. },
  33772. fed: {
  33773. height: math.unit(3.6, "meters"),
  33774. weight: math.unit(16000, "lb"),
  33775. name: "Fed",
  33776. image: {
  33777. source: "./media/characters/dascalti/fed.svg",
  33778. extra: 1419/820,
  33779. bottom: 95/1514
  33780. }
  33781. },
  33782. },
  33783. [
  33784. {
  33785. name: "Normal",
  33786. height: math.unit(3.5, "meters"),
  33787. default: true
  33788. },
  33789. ]
  33790. ))
  33791. characterMakers.push(() => makeCharacter(
  33792. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33793. {
  33794. front: {
  33795. height: math.unit(3 + 5/12, "feet"),
  33796. name: "Front",
  33797. image: {
  33798. source: "./media/characters/mauve/front.svg",
  33799. extra: 1126/1033,
  33800. bottom: 65/1191
  33801. }
  33802. },
  33803. side: {
  33804. height: math.unit(3 + 5/12, "feet"),
  33805. name: "Side",
  33806. image: {
  33807. source: "./media/characters/mauve/side.svg",
  33808. extra: 1089/1001,
  33809. bottom: 29/1118
  33810. }
  33811. },
  33812. back: {
  33813. height: math.unit(3 + 5/12, "feet"),
  33814. name: "Back",
  33815. image: {
  33816. source: "./media/characters/mauve/back.svg",
  33817. extra: 1173/1053,
  33818. bottom: 109/1282
  33819. }
  33820. },
  33821. },
  33822. [
  33823. {
  33824. name: "Normal",
  33825. height: math.unit(3 + 5/12, "feet"),
  33826. default: true
  33827. },
  33828. ]
  33829. ))
  33830. characterMakers.push(() => makeCharacter(
  33831. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33832. {
  33833. front: {
  33834. height: math.unit(6 + 3/12, "feet"),
  33835. weight: math.unit(430, "lb"),
  33836. name: "Front",
  33837. image: {
  33838. source: "./media/characters/carlos/front.svg",
  33839. extra: 1964/1913,
  33840. bottom: 70/2034
  33841. }
  33842. },
  33843. },
  33844. [
  33845. {
  33846. name: "Normal",
  33847. height: math.unit(6 + 3/12, "feet"),
  33848. default: true
  33849. },
  33850. ]
  33851. ))
  33852. characterMakers.push(() => makeCharacter(
  33853. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33854. {
  33855. back: {
  33856. height: math.unit(5 + 10/12, "feet"),
  33857. weight: math.unit(200, "lb"),
  33858. name: "Back",
  33859. image: {
  33860. source: "./media/characters/jax/back.svg",
  33861. extra: 764/739,
  33862. bottom: 25/789
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Normal",
  33869. height: math.unit(5 + 10/12, "feet"),
  33870. default: true
  33871. },
  33872. ]
  33873. ))
  33874. characterMakers.push(() => makeCharacter(
  33875. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33876. {
  33877. front: {
  33878. height: math.unit(8, "feet"),
  33879. weight: math.unit(250, "lb"),
  33880. name: "Front",
  33881. image: {
  33882. source: "./media/characters/eikthynir/front.svg",
  33883. extra: 1332/1166,
  33884. bottom: 82/1414
  33885. }
  33886. },
  33887. back: {
  33888. height: math.unit(8, "feet"),
  33889. weight: math.unit(250, "lb"),
  33890. name: "Back",
  33891. image: {
  33892. source: "./media/characters/eikthynir/back.svg",
  33893. extra: 1342/1190,
  33894. bottom: 19/1361
  33895. }
  33896. },
  33897. dick: {
  33898. height: math.unit(2.35, "feet"),
  33899. name: "Dick",
  33900. image: {
  33901. source: "./media/characters/eikthynir/dick.svg"
  33902. }
  33903. },
  33904. },
  33905. [
  33906. {
  33907. name: "Normal",
  33908. height: math.unit(8, "feet"),
  33909. default: true
  33910. },
  33911. ]
  33912. ))
  33913. characterMakers.push(() => makeCharacter(
  33914. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33915. {
  33916. front: {
  33917. height: math.unit(99, "meters"),
  33918. weight: math.unit(13000, "tons"),
  33919. name: "Front",
  33920. image: {
  33921. source: "./media/characters/zlmos/front.svg",
  33922. extra: 2202/1992,
  33923. bottom: 315/2517
  33924. }
  33925. },
  33926. },
  33927. [
  33928. {
  33929. name: "Macro",
  33930. height: math.unit(99, "meters"),
  33931. default: true
  33932. },
  33933. ]
  33934. ))
  33935. characterMakers.push(() => makeCharacter(
  33936. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33937. {
  33938. front: {
  33939. height: math.unit(6 + 5/12, "feet"),
  33940. name: "Front",
  33941. image: {
  33942. source: "./media/characters/purri/front.svg",
  33943. extra: 1698/1610,
  33944. bottom: 32/1730
  33945. }
  33946. },
  33947. frontAlt: {
  33948. height: math.unit(6 + 5/12, "feet"),
  33949. name: "Front (Alt)",
  33950. image: {
  33951. source: "./media/characters/purri/front-alt.svg",
  33952. extra: 450/420,
  33953. bottom: 26/476
  33954. }
  33955. },
  33956. boots: {
  33957. height: math.unit(5.5, "feet"),
  33958. name: "Boots",
  33959. image: {
  33960. source: "./media/characters/purri/boots.svg",
  33961. extra: 905/853,
  33962. bottom: 18/923
  33963. },
  33964. extraAttributes: {
  33965. "shoeSize": {
  33966. name: "Shoe Size",
  33967. power: 1,
  33968. type: "length",
  33969. base: math.unit(12, "ShoeSizeMensUS")
  33970. },
  33971. "platformHeight": {
  33972. name: "Platform Height",
  33973. power: 1,
  33974. type: "length",
  33975. base: math.unit(2, "inches")
  33976. },
  33977. }
  33978. },
  33979. lying: {
  33980. height: math.unit(2, "feet"),
  33981. name: "Lying",
  33982. image: {
  33983. source: "./media/characters/purri/lying.svg",
  33984. extra: 940/843,
  33985. bottom: 146/1086
  33986. }
  33987. },
  33988. devious: {
  33989. height: math.unit(1.77, "feet"),
  33990. name: "Devious",
  33991. image: {
  33992. source: "./media/characters/purri/devious.svg",
  33993. extra: 1440/1155,
  33994. bottom: 147/1587
  33995. }
  33996. },
  33997. bean: {
  33998. height: math.unit(1.94, "feet"),
  33999. name: "Bean",
  34000. image: {
  34001. source: "./media/characters/purri/bean.svg"
  34002. }
  34003. },
  34004. },
  34005. [
  34006. {
  34007. name: "Micro",
  34008. height: math.unit(1, "mm")
  34009. },
  34010. {
  34011. name: "Normal",
  34012. height: math.unit(6 + 5/12, "feet"),
  34013. default: true
  34014. },
  34015. {
  34016. name: "Macro :3c",
  34017. height: math.unit(2, "miles")
  34018. },
  34019. ]
  34020. ))
  34021. characterMakers.push(() => makeCharacter(
  34022. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34023. {
  34024. front: {
  34025. height: math.unit(6 + 2/12, "feet"),
  34026. weight: math.unit(250, "lb"),
  34027. name: "Front",
  34028. image: {
  34029. source: "./media/characters/moonlight/front.svg",
  34030. extra: 1044/908,
  34031. bottom: 56/1100
  34032. }
  34033. },
  34034. feral: {
  34035. height: math.unit(3 + 1/12, "feet"),
  34036. weight: math.unit(50, "kg"),
  34037. name: "Feral",
  34038. image: {
  34039. source: "./media/characters/moonlight/feral.svg",
  34040. extra: 3705/2791,
  34041. bottom: 145/3850
  34042. }
  34043. },
  34044. paw: {
  34045. height: math.unit(1, "feet"),
  34046. name: "Paw",
  34047. image: {
  34048. source: "./media/characters/moonlight/paw.svg"
  34049. }
  34050. },
  34051. paws: {
  34052. height: math.unit(0.98, "feet"),
  34053. name: "Paws",
  34054. image: {
  34055. source: "./media/characters/moonlight/paws.svg",
  34056. extra: 939/939,
  34057. bottom: 50/989
  34058. }
  34059. },
  34060. mouth: {
  34061. height: math.unit(0.48, "feet"),
  34062. name: "Mouth",
  34063. image: {
  34064. source: "./media/characters/moonlight/mouth.svg"
  34065. }
  34066. },
  34067. dick: {
  34068. height: math.unit(1.46, "feet"),
  34069. name: "Dick",
  34070. image: {
  34071. source: "./media/characters/moonlight/dick.svg"
  34072. }
  34073. },
  34074. },
  34075. [
  34076. {
  34077. name: "Normal",
  34078. height: math.unit(6 + 2/12, "feet"),
  34079. default: true
  34080. },
  34081. {
  34082. name: "Macro",
  34083. height: math.unit(300, "feet")
  34084. },
  34085. {
  34086. name: "Macro+",
  34087. height: math.unit(1, "mile")
  34088. },
  34089. {
  34090. name: "Mt. Moon",
  34091. height: math.unit(5, "miles")
  34092. },
  34093. {
  34094. name: "Megamacro",
  34095. height: math.unit(15, "miles")
  34096. },
  34097. ]
  34098. ))
  34099. characterMakers.push(() => makeCharacter(
  34100. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34101. {
  34102. back: {
  34103. height: math.unit(6, "feet"),
  34104. weight: math.unit(150, "lb"),
  34105. name: "Back",
  34106. image: {
  34107. source: "./media/characters/sylen/back.svg",
  34108. extra: 1335/1273,
  34109. bottom: 107/1442
  34110. }
  34111. },
  34112. },
  34113. [
  34114. {
  34115. name: "Normal",
  34116. height: math.unit(5 + 5/12, "feet")
  34117. },
  34118. {
  34119. name: "Megamacro",
  34120. height: math.unit(3, "miles"),
  34121. default: true
  34122. },
  34123. ]
  34124. ))
  34125. characterMakers.push(() => makeCharacter(
  34126. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34127. {
  34128. front: {
  34129. height: math.unit(6, "feet"),
  34130. weight: math.unit(190, "lb"),
  34131. name: "Front",
  34132. image: {
  34133. source: "./media/characters/huttser/front.svg",
  34134. extra: 1152/1058,
  34135. bottom: 23/1175
  34136. }
  34137. },
  34138. side: {
  34139. height: math.unit(6, "feet"),
  34140. weight: math.unit(190, "lb"),
  34141. name: "Side",
  34142. image: {
  34143. source: "./media/characters/huttser/side.svg",
  34144. extra: 1174/1065,
  34145. bottom: 18/1192
  34146. }
  34147. },
  34148. back: {
  34149. height: math.unit(6, "feet"),
  34150. weight: math.unit(190, "lb"),
  34151. name: "Back",
  34152. image: {
  34153. source: "./media/characters/huttser/back.svg",
  34154. extra: 1158/1056,
  34155. bottom: 12/1170
  34156. }
  34157. },
  34158. },
  34159. [
  34160. ]
  34161. ))
  34162. characterMakers.push(() => makeCharacter(
  34163. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34164. {
  34165. side: {
  34166. height: math.unit(12 + 9/12, "feet"),
  34167. weight: math.unit(15000, "lb"),
  34168. name: "Side",
  34169. image: {
  34170. source: "./media/characters/faan/side.svg",
  34171. extra: 2747/2697,
  34172. bottom: 0/2747
  34173. }
  34174. },
  34175. front: {
  34176. height: math.unit(12 + 9/12, "feet"),
  34177. weight: math.unit(15000, "lb"),
  34178. name: "Front",
  34179. image: {
  34180. source: "./media/characters/faan/front.svg",
  34181. extra: 607/571,
  34182. bottom: 24/631
  34183. }
  34184. },
  34185. head: {
  34186. height: math.unit(2.85, "feet"),
  34187. name: "Head",
  34188. image: {
  34189. source: "./media/characters/faan/head.svg"
  34190. }
  34191. },
  34192. headAlt: {
  34193. height: math.unit(3.13, "feet"),
  34194. name: "Head-alt",
  34195. image: {
  34196. source: "./media/characters/faan/head-alt.svg"
  34197. }
  34198. },
  34199. },
  34200. [
  34201. {
  34202. name: "Normal",
  34203. height: math.unit(12 + 9/12, "feet"),
  34204. default: true
  34205. },
  34206. ]
  34207. ))
  34208. characterMakers.push(() => makeCharacter(
  34209. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34210. {
  34211. front: {
  34212. height: math.unit(6, "feet"),
  34213. weight: math.unit(300, "lb"),
  34214. name: "Front",
  34215. image: {
  34216. source: "./media/characters/tanio/front.svg",
  34217. extra: 711/673,
  34218. bottom: 25/736
  34219. }
  34220. },
  34221. },
  34222. [
  34223. {
  34224. name: "Normal",
  34225. height: math.unit(6, "feet"),
  34226. default: true
  34227. },
  34228. ]
  34229. ))
  34230. characterMakers.push(() => makeCharacter(
  34231. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34232. {
  34233. front: {
  34234. height: math.unit(3, "inches"),
  34235. name: "Front",
  34236. image: {
  34237. source: "./media/characters/noboru/front.svg",
  34238. extra: 1039/932,
  34239. bottom: 18/1057
  34240. }
  34241. },
  34242. },
  34243. [
  34244. {
  34245. name: "Micro",
  34246. height: math.unit(3, "inches"),
  34247. default: true
  34248. },
  34249. ]
  34250. ))
  34251. characterMakers.push(() => makeCharacter(
  34252. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34253. {
  34254. front: {
  34255. height: math.unit(1.85, "meters"),
  34256. weight: math.unit(80, "kg"),
  34257. name: "Front",
  34258. image: {
  34259. source: "./media/characters/daniel-barrett/front.svg",
  34260. extra: 355/337,
  34261. bottom: 9/364
  34262. }
  34263. },
  34264. },
  34265. [
  34266. {
  34267. name: "Pico",
  34268. height: math.unit(0.0433, "mm")
  34269. },
  34270. {
  34271. name: "Nano",
  34272. height: math.unit(1.5, "mm")
  34273. },
  34274. {
  34275. name: "Micro",
  34276. height: math.unit(5.3, "cm"),
  34277. default: true
  34278. },
  34279. {
  34280. name: "Normal",
  34281. height: math.unit(1.85, "meters")
  34282. },
  34283. {
  34284. name: "Macro",
  34285. height: math.unit(64.7, "meters")
  34286. },
  34287. {
  34288. name: "Megamacro",
  34289. height: math.unit(2.26, "km")
  34290. },
  34291. {
  34292. name: "Gigamacro",
  34293. height: math.unit(79, "km")
  34294. },
  34295. {
  34296. name: "Teramacro",
  34297. height: math.unit(2765, "km")
  34298. },
  34299. {
  34300. name: "Petamacro",
  34301. height: math.unit(96678, "km")
  34302. },
  34303. ]
  34304. ))
  34305. characterMakers.push(() => makeCharacter(
  34306. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34307. {
  34308. front: {
  34309. height: math.unit(30, "meters"),
  34310. weight: math.unit(400, "tons"),
  34311. name: "Front",
  34312. image: {
  34313. source: "./media/characters/zeel/front.svg",
  34314. extra: 2599/2599,
  34315. bottom: 226/2825
  34316. }
  34317. },
  34318. },
  34319. [
  34320. {
  34321. name: "Macro",
  34322. height: math.unit(30, "meters"),
  34323. default: true
  34324. },
  34325. ]
  34326. ))
  34327. characterMakers.push(() => makeCharacter(
  34328. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34329. {
  34330. front: {
  34331. height: math.unit(6 + 7/12, "feet"),
  34332. weight: math.unit(210, "lb"),
  34333. name: "Front",
  34334. image: {
  34335. source: "./media/characters/tarn/front.svg",
  34336. extra: 3517/3220,
  34337. bottom: 91/3608
  34338. }
  34339. },
  34340. back: {
  34341. height: math.unit(6 + 7/12, "feet"),
  34342. weight: math.unit(210, "lb"),
  34343. name: "Back",
  34344. image: {
  34345. source: "./media/characters/tarn/back.svg",
  34346. extra: 3566/3241,
  34347. bottom: 34/3600
  34348. }
  34349. },
  34350. dick: {
  34351. height: math.unit(1.65, "feet"),
  34352. name: "Dick",
  34353. image: {
  34354. source: "./media/characters/tarn/dick.svg"
  34355. }
  34356. },
  34357. paw: {
  34358. height: math.unit(1.80, "feet"),
  34359. name: "Paw",
  34360. image: {
  34361. source: "./media/characters/tarn/paw.svg"
  34362. }
  34363. },
  34364. tongue: {
  34365. height: math.unit(0.97, "feet"),
  34366. name: "Tongue",
  34367. image: {
  34368. source: "./media/characters/tarn/tongue.svg"
  34369. }
  34370. },
  34371. },
  34372. [
  34373. {
  34374. name: "Micro",
  34375. height: math.unit(4, "inches")
  34376. },
  34377. {
  34378. name: "Normal",
  34379. height: math.unit(6 + 7/12, "feet"),
  34380. default: true
  34381. },
  34382. {
  34383. name: "Macro",
  34384. height: math.unit(300, "feet")
  34385. },
  34386. ]
  34387. ))
  34388. characterMakers.push(() => makeCharacter(
  34389. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34390. {
  34391. front: {
  34392. height: math.unit(5 + 7/12, "feet"),
  34393. weight: math.unit(80, "kg"),
  34394. name: "Front",
  34395. image: {
  34396. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34397. extra: 3023/2865,
  34398. bottom: 33/3056
  34399. }
  34400. },
  34401. back: {
  34402. height: math.unit(5 + 7/12, "feet"),
  34403. weight: math.unit(80, "kg"),
  34404. name: "Back",
  34405. image: {
  34406. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34407. extra: 3020/2886,
  34408. bottom: 30/3050
  34409. }
  34410. },
  34411. dick: {
  34412. height: math.unit(0.98, "feet"),
  34413. name: "Dick",
  34414. image: {
  34415. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34416. }
  34417. },
  34418. anatomy: {
  34419. height: math.unit(2.86, "feet"),
  34420. name: "Anatomy",
  34421. image: {
  34422. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34423. }
  34424. },
  34425. },
  34426. [
  34427. {
  34428. name: "Really Small",
  34429. height: math.unit(2, "inches")
  34430. },
  34431. {
  34432. name: "Micro",
  34433. height: math.unit(5.583, "inches")
  34434. },
  34435. {
  34436. name: "Normal",
  34437. height: math.unit(5 + 7/12, "feet"),
  34438. default: true
  34439. },
  34440. {
  34441. name: "Macro",
  34442. height: math.unit(67, "feet")
  34443. },
  34444. {
  34445. name: "Megamacro",
  34446. height: math.unit(134, "feet")
  34447. },
  34448. ]
  34449. ))
  34450. characterMakers.push(() => makeCharacter(
  34451. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34452. {
  34453. front: {
  34454. height: math.unit(9, "feet"),
  34455. weight: math.unit(120, "lb"),
  34456. name: "Front",
  34457. image: {
  34458. source: "./media/characters/sally/front.svg",
  34459. extra: 1506/1349,
  34460. bottom: 66/1572
  34461. }
  34462. },
  34463. },
  34464. [
  34465. {
  34466. name: "Normal",
  34467. height: math.unit(9, "feet"),
  34468. default: true
  34469. },
  34470. ]
  34471. ))
  34472. characterMakers.push(() => makeCharacter(
  34473. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34474. {
  34475. front: {
  34476. height: math.unit(8, "feet"),
  34477. weight: math.unit(900, "lb"),
  34478. name: "Front",
  34479. image: {
  34480. source: "./media/characters/owen/front.svg",
  34481. extra: 1761/1657,
  34482. bottom: 74/1835
  34483. }
  34484. },
  34485. side: {
  34486. height: math.unit(8, "feet"),
  34487. weight: math.unit(900, "lb"),
  34488. name: "Side",
  34489. image: {
  34490. source: "./media/characters/owen/side.svg",
  34491. extra: 1797/1734,
  34492. bottom: 30/1827
  34493. }
  34494. },
  34495. back: {
  34496. height: math.unit(8, "feet"),
  34497. weight: math.unit(900, "lb"),
  34498. name: "Back",
  34499. image: {
  34500. source: "./media/characters/owen/back.svg",
  34501. extra: 1796/1706,
  34502. bottom: 59/1855
  34503. }
  34504. },
  34505. maw: {
  34506. height: math.unit(1.76, "feet"),
  34507. name: "Maw",
  34508. image: {
  34509. source: "./media/characters/owen/maw.svg"
  34510. }
  34511. },
  34512. },
  34513. [
  34514. {
  34515. name: "Normal",
  34516. height: math.unit(8, "feet"),
  34517. default: true
  34518. },
  34519. ]
  34520. ))
  34521. characterMakers.push(() => makeCharacter(
  34522. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34523. {
  34524. front: {
  34525. height: math.unit(4, "feet"),
  34526. weight: math.unit(400, "lb"),
  34527. name: "Front",
  34528. image: {
  34529. source: "./media/characters/ryth/front.svg",
  34530. extra: 1920/1748,
  34531. bottom: 42/1962
  34532. }
  34533. },
  34534. back: {
  34535. height: math.unit(4, "feet"),
  34536. weight: math.unit(400, "lb"),
  34537. name: "Back",
  34538. image: {
  34539. source: "./media/characters/ryth/back.svg",
  34540. extra: 1897/1690,
  34541. bottom: 89/1986
  34542. }
  34543. },
  34544. mouth: {
  34545. height: math.unit(1.39, "feet"),
  34546. name: "Mouth",
  34547. image: {
  34548. source: "./media/characters/ryth/mouth.svg"
  34549. }
  34550. },
  34551. tailmaw: {
  34552. height: math.unit(1.23, "feet"),
  34553. name: "Tailmaw",
  34554. image: {
  34555. source: "./media/characters/ryth/tailmaw.svg"
  34556. }
  34557. },
  34558. goia: {
  34559. height: math.unit(4, "meters"),
  34560. weight: math.unit(10800, "lb"),
  34561. name: "Goia",
  34562. image: {
  34563. source: "./media/characters/ryth/goia.svg",
  34564. extra: 745/640,
  34565. bottom: 107/852
  34566. }
  34567. },
  34568. goiaFront: {
  34569. height: math.unit(4, "meters"),
  34570. weight: math.unit(10800, "lb"),
  34571. name: "Goia (Front)",
  34572. image: {
  34573. source: "./media/characters/ryth/goia-front.svg",
  34574. extra: 750/586,
  34575. bottom: 114/864
  34576. }
  34577. },
  34578. goiaMaw: {
  34579. height: math.unit(5.55, "feet"),
  34580. name: "Goia Maw",
  34581. image: {
  34582. source: "./media/characters/ryth/goia-maw.svg"
  34583. }
  34584. },
  34585. goiaForepaw: {
  34586. height: math.unit(3.5, "feet"),
  34587. name: "Goia Forepaw",
  34588. image: {
  34589. source: "./media/characters/ryth/goia-forepaw.svg"
  34590. }
  34591. },
  34592. goiaHindpaw: {
  34593. height: math.unit(5.55, "feet"),
  34594. name: "Goia Hindpaw",
  34595. image: {
  34596. source: "./media/characters/ryth/goia-hindpaw.svg"
  34597. }
  34598. },
  34599. },
  34600. [
  34601. {
  34602. name: "Normal",
  34603. height: math.unit(4, "feet"),
  34604. default: true
  34605. },
  34606. ]
  34607. ))
  34608. characterMakers.push(() => makeCharacter(
  34609. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34610. {
  34611. front: {
  34612. height: math.unit(7, "feet"),
  34613. weight: math.unit(180, "lb"),
  34614. name: "Front",
  34615. image: {
  34616. source: "./media/characters/necrolance/front.svg",
  34617. extra: 1062/947,
  34618. bottom: 41/1103
  34619. }
  34620. },
  34621. back: {
  34622. height: math.unit(7, "feet"),
  34623. weight: math.unit(180, "lb"),
  34624. name: "Back",
  34625. image: {
  34626. source: "./media/characters/necrolance/back.svg",
  34627. extra: 1045/984,
  34628. bottom: 14/1059
  34629. }
  34630. },
  34631. wing: {
  34632. height: math.unit(2.67, "feet"),
  34633. name: "Wing",
  34634. image: {
  34635. source: "./media/characters/necrolance/wing.svg"
  34636. }
  34637. },
  34638. },
  34639. [
  34640. {
  34641. name: "Normal",
  34642. height: math.unit(7, "feet"),
  34643. default: true
  34644. },
  34645. ]
  34646. ))
  34647. characterMakers.push(() => makeCharacter(
  34648. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34649. {
  34650. front: {
  34651. height: math.unit(76, "meters"),
  34652. weight: math.unit(30000, "tons"),
  34653. name: "Front",
  34654. image: {
  34655. source: "./media/characters/tyler/front.svg",
  34656. extra: 1640/1640,
  34657. bottom: 114/1754
  34658. }
  34659. },
  34660. },
  34661. [
  34662. {
  34663. name: "Macro",
  34664. height: math.unit(76, "meters"),
  34665. default: true
  34666. },
  34667. ]
  34668. ))
  34669. characterMakers.push(() => makeCharacter(
  34670. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34671. {
  34672. front: {
  34673. height: math.unit(4 + 11/12, "feet"),
  34674. weight: math.unit(132, "lb"),
  34675. name: "Front",
  34676. image: {
  34677. source: "./media/characters/icey/front.svg",
  34678. extra: 2750/2550,
  34679. bottom: 33/2783
  34680. }
  34681. },
  34682. back: {
  34683. height: math.unit(4 + 11/12, "feet"),
  34684. weight: math.unit(132, "lb"),
  34685. name: "Back",
  34686. image: {
  34687. source: "./media/characters/icey/back.svg",
  34688. extra: 2624/2481,
  34689. bottom: 35/2659
  34690. }
  34691. },
  34692. },
  34693. [
  34694. {
  34695. name: "Normal",
  34696. height: math.unit(4 + 11/12, "feet"),
  34697. default: true
  34698. },
  34699. ]
  34700. ))
  34701. characterMakers.push(() => makeCharacter(
  34702. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34703. {
  34704. front: {
  34705. height: math.unit(100, "feet"),
  34706. weight: math.unit(0, "lb"),
  34707. name: "Front",
  34708. image: {
  34709. source: "./media/characters/smile/front.svg",
  34710. extra: 2983/2912,
  34711. bottom: 162/3145
  34712. }
  34713. },
  34714. back: {
  34715. height: math.unit(100, "feet"),
  34716. weight: math.unit(0, "lb"),
  34717. name: "Back",
  34718. image: {
  34719. source: "./media/characters/smile/back.svg",
  34720. extra: 3143/3031,
  34721. bottom: 91/3234
  34722. }
  34723. },
  34724. head: {
  34725. height: math.unit(26.3, "feet"),
  34726. weight: math.unit(0, "lb"),
  34727. name: "Head",
  34728. image: {
  34729. source: "./media/characters/smile/head.svg"
  34730. }
  34731. },
  34732. collar: {
  34733. height: math.unit(5.3, "feet"),
  34734. weight: math.unit(0, "lb"),
  34735. name: "Collar",
  34736. image: {
  34737. source: "./media/characters/smile/collar.svg"
  34738. }
  34739. },
  34740. },
  34741. [
  34742. {
  34743. name: "Macro",
  34744. height: math.unit(100, "feet"),
  34745. default: true
  34746. },
  34747. ]
  34748. ))
  34749. characterMakers.push(() => makeCharacter(
  34750. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34751. {
  34752. dragon: {
  34753. height: math.unit(26, "feet"),
  34754. weight: math.unit(36, "tons"),
  34755. name: "Dragon",
  34756. image: {
  34757. source: "./media/characters/arimphae/dragon.svg",
  34758. extra: 1574/983,
  34759. bottom: 357/1931
  34760. }
  34761. },
  34762. drake: {
  34763. height: math.unit(9, "feet"),
  34764. weight: math.unit(1.5, "tons"),
  34765. name: "Drake",
  34766. image: {
  34767. source: "./media/characters/arimphae/drake.svg",
  34768. extra: 1120/925,
  34769. bottom: 435/1555
  34770. }
  34771. },
  34772. },
  34773. [
  34774. {
  34775. name: "Small",
  34776. height: math.unit(26*5/9, "feet")
  34777. },
  34778. {
  34779. name: "Normal",
  34780. height: math.unit(26, "feet"),
  34781. default: true
  34782. },
  34783. ]
  34784. ))
  34785. characterMakers.push(() => makeCharacter(
  34786. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34787. {
  34788. front: {
  34789. height: math.unit(8 + 9/12, "feet"),
  34790. name: "Front",
  34791. image: {
  34792. source: "./media/characters/xander/front.svg",
  34793. extra: 1237/974,
  34794. bottom: 94/1331
  34795. }
  34796. },
  34797. },
  34798. [
  34799. {
  34800. name: "Normal",
  34801. height: math.unit(8 + 9/12, "feet"),
  34802. default: true
  34803. },
  34804. {
  34805. name: "Gaze Grabber",
  34806. height: math.unit(13 + 8/12, "feet")
  34807. },
  34808. {
  34809. name: "Jaw Dropper",
  34810. height: math.unit(27, "feet")
  34811. },
  34812. {
  34813. name: "Show Stopper",
  34814. height: math.unit(136, "feet")
  34815. },
  34816. {
  34817. name: "Superstar",
  34818. height: math.unit(1.9e6, "miles")
  34819. },
  34820. ]
  34821. ))
  34822. characterMakers.push(() => makeCharacter(
  34823. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34824. {
  34825. side: {
  34826. height: math.unit(2100, "feet"),
  34827. name: "Side",
  34828. image: {
  34829. source: "./media/characters/osiris/side.svg",
  34830. extra: 1105/939,
  34831. bottom: 167/1272
  34832. }
  34833. },
  34834. },
  34835. [
  34836. {
  34837. name: "Macro",
  34838. height: math.unit(2100, "feet"),
  34839. default: true
  34840. },
  34841. ]
  34842. ))
  34843. characterMakers.push(() => makeCharacter(
  34844. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34845. {
  34846. front: {
  34847. height: math.unit(6 + 8/12, "feet"),
  34848. weight: math.unit(225, "lb"),
  34849. name: "Front",
  34850. image: {
  34851. source: "./media/characters/rhys-londe/front.svg",
  34852. extra: 2258/2141,
  34853. bottom: 188/2446
  34854. }
  34855. },
  34856. back: {
  34857. height: math.unit(6 + 8/12, "feet"),
  34858. weight: math.unit(225, "lb"),
  34859. name: "Back",
  34860. image: {
  34861. source: "./media/characters/rhys-londe/back.svg",
  34862. extra: 2237/2137,
  34863. bottom: 63/2300
  34864. }
  34865. },
  34866. frontNsfw: {
  34867. height: math.unit(6 + 8/12, "feet"),
  34868. weight: math.unit(225, "lb"),
  34869. name: "Front (NSFW)",
  34870. image: {
  34871. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34872. extra: 2258/2141,
  34873. bottom: 188/2446
  34874. }
  34875. },
  34876. backNsfw: {
  34877. height: math.unit(6 + 8/12, "feet"),
  34878. weight: math.unit(225, "lb"),
  34879. name: "Back (NSFW)",
  34880. image: {
  34881. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34882. extra: 2237/2137,
  34883. bottom: 63/2300
  34884. }
  34885. },
  34886. dick: {
  34887. height: math.unit(30, "inches"),
  34888. name: "Dick",
  34889. image: {
  34890. source: "./media/characters/rhys-londe/dick.svg"
  34891. }
  34892. },
  34893. maw: {
  34894. height: math.unit(1.6, "feet"),
  34895. name: "Maw",
  34896. image: {
  34897. source: "./media/characters/rhys-londe/maw.svg"
  34898. }
  34899. },
  34900. },
  34901. [
  34902. {
  34903. name: "Normal",
  34904. height: math.unit(6 + 8/12, "feet"),
  34905. default: true
  34906. },
  34907. ]
  34908. ))
  34909. characterMakers.push(() => makeCharacter(
  34910. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34911. {
  34912. front: {
  34913. height: math.unit(3 + 10/12, "feet"),
  34914. weight: math.unit(90, "lb"),
  34915. name: "Front",
  34916. image: {
  34917. source: "./media/characters/taivas-ensim/front.svg",
  34918. extra: 1327/1216,
  34919. bottom: 96/1423
  34920. }
  34921. },
  34922. back: {
  34923. height: math.unit(3 + 10/12, "feet"),
  34924. weight: math.unit(90, "lb"),
  34925. name: "Back",
  34926. image: {
  34927. source: "./media/characters/taivas-ensim/back.svg",
  34928. extra: 1355/1247,
  34929. bottom: 11/1366
  34930. }
  34931. },
  34932. frontNsfw: {
  34933. height: math.unit(3 + 10/12, "feet"),
  34934. weight: math.unit(90, "lb"),
  34935. name: "Front (NSFW)",
  34936. image: {
  34937. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34938. extra: 1327/1216,
  34939. bottom: 96/1423
  34940. }
  34941. },
  34942. backNsfw: {
  34943. height: math.unit(3 + 10/12, "feet"),
  34944. weight: math.unit(90, "lb"),
  34945. name: "Back (NSFW)",
  34946. image: {
  34947. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34948. extra: 1355/1247,
  34949. bottom: 11/1366
  34950. }
  34951. },
  34952. },
  34953. [
  34954. {
  34955. name: "Normal",
  34956. height: math.unit(3 + 10/12, "feet"),
  34957. default: true
  34958. },
  34959. ]
  34960. ))
  34961. characterMakers.push(() => makeCharacter(
  34962. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34963. {
  34964. front: {
  34965. height: math.unit(9 + 6/12, "feet"),
  34966. weight: math.unit(940, "lb"),
  34967. name: "Front",
  34968. image: {
  34969. source: "./media/characters/byliss/front.svg",
  34970. extra: 1327/1290,
  34971. bottom: 82/1409
  34972. }
  34973. },
  34974. back: {
  34975. height: math.unit(9 + 6/12, "feet"),
  34976. weight: math.unit(940, "lb"),
  34977. name: "Back",
  34978. image: {
  34979. source: "./media/characters/byliss/back.svg",
  34980. extra: 1376/1349,
  34981. bottom: 9/1385
  34982. }
  34983. },
  34984. frontNsfw: {
  34985. height: math.unit(9 + 6/12, "feet"),
  34986. weight: math.unit(940, "lb"),
  34987. name: "Front (NSFW)",
  34988. image: {
  34989. source: "./media/characters/byliss/front-nsfw.svg",
  34990. extra: 1327/1290,
  34991. bottom: 82/1409
  34992. }
  34993. },
  34994. backNsfw: {
  34995. height: math.unit(9 + 6/12, "feet"),
  34996. weight: math.unit(940, "lb"),
  34997. name: "Back (NSFW)",
  34998. image: {
  34999. source: "./media/characters/byliss/back-nsfw.svg",
  35000. extra: 1376/1349,
  35001. bottom: 9/1385
  35002. }
  35003. },
  35004. },
  35005. [
  35006. {
  35007. name: "Normal",
  35008. height: math.unit(9 + 6/12, "feet"),
  35009. default: true
  35010. },
  35011. ]
  35012. ))
  35013. characterMakers.push(() => makeCharacter(
  35014. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35015. {
  35016. front: {
  35017. height: math.unit(5 + 2/12, "feet"),
  35018. weight: math.unit(200, "lb"),
  35019. name: "Front",
  35020. image: {
  35021. source: "./media/characters/noraly/front.svg",
  35022. extra: 4985/4773,
  35023. bottom: 150/5135
  35024. }
  35025. },
  35026. full: {
  35027. height: math.unit(5 + 2/12, "feet"),
  35028. weight: math.unit(164, "lb"),
  35029. name: "Full",
  35030. image: {
  35031. source: "./media/characters/noraly/full.svg",
  35032. extra: 1114/1059,
  35033. bottom: 35/1149
  35034. }
  35035. },
  35036. fuller: {
  35037. height: math.unit(5 + 2/12, "feet"),
  35038. weight: math.unit(230, "lb"),
  35039. name: "Fuller",
  35040. image: {
  35041. source: "./media/characters/noraly/fuller.svg",
  35042. extra: 1114/1059,
  35043. bottom: 35/1149
  35044. }
  35045. },
  35046. fullest: {
  35047. height: math.unit(5 + 2/12, "feet"),
  35048. weight: math.unit(300, "lb"),
  35049. name: "Fullest",
  35050. image: {
  35051. source: "./media/characters/noraly/fullest.svg",
  35052. extra: 1114/1059,
  35053. bottom: 35/1149
  35054. }
  35055. },
  35056. },
  35057. [
  35058. {
  35059. name: "Normal",
  35060. height: math.unit(5 + 2/12, "feet"),
  35061. default: true
  35062. },
  35063. ]
  35064. ))
  35065. characterMakers.push(() => makeCharacter(
  35066. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35067. {
  35068. front: {
  35069. height: math.unit(5 + 2/12, "feet"),
  35070. weight: math.unit(210, "lb"),
  35071. name: "Front",
  35072. image: {
  35073. source: "./media/characters/pera/front.svg",
  35074. extra: 1560/1531,
  35075. bottom: 165/1725
  35076. }
  35077. },
  35078. back: {
  35079. height: math.unit(5 + 2/12, "feet"),
  35080. weight: math.unit(210, "lb"),
  35081. name: "Back",
  35082. image: {
  35083. source: "./media/characters/pera/back.svg",
  35084. extra: 1523/1493,
  35085. bottom: 152/1675
  35086. }
  35087. },
  35088. dick: {
  35089. height: math.unit(2.4, "feet"),
  35090. name: "Dick",
  35091. image: {
  35092. source: "./media/characters/pera/dick.svg"
  35093. }
  35094. },
  35095. },
  35096. [
  35097. {
  35098. name: "Normal",
  35099. height: math.unit(5 + 2/12, "feet"),
  35100. default: true
  35101. },
  35102. ]
  35103. ))
  35104. characterMakers.push(() => makeCharacter(
  35105. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35106. {
  35107. front: {
  35108. height: math.unit(12, "feet"),
  35109. weight: math.unit(3200, "lb"),
  35110. name: "Front",
  35111. image: {
  35112. source: "./media/characters/julian/front.svg",
  35113. extra: 2962/2701,
  35114. bottom: 184/3146
  35115. }
  35116. },
  35117. maw: {
  35118. height: math.unit(5.35, "feet"),
  35119. name: "Maw",
  35120. image: {
  35121. source: "./media/characters/julian/maw.svg"
  35122. }
  35123. },
  35124. paw: {
  35125. height: math.unit(3.07, "feet"),
  35126. name: "Paw",
  35127. image: {
  35128. source: "./media/characters/julian/paw.svg"
  35129. }
  35130. },
  35131. },
  35132. [
  35133. {
  35134. name: "Default",
  35135. height: math.unit(12, "feet"),
  35136. default: true
  35137. },
  35138. {
  35139. name: "Big",
  35140. height: math.unit(50, "feet")
  35141. },
  35142. {
  35143. name: "Really Big",
  35144. height: math.unit(1, "mile")
  35145. },
  35146. {
  35147. name: "Extremely Big",
  35148. height: math.unit(100, "miles")
  35149. },
  35150. {
  35151. name: "Planet Hugger",
  35152. height: math.unit(200, "megameters")
  35153. },
  35154. {
  35155. name: "Unreasonably Big",
  35156. height: math.unit(1e300, "meters")
  35157. },
  35158. ]
  35159. ))
  35160. characterMakers.push(() => makeCharacter(
  35161. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35162. {
  35163. solgooleo: {
  35164. height: math.unit(4, "meters"),
  35165. weight: math.unit(6000*1.5, "kg"),
  35166. volume: math.unit(6000, "liters"),
  35167. name: "Solgooleo",
  35168. image: {
  35169. source: "./media/characters/pi/solgooleo.svg",
  35170. extra: 388/331,
  35171. bottom: 29/417
  35172. }
  35173. },
  35174. },
  35175. [
  35176. {
  35177. name: "Normal",
  35178. height: math.unit(4, "meters"),
  35179. default: true
  35180. },
  35181. ]
  35182. ))
  35183. characterMakers.push(() => makeCharacter(
  35184. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35185. {
  35186. front: {
  35187. height: math.unit(8, "feet"),
  35188. weight: math.unit(4, "tons"),
  35189. name: "Front",
  35190. image: {
  35191. source: "./media/characters/shaun/front.svg",
  35192. extra: 503/495,
  35193. bottom: 20/523
  35194. }
  35195. },
  35196. back: {
  35197. height: math.unit(8, "feet"),
  35198. weight: math.unit(4, "tons"),
  35199. name: "Back",
  35200. image: {
  35201. source: "./media/characters/shaun/back.svg",
  35202. extra: 487/480,
  35203. bottom: 20/507
  35204. }
  35205. },
  35206. },
  35207. [
  35208. {
  35209. name: "Lorg",
  35210. height: math.unit(8, "feet"),
  35211. default: true
  35212. },
  35213. ]
  35214. ))
  35215. characterMakers.push(() => makeCharacter(
  35216. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35217. {
  35218. frontAnthro: {
  35219. height: math.unit(7, "feet"),
  35220. name: "Front",
  35221. image: {
  35222. source: "./media/characters/sini/front-anthro.svg",
  35223. extra: 726/678,
  35224. bottom: 35/761
  35225. },
  35226. form: "anthro",
  35227. default: true
  35228. },
  35229. backAnthro: {
  35230. height: math.unit(7, "feet"),
  35231. name: "Back",
  35232. image: {
  35233. source: "./media/characters/sini/back-anthro.svg",
  35234. extra: 743/701,
  35235. bottom: 12/755
  35236. },
  35237. form: "anthro",
  35238. },
  35239. frontAnthroNsfw: {
  35240. height: math.unit(7, "feet"),
  35241. name: "Front (NSFW)",
  35242. image: {
  35243. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35244. extra: 726/678,
  35245. bottom: 35/761
  35246. },
  35247. form: "anthro"
  35248. },
  35249. backAnthroNsfw: {
  35250. height: math.unit(7, "feet"),
  35251. name: "Back (NSFW)",
  35252. image: {
  35253. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35254. extra: 743/701,
  35255. bottom: 12/755
  35256. },
  35257. form: "anthro",
  35258. },
  35259. mawAnthro: {
  35260. height: math.unit(2.14, "feet"),
  35261. name: "Maw",
  35262. image: {
  35263. source: "./media/characters/sini/maw-anthro.svg"
  35264. },
  35265. form: "anthro"
  35266. },
  35267. dick: {
  35268. height: math.unit(1.45, "feet"),
  35269. name: "Dick",
  35270. image: {
  35271. source: "./media/characters/sini/dick-anthro.svg"
  35272. },
  35273. form: "anthro"
  35274. },
  35275. feral: {
  35276. height: math.unit(16, "feet"),
  35277. name: "Feral",
  35278. image: {
  35279. source: "./media/characters/sini/feral.svg",
  35280. extra: 814/605,
  35281. bottom: 11/825
  35282. },
  35283. form: "feral",
  35284. default: true
  35285. },
  35286. feralNsfw: {
  35287. height: math.unit(16, "feet"),
  35288. name: "Feral (NSFW)",
  35289. image: {
  35290. source: "./media/characters/sini/feral-nsfw.svg",
  35291. extra: 814/605,
  35292. bottom: 11/825
  35293. },
  35294. form: "feral"
  35295. },
  35296. mawFeral: {
  35297. height: math.unit(5.66, "feet"),
  35298. name: "Maw",
  35299. image: {
  35300. source: "./media/characters/sini/maw-feral.svg"
  35301. },
  35302. form: "feral",
  35303. },
  35304. pawFeral: {
  35305. height: math.unit(5.17, "feet"),
  35306. name: "Paw",
  35307. image: {
  35308. source: "./media/characters/sini/paw-feral.svg"
  35309. },
  35310. form: "feral",
  35311. },
  35312. rumpFeral: {
  35313. height: math.unit(13.11, "feet"),
  35314. name: "Rump",
  35315. image: {
  35316. source: "./media/characters/sini/rump-feral.svg"
  35317. },
  35318. form: "feral",
  35319. },
  35320. dickFeral: {
  35321. height: math.unit(1, "feet"),
  35322. name: "Dick",
  35323. image: {
  35324. source: "./media/characters/sini/dick-feral.svg"
  35325. },
  35326. form: "feral",
  35327. },
  35328. eyeFeral: {
  35329. height: math.unit(1.23, "feet"),
  35330. name: "Eye",
  35331. image: {
  35332. source: "./media/characters/sini/eye-feral.svg"
  35333. },
  35334. form: "feral",
  35335. },
  35336. },
  35337. [
  35338. {
  35339. name: "Normal",
  35340. height: math.unit(7, "feet"),
  35341. default: true,
  35342. form: "anthro"
  35343. },
  35344. {
  35345. name: "Normal",
  35346. height: math.unit(16, "feet"),
  35347. default: true,
  35348. form: "feral"
  35349. },
  35350. ],
  35351. {
  35352. "anthro": {
  35353. name: "Anthro",
  35354. default: true
  35355. },
  35356. "feral": {
  35357. name: "Feral",
  35358. }
  35359. }
  35360. ))
  35361. characterMakers.push(() => makeCharacter(
  35362. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35363. {
  35364. side: {
  35365. height: math.unit(47.2, "meters"),
  35366. weight: math.unit(10000, "tons"),
  35367. name: "Side",
  35368. image: {
  35369. source: "./media/characters/raylldo/side.svg",
  35370. extra: 2363/642,
  35371. bottom: 221/2584
  35372. }
  35373. },
  35374. top: {
  35375. height: math.unit(240, "meters"),
  35376. weight: math.unit(10000, "tons"),
  35377. name: "Top",
  35378. image: {
  35379. source: "./media/characters/raylldo/top.svg"
  35380. }
  35381. },
  35382. bottom: {
  35383. height: math.unit(240, "meters"),
  35384. weight: math.unit(10000, "tons"),
  35385. name: "Bottom",
  35386. image: {
  35387. source: "./media/characters/raylldo/bottom.svg"
  35388. }
  35389. },
  35390. head: {
  35391. height: math.unit(38.6, "meters"),
  35392. name: "Head",
  35393. image: {
  35394. source: "./media/characters/raylldo/head.svg",
  35395. extra: 1335/1112,
  35396. bottom: 0/1335
  35397. }
  35398. },
  35399. maw: {
  35400. height: math.unit(16.37, "meters"),
  35401. name: "Maw",
  35402. image: {
  35403. source: "./media/characters/raylldo/maw.svg",
  35404. extra: 883/660,
  35405. bottom: 0/883
  35406. },
  35407. extraAttributes: {
  35408. preyCapacity: {
  35409. name: "Capacity",
  35410. power: 3,
  35411. type: "volume",
  35412. base: math.unit(1000, "people")
  35413. },
  35414. tongueSize: {
  35415. name: "Tongue Size",
  35416. power: 2,
  35417. type: "area",
  35418. base: math.unit(21, "m^2")
  35419. }
  35420. }
  35421. },
  35422. forepaw: {
  35423. height: math.unit(18, "meters"),
  35424. name: "Forepaw",
  35425. image: {
  35426. source: "./media/characters/raylldo/forepaw.svg"
  35427. }
  35428. },
  35429. hindpaw: {
  35430. height: math.unit(23, "meters"),
  35431. name: "Hindpaw",
  35432. image: {
  35433. source: "./media/characters/raylldo/hindpaw.svg"
  35434. }
  35435. },
  35436. genitals: {
  35437. height: math.unit(42, "meters"),
  35438. name: "Genitals",
  35439. image: {
  35440. source: "./media/characters/raylldo/genitals.svg"
  35441. }
  35442. },
  35443. },
  35444. [
  35445. {
  35446. name: "Normal",
  35447. height: math.unit(47.2, "meters"),
  35448. default: true
  35449. },
  35450. ]
  35451. ))
  35452. characterMakers.push(() => makeCharacter(
  35453. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35454. {
  35455. anthroFront: {
  35456. height: math.unit(9, "feet"),
  35457. weight: math.unit(600, "lb"),
  35458. name: "Anthro (Front)",
  35459. image: {
  35460. source: "./media/characters/glint/anthro-front.svg",
  35461. extra: 1097/1018,
  35462. bottom: 28/1125
  35463. }
  35464. },
  35465. anthroBack: {
  35466. height: math.unit(9, "feet"),
  35467. weight: math.unit(600, "lb"),
  35468. name: "Anthro (Back)",
  35469. image: {
  35470. source: "./media/characters/glint/anthro-back.svg",
  35471. extra: 1154/997,
  35472. bottom: 36/1190
  35473. }
  35474. },
  35475. feral: {
  35476. height: math.unit(11, "feet"),
  35477. weight: math.unit(50000, "lb"),
  35478. name: "Feral",
  35479. image: {
  35480. source: "./media/characters/glint/feral.svg",
  35481. extra: 3035/1585,
  35482. bottom: 1169/4204
  35483. }
  35484. },
  35485. dickAnthro: {
  35486. height: math.unit(0.7, "meters"),
  35487. name: "Dick (Anthro)",
  35488. image: {
  35489. source: "./media/characters/glint/dick-anthro.svg"
  35490. }
  35491. },
  35492. dickFeral: {
  35493. height: math.unit(2.65, "meters"),
  35494. name: "Dick (Feral)",
  35495. image: {
  35496. source: "./media/characters/glint/dick-feral.svg"
  35497. }
  35498. },
  35499. slitHidden: {
  35500. height: math.unit(5.85, "meters"),
  35501. name: "Slit (Hidden)",
  35502. image: {
  35503. source: "./media/characters/glint/slit-hidden.svg"
  35504. }
  35505. },
  35506. slitErect: {
  35507. height: math.unit(5.85, "meters"),
  35508. name: "Slit (Erect)",
  35509. image: {
  35510. source: "./media/characters/glint/slit-erect.svg"
  35511. }
  35512. },
  35513. mawAnthro: {
  35514. height: math.unit(0.63, "meters"),
  35515. name: "Maw (Anthro)",
  35516. image: {
  35517. source: "./media/characters/glint/maw.svg"
  35518. }
  35519. },
  35520. mawFeral: {
  35521. height: math.unit(2.89, "meters"),
  35522. name: "Maw (Feral)",
  35523. image: {
  35524. source: "./media/characters/glint/maw.svg"
  35525. }
  35526. },
  35527. },
  35528. [
  35529. {
  35530. name: "Normal",
  35531. height: math.unit(9, "feet"),
  35532. default: true
  35533. },
  35534. ]
  35535. ))
  35536. characterMakers.push(() => makeCharacter(
  35537. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35538. {
  35539. side: {
  35540. height: math.unit(15, "feet"),
  35541. weight: math.unit(5000, "kg"),
  35542. name: "Side",
  35543. image: {
  35544. source: "./media/characters/kairne/side.svg",
  35545. extra: 979/811,
  35546. bottom: 13/992
  35547. }
  35548. },
  35549. front: {
  35550. height: math.unit(15, "feet"),
  35551. weight: math.unit(5000, "kg"),
  35552. name: "Front",
  35553. image: {
  35554. source: "./media/characters/kairne/front.svg",
  35555. extra: 908/814,
  35556. bottom: 26/934
  35557. }
  35558. },
  35559. sideNsfw: {
  35560. height: math.unit(15, "feet"),
  35561. weight: math.unit(5000, "kg"),
  35562. name: "Side (NSFW)",
  35563. image: {
  35564. source: "./media/characters/kairne/side-nsfw.svg",
  35565. extra: 979/811,
  35566. bottom: 13/992
  35567. }
  35568. },
  35569. frontNsfw: {
  35570. height: math.unit(15, "feet"),
  35571. weight: math.unit(5000, "kg"),
  35572. name: "Front (NSFW)",
  35573. image: {
  35574. source: "./media/characters/kairne/front-nsfw.svg",
  35575. extra: 908/814,
  35576. bottom: 26/934
  35577. }
  35578. },
  35579. dickCaged: {
  35580. height: math.unit(0.65, "meters"),
  35581. name: "Dick-caged",
  35582. image: {
  35583. source: "./media/characters/kairne/dick-caged.svg"
  35584. }
  35585. },
  35586. dick: {
  35587. height: math.unit(0.79, "meters"),
  35588. name: "Dick",
  35589. image: {
  35590. source: "./media/characters/kairne/dick.svg"
  35591. }
  35592. },
  35593. genitals: {
  35594. height: math.unit(1.29, "meters"),
  35595. name: "Genitals",
  35596. image: {
  35597. source: "./media/characters/kairne/genitals.svg"
  35598. }
  35599. },
  35600. maw: {
  35601. height: math.unit(1.73, "meters"),
  35602. name: "Maw",
  35603. image: {
  35604. source: "./media/characters/kairne/maw.svg"
  35605. }
  35606. },
  35607. },
  35608. [
  35609. {
  35610. name: "Normal",
  35611. height: math.unit(15, "feet"),
  35612. default: true
  35613. },
  35614. ]
  35615. ))
  35616. characterMakers.push(() => makeCharacter(
  35617. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35618. {
  35619. front: {
  35620. height: math.unit(5 + 8/12, "feet"),
  35621. weight: math.unit(139, "lb"),
  35622. name: "Front",
  35623. image: {
  35624. source: "./media/characters/biscuit-jackal/front.svg",
  35625. extra: 2106/1961,
  35626. bottom: 58/2164
  35627. }
  35628. },
  35629. back: {
  35630. height: math.unit(5 + 8/12, "feet"),
  35631. weight: math.unit(139, "lb"),
  35632. name: "Back",
  35633. image: {
  35634. source: "./media/characters/biscuit-jackal/back.svg",
  35635. extra: 2132/1976,
  35636. bottom: 57/2189
  35637. }
  35638. },
  35639. werejackal: {
  35640. height: math.unit(6 + 3/12, "feet"),
  35641. weight: math.unit(188, "lb"),
  35642. name: "Werejackal",
  35643. image: {
  35644. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35645. extra: 2373/2178,
  35646. bottom: 53/2426
  35647. }
  35648. },
  35649. },
  35650. [
  35651. {
  35652. name: "Normal",
  35653. height: math.unit(5 + 8/12, "feet"),
  35654. default: true
  35655. },
  35656. ]
  35657. ))
  35658. characterMakers.push(() => makeCharacter(
  35659. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35660. {
  35661. front: {
  35662. height: math.unit(140, "cm"),
  35663. weight: math.unit(45, "kg"),
  35664. name: "Front",
  35665. image: {
  35666. source: "./media/characters/tayra-white/front.svg",
  35667. extra: 2229/2192,
  35668. bottom: 75/2304
  35669. }
  35670. },
  35671. },
  35672. [
  35673. {
  35674. name: "Normal",
  35675. height: math.unit(140, "cm"),
  35676. default: true
  35677. },
  35678. ]
  35679. ))
  35680. characterMakers.push(() => makeCharacter(
  35681. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35682. {
  35683. front: {
  35684. height: math.unit(4 + 5/12, "feet"),
  35685. name: "Front",
  35686. image: {
  35687. source: "./media/characters/scoop/front.svg",
  35688. extra: 1257/1136,
  35689. bottom: 69/1326
  35690. }
  35691. },
  35692. back: {
  35693. height: math.unit(4 + 5/12, "feet"),
  35694. name: "Back",
  35695. image: {
  35696. source: "./media/characters/scoop/back.svg",
  35697. extra: 1321/1152,
  35698. bottom: 32/1353
  35699. }
  35700. },
  35701. maw: {
  35702. height: math.unit(0.68, "feet"),
  35703. name: "Maw",
  35704. image: {
  35705. source: "./media/characters/scoop/maw.svg"
  35706. }
  35707. },
  35708. },
  35709. [
  35710. {
  35711. name: "Really Small",
  35712. height: math.unit(1, "mm")
  35713. },
  35714. {
  35715. name: "Micro",
  35716. height: math.unit(1, "inch")
  35717. },
  35718. {
  35719. name: "Normal",
  35720. height: math.unit(4 + 5/12, "feet"),
  35721. default: true
  35722. },
  35723. {
  35724. name: "Macro",
  35725. height: math.unit(200, "feet")
  35726. },
  35727. {
  35728. name: "Megamacro",
  35729. height: math.unit(3240, "feet")
  35730. },
  35731. {
  35732. name: "Teramacro",
  35733. height: math.unit(2500, "miles")
  35734. },
  35735. ]
  35736. ))
  35737. characterMakers.push(() => makeCharacter(
  35738. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35739. {
  35740. front: {
  35741. height: math.unit(15 + 7/12, "feet"),
  35742. weight: math.unit(1150, "tons"),
  35743. name: "Front",
  35744. image: {
  35745. source: "./media/characters/saphinara/front.svg",
  35746. extra: 1837/1643,
  35747. bottom: 84/1921
  35748. },
  35749. form: "normal",
  35750. default: true
  35751. },
  35752. side: {
  35753. height: math.unit(15 + 7/12, "feet"),
  35754. weight: math.unit(1150, "tons"),
  35755. name: "Side",
  35756. image: {
  35757. source: "./media/characters/saphinara/side.svg",
  35758. extra: 605/547,
  35759. bottom: 6/611
  35760. },
  35761. form: "normal"
  35762. },
  35763. back: {
  35764. height: math.unit(15 + 7/12, "feet"),
  35765. weight: math.unit(1150, "tons"),
  35766. name: "Back",
  35767. image: {
  35768. source: "./media/characters/saphinara/back.svg",
  35769. extra: 591/531,
  35770. bottom: 13/604
  35771. },
  35772. form: "normal"
  35773. },
  35774. frontTail: {
  35775. height: math.unit(15 + 7/12, "feet"),
  35776. weight: math.unit(1150, "tons"),
  35777. name: "Front (Full Tail)",
  35778. image: {
  35779. source: "./media/characters/saphinara/front-tail.svg",
  35780. extra: 2256/1630,
  35781. bottom: 261/2517
  35782. },
  35783. form: "normal"
  35784. },
  35785. insides: {
  35786. height: math.unit(11.92, "feet"),
  35787. name: "Insides",
  35788. image: {
  35789. source: "./media/characters/saphinara/insides.svg"
  35790. },
  35791. form: "normal"
  35792. },
  35793. head: {
  35794. height: math.unit(4.17, "feet"),
  35795. name: "Head",
  35796. image: {
  35797. source: "./media/characters/saphinara/head.svg"
  35798. },
  35799. form: "normal"
  35800. },
  35801. tongue: {
  35802. height: math.unit(4.60, "feet"),
  35803. name: "Tongue",
  35804. image: {
  35805. source: "./media/characters/saphinara/tongue.svg"
  35806. },
  35807. form: "normal"
  35808. },
  35809. headEnraged: {
  35810. height: math.unit(5.55, "feet"),
  35811. name: "Head (Enraged)",
  35812. image: {
  35813. source: "./media/characters/saphinara/head-enraged.svg"
  35814. },
  35815. form: "normal"
  35816. },
  35817. wings: {
  35818. height: math.unit(11.95, "feet"),
  35819. name: "Wings",
  35820. image: {
  35821. source: "./media/characters/saphinara/wings.svg"
  35822. },
  35823. form: "normal"
  35824. },
  35825. feathers: {
  35826. height: math.unit(8.92, "feet"),
  35827. name: "Feathers",
  35828. image: {
  35829. source: "./media/characters/saphinara/feathers.svg"
  35830. },
  35831. form: "normal"
  35832. },
  35833. shackles: {
  35834. height: math.unit(2, "feet"),
  35835. name: "Shackles",
  35836. image: {
  35837. source: "./media/characters/saphinara/shackles.svg"
  35838. },
  35839. form: "normal"
  35840. },
  35841. eyes: {
  35842. height: math.unit(1.331, "feet"),
  35843. name: "Eyes",
  35844. image: {
  35845. source: "./media/characters/saphinara/eyes.svg"
  35846. },
  35847. form: "normal"
  35848. },
  35849. eyesEnraged: {
  35850. height: math.unit(1.331, "feet"),
  35851. name: "Eyes (Enraged)",
  35852. image: {
  35853. source: "./media/characters/saphinara/eyes-enraged.svg"
  35854. },
  35855. form: "normal"
  35856. },
  35857. trueFormSide: {
  35858. height: math.unit(200, "feet"),
  35859. weight: math.unit(1e7, "tons"),
  35860. name: "Side",
  35861. image: {
  35862. source: "./media/characters/saphinara/true-form-side.svg",
  35863. extra: 1399/770,
  35864. bottom: 97/1496
  35865. },
  35866. form: "true-form",
  35867. default: true
  35868. },
  35869. trueFormMaw: {
  35870. height: math.unit(71.5, "feet"),
  35871. name: "Maw",
  35872. image: {
  35873. source: "./media/characters/saphinara/true-form-maw.svg",
  35874. extra: 2302/1453,
  35875. bottom: 0/2302
  35876. },
  35877. form: "true-form"
  35878. },
  35879. meowberusSide: {
  35880. height: math.unit(75, "feet"),
  35881. weight: math.unit(180000, "kg"),
  35882. preyCapacity: math.unit(50000, "people"),
  35883. name: "Side",
  35884. image: {
  35885. source: "./media/characters/saphinara/meowberus-side.svg",
  35886. extra: 1400/711,
  35887. bottom: 126/1526
  35888. },
  35889. form: "meowberus",
  35890. extraAttributes: {
  35891. "pawArea": {
  35892. name: "Paw Size",
  35893. power: 2,
  35894. type: "area",
  35895. base: math.unit(35, "m^2")
  35896. }
  35897. }
  35898. },
  35899. },
  35900. [
  35901. {
  35902. name: "Normal",
  35903. height: math.unit(15 + 7/12, "feet"),
  35904. default: true,
  35905. form: "normal"
  35906. },
  35907. {
  35908. name: "Angry",
  35909. height: math.unit(30 + 6/12, "feet"),
  35910. form: "normal"
  35911. },
  35912. {
  35913. name: "Enraged",
  35914. height: math.unit(102 + 1/12, "feet"),
  35915. form: "normal"
  35916. },
  35917. {
  35918. name: "True",
  35919. height: math.unit(200, "feet"),
  35920. default: true,
  35921. form: "true-form"
  35922. },
  35923. {
  35924. name: "Normal",
  35925. height: math.unit(75, "feet"),
  35926. default: true,
  35927. form: "meowberus"
  35928. },
  35929. ],
  35930. {
  35931. "normal": {
  35932. name: "Normal",
  35933. default: true
  35934. },
  35935. "true-form": {
  35936. name: "True Form"
  35937. },
  35938. "meowberus": {
  35939. name: "Meowberus",
  35940. },
  35941. }
  35942. ))
  35943. characterMakers.push(() => makeCharacter(
  35944. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35945. {
  35946. front: {
  35947. height: math.unit(6 + 8/12, "feet"),
  35948. weight: math.unit(300, "lb"),
  35949. name: "Front",
  35950. image: {
  35951. source: "./media/characters/jrain/front.svg",
  35952. extra: 3039/2865,
  35953. bottom: 399/3438
  35954. }
  35955. },
  35956. back: {
  35957. height: math.unit(6 + 8/12, "feet"),
  35958. weight: math.unit(300, "lb"),
  35959. name: "Back",
  35960. image: {
  35961. source: "./media/characters/jrain/back.svg",
  35962. extra: 3089/2938,
  35963. bottom: 172/3261
  35964. }
  35965. },
  35966. head: {
  35967. height: math.unit(2.14, "feet"),
  35968. name: "Head",
  35969. image: {
  35970. source: "./media/characters/jrain/head.svg"
  35971. }
  35972. },
  35973. maw: {
  35974. height: math.unit(1.77, "feet"),
  35975. name: "Maw",
  35976. image: {
  35977. source: "./media/characters/jrain/maw.svg"
  35978. }
  35979. },
  35980. leftHand: {
  35981. height: math.unit(1.1, "feet"),
  35982. name: "Left Hand",
  35983. image: {
  35984. source: "./media/characters/jrain/left-hand.svg"
  35985. }
  35986. },
  35987. rightHand: {
  35988. height: math.unit(1.1, "feet"),
  35989. name: "Right Hand",
  35990. image: {
  35991. source: "./media/characters/jrain/right-hand.svg"
  35992. }
  35993. },
  35994. eye: {
  35995. height: math.unit(0.35, "feet"),
  35996. name: "Eye",
  35997. image: {
  35998. source: "./media/characters/jrain/eye.svg"
  35999. }
  36000. },
  36001. },
  36002. [
  36003. {
  36004. name: "Normal",
  36005. height: math.unit(6 + 8/12, "feet"),
  36006. default: true
  36007. },
  36008. {
  36009. name: "Casually Large",
  36010. height: math.unit(25, "feet")
  36011. },
  36012. {
  36013. name: "Giant",
  36014. height: math.unit(100, "feet")
  36015. },
  36016. {
  36017. name: "Kaiju",
  36018. height: math.unit(300, "feet")
  36019. },
  36020. ]
  36021. ))
  36022. characterMakers.push(() => makeCharacter(
  36023. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36024. {
  36025. dragon: {
  36026. height: math.unit(5, "meters"),
  36027. name: "Dragon",
  36028. image: {
  36029. source: "./media/characters/sabrina/dragon.svg",
  36030. extra: 3670 / 2365,
  36031. bottom: 333 / 4003
  36032. }
  36033. },
  36034. gryphon: {
  36035. height: math.unit(3, "meters"),
  36036. name: "Gryphon",
  36037. image: {
  36038. source: "./media/characters/sabrina/gryphon.svg",
  36039. extra: 1576 / 945,
  36040. bottom: 71 / 1647
  36041. }
  36042. },
  36043. snake: {
  36044. height: math.unit(12, "meters"),
  36045. name: "Snake",
  36046. image: {
  36047. source: "./media/characters/sabrina/snake.svg",
  36048. extra: 1758 / 1320,
  36049. bottom: 186 / 1944
  36050. }
  36051. },
  36052. collar: {
  36053. height: math.unit(1.86, "meters"),
  36054. name: "Collar",
  36055. image: {
  36056. source: "./media/characters/sabrina/collar.svg"
  36057. }
  36058. },
  36059. eye: {
  36060. height: math.unit(0.53, "meters"),
  36061. name: "Eye",
  36062. image: {
  36063. source: "./media/characters/sabrina/eye.svg"
  36064. }
  36065. },
  36066. foot: {
  36067. height: math.unit(1.86, "meters"),
  36068. name: "Foot",
  36069. image: {
  36070. source: "./media/characters/sabrina/foot.svg"
  36071. }
  36072. },
  36073. hand: {
  36074. height: math.unit(1.32, "meters"),
  36075. name: "Hand",
  36076. image: {
  36077. source: "./media/characters/sabrina/hand.svg"
  36078. }
  36079. },
  36080. head: {
  36081. height: math.unit(2.44, "meters"),
  36082. name: "Head",
  36083. image: {
  36084. source: "./media/characters/sabrina/head.svg"
  36085. }
  36086. },
  36087. headAngry: {
  36088. height: math.unit(2.44, "meters"),
  36089. name: "Head (Angry))",
  36090. image: {
  36091. source: "./media/characters/sabrina/head-angry.svg"
  36092. }
  36093. },
  36094. maw: {
  36095. height: math.unit(1.65, "meters"),
  36096. name: "Maw",
  36097. image: {
  36098. source: "./media/characters/sabrina/maw.svg"
  36099. }
  36100. },
  36101. spikes: {
  36102. height: math.unit(1.69, "meters"),
  36103. name: "Spikes",
  36104. image: {
  36105. source: "./media/characters/sabrina/spikes.svg"
  36106. }
  36107. },
  36108. stomach: {
  36109. height: math.unit(1.15, "meters"),
  36110. name: "Stomach",
  36111. image: {
  36112. source: "./media/characters/sabrina/stomach.svg"
  36113. }
  36114. },
  36115. tongue: {
  36116. height: math.unit(1.27, "meters"),
  36117. name: "Tongue",
  36118. image: {
  36119. source: "./media/characters/sabrina/tongue.svg"
  36120. }
  36121. },
  36122. wingDorsal: {
  36123. height: math.unit(4.85, "meters"),
  36124. name: "Wing (Dorsal)",
  36125. image: {
  36126. source: "./media/characters/sabrina/wing-dorsal.svg"
  36127. }
  36128. },
  36129. wingVentral: {
  36130. height: math.unit(4.85, "meters"),
  36131. name: "Wing (Ventral)",
  36132. image: {
  36133. source: "./media/characters/sabrina/wing-ventral.svg"
  36134. }
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(5, "meters"),
  36141. default: true
  36142. },
  36143. ]
  36144. ))
  36145. characterMakers.push(() => makeCharacter(
  36146. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36147. {
  36148. frontMaid: {
  36149. height: math.unit(5 + 5/12, "feet"),
  36150. weight: math.unit(130, "lb"),
  36151. name: "Front (Maid)",
  36152. image: {
  36153. source: "./media/characters/midnight-tales/front-maid.svg",
  36154. extra: 489/454,
  36155. bottom: 61/550
  36156. }
  36157. },
  36158. frontFormal: {
  36159. height: math.unit(5 + 5/12, "feet"),
  36160. weight: math.unit(130, "lb"),
  36161. name: "Front (Formal)",
  36162. image: {
  36163. source: "./media/characters/midnight-tales/front-formal.svg",
  36164. extra: 489/454,
  36165. bottom: 61/550
  36166. }
  36167. },
  36168. back: {
  36169. height: math.unit(5 + 5/12, "feet"),
  36170. weight: math.unit(130, "lb"),
  36171. name: "Back",
  36172. image: {
  36173. source: "./media/characters/midnight-tales/back.svg",
  36174. extra: 498/456,
  36175. bottom: 33/531
  36176. }
  36177. },
  36178. frontBeast: {
  36179. height: math.unit(40, "feet"),
  36180. weight: math.unit(64000, "lb"),
  36181. name: "Front (Beast)",
  36182. image: {
  36183. source: "./media/characters/midnight-tales/front-beast.svg",
  36184. extra: 927/860,
  36185. bottom: 53/980
  36186. }
  36187. },
  36188. backBeast: {
  36189. height: math.unit(40, "feet"),
  36190. weight: math.unit(64000, "lb"),
  36191. name: "Back (Beast)",
  36192. image: {
  36193. source: "./media/characters/midnight-tales/back-beast.svg",
  36194. extra: 929/855,
  36195. bottom: 16/945
  36196. }
  36197. },
  36198. footBeast: {
  36199. height: math.unit(6.7, "feet"),
  36200. name: "Foot (Beast)",
  36201. image: {
  36202. source: "./media/characters/midnight-tales/foot-beast.svg"
  36203. }
  36204. },
  36205. headBeast: {
  36206. height: math.unit(8, "feet"),
  36207. name: "Head (Beast)",
  36208. image: {
  36209. source: "./media/characters/midnight-tales/head-beast.svg"
  36210. }
  36211. },
  36212. },
  36213. [
  36214. {
  36215. name: "Normal",
  36216. height: math.unit(5 + 5 / 12, "feet"),
  36217. default: true
  36218. },
  36219. {
  36220. name: "Macro",
  36221. height: math.unit(25, "feet")
  36222. },
  36223. ]
  36224. ))
  36225. characterMakers.push(() => makeCharacter(
  36226. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36227. {
  36228. front: {
  36229. height: math.unit(5 + 10/12, "feet"),
  36230. name: "Front",
  36231. image: {
  36232. source: "./media/characters/argon/front.svg",
  36233. extra: 2009/1935,
  36234. bottom: 118/2127
  36235. }
  36236. },
  36237. back: {
  36238. height: math.unit(5 + 10/12, "feet"),
  36239. name: "Back",
  36240. image: {
  36241. source: "./media/characters/argon/back.svg",
  36242. extra: 2047/1992,
  36243. bottom: 20/2067
  36244. }
  36245. },
  36246. frontDressed: {
  36247. height: math.unit(5 + 10/12, "feet"),
  36248. name: "Front (Dressed)",
  36249. image: {
  36250. source: "./media/characters/argon/front-dressed.svg",
  36251. extra: 2009/1935,
  36252. bottom: 118/2127
  36253. }
  36254. },
  36255. },
  36256. [
  36257. {
  36258. name: "Normal",
  36259. height: math.unit(5 + 10/12, "feet"),
  36260. default: true
  36261. },
  36262. ]
  36263. ))
  36264. characterMakers.push(() => makeCharacter(
  36265. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36266. {
  36267. front: {
  36268. height: math.unit(8 + 6/12, "feet"),
  36269. weight: math.unit(1150, "lb"),
  36270. name: "Front",
  36271. image: {
  36272. source: "./media/characters/kichi/front.svg",
  36273. extra: 1267/1164,
  36274. bottom: 61/1328
  36275. }
  36276. },
  36277. back: {
  36278. height: math.unit(8 + 6/12, "feet"),
  36279. weight: math.unit(1150, "lb"),
  36280. name: "Back",
  36281. image: {
  36282. source: "./media/characters/kichi/back.svg",
  36283. extra: 1273/1166,
  36284. bottom: 33/1306
  36285. }
  36286. },
  36287. },
  36288. [
  36289. {
  36290. name: "Normal",
  36291. height: math.unit(8 + 6/12, "feet"),
  36292. default: true
  36293. },
  36294. ]
  36295. ))
  36296. characterMakers.push(() => makeCharacter(
  36297. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36298. {
  36299. front: {
  36300. height: math.unit(6, "feet"),
  36301. weight: math.unit(210, "lb"),
  36302. name: "Front",
  36303. image: {
  36304. source: "./media/characters/manetel-greyscale/front.svg",
  36305. extra: 350/312,
  36306. bottom: 8/358
  36307. }
  36308. },
  36309. },
  36310. [
  36311. {
  36312. name: "Micro",
  36313. height: math.unit(2, "inches")
  36314. },
  36315. {
  36316. name: "Normal",
  36317. height: math.unit(6, "feet"),
  36318. default: true
  36319. },
  36320. {
  36321. name: "Minimacro",
  36322. height: math.unit(17, "feet")
  36323. },
  36324. {
  36325. name: "Macro",
  36326. height: math.unit(117, "feet")
  36327. },
  36328. ]
  36329. ))
  36330. characterMakers.push(() => makeCharacter(
  36331. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36332. {
  36333. side: {
  36334. height: math.unit(5 + 1/12, "feet"),
  36335. weight: math.unit(418, "lb"),
  36336. name: "Side",
  36337. image: {
  36338. source: "./media/characters/softpurr/side.svg",
  36339. extra: 1993/1945,
  36340. bottom: 134/2127
  36341. }
  36342. },
  36343. front: {
  36344. height: math.unit(5 + 1/12, "feet"),
  36345. weight: math.unit(418, "lb"),
  36346. name: "Front",
  36347. image: {
  36348. source: "./media/characters/softpurr/front.svg",
  36349. extra: 1950/1856,
  36350. bottom: 174/2124
  36351. }
  36352. },
  36353. paw: {
  36354. height: math.unit(1, "feet"),
  36355. name: "Paw",
  36356. image: {
  36357. source: "./media/characters/softpurr/paw.svg"
  36358. }
  36359. },
  36360. },
  36361. [
  36362. {
  36363. name: "Normal",
  36364. height: math.unit(5 + 1/12, "feet"),
  36365. default: true
  36366. },
  36367. ]
  36368. ))
  36369. characterMakers.push(() => makeCharacter(
  36370. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36371. {
  36372. front: {
  36373. height: math.unit(260, "meters"),
  36374. name: "Front",
  36375. image: {
  36376. source: "./media/characters/anahita/front.svg",
  36377. extra: 665/635,
  36378. bottom: 89/754
  36379. }
  36380. },
  36381. },
  36382. [
  36383. {
  36384. name: "Macro",
  36385. height: math.unit(260, "meters"),
  36386. default: true
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36392. {
  36393. front: {
  36394. height: math.unit(4 + 10/12, "feet"),
  36395. weight: math.unit(160, "lb"),
  36396. name: "Front",
  36397. image: {
  36398. source: "./media/characters/chip-mouse/front.svg",
  36399. extra: 3528/3408,
  36400. bottom: 0/3528
  36401. }
  36402. },
  36403. frontNsfw: {
  36404. height: math.unit(4 + 10/12, "feet"),
  36405. weight: math.unit(160, "lb"),
  36406. name: "Front (NSFW)",
  36407. image: {
  36408. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36409. extra: 3528/3408,
  36410. bottom: 0/3528
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(4 + 10/12, "feet"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36424. {
  36425. side: {
  36426. height: math.unit(10, "feet"),
  36427. weight: math.unit(14000, "lb"),
  36428. name: "Side",
  36429. image: {
  36430. source: "./media/characters/kremm/side.svg",
  36431. extra: 1390/1053,
  36432. bottom: 90/1480
  36433. }
  36434. },
  36435. gut: {
  36436. height: math.unit(5.8, "feet"),
  36437. name: "Gut",
  36438. image: {
  36439. source: "./media/characters/kremm/gut.svg"
  36440. }
  36441. },
  36442. ass: {
  36443. height: math.unit(6.1, "feet"),
  36444. name: "Ass",
  36445. image: {
  36446. source: "./media/characters/kremm/ass.svg"
  36447. }
  36448. },
  36449. jaws: {
  36450. height: math.unit(2.2, "feet"),
  36451. name: "Jaws",
  36452. image: {
  36453. source: "./media/characters/kremm/jaws.svg"
  36454. }
  36455. },
  36456. dick: {
  36457. height: math.unit(4.26, "feet"),
  36458. name: "Dick",
  36459. image: {
  36460. source: "./media/characters/kremm/dick.svg"
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Normal",
  36467. height: math.unit(10, "feet"),
  36468. default: true
  36469. },
  36470. ]
  36471. ))
  36472. characterMakers.push(() => makeCharacter(
  36473. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36474. {
  36475. front: {
  36476. height: math.unit(30, "stories"),
  36477. name: "Front",
  36478. image: {
  36479. source: "./media/characters/kai/front.svg",
  36480. extra: 1892/1718,
  36481. bottom: 162/2054
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Macro",
  36488. height: math.unit(30, "stories"),
  36489. default: true
  36490. },
  36491. ]
  36492. ))
  36493. characterMakers.push(() => makeCharacter(
  36494. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36495. {
  36496. front: {
  36497. height: math.unit(6 + 4/12, "feet"),
  36498. weight: math.unit(145, "lb"),
  36499. name: "Front",
  36500. image: {
  36501. source: "./media/characters/sykes/front.svg",
  36502. extra: 1321 / 1187,
  36503. bottom: 66 / 1387
  36504. }
  36505. },
  36506. back: {
  36507. height: math.unit(6 + 4/12, "feet"),
  36508. weight: math.unit(145, "lb"),
  36509. name: "Back",
  36510. image: {
  36511. source: "./media/characters/sykes/back.svg",
  36512. extra: 1326/1181,
  36513. bottom: 31/1357
  36514. }
  36515. },
  36516. traditionalOutfit: {
  36517. height: math.unit(6 + 4/12, "feet"),
  36518. weight: math.unit(145, "lb"),
  36519. name: "Traditional Outfit",
  36520. image: {
  36521. source: "./media/characters/sykes/traditional-outfit.svg",
  36522. extra: 1321 / 1187,
  36523. bottom: 66 / 1387
  36524. }
  36525. },
  36526. adventureOutfit: {
  36527. height: math.unit(6 + 4/12, "feet"),
  36528. weight: math.unit(145, "lb"),
  36529. name: "Adventure Outfit",
  36530. image: {
  36531. source: "./media/characters/sykes/adventure-outfit.svg",
  36532. extra: 1321 / 1187,
  36533. bottom: 66 / 1387
  36534. }
  36535. },
  36536. handLeft: {
  36537. height: math.unit(0.9, "feet"),
  36538. name: "Hand (Left)",
  36539. image: {
  36540. source: "./media/characters/sykes/hand-left.svg"
  36541. }
  36542. },
  36543. handRight: {
  36544. height: math.unit(0.839, "feet"),
  36545. name: "Hand (Right)",
  36546. image: {
  36547. source: "./media/characters/sykes/hand-right.svg"
  36548. }
  36549. },
  36550. leftFoot: {
  36551. height: math.unit(1.2, "feet"),
  36552. name: "Foot (Left)",
  36553. image: {
  36554. source: "./media/characters/sykes/foot-left.svg"
  36555. }
  36556. },
  36557. rightFoot: {
  36558. height: math.unit(1.2, "feet"),
  36559. name: "Foot (Right)",
  36560. image: {
  36561. source: "./media/characters/sykes/foot-right.svg"
  36562. }
  36563. },
  36564. maw: {
  36565. height: math.unit(1.93, "feet"),
  36566. name: "Maw",
  36567. image: {
  36568. source: "./media/characters/sykes/maw.svg"
  36569. }
  36570. },
  36571. teeth: {
  36572. height: math.unit(0.51, "feet"),
  36573. name: "Teeth",
  36574. image: {
  36575. source: "./media/characters/sykes/teeth.svg"
  36576. }
  36577. },
  36578. tongue: {
  36579. height: math.unit(2.13, "feet"),
  36580. name: "Tongue",
  36581. image: {
  36582. source: "./media/characters/sykes/tongue.svg"
  36583. }
  36584. },
  36585. uvula: {
  36586. height: math.unit(0.16, "feet"),
  36587. name: "Uvula",
  36588. image: {
  36589. source: "./media/characters/sykes/uvula.svg"
  36590. }
  36591. },
  36592. collar: {
  36593. height: math.unit(0.287, "feet"),
  36594. name: "Collar",
  36595. image: {
  36596. source: "./media/characters/sykes/collar.svg"
  36597. }
  36598. },
  36599. tail: {
  36600. height: math.unit(3.8, "feet"),
  36601. name: "Tail",
  36602. image: {
  36603. source: "./media/characters/sykes/tail.svg"
  36604. }
  36605. },
  36606. },
  36607. [
  36608. {
  36609. name: "Shrunken",
  36610. height: math.unit(5, "inches")
  36611. },
  36612. {
  36613. name: "Normal",
  36614. height: math.unit(6 + 4 / 12, "feet"),
  36615. default: true
  36616. },
  36617. {
  36618. name: "Big",
  36619. height: math.unit(15, "feet")
  36620. },
  36621. ]
  36622. ))
  36623. characterMakers.push(() => makeCharacter(
  36624. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36625. {
  36626. front: {
  36627. height: math.unit(5 + 8/12, "feet"),
  36628. weight: math.unit(190, "lb"),
  36629. name: "Front",
  36630. image: {
  36631. source: "./media/characters/oven-otter/front.svg",
  36632. extra: 1809/1740,
  36633. bottom: 181/1990
  36634. }
  36635. },
  36636. back: {
  36637. height: math.unit(5 + 8/12, "feet"),
  36638. weight: math.unit(190, "lb"),
  36639. name: "Back",
  36640. image: {
  36641. source: "./media/characters/oven-otter/back.svg",
  36642. extra: 1709/1635,
  36643. bottom: 118/1827
  36644. }
  36645. },
  36646. hand: {
  36647. height: math.unit(1.07, "feet"),
  36648. name: "Hand",
  36649. image: {
  36650. source: "./media/characters/oven-otter/hand.svg"
  36651. }
  36652. },
  36653. beans: {
  36654. height: math.unit(1.74, "feet"),
  36655. name: "Beans",
  36656. image: {
  36657. source: "./media/characters/oven-otter/beans.svg"
  36658. }
  36659. },
  36660. },
  36661. [
  36662. {
  36663. name: "Micro",
  36664. height: math.unit(0.5, "inches")
  36665. },
  36666. {
  36667. name: "Normal",
  36668. height: math.unit(5 + 8/12, "feet"),
  36669. default: true
  36670. },
  36671. {
  36672. name: "Macro",
  36673. height: math.unit(250, "feet")
  36674. },
  36675. {
  36676. name: "Really High",
  36677. height: math.unit(420, "feet")
  36678. },
  36679. ]
  36680. ))
  36681. characterMakers.push(() => makeCharacter(
  36682. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36683. {
  36684. front: {
  36685. height: math.unit(5, "meters"),
  36686. weight: math.unit(292000000000000, "kg"),
  36687. name: "Front",
  36688. image: {
  36689. source: "./media/characters/devourer/front.svg",
  36690. extra: 1800/1733,
  36691. bottom: 211/2011
  36692. }
  36693. },
  36694. maw: {
  36695. height: math.unit(1.1, "meter"),
  36696. name: "Maw",
  36697. image: {
  36698. source: "./media/characters/devourer/maw.svg"
  36699. }
  36700. },
  36701. },
  36702. [
  36703. {
  36704. name: "Small",
  36705. height: math.unit(3, "meters")
  36706. },
  36707. {
  36708. name: "Large",
  36709. height: math.unit(5, "meters"),
  36710. default: true
  36711. },
  36712. ]
  36713. ))
  36714. characterMakers.push(() => makeCharacter(
  36715. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36716. {
  36717. front: {
  36718. height: math.unit(6, "feet"),
  36719. weight: math.unit(400, "lb"),
  36720. name: "Front",
  36721. image: {
  36722. source: "./media/characters/ellarby/front.svg",
  36723. extra: 1909/1763,
  36724. bottom: 80/1989
  36725. }
  36726. },
  36727. back: {
  36728. height: math.unit(6, "feet"),
  36729. weight: math.unit(400, "lb"),
  36730. name: "Back",
  36731. image: {
  36732. source: "./media/characters/ellarby/back.svg",
  36733. extra: 1914/1784,
  36734. bottom: 172/2086
  36735. }
  36736. },
  36737. },
  36738. [
  36739. {
  36740. name: "Mischief",
  36741. height: math.unit(18, "inches")
  36742. },
  36743. {
  36744. name: "Trouble",
  36745. height: math.unit(12, "feet")
  36746. },
  36747. {
  36748. name: "Havoc",
  36749. height: math.unit(200, "feet"),
  36750. default: true
  36751. },
  36752. {
  36753. name: "Pandemonium",
  36754. height: math.unit(1, "mile")
  36755. },
  36756. {
  36757. name: "Catastrophe",
  36758. height: math.unit(100, "miles")
  36759. },
  36760. ]
  36761. ))
  36762. characterMakers.push(() => makeCharacter(
  36763. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36764. {
  36765. front: {
  36766. height: math.unit(4.7, "meters"),
  36767. weight: math.unit(6500, "kg"),
  36768. name: "Front",
  36769. image: {
  36770. source: "./media/characters/vex/front.svg",
  36771. extra: 1288/1140,
  36772. bottom: 100/1388
  36773. }
  36774. },
  36775. },
  36776. [
  36777. {
  36778. name: "Normal",
  36779. height: math.unit(4.7, "meters"),
  36780. default: true
  36781. },
  36782. ]
  36783. ))
  36784. characterMakers.push(() => makeCharacter(
  36785. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36786. {
  36787. normal: {
  36788. height: math.unit(6, "feet"),
  36789. weight: math.unit(350, "lb"),
  36790. name: "Normal",
  36791. image: {
  36792. source: "./media/characters/teshy/normal.svg",
  36793. extra: 1795/1735,
  36794. bottom: 16/1811
  36795. }
  36796. },
  36797. monsterFront: {
  36798. height: math.unit(12, "feet"),
  36799. weight: math.unit(4700, "lb"),
  36800. name: "Monster (Front)",
  36801. image: {
  36802. source: "./media/characters/teshy/monster-front.svg",
  36803. extra: 2042/2034,
  36804. bottom: 128/2170
  36805. }
  36806. },
  36807. monsterSide: {
  36808. height: math.unit(12, "feet"),
  36809. weight: math.unit(4700, "lb"),
  36810. name: "Monster (Side)",
  36811. image: {
  36812. source: "./media/characters/teshy/monster-side.svg",
  36813. extra: 2067/2056,
  36814. bottom: 70/2137
  36815. }
  36816. },
  36817. monsterBack: {
  36818. height: math.unit(12, "feet"),
  36819. weight: math.unit(4700, "lb"),
  36820. name: "Monster (Back)",
  36821. image: {
  36822. source: "./media/characters/teshy/monster-back.svg",
  36823. extra: 1921/1914,
  36824. bottom: 171/2092
  36825. }
  36826. },
  36827. },
  36828. [
  36829. {
  36830. name: "Normal",
  36831. height: math.unit(6, "feet"),
  36832. default: true
  36833. },
  36834. ]
  36835. ))
  36836. characterMakers.push(() => makeCharacter(
  36837. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36838. {
  36839. front: {
  36840. height: math.unit(6, "feet"),
  36841. name: "Front",
  36842. image: {
  36843. source: "./media/characters/ramey/front.svg",
  36844. extra: 790/787,
  36845. bottom: 27/817
  36846. }
  36847. },
  36848. },
  36849. [
  36850. {
  36851. name: "Normal",
  36852. height: math.unit(6, "feet"),
  36853. default: true
  36854. },
  36855. ]
  36856. ))
  36857. characterMakers.push(() => makeCharacter(
  36858. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36859. {
  36860. front: {
  36861. height: math.unit(5 + 5/12, "feet"),
  36862. weight: math.unit(120, "lb"),
  36863. name: "Front",
  36864. image: {
  36865. source: "./media/characters/phirae/front.svg",
  36866. extra: 2491/2436,
  36867. bottom: 38/2529
  36868. }
  36869. },
  36870. },
  36871. [
  36872. {
  36873. name: "Normal",
  36874. height: math.unit(5 + 5/12, "feet"),
  36875. default: true
  36876. },
  36877. ]
  36878. ))
  36879. characterMakers.push(() => makeCharacter(
  36880. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36881. {
  36882. front: {
  36883. height: math.unit(5 + 3/12, "feet"),
  36884. name: "Front",
  36885. image: {
  36886. source: "./media/characters/stagglas/front.svg",
  36887. extra: 962/882,
  36888. bottom: 53/1015
  36889. }
  36890. },
  36891. feral: {
  36892. height: math.unit(335, "cm"),
  36893. name: "Feral",
  36894. image: {
  36895. source: "./media/characters/stagglas/feral.svg",
  36896. extra: 1732/1090,
  36897. bottom: 48/1780
  36898. }
  36899. },
  36900. },
  36901. [
  36902. {
  36903. name: "Normal",
  36904. height: math.unit(5 + 3/12, "feet"),
  36905. default: true
  36906. },
  36907. ]
  36908. ))
  36909. characterMakers.push(() => makeCharacter(
  36910. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36911. {
  36912. front: {
  36913. height: math.unit(5 + 4/12, "feet"),
  36914. weight: math.unit(145, "lb"),
  36915. name: "Front",
  36916. image: {
  36917. source: "./media/characters/starra/front.svg",
  36918. extra: 1790/1691,
  36919. bottom: 91/1881
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Normal",
  36926. height: math.unit(5 + 4/12, "feet"),
  36927. default: true
  36928. },
  36929. ]
  36930. ))
  36931. characterMakers.push(() => makeCharacter(
  36932. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36933. {
  36934. front: {
  36935. height: math.unit(3.5, "meters"),
  36936. name: "Front",
  36937. image: {
  36938. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36939. extra: 1248/972,
  36940. bottom: 38/1286
  36941. }
  36942. },
  36943. },
  36944. [
  36945. {
  36946. name: "Normal",
  36947. height: math.unit(3.5, "meters"),
  36948. default: true
  36949. },
  36950. ]
  36951. ))
  36952. characterMakers.push(() => makeCharacter(
  36953. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36954. {
  36955. side: {
  36956. height: math.unit(8 + 2/12, "feet"),
  36957. weight: math.unit(1240, "lb"),
  36958. name: "Side",
  36959. image: {
  36960. source: "./media/characters/mika-valentine/side.svg",
  36961. extra: 2670/2501,
  36962. bottom: 250/2920
  36963. }
  36964. },
  36965. },
  36966. [
  36967. {
  36968. name: "Normal",
  36969. height: math.unit(8 + 2/12, "feet"),
  36970. default: true
  36971. },
  36972. ]
  36973. ))
  36974. characterMakers.push(() => makeCharacter(
  36975. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36976. {
  36977. front: {
  36978. height: math.unit(7 + 2/12, "feet"),
  36979. name: "Front",
  36980. image: {
  36981. source: "./media/characters/xoltol/front.svg",
  36982. extra: 2212/2124,
  36983. bottom: 84/2296
  36984. }
  36985. },
  36986. side: {
  36987. height: math.unit(7 + 2/12, "feet"),
  36988. name: "Side",
  36989. image: {
  36990. source: "./media/characters/xoltol/side.svg",
  36991. extra: 2273/2197,
  36992. bottom: 26/2299
  36993. }
  36994. },
  36995. hand: {
  36996. height: math.unit(2.5, "feet"),
  36997. name: "Hand",
  36998. image: {
  36999. source: "./media/characters/xoltol/hand.svg"
  37000. }
  37001. },
  37002. },
  37003. [
  37004. {
  37005. name: "Small-ish",
  37006. height: math.unit(5 + 11/12, "feet")
  37007. },
  37008. {
  37009. name: "Normal",
  37010. height: math.unit(7 + 2/12, "feet")
  37011. },
  37012. {
  37013. name: "\"Macro\"",
  37014. height: math.unit(14 + 9/12, "feet"),
  37015. default: true
  37016. },
  37017. {
  37018. name: "Alternate Height",
  37019. height: math.unit(20, "feet")
  37020. },
  37021. {
  37022. name: "Actually Macro",
  37023. height: math.unit(100, "feet")
  37024. },
  37025. ]
  37026. ))
  37027. characterMakers.push(() => makeCharacter(
  37028. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37029. {
  37030. front: {
  37031. height: math.unit(5 + 2/12, "feet"),
  37032. weight: math.unit(75, "kg"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/kotetsu-redwood/front.svg",
  37036. extra: 1053/942,
  37037. bottom: 60/1113
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Normal",
  37044. height: math.unit(5 + 2/12, "feet"),
  37045. default: true
  37046. },
  37047. ]
  37048. ))
  37049. characterMakers.push(() => makeCharacter(
  37050. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37051. {
  37052. front: {
  37053. height: math.unit(2.4, "meters"),
  37054. weight: math.unit(125, "kg"),
  37055. name: "Front",
  37056. image: {
  37057. source: "./media/characters/lilith/front.svg",
  37058. extra: 1590/1513,
  37059. bottom: 203/1793
  37060. }
  37061. },
  37062. },
  37063. [
  37064. {
  37065. name: "Humanoid",
  37066. height: math.unit(2.4, "meters")
  37067. },
  37068. {
  37069. name: "Normal",
  37070. height: math.unit(6, "meters"),
  37071. default: true
  37072. },
  37073. {
  37074. name: "Largest",
  37075. height: math.unit(55, "meters")
  37076. },
  37077. ]
  37078. ))
  37079. characterMakers.push(() => makeCharacter(
  37080. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37081. {
  37082. front: {
  37083. height: math.unit(8 + 4/12, "feet"),
  37084. weight: math.unit(535, "lb"),
  37085. name: "Front",
  37086. image: {
  37087. source: "./media/characters/beh'kah-bolger/front.svg",
  37088. extra: 1660/1603,
  37089. bottom: 37/1697
  37090. }
  37091. },
  37092. },
  37093. [
  37094. {
  37095. name: "Normal",
  37096. height: math.unit(8 + 4/12, "feet"),
  37097. default: true
  37098. },
  37099. {
  37100. name: "Kaiju",
  37101. height: math.unit(250, "feet")
  37102. },
  37103. {
  37104. name: "Still Growing",
  37105. height: math.unit(10, "miles")
  37106. },
  37107. {
  37108. name: "Continental",
  37109. height: math.unit(5000, "miles")
  37110. },
  37111. {
  37112. name: "Final Form",
  37113. height: math.unit(2500000, "miles")
  37114. },
  37115. ]
  37116. ))
  37117. characterMakers.push(() => makeCharacter(
  37118. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37119. {
  37120. front: {
  37121. height: math.unit(7 + 2/12, "feet"),
  37122. weight: math.unit(230, "kg"),
  37123. name: "Front",
  37124. image: {
  37125. source: "./media/characters/tatyana-milewska/front.svg",
  37126. extra: 1199/1150,
  37127. bottom: 86/1285
  37128. }
  37129. },
  37130. },
  37131. [
  37132. {
  37133. name: "Normal",
  37134. height: math.unit(7 + 2/12, "feet"),
  37135. default: true
  37136. },
  37137. {
  37138. name: "Big",
  37139. height: math.unit(12, "feet")
  37140. },
  37141. {
  37142. name: "Minimacro",
  37143. height: math.unit(20, "feet")
  37144. },
  37145. {
  37146. name: "Macro",
  37147. height: math.unit(120, "feet")
  37148. },
  37149. ]
  37150. ))
  37151. characterMakers.push(() => makeCharacter(
  37152. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37153. {
  37154. front: {
  37155. height: math.unit(7 + 8/12, "feet"),
  37156. weight: math.unit(152, "kg"),
  37157. name: "Front",
  37158. image: {
  37159. source: "./media/characters/helen-arri/front.svg",
  37160. extra: 440/423,
  37161. bottom: 14/454
  37162. }
  37163. },
  37164. back: {
  37165. height: math.unit(7 + 8/12, "feet"),
  37166. weight: math.unit(152, "kg"),
  37167. name: "Back",
  37168. image: {
  37169. source: "./media/characters/helen-arri/back.svg",
  37170. extra: 443/426,
  37171. bottom: 8/451
  37172. }
  37173. },
  37174. },
  37175. [
  37176. {
  37177. name: "Normal",
  37178. height: math.unit(7 + 8/12, "feet"),
  37179. default: true
  37180. },
  37181. {
  37182. name: "Big",
  37183. height: math.unit(14, "feet")
  37184. },
  37185. {
  37186. name: "Minimacro",
  37187. height: math.unit(24, "feet")
  37188. },
  37189. {
  37190. name: "Macro",
  37191. height: math.unit(140, "feet")
  37192. },
  37193. ]
  37194. ))
  37195. characterMakers.push(() => makeCharacter(
  37196. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37197. {
  37198. front: {
  37199. height: math.unit(6, "meters"),
  37200. name: "Front",
  37201. image: {
  37202. source: "./media/characters/ehanu-rehu/front.svg",
  37203. extra: 1800/1800,
  37204. bottom: 59/1859
  37205. }
  37206. },
  37207. },
  37208. [
  37209. {
  37210. name: "Normal",
  37211. height: math.unit(6, "meters"),
  37212. default: true
  37213. },
  37214. ]
  37215. ))
  37216. characterMakers.push(() => makeCharacter(
  37217. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37218. {
  37219. front: {
  37220. height: math.unit(7 + 3/12, "feet"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/renholder/front.svg",
  37224. extra: 3096/2960,
  37225. bottom: 250/3346
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal Bat",
  37232. height: math.unit(7 + 3/12, "feet"),
  37233. default: true
  37234. },
  37235. {
  37236. name: "Slightly Tall Bat",
  37237. height: math.unit(100, "feet")
  37238. },
  37239. {
  37240. name: "Big Bat",
  37241. height: math.unit(1000, "feet")
  37242. },
  37243. {
  37244. name: "City-Sized Bat",
  37245. height: math.unit(200000, "feet")
  37246. },
  37247. {
  37248. name: "Bigger Bat",
  37249. height: math.unit(10000, "miles")
  37250. },
  37251. {
  37252. name: "Solar Sized Bat",
  37253. height: math.unit(100, "AU")
  37254. },
  37255. {
  37256. name: "Galactic Bat",
  37257. height: math.unit(200000, "lightyears")
  37258. },
  37259. {
  37260. name: "Universally Known Bat",
  37261. height: math.unit(1, "universe")
  37262. },
  37263. ]
  37264. ))
  37265. characterMakers.push(() => makeCharacter(
  37266. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37267. {
  37268. front: {
  37269. height: math.unit(6 + 11/12, "feet"),
  37270. weight: math.unit(250, "lb"),
  37271. name: "Front",
  37272. image: {
  37273. source: "./media/characters/cookiecat/front.svg",
  37274. extra: 893/827,
  37275. bottom: 14/907
  37276. }
  37277. },
  37278. },
  37279. [
  37280. {
  37281. name: "Micro",
  37282. height: math.unit(3, "inches")
  37283. },
  37284. {
  37285. name: "Normal",
  37286. height: math.unit(6 + 11/12, "feet"),
  37287. default: true
  37288. },
  37289. {
  37290. name: "Macro",
  37291. height: math.unit(100, "feet")
  37292. },
  37293. {
  37294. name: "Macro+",
  37295. height: math.unit(404, "feet")
  37296. },
  37297. {
  37298. name: "Megamacro",
  37299. height: math.unit(165, "miles")
  37300. },
  37301. {
  37302. name: "Planetary",
  37303. height: math.unit(4600, "miles")
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37309. {
  37310. front: {
  37311. height: math.unit(10 + 3/12, "feet"),
  37312. weight: math.unit(1500, "lb"),
  37313. name: "Front",
  37314. image: {
  37315. source: "./media/characters/tux-kusanagi/front.svg",
  37316. extra: 944/840,
  37317. bottom: 39/983
  37318. }
  37319. },
  37320. back: {
  37321. height: math.unit(10 + 3/12, "feet"),
  37322. weight: math.unit(1500, "lb"),
  37323. name: "Back",
  37324. image: {
  37325. source: "./media/characters/tux-kusanagi/back.svg",
  37326. extra: 941/842,
  37327. bottom: 28/969
  37328. }
  37329. },
  37330. rump: {
  37331. height: math.unit(5.25, "feet"),
  37332. name: "Rump",
  37333. image: {
  37334. source: "./media/characters/tux-kusanagi/rump.svg"
  37335. }
  37336. },
  37337. beak: {
  37338. height: math.unit(1.54, "feet"),
  37339. name: "Beak",
  37340. image: {
  37341. source: "./media/characters/tux-kusanagi/beak.svg"
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(10 + 3/12, "feet"),
  37349. default: true
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37355. {
  37356. front: {
  37357. height: math.unit(58, "feet"),
  37358. weight: math.unit(200, "tons"),
  37359. name: "Front",
  37360. image: {
  37361. source: "./media/characters/uzarmazari/front.svg",
  37362. extra: 1575/1455,
  37363. bottom: 152/1727
  37364. }
  37365. },
  37366. back: {
  37367. height: math.unit(58, "feet"),
  37368. weight: math.unit(200, "tons"),
  37369. name: "Back",
  37370. image: {
  37371. source: "./media/characters/uzarmazari/back.svg",
  37372. extra: 1585/1510,
  37373. bottom: 157/1742
  37374. }
  37375. },
  37376. head: {
  37377. height: math.unit(26, "feet"),
  37378. name: "Head",
  37379. image: {
  37380. source: "./media/characters/uzarmazari/head.svg"
  37381. }
  37382. },
  37383. },
  37384. [
  37385. {
  37386. name: "Normal",
  37387. height: math.unit(58, "feet"),
  37388. default: true
  37389. },
  37390. ]
  37391. ))
  37392. characterMakers.push(() => makeCharacter(
  37393. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37394. {
  37395. side: {
  37396. height: math.unit(15, "feet"),
  37397. name: "Side",
  37398. image: {
  37399. source: "./media/characters/akitu/side.svg",
  37400. extra: 1421/1321,
  37401. bottom: 157/1578
  37402. }
  37403. },
  37404. front: {
  37405. height: math.unit(15, "feet"),
  37406. name: "Front",
  37407. image: {
  37408. source: "./media/characters/akitu/front.svg",
  37409. extra: 1435/1326,
  37410. bottom: 232/1667
  37411. }
  37412. },
  37413. },
  37414. [
  37415. {
  37416. name: "Normal",
  37417. height: math.unit(15, "feet"),
  37418. default: true
  37419. },
  37420. ]
  37421. ))
  37422. characterMakers.push(() => makeCharacter(
  37423. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37424. {
  37425. front: {
  37426. height: math.unit(10 + 8/12, "feet"),
  37427. name: "Front",
  37428. image: {
  37429. source: "./media/characters/azalie-croixland/front.svg",
  37430. extra: 1972/1856,
  37431. bottom: 31/2003
  37432. }
  37433. },
  37434. },
  37435. [
  37436. {
  37437. name: "Original Height",
  37438. height: math.unit(5 + 4/12, "feet")
  37439. },
  37440. {
  37441. name: "Normal Height",
  37442. height: math.unit(10 + 8/12, "feet"),
  37443. default: true
  37444. },
  37445. ]
  37446. ))
  37447. characterMakers.push(() => makeCharacter(
  37448. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37449. {
  37450. side: {
  37451. height: math.unit(7 + 1/12, "feet"),
  37452. weight: math.unit(245, "lb"),
  37453. name: "Side",
  37454. image: {
  37455. source: "./media/characters/kavus-kazian/side.svg",
  37456. extra: 349/342,
  37457. bottom: 15/364
  37458. }
  37459. },
  37460. },
  37461. [
  37462. {
  37463. name: "Normal",
  37464. height: math.unit(7 + 1/12, "feet"),
  37465. default: true
  37466. },
  37467. ]
  37468. ))
  37469. characterMakers.push(() => makeCharacter(
  37470. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37471. {
  37472. normalFront: {
  37473. height: math.unit(5 + 11/12, "feet"),
  37474. name: "Front",
  37475. image: {
  37476. source: "./media/characters/moonlight-rose/normal-front.svg",
  37477. extra: 1980/1825,
  37478. bottom: 18/1998
  37479. },
  37480. form: "normal",
  37481. default: true
  37482. },
  37483. normalBack: {
  37484. height: math.unit(5 + 11/12, "feet"),
  37485. name: "Back",
  37486. image: {
  37487. source: "./media/characters/moonlight-rose/normal-back.svg",
  37488. extra: 2010/1839,
  37489. bottom: 10/2020
  37490. },
  37491. form: "normal"
  37492. },
  37493. demonFront: {
  37494. height: math.unit(1.5, "earths"),
  37495. name: "Front",
  37496. image: {
  37497. source: "./media/characters/moonlight-rose/demon.svg",
  37498. extra: 1400/1294,
  37499. bottom: 45/1445
  37500. },
  37501. form: "demon",
  37502. default: true
  37503. },
  37504. terraFront: {
  37505. height: math.unit(1.5, "earths"),
  37506. name: "Front",
  37507. image: {
  37508. source: "./media/characters/moonlight-rose/terra.svg"
  37509. },
  37510. form: "terra",
  37511. default: true
  37512. },
  37513. jupiterFront: {
  37514. height: math.unit(69911*2, "km"),
  37515. name: "Front",
  37516. image: {
  37517. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37518. extra: 1367/1286,
  37519. bottom: 55/1422
  37520. },
  37521. form: "jupiter",
  37522. default: true
  37523. },
  37524. neptuneFront: {
  37525. height: math.unit(24622*2, "feet"),
  37526. name: "Front",
  37527. image: {
  37528. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37529. extra: 1851/1712,
  37530. bottom: 0/1851
  37531. },
  37532. form: "neptune",
  37533. default: true
  37534. },
  37535. },
  37536. [
  37537. {
  37538. name: "\"Natural\" Height",
  37539. height: math.unit(5 + 11/12, "feet"),
  37540. form: "normal"
  37541. },
  37542. {
  37543. name: "Smallest comfortable size",
  37544. height: math.unit(40, "meters"),
  37545. form: "normal"
  37546. },
  37547. {
  37548. name: "Common size",
  37549. height: math.unit(50, "km"),
  37550. form: "normal",
  37551. default: true
  37552. },
  37553. {
  37554. name: "Normal",
  37555. height: math.unit(1.5, "earths"),
  37556. form: "demon",
  37557. default: true
  37558. },
  37559. {
  37560. name: "Universal",
  37561. height: math.unit(15, "universes"),
  37562. form: "demon"
  37563. },
  37564. {
  37565. name: "Earth",
  37566. height: math.unit(1.5, "earths"),
  37567. form: "terra",
  37568. default: true
  37569. },
  37570. {
  37571. name: "Super Earth",
  37572. height: math.unit(67.5, "earths"),
  37573. form: "terra"
  37574. },
  37575. {
  37576. name: "Doesn't fit in a solar system...",
  37577. height: math.unit(1, "galaxy"),
  37578. form: "terra"
  37579. },
  37580. {
  37581. name: "Saturn",
  37582. height: math.unit(58232*2, "km"),
  37583. form: "jupiter"
  37584. },
  37585. {
  37586. name: "Jupiter",
  37587. height: math.unit(69911*2, "km"),
  37588. form: "jupiter",
  37589. default: true
  37590. },
  37591. {
  37592. name: "HD 100546 b",
  37593. height: math.unit(482938, "km"),
  37594. form: "jupiter"
  37595. },
  37596. {
  37597. name: "Enceladus",
  37598. height: math.unit(513*2, "km"),
  37599. form: "neptune"
  37600. },
  37601. {
  37602. name: "Europe",
  37603. height: math.unit(1560*2, "km"),
  37604. form: "neptune"
  37605. },
  37606. {
  37607. name: "Neptune",
  37608. height: math.unit(24622*2, "km"),
  37609. form: "neptune",
  37610. default: true
  37611. },
  37612. {
  37613. name: "CoRoT-9b",
  37614. height: math.unit(75067*2, "km"),
  37615. form: "neptune"
  37616. },
  37617. ],
  37618. {
  37619. "normal": {
  37620. name: "Normal",
  37621. default: true
  37622. },
  37623. "demon": {
  37624. name: "Demon"
  37625. },
  37626. "terra": {
  37627. name: "Terra"
  37628. },
  37629. "jupiter": {
  37630. name: "Jupiter"
  37631. },
  37632. "neptune": {
  37633. name: "Neptune"
  37634. }
  37635. }
  37636. ))
  37637. characterMakers.push(() => makeCharacter(
  37638. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37639. {
  37640. front: {
  37641. height: math.unit(16, "feet"),
  37642. weight: math.unit(610, "kg"),
  37643. name: "Front",
  37644. image: {
  37645. source: "./media/characters/huckle/front.svg",
  37646. extra: 1731/1625,
  37647. bottom: 33/1764
  37648. }
  37649. },
  37650. back: {
  37651. height: math.unit(16, "feet"),
  37652. weight: math.unit(610, "kg"),
  37653. name: "Back",
  37654. image: {
  37655. source: "./media/characters/huckle/back.svg",
  37656. extra: 1738/1651,
  37657. bottom: 37/1775
  37658. }
  37659. },
  37660. laughing: {
  37661. height: math.unit(3.75, "feet"),
  37662. name: "Laughing",
  37663. image: {
  37664. source: "./media/characters/huckle/laughing.svg"
  37665. }
  37666. },
  37667. angry: {
  37668. height: math.unit(4.15, "feet"),
  37669. name: "Angry",
  37670. image: {
  37671. source: "./media/characters/huckle/angry.svg"
  37672. }
  37673. },
  37674. },
  37675. [
  37676. {
  37677. name: "Normal",
  37678. height: math.unit(16, "feet"),
  37679. default: true
  37680. },
  37681. {
  37682. name: "Mini Macro",
  37683. height: math.unit(463, "feet")
  37684. },
  37685. {
  37686. name: "Macro",
  37687. height: math.unit(1680, "meters")
  37688. },
  37689. {
  37690. name: "Mega Macro",
  37691. height: math.unit(175, "km")
  37692. },
  37693. {
  37694. name: "Terra Macro",
  37695. height: math.unit(32, "gigameters")
  37696. },
  37697. {
  37698. name: "Multiverse+",
  37699. height: math.unit(2.56e23, "yottameters")
  37700. },
  37701. ]
  37702. ))
  37703. characterMakers.push(() => makeCharacter(
  37704. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37705. {
  37706. front: {
  37707. height: math.unit(6 + 9/12, "feet"),
  37708. weight: math.unit(280, "lb"),
  37709. name: "Front",
  37710. image: {
  37711. source: "./media/characters/candy/front.svg",
  37712. extra: 234/217,
  37713. bottom: 11/245
  37714. }
  37715. },
  37716. },
  37717. [
  37718. {
  37719. name: "Really Small",
  37720. height: math.unit(0.1, "nm")
  37721. },
  37722. {
  37723. name: "Micro",
  37724. height: math.unit(2, "inches")
  37725. },
  37726. {
  37727. name: "Normal",
  37728. height: math.unit(6 + 9/12, "feet"),
  37729. default: true
  37730. },
  37731. {
  37732. name: "Small Macro",
  37733. height: math.unit(69, "feet")
  37734. },
  37735. {
  37736. name: "Macro",
  37737. height: math.unit(160, "feet")
  37738. },
  37739. {
  37740. name: "Megamacro",
  37741. height: math.unit(22000, "miles")
  37742. },
  37743. {
  37744. name: "Gigamacro",
  37745. height: math.unit(50000, "miles")
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(4, "feet"),
  37754. weight: math.unit(90, "lb"),
  37755. name: "Front",
  37756. image: {
  37757. source: "./media/characters/joey-mcdonald/front.svg",
  37758. extra: 1059/852,
  37759. bottom: 33/1092
  37760. }
  37761. },
  37762. back: {
  37763. height: math.unit(4, "feet"),
  37764. weight: math.unit(90, "lb"),
  37765. name: "Back",
  37766. image: {
  37767. source: "./media/characters/joey-mcdonald/back.svg",
  37768. extra: 1077/879,
  37769. bottom: 5/1082
  37770. }
  37771. },
  37772. frontKobold: {
  37773. height: math.unit(4, "feet"),
  37774. weight: math.unit(100, "lb"),
  37775. name: "Front-kobold",
  37776. image: {
  37777. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37778. extra: 1480/1367,
  37779. bottom: 0/1480
  37780. }
  37781. },
  37782. backKobold: {
  37783. height: math.unit(4, "feet"),
  37784. weight: math.unit(100, "lb"),
  37785. name: "Back-kobold",
  37786. image: {
  37787. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37788. extra: 1449/1361,
  37789. bottom: 0/1449
  37790. }
  37791. },
  37792. },
  37793. [
  37794. {
  37795. name: "Normal",
  37796. height: math.unit(4, "feet"),
  37797. default: true
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37803. {
  37804. front: {
  37805. height: math.unit(12 + 6/12, "feet"),
  37806. name: "Front",
  37807. image: {
  37808. source: "./media/characters/kass-lockheed/front.svg",
  37809. extra: 354/343,
  37810. bottom: 9/363
  37811. }
  37812. },
  37813. back: {
  37814. height: math.unit(12 + 6/12, "feet"),
  37815. name: "Back",
  37816. image: {
  37817. source: "./media/characters/kass-lockheed/back.svg",
  37818. extra: 364/352,
  37819. bottom: 3/367
  37820. }
  37821. },
  37822. dick: {
  37823. height: math.unit(3.12, "feet"),
  37824. name: "Dick",
  37825. image: {
  37826. source: "./media/characters/kass-lockheed/dick.svg"
  37827. }
  37828. },
  37829. head: {
  37830. height: math.unit(2.6, "feet"),
  37831. name: "Head",
  37832. image: {
  37833. source: "./media/characters/kass-lockheed/head.svg"
  37834. }
  37835. },
  37836. bleh: {
  37837. height: math.unit(2.85, "feet"),
  37838. name: "Bleh",
  37839. image: {
  37840. source: "./media/characters/kass-lockheed/bleh.svg"
  37841. }
  37842. },
  37843. smug: {
  37844. height: math.unit(2.85, "feet"),
  37845. name: "Smug",
  37846. image: {
  37847. source: "./media/characters/kass-lockheed/smug.svg"
  37848. }
  37849. },
  37850. },
  37851. [
  37852. {
  37853. name: "Normal",
  37854. height: math.unit(12 + 6/12, "feet"),
  37855. default: true
  37856. },
  37857. ]
  37858. ))
  37859. characterMakers.push(() => makeCharacter(
  37860. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37861. {
  37862. front: {
  37863. height: math.unit(6 + 2/12, "feet"),
  37864. name: "Front",
  37865. image: {
  37866. source: "./media/characters/taylor/front.svg",
  37867. extra: 639/495,
  37868. bottom: 12/651
  37869. }
  37870. },
  37871. },
  37872. [
  37873. {
  37874. name: "Normal",
  37875. height: math.unit(6 + 2/12, "feet"),
  37876. default: true
  37877. },
  37878. {
  37879. name: "Big",
  37880. height: math.unit(15, "feet")
  37881. },
  37882. {
  37883. name: "Lorg",
  37884. height: math.unit(80, "feet")
  37885. },
  37886. {
  37887. name: "Too Lorg",
  37888. height: math.unit(120, "feet")
  37889. },
  37890. ]
  37891. ))
  37892. characterMakers.push(() => makeCharacter(
  37893. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37894. {
  37895. front: {
  37896. height: math.unit(15, "feet"),
  37897. name: "Front",
  37898. image: {
  37899. source: "./media/characters/kaizer/front.svg",
  37900. extra: 1612/1436,
  37901. bottom: 43/1655
  37902. }
  37903. },
  37904. },
  37905. [
  37906. {
  37907. name: "Normal",
  37908. height: math.unit(15, "feet"),
  37909. default: true
  37910. },
  37911. ]
  37912. ))
  37913. characterMakers.push(() => makeCharacter(
  37914. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37915. {
  37916. front: {
  37917. height: math.unit(2, "feet"),
  37918. weight: math.unit(30, "lb"),
  37919. name: "Front",
  37920. image: {
  37921. source: "./media/characters/sandy/front.svg",
  37922. extra: 1439/1307,
  37923. bottom: 194/1633
  37924. }
  37925. },
  37926. },
  37927. [
  37928. {
  37929. name: "Normal",
  37930. height: math.unit(2, "feet"),
  37931. default: true
  37932. },
  37933. ]
  37934. ))
  37935. characterMakers.push(() => makeCharacter(
  37936. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37937. {
  37938. front: {
  37939. height: math.unit(3, "feet"),
  37940. name: "Front",
  37941. image: {
  37942. source: "./media/characters/mellvi/front.svg",
  37943. extra: 1831/1630,
  37944. bottom: 58/1889
  37945. }
  37946. },
  37947. },
  37948. [
  37949. {
  37950. name: "Normal",
  37951. height: math.unit(3, "feet"),
  37952. default: true
  37953. },
  37954. ]
  37955. ))
  37956. characterMakers.push(() => makeCharacter(
  37957. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37958. {
  37959. front: {
  37960. height: math.unit(5 + 11/12, "feet"),
  37961. weight: math.unit(200, "lb"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/shirou/front.svg",
  37965. extra: 2491/2383,
  37966. bottom: 189/2680
  37967. }
  37968. },
  37969. back: {
  37970. height: math.unit(5 + 11/12, "feet"),
  37971. weight: math.unit(200, "lb"),
  37972. name: "Back",
  37973. image: {
  37974. source: "./media/characters/shirou/back.svg",
  37975. extra: 2554/2450,
  37976. bottom: 76/2630
  37977. }
  37978. },
  37979. },
  37980. [
  37981. {
  37982. name: "Normal",
  37983. height: math.unit(5 + 11/12, "feet"),
  37984. default: true
  37985. },
  37986. ]
  37987. ))
  37988. characterMakers.push(() => makeCharacter(
  37989. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37990. {
  37991. front: {
  37992. height: math.unit(6 + 3/12, "feet"),
  37993. weight: math.unit(177, "lb"),
  37994. name: "Front",
  37995. image: {
  37996. source: "./media/characters/noryu/front.svg",
  37997. extra: 973/885,
  37998. bottom: 10/983
  37999. }
  38000. },
  38001. },
  38002. [
  38003. {
  38004. name: "Normal",
  38005. height: math.unit(6 + 3/12, "feet"),
  38006. default: true
  38007. },
  38008. ]
  38009. ))
  38010. characterMakers.push(() => makeCharacter(
  38011. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38012. {
  38013. front: {
  38014. height: math.unit(5 + 6/12, "feet"),
  38015. weight: math.unit(170, "lb"),
  38016. name: "Front",
  38017. image: {
  38018. source: "./media/characters/mevolas-rubenido/front.svg",
  38019. extra: 2109/1901,
  38020. bottom: 96/2205
  38021. }
  38022. },
  38023. },
  38024. [
  38025. {
  38026. name: "Normal",
  38027. height: math.unit(5 + 6/12, "feet"),
  38028. default: true
  38029. },
  38030. ]
  38031. ))
  38032. characterMakers.push(() => makeCharacter(
  38033. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38034. {
  38035. front: {
  38036. height: math.unit(100, "feet"),
  38037. name: "Front",
  38038. image: {
  38039. source: "./media/characters/dee/front.svg",
  38040. extra: 2153/2036,
  38041. bottom: 59/2212
  38042. }
  38043. },
  38044. back: {
  38045. height: math.unit(100, "feet"),
  38046. name: "Back",
  38047. image: {
  38048. source: "./media/characters/dee/back.svg",
  38049. extra: 2183/2058,
  38050. bottom: 75/2258
  38051. }
  38052. },
  38053. foot: {
  38054. height: math.unit(19.43, "feet"),
  38055. name: "Foot",
  38056. image: {
  38057. source: "./media/characters/dee/foot.svg"
  38058. }
  38059. },
  38060. hoof: {
  38061. height: math.unit(20.6, "feet"),
  38062. name: "Hoof",
  38063. image: {
  38064. source: "./media/characters/dee/hoof.svg"
  38065. }
  38066. },
  38067. },
  38068. [
  38069. {
  38070. name: "Macro",
  38071. height: math.unit(100, "feet"),
  38072. default: true
  38073. },
  38074. ]
  38075. ))
  38076. characterMakers.push(() => makeCharacter(
  38077. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38078. {
  38079. front: {
  38080. height: math.unit(5 + 6/12, "feet"),
  38081. name: "Front",
  38082. image: {
  38083. source: "./media/characters/teh/front.svg",
  38084. extra: 1002/847,
  38085. bottom: 62/1064
  38086. }
  38087. },
  38088. },
  38089. [
  38090. {
  38091. name: "Normal",
  38092. height: math.unit(5 + 6/12, "feet"),
  38093. default: true
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38099. {
  38100. side: {
  38101. height: math.unit(6 + 1/12, "feet"),
  38102. weight: math.unit(204, "lb"),
  38103. name: "Side",
  38104. image: {
  38105. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38106. extra: 974/775,
  38107. bottom: 169/1143
  38108. }
  38109. },
  38110. sitting: {
  38111. height: math.unit(6 + 2/12, "feet"),
  38112. weight: math.unit(204, "lb"),
  38113. name: "Sitting",
  38114. image: {
  38115. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38116. extra: 1175/964,
  38117. bottom: 378/1553
  38118. }
  38119. },
  38120. },
  38121. [
  38122. {
  38123. name: "Normal",
  38124. height: math.unit(6 + 1/12, "feet"),
  38125. default: true
  38126. },
  38127. ]
  38128. ))
  38129. characterMakers.push(() => makeCharacter(
  38130. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38131. {
  38132. front: {
  38133. height: math.unit(6, "inches"),
  38134. name: "Front",
  38135. image: {
  38136. source: "./media/characters/tululi/front.svg",
  38137. extra: 1997/1876,
  38138. bottom: 20/2017
  38139. }
  38140. },
  38141. },
  38142. [
  38143. {
  38144. name: "Normal",
  38145. height: math.unit(6, "inches"),
  38146. default: true
  38147. },
  38148. ]
  38149. ))
  38150. characterMakers.push(() => makeCharacter(
  38151. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38152. {
  38153. front: {
  38154. height: math.unit(4 + 1/12, "feet"),
  38155. name: "Front",
  38156. image: {
  38157. source: "./media/characters/star/front.svg",
  38158. extra: 1493/1189,
  38159. bottom: 48/1541
  38160. }
  38161. },
  38162. },
  38163. [
  38164. {
  38165. name: "Normal",
  38166. height: math.unit(4 + 1/12, "feet"),
  38167. default: true
  38168. },
  38169. ]
  38170. ))
  38171. characterMakers.push(() => makeCharacter(
  38172. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38173. {
  38174. front: {
  38175. height: math.unit(6 + 3/12, "feet"),
  38176. name: "Front",
  38177. image: {
  38178. source: "./media/characters/comet/front.svg",
  38179. extra: 1681/1462,
  38180. bottom: 26/1707
  38181. }
  38182. },
  38183. },
  38184. [
  38185. {
  38186. name: "Normal",
  38187. height: math.unit(6 + 3/12, "feet"),
  38188. default: true
  38189. },
  38190. ]
  38191. ))
  38192. characterMakers.push(() => makeCharacter(
  38193. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38194. {
  38195. front: {
  38196. height: math.unit(950, "feet"),
  38197. name: "Front",
  38198. image: {
  38199. source: "./media/characters/vortex/front.svg",
  38200. extra: 1497/1434,
  38201. bottom: 56/1553
  38202. }
  38203. },
  38204. maw: {
  38205. height: math.unit(285, "feet"),
  38206. name: "Maw",
  38207. image: {
  38208. source: "./media/characters/vortex/maw.svg"
  38209. }
  38210. },
  38211. },
  38212. [
  38213. {
  38214. name: "Macro",
  38215. height: math.unit(950, "feet"),
  38216. default: true
  38217. },
  38218. ]
  38219. ))
  38220. characterMakers.push(() => makeCharacter(
  38221. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38222. {
  38223. front: {
  38224. height: math.unit(600, "feet"),
  38225. weight: math.unit(0.02, "grams"),
  38226. name: "Front",
  38227. image: {
  38228. source: "./media/characters/doodle/front.svg",
  38229. extra: 1578/1413,
  38230. bottom: 37/1615
  38231. }
  38232. },
  38233. },
  38234. [
  38235. {
  38236. name: "Macro",
  38237. height: math.unit(600, "feet"),
  38238. default: true
  38239. },
  38240. ]
  38241. ))
  38242. characterMakers.push(() => makeCharacter(
  38243. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38244. {
  38245. front: {
  38246. height: math.unit(6 + 6/12, "feet"),
  38247. name: "Front",
  38248. image: {
  38249. source: "./media/characters/jai/front.svg",
  38250. extra: 1645/1534,
  38251. bottom: 115/1760
  38252. }
  38253. },
  38254. },
  38255. [
  38256. {
  38257. name: "Normal",
  38258. height: math.unit(6 + 6/12, "feet"),
  38259. default: true
  38260. },
  38261. ]
  38262. ))
  38263. characterMakers.push(() => makeCharacter(
  38264. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38265. {
  38266. front: {
  38267. height: math.unit(6 + 8/12, "feet"),
  38268. name: "Front",
  38269. image: {
  38270. source: "./media/characters/pixel/front.svg",
  38271. extra: 1900/1735,
  38272. bottom: 63/1963
  38273. }
  38274. },
  38275. },
  38276. [
  38277. {
  38278. name: "Normal",
  38279. height: math.unit(6 + 8/12, "feet"),
  38280. default: true
  38281. },
  38282. ]
  38283. ))
  38284. characterMakers.push(() => makeCharacter(
  38285. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38286. {
  38287. back: {
  38288. height: math.unit(4 + 1/12, "feet"),
  38289. weight: math.unit(75, "lb"),
  38290. name: "Back",
  38291. image: {
  38292. source: "./media/characters/rhett/back.svg",
  38293. extra: 930/878,
  38294. bottom: 25/955
  38295. }
  38296. },
  38297. front: {
  38298. height: math.unit(4 + 1/12, "feet"),
  38299. weight: math.unit(75, "lb"),
  38300. name: "Front",
  38301. image: {
  38302. source: "./media/characters/rhett/front.svg",
  38303. extra: 1682/1586,
  38304. bottom: 92/1774
  38305. }
  38306. },
  38307. },
  38308. [
  38309. {
  38310. name: "Micro",
  38311. height: math.unit(8, "inches")
  38312. },
  38313. {
  38314. name: "Tiny",
  38315. height: math.unit(2, "feet")
  38316. },
  38317. {
  38318. name: "Normal",
  38319. height: math.unit(4 + 1/12, "feet"),
  38320. default: true
  38321. },
  38322. ]
  38323. ))
  38324. characterMakers.push(() => makeCharacter(
  38325. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38326. {
  38327. front: {
  38328. height: math.unit(3 + 3/12, "feet"),
  38329. name: "Front",
  38330. image: {
  38331. source: "./media/characters/penny/front.svg",
  38332. extra: 1406/1311,
  38333. bottom: 26/1432
  38334. }
  38335. },
  38336. },
  38337. [
  38338. {
  38339. name: "Normal",
  38340. height: math.unit(3 + 3/12, "feet"),
  38341. default: true
  38342. },
  38343. ]
  38344. ))
  38345. characterMakers.push(() => makeCharacter(
  38346. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38347. {
  38348. front: {
  38349. height: math.unit(4 + 11/12, "feet"),
  38350. name: "Front",
  38351. image: {
  38352. source: "./media/characters/monty/front.svg",
  38353. extra: 1479/1209,
  38354. bottom: 0/1479
  38355. }
  38356. },
  38357. },
  38358. [
  38359. {
  38360. name: "Normal",
  38361. height: math.unit(4 + 11/12, "feet"),
  38362. default: true
  38363. },
  38364. ]
  38365. ))
  38366. characterMakers.push(() => makeCharacter(
  38367. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38368. {
  38369. front: {
  38370. height: math.unit(8 + 4/12, "feet"),
  38371. name: "Front",
  38372. image: {
  38373. source: "./media/characters/sterling/front.svg",
  38374. extra: 1420/1236,
  38375. bottom: 27/1447
  38376. }
  38377. },
  38378. },
  38379. [
  38380. {
  38381. name: "Normal",
  38382. height: math.unit(8 + 4/12, "feet"),
  38383. default: true
  38384. },
  38385. ]
  38386. ))
  38387. characterMakers.push(() => makeCharacter(
  38388. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38389. {
  38390. front: {
  38391. height: math.unit(15, "feet"),
  38392. name: "Front",
  38393. image: {
  38394. source: "./media/characters/marble/front.svg",
  38395. extra: 973/937,
  38396. bottom: 32/1005
  38397. }
  38398. },
  38399. },
  38400. [
  38401. {
  38402. name: "Normal",
  38403. height: math.unit(15, "feet"),
  38404. default: true
  38405. },
  38406. ]
  38407. ))
  38408. characterMakers.push(() => makeCharacter(
  38409. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38410. {
  38411. front: {
  38412. height: math.unit(3, "inches"),
  38413. name: "Front",
  38414. image: {
  38415. source: "./media/characters/powder/front.svg",
  38416. extra: 1504/1334,
  38417. bottom: 518/2022
  38418. }
  38419. },
  38420. },
  38421. [
  38422. {
  38423. name: "Normal",
  38424. height: math.unit(3, "inches"),
  38425. default: true
  38426. },
  38427. ]
  38428. ))
  38429. characterMakers.push(() => makeCharacter(
  38430. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38431. {
  38432. front: {
  38433. height: math.unit(4 + 5/12, "feet"),
  38434. name: "Front",
  38435. image: {
  38436. source: "./media/characters/joey-raccoon/front.svg",
  38437. extra: 1273/1197,
  38438. bottom: 0/1273
  38439. }
  38440. },
  38441. },
  38442. [
  38443. {
  38444. name: "Normal",
  38445. height: math.unit(4 + 5/12, "feet"),
  38446. default: true
  38447. },
  38448. ]
  38449. ))
  38450. characterMakers.push(() => makeCharacter(
  38451. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38452. {
  38453. front: {
  38454. height: math.unit(8 + 4/12, "feet"),
  38455. name: "Front",
  38456. image: {
  38457. source: "./media/characters/vick/front.svg",
  38458. extra: 2187/2118,
  38459. bottom: 47/2234
  38460. }
  38461. },
  38462. },
  38463. [
  38464. {
  38465. name: "Normal",
  38466. height: math.unit(8 + 4/12, "feet"),
  38467. default: true
  38468. },
  38469. ]
  38470. ))
  38471. characterMakers.push(() => makeCharacter(
  38472. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38473. {
  38474. front: {
  38475. height: math.unit(5 + 5/12, "feet"),
  38476. name: "Front",
  38477. image: {
  38478. source: "./media/characters/mitsy/front.svg",
  38479. extra: 1842/1695,
  38480. bottom: 0/1842
  38481. }
  38482. },
  38483. },
  38484. [
  38485. {
  38486. name: "Normal",
  38487. height: math.unit(5 + 5/12, "feet"),
  38488. default: true
  38489. },
  38490. ]
  38491. ))
  38492. characterMakers.push(() => makeCharacter(
  38493. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38494. {
  38495. front: {
  38496. height: math.unit(6 + 3/12, "feet"),
  38497. name: "Front",
  38498. image: {
  38499. source: "./media/characters/silvy/front.svg",
  38500. extra: 1995/1836,
  38501. bottom: 225/2220
  38502. }
  38503. },
  38504. },
  38505. [
  38506. {
  38507. name: "Normal",
  38508. height: math.unit(6 + 3/12, "feet"),
  38509. default: true
  38510. },
  38511. ]
  38512. ))
  38513. characterMakers.push(() => makeCharacter(
  38514. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38515. {
  38516. front: {
  38517. height: math.unit(3 + 8/12, "feet"),
  38518. name: "Front",
  38519. image: {
  38520. source: "./media/characters/rodney/front.svg",
  38521. extra: 1956/1747,
  38522. bottom: 31/1987
  38523. }
  38524. },
  38525. frontDressed: {
  38526. height: math.unit(2.9, "feet"),
  38527. name: "Front (Dressed)",
  38528. image: {
  38529. source: "./media/characters/rodney/front-dressed.svg",
  38530. extra: 1382/1241,
  38531. bottom: 385/1767
  38532. }
  38533. },
  38534. },
  38535. [
  38536. {
  38537. name: "Normal",
  38538. height: math.unit(3 + 8/12, "feet"),
  38539. default: true
  38540. },
  38541. ]
  38542. ))
  38543. characterMakers.push(() => makeCharacter(
  38544. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38545. {
  38546. front: {
  38547. height: math.unit(5 + 9/12, "feet"),
  38548. weight: math.unit(194, "lbs"),
  38549. name: "Front",
  38550. image: {
  38551. source: "./media/characters/zakail-sudekai/front.svg",
  38552. extra: 2696/2533,
  38553. bottom: 248/2944
  38554. }
  38555. },
  38556. maw: {
  38557. height: math.unit(1.35, "feet"),
  38558. name: "Maw",
  38559. image: {
  38560. source: "./media/characters/zakail-sudekai/maw.svg"
  38561. }
  38562. },
  38563. },
  38564. [
  38565. {
  38566. name: "Normal",
  38567. height: math.unit(5 + 9/12, "feet"),
  38568. default: true
  38569. },
  38570. ]
  38571. ))
  38572. characterMakers.push(() => makeCharacter(
  38573. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38574. {
  38575. front: {
  38576. height: math.unit(8 + 4/12, "feet"),
  38577. weight: math.unit(1200, "lb"),
  38578. name: "Front",
  38579. image: {
  38580. source: "./media/characters/eleanor/front.svg",
  38581. extra: 1226/1192,
  38582. bottom: 52/1278
  38583. }
  38584. },
  38585. back: {
  38586. height: math.unit(8 + 4/12, "feet"),
  38587. weight: math.unit(1200, "lb"),
  38588. name: "Back",
  38589. image: {
  38590. source: "./media/characters/eleanor/back.svg",
  38591. extra: 1242/1184,
  38592. bottom: 60/1302
  38593. }
  38594. },
  38595. head: {
  38596. height: math.unit(2.62, "feet"),
  38597. name: "Head",
  38598. image: {
  38599. source: "./media/characters/eleanor/head.svg"
  38600. }
  38601. },
  38602. },
  38603. [
  38604. {
  38605. name: "Normal",
  38606. height: math.unit(8 + 4/12, "feet"),
  38607. default: true
  38608. },
  38609. ]
  38610. ))
  38611. characterMakers.push(() => makeCharacter(
  38612. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38613. {
  38614. front: {
  38615. height: math.unit(8 + 4/12, "feet"),
  38616. weight: math.unit(750, "lb"),
  38617. name: "Front",
  38618. image: {
  38619. source: "./media/characters/tanya/front.svg",
  38620. extra: 1749/1615,
  38621. bottom: 33/1782
  38622. }
  38623. },
  38624. },
  38625. [
  38626. {
  38627. name: "Normal",
  38628. height: math.unit(8 + 4/12, "feet"),
  38629. default: true
  38630. },
  38631. ]
  38632. ))
  38633. characterMakers.push(() => makeCharacter(
  38634. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38635. {
  38636. front: {
  38637. height: math.unit(5, "feet"),
  38638. weight: math.unit(225, "lb"),
  38639. name: "Front",
  38640. image: {
  38641. source: "./media/characters/cindy/front.svg",
  38642. extra: 1320/1250,
  38643. bottom: 42/1362
  38644. }
  38645. },
  38646. frontDressed: {
  38647. height: math.unit(5, "feet"),
  38648. weight: math.unit(225, "lb"),
  38649. name: "Front (Dressed)",
  38650. image: {
  38651. source: "./media/characters/cindy/front-dressed.svg",
  38652. extra: 1320/1250,
  38653. bottom: 42/1362
  38654. }
  38655. },
  38656. back: {
  38657. height: math.unit(5, "feet"),
  38658. weight: math.unit(225, "lb"),
  38659. name: "Back",
  38660. image: {
  38661. source: "./media/characters/cindy/back.svg",
  38662. extra: 1384/1346,
  38663. bottom: 14/1398
  38664. }
  38665. },
  38666. },
  38667. [
  38668. {
  38669. name: "Normal",
  38670. height: math.unit(5, "feet"),
  38671. default: true
  38672. },
  38673. ]
  38674. ))
  38675. characterMakers.push(() => makeCharacter(
  38676. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38677. {
  38678. front: {
  38679. height: math.unit(6 + 9/12, "feet"),
  38680. weight: math.unit(440, "lb"),
  38681. name: "Front",
  38682. image: {
  38683. source: "./media/characters/wilbur-owen/front.svg",
  38684. extra: 1575/1448,
  38685. bottom: 72/1647
  38686. }
  38687. },
  38688. back: {
  38689. height: math.unit(6 + 9/12, "feet"),
  38690. weight: math.unit(440, "lb"),
  38691. name: "Back",
  38692. image: {
  38693. source: "./media/characters/wilbur-owen/back.svg",
  38694. extra: 1578/1445,
  38695. bottom: 36/1614
  38696. }
  38697. },
  38698. },
  38699. [
  38700. {
  38701. name: "Normal",
  38702. height: math.unit(6 + 9/12, "feet"),
  38703. default: true
  38704. },
  38705. ]
  38706. ))
  38707. characterMakers.push(() => makeCharacter(
  38708. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38709. {
  38710. front: {
  38711. height: math.unit(6 + 5/12, "feet"),
  38712. weight: math.unit(650, "lb"),
  38713. name: "Front",
  38714. image: {
  38715. source: "./media/characters/keegan/front.svg",
  38716. extra: 2387/2198,
  38717. bottom: 33/2420
  38718. }
  38719. },
  38720. side: {
  38721. height: math.unit(6 + 5/12, "feet"),
  38722. weight: math.unit(650, "lb"),
  38723. name: "Side",
  38724. image: {
  38725. source: "./media/characters/keegan/side.svg",
  38726. extra: 2390/2202,
  38727. bottom: 47/2437
  38728. }
  38729. },
  38730. back: {
  38731. height: math.unit(6 + 5/12, "feet"),
  38732. weight: math.unit(650, "lb"),
  38733. name: "Back",
  38734. image: {
  38735. source: "./media/characters/keegan/back.svg",
  38736. extra: 2418/2268,
  38737. bottom: 15/2433
  38738. }
  38739. },
  38740. frontSfw: {
  38741. height: math.unit(6 + 5/12, "feet"),
  38742. weight: math.unit(650, "lb"),
  38743. name: "Front (SFW)",
  38744. image: {
  38745. source: "./media/characters/keegan/front-sfw.svg",
  38746. extra: 2387/2198,
  38747. bottom: 33/2420
  38748. }
  38749. },
  38750. beans: {
  38751. height: math.unit(1.85, "feet"),
  38752. name: "Beans",
  38753. image: {
  38754. source: "./media/characters/keegan/beans.svg"
  38755. }
  38756. },
  38757. },
  38758. [
  38759. {
  38760. name: "Normal",
  38761. height: math.unit(6 + 5/12, "feet"),
  38762. default: true
  38763. },
  38764. ]
  38765. ))
  38766. characterMakers.push(() => makeCharacter(
  38767. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38768. {
  38769. front: {
  38770. height: math.unit(9, "feet"),
  38771. name: "Front",
  38772. image: {
  38773. source: "./media/characters/colton/front.svg",
  38774. extra: 1589/1326,
  38775. bottom: 139/1728
  38776. }
  38777. },
  38778. },
  38779. [
  38780. {
  38781. name: "Normal",
  38782. height: math.unit(9, "feet"),
  38783. default: true
  38784. },
  38785. ]
  38786. ))
  38787. characterMakers.push(() => makeCharacter(
  38788. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38789. {
  38790. front: {
  38791. height: math.unit(2 + 9/12, "feet"),
  38792. name: "Front",
  38793. image: {
  38794. source: "./media/characters/bora/front.svg",
  38795. extra: 1265/1250,
  38796. bottom: 24/1289
  38797. }
  38798. },
  38799. },
  38800. [
  38801. {
  38802. name: "Normal",
  38803. height: math.unit(2 + 9/12, "feet"),
  38804. default: true
  38805. },
  38806. ]
  38807. ))
  38808. characterMakers.push(() => makeCharacter(
  38809. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38810. {
  38811. front: {
  38812. height: math.unit(8, "feet"),
  38813. name: "Front",
  38814. image: {
  38815. source: "./media/characters/myu-myu/front.svg",
  38816. extra: 1949/1857,
  38817. bottom: 90/2039
  38818. }
  38819. },
  38820. },
  38821. [
  38822. {
  38823. name: "Normal",
  38824. height: math.unit(8, "feet"),
  38825. default: true
  38826. },
  38827. {
  38828. name: "Big",
  38829. height: math.unit(15, "feet")
  38830. },
  38831. {
  38832. name: "BIG",
  38833. height: math.unit(25, "feet")
  38834. },
  38835. ]
  38836. ))
  38837. characterMakers.push(() => makeCharacter(
  38838. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38839. {
  38840. side: {
  38841. height: math.unit(7 + 5/12, "feet"),
  38842. weight: math.unit(2800, "lb"),
  38843. name: "Side",
  38844. image: {
  38845. source: "./media/characters/haloren/side.svg",
  38846. extra: 1793/409,
  38847. bottom: 59/1852
  38848. }
  38849. },
  38850. frontPaw: {
  38851. height: math.unit(2.36, "feet"),
  38852. name: "Front paw",
  38853. image: {
  38854. source: "./media/characters/haloren/front-paw.svg"
  38855. }
  38856. },
  38857. hindPaw: {
  38858. height: math.unit(3.18, "feet"),
  38859. name: "Hind paw",
  38860. image: {
  38861. source: "./media/characters/haloren/hind-paw.svg"
  38862. }
  38863. },
  38864. maw: {
  38865. height: math.unit(5.05, "feet"),
  38866. name: "Maw",
  38867. image: {
  38868. source: "./media/characters/haloren/maw.svg"
  38869. }
  38870. },
  38871. dick: {
  38872. height: math.unit(2.90, "feet"),
  38873. name: "Dick",
  38874. image: {
  38875. source: "./media/characters/haloren/dick.svg"
  38876. }
  38877. },
  38878. },
  38879. [
  38880. {
  38881. name: "Normal",
  38882. height: math.unit(7 + 5/12, "feet"),
  38883. default: true
  38884. },
  38885. {
  38886. name: "Enhanced",
  38887. height: math.unit(14 + 3/12, "feet")
  38888. },
  38889. ]
  38890. ))
  38891. characterMakers.push(() => makeCharacter(
  38892. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38893. {
  38894. front: {
  38895. height: math.unit(171, "cm"),
  38896. name: "Front",
  38897. image: {
  38898. source: "./media/characters/kimmy/front.svg",
  38899. extra: 1491/1435,
  38900. bottom: 53/1544
  38901. }
  38902. },
  38903. },
  38904. [
  38905. {
  38906. name: "Small",
  38907. height: math.unit(9, "cm")
  38908. },
  38909. {
  38910. name: "Normal",
  38911. height: math.unit(171, "cm"),
  38912. default: true
  38913. },
  38914. ]
  38915. ))
  38916. characterMakers.push(() => makeCharacter(
  38917. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38918. {
  38919. front: {
  38920. height: math.unit(8, "feet"),
  38921. weight: math.unit(300, "lb"),
  38922. name: "Front",
  38923. image: {
  38924. source: "./media/characters/galeboomer/front.svg",
  38925. extra: 4651/4415,
  38926. bottom: 162/4813
  38927. }
  38928. },
  38929. back: {
  38930. height: math.unit(8, "feet"),
  38931. weight: math.unit(300, "lb"),
  38932. name: "Back",
  38933. image: {
  38934. source: "./media/characters/galeboomer/back.svg",
  38935. extra: 4544/4314,
  38936. bottom: 16/4560
  38937. }
  38938. },
  38939. frontAlt: {
  38940. height: math.unit(8, "feet"),
  38941. weight: math.unit(300, "lb"),
  38942. name: "Front (Alt)",
  38943. image: {
  38944. source: "./media/characters/galeboomer/front-alt.svg",
  38945. extra: 4458/4228,
  38946. bottom: 68/4526
  38947. }
  38948. },
  38949. maw: {
  38950. height: math.unit(1.2, "feet"),
  38951. name: "Maw",
  38952. image: {
  38953. source: "./media/characters/galeboomer/maw.svg"
  38954. }
  38955. },
  38956. },
  38957. [
  38958. {
  38959. name: "Normal",
  38960. height: math.unit(8, "feet"),
  38961. default: true
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38967. {
  38968. front: {
  38969. height: math.unit(5 + 9/12, "feet"),
  38970. weight: math.unit(120, "lb"),
  38971. name: "Front",
  38972. image: {
  38973. source: "./media/characters/chyr/front.svg",
  38974. extra: 1323/1254,
  38975. bottom: 63/1386
  38976. }
  38977. },
  38978. back: {
  38979. height: math.unit(5 + 9/12, "feet"),
  38980. weight: math.unit(120, "lb"),
  38981. name: "Back",
  38982. image: {
  38983. source: "./media/characters/chyr/back.svg",
  38984. extra: 1323/1252,
  38985. bottom: 48/1371
  38986. }
  38987. },
  38988. },
  38989. [
  38990. {
  38991. name: "Normal",
  38992. height: math.unit(5 + 9/12, "feet"),
  38993. default: true
  38994. },
  38995. ]
  38996. ))
  38997. characterMakers.push(() => makeCharacter(
  38998. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38999. {
  39000. front: {
  39001. height: math.unit(7, "feet"),
  39002. weight: math.unit(310, "lb"),
  39003. name: "Front",
  39004. image: {
  39005. source: "./media/characters/solarus/front.svg",
  39006. extra: 2415/2021,
  39007. bottom: 103/2518
  39008. }
  39009. },
  39010. back: {
  39011. height: math.unit(7, "feet"),
  39012. weight: math.unit(310, "lb"),
  39013. name: "Back",
  39014. image: {
  39015. source: "./media/characters/solarus/back.svg",
  39016. extra: 2463/2089,
  39017. bottom: 79/2542
  39018. }
  39019. },
  39020. },
  39021. [
  39022. {
  39023. name: "Normal",
  39024. height: math.unit(7, "feet"),
  39025. default: true
  39026. },
  39027. ]
  39028. ))
  39029. characterMakers.push(() => makeCharacter(
  39030. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39031. {
  39032. front: {
  39033. height: math.unit(16, "feet"),
  39034. name: "Front",
  39035. image: {
  39036. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39037. extra: 1844/1780,
  39038. bottom: 58/1902
  39039. }
  39040. },
  39041. winterCoat: {
  39042. height: math.unit(16, "feet"),
  39043. name: "Winter Coat",
  39044. image: {
  39045. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39046. extra: 1807/1775,
  39047. bottom: 69/1876
  39048. }
  39049. },
  39050. },
  39051. [
  39052. {
  39053. name: "Normal",
  39054. height: math.unit(16, "feet"),
  39055. default: true
  39056. },
  39057. {
  39058. name: "Chicago Size",
  39059. height: math.unit(560, "feet")
  39060. },
  39061. ]
  39062. ))
  39063. characterMakers.push(() => makeCharacter(
  39064. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39065. {
  39066. front: {
  39067. height: math.unit(11 + 6/12, "feet"),
  39068. weight: math.unit(1366, "lb"),
  39069. name: "Front",
  39070. image: {
  39071. source: "./media/characters/lexor/front.svg",
  39072. extra: 1560/1481,
  39073. bottom: 211/1771
  39074. }
  39075. },
  39076. back: {
  39077. height: math.unit(11 + 6/12, "feet"),
  39078. weight: math.unit(1366, "lb"),
  39079. name: "Back",
  39080. image: {
  39081. source: "./media/characters/lexor/back.svg",
  39082. extra: 1614/1533,
  39083. bottom: 76/1690
  39084. }
  39085. },
  39086. maw: {
  39087. height: math.unit(3, "feet"),
  39088. name: "Maw",
  39089. image: {
  39090. source: "./media/characters/lexor/maw.svg"
  39091. }
  39092. },
  39093. dick: {
  39094. height: math.unit(2.59, "feet"),
  39095. name: "Dick",
  39096. image: {
  39097. source: "./media/characters/lexor/dick.svg"
  39098. }
  39099. },
  39100. },
  39101. [
  39102. {
  39103. name: "Normal",
  39104. height: math.unit(11 + 6/12, "feet"),
  39105. default: true
  39106. },
  39107. ]
  39108. ))
  39109. characterMakers.push(() => makeCharacter(
  39110. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39111. {
  39112. front: {
  39113. height: math.unit(5 + 8/12, "feet"),
  39114. name: "Front",
  39115. image: {
  39116. source: "./media/characters/magnum/front.svg",
  39117. extra: 942/855,
  39118. bottom: 26/968
  39119. }
  39120. },
  39121. },
  39122. [
  39123. {
  39124. name: "Normal",
  39125. height: math.unit(5 + 8/12, "feet"),
  39126. default: true
  39127. },
  39128. ]
  39129. ))
  39130. characterMakers.push(() => makeCharacter(
  39131. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39132. {
  39133. front: {
  39134. height: math.unit(18 + 4/12, "feet"),
  39135. weight: math.unit(1500, "kg"),
  39136. name: "Front",
  39137. image: {
  39138. source: "./media/characters/solas-sharpsman/front.svg",
  39139. extra: 1698/1589,
  39140. bottom: 0/1698
  39141. }
  39142. },
  39143. },
  39144. [
  39145. {
  39146. name: "Normal",
  39147. height: math.unit(18 + 4/12, "feet"),
  39148. default: true
  39149. },
  39150. ]
  39151. ))
  39152. characterMakers.push(() => makeCharacter(
  39153. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39154. {
  39155. front: {
  39156. height: math.unit(5 + 5/12, "feet"),
  39157. weight: math.unit(180, "lb"),
  39158. name: "Front",
  39159. image: {
  39160. source: "./media/characters/october/front.svg",
  39161. extra: 1800/1650,
  39162. bottom: 0/1800
  39163. }
  39164. },
  39165. frontNsfw: {
  39166. height: math.unit(5 + 5/12, "feet"),
  39167. weight: math.unit(180, "lb"),
  39168. name: "Front (NSFW)",
  39169. image: {
  39170. source: "./media/characters/october/front-nsfw.svg",
  39171. extra: 1392/1307,
  39172. bottom: 42/1434
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Normal",
  39179. height: math.unit(5 + 5/12, "feet"),
  39180. default: true
  39181. },
  39182. ]
  39183. ))
  39184. characterMakers.push(() => makeCharacter(
  39185. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39186. {
  39187. front: {
  39188. height: math.unit(8 + 6/12, "feet"),
  39189. name: "Front",
  39190. image: {
  39191. source: "./media/characters/essynkardi/front.svg",
  39192. extra: 1541/1457,
  39193. bottom: 47/1588
  39194. }
  39195. },
  39196. },
  39197. [
  39198. {
  39199. name: "Normal",
  39200. height: math.unit(8 + 6/12, "feet"),
  39201. default: true
  39202. },
  39203. ]
  39204. ))
  39205. characterMakers.push(() => makeCharacter(
  39206. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39207. {
  39208. front: {
  39209. height: math.unit(6 + 6/12, "feet"),
  39210. weight: math.unit(7, "lb"),
  39211. name: "Front",
  39212. image: {
  39213. source: "./media/characters/icky/front.svg",
  39214. extra: 813/782,
  39215. bottom: 66/879
  39216. }
  39217. },
  39218. back: {
  39219. height: math.unit(6 + 6/12, "feet"),
  39220. weight: math.unit(7, "lb"),
  39221. name: "Back",
  39222. image: {
  39223. source: "./media/characters/icky/back.svg",
  39224. extra: 754/735,
  39225. bottom: 56/810
  39226. }
  39227. },
  39228. },
  39229. [
  39230. {
  39231. name: "Normal",
  39232. height: math.unit(6 + 6/12, "feet"),
  39233. default: true
  39234. },
  39235. ]
  39236. ))
  39237. characterMakers.push(() => makeCharacter(
  39238. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39239. {
  39240. front: {
  39241. height: math.unit(15, "feet"),
  39242. name: "Front",
  39243. image: {
  39244. source: "./media/characters/rojas/front.svg",
  39245. extra: 1462/1408,
  39246. bottom: 95/1557
  39247. }
  39248. },
  39249. back: {
  39250. height: math.unit(15, "feet"),
  39251. name: "Back",
  39252. image: {
  39253. source: "./media/characters/rojas/back.svg",
  39254. extra: 1023/954,
  39255. bottom: 28/1051
  39256. }
  39257. },
  39258. },
  39259. [
  39260. {
  39261. name: "Normal",
  39262. height: math.unit(15, "feet"),
  39263. default: true
  39264. },
  39265. ]
  39266. ))
  39267. characterMakers.push(() => makeCharacter(
  39268. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39269. {
  39270. frontHuman: {
  39271. height: math.unit(5 + 7/12, "feet"),
  39272. name: "Front (Human)",
  39273. image: {
  39274. source: "./media/characters/alek-dryagan/front-human.svg",
  39275. extra: 1687/1667,
  39276. bottom: 69/1756
  39277. }
  39278. },
  39279. backHuman: {
  39280. height: math.unit(5 + 7/12, "feet"),
  39281. name: "Back (Human)",
  39282. image: {
  39283. source: "./media/characters/alek-dryagan/back-human.svg",
  39284. extra: 1670/1649,
  39285. bottom: 65/1735
  39286. }
  39287. },
  39288. frontDemi: {
  39289. height: math.unit(65, "feet"),
  39290. name: "Front (Demi)",
  39291. image: {
  39292. source: "./media/characters/alek-dryagan/front-demi.svg",
  39293. extra: 1669/1642,
  39294. bottom: 49/1718
  39295. }
  39296. },
  39297. backDemi: {
  39298. height: math.unit(65, "feet"),
  39299. name: "Back (Demi)",
  39300. image: {
  39301. source: "./media/characters/alek-dryagan/back-demi.svg",
  39302. extra: 1658/1637,
  39303. bottom: 40/1698
  39304. }
  39305. },
  39306. mawHuman: {
  39307. height: math.unit(0.3, "feet"),
  39308. name: "Maw (Human)",
  39309. image: {
  39310. source: "./media/characters/alek-dryagan/maw-human.svg"
  39311. }
  39312. },
  39313. mawDemi: {
  39314. height: math.unit(3.8, "feet"),
  39315. name: "Maw (Demi)",
  39316. image: {
  39317. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39318. }
  39319. },
  39320. },
  39321. [
  39322. {
  39323. name: "Normal",
  39324. height: math.unit(5 + 7/12, "feet"),
  39325. default: true
  39326. },
  39327. ]
  39328. ))
  39329. characterMakers.push(() => makeCharacter(
  39330. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39331. {
  39332. frontHuman: {
  39333. height: math.unit(5 + 2/12, "feet"),
  39334. name: "Front (Human)",
  39335. image: {
  39336. source: "./media/characters/gen/front-human.svg",
  39337. extra: 1627/1538,
  39338. bottom: 71/1698
  39339. }
  39340. },
  39341. backHuman: {
  39342. height: math.unit(5 + 2/12, "feet"),
  39343. name: "Back (Human)",
  39344. image: {
  39345. source: "./media/characters/gen/back-human.svg",
  39346. extra: 1638/1548,
  39347. bottom: 69/1707
  39348. }
  39349. },
  39350. frontDemi: {
  39351. height: math.unit(5 + 2/12, "feet"),
  39352. name: "Front (Demi)",
  39353. image: {
  39354. source: "./media/characters/gen/front-demi.svg",
  39355. extra: 1627/1538,
  39356. bottom: 71/1698
  39357. }
  39358. },
  39359. backDemi: {
  39360. height: math.unit(5 + 2/12, "feet"),
  39361. name: "Back (Demi)",
  39362. image: {
  39363. source: "./media/characters/gen/back-demi.svg",
  39364. extra: 1638/1548,
  39365. bottom: 69/1707
  39366. }
  39367. },
  39368. },
  39369. [
  39370. {
  39371. name: "Normal",
  39372. height: math.unit(5 + 2/12, "feet"),
  39373. default: true
  39374. },
  39375. ]
  39376. ))
  39377. characterMakers.push(() => makeCharacter(
  39378. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39379. {
  39380. frontImp: {
  39381. height: math.unit(1 + 11/12, "feet"),
  39382. name: "Front (Imp)",
  39383. image: {
  39384. source: "./media/characters/max-kobold/front-imp.svg",
  39385. extra: 1238/1134,
  39386. bottom: 81/1319
  39387. }
  39388. },
  39389. backImp: {
  39390. height: math.unit(1 + 11/12, "feet"),
  39391. name: "Back (Imp)",
  39392. image: {
  39393. source: "./media/characters/max-kobold/back-imp.svg",
  39394. extra: 1334/1175,
  39395. bottom: 34/1368
  39396. }
  39397. },
  39398. frontDemi: {
  39399. height: math.unit(5 + 9/12, "feet"),
  39400. name: "Front (Demi)",
  39401. image: {
  39402. source: "./media/characters/max-kobold/front-demi.svg",
  39403. extra: 1715/1685,
  39404. bottom: 54/1769
  39405. }
  39406. },
  39407. backDemi: {
  39408. height: math.unit(5 + 9/12, "feet"),
  39409. name: "Back (Demi)",
  39410. image: {
  39411. source: "./media/characters/max-kobold/back-demi.svg",
  39412. extra: 1752/1729,
  39413. bottom: 41/1793
  39414. }
  39415. },
  39416. handImp: {
  39417. height: math.unit(0.45, "feet"),
  39418. name: "Hand (Imp)",
  39419. image: {
  39420. source: "./media/characters/max-kobold/hand.svg"
  39421. }
  39422. },
  39423. pawImp: {
  39424. height: math.unit(0.46, "feet"),
  39425. name: "Paw (Imp)",
  39426. image: {
  39427. source: "./media/characters/max-kobold/paw.svg"
  39428. }
  39429. },
  39430. handDemi: {
  39431. height: math.unit(0.80, "feet"),
  39432. name: "Hand (Demi)",
  39433. image: {
  39434. source: "./media/characters/max-kobold/hand.svg"
  39435. }
  39436. },
  39437. pawDemi: {
  39438. height: math.unit(1.1, "feet"),
  39439. name: "Paw (Demi)",
  39440. image: {
  39441. source: "./media/characters/max-kobold/paw.svg"
  39442. }
  39443. },
  39444. headImp: {
  39445. height: math.unit(1.33, "feet"),
  39446. name: "Head (Imp)",
  39447. image: {
  39448. source: "./media/characters/max-kobold/head-imp.svg"
  39449. }
  39450. },
  39451. mawImp: {
  39452. height: math.unit(0.75, "feet"),
  39453. name: "Maw (Imp)",
  39454. image: {
  39455. source: "./media/characters/max-kobold/maw-imp.svg"
  39456. }
  39457. },
  39458. mawDemi: {
  39459. height: math.unit(0.42, "feet"),
  39460. name: "Maw (Demi)",
  39461. image: {
  39462. source: "./media/characters/max-kobold/maw-demi.svg"
  39463. }
  39464. },
  39465. },
  39466. [
  39467. {
  39468. name: "Normal",
  39469. height: math.unit(1 + 11/12, "feet"),
  39470. default: true
  39471. },
  39472. ]
  39473. ))
  39474. characterMakers.push(() => makeCharacter(
  39475. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39476. {
  39477. front: {
  39478. height: math.unit(7 + 5/12, "feet"),
  39479. name: "Front",
  39480. image: {
  39481. source: "./media/characters/carbon/front.svg",
  39482. extra: 1754/1689,
  39483. bottom: 65/1819
  39484. }
  39485. },
  39486. back: {
  39487. height: math.unit(7 + 5/12, "feet"),
  39488. name: "Back",
  39489. image: {
  39490. source: "./media/characters/carbon/back.svg",
  39491. extra: 1762/1695,
  39492. bottom: 24/1786
  39493. }
  39494. },
  39495. frontGigantamax: {
  39496. height: math.unit(150, "feet"),
  39497. name: "Front (Gigantamax)",
  39498. image: {
  39499. source: "./media/characters/carbon/front-gigantamax.svg",
  39500. extra: 1826/1669,
  39501. bottom: 59/1885
  39502. }
  39503. },
  39504. backGigantamax: {
  39505. height: math.unit(150, "feet"),
  39506. name: "Back (Gigantamax)",
  39507. image: {
  39508. source: "./media/characters/carbon/back-gigantamax.svg",
  39509. extra: 1796/1653,
  39510. bottom: 53/1849
  39511. }
  39512. },
  39513. maw: {
  39514. height: math.unit(0.48, "feet"),
  39515. name: "Maw",
  39516. image: {
  39517. source: "./media/characters/carbon/maw.svg"
  39518. }
  39519. },
  39520. mawGigantamax: {
  39521. height: math.unit(7.5, "feet"),
  39522. name: "Maw (Gigantamax)",
  39523. image: {
  39524. source: "./media/characters/carbon/maw-gigantamax.svg"
  39525. }
  39526. },
  39527. },
  39528. [
  39529. {
  39530. name: "Normal",
  39531. height: math.unit(7 + 5/12, "feet"),
  39532. default: true
  39533. },
  39534. ]
  39535. ))
  39536. characterMakers.push(() => makeCharacter(
  39537. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39538. {
  39539. front: {
  39540. height: math.unit(6, "feet"),
  39541. name: "Front",
  39542. image: {
  39543. source: "./media/characters/maverick/front.svg",
  39544. extra: 1672/1661,
  39545. bottom: 85/1757
  39546. }
  39547. },
  39548. back: {
  39549. height: math.unit(6, "feet"),
  39550. name: "Back",
  39551. image: {
  39552. source: "./media/characters/maverick/back.svg",
  39553. extra: 1642/1631,
  39554. bottom: 38/1680
  39555. }
  39556. },
  39557. },
  39558. [
  39559. {
  39560. name: "Normal",
  39561. height: math.unit(6, "feet"),
  39562. default: true
  39563. },
  39564. ]
  39565. ))
  39566. characterMakers.push(() => makeCharacter(
  39567. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39568. {
  39569. front: {
  39570. height: math.unit(15, "feet"),
  39571. weight: math.unit(615, "lb"),
  39572. name: "Front",
  39573. image: {
  39574. source: "./media/characters/grockle/front.svg",
  39575. extra: 1535/1427,
  39576. bottom: 56/1591
  39577. }
  39578. },
  39579. },
  39580. [
  39581. {
  39582. name: "Normal",
  39583. height: math.unit(15, "feet"),
  39584. default: true
  39585. },
  39586. {
  39587. name: "Large",
  39588. height: math.unit(150, "feet")
  39589. },
  39590. {
  39591. name: "Macro",
  39592. height: math.unit(1876, "feet")
  39593. },
  39594. {
  39595. name: "Mega Macro",
  39596. height: math.unit(121940, "feet")
  39597. },
  39598. {
  39599. name: "Giga Macro",
  39600. height: math.unit(750, "km")
  39601. },
  39602. {
  39603. name: "Tera Macro",
  39604. height: math.unit(750000, "km")
  39605. },
  39606. {
  39607. name: "Galactic",
  39608. height: math.unit(1.4e5, "km")
  39609. },
  39610. {
  39611. name: "Godlike",
  39612. height: math.unit(9.8e280, "galaxies")
  39613. },
  39614. ]
  39615. ))
  39616. characterMakers.push(() => makeCharacter(
  39617. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39618. {
  39619. front: {
  39620. height: math.unit(11, "meters"),
  39621. weight: math.unit(20, "tonnes"),
  39622. name: "Front",
  39623. image: {
  39624. source: "./media/characters/alistair/front.svg",
  39625. extra: 1265/1009,
  39626. bottom: 93/1358
  39627. }
  39628. },
  39629. },
  39630. [
  39631. {
  39632. name: "Normal",
  39633. height: math.unit(11, "meters"),
  39634. default: true
  39635. },
  39636. ]
  39637. ))
  39638. characterMakers.push(() => makeCharacter(
  39639. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39640. {
  39641. front: {
  39642. height: math.unit(5 + 8/12, "feet"),
  39643. name: "Front",
  39644. image: {
  39645. source: "./media/characters/haruka/front.svg",
  39646. extra: 2012/1952,
  39647. bottom: 0/2012
  39648. }
  39649. },
  39650. },
  39651. [
  39652. {
  39653. name: "Normal",
  39654. height: math.unit(5 + 8/12, "feet"),
  39655. default: true
  39656. },
  39657. ]
  39658. ))
  39659. characterMakers.push(() => makeCharacter(
  39660. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39661. {
  39662. back: {
  39663. height: math.unit(9, "feet"),
  39664. name: "Back",
  39665. image: {
  39666. source: "./media/characters/vivian-sylveon/back.svg",
  39667. extra: 1853/1714,
  39668. bottom: 0/1853
  39669. }
  39670. },
  39671. },
  39672. [
  39673. {
  39674. name: "Normal",
  39675. height: math.unit(9, "feet"),
  39676. default: true
  39677. },
  39678. {
  39679. name: "Macro",
  39680. height: math.unit(500, "feet")
  39681. },
  39682. {
  39683. name: "Megamacro",
  39684. height: math.unit(600, "miles")
  39685. },
  39686. {
  39687. name: "Gigamacro",
  39688. height: math.unit(30000, "miles")
  39689. },
  39690. ]
  39691. ))
  39692. characterMakers.push(() => makeCharacter(
  39693. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39694. {
  39695. anthro: {
  39696. height: math.unit(5 + 10/12, "feet"),
  39697. weight: math.unit(100, "lb"),
  39698. name: "Anthro",
  39699. image: {
  39700. source: "./media/characters/daiki/anthro.svg",
  39701. extra: 1115/1027,
  39702. bottom: 69/1184
  39703. }
  39704. },
  39705. feral: {
  39706. height: math.unit(200, "feet"),
  39707. name: "Feral",
  39708. image: {
  39709. source: "./media/characters/daiki/feral.svg",
  39710. extra: 1256/313,
  39711. bottom: 39/1295
  39712. }
  39713. },
  39714. feralHead: {
  39715. height: math.unit(171, "feet"),
  39716. name: "Feral Head",
  39717. image: {
  39718. source: "./media/characters/daiki/feral-head.svg"
  39719. }
  39720. },
  39721. manaDragon: {
  39722. height: math.unit(170, "meters"),
  39723. name: "Mana-dragon",
  39724. image: {
  39725. source: "./media/characters/daiki/mana-dragon.svg",
  39726. extra: 763/420,
  39727. bottom: 97/860
  39728. }
  39729. },
  39730. },
  39731. [
  39732. {
  39733. name: "Normal",
  39734. height: math.unit(5 + 10/12, "feet"),
  39735. default: true
  39736. },
  39737. ]
  39738. ))
  39739. characterMakers.push(() => makeCharacter(
  39740. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39741. {
  39742. fullyEquippedFront: {
  39743. height: math.unit(3 + 1/12, "feet"),
  39744. weight: math.unit(24, "lb"),
  39745. name: "Fully Equipped (Front)",
  39746. image: {
  39747. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39748. extra: 687/605,
  39749. bottom: 18/705
  39750. }
  39751. },
  39752. fullyEquippedBack: {
  39753. height: math.unit(3 + 1/12, "feet"),
  39754. weight: math.unit(24, "lb"),
  39755. name: "Fully Equipped (Back)",
  39756. image: {
  39757. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39758. extra: 689/590,
  39759. bottom: 18/707
  39760. }
  39761. },
  39762. dailyWear: {
  39763. height: math.unit(3 + 1/12, "feet"),
  39764. weight: math.unit(24, "lb"),
  39765. name: "Daily Wear",
  39766. image: {
  39767. source: "./media/characters/tea-spot/daily-wear.svg",
  39768. extra: 701/620,
  39769. bottom: 21/722
  39770. }
  39771. },
  39772. maidWork: {
  39773. height: math.unit(3 + 1/12, "feet"),
  39774. weight: math.unit(24, "lb"),
  39775. name: "Maid Work",
  39776. image: {
  39777. source: "./media/characters/tea-spot/maid-work.svg",
  39778. extra: 693/609,
  39779. bottom: 15/708
  39780. }
  39781. },
  39782. },
  39783. [
  39784. {
  39785. name: "Normal",
  39786. height: math.unit(3 + 1/12, "feet"),
  39787. default: true
  39788. },
  39789. ]
  39790. ))
  39791. characterMakers.push(() => makeCharacter(
  39792. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39793. {
  39794. front: {
  39795. height: math.unit(175, "cm"),
  39796. weight: math.unit(75, "kg"),
  39797. name: "Front",
  39798. image: {
  39799. source: "./media/characters/chee/front.svg",
  39800. extra: 1796/1740,
  39801. bottom: 40/1836
  39802. }
  39803. },
  39804. },
  39805. [
  39806. {
  39807. name: "Micro-Micro",
  39808. height: math.unit(1, "nm")
  39809. },
  39810. {
  39811. name: "Micro-erst",
  39812. height: math.unit(1, "micrometer")
  39813. },
  39814. {
  39815. name: "Micro-er",
  39816. height: math.unit(1, "cm")
  39817. },
  39818. {
  39819. name: "Normal",
  39820. height: math.unit(175, "cm"),
  39821. default: true
  39822. },
  39823. {
  39824. name: "Macro",
  39825. height: math.unit(100, "m")
  39826. },
  39827. {
  39828. name: "Macro-er",
  39829. height: math.unit(1, "km")
  39830. },
  39831. {
  39832. name: "Macro-erst",
  39833. height: math.unit(10, "km")
  39834. },
  39835. {
  39836. name: "Macro-Macro",
  39837. height: math.unit(100, "km")
  39838. },
  39839. ]
  39840. ))
  39841. characterMakers.push(() => makeCharacter(
  39842. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39843. {
  39844. front: {
  39845. height: math.unit(11 + 9/12, "feet"),
  39846. weight: math.unit(935, "lb"),
  39847. name: "Front",
  39848. image: {
  39849. source: "./media/characters/kingsley/front.svg",
  39850. extra: 1803/1674,
  39851. bottom: 127/1930
  39852. }
  39853. },
  39854. frontNude: {
  39855. height: math.unit(11 + 9/12, "feet"),
  39856. weight: math.unit(935, "lb"),
  39857. name: "Front (Nude)",
  39858. image: {
  39859. source: "./media/characters/kingsley/front-nude.svg",
  39860. extra: 1803/1674,
  39861. bottom: 127/1930
  39862. }
  39863. },
  39864. },
  39865. [
  39866. {
  39867. name: "Normal",
  39868. height: math.unit(11 + 9/12, "feet"),
  39869. default: true
  39870. },
  39871. ]
  39872. ))
  39873. characterMakers.push(() => makeCharacter(
  39874. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39875. {
  39876. side: {
  39877. height: math.unit(9, "feet"),
  39878. name: "Side",
  39879. image: {
  39880. source: "./media/characters/rymel/side.svg",
  39881. extra: 792/469,
  39882. bottom: 121/913
  39883. }
  39884. },
  39885. maw: {
  39886. height: math.unit(2.4, "meters"),
  39887. name: "Maw",
  39888. image: {
  39889. source: "./media/characters/rymel/maw.svg"
  39890. }
  39891. },
  39892. },
  39893. [
  39894. {
  39895. name: "House Drake",
  39896. height: math.unit(2, "feet")
  39897. },
  39898. {
  39899. name: "Reduced",
  39900. height: math.unit(4.5, "feet")
  39901. },
  39902. {
  39903. name: "Normal",
  39904. height: math.unit(9, "feet"),
  39905. default: true
  39906. },
  39907. ]
  39908. ))
  39909. characterMakers.push(() => makeCharacter(
  39910. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39911. {
  39912. front: {
  39913. height: math.unit(1.74, "meters"),
  39914. weight: math.unit(55, "kg"),
  39915. name: "Front",
  39916. image: {
  39917. source: "./media/characters/rubus/front.svg",
  39918. extra: 1894/1742,
  39919. bottom: 44/1938
  39920. }
  39921. },
  39922. },
  39923. [
  39924. {
  39925. name: "Normal",
  39926. height: math.unit(1.74, "meters"),
  39927. default: true
  39928. },
  39929. ]
  39930. ))
  39931. characterMakers.push(() => makeCharacter(
  39932. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39933. {
  39934. front: {
  39935. height: math.unit(5 + 2/12, "feet"),
  39936. weight: math.unit(112, "lb"),
  39937. name: "Front",
  39938. image: {
  39939. source: "./media/characters/cassie-kingston/front.svg",
  39940. extra: 1438/1390,
  39941. bottom: 47/1485
  39942. }
  39943. },
  39944. },
  39945. [
  39946. {
  39947. name: "Normal",
  39948. height: math.unit(5 + 2/12, "feet"),
  39949. default: true
  39950. },
  39951. {
  39952. name: "Macro",
  39953. height: math.unit(128, "feet")
  39954. },
  39955. {
  39956. name: "Megamacro",
  39957. height: math.unit(2.56, "miles")
  39958. },
  39959. ]
  39960. ))
  39961. characterMakers.push(() => makeCharacter(
  39962. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39963. {
  39964. front: {
  39965. height: math.unit(7, "feet"),
  39966. name: "Front",
  39967. image: {
  39968. source: "./media/characters/fox/front.svg",
  39969. extra: 1798/1703,
  39970. bottom: 55/1853
  39971. }
  39972. },
  39973. back: {
  39974. height: math.unit(7, "feet"),
  39975. name: "Back",
  39976. image: {
  39977. source: "./media/characters/fox/back.svg",
  39978. extra: 1748/1649,
  39979. bottom: 32/1780
  39980. }
  39981. },
  39982. head: {
  39983. height: math.unit(1.95, "feet"),
  39984. name: "Head",
  39985. image: {
  39986. source: "./media/characters/fox/head.svg"
  39987. }
  39988. },
  39989. dick: {
  39990. height: math.unit(1.33, "feet"),
  39991. name: "Dick",
  39992. image: {
  39993. source: "./media/characters/fox/dick.svg"
  39994. }
  39995. },
  39996. foot: {
  39997. height: math.unit(1, "feet"),
  39998. name: "Foot",
  39999. image: {
  40000. source: "./media/characters/fox/foot.svg"
  40001. }
  40002. },
  40003. paw: {
  40004. height: math.unit(0.92, "feet"),
  40005. name: "Paw",
  40006. image: {
  40007. source: "./media/characters/fox/paw.svg"
  40008. }
  40009. },
  40010. },
  40011. [
  40012. {
  40013. name: "Small",
  40014. height: math.unit(3, "inches")
  40015. },
  40016. {
  40017. name: "\"Realistic\"",
  40018. height: math.unit(7, "feet")
  40019. },
  40020. {
  40021. name: "Normal",
  40022. height: math.unit(150, "feet"),
  40023. default: true
  40024. },
  40025. {
  40026. name: "BIG",
  40027. height: math.unit(1200, "feet")
  40028. },
  40029. {
  40030. name: "👀",
  40031. height: math.unit(5, "miles")
  40032. },
  40033. {
  40034. name: "👀👀👀",
  40035. height: math.unit(64, "miles")
  40036. },
  40037. ]
  40038. ))
  40039. characterMakers.push(() => makeCharacter(
  40040. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40041. {
  40042. front: {
  40043. height: math.unit(625, "feet"),
  40044. name: "Front",
  40045. image: {
  40046. source: "./media/characters/asonja-rossa/front.svg",
  40047. extra: 1833/1686,
  40048. bottom: 24/1857
  40049. }
  40050. },
  40051. back: {
  40052. height: math.unit(625, "feet"),
  40053. name: "Back",
  40054. image: {
  40055. source: "./media/characters/asonja-rossa/back.svg",
  40056. extra: 1852/1753,
  40057. bottom: 26/1878
  40058. }
  40059. },
  40060. },
  40061. [
  40062. {
  40063. name: "Macro",
  40064. height: math.unit(625, "feet"),
  40065. default: true
  40066. },
  40067. ]
  40068. ))
  40069. characterMakers.push(() => makeCharacter(
  40070. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40071. {
  40072. side: {
  40073. height: math.unit(8, "feet"),
  40074. name: "Side",
  40075. image: {
  40076. source: "./media/characters/rezukii/side.svg",
  40077. extra: 979/542,
  40078. bottom: 87/1066
  40079. }
  40080. },
  40081. sitting: {
  40082. height: math.unit(14.6, "feet"),
  40083. name: "Sitting",
  40084. image: {
  40085. source: "./media/characters/rezukii/sitting.svg",
  40086. extra: 1023/813,
  40087. bottom: 45/1068
  40088. }
  40089. },
  40090. },
  40091. [
  40092. {
  40093. name: "Tiny",
  40094. height: math.unit(2, "feet")
  40095. },
  40096. {
  40097. name: "Smol",
  40098. height: math.unit(4, "feet")
  40099. },
  40100. {
  40101. name: "Normal",
  40102. height: math.unit(8, "feet"),
  40103. default: true
  40104. },
  40105. {
  40106. name: "Big",
  40107. height: math.unit(12, "feet")
  40108. },
  40109. {
  40110. name: "Macro",
  40111. height: math.unit(30, "feet")
  40112. },
  40113. ]
  40114. ))
  40115. characterMakers.push(() => makeCharacter(
  40116. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40117. {
  40118. front: {
  40119. height: math.unit(14, "feet"),
  40120. weight: math.unit(9.5, "tonnes"),
  40121. name: "Front",
  40122. image: {
  40123. source: "./media/characters/dawnheart/front.svg",
  40124. extra: 2792/2675,
  40125. bottom: 64/2856
  40126. }
  40127. },
  40128. },
  40129. [
  40130. {
  40131. name: "Normal",
  40132. height: math.unit(14, "feet"),
  40133. default: true
  40134. },
  40135. ]
  40136. ))
  40137. characterMakers.push(() => makeCharacter(
  40138. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40139. {
  40140. front: {
  40141. height: math.unit(1.7, "m"),
  40142. name: "Front",
  40143. image: {
  40144. source: "./media/characters/gladi/front.svg",
  40145. extra: 1460/1362,
  40146. bottom: 19/1479
  40147. }
  40148. },
  40149. back: {
  40150. height: math.unit(1.7, "m"),
  40151. name: "Back",
  40152. image: {
  40153. source: "./media/characters/gladi/back.svg",
  40154. extra: 1459/1357,
  40155. bottom: 12/1471
  40156. }
  40157. },
  40158. feral: {
  40159. height: math.unit(2.05, "m"),
  40160. name: "Feral",
  40161. image: {
  40162. source: "./media/characters/gladi/feral.svg",
  40163. extra: 821/557,
  40164. bottom: 91/912
  40165. }
  40166. },
  40167. },
  40168. [
  40169. {
  40170. name: "Shortest",
  40171. height: math.unit(70, "cm")
  40172. },
  40173. {
  40174. name: "Normal",
  40175. height: math.unit(1.7, "m")
  40176. },
  40177. {
  40178. name: "Macro",
  40179. height: math.unit(10, "m"),
  40180. default: true
  40181. },
  40182. {
  40183. name: "Tallest",
  40184. height: math.unit(200, "m")
  40185. },
  40186. ]
  40187. ))
  40188. characterMakers.push(() => makeCharacter(
  40189. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40190. {
  40191. front: {
  40192. height: math.unit(5 + 7/12, "feet"),
  40193. weight: math.unit(2, "tons"),
  40194. name: "Front",
  40195. image: {
  40196. source: "./media/characters/erdno/front.svg",
  40197. extra: 1234/1129,
  40198. bottom: 35/1269
  40199. }
  40200. },
  40201. angled: {
  40202. height: math.unit(5 + 7/12, "feet"),
  40203. weight: math.unit(2, "tons"),
  40204. name: "Angled",
  40205. image: {
  40206. source: "./media/characters/erdno/angled.svg",
  40207. extra: 1185/1139,
  40208. bottom: 36/1221
  40209. }
  40210. },
  40211. side: {
  40212. height: math.unit(5 + 7/12, "feet"),
  40213. weight: math.unit(2, "tons"),
  40214. name: "Side",
  40215. image: {
  40216. source: "./media/characters/erdno/side.svg",
  40217. extra: 1191/1144,
  40218. bottom: 40/1231
  40219. }
  40220. },
  40221. back: {
  40222. height: math.unit(5 + 7/12, "feet"),
  40223. weight: math.unit(2, "tons"),
  40224. name: "Back",
  40225. image: {
  40226. source: "./media/characters/erdno/back.svg",
  40227. extra: 1202/1146,
  40228. bottom: 17/1219
  40229. }
  40230. },
  40231. frontNsfw: {
  40232. height: math.unit(5 + 7/12, "feet"),
  40233. weight: math.unit(2, "tons"),
  40234. name: "Front (NSFW)",
  40235. image: {
  40236. source: "./media/characters/erdno/front-nsfw.svg",
  40237. extra: 1234/1129,
  40238. bottom: 35/1269
  40239. }
  40240. },
  40241. angledNsfw: {
  40242. height: math.unit(5 + 7/12, "feet"),
  40243. weight: math.unit(2, "tons"),
  40244. name: "Angled (NSFW)",
  40245. image: {
  40246. source: "./media/characters/erdno/angled-nsfw.svg",
  40247. extra: 1185/1139,
  40248. bottom: 36/1221
  40249. }
  40250. },
  40251. sideNsfw: {
  40252. height: math.unit(5 + 7/12, "feet"),
  40253. weight: math.unit(2, "tons"),
  40254. name: "Side (NSFW)",
  40255. image: {
  40256. source: "./media/characters/erdno/side-nsfw.svg",
  40257. extra: 1191/1144,
  40258. bottom: 40/1231
  40259. }
  40260. },
  40261. backNsfw: {
  40262. height: math.unit(5 + 7/12, "feet"),
  40263. weight: math.unit(2, "tons"),
  40264. name: "Back (NSFW)",
  40265. image: {
  40266. source: "./media/characters/erdno/back-nsfw.svg",
  40267. extra: 1202/1146,
  40268. bottom: 17/1219
  40269. }
  40270. },
  40271. frontHyper: {
  40272. height: math.unit(5 + 7/12, "feet"),
  40273. weight: math.unit(2, "tons"),
  40274. name: "Front (Hyper)",
  40275. image: {
  40276. source: "./media/characters/erdno/front-hyper.svg",
  40277. extra: 1298/1136,
  40278. bottom: 35/1333
  40279. }
  40280. },
  40281. },
  40282. [
  40283. {
  40284. name: "Normal",
  40285. height: math.unit(5 + 7/12, "feet"),
  40286. default: true
  40287. },
  40288. {
  40289. name: "Big",
  40290. height: math.unit(5.7, "meters")
  40291. },
  40292. {
  40293. name: "Macro",
  40294. height: math.unit(5.7, "kilometers")
  40295. },
  40296. {
  40297. name: "Megamacro",
  40298. height: math.unit(5.7, "earths")
  40299. },
  40300. ]
  40301. ))
  40302. characterMakers.push(() => makeCharacter(
  40303. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40304. {
  40305. front: {
  40306. height: math.unit(5 + 10/12, "feet"),
  40307. weight: math.unit(150, "lb"),
  40308. name: "Front",
  40309. image: {
  40310. source: "./media/characters/jamie/front.svg",
  40311. extra: 1908/1768,
  40312. bottom: 19/1927
  40313. }
  40314. },
  40315. },
  40316. [
  40317. {
  40318. name: "Minimum",
  40319. height: math.unit(2, "cm")
  40320. },
  40321. {
  40322. name: "Micro",
  40323. height: math.unit(3, "inches")
  40324. },
  40325. {
  40326. name: "Normal",
  40327. height: math.unit(5 + 10/12, "feet"),
  40328. default: true
  40329. },
  40330. {
  40331. name: "Macro",
  40332. height: math.unit(150, "feet")
  40333. },
  40334. {
  40335. name: "Megamacro",
  40336. height: math.unit(10000, "m")
  40337. },
  40338. ]
  40339. ))
  40340. characterMakers.push(() => makeCharacter(
  40341. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40342. {
  40343. front: {
  40344. height: math.unit(2, "meters"),
  40345. weight: math.unit(100, "kg"),
  40346. name: "Front",
  40347. image: {
  40348. source: "./media/characters/shiron/front.svg",
  40349. extra: 2103/1985,
  40350. bottom: 98/2201
  40351. }
  40352. },
  40353. back: {
  40354. height: math.unit(2, "meters"),
  40355. weight: math.unit(100, "kg"),
  40356. name: "Back",
  40357. image: {
  40358. source: "./media/characters/shiron/back.svg",
  40359. extra: 2110/2015,
  40360. bottom: 89/2199
  40361. }
  40362. },
  40363. hand: {
  40364. height: math.unit(0.96, "feet"),
  40365. name: "Hand",
  40366. image: {
  40367. source: "./media/characters/shiron/hand.svg"
  40368. }
  40369. },
  40370. foot: {
  40371. height: math.unit(1.464, "feet"),
  40372. name: "Foot",
  40373. image: {
  40374. source: "./media/characters/shiron/foot.svg"
  40375. }
  40376. },
  40377. },
  40378. [
  40379. {
  40380. name: "Normal",
  40381. height: math.unit(2, "meters")
  40382. },
  40383. {
  40384. name: "Macro",
  40385. height: math.unit(500, "meters"),
  40386. default: true
  40387. },
  40388. {
  40389. name: "Megamacro",
  40390. height: math.unit(20, "km")
  40391. },
  40392. ]
  40393. ))
  40394. characterMakers.push(() => makeCharacter(
  40395. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40396. {
  40397. front: {
  40398. height: math.unit(6, "feet"),
  40399. name: "Front",
  40400. image: {
  40401. source: "./media/characters/sam/front.svg",
  40402. extra: 849/826,
  40403. bottom: 19/868
  40404. }
  40405. },
  40406. },
  40407. [
  40408. {
  40409. name: "Normal",
  40410. height: math.unit(6, "feet"),
  40411. default: true
  40412. },
  40413. ]
  40414. ))
  40415. characterMakers.push(() => makeCharacter(
  40416. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40417. {
  40418. front: {
  40419. height: math.unit(8 + 4/12, "feet"),
  40420. weight: math.unit(122, "kg"),
  40421. name: "Front",
  40422. image: {
  40423. source: "./media/characters/namori-kurogawa/front.svg",
  40424. extra: 1894/1576,
  40425. bottom: 34/1928
  40426. }
  40427. },
  40428. },
  40429. [
  40430. {
  40431. name: "Normal",
  40432. height: math.unit(8 + 4/12, "feet"),
  40433. default: true
  40434. },
  40435. ]
  40436. ))
  40437. characterMakers.push(() => makeCharacter(
  40438. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40439. {
  40440. front: {
  40441. height: math.unit(9, "feet"),
  40442. weight: math.unit(621, "lb"),
  40443. name: "Front",
  40444. image: {
  40445. source: "./media/characters/unmru/front.svg",
  40446. extra: 1853/1747,
  40447. bottom: 73/1926
  40448. }
  40449. },
  40450. side: {
  40451. height: math.unit(9, "feet"),
  40452. weight: math.unit(621, "lb"),
  40453. name: "Side",
  40454. image: {
  40455. source: "./media/characters/unmru/side.svg",
  40456. extra: 1781/1671,
  40457. bottom: 127/1908
  40458. }
  40459. },
  40460. back: {
  40461. height: math.unit(9, "feet"),
  40462. weight: math.unit(621, "lb"),
  40463. name: "Back",
  40464. image: {
  40465. source: "./media/characters/unmru/back.svg",
  40466. extra: 1894/1765,
  40467. bottom: 75/1969
  40468. }
  40469. },
  40470. dick: {
  40471. height: math.unit(3, "feet"),
  40472. weight: math.unit(35, "lb"),
  40473. name: "Dick",
  40474. image: {
  40475. source: "./media/characters/unmru/dick.svg"
  40476. }
  40477. },
  40478. },
  40479. [
  40480. {
  40481. name: "Normal",
  40482. height: math.unit(9, "feet")
  40483. },
  40484. {
  40485. name: "Natural",
  40486. height: math.unit(27, "feet"),
  40487. default: true
  40488. },
  40489. {
  40490. name: "Giant",
  40491. height: math.unit(90, "feet")
  40492. },
  40493. {
  40494. name: "Kaiju",
  40495. height: math.unit(270, "feet")
  40496. },
  40497. {
  40498. name: "Macro",
  40499. height: math.unit(900, "feet")
  40500. },
  40501. {
  40502. name: "Macro+",
  40503. height: math.unit(2700, "feet")
  40504. },
  40505. {
  40506. name: "Megamacro",
  40507. height: math.unit(9000, "feet")
  40508. },
  40509. {
  40510. name: "City-Crushing",
  40511. height: math.unit(27000, "feet")
  40512. },
  40513. {
  40514. name: "Mountain-Mashing",
  40515. height: math.unit(90000, "feet")
  40516. },
  40517. {
  40518. name: "Earth-Eclipsing",
  40519. height: math.unit(2.7e8, "feet")
  40520. },
  40521. {
  40522. name: "Sol-Swallowing",
  40523. height: math.unit(9e10, "feet")
  40524. },
  40525. {
  40526. name: "Majoris-Munching",
  40527. height: math.unit(2.7e13, "feet")
  40528. },
  40529. ]
  40530. ))
  40531. characterMakers.push(() => makeCharacter(
  40532. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40533. {
  40534. front: {
  40535. height: math.unit(1, "inch"),
  40536. name: "Front",
  40537. image: {
  40538. source: "./media/characters/squeaks-mouse/front.svg",
  40539. extra: 352/308,
  40540. bottom: 25/377
  40541. }
  40542. },
  40543. },
  40544. [
  40545. {
  40546. name: "Micro",
  40547. height: math.unit(1, "inch"),
  40548. default: true
  40549. },
  40550. ]
  40551. ))
  40552. characterMakers.push(() => makeCharacter(
  40553. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40554. {
  40555. side: {
  40556. height: math.unit(35, "feet"),
  40557. name: "Side",
  40558. image: {
  40559. source: "./media/characters/sayko/side.svg",
  40560. extra: 1697/1021,
  40561. bottom: 82/1779
  40562. }
  40563. },
  40564. head: {
  40565. height: math.unit(16, "feet"),
  40566. name: "Head",
  40567. image: {
  40568. source: "./media/characters/sayko/head.svg"
  40569. }
  40570. },
  40571. forepaw: {
  40572. height: math.unit(7.85, "feet"),
  40573. name: "Forepaw",
  40574. image: {
  40575. source: "./media/characters/sayko/forepaw.svg"
  40576. }
  40577. },
  40578. hindpaw: {
  40579. height: math.unit(8.8, "feet"),
  40580. name: "Hindpaw",
  40581. image: {
  40582. source: "./media/characters/sayko/hindpaw.svg"
  40583. }
  40584. },
  40585. },
  40586. [
  40587. {
  40588. name: "Normal",
  40589. height: math.unit(35, "feet"),
  40590. default: true
  40591. },
  40592. {
  40593. name: "Colossus",
  40594. height: math.unit(100, "meters")
  40595. },
  40596. {
  40597. name: "\"Small\" Deity",
  40598. height: math.unit(1, "km")
  40599. },
  40600. {
  40601. name: "\"Large\" Deity",
  40602. height: math.unit(15, "km")
  40603. },
  40604. ]
  40605. ))
  40606. characterMakers.push(() => makeCharacter(
  40607. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40608. {
  40609. front: {
  40610. height: math.unit(6, "feet"),
  40611. weight: math.unit(250, "lb"),
  40612. name: "Front",
  40613. image: {
  40614. source: "./media/characters/mukiro/front.svg",
  40615. extra: 1368/1310,
  40616. bottom: 34/1402
  40617. }
  40618. },
  40619. },
  40620. [
  40621. {
  40622. name: "Normal",
  40623. height: math.unit(6, "feet"),
  40624. default: true
  40625. },
  40626. ]
  40627. ))
  40628. characterMakers.push(() => makeCharacter(
  40629. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40630. {
  40631. front: {
  40632. height: math.unit(12 + 4/12, "feet"),
  40633. name: "Front",
  40634. image: {
  40635. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40636. extra: 1346/1311,
  40637. bottom: 65/1411
  40638. }
  40639. },
  40640. },
  40641. [
  40642. {
  40643. name: "Base",
  40644. height: math.unit(12 + 4/12, "feet"),
  40645. default: true
  40646. },
  40647. {
  40648. name: "Macro",
  40649. height: math.unit(150, "feet")
  40650. },
  40651. {
  40652. name: "Mega",
  40653. height: math.unit(2, "miles")
  40654. },
  40655. {
  40656. name: "Demi God",
  40657. height: math.unit(4, "AU")
  40658. },
  40659. {
  40660. name: "God Size",
  40661. height: math.unit(1, "universe")
  40662. },
  40663. ]
  40664. ))
  40665. characterMakers.push(() => makeCharacter(
  40666. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40667. {
  40668. front: {
  40669. height: math.unit(3 + 3/12, "feet"),
  40670. weight: math.unit(88, "lb"),
  40671. name: "Front",
  40672. image: {
  40673. source: "./media/characters/trey/front.svg",
  40674. extra: 1815/1509,
  40675. bottom: 60/1875
  40676. }
  40677. },
  40678. },
  40679. [
  40680. {
  40681. name: "Normal",
  40682. height: math.unit(3 + 3/12, "feet"),
  40683. default: true
  40684. },
  40685. ]
  40686. ))
  40687. characterMakers.push(() => makeCharacter(
  40688. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40689. {
  40690. front: {
  40691. height: math.unit(4, "meters"),
  40692. name: "Front",
  40693. image: {
  40694. source: "./media/characters/adelonda/front.svg",
  40695. extra: 1077/982,
  40696. bottom: 39/1116
  40697. }
  40698. },
  40699. back: {
  40700. height: math.unit(4, "meters"),
  40701. name: "Back",
  40702. image: {
  40703. source: "./media/characters/adelonda/back.svg",
  40704. extra: 1105/1003,
  40705. bottom: 25/1130
  40706. }
  40707. },
  40708. feral: {
  40709. height: math.unit(40/1.5, "meters"),
  40710. name: "Feral",
  40711. image: {
  40712. source: "./media/characters/adelonda/feral.svg",
  40713. extra: 597/271,
  40714. bottom: 387/984
  40715. }
  40716. },
  40717. },
  40718. [
  40719. {
  40720. name: "Normal",
  40721. height: math.unit(4, "meters"),
  40722. default: true
  40723. },
  40724. ]
  40725. ))
  40726. characterMakers.push(() => makeCharacter(
  40727. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40728. {
  40729. front: {
  40730. height: math.unit(8 + 4/12, "feet"),
  40731. weight: math.unit(670, "lb"),
  40732. name: "Front",
  40733. image: {
  40734. source: "./media/characters/acadiel/front.svg",
  40735. extra: 1901/1595,
  40736. bottom: 142/2043
  40737. }
  40738. },
  40739. },
  40740. [
  40741. {
  40742. name: "Normal",
  40743. height: math.unit(8 + 4/12, "feet"),
  40744. default: true
  40745. },
  40746. {
  40747. name: "Macro",
  40748. height: math.unit(200, "feet")
  40749. },
  40750. ]
  40751. ))
  40752. characterMakers.push(() => makeCharacter(
  40753. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40754. {
  40755. front: {
  40756. height: math.unit(6 + 2/12, "feet"),
  40757. weight: math.unit(185, "lb"),
  40758. name: "Front",
  40759. image: {
  40760. source: "./media/characters/kayne-ein/front.svg",
  40761. extra: 1780/1560,
  40762. bottom: 81/1861
  40763. }
  40764. },
  40765. },
  40766. [
  40767. {
  40768. name: "Normal",
  40769. height: math.unit(6 + 2/12, "feet"),
  40770. default: true
  40771. },
  40772. {
  40773. name: "Transformation Stage",
  40774. height: math.unit(15, "feet")
  40775. },
  40776. {
  40777. name: "Macro",
  40778. height: math.unit(150, "feet")
  40779. },
  40780. {
  40781. name: "Earth's Shadow",
  40782. height: math.unit(6200, "miles")
  40783. },
  40784. {
  40785. name: "Universal Demon",
  40786. height: math.unit(28e9, "parsecs")
  40787. },
  40788. {
  40789. name: "Multiverse God",
  40790. height: math.unit(3, "multiverses")
  40791. },
  40792. ]
  40793. ))
  40794. characterMakers.push(() => makeCharacter(
  40795. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40796. {
  40797. front: {
  40798. height: math.unit(5 + 5/12, "feet"),
  40799. name: "Front",
  40800. image: {
  40801. source: "./media/characters/fawn/front.svg",
  40802. extra: 1873/1731,
  40803. bottom: 95/1968
  40804. }
  40805. },
  40806. back: {
  40807. height: math.unit(5 + 5/12, "feet"),
  40808. name: "Back",
  40809. image: {
  40810. source: "./media/characters/fawn/back.svg",
  40811. extra: 1813/1700,
  40812. bottom: 14/1827
  40813. }
  40814. },
  40815. hoof: {
  40816. height: math.unit(1.45, "feet"),
  40817. name: "Hoof",
  40818. image: {
  40819. source: "./media/characters/fawn/hoof.svg"
  40820. }
  40821. },
  40822. },
  40823. [
  40824. {
  40825. name: "Normal",
  40826. height: math.unit(5 + 5/12, "feet"),
  40827. default: true
  40828. },
  40829. ]
  40830. ))
  40831. characterMakers.push(() => makeCharacter(
  40832. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40833. {
  40834. front: {
  40835. height: math.unit(2 + 5/12, "feet"),
  40836. name: "Front",
  40837. image: {
  40838. source: "./media/characters/orion/front.svg",
  40839. extra: 1366/1304,
  40840. bottom: 43/1409
  40841. }
  40842. },
  40843. paw: {
  40844. height: math.unit(0.52, "feet"),
  40845. name: "Paw",
  40846. image: {
  40847. source: "./media/characters/orion/paw.svg"
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Normal",
  40854. height: math.unit(2 + 5/12, "feet"),
  40855. default: true
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40861. {
  40862. front: {
  40863. height: math.unit(5 + 10/12, "feet"),
  40864. name: "Front",
  40865. image: {
  40866. source: "./media/characters/vera/front.svg",
  40867. extra: 1680/1575,
  40868. bottom: 49/1729
  40869. }
  40870. },
  40871. back: {
  40872. height: math.unit(5 + 10/12, "feet"),
  40873. name: "Back",
  40874. image: {
  40875. source: "./media/characters/vera/back.svg",
  40876. extra: 1700/1588,
  40877. bottom: 18/1718
  40878. }
  40879. },
  40880. arcanine: {
  40881. height: math.unit(6 + 8/12, "feet"),
  40882. name: "Arcanine",
  40883. image: {
  40884. source: "./media/characters/vera/arcanine.svg",
  40885. extra: 1590/1511,
  40886. bottom: 71/1661
  40887. }
  40888. },
  40889. maw: {
  40890. height: math.unit(0.82, "feet"),
  40891. name: "Maw",
  40892. image: {
  40893. source: "./media/characters/vera/maw.svg"
  40894. }
  40895. },
  40896. mawArcanine: {
  40897. height: math.unit(0.97, "feet"),
  40898. name: "Maw (Arcanine)",
  40899. image: {
  40900. source: "./media/characters/vera/maw-arcanine.svg"
  40901. }
  40902. },
  40903. paw: {
  40904. height: math.unit(0.75, "feet"),
  40905. name: "Paw",
  40906. image: {
  40907. source: "./media/characters/vera/paw.svg"
  40908. }
  40909. },
  40910. pawprint: {
  40911. height: math.unit(0.52, "feet"),
  40912. name: "Pawprint",
  40913. image: {
  40914. source: "./media/characters/vera/pawprint.svg"
  40915. }
  40916. },
  40917. },
  40918. [
  40919. {
  40920. name: "Normal",
  40921. height: math.unit(5 + 10/12, "feet"),
  40922. default: true
  40923. },
  40924. {
  40925. name: "Macro",
  40926. height: math.unit(75, "feet")
  40927. },
  40928. ]
  40929. ))
  40930. characterMakers.push(() => makeCharacter(
  40931. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40932. {
  40933. front: {
  40934. height: math.unit(4, "feet"),
  40935. weight: math.unit(40, "lb"),
  40936. name: "Front",
  40937. image: {
  40938. source: "./media/characters/orvan-rabbit/front.svg",
  40939. extra: 1896/1642,
  40940. bottom: 29/1925
  40941. }
  40942. },
  40943. },
  40944. [
  40945. {
  40946. name: "Normal",
  40947. height: math.unit(4, "feet"),
  40948. default: true
  40949. },
  40950. ]
  40951. ))
  40952. characterMakers.push(() => makeCharacter(
  40953. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40954. {
  40955. front: {
  40956. height: math.unit(6, "feet"),
  40957. weight: math.unit(168, "lb"),
  40958. name: "Front",
  40959. image: {
  40960. source: "./media/characters/lisa/front.svg",
  40961. extra: 2065/1867,
  40962. bottom: 46/2111
  40963. }
  40964. },
  40965. back: {
  40966. height: math.unit(6, "feet"),
  40967. weight: math.unit(168, "lb"),
  40968. name: "Back",
  40969. image: {
  40970. source: "./media/characters/lisa/back.svg",
  40971. extra: 1982/1838,
  40972. bottom: 29/2011
  40973. }
  40974. },
  40975. maw: {
  40976. height: math.unit(0.81, "feet"),
  40977. name: "Maw",
  40978. image: {
  40979. source: "./media/characters/lisa/maw.svg"
  40980. }
  40981. },
  40982. paw: {
  40983. height: math.unit(0.9, "feet"),
  40984. name: "Paw",
  40985. image: {
  40986. source: "./media/characters/lisa/paw.svg"
  40987. }
  40988. },
  40989. caribousune: {
  40990. height: math.unit(7 + 2/12, "feet"),
  40991. weight: math.unit(268, "lb"),
  40992. name: "Caribousune",
  40993. image: {
  40994. source: "./media/characters/lisa/caribousune.svg",
  40995. extra: 1843/1633,
  40996. bottom: 29/1872
  40997. }
  40998. },
  40999. frontCaribousune: {
  41000. height: math.unit(7 + 2/12, "feet"),
  41001. weight: math.unit(268, "lb"),
  41002. name: "Front (Caribousune)",
  41003. image: {
  41004. source: "./media/characters/lisa/front-caribousune.svg",
  41005. extra: 1818/1638,
  41006. bottom: 52/1870
  41007. }
  41008. },
  41009. sideCaribousune: {
  41010. height: math.unit(7 + 2/12, "feet"),
  41011. weight: math.unit(268, "lb"),
  41012. name: "Side (Caribousune)",
  41013. image: {
  41014. source: "./media/characters/lisa/side-caribousune.svg",
  41015. extra: 1851/1635,
  41016. bottom: 16/1867
  41017. }
  41018. },
  41019. backCaribousune: {
  41020. height: math.unit(7 + 2/12, "feet"),
  41021. weight: math.unit(268, "lb"),
  41022. name: "Back (Caribousune)",
  41023. image: {
  41024. source: "./media/characters/lisa/back-caribousune.svg",
  41025. extra: 1801/1604,
  41026. bottom: 44/1845
  41027. }
  41028. },
  41029. caribou: {
  41030. height: math.unit(7 + 2/12, "feet"),
  41031. weight: math.unit(268, "lb"),
  41032. name: "Caribou",
  41033. image: {
  41034. source: "./media/characters/lisa/caribou.svg",
  41035. extra: 1843/1633,
  41036. bottom: 29/1872
  41037. }
  41038. },
  41039. frontCaribou: {
  41040. height: math.unit(7 + 2/12, "feet"),
  41041. weight: math.unit(268, "lb"),
  41042. name: "Front (Caribou)",
  41043. image: {
  41044. source: "./media/characters/lisa/front-caribou.svg",
  41045. extra: 1818/1638,
  41046. bottom: 52/1870
  41047. }
  41048. },
  41049. sideCaribou: {
  41050. height: math.unit(7 + 2/12, "feet"),
  41051. weight: math.unit(268, "lb"),
  41052. name: "Side (Caribou)",
  41053. image: {
  41054. source: "./media/characters/lisa/side-caribou.svg",
  41055. extra: 1851/1635,
  41056. bottom: 16/1867
  41057. }
  41058. },
  41059. backCaribou: {
  41060. height: math.unit(7 + 2/12, "feet"),
  41061. weight: math.unit(268, "lb"),
  41062. name: "Back (Caribou)",
  41063. image: {
  41064. source: "./media/characters/lisa/back-caribou.svg",
  41065. extra: 1801/1604,
  41066. bottom: 44/1845
  41067. }
  41068. },
  41069. mawCaribou: {
  41070. height: math.unit(1.45, "feet"),
  41071. name: "Maw (Caribou)",
  41072. image: {
  41073. source: "./media/characters/lisa/maw-caribou.svg"
  41074. }
  41075. },
  41076. mawCaribousune: {
  41077. height: math.unit(1.45, "feet"),
  41078. name: "Maw (Caribousune)",
  41079. image: {
  41080. source: "./media/characters/lisa/maw-caribousune.svg"
  41081. }
  41082. },
  41083. pawCaribousune: {
  41084. height: math.unit(1.61, "feet"),
  41085. name: "Paw (Caribou)",
  41086. image: {
  41087. source: "./media/characters/lisa/paw-caribousune.svg"
  41088. }
  41089. },
  41090. },
  41091. [
  41092. {
  41093. name: "Normal",
  41094. height: math.unit(6, "feet")
  41095. },
  41096. {
  41097. name: "God Size",
  41098. height: math.unit(72, "feet"),
  41099. default: true
  41100. },
  41101. {
  41102. name: "Towering",
  41103. height: math.unit(288, "feet")
  41104. },
  41105. {
  41106. name: "City Size",
  41107. height: math.unit(48384, "feet")
  41108. },
  41109. {
  41110. name: "Continental",
  41111. height: math.unit(4200, "miles")
  41112. },
  41113. {
  41114. name: "Planet Eater",
  41115. height: math.unit(42, "earths")
  41116. },
  41117. {
  41118. name: "Star Swallower",
  41119. height: math.unit(42, "solarradii")
  41120. },
  41121. {
  41122. name: "System Swallower",
  41123. height: math.unit(84000, "AU")
  41124. },
  41125. {
  41126. name: "Galaxy Gobbler",
  41127. height: math.unit(42, "galaxies")
  41128. },
  41129. {
  41130. name: "Universe Devourer",
  41131. height: math.unit(42, "universes")
  41132. },
  41133. {
  41134. name: "Multiverse Muncher",
  41135. height: math.unit(42, "multiverses")
  41136. },
  41137. ]
  41138. ))
  41139. characterMakers.push(() => makeCharacter(
  41140. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41141. {
  41142. front: {
  41143. height: math.unit(36, "feet"),
  41144. name: "Front",
  41145. image: {
  41146. source: "./media/characters/shadow-rat/front.svg",
  41147. extra: 1845/1758,
  41148. bottom: 83/1928
  41149. }
  41150. },
  41151. },
  41152. [
  41153. {
  41154. name: "Macro",
  41155. height: math.unit(36, "feet"),
  41156. default: true
  41157. },
  41158. ]
  41159. ))
  41160. characterMakers.push(() => makeCharacter(
  41161. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41162. {
  41163. side: {
  41164. height: math.unit(8, "feet"),
  41165. weight: math.unit(2630, "lb"),
  41166. name: "Side",
  41167. image: {
  41168. source: "./media/characters/torallia/side.svg",
  41169. extra: 2164/2021,
  41170. bottom: 371/2535
  41171. }
  41172. },
  41173. },
  41174. [
  41175. {
  41176. name: "Mortal Interaction",
  41177. height: math.unit(8, "feet")
  41178. },
  41179. {
  41180. name: "Natural",
  41181. height: math.unit(24, "feet"),
  41182. default: true
  41183. },
  41184. {
  41185. name: "Giant",
  41186. height: math.unit(80, "feet")
  41187. },
  41188. {
  41189. name: "Kaiju",
  41190. height: math.unit(240, "feet")
  41191. },
  41192. {
  41193. name: "Macro",
  41194. height: math.unit(800, "feet")
  41195. },
  41196. {
  41197. name: "Macro+",
  41198. height: math.unit(2400, "feet")
  41199. },
  41200. {
  41201. name: "Macro++",
  41202. height: math.unit(8000, "feet")
  41203. },
  41204. {
  41205. name: "City-Crushing",
  41206. height: math.unit(24000, "feet")
  41207. },
  41208. {
  41209. name: "Mountain-Mashing",
  41210. height: math.unit(80000, "feet")
  41211. },
  41212. {
  41213. name: "District Demolisher",
  41214. height: math.unit(240000, "feet")
  41215. },
  41216. {
  41217. name: "Tri-County Terror",
  41218. height: math.unit(800000, "feet")
  41219. },
  41220. {
  41221. name: "State Smasher",
  41222. height: math.unit(2.4e6, "feet")
  41223. },
  41224. {
  41225. name: "Nation Nemesis",
  41226. height: math.unit(8e6, "feet")
  41227. },
  41228. {
  41229. name: "Continent Cracker",
  41230. height: math.unit(2.4e7, "feet")
  41231. },
  41232. {
  41233. name: "Planet-Pillaging",
  41234. height: math.unit(8e7, "feet")
  41235. },
  41236. {
  41237. name: "Earth-Eclipsing",
  41238. height: math.unit(2.4e8, "feet")
  41239. },
  41240. {
  41241. name: "Jovian-Jostling",
  41242. height: math.unit(8e8, "feet")
  41243. },
  41244. {
  41245. name: "Gas Giant Gulper",
  41246. height: math.unit(2.4e9, "feet")
  41247. },
  41248. {
  41249. name: "Astral Annihilator",
  41250. height: math.unit(8e9, "feet")
  41251. },
  41252. {
  41253. name: "Celestial Conqueror",
  41254. height: math.unit(2.4e10, "feet")
  41255. },
  41256. {
  41257. name: "Sol-Swallowing",
  41258. height: math.unit(8e10, "feet")
  41259. },
  41260. {
  41261. name: "Hunter of the Heavens",
  41262. height: math.unit(2.4e13, "feet")
  41263. },
  41264. ]
  41265. ))
  41266. characterMakers.push(() => makeCharacter(
  41267. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41268. {
  41269. front: {
  41270. height: math.unit(6 + 8/12, "feet"),
  41271. weight: math.unit(250, "kilograms"),
  41272. volume: math.unit(28, "liters"),
  41273. name: "Front",
  41274. image: {
  41275. source: "./media/characters/rebecca-pawlson/front.svg",
  41276. extra: 1737/1596,
  41277. bottom: 107/1844
  41278. }
  41279. },
  41280. back: {
  41281. height: math.unit(6 + 8/12, "feet"),
  41282. weight: math.unit(250, "kilograms"),
  41283. volume: math.unit(28, "liters"),
  41284. name: "Back",
  41285. image: {
  41286. source: "./media/characters/rebecca-pawlson/back.svg",
  41287. extra: 1702/1523,
  41288. bottom: 86/1788
  41289. }
  41290. },
  41291. },
  41292. [
  41293. {
  41294. name: "Normal",
  41295. height: math.unit(6 + 8/12, "feet")
  41296. },
  41297. {
  41298. name: "Mini Macro",
  41299. height: math.unit(10, "feet"),
  41300. default: true
  41301. },
  41302. {
  41303. name: "Macro",
  41304. height: math.unit(100, "feet")
  41305. },
  41306. {
  41307. name: "Mega Macro",
  41308. height: math.unit(2500, "feet")
  41309. },
  41310. {
  41311. name: "Giga Macro",
  41312. height: math.unit(50, "miles")
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41318. {
  41319. front: {
  41320. height: math.unit(7 + 6/12, "feet"),
  41321. weight: math.unit(600, "lb"),
  41322. name: "Front",
  41323. image: {
  41324. source: "./media/characters/moxie-nova/front.svg",
  41325. extra: 1734/1652,
  41326. bottom: 41/1775
  41327. }
  41328. },
  41329. },
  41330. [
  41331. {
  41332. name: "Normal",
  41333. height: math.unit(7 + 6/12, "feet"),
  41334. default: true
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41340. {
  41341. goat: {
  41342. height: math.unit(4, "feet"),
  41343. weight: math.unit(180, "lb"),
  41344. name: "Goat",
  41345. image: {
  41346. source: "./media/characters/tiffany/goat.svg",
  41347. extra: 1845/1595,
  41348. bottom: 106/1951
  41349. }
  41350. },
  41351. front: {
  41352. height: math.unit(5, "feet"),
  41353. weight: math.unit(150, "lb"),
  41354. name: "Foxcoon",
  41355. image: {
  41356. source: "./media/characters/tiffany/foxcoon.svg",
  41357. extra: 1941/1845,
  41358. bottom: 58/1999
  41359. }
  41360. },
  41361. },
  41362. [
  41363. {
  41364. name: "Normal",
  41365. height: math.unit(5, "feet"),
  41366. default: true
  41367. },
  41368. ]
  41369. ))
  41370. characterMakers.push(() => makeCharacter(
  41371. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41372. {
  41373. front: {
  41374. height: math.unit(8, "feet"),
  41375. weight: math.unit(300, "lb"),
  41376. name: "Front",
  41377. image: {
  41378. source: "./media/characters/raxinath/front.svg",
  41379. extra: 1407/1309,
  41380. bottom: 39/1446
  41381. }
  41382. },
  41383. back: {
  41384. height: math.unit(8, "feet"),
  41385. weight: math.unit(300, "lb"),
  41386. name: "Back",
  41387. image: {
  41388. source: "./media/characters/raxinath/back.svg",
  41389. extra: 1405/1315,
  41390. bottom: 9/1414
  41391. }
  41392. },
  41393. },
  41394. [
  41395. {
  41396. name: "Speck",
  41397. height: math.unit(0.5, "nm")
  41398. },
  41399. {
  41400. name: "Micro",
  41401. height: math.unit(3, "inches")
  41402. },
  41403. {
  41404. name: "Kobold",
  41405. height: math.unit(3, "feet")
  41406. },
  41407. {
  41408. name: "Normal",
  41409. height: math.unit(8, "feet"),
  41410. default: true
  41411. },
  41412. {
  41413. name: "Giant",
  41414. height: math.unit(50, "feet")
  41415. },
  41416. {
  41417. name: "Macro",
  41418. height: math.unit(1000, "feet")
  41419. },
  41420. {
  41421. name: "Megamacro",
  41422. height: math.unit(1, "mile")
  41423. },
  41424. ]
  41425. ))
  41426. characterMakers.push(() => makeCharacter(
  41427. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41428. {
  41429. front: {
  41430. height: math.unit(10, "feet"),
  41431. weight: math.unit(1442, "lb"),
  41432. name: "Front",
  41433. image: {
  41434. source: "./media/characters/mal-dragon/front.svg",
  41435. extra: 1515/1444,
  41436. bottom: 113/1628
  41437. }
  41438. },
  41439. back: {
  41440. height: math.unit(10, "feet"),
  41441. weight: math.unit(1442, "lb"),
  41442. name: "Back",
  41443. image: {
  41444. source: "./media/characters/mal-dragon/back.svg",
  41445. extra: 1527/1434,
  41446. bottom: 25/1552
  41447. }
  41448. },
  41449. },
  41450. [
  41451. {
  41452. name: "Mortal Interaction",
  41453. height: math.unit(10, "feet"),
  41454. default: true
  41455. },
  41456. {
  41457. name: "Large",
  41458. height: math.unit(30, "feet")
  41459. },
  41460. {
  41461. name: "Kaiju",
  41462. height: math.unit(300, "feet")
  41463. },
  41464. {
  41465. name: "Megamacro",
  41466. height: math.unit(10000, "feet")
  41467. },
  41468. {
  41469. name: "Continent Cracker",
  41470. height: math.unit(30000000, "feet")
  41471. },
  41472. {
  41473. name: "Sol-Swallowing",
  41474. height: math.unit(1e11, "feet")
  41475. },
  41476. {
  41477. name: "Light Universal",
  41478. height: math.unit(5, "universes")
  41479. },
  41480. {
  41481. name: "Universe Atoms",
  41482. height: math.unit(1.829e9, "universes")
  41483. },
  41484. {
  41485. name: "Light Multiversal",
  41486. height: math.unit(5, "multiverses")
  41487. },
  41488. {
  41489. name: "Multiverse Atoms",
  41490. height: math.unit(1.829e9, "multiverses")
  41491. },
  41492. {
  41493. name: "Fabric of Time",
  41494. height: math.unit(1e262, "multiverses")
  41495. },
  41496. ]
  41497. ))
  41498. characterMakers.push(() => makeCharacter(
  41499. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41500. {
  41501. front: {
  41502. height: math.unit(9, "feet"),
  41503. weight: math.unit(1050, "lb"),
  41504. name: "Front",
  41505. image: {
  41506. source: "./media/characters/tabitha/front.svg",
  41507. extra: 2083/1994,
  41508. bottom: 68/2151
  41509. }
  41510. },
  41511. },
  41512. [
  41513. {
  41514. name: "Baseline",
  41515. height: math.unit(9, "feet"),
  41516. default: true
  41517. },
  41518. {
  41519. name: "Giant",
  41520. height: math.unit(90, "feet")
  41521. },
  41522. {
  41523. name: "Macro",
  41524. height: math.unit(900, "feet")
  41525. },
  41526. {
  41527. name: "Megamacro",
  41528. height: math.unit(9000, "feet")
  41529. },
  41530. {
  41531. name: "City-Crushing",
  41532. height: math.unit(27000, "feet")
  41533. },
  41534. {
  41535. name: "Mountain-Mashing",
  41536. height: math.unit(90000, "feet")
  41537. },
  41538. {
  41539. name: "Nation Nemesis",
  41540. height: math.unit(9e6, "feet")
  41541. },
  41542. {
  41543. name: "Continent Cracker",
  41544. height: math.unit(27e6, "feet")
  41545. },
  41546. {
  41547. name: "Earth-Eclipsing",
  41548. height: math.unit(2.7e8, "feet")
  41549. },
  41550. {
  41551. name: "Gas Giant Gulper",
  41552. height: math.unit(2.7e9, "feet")
  41553. },
  41554. {
  41555. name: "Sol-Swallowing",
  41556. height: math.unit(9e10, "feet")
  41557. },
  41558. {
  41559. name: "Galaxy Gulper",
  41560. height: math.unit(9, "galaxies")
  41561. },
  41562. {
  41563. name: "Cosmos Churner",
  41564. height: math.unit(9, "universes")
  41565. },
  41566. ]
  41567. ))
  41568. characterMakers.push(() => makeCharacter(
  41569. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41570. {
  41571. front: {
  41572. height: math.unit(160, "cm"),
  41573. weight: math.unit(55, "kg"),
  41574. name: "Front",
  41575. image: {
  41576. source: "./media/characters/tow/front.svg",
  41577. extra: 1751/1722,
  41578. bottom: 74/1825
  41579. }
  41580. },
  41581. },
  41582. [
  41583. {
  41584. name: "Norm",
  41585. height: math.unit(160, "cm")
  41586. },
  41587. {
  41588. name: "Casual",
  41589. height: math.unit(3200, "m"),
  41590. default: true
  41591. },
  41592. {
  41593. name: "Show-Off",
  41594. height: math.unit(160, "km")
  41595. },
  41596. ]
  41597. ))
  41598. characterMakers.push(() => makeCharacter(
  41599. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41600. {
  41601. front: {
  41602. height: math.unit(7 + 11/12, "feet"),
  41603. weight: math.unit(342.8, "lb"),
  41604. name: "Front",
  41605. image: {
  41606. source: "./media/characters/vivian-orca-dragon/front.svg",
  41607. extra: 1890/1865,
  41608. bottom: 28/1918
  41609. }
  41610. },
  41611. },
  41612. [
  41613. {
  41614. name: "Micro",
  41615. height: math.unit(5, "inches")
  41616. },
  41617. {
  41618. name: "Normal",
  41619. height: math.unit(7 + 11/12, "feet"),
  41620. default: true
  41621. },
  41622. {
  41623. name: "Macro",
  41624. height: math.unit(395 + 7/12, "feet")
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41630. {
  41631. side: {
  41632. height: math.unit(10, "feet"),
  41633. weight: math.unit(1442, "lb"),
  41634. name: "Side",
  41635. image: {
  41636. source: "./media/characters/lotherakon/side.svg",
  41637. extra: 1604/1497,
  41638. bottom: 89/1693
  41639. }
  41640. },
  41641. },
  41642. [
  41643. {
  41644. name: "Mortal Interaction",
  41645. height: math.unit(10, "feet")
  41646. },
  41647. {
  41648. name: "Large",
  41649. height: math.unit(30, "feet"),
  41650. default: true
  41651. },
  41652. {
  41653. name: "Giant",
  41654. height: math.unit(100, "feet")
  41655. },
  41656. {
  41657. name: "Kaiju",
  41658. height: math.unit(300, "feet")
  41659. },
  41660. {
  41661. name: "Macro",
  41662. height: math.unit(1000, "feet")
  41663. },
  41664. {
  41665. name: "Macro+",
  41666. height: math.unit(3000, "feet")
  41667. },
  41668. {
  41669. name: "Megamacro",
  41670. height: math.unit(10000, "feet")
  41671. },
  41672. {
  41673. name: "City-Crushing",
  41674. height: math.unit(30000, "feet")
  41675. },
  41676. {
  41677. name: "Continent Cracker",
  41678. height: math.unit(30e6, "feet")
  41679. },
  41680. {
  41681. name: "Earth Eclipsing",
  41682. height: math.unit(3e8, "feet")
  41683. },
  41684. {
  41685. name: "Gas Giant Gulper",
  41686. height: math.unit(3e9, "feet")
  41687. },
  41688. {
  41689. name: "Sol-Swallowing",
  41690. height: math.unit(1e11, "feet")
  41691. },
  41692. {
  41693. name: "System Swallower",
  41694. height: math.unit(3e14, "feet")
  41695. },
  41696. {
  41697. name: "Galaxy Gulper",
  41698. height: math.unit(10, "galaxies")
  41699. },
  41700. {
  41701. name: "Light Universal",
  41702. height: math.unit(5, "universes")
  41703. },
  41704. {
  41705. name: "Universe Palm",
  41706. height: math.unit(20, "universes")
  41707. },
  41708. {
  41709. name: "Light Multiversal",
  41710. height: math.unit(5, "multiverses")
  41711. },
  41712. {
  41713. name: "Multiverse Palm",
  41714. height: math.unit(20, "multiverses")
  41715. },
  41716. {
  41717. name: "Inferno Incarnate",
  41718. height: math.unit(1e7, "multiverses")
  41719. },
  41720. ]
  41721. ))
  41722. characterMakers.push(() => makeCharacter(
  41723. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41724. {
  41725. front: {
  41726. height: math.unit(8, "feet"),
  41727. weight: math.unit(1200, "lb"),
  41728. name: "Front",
  41729. image: {
  41730. source: "./media/characters/malithee/front.svg",
  41731. extra: 1675/1640,
  41732. bottom: 162/1837
  41733. }
  41734. },
  41735. },
  41736. [
  41737. {
  41738. name: "Mortal Interaction",
  41739. height: math.unit(8, "feet"),
  41740. default: true
  41741. },
  41742. {
  41743. name: "Large",
  41744. height: math.unit(24, "feet")
  41745. },
  41746. {
  41747. name: "Kaiju",
  41748. height: math.unit(240, "feet")
  41749. },
  41750. {
  41751. name: "Megamacro",
  41752. height: math.unit(8000, "feet")
  41753. },
  41754. {
  41755. name: "Continent Cracker",
  41756. height: math.unit(24e6, "feet")
  41757. },
  41758. {
  41759. name: "Earth-Eclipsing",
  41760. height: math.unit(2.4e8, "feet")
  41761. },
  41762. {
  41763. name: "Sol-Swallowing",
  41764. height: math.unit(8e10, "feet")
  41765. },
  41766. {
  41767. name: "Galaxy Gulper",
  41768. height: math.unit(8, "galaxies")
  41769. },
  41770. {
  41771. name: "Light Universal",
  41772. height: math.unit(4, "universes")
  41773. },
  41774. {
  41775. name: "Universe Atoms",
  41776. height: math.unit(1.829e9, "universes")
  41777. },
  41778. {
  41779. name: "Light Multiversal",
  41780. height: math.unit(4, "multiverses")
  41781. },
  41782. {
  41783. name: "Multiverse Atoms",
  41784. height: math.unit(1.829e9, "multiverses")
  41785. },
  41786. {
  41787. name: "Nigh-Omnipresence",
  41788. height: math.unit(8e261, "multiverses")
  41789. },
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41794. {
  41795. front: {
  41796. height: math.unit(10, "feet"),
  41797. weight: math.unit(1500, "lb"),
  41798. name: "Front",
  41799. image: {
  41800. source: "./media/characters/miles-thestia/front.svg",
  41801. extra: 1812/1727,
  41802. bottom: 86/1898
  41803. }
  41804. },
  41805. back: {
  41806. height: math.unit(10, "feet"),
  41807. weight: math.unit(1500, "lb"),
  41808. name: "Back",
  41809. image: {
  41810. source: "./media/characters/miles-thestia/back.svg",
  41811. extra: 1799/1690,
  41812. bottom: 47/1846
  41813. }
  41814. },
  41815. frontNsfw: {
  41816. height: math.unit(10, "feet"),
  41817. weight: math.unit(1500, "lb"),
  41818. name: "Front (NSFW)",
  41819. image: {
  41820. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41821. extra: 1812/1727,
  41822. bottom: 86/1898
  41823. }
  41824. },
  41825. },
  41826. [
  41827. {
  41828. name: "Mini-Macro",
  41829. height: math.unit(10, "feet"),
  41830. default: true
  41831. },
  41832. ]
  41833. ))
  41834. characterMakers.push(() => makeCharacter(
  41835. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41836. {
  41837. front: {
  41838. height: math.unit(25, "feet"),
  41839. name: "Front",
  41840. image: {
  41841. source: "./media/characters/titan-s-wulf/front.svg",
  41842. extra: 1560/1484,
  41843. bottom: 76/1636
  41844. }
  41845. },
  41846. },
  41847. [
  41848. {
  41849. name: "Smallest",
  41850. height: math.unit(25, "feet"),
  41851. default: true
  41852. },
  41853. {
  41854. name: "Normal",
  41855. height: math.unit(200, "feet")
  41856. },
  41857. {
  41858. name: "Macro",
  41859. height: math.unit(200000, "feet")
  41860. },
  41861. {
  41862. name: "Multiversal Original",
  41863. height: math.unit(10000, "multiverses")
  41864. },
  41865. ]
  41866. ))
  41867. characterMakers.push(() => makeCharacter(
  41868. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41869. {
  41870. front: {
  41871. height: math.unit(8, "feet"),
  41872. weight: math.unit(553, "lb"),
  41873. name: "Front",
  41874. image: {
  41875. source: "./media/characters/tawendeh/front.svg",
  41876. extra: 2365/2268,
  41877. bottom: 83/2448
  41878. }
  41879. },
  41880. frontClothed: {
  41881. height: math.unit(8, "feet"),
  41882. weight: math.unit(553, "lb"),
  41883. name: "Front (Clothed)",
  41884. image: {
  41885. source: "./media/characters/tawendeh/front-clothed.svg",
  41886. extra: 2365/2268,
  41887. bottom: 83/2448
  41888. }
  41889. },
  41890. back: {
  41891. height: math.unit(8, "feet"),
  41892. weight: math.unit(553, "lb"),
  41893. name: "Back",
  41894. image: {
  41895. source: "./media/characters/tawendeh/back.svg",
  41896. extra: 2397/2294,
  41897. bottom: 42/2439
  41898. }
  41899. },
  41900. },
  41901. [
  41902. {
  41903. name: "Mortal Interaction",
  41904. height: math.unit(8, "feet"),
  41905. default: true
  41906. },
  41907. {
  41908. name: "Giant",
  41909. height: math.unit(80, "feet")
  41910. },
  41911. {
  41912. name: "Macro",
  41913. height: math.unit(800, "feet")
  41914. },
  41915. {
  41916. name: "Megamacro",
  41917. height: math.unit(8000, "feet")
  41918. },
  41919. {
  41920. name: "City-Crushing",
  41921. height: math.unit(24000, "feet")
  41922. },
  41923. {
  41924. name: "Mountain-Mashing",
  41925. height: math.unit(80000, "feet")
  41926. },
  41927. {
  41928. name: "Nation Nemesis",
  41929. height: math.unit(8e6, "feet")
  41930. },
  41931. {
  41932. name: "Continent Cracker",
  41933. height: math.unit(24e6, "feet")
  41934. },
  41935. {
  41936. name: "Earth-Eclipsing",
  41937. height: math.unit(2.4e8, "feet")
  41938. },
  41939. {
  41940. name: "Gas Giant Gulper",
  41941. height: math.unit(2.4e9, "feet")
  41942. },
  41943. {
  41944. name: "Sol-Swallowing",
  41945. height: math.unit(8e10, "feet")
  41946. },
  41947. {
  41948. name: "Galaxy Gulper",
  41949. height: math.unit(8, "galaxies")
  41950. },
  41951. {
  41952. name: "Cosmos Churner",
  41953. height: math.unit(8, "universes")
  41954. },
  41955. {
  41956. name: "Omnipotent Otter",
  41957. height: math.unit(80, "universes")
  41958. },
  41959. ]
  41960. ))
  41961. characterMakers.push(() => makeCharacter(
  41962. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41963. {
  41964. front: {
  41965. height: math.unit(2.6, "meters"),
  41966. weight: math.unit(900, "kg"),
  41967. name: "Front",
  41968. image: {
  41969. source: "./media/characters/neesha/front.svg",
  41970. extra: 1803/1653,
  41971. bottom: 128/1931
  41972. }
  41973. },
  41974. },
  41975. [
  41976. {
  41977. name: "Normal",
  41978. height: math.unit(2.6, "meters"),
  41979. default: true
  41980. },
  41981. {
  41982. name: "Macro",
  41983. height: math.unit(50, "meters")
  41984. },
  41985. ]
  41986. ))
  41987. characterMakers.push(() => makeCharacter(
  41988. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41989. {
  41990. front: {
  41991. height: math.unit(5, "feet"),
  41992. weight: math.unit(185, "lb"),
  41993. name: "Front",
  41994. image: {
  41995. source: "./media/characters/kyera/front.svg",
  41996. extra: 1875/1790,
  41997. bottom: 96/1971
  41998. }
  41999. },
  42000. },
  42001. [
  42002. {
  42003. name: "Normal",
  42004. height: math.unit(5, "feet"),
  42005. default: true
  42006. },
  42007. ]
  42008. ))
  42009. characterMakers.push(() => makeCharacter(
  42010. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42011. {
  42012. front: {
  42013. height: math.unit(7 + 6/12, "feet"),
  42014. weight: math.unit(540, "lb"),
  42015. name: "Front",
  42016. image: {
  42017. source: "./media/characters/yuko/front.svg",
  42018. extra: 1282/1222,
  42019. bottom: 101/1383
  42020. }
  42021. },
  42022. frontClothed: {
  42023. height: math.unit(7 + 6/12, "feet"),
  42024. weight: math.unit(540, "lb"),
  42025. name: "Front (Clothed)",
  42026. image: {
  42027. source: "./media/characters/yuko/front-clothed.svg",
  42028. extra: 1282/1222,
  42029. bottom: 101/1383
  42030. }
  42031. },
  42032. },
  42033. [
  42034. {
  42035. name: "Normal",
  42036. height: math.unit(7 + 6/12, "feet"),
  42037. default: true
  42038. },
  42039. {
  42040. name: "Macro",
  42041. height: math.unit(26 + 9/12, "feet")
  42042. },
  42043. {
  42044. name: "Megamacro",
  42045. height: math.unit(300, "feet")
  42046. },
  42047. {
  42048. name: "Gigamacro",
  42049. height: math.unit(5000, "feet")
  42050. },
  42051. {
  42052. name: "Planetary",
  42053. height: math.unit(10000, "miles")
  42054. },
  42055. ]
  42056. ))
  42057. characterMakers.push(() => makeCharacter(
  42058. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42059. {
  42060. front: {
  42061. height: math.unit(8 + 2/12, "feet"),
  42062. weight: math.unit(600, "lb"),
  42063. name: "Front",
  42064. image: {
  42065. source: "./media/characters/deam-nitrel/front.svg",
  42066. extra: 1308/1234,
  42067. bottom: 125/1433
  42068. }
  42069. },
  42070. },
  42071. [
  42072. {
  42073. name: "Normal",
  42074. height: math.unit(8 + 2/12, "feet"),
  42075. default: true
  42076. },
  42077. ]
  42078. ))
  42079. characterMakers.push(() => makeCharacter(
  42080. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42081. {
  42082. front: {
  42083. height: math.unit(6.1, "feet"),
  42084. weight: math.unit(180, "lb"),
  42085. name: "Front",
  42086. image: {
  42087. source: "./media/characters/skyress/front.svg",
  42088. extra: 1045/915,
  42089. bottom: 28/1073
  42090. }
  42091. },
  42092. maw: {
  42093. height: math.unit(1, "feet"),
  42094. name: "Maw",
  42095. image: {
  42096. source: "./media/characters/skyress/maw.svg"
  42097. }
  42098. },
  42099. },
  42100. [
  42101. {
  42102. name: "Normal",
  42103. height: math.unit(6.1, "feet"),
  42104. default: true
  42105. },
  42106. {
  42107. name: "Macro",
  42108. height: math.unit(200, "feet")
  42109. },
  42110. ]
  42111. ))
  42112. characterMakers.push(() => makeCharacter(
  42113. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42114. {
  42115. front: {
  42116. height: math.unit(4 + 2/12, "feet"),
  42117. weight: math.unit(40, "kg"),
  42118. name: "Front",
  42119. image: {
  42120. source: "./media/characters/amethyst-jones/front.svg",
  42121. extra: 1220/1150,
  42122. bottom: 101/1321
  42123. }
  42124. },
  42125. },
  42126. [
  42127. {
  42128. name: "Normal",
  42129. height: math.unit(4 + 2/12, "feet"),
  42130. default: true
  42131. },
  42132. ]
  42133. ))
  42134. characterMakers.push(() => makeCharacter(
  42135. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42136. {
  42137. front: {
  42138. height: math.unit(1.7, "m"),
  42139. weight: math.unit(135, "lb"),
  42140. name: "Front",
  42141. image: {
  42142. source: "./media/characters/jade/front.svg",
  42143. extra: 1818/1767,
  42144. bottom: 32/1850
  42145. }
  42146. },
  42147. back: {
  42148. height: math.unit(1.7, "m"),
  42149. weight: math.unit(135, "lb"),
  42150. name: "Back",
  42151. image: {
  42152. source: "./media/characters/jade/back.svg",
  42153. extra: 1869/1809,
  42154. bottom: 35/1904
  42155. }
  42156. },
  42157. hand: {
  42158. height: math.unit(0.24, "m"),
  42159. name: "Hand",
  42160. image: {
  42161. source: "./media/characters/jade/hand.svg"
  42162. }
  42163. },
  42164. foot: {
  42165. height: math.unit(0.263, "m"),
  42166. name: "Foot",
  42167. image: {
  42168. source: "./media/characters/jade/foot.svg"
  42169. }
  42170. },
  42171. dick: {
  42172. height: math.unit(0.47, "m"),
  42173. name: "Dick",
  42174. image: {
  42175. source: "./media/characters/jade/dick.svg"
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Micro",
  42182. height: math.unit(22, "cm")
  42183. },
  42184. {
  42185. name: "Normal",
  42186. height: math.unit(1.7, "m"),
  42187. default: true
  42188. },
  42189. {
  42190. name: "Macro",
  42191. height: math.unit(152, "m")
  42192. },
  42193. ]
  42194. ))
  42195. characterMakers.push(() => makeCharacter(
  42196. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42197. {
  42198. front: {
  42199. height: math.unit(100, "miles"),
  42200. weight: math.unit(20000, "tons"),
  42201. name: "Front",
  42202. image: {
  42203. source: "./media/characters/cookie/front.svg",
  42204. extra: 1125/1070,
  42205. bottom: 30/1155
  42206. }
  42207. },
  42208. },
  42209. [
  42210. {
  42211. name: "Big",
  42212. height: math.unit(50, "feet")
  42213. },
  42214. {
  42215. name: "Macro",
  42216. height: math.unit(100, "miles"),
  42217. default: true
  42218. },
  42219. {
  42220. name: "Megamacro",
  42221. height: math.unit(90000, "miles")
  42222. },
  42223. ]
  42224. ))
  42225. characterMakers.push(() => makeCharacter(
  42226. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42227. {
  42228. front: {
  42229. height: math.unit(6, "feet"),
  42230. weight: math.unit(145, "lb"),
  42231. name: "Front",
  42232. image: {
  42233. source: "./media/characters/farzian/front.svg",
  42234. extra: 1902/1693,
  42235. bottom: 108/2010
  42236. }
  42237. },
  42238. },
  42239. [
  42240. {
  42241. name: "Macro",
  42242. height: math.unit(500, "feet"),
  42243. default: true
  42244. },
  42245. ]
  42246. ))
  42247. characterMakers.push(() => makeCharacter(
  42248. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42249. {
  42250. front: {
  42251. height: math.unit(3 + 6/12, "feet"),
  42252. weight: math.unit(50, "lb"),
  42253. name: "Front",
  42254. image: {
  42255. source: "./media/characters/kimberly-tilson/front.svg",
  42256. extra: 1400/1322,
  42257. bottom: 36/1436
  42258. }
  42259. },
  42260. back: {
  42261. height: math.unit(3 + 6/12, "feet"),
  42262. weight: math.unit(50, "lb"),
  42263. name: "Back",
  42264. image: {
  42265. source: "./media/characters/kimberly-tilson/back.svg",
  42266. extra: 1370/1307,
  42267. bottom: 20/1390
  42268. }
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Normal",
  42274. height: math.unit(3 + 6/12, "feet"),
  42275. default: true
  42276. },
  42277. ]
  42278. ))
  42279. characterMakers.push(() => makeCharacter(
  42280. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42281. {
  42282. front: {
  42283. height: math.unit(1148, "feet"),
  42284. weight: math.unit(34057, "lb"),
  42285. name: "Front",
  42286. image: {
  42287. source: "./media/characters/harthos/front.svg",
  42288. extra: 1391/1339,
  42289. bottom: 13/1404
  42290. }
  42291. },
  42292. },
  42293. [
  42294. {
  42295. name: "Macro",
  42296. height: math.unit(1148, "feet"),
  42297. default: true
  42298. },
  42299. ]
  42300. ))
  42301. characterMakers.push(() => makeCharacter(
  42302. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42303. {
  42304. front: {
  42305. height: math.unit(15, "feet"),
  42306. name: "Front",
  42307. image: {
  42308. source: "./media/characters/hypatia/front.svg",
  42309. extra: 1653/1591,
  42310. bottom: 79/1732
  42311. }
  42312. },
  42313. },
  42314. [
  42315. {
  42316. name: "Normal",
  42317. height: math.unit(15, "feet")
  42318. },
  42319. {
  42320. name: "Small",
  42321. height: math.unit(300, "feet")
  42322. },
  42323. {
  42324. name: "Macro",
  42325. height: math.unit(2500, "feet"),
  42326. default: true
  42327. },
  42328. {
  42329. name: "Mega Macro",
  42330. height: math.unit(1500, "miles")
  42331. },
  42332. {
  42333. name: "Giga Macro",
  42334. height: math.unit(1.5e6, "miles")
  42335. },
  42336. ]
  42337. ))
  42338. characterMakers.push(() => makeCharacter(
  42339. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42340. {
  42341. front: {
  42342. height: math.unit(6, "feet"),
  42343. weight: math.unit(200, "lb"),
  42344. name: "Front",
  42345. image: {
  42346. source: "./media/characters/wulver/front.svg",
  42347. extra: 1724/1632,
  42348. bottom: 130/1854
  42349. }
  42350. },
  42351. frontNsfw: {
  42352. height: math.unit(6, "feet"),
  42353. weight: math.unit(200, "lb"),
  42354. name: "Front (NSFW)",
  42355. image: {
  42356. source: "./media/characters/wulver/front-nsfw.svg",
  42357. extra: 1724/1632,
  42358. bottom: 130/1854
  42359. }
  42360. },
  42361. },
  42362. [
  42363. {
  42364. name: "Human-Sized",
  42365. height: math.unit(6, "feet")
  42366. },
  42367. {
  42368. name: "Normal",
  42369. height: math.unit(4, "meters"),
  42370. default: true
  42371. },
  42372. {
  42373. name: "Large",
  42374. height: math.unit(6, "m")
  42375. },
  42376. ]
  42377. ))
  42378. characterMakers.push(() => makeCharacter(
  42379. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42380. {
  42381. front: {
  42382. height: math.unit(7, "feet"),
  42383. name: "Front",
  42384. image: {
  42385. source: "./media/characters/maru/front.svg",
  42386. extra: 1595/1570,
  42387. bottom: 0/1595
  42388. }
  42389. },
  42390. },
  42391. [
  42392. {
  42393. name: "Normal",
  42394. height: math.unit(7, "feet"),
  42395. default: true
  42396. },
  42397. {
  42398. name: "Macro",
  42399. height: math.unit(700, "feet")
  42400. },
  42401. {
  42402. name: "Mega Macro",
  42403. height: math.unit(25, "miles")
  42404. },
  42405. ]
  42406. ))
  42407. characterMakers.push(() => makeCharacter(
  42408. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42409. {
  42410. front: {
  42411. height: math.unit(6, "feet"),
  42412. weight: math.unit(170, "lb"),
  42413. name: "Front",
  42414. image: {
  42415. source: "./media/characters/xenon/front.svg",
  42416. extra: 1376/1305,
  42417. bottom: 56/1432
  42418. }
  42419. },
  42420. back: {
  42421. height: math.unit(6, "feet"),
  42422. weight: math.unit(170, "lb"),
  42423. name: "Back",
  42424. image: {
  42425. source: "./media/characters/xenon/back.svg",
  42426. extra: 1328/1259,
  42427. bottom: 95/1423
  42428. }
  42429. },
  42430. maw: {
  42431. height: math.unit(0.52, "feet"),
  42432. name: "Maw",
  42433. image: {
  42434. source: "./media/characters/xenon/maw.svg"
  42435. }
  42436. },
  42437. handLeft: {
  42438. height: math.unit(0.82 * 169 / 153, "feet"),
  42439. name: "Hand (Left)",
  42440. image: {
  42441. source: "./media/characters/xenon/hand-left.svg"
  42442. }
  42443. },
  42444. handRight: {
  42445. height: math.unit(0.82, "feet"),
  42446. name: "Hand (Right)",
  42447. image: {
  42448. source: "./media/characters/xenon/hand-right.svg"
  42449. }
  42450. },
  42451. footLeft: {
  42452. height: math.unit(1.13, "feet"),
  42453. name: "Foot (Left)",
  42454. image: {
  42455. source: "./media/characters/xenon/foot-left.svg"
  42456. }
  42457. },
  42458. footRight: {
  42459. height: math.unit(1.13 * 194 / 196, "feet"),
  42460. name: "Foot (Right)",
  42461. image: {
  42462. source: "./media/characters/xenon/foot-right.svg"
  42463. }
  42464. },
  42465. },
  42466. [
  42467. {
  42468. name: "Micro",
  42469. height: math.unit(0.8, "inches")
  42470. },
  42471. {
  42472. name: "Normal",
  42473. height: math.unit(6, "feet")
  42474. },
  42475. {
  42476. name: "Macro",
  42477. height: math.unit(50, "feet"),
  42478. default: true
  42479. },
  42480. {
  42481. name: "Macro+",
  42482. height: math.unit(250, "feet")
  42483. },
  42484. {
  42485. name: "Megamacro",
  42486. height: math.unit(1500, "feet")
  42487. },
  42488. ]
  42489. ))
  42490. characterMakers.push(() => makeCharacter(
  42491. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42492. {
  42493. front: {
  42494. height: math.unit(7 + 5/12, "feet"),
  42495. name: "Front",
  42496. image: {
  42497. source: "./media/characters/zane/front.svg",
  42498. extra: 1260/1203,
  42499. bottom: 94/1354
  42500. }
  42501. },
  42502. back: {
  42503. height: math.unit(5.05, "feet"),
  42504. name: "Back",
  42505. image: {
  42506. source: "./media/characters/zane/back.svg",
  42507. extra: 893/829,
  42508. bottom: 30/923
  42509. }
  42510. },
  42511. werewolf: {
  42512. height: math.unit(11, "feet"),
  42513. name: "Werewolf",
  42514. image: {
  42515. source: "./media/characters/zane/werewolf.svg",
  42516. extra: 1383/1323,
  42517. bottom: 89/1472
  42518. }
  42519. },
  42520. foot: {
  42521. height: math.unit(1.46, "feet"),
  42522. name: "Foot",
  42523. image: {
  42524. source: "./media/characters/zane/foot.svg"
  42525. }
  42526. },
  42527. footFront: {
  42528. height: math.unit(0.784, "feet"),
  42529. name: "Foot (Front)",
  42530. image: {
  42531. source: "./media/characters/zane/foot-front.svg"
  42532. }
  42533. },
  42534. dick: {
  42535. height: math.unit(1.95, "feet"),
  42536. name: "Dick",
  42537. image: {
  42538. source: "./media/characters/zane/dick.svg"
  42539. }
  42540. },
  42541. dickWerewolf: {
  42542. height: math.unit(3.77, "feet"),
  42543. name: "Dick (Werewolf)",
  42544. image: {
  42545. source: "./media/characters/zane/dick.svg"
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Normal",
  42552. height: math.unit(7 + 5/12, "feet"),
  42553. default: true
  42554. },
  42555. ]
  42556. ))
  42557. characterMakers.push(() => makeCharacter(
  42558. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42559. {
  42560. front: {
  42561. height: math.unit(6 + 2/12, "feet"),
  42562. weight: math.unit(284, "lb"),
  42563. name: "Front",
  42564. image: {
  42565. source: "./media/characters/benni-desparque/front.svg",
  42566. extra: 1353/1126,
  42567. bottom: 69/1422
  42568. }
  42569. },
  42570. },
  42571. [
  42572. {
  42573. name: "Civilian",
  42574. height: math.unit(6 + 2/12, "feet")
  42575. },
  42576. {
  42577. name: "Normal",
  42578. height: math.unit(98, "feet"),
  42579. default: true
  42580. },
  42581. {
  42582. name: "Kaiju Fighter",
  42583. height: math.unit(268, "feet")
  42584. },
  42585. ]
  42586. ))
  42587. characterMakers.push(() => makeCharacter(
  42588. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42589. {
  42590. front: {
  42591. height: math.unit(5, "feet"),
  42592. weight: math.unit(105, "lb"),
  42593. name: "Front",
  42594. image: {
  42595. source: "./media/characters/maxine/front.svg",
  42596. extra: 1386/1250,
  42597. bottom: 71/1457
  42598. }
  42599. },
  42600. },
  42601. [
  42602. {
  42603. name: "Normal",
  42604. height: math.unit(5, "feet"),
  42605. default: true
  42606. },
  42607. ]
  42608. ))
  42609. characterMakers.push(() => makeCharacter(
  42610. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42611. {
  42612. front: {
  42613. height: math.unit(11 + 7/12, "feet"),
  42614. weight: math.unit(9576, "lb"),
  42615. name: "Front",
  42616. image: {
  42617. source: "./media/characters/scaly/front.svg",
  42618. extra: 888/867,
  42619. bottom: 36/924
  42620. }
  42621. },
  42622. },
  42623. [
  42624. {
  42625. name: "Normal",
  42626. height: math.unit(11 + 7/12, "feet"),
  42627. default: true
  42628. },
  42629. ]
  42630. ))
  42631. characterMakers.push(() => makeCharacter(
  42632. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42633. {
  42634. front: {
  42635. height: math.unit(6 + 3/12, "feet"),
  42636. name: "Front",
  42637. image: {
  42638. source: "./media/characters/saelria/front.svg",
  42639. extra: 1243/1138,
  42640. bottom: 46/1289
  42641. }
  42642. },
  42643. },
  42644. [
  42645. {
  42646. name: "Micro",
  42647. height: math.unit(6, "inches"),
  42648. },
  42649. {
  42650. name: "Normal",
  42651. height: math.unit(6 + 3/12, "feet"),
  42652. default: true
  42653. },
  42654. {
  42655. name: "Macro",
  42656. height: math.unit(25, "feet")
  42657. },
  42658. ]
  42659. ))
  42660. characterMakers.push(() => makeCharacter(
  42661. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42662. {
  42663. front: {
  42664. height: math.unit(80, "meters"),
  42665. weight: math.unit(7000, "tonnes"),
  42666. name: "Front",
  42667. image: {
  42668. source: "./media/characters/tef/front.svg",
  42669. extra: 2036/1991,
  42670. bottom: 54/2090
  42671. }
  42672. },
  42673. back: {
  42674. height: math.unit(80, "meters"),
  42675. weight: math.unit(7000, "tonnes"),
  42676. name: "Back",
  42677. image: {
  42678. source: "./media/characters/tef/back.svg",
  42679. extra: 2036/1991,
  42680. bottom: 54/2090
  42681. }
  42682. },
  42683. },
  42684. [
  42685. {
  42686. name: "Macro",
  42687. height: math.unit(80, "meters"),
  42688. default: true
  42689. },
  42690. ]
  42691. ))
  42692. characterMakers.push(() => makeCharacter(
  42693. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42694. {
  42695. front: {
  42696. height: math.unit(13, "feet"),
  42697. weight: math.unit(6, "tons"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/rover/front.svg",
  42701. extra: 1233/1156,
  42702. bottom: 50/1283
  42703. }
  42704. },
  42705. back: {
  42706. height: math.unit(13, "feet"),
  42707. weight: math.unit(6, "tons"),
  42708. name: "Back",
  42709. image: {
  42710. source: "./media/characters/rover/back.svg",
  42711. extra: 1327/1258,
  42712. bottom: 39/1366
  42713. }
  42714. },
  42715. },
  42716. [
  42717. {
  42718. name: "Normal",
  42719. height: math.unit(13, "feet"),
  42720. default: true
  42721. },
  42722. {
  42723. name: "Macro",
  42724. height: math.unit(1300, "feet")
  42725. },
  42726. {
  42727. name: "Megamacro",
  42728. height: math.unit(1300, "miles")
  42729. },
  42730. {
  42731. name: "Gigamacro",
  42732. height: math.unit(1300000, "miles")
  42733. },
  42734. ]
  42735. ))
  42736. characterMakers.push(() => makeCharacter(
  42737. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42738. {
  42739. front: {
  42740. height: math.unit(6, "feet"),
  42741. weight: math.unit(150, "lb"),
  42742. name: "Front",
  42743. image: {
  42744. source: "./media/characters/ariz/front.svg",
  42745. extra: 1401/1346,
  42746. bottom: 5/1406
  42747. }
  42748. },
  42749. },
  42750. [
  42751. {
  42752. name: "Normal",
  42753. height: math.unit(10, "feet"),
  42754. default: true
  42755. },
  42756. ]
  42757. ))
  42758. characterMakers.push(() => makeCharacter(
  42759. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42760. {
  42761. front: {
  42762. height: math.unit(6, "feet"),
  42763. weight: math.unit(140, "lb"),
  42764. name: "Front",
  42765. image: {
  42766. source: "./media/characters/sigrun/front.svg",
  42767. extra: 1418/1359,
  42768. bottom: 27/1445
  42769. }
  42770. },
  42771. },
  42772. [
  42773. {
  42774. name: "Macro",
  42775. height: math.unit(35, "feet"),
  42776. default: true
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42782. {
  42783. front: {
  42784. height: math.unit(6, "feet"),
  42785. weight: math.unit(150, "lb"),
  42786. name: "Front",
  42787. image: {
  42788. source: "./media/characters/numin/front.svg",
  42789. extra: 1433/1388,
  42790. bottom: 12/1445
  42791. }
  42792. },
  42793. },
  42794. [
  42795. {
  42796. name: "Macro",
  42797. height: math.unit(21.5, "km"),
  42798. default: true
  42799. },
  42800. ]
  42801. ))
  42802. characterMakers.push(() => makeCharacter(
  42803. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42804. {
  42805. front: {
  42806. height: math.unit(6, "feet"),
  42807. weight: math.unit(463, "lb"),
  42808. name: "Front",
  42809. image: {
  42810. source: "./media/characters/melwa/front.svg",
  42811. extra: 1307/1248,
  42812. bottom: 93/1400
  42813. }
  42814. },
  42815. },
  42816. [
  42817. {
  42818. name: "Macro",
  42819. height: math.unit(50, "meters"),
  42820. default: true
  42821. },
  42822. ]
  42823. ))
  42824. characterMakers.push(() => makeCharacter(
  42825. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42826. {
  42827. front: {
  42828. height: math.unit(325, "feet"),
  42829. name: "Front",
  42830. image: {
  42831. source: "./media/characters/zorkaiju/front.svg",
  42832. extra: 1955/1814,
  42833. bottom: 40/1995
  42834. }
  42835. },
  42836. frontExtended: {
  42837. height: math.unit(325, "feet"),
  42838. name: "Front (Extended)",
  42839. image: {
  42840. source: "./media/characters/zorkaiju/front-extended.svg",
  42841. extra: 1955/1814,
  42842. bottom: 40/1995
  42843. }
  42844. },
  42845. side: {
  42846. height: math.unit(325, "feet"),
  42847. name: "Side",
  42848. image: {
  42849. source: "./media/characters/zorkaiju/side.svg",
  42850. extra: 1495/1396,
  42851. bottom: 17/1512
  42852. }
  42853. },
  42854. sideExtended: {
  42855. height: math.unit(325, "feet"),
  42856. name: "Side (Extended)",
  42857. image: {
  42858. source: "./media/characters/zorkaiju/side-extended.svg",
  42859. extra: 1495/1396,
  42860. bottom: 17/1512
  42861. }
  42862. },
  42863. back: {
  42864. height: math.unit(325, "feet"),
  42865. name: "Back",
  42866. image: {
  42867. source: "./media/characters/zorkaiju/back.svg",
  42868. extra: 1959/1821,
  42869. bottom: 31/1990
  42870. }
  42871. },
  42872. backExtended: {
  42873. height: math.unit(325, "feet"),
  42874. name: "Back (Extended)",
  42875. image: {
  42876. source: "./media/characters/zorkaiju/back-extended.svg",
  42877. extra: 1959/1821,
  42878. bottom: 31/1990
  42879. }
  42880. },
  42881. hand: {
  42882. height: math.unit(58.4, "feet"),
  42883. name: "Hand",
  42884. image: {
  42885. source: "./media/characters/zorkaiju/hand.svg"
  42886. }
  42887. },
  42888. handExtended: {
  42889. height: math.unit(61.4, "feet"),
  42890. name: "Hand (Extended)",
  42891. image: {
  42892. source: "./media/characters/zorkaiju/hand-extended.svg"
  42893. }
  42894. },
  42895. foot: {
  42896. height: math.unit(95, "feet"),
  42897. name: "Foot",
  42898. image: {
  42899. source: "./media/characters/zorkaiju/foot.svg"
  42900. }
  42901. },
  42902. leftArm: {
  42903. height: math.unit(59, "feet"),
  42904. name: "Left Arm",
  42905. image: {
  42906. source: "./media/characters/zorkaiju/left-arm.svg"
  42907. }
  42908. },
  42909. rightArm: {
  42910. height: math.unit(59, "feet"),
  42911. name: "Right Arm",
  42912. image: {
  42913. source: "./media/characters/zorkaiju/right-arm.svg"
  42914. }
  42915. },
  42916. leftArmExtended: {
  42917. height: math.unit(59 * 1.033546, "feet"),
  42918. name: "Left Arm (Extended)",
  42919. image: {
  42920. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42921. }
  42922. },
  42923. rightArmExtended: {
  42924. height: math.unit(59 * 1.0496, "feet"),
  42925. name: "Right Arm (Extended)",
  42926. image: {
  42927. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42928. }
  42929. },
  42930. tail: {
  42931. height: math.unit(104, "feet"),
  42932. name: "Tail",
  42933. image: {
  42934. source: "./media/characters/zorkaiju/tail.svg"
  42935. }
  42936. },
  42937. tailExtended: {
  42938. height: math.unit(104, "feet"),
  42939. name: "Tail (Extended)",
  42940. image: {
  42941. source: "./media/characters/zorkaiju/tail-extended.svg"
  42942. }
  42943. },
  42944. tailBottom: {
  42945. height: math.unit(104, "feet"),
  42946. name: "Tail Bottom",
  42947. image: {
  42948. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42949. }
  42950. },
  42951. crystal: {
  42952. height: math.unit(27.54, "feet"),
  42953. name: "Crystal",
  42954. image: {
  42955. source: "./media/characters/zorkaiju/crystal.svg"
  42956. }
  42957. },
  42958. },
  42959. [
  42960. {
  42961. name: "Kaiju",
  42962. height: math.unit(325, "feet"),
  42963. default: true
  42964. },
  42965. ]
  42966. ))
  42967. characterMakers.push(() => makeCharacter(
  42968. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42969. {
  42970. front: {
  42971. height: math.unit(6 + 1/12, "feet"),
  42972. weight: math.unit(115, "lb"),
  42973. name: "Front",
  42974. image: {
  42975. source: "./media/characters/bailey-belfry/front.svg",
  42976. extra: 1240/1121,
  42977. bottom: 101/1341
  42978. }
  42979. },
  42980. },
  42981. [
  42982. {
  42983. name: "Normal",
  42984. height: math.unit(6 + 1/12, "feet"),
  42985. default: true
  42986. },
  42987. ]
  42988. ))
  42989. characterMakers.push(() => makeCharacter(
  42990. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42991. {
  42992. side: {
  42993. height: math.unit(4, "meters"),
  42994. weight: math.unit(250, "kg"),
  42995. name: "Side",
  42996. image: {
  42997. source: "./media/characters/blacky/side.svg",
  42998. extra: 1027/919,
  42999. bottom: 43/1070
  43000. }
  43001. },
  43002. maw: {
  43003. height: math.unit(1, "meters"),
  43004. name: "Maw",
  43005. image: {
  43006. source: "./media/characters/blacky/maw.svg"
  43007. }
  43008. },
  43009. paw: {
  43010. height: math.unit(1, "meters"),
  43011. name: "Paw",
  43012. image: {
  43013. source: "./media/characters/blacky/paw.svg"
  43014. }
  43015. },
  43016. },
  43017. [
  43018. {
  43019. name: "Normal",
  43020. height: math.unit(4, "meters"),
  43021. default: true
  43022. },
  43023. ]
  43024. ))
  43025. characterMakers.push(() => makeCharacter(
  43026. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43027. {
  43028. front: {
  43029. height: math.unit(170, "cm"),
  43030. weight: math.unit(66, "kg"),
  43031. name: "Front",
  43032. image: {
  43033. source: "./media/characters/thux-ei/front.svg",
  43034. extra: 1109/1011,
  43035. bottom: 8/1117
  43036. }
  43037. },
  43038. },
  43039. [
  43040. {
  43041. name: "Normal",
  43042. height: math.unit(170, "cm"),
  43043. default: true
  43044. },
  43045. ]
  43046. ))
  43047. characterMakers.push(() => makeCharacter(
  43048. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43049. {
  43050. front: {
  43051. height: math.unit(5, "feet"),
  43052. weight: math.unit(120, "lb"),
  43053. name: "Front",
  43054. image: {
  43055. source: "./media/characters/roxanne-voltaire/front.svg",
  43056. extra: 1901/1779,
  43057. bottom: 53/1954
  43058. }
  43059. },
  43060. },
  43061. [
  43062. {
  43063. name: "Normal",
  43064. height: math.unit(5, "feet"),
  43065. default: true
  43066. },
  43067. {
  43068. name: "Giant",
  43069. height: math.unit(50, "feet")
  43070. },
  43071. {
  43072. name: "Titan",
  43073. height: math.unit(500, "feet")
  43074. },
  43075. {
  43076. name: "Macro",
  43077. height: math.unit(5000, "feet")
  43078. },
  43079. {
  43080. name: "Megamacro",
  43081. height: math.unit(50000, "feet")
  43082. },
  43083. {
  43084. name: "Gigamacro",
  43085. height: math.unit(500000, "feet")
  43086. },
  43087. {
  43088. name: "Teramacro",
  43089. height: math.unit(5e6, "feet")
  43090. },
  43091. ]
  43092. ))
  43093. characterMakers.push(() => makeCharacter(
  43094. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43095. {
  43096. front: {
  43097. height: math.unit(6 + 2/12, "feet"),
  43098. name: "Front",
  43099. image: {
  43100. source: "./media/characters/squeaks/front.svg",
  43101. extra: 1823/1768,
  43102. bottom: 138/1961
  43103. }
  43104. },
  43105. },
  43106. [
  43107. {
  43108. name: "Micro",
  43109. height: math.unit(0.5, "inches")
  43110. },
  43111. {
  43112. name: "Normal",
  43113. height: math.unit(6 + 2/12, "feet"),
  43114. default: true
  43115. },
  43116. {
  43117. name: "Macro",
  43118. height: math.unit(600, "feet")
  43119. },
  43120. ]
  43121. ))
  43122. characterMakers.push(() => makeCharacter(
  43123. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43124. {
  43125. front: {
  43126. height: math.unit(1.72, "meters"),
  43127. name: "Front",
  43128. image: {
  43129. source: "./media/characters/archinger/front.svg",
  43130. extra: 1861/1675,
  43131. bottom: 125/1986
  43132. }
  43133. },
  43134. back: {
  43135. height: math.unit(1.72, "meters"),
  43136. name: "Back",
  43137. image: {
  43138. source: "./media/characters/archinger/back.svg",
  43139. extra: 1844/1701,
  43140. bottom: 104/1948
  43141. }
  43142. },
  43143. cock: {
  43144. height: math.unit(0.59, "feet"),
  43145. name: "Cock",
  43146. image: {
  43147. source: "./media/characters/archinger/cock.svg"
  43148. }
  43149. },
  43150. },
  43151. [
  43152. {
  43153. name: "Normal",
  43154. height: math.unit(1.72, "meters"),
  43155. default: true
  43156. },
  43157. {
  43158. name: "Macro",
  43159. height: math.unit(84, "meters")
  43160. },
  43161. {
  43162. name: "Macro+",
  43163. height: math.unit(112, "meters")
  43164. },
  43165. {
  43166. name: "Macro++",
  43167. height: math.unit(960, "meters")
  43168. },
  43169. {
  43170. name: "Macro+++",
  43171. height: math.unit(4, "km")
  43172. },
  43173. {
  43174. name: "Macro++++",
  43175. height: math.unit(48, "km")
  43176. },
  43177. {
  43178. name: "Macro+++++",
  43179. height: math.unit(4500, "km")
  43180. },
  43181. ]
  43182. ))
  43183. characterMakers.push(() => makeCharacter(
  43184. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43185. {
  43186. front: {
  43187. height: math.unit(5 + 5/12, "feet"),
  43188. name: "Front",
  43189. image: {
  43190. source: "./media/characters/alsnapz/front.svg",
  43191. extra: 1157/1065,
  43192. bottom: 42/1199
  43193. }
  43194. },
  43195. },
  43196. [
  43197. {
  43198. name: "Normal",
  43199. height: math.unit(5 + 5/12, "feet"),
  43200. default: true
  43201. },
  43202. ]
  43203. ))
  43204. characterMakers.push(() => makeCharacter(
  43205. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43206. {
  43207. side: {
  43208. height: math.unit(3.2, "earths"),
  43209. name: "Side",
  43210. image: {
  43211. source: "./media/characters/mag/side.svg",
  43212. extra: 1331/1008,
  43213. bottom: 52/1383
  43214. }
  43215. },
  43216. wing: {
  43217. height: math.unit(1.94, "earths"),
  43218. name: "Wing",
  43219. image: {
  43220. source: "./media/characters/mag/wing.svg"
  43221. }
  43222. },
  43223. dick: {
  43224. height: math.unit(1.8, "earths"),
  43225. name: "Dick",
  43226. image: {
  43227. source: "./media/characters/mag/dick.svg"
  43228. }
  43229. },
  43230. ass: {
  43231. height: math.unit(1.33, "earths"),
  43232. name: "Ass",
  43233. image: {
  43234. source: "./media/characters/mag/ass.svg"
  43235. }
  43236. },
  43237. head: {
  43238. height: math.unit(1.1, "earths"),
  43239. name: "Head",
  43240. image: {
  43241. source: "./media/characters/mag/head.svg"
  43242. }
  43243. },
  43244. maw: {
  43245. height: math.unit(1.62, "earths"),
  43246. name: "Maw",
  43247. image: {
  43248. source: "./media/characters/mag/maw.svg"
  43249. }
  43250. },
  43251. },
  43252. [
  43253. {
  43254. name: "Small",
  43255. height: math.unit(162, "feet")
  43256. },
  43257. {
  43258. name: "Normal",
  43259. height: math.unit(3.2, "earths"),
  43260. default: true
  43261. },
  43262. ]
  43263. ))
  43264. characterMakers.push(() => makeCharacter(
  43265. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43266. {
  43267. front: {
  43268. height: math.unit(512, "feet"),
  43269. weight: math.unit(63509, "tonnes"),
  43270. name: "Front",
  43271. image: {
  43272. source: "./media/characters/vorrel-harroc/front.svg",
  43273. extra: 1075/1063,
  43274. bottom: 62/1137
  43275. }
  43276. },
  43277. },
  43278. [
  43279. {
  43280. name: "Normal",
  43281. height: math.unit(10, "feet")
  43282. },
  43283. {
  43284. name: "Macro",
  43285. height: math.unit(512, "feet"),
  43286. default: true
  43287. },
  43288. {
  43289. name: "Megamacro",
  43290. height: math.unit(256, "miles")
  43291. },
  43292. {
  43293. name: "Gigamacro",
  43294. height: math.unit(4096, "miles")
  43295. },
  43296. ]
  43297. ))
  43298. characterMakers.push(() => makeCharacter(
  43299. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43300. {
  43301. side: {
  43302. height: math.unit(50, "feet"),
  43303. name: "Side",
  43304. image: {
  43305. source: "./media/characters/froimar/side.svg",
  43306. extra: 855/638,
  43307. bottom: 99/954
  43308. }
  43309. },
  43310. },
  43311. [
  43312. {
  43313. name: "Macro",
  43314. height: math.unit(50, "feet"),
  43315. default: true
  43316. },
  43317. ]
  43318. ))
  43319. characterMakers.push(() => makeCharacter(
  43320. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43321. {
  43322. front: {
  43323. height: math.unit(210, "miles"),
  43324. name: "Front",
  43325. image: {
  43326. source: "./media/characters/timothy/front.svg",
  43327. extra: 1007/943,
  43328. bottom: 62/1069
  43329. }
  43330. },
  43331. frontSkirt: {
  43332. height: math.unit(210, "miles"),
  43333. name: "Front (Skirt)",
  43334. image: {
  43335. source: "./media/characters/timothy/front-skirt.svg",
  43336. extra: 1007/943,
  43337. bottom: 62/1069
  43338. }
  43339. },
  43340. frontCoat: {
  43341. height: math.unit(210, "miles"),
  43342. name: "Front (Coat)",
  43343. image: {
  43344. source: "./media/characters/timothy/front-coat.svg",
  43345. extra: 1007/943,
  43346. bottom: 62/1069
  43347. }
  43348. },
  43349. },
  43350. [
  43351. {
  43352. name: "Macro",
  43353. height: math.unit(210, "miles"),
  43354. default: true
  43355. },
  43356. {
  43357. name: "Megamacro",
  43358. height: math.unit(210000, "miles")
  43359. },
  43360. ]
  43361. ))
  43362. characterMakers.push(() => makeCharacter(
  43363. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43364. {
  43365. front: {
  43366. height: math.unit(188, "feet"),
  43367. name: "Front",
  43368. image: {
  43369. source: "./media/characters/pyotr/front.svg",
  43370. extra: 1912/1826,
  43371. bottom: 18/1930
  43372. }
  43373. },
  43374. },
  43375. [
  43376. {
  43377. name: "Macro",
  43378. height: math.unit(188, "feet"),
  43379. default: true
  43380. },
  43381. {
  43382. name: "Megamacro",
  43383. height: math.unit(8, "miles")
  43384. },
  43385. ]
  43386. ))
  43387. characterMakers.push(() => makeCharacter(
  43388. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43389. {
  43390. side: {
  43391. height: math.unit(10, "feet"),
  43392. weight: math.unit(4500, "lb"),
  43393. name: "Side",
  43394. image: {
  43395. source: "./media/characters/ackart/side.svg",
  43396. extra: 1776/1668,
  43397. bottom: 116/1892
  43398. }
  43399. },
  43400. },
  43401. [
  43402. {
  43403. name: "Normal",
  43404. height: math.unit(10, "feet"),
  43405. default: true
  43406. },
  43407. ]
  43408. ))
  43409. characterMakers.push(() => makeCharacter(
  43410. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43411. {
  43412. side: {
  43413. height: math.unit(21, "feet"),
  43414. name: "Side",
  43415. image: {
  43416. source: "./media/characters/nolow/side.svg",
  43417. extra: 1484/1434,
  43418. bottom: 85/1569
  43419. }
  43420. },
  43421. sideErect: {
  43422. height: math.unit(21, "feet"),
  43423. name: "Side-erect",
  43424. image: {
  43425. source: "./media/characters/nolow/side-erect.svg",
  43426. extra: 1484/1434,
  43427. bottom: 85/1569
  43428. }
  43429. },
  43430. },
  43431. [
  43432. {
  43433. name: "Regular",
  43434. height: math.unit(12, "feet")
  43435. },
  43436. {
  43437. name: "Big Chee",
  43438. height: math.unit(21, "feet"),
  43439. default: true
  43440. },
  43441. ]
  43442. ))
  43443. characterMakers.push(() => makeCharacter(
  43444. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43445. {
  43446. front: {
  43447. height: math.unit(7, "feet"),
  43448. weight: math.unit(250, "lb"),
  43449. name: "Front",
  43450. image: {
  43451. source: "./media/characters/nines/front.svg",
  43452. extra: 1741/1607,
  43453. bottom: 41/1782
  43454. }
  43455. },
  43456. side: {
  43457. height: math.unit(7, "feet"),
  43458. weight: math.unit(250, "lb"),
  43459. name: "Side",
  43460. image: {
  43461. source: "./media/characters/nines/side.svg",
  43462. extra: 1854/1735,
  43463. bottom: 93/1947
  43464. }
  43465. },
  43466. back: {
  43467. height: math.unit(7, "feet"),
  43468. weight: math.unit(250, "lb"),
  43469. name: "Back",
  43470. image: {
  43471. source: "./media/characters/nines/back.svg",
  43472. extra: 1748/1615,
  43473. bottom: 20/1768
  43474. }
  43475. },
  43476. },
  43477. [
  43478. {
  43479. name: "Megamacro",
  43480. height: math.unit(99, "km"),
  43481. default: true
  43482. },
  43483. ]
  43484. ))
  43485. characterMakers.push(() => makeCharacter(
  43486. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43487. {
  43488. front: {
  43489. height: math.unit(5 + 10/12, "feet"),
  43490. weight: math.unit(210, "lb"),
  43491. name: "Front",
  43492. image: {
  43493. source: "./media/characters/zenith/front.svg",
  43494. extra: 1531/1452,
  43495. bottom: 198/1729
  43496. }
  43497. },
  43498. back: {
  43499. height: math.unit(5 + 10/12, "feet"),
  43500. weight: math.unit(210, "lb"),
  43501. name: "Back",
  43502. image: {
  43503. source: "./media/characters/zenith/back.svg",
  43504. extra: 1571/1487,
  43505. bottom: 75/1646
  43506. }
  43507. },
  43508. },
  43509. [
  43510. {
  43511. name: "Normal",
  43512. height: math.unit(5 + 10/12, "feet"),
  43513. default: true
  43514. }
  43515. ]
  43516. ))
  43517. characterMakers.push(() => makeCharacter(
  43518. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43519. {
  43520. front: {
  43521. height: math.unit(4, "feet"),
  43522. weight: math.unit(60, "lb"),
  43523. name: "Front",
  43524. image: {
  43525. source: "./media/characters/jasper/front.svg",
  43526. extra: 1450/1379,
  43527. bottom: 19/1469
  43528. }
  43529. },
  43530. },
  43531. [
  43532. {
  43533. name: "Normal",
  43534. height: math.unit(4, "feet"),
  43535. default: true
  43536. },
  43537. ]
  43538. ))
  43539. characterMakers.push(() => makeCharacter(
  43540. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43541. {
  43542. front: {
  43543. height: math.unit(6 + 5/12, "feet"),
  43544. weight: math.unit(290, "lb"),
  43545. name: "Front",
  43546. image: {
  43547. source: "./media/characters/tiberius-thyben/front.svg",
  43548. extra: 757/739,
  43549. bottom: 39/796
  43550. }
  43551. },
  43552. },
  43553. [
  43554. {
  43555. name: "Micro",
  43556. height: math.unit(1.5, "inches")
  43557. },
  43558. {
  43559. name: "Normal",
  43560. height: math.unit(6 + 5/12, "feet"),
  43561. default: true
  43562. },
  43563. {
  43564. name: "Macro",
  43565. height: math.unit(300, "feet")
  43566. },
  43567. ]
  43568. ))
  43569. characterMakers.push(() => makeCharacter(
  43570. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43571. {
  43572. front: {
  43573. height: math.unit(5 + 6/12, "feet"),
  43574. weight: math.unit(60, "kg"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/sabre/front.svg",
  43578. extra: 738/671,
  43579. bottom: 27/765
  43580. }
  43581. },
  43582. },
  43583. [
  43584. {
  43585. name: "Teeny",
  43586. height: math.unit(2, "inches")
  43587. },
  43588. {
  43589. name: "Smol",
  43590. height: math.unit(8, "inches")
  43591. },
  43592. {
  43593. name: "Normal",
  43594. height: math.unit(5 + 6/12, "feet"),
  43595. default: true
  43596. },
  43597. {
  43598. name: "Mini-Macro",
  43599. height: math.unit(15, "feet")
  43600. },
  43601. {
  43602. name: "Macro",
  43603. height: math.unit(50, "feet")
  43604. },
  43605. ]
  43606. ))
  43607. characterMakers.push(() => makeCharacter(
  43608. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43609. {
  43610. front: {
  43611. height: math.unit(6 + 4/12, "feet"),
  43612. weight: math.unit(170, "lb"),
  43613. name: "Front",
  43614. image: {
  43615. source: "./media/characters/charlie/front.svg",
  43616. extra: 1348/1228,
  43617. bottom: 15/1363
  43618. }
  43619. },
  43620. },
  43621. [
  43622. {
  43623. name: "Macro",
  43624. height: math.unit(1700, "meters"),
  43625. default: true
  43626. },
  43627. {
  43628. name: "MegaMacro",
  43629. height: math.unit(20400, "meters")
  43630. },
  43631. ]
  43632. ))
  43633. characterMakers.push(() => makeCharacter(
  43634. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43635. {
  43636. front: {
  43637. height: math.unit(6 + 3/12, "feet"),
  43638. weight: math.unit(185, "lb"),
  43639. name: "Front",
  43640. image: {
  43641. source: "./media/characters/susan-grant/front.svg",
  43642. extra: 1351/1327,
  43643. bottom: 26/1377
  43644. }
  43645. },
  43646. },
  43647. [
  43648. {
  43649. name: "Normal",
  43650. height: math.unit(6 + 3/12, "feet"),
  43651. default: true
  43652. },
  43653. {
  43654. name: "Macro",
  43655. height: math.unit(225, "feet")
  43656. },
  43657. {
  43658. name: "Macro+",
  43659. height: math.unit(900, "feet")
  43660. },
  43661. {
  43662. name: "MegaMacro",
  43663. height: math.unit(14400, "feet")
  43664. },
  43665. ]
  43666. ))
  43667. characterMakers.push(() => makeCharacter(
  43668. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43669. {
  43670. front: {
  43671. height: math.unit(5 + 4/12, "feet"),
  43672. weight: math.unit(110, "lb"),
  43673. name: "Front",
  43674. image: {
  43675. source: "./media/characters/axel-isanov/front.svg",
  43676. extra: 1096/1065,
  43677. bottom: 13/1109
  43678. }
  43679. },
  43680. },
  43681. [
  43682. {
  43683. name: "Normal",
  43684. height: math.unit(5 + 4/12, "feet"),
  43685. default: true
  43686. },
  43687. ]
  43688. ))
  43689. characterMakers.push(() => makeCharacter(
  43690. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43691. {
  43692. front: {
  43693. height: math.unit(9, "feet"),
  43694. weight: math.unit(467, "lb"),
  43695. name: "Front",
  43696. image: {
  43697. source: "./media/characters/necahual/front.svg",
  43698. extra: 920/873,
  43699. bottom: 26/946
  43700. }
  43701. },
  43702. back: {
  43703. height: math.unit(9, "feet"),
  43704. weight: math.unit(467, "lb"),
  43705. name: "Back",
  43706. image: {
  43707. source: "./media/characters/necahual/back.svg",
  43708. extra: 930/884,
  43709. bottom: 16/946
  43710. }
  43711. },
  43712. frontUnderwear: {
  43713. height: math.unit(9, "feet"),
  43714. weight: math.unit(467, "lb"),
  43715. name: "Front (Underwear)",
  43716. image: {
  43717. source: "./media/characters/necahual/front-underwear.svg",
  43718. extra: 920/873,
  43719. bottom: 26/946
  43720. }
  43721. },
  43722. frontDressed: {
  43723. height: math.unit(9, "feet"),
  43724. weight: math.unit(467, "lb"),
  43725. name: "Front (Dressed)",
  43726. image: {
  43727. source: "./media/characters/necahual/front-dressed.svg",
  43728. extra: 920/873,
  43729. bottom: 26/946
  43730. }
  43731. },
  43732. },
  43733. [
  43734. {
  43735. name: "Comprsesed",
  43736. height: math.unit(9, "feet")
  43737. },
  43738. {
  43739. name: "Natural",
  43740. height: math.unit(15, "feet"),
  43741. default: true
  43742. },
  43743. {
  43744. name: "Boosted",
  43745. height: math.unit(50, "feet")
  43746. },
  43747. {
  43748. name: "Boosted+",
  43749. height: math.unit(150, "feet")
  43750. },
  43751. {
  43752. name: "Max",
  43753. height: math.unit(500, "feet")
  43754. },
  43755. ]
  43756. ))
  43757. characterMakers.push(() => makeCharacter(
  43758. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43759. {
  43760. front: {
  43761. height: math.unit(22 + 1/12, "feet"),
  43762. weight: math.unit(3200, "lb"),
  43763. name: "Front",
  43764. image: {
  43765. source: "./media/characters/theo-acacia/front.svg",
  43766. extra: 1796/1741,
  43767. bottom: 83/1879
  43768. }
  43769. },
  43770. frontUnderwear: {
  43771. height: math.unit(22 + 1/12, "feet"),
  43772. weight: math.unit(3200, "lb"),
  43773. name: "Front (Underwear)",
  43774. image: {
  43775. source: "./media/characters/theo-acacia/front-underwear.svg",
  43776. extra: 1796/1741,
  43777. bottom: 83/1879
  43778. }
  43779. },
  43780. frontNude: {
  43781. height: math.unit(22 + 1/12, "feet"),
  43782. weight: math.unit(3200, "lb"),
  43783. name: "Front (Nude)",
  43784. image: {
  43785. source: "./media/characters/theo-acacia/front-nude.svg",
  43786. extra: 1796/1741,
  43787. bottom: 83/1879
  43788. }
  43789. },
  43790. },
  43791. [
  43792. {
  43793. name: "Normal",
  43794. height: math.unit(22 + 1/12, "feet"),
  43795. default: true
  43796. },
  43797. ]
  43798. ))
  43799. characterMakers.push(() => makeCharacter(
  43800. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43801. {
  43802. front: {
  43803. height: math.unit(20, "feet"),
  43804. name: "Front",
  43805. image: {
  43806. source: "./media/characters/astra/front.svg",
  43807. extra: 1850/1714,
  43808. bottom: 106/1956
  43809. }
  43810. },
  43811. frontUndressed: {
  43812. height: math.unit(20, "feet"),
  43813. name: "Front (Undressed)",
  43814. image: {
  43815. source: "./media/characters/astra/front-undressed.svg",
  43816. extra: 1926/1749,
  43817. bottom: 0/1926
  43818. }
  43819. },
  43820. hand: {
  43821. height: math.unit(1.53, "feet"),
  43822. name: "Hand",
  43823. image: {
  43824. source: "./media/characters/astra/hand.svg"
  43825. }
  43826. },
  43827. paw: {
  43828. height: math.unit(1.53, "feet"),
  43829. name: "Paw",
  43830. image: {
  43831. source: "./media/characters/astra/paw.svg"
  43832. }
  43833. },
  43834. },
  43835. [
  43836. {
  43837. name: "Smallest",
  43838. height: math.unit(20, "feet")
  43839. },
  43840. {
  43841. name: "Normal",
  43842. height: math.unit(1e9, "miles"),
  43843. default: true
  43844. },
  43845. {
  43846. name: "Larger",
  43847. height: math.unit(5, "multiverses")
  43848. },
  43849. {
  43850. name: "Largest",
  43851. height: math.unit(1e9, "multiverses")
  43852. },
  43853. ]
  43854. ))
  43855. characterMakers.push(() => makeCharacter(
  43856. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43857. {
  43858. front: {
  43859. height: math.unit(8, "feet"),
  43860. name: "Front",
  43861. image: {
  43862. source: "./media/characters/breanna/front.svg",
  43863. extra: 1912/1632,
  43864. bottom: 33/1945
  43865. }
  43866. },
  43867. },
  43868. [
  43869. {
  43870. name: "Smallest",
  43871. height: math.unit(8, "feet")
  43872. },
  43873. {
  43874. name: "Normal",
  43875. height: math.unit(1, "mile"),
  43876. default: true
  43877. },
  43878. {
  43879. name: "Maximum",
  43880. height: math.unit(1500000000000, "lightyears")
  43881. },
  43882. ]
  43883. ))
  43884. characterMakers.push(() => makeCharacter(
  43885. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43886. {
  43887. front: {
  43888. height: math.unit(5 + 11/12, "feet"),
  43889. weight: math.unit(155, "lb"),
  43890. name: "Front",
  43891. image: {
  43892. source: "./media/characters/cai/front.svg",
  43893. extra: 1823/1702,
  43894. bottom: 32/1855
  43895. }
  43896. },
  43897. back: {
  43898. height: math.unit(5 + 11/12, "feet"),
  43899. weight: math.unit(155, "lb"),
  43900. name: "Back",
  43901. image: {
  43902. source: "./media/characters/cai/back.svg",
  43903. extra: 1809/1708,
  43904. bottom: 31/1840
  43905. }
  43906. },
  43907. },
  43908. [
  43909. {
  43910. name: "Normal",
  43911. height: math.unit(5 + 11/12, "feet"),
  43912. default: true
  43913. },
  43914. {
  43915. name: "Big",
  43916. height: math.unit(15, "feet")
  43917. },
  43918. {
  43919. name: "Macro",
  43920. height: math.unit(200, "feet")
  43921. },
  43922. ]
  43923. ))
  43924. characterMakers.push(() => makeCharacter(
  43925. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43926. {
  43927. front: {
  43928. height: math.unit(5 + 6/12, "feet"),
  43929. weight: math.unit(160, "lb"),
  43930. name: "Front",
  43931. image: {
  43932. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43933. extra: 1227/1174,
  43934. bottom: 37/1264
  43935. }
  43936. },
  43937. },
  43938. [
  43939. {
  43940. name: "Macro",
  43941. height: math.unit(444, "meters"),
  43942. default: true
  43943. },
  43944. ]
  43945. ))
  43946. characterMakers.push(() => makeCharacter(
  43947. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43948. {
  43949. front: {
  43950. height: math.unit(18 + 7/12, "feet"),
  43951. name: "Front",
  43952. image: {
  43953. source: "./media/characters/rex/front.svg",
  43954. extra: 1941/1807,
  43955. bottom: 66/2007
  43956. }
  43957. },
  43958. back: {
  43959. height: math.unit(18 + 7/12, "feet"),
  43960. name: "Back",
  43961. image: {
  43962. source: "./media/characters/rex/back.svg",
  43963. extra: 1937/1822,
  43964. bottom: 42/1979
  43965. }
  43966. },
  43967. boot: {
  43968. height: math.unit(3.45, "feet"),
  43969. name: "Boot",
  43970. image: {
  43971. source: "./media/characters/rex/boot.svg"
  43972. }
  43973. },
  43974. paw: {
  43975. height: math.unit(4.17, "feet"),
  43976. name: "Paw",
  43977. image: {
  43978. source: "./media/characters/rex/paw.svg"
  43979. }
  43980. },
  43981. head: {
  43982. height: math.unit(6.728, "feet"),
  43983. name: "Head",
  43984. image: {
  43985. source: "./media/characters/rex/head.svg"
  43986. }
  43987. },
  43988. },
  43989. [
  43990. {
  43991. name: "Nano",
  43992. height: math.unit(18 + 7/12, "feet")
  43993. },
  43994. {
  43995. name: "Micro",
  43996. height: math.unit(1.5, "megameters")
  43997. },
  43998. {
  43999. name: "Normal",
  44000. height: math.unit(440, "megameters"),
  44001. default: true
  44002. },
  44003. {
  44004. name: "Macro",
  44005. height: math.unit(2.5, "gigameters")
  44006. },
  44007. {
  44008. name: "Gigamacro",
  44009. height: math.unit(2, "galaxies")
  44010. },
  44011. ]
  44012. ))
  44013. characterMakers.push(() => makeCharacter(
  44014. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44015. {
  44016. side: {
  44017. height: math.unit(32, "feet"),
  44018. weight: math.unit(250000, "lb"),
  44019. name: "Side",
  44020. image: {
  44021. source: "./media/characters/silverwing/side.svg",
  44022. extra: 1100/1019,
  44023. bottom: 204/1304
  44024. }
  44025. },
  44026. },
  44027. [
  44028. {
  44029. name: "Normal",
  44030. height: math.unit(32, "feet"),
  44031. default: true
  44032. },
  44033. ]
  44034. ))
  44035. characterMakers.push(() => makeCharacter(
  44036. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44037. {
  44038. front: {
  44039. height: math.unit(6 + 6/12, "feet"),
  44040. weight: math.unit(350, "lb"),
  44041. name: "Front",
  44042. image: {
  44043. source: "./media/characters/tristan-hawthorne/front.svg",
  44044. extra: 1159/1124,
  44045. bottom: 37/1196
  44046. },
  44047. form: "labrador",
  44048. default: true
  44049. },
  44050. skunkFront: {
  44051. height: math.unit(4 + 6/12, "feet"),
  44052. weight: math.unit(120, "lb"),
  44053. name: "Front",
  44054. image: {
  44055. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44056. extra: 1609/1551,
  44057. bottom: 169/1778
  44058. },
  44059. form: "skunk",
  44060. default: true
  44061. },
  44062. },
  44063. [
  44064. {
  44065. name: "Normal",
  44066. height: math.unit(6 + 6/12, "feet"),
  44067. form: "labrador",
  44068. default: true
  44069. },
  44070. {
  44071. name: "Normal",
  44072. height: math.unit(4 + 6/12, "feet"),
  44073. form: "skunk",
  44074. default: true
  44075. },
  44076. ],
  44077. {
  44078. "labrador": {
  44079. name: "Labrador",
  44080. default: true
  44081. },
  44082. "skunk": {
  44083. name: "Skunk"
  44084. }
  44085. }
  44086. ))
  44087. characterMakers.push(() => makeCharacter(
  44088. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44089. {
  44090. front: {
  44091. height: math.unit(5 + 11/12, "feet"),
  44092. weight: math.unit(190, "lb"),
  44093. name: "Front",
  44094. image: {
  44095. source: "./media/characters/mizu/front.svg",
  44096. extra: 1988/1788,
  44097. bottom: 14/2002
  44098. }
  44099. },
  44100. },
  44101. [
  44102. {
  44103. name: "Normal",
  44104. height: math.unit(5 + 11/12, "feet"),
  44105. default: true
  44106. },
  44107. ]
  44108. ))
  44109. characterMakers.push(() => makeCharacter(
  44110. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44111. {
  44112. front: {
  44113. height: math.unit(1.7, "feet"),
  44114. weight: math.unit(50, "lb"),
  44115. name: "Front",
  44116. image: {
  44117. source: "./media/characters/dechroma/front.svg",
  44118. extra: 1095/859,
  44119. bottom: 64/1159
  44120. }
  44121. },
  44122. },
  44123. [
  44124. {
  44125. name: "Normal",
  44126. height: math.unit(1.7, "feet"),
  44127. default: true
  44128. },
  44129. ]
  44130. ))
  44131. characterMakers.push(() => makeCharacter(
  44132. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44133. {
  44134. side: {
  44135. height: math.unit(30, "feet"),
  44136. name: "Side",
  44137. image: {
  44138. source: "./media/characters/veluren-thanazel/side.svg",
  44139. extra: 1611/633,
  44140. bottom: 118/1729
  44141. }
  44142. },
  44143. front: {
  44144. height: math.unit(30, "feet"),
  44145. name: "Front",
  44146. image: {
  44147. source: "./media/characters/veluren-thanazel/front.svg",
  44148. extra: 1486/636,
  44149. bottom: 238/1724
  44150. }
  44151. },
  44152. head: {
  44153. height: math.unit(21.4, "feet"),
  44154. name: "Head",
  44155. image: {
  44156. source: "./media/characters/veluren-thanazel/head.svg"
  44157. }
  44158. },
  44159. genitals: {
  44160. height: math.unit(19.4, "feet"),
  44161. name: "Genitals",
  44162. image: {
  44163. source: "./media/characters/veluren-thanazel/genitals.svg"
  44164. }
  44165. },
  44166. },
  44167. [
  44168. {
  44169. name: "Social",
  44170. height: math.unit(6, "feet")
  44171. },
  44172. {
  44173. name: "Play",
  44174. height: math.unit(12, "feet")
  44175. },
  44176. {
  44177. name: "True",
  44178. height: math.unit(30, "feet"),
  44179. default: true
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44185. {
  44186. front: {
  44187. height: math.unit(7 + 6/12, "feet"),
  44188. weight: math.unit(500, "kg"),
  44189. name: "Front",
  44190. image: {
  44191. source: "./media/characters/arcturas/front.svg",
  44192. extra: 1700/1500,
  44193. bottom: 145/1845
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Normal",
  44200. height: math.unit(7 + 6/12, "feet"),
  44201. default: true
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44207. {
  44208. side: {
  44209. height: math.unit(6, "feet"),
  44210. weight: math.unit(2, "tons"),
  44211. name: "Side",
  44212. image: {
  44213. source: "./media/characters/vitaen/side.svg",
  44214. extra: 1157/617,
  44215. bottom: 122/1279
  44216. }
  44217. },
  44218. },
  44219. [
  44220. {
  44221. name: "Normal",
  44222. height: math.unit(6, "feet"),
  44223. default: true
  44224. },
  44225. ]
  44226. ))
  44227. characterMakers.push(() => makeCharacter(
  44228. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44229. {
  44230. front: {
  44231. height: math.unit(19, "feet"),
  44232. name: "Front",
  44233. image: {
  44234. source: "./media/characters/fia-dreamweaver/front.svg",
  44235. extra: 1630/1504,
  44236. bottom: 25/1655
  44237. }
  44238. },
  44239. },
  44240. [
  44241. {
  44242. name: "Normal",
  44243. height: math.unit(19, "feet"),
  44244. default: true
  44245. },
  44246. ]
  44247. ))
  44248. characterMakers.push(() => makeCharacter(
  44249. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44250. {
  44251. front: {
  44252. height: math.unit(5 + 4/12, "feet"),
  44253. name: "Front",
  44254. image: {
  44255. source: "./media/characters/artan/front.svg",
  44256. extra: 1618/1535,
  44257. bottom: 46/1664
  44258. }
  44259. },
  44260. back: {
  44261. height: math.unit(5 + 4/12, "feet"),
  44262. name: "Back",
  44263. image: {
  44264. source: "./media/characters/artan/back.svg",
  44265. extra: 1618/1543,
  44266. bottom: 31/1649
  44267. }
  44268. },
  44269. },
  44270. [
  44271. {
  44272. name: "Normal",
  44273. height: math.unit(5 + 4/12, "feet"),
  44274. default: true
  44275. },
  44276. ]
  44277. ))
  44278. characterMakers.push(() => makeCharacter(
  44279. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44280. {
  44281. side: {
  44282. height: math.unit(182, "cm"),
  44283. weight: math.unit(1000, "lb"),
  44284. name: "Side",
  44285. image: {
  44286. source: "./media/characters/silver-dragon/side.svg",
  44287. extra: 710/287,
  44288. bottom: 88/798
  44289. }
  44290. },
  44291. },
  44292. [
  44293. {
  44294. name: "Normal",
  44295. height: math.unit(182, "cm"),
  44296. default: true
  44297. },
  44298. ]
  44299. ))
  44300. characterMakers.push(() => makeCharacter(
  44301. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44302. {
  44303. side: {
  44304. height: math.unit(6 + 6/12, "feet"),
  44305. weight: math.unit(1.5, "tons"),
  44306. name: "Side",
  44307. image: {
  44308. source: "./media/characters/zephyr/side.svg",
  44309. extra: 1433/586,
  44310. bottom: 109/1542
  44311. }
  44312. },
  44313. },
  44314. [
  44315. {
  44316. name: "Normal",
  44317. height: math.unit(6 + 6/12, "feet"),
  44318. default: true
  44319. },
  44320. ]
  44321. ))
  44322. characterMakers.push(() => makeCharacter(
  44323. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44324. {
  44325. side: {
  44326. height: math.unit(1, "feet"),
  44327. name: "Side",
  44328. image: {
  44329. source: "./media/characters/vixye/side.svg",
  44330. extra: 632/541,
  44331. bottom: 0/632
  44332. }
  44333. },
  44334. },
  44335. [
  44336. {
  44337. name: "Normal",
  44338. height: math.unit(1, "feet"),
  44339. default: true
  44340. },
  44341. {
  44342. name: "True",
  44343. height: math.unit(1e15, "multiverses")
  44344. },
  44345. ]
  44346. ))
  44347. characterMakers.push(() => makeCharacter(
  44348. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44349. {
  44350. front: {
  44351. height: math.unit(8 + 2/12, "feet"),
  44352. weight: math.unit(650, "lb"),
  44353. name: "Front",
  44354. image: {
  44355. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44356. extra: 1174/1137,
  44357. bottom: 82/1256
  44358. }
  44359. },
  44360. back: {
  44361. height: math.unit(8 + 2/12, "feet"),
  44362. weight: math.unit(650, "lb"),
  44363. name: "Back",
  44364. image: {
  44365. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44366. extra: 1204/1157,
  44367. bottom: 46/1250
  44368. }
  44369. },
  44370. },
  44371. [
  44372. {
  44373. name: "Wildform",
  44374. height: math.unit(8 + 2/12, "feet"),
  44375. default: true
  44376. },
  44377. ]
  44378. ))
  44379. characterMakers.push(() => makeCharacter(
  44380. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44381. {
  44382. front: {
  44383. height: math.unit(18, "feet"),
  44384. name: "Front",
  44385. image: {
  44386. source: "./media/characters/cyphin/front.svg",
  44387. extra: 970/886,
  44388. bottom: 42/1012
  44389. }
  44390. },
  44391. back: {
  44392. height: math.unit(18, "feet"),
  44393. name: "Back",
  44394. image: {
  44395. source: "./media/characters/cyphin/back.svg",
  44396. extra: 1009/894,
  44397. bottom: 24/1033
  44398. }
  44399. },
  44400. head: {
  44401. height: math.unit(5.05, "feet"),
  44402. name: "Head",
  44403. image: {
  44404. source: "./media/characters/cyphin/head.svg"
  44405. }
  44406. },
  44407. tailbud: {
  44408. height: math.unit(5, "feet"),
  44409. name: "Tailbud",
  44410. image: {
  44411. source: "./media/characters/cyphin/tailbud.svg"
  44412. }
  44413. },
  44414. },
  44415. [
  44416. ]
  44417. ))
  44418. characterMakers.push(() => makeCharacter(
  44419. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44420. {
  44421. side: {
  44422. height: math.unit(10, "feet"),
  44423. weight: math.unit(6, "tons"),
  44424. name: "Side",
  44425. image: {
  44426. source: "./media/characters/raijin/side.svg",
  44427. extra: 1529/613,
  44428. bottom: 337/1866
  44429. }
  44430. },
  44431. },
  44432. [
  44433. {
  44434. name: "Normal",
  44435. height: math.unit(10, "feet"),
  44436. default: true
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44442. {
  44443. side: {
  44444. height: math.unit(9, "feet"),
  44445. name: "Side",
  44446. image: {
  44447. source: "./media/characters/nilghais/side.svg",
  44448. extra: 1047/744,
  44449. bottom: 91/1138
  44450. }
  44451. },
  44452. head: {
  44453. height: math.unit(3.14, "feet"),
  44454. name: "Head",
  44455. image: {
  44456. source: "./media/characters/nilghais/head.svg"
  44457. }
  44458. },
  44459. mouth: {
  44460. height: math.unit(4.6, "feet"),
  44461. name: "Mouth",
  44462. image: {
  44463. source: "./media/characters/nilghais/mouth.svg"
  44464. }
  44465. },
  44466. wings: {
  44467. height: math.unit(24, "feet"),
  44468. name: "Wings",
  44469. image: {
  44470. source: "./media/characters/nilghais/wings.svg"
  44471. }
  44472. },
  44473. ass: {
  44474. height: math.unit(6.12, "feet"),
  44475. name: "Ass",
  44476. image: {
  44477. source: "./media/characters/nilghais/ass.svg"
  44478. }
  44479. },
  44480. },
  44481. [
  44482. {
  44483. name: "Normal",
  44484. height: math.unit(9, "feet"),
  44485. default: true
  44486. },
  44487. ]
  44488. ))
  44489. characterMakers.push(() => makeCharacter(
  44490. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44491. {
  44492. regular: {
  44493. height: math.unit(16 + 2/12, "feet"),
  44494. weight: math.unit(2300, "lb"),
  44495. name: "Regular",
  44496. image: {
  44497. source: "./media/characters/zolgar/regular.svg",
  44498. extra: 1246/1004,
  44499. bottom: 124/1370
  44500. }
  44501. },
  44502. boxers: {
  44503. height: math.unit(16 + 2/12, "feet"),
  44504. weight: math.unit(2300, "lb"),
  44505. name: "Boxers",
  44506. image: {
  44507. source: "./media/characters/zolgar/boxers.svg",
  44508. extra: 1246/1004,
  44509. bottom: 124/1370
  44510. }
  44511. },
  44512. armored: {
  44513. height: math.unit(16 + 2/12, "feet"),
  44514. weight: math.unit(2300, "lb"),
  44515. name: "Armored",
  44516. image: {
  44517. source: "./media/characters/zolgar/armored.svg",
  44518. extra: 1246/1004,
  44519. bottom: 124/1370
  44520. }
  44521. },
  44522. goth: {
  44523. height: math.unit(16 + 2/12, "feet"),
  44524. weight: math.unit(2300, "lb"),
  44525. name: "Goth",
  44526. image: {
  44527. source: "./media/characters/zolgar/goth.svg",
  44528. extra: 1246/1004,
  44529. bottom: 124/1370
  44530. }
  44531. },
  44532. },
  44533. [
  44534. {
  44535. name: "Shrunken Down",
  44536. height: math.unit(9 + 2/12, "feet")
  44537. },
  44538. {
  44539. name: "Normal",
  44540. height: math.unit(16 + 2/12, "feet"),
  44541. default: true
  44542. },
  44543. ]
  44544. ))
  44545. characterMakers.push(() => makeCharacter(
  44546. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44547. {
  44548. front: {
  44549. height: math.unit(6, "feet"),
  44550. weight: math.unit(168, "lb"),
  44551. name: "Front",
  44552. image: {
  44553. source: "./media/characters/luca/front.svg",
  44554. extra: 841/667,
  44555. bottom: 102/943
  44556. }
  44557. },
  44558. },
  44559. [
  44560. {
  44561. name: "Normal",
  44562. height: math.unit(6, "feet"),
  44563. default: true
  44564. },
  44565. ]
  44566. ))
  44567. characterMakers.push(() => makeCharacter(
  44568. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44569. {
  44570. side: {
  44571. height: math.unit(7 + 3/12, "feet"),
  44572. weight: math.unit(312, "lb"),
  44573. name: "Side",
  44574. image: {
  44575. source: "./media/characters/zezo/side.svg",
  44576. extra: 1192/1067,
  44577. bottom: 63/1255
  44578. }
  44579. },
  44580. },
  44581. [
  44582. {
  44583. name: "Normal",
  44584. height: math.unit(7 + 3/12, "feet"),
  44585. default: true
  44586. },
  44587. ]
  44588. ))
  44589. characterMakers.push(() => makeCharacter(
  44590. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44591. {
  44592. front: {
  44593. height: math.unit(5 + 5/12, "feet"),
  44594. weight: math.unit(170, "lb"),
  44595. name: "Front",
  44596. image: {
  44597. source: "./media/characters/mayso/front.svg",
  44598. extra: 1215/1108,
  44599. bottom: 16/1231
  44600. }
  44601. },
  44602. },
  44603. [
  44604. {
  44605. name: "Normal",
  44606. height: math.unit(5 + 5/12, "feet"),
  44607. default: true
  44608. },
  44609. ]
  44610. ))
  44611. characterMakers.push(() => makeCharacter(
  44612. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44613. {
  44614. front: {
  44615. height: math.unit(4 + 3/12, "feet"),
  44616. weight: math.unit(80, "lb"),
  44617. name: "Front",
  44618. image: {
  44619. source: "./media/characters/hess/front.svg",
  44620. extra: 1200/1123,
  44621. bottom: 16/1216
  44622. }
  44623. },
  44624. },
  44625. [
  44626. {
  44627. name: "Normal",
  44628. height: math.unit(4 + 3/12, "feet"),
  44629. default: true
  44630. },
  44631. ]
  44632. ))
  44633. characterMakers.push(() => makeCharacter(
  44634. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44635. {
  44636. front: {
  44637. height: math.unit(1.9, "meters"),
  44638. name: "Front",
  44639. image: {
  44640. source: "./media/characters/ashgar/front.svg",
  44641. extra: 1177/1146,
  44642. bottom: 99/1276
  44643. }
  44644. },
  44645. back: {
  44646. height: math.unit(1.9, "meters"),
  44647. name: "Back",
  44648. image: {
  44649. source: "./media/characters/ashgar/back.svg",
  44650. extra: 1201/1183,
  44651. bottom: 53/1254
  44652. }
  44653. },
  44654. feral: {
  44655. height: math.unit(1.4, "meters"),
  44656. name: "Feral",
  44657. image: {
  44658. source: "./media/characters/ashgar/feral.svg",
  44659. extra: 370/345,
  44660. bottom: 45/415
  44661. }
  44662. },
  44663. },
  44664. [
  44665. {
  44666. name: "Normal",
  44667. height: math.unit(1.9, "meters"),
  44668. default: true
  44669. },
  44670. ]
  44671. ))
  44672. characterMakers.push(() => makeCharacter(
  44673. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44674. {
  44675. regular: {
  44676. height: math.unit(6, "feet"),
  44677. weight: math.unit(220, "lb"),
  44678. name: "Regular",
  44679. image: {
  44680. source: "./media/characters/phillip/regular.svg",
  44681. extra: 1373/1277,
  44682. bottom: 75/1448
  44683. }
  44684. },
  44685. dressed: {
  44686. height: math.unit(6, "feet"),
  44687. weight: math.unit(220, "lb"),
  44688. name: "Dressed",
  44689. image: {
  44690. source: "./media/characters/phillip/dressed.svg",
  44691. extra: 1373/1277,
  44692. bottom: 75/1448
  44693. }
  44694. },
  44695. paw: {
  44696. height: math.unit(1.44, "feet"),
  44697. name: "Paw",
  44698. image: {
  44699. source: "./media/characters/phillip/paw.svg"
  44700. }
  44701. },
  44702. },
  44703. [
  44704. {
  44705. name: "Normal",
  44706. height: math.unit(6, "feet"),
  44707. default: true
  44708. },
  44709. ]
  44710. ))
  44711. characterMakers.push(() => makeCharacter(
  44712. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44713. {
  44714. side: {
  44715. height: math.unit(42, "feet"),
  44716. name: "Side",
  44717. image: {
  44718. source: "./media/characters/uvula/side.svg",
  44719. extra: 683/586,
  44720. bottom: 60/743
  44721. }
  44722. },
  44723. front: {
  44724. height: math.unit(42, "feet"),
  44725. name: "Front",
  44726. image: {
  44727. source: "./media/characters/uvula/front.svg",
  44728. extra: 705/613,
  44729. bottom: 54/759
  44730. }
  44731. },
  44732. maw: {
  44733. height: math.unit(23.5, "feet"),
  44734. name: "Maw",
  44735. image: {
  44736. source: "./media/characters/uvula/maw.svg"
  44737. }
  44738. },
  44739. },
  44740. [
  44741. {
  44742. name: "Original Size",
  44743. height: math.unit(14, "inches")
  44744. },
  44745. {
  44746. name: "Human Size",
  44747. height: math.unit(6, "feet")
  44748. },
  44749. {
  44750. name: "Big",
  44751. height: math.unit(42, "feet"),
  44752. default: true
  44753. },
  44754. {
  44755. name: "Bigger",
  44756. height: math.unit(100, "feet")
  44757. },
  44758. ]
  44759. ))
  44760. characterMakers.push(() => makeCharacter(
  44761. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44762. {
  44763. front: {
  44764. height: math.unit(5 + 11/12, "feet"),
  44765. name: "Front",
  44766. image: {
  44767. source: "./media/characters/lannah/front.svg",
  44768. extra: 1208/1113,
  44769. bottom: 97/1305
  44770. }
  44771. },
  44772. },
  44773. [
  44774. {
  44775. name: "Normal",
  44776. height: math.unit(5 + 11/12, "feet"),
  44777. default: true
  44778. },
  44779. ]
  44780. ))
  44781. characterMakers.push(() => makeCharacter(
  44782. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44783. {
  44784. front: {
  44785. height: math.unit(6 + 3/12, "feet"),
  44786. weight: math.unit(3.5, "tons"),
  44787. name: "Front",
  44788. image: {
  44789. source: "./media/characters/emberflame/front.svg",
  44790. extra: 1198/672,
  44791. bottom: 82/1280
  44792. }
  44793. },
  44794. side: {
  44795. height: math.unit(6 + 3/12, "feet"),
  44796. weight: math.unit(3.5, "tons"),
  44797. name: "Side",
  44798. image: {
  44799. source: "./media/characters/emberflame/side.svg",
  44800. extra: 938/527,
  44801. bottom: 56/994
  44802. }
  44803. },
  44804. },
  44805. [
  44806. {
  44807. name: "Normal",
  44808. height: math.unit(6 + 3/12, "feet"),
  44809. default: true
  44810. },
  44811. ]
  44812. ))
  44813. characterMakers.push(() => makeCharacter(
  44814. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44815. {
  44816. side: {
  44817. height: math.unit(17.5, "feet"),
  44818. weight: math.unit(35, "tons"),
  44819. name: "Side",
  44820. image: {
  44821. source: "./media/characters/sophie-ambrose/side.svg",
  44822. extra: 1573/1242,
  44823. bottom: 71/1644
  44824. }
  44825. },
  44826. maw: {
  44827. height: math.unit(7.4, "feet"),
  44828. name: "Maw",
  44829. image: {
  44830. source: "./media/characters/sophie-ambrose/maw.svg"
  44831. }
  44832. },
  44833. },
  44834. [
  44835. {
  44836. name: "Normal",
  44837. height: math.unit(17.5, "feet"),
  44838. default: true
  44839. },
  44840. ]
  44841. ))
  44842. characterMakers.push(() => makeCharacter(
  44843. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44844. {
  44845. front: {
  44846. height: math.unit(280, "feet"),
  44847. weight: math.unit(550, "tons"),
  44848. name: "Front",
  44849. image: {
  44850. source: "./media/characters/king-mugi/front.svg",
  44851. extra: 1102/947,
  44852. bottom: 104/1206
  44853. }
  44854. },
  44855. },
  44856. [
  44857. {
  44858. name: "King Mugi",
  44859. height: math.unit(280, "feet"),
  44860. default: true
  44861. },
  44862. ]
  44863. ))
  44864. characterMakers.push(() => makeCharacter(
  44865. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44866. {
  44867. front: {
  44868. height: math.unit(64, "meters"),
  44869. name: "Front",
  44870. image: {
  44871. source: "./media/characters/nova-fox/front.svg",
  44872. extra: 1310/1246,
  44873. bottom: 65/1375
  44874. }
  44875. },
  44876. },
  44877. [
  44878. {
  44879. name: "Macro",
  44880. height: math.unit(64, "meters"),
  44881. default: true
  44882. },
  44883. ]
  44884. ))
  44885. characterMakers.push(() => makeCharacter(
  44886. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44887. {
  44888. front: {
  44889. height: math.unit(6 + 3/12, "feet"),
  44890. weight: math.unit(170, "lb"),
  44891. name: "Front",
  44892. image: {
  44893. source: "./media/characters/sam-bat/front.svg",
  44894. extra: 1601/1411,
  44895. bottom: 125/1726
  44896. }
  44897. },
  44898. back: {
  44899. height: math.unit(6 + 3/12, "feet"),
  44900. weight: math.unit(170, "lb"),
  44901. name: "Back",
  44902. image: {
  44903. source: "./media/characters/sam-bat/back.svg",
  44904. extra: 1577/1405,
  44905. bottom: 58/1635
  44906. }
  44907. },
  44908. },
  44909. [
  44910. {
  44911. name: "Normal",
  44912. height: math.unit(6 + 3/12, "feet"),
  44913. default: true
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44919. {
  44920. front: {
  44921. height: math.unit(59, "feet"),
  44922. weight: math.unit(40000, "lb"),
  44923. name: "Front",
  44924. image: {
  44925. source: "./media/characters/inari/front.svg",
  44926. extra: 1884/1350,
  44927. bottom: 95/1979
  44928. }
  44929. },
  44930. },
  44931. [
  44932. {
  44933. name: "Gigantamax",
  44934. height: math.unit(59, "feet"),
  44935. default: true
  44936. },
  44937. ]
  44938. ))
  44939. characterMakers.push(() => makeCharacter(
  44940. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44941. {
  44942. front: {
  44943. height: math.unit(5 + 8/12, "feet"),
  44944. name: "Front",
  44945. image: {
  44946. source: "./media/characters/elizabeth/front.svg",
  44947. extra: 1395/1298,
  44948. bottom: 54/1449
  44949. }
  44950. },
  44951. mouth: {
  44952. height: math.unit(1.97, "feet"),
  44953. name: "Mouth",
  44954. image: {
  44955. source: "./media/characters/elizabeth/mouth.svg"
  44956. }
  44957. },
  44958. foot: {
  44959. height: math.unit(1.17, "feet"),
  44960. name: "Foot",
  44961. image: {
  44962. source: "./media/characters/elizabeth/foot.svg"
  44963. }
  44964. },
  44965. },
  44966. [
  44967. {
  44968. name: "Normal",
  44969. height: math.unit(5 + 8/12, "feet"),
  44970. default: true
  44971. },
  44972. {
  44973. name: "Minimacro",
  44974. height: math.unit(18, "feet")
  44975. },
  44976. {
  44977. name: "Macro",
  44978. height: math.unit(180, "feet")
  44979. },
  44980. ]
  44981. ))
  44982. characterMakers.push(() => makeCharacter(
  44983. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44984. {
  44985. front: {
  44986. height: math.unit(5 + 2/12, "feet"),
  44987. name: "Front",
  44988. image: {
  44989. source: "./media/characters/october-gossamer/front.svg",
  44990. extra: 505/454,
  44991. bottom: 7/512
  44992. }
  44993. },
  44994. back: {
  44995. height: math.unit(5 + 2/12, "feet"),
  44996. name: "Back",
  44997. image: {
  44998. source: "./media/characters/october-gossamer/back.svg",
  44999. extra: 501/454,
  45000. bottom: 11/512
  45001. }
  45002. },
  45003. },
  45004. [
  45005. {
  45006. name: "Normal",
  45007. height: math.unit(5 + 2/12, "feet"),
  45008. default: true
  45009. },
  45010. ]
  45011. ))
  45012. characterMakers.push(() => makeCharacter(
  45013. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45014. {
  45015. front: {
  45016. height: math.unit(5, "feet"),
  45017. name: "Front",
  45018. image: {
  45019. source: "./media/characters/epiglottis/front.svg",
  45020. extra: 923/849,
  45021. bottom: 17/940
  45022. }
  45023. },
  45024. },
  45025. [
  45026. {
  45027. name: "Original Size",
  45028. height: math.unit(10, "inches")
  45029. },
  45030. {
  45031. name: "Human Size",
  45032. height: math.unit(5, "feet"),
  45033. default: true
  45034. },
  45035. {
  45036. name: "Big",
  45037. height: math.unit(25, "feet")
  45038. },
  45039. {
  45040. name: "Bigger",
  45041. height: math.unit(50, "feet")
  45042. },
  45043. {
  45044. name: "oh lawd",
  45045. height: math.unit(75, "feet")
  45046. },
  45047. ]
  45048. ))
  45049. characterMakers.push(() => makeCharacter(
  45050. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45051. {
  45052. front: {
  45053. height: math.unit(2 + 4/12, "feet"),
  45054. weight: math.unit(60, "lb"),
  45055. name: "Front",
  45056. image: {
  45057. source: "./media/characters/lerm/front.svg",
  45058. extra: 796/790,
  45059. bottom: 79/875
  45060. }
  45061. },
  45062. },
  45063. [
  45064. {
  45065. name: "Normal",
  45066. height: math.unit(2 + 4/12, "feet"),
  45067. default: true
  45068. },
  45069. ]
  45070. ))
  45071. characterMakers.push(() => makeCharacter(
  45072. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45073. {
  45074. front: {
  45075. height: math.unit(5.5, "feet"),
  45076. weight: math.unit(130, "lb"),
  45077. name: "Front",
  45078. image: {
  45079. source: "./media/characters/xena-nebadon/front.svg",
  45080. extra: 1828/1730,
  45081. bottom: 79/1907
  45082. }
  45083. },
  45084. },
  45085. [
  45086. {
  45087. name: "Tiny Puppy",
  45088. height: math.unit(3, "inches")
  45089. },
  45090. {
  45091. name: "Normal",
  45092. height: math.unit(5.5, "feet"),
  45093. default: true
  45094. },
  45095. {
  45096. name: "Lotta Lady",
  45097. height: math.unit(12, "feet")
  45098. },
  45099. {
  45100. name: "Pretty Big",
  45101. height: math.unit(100, "feet")
  45102. },
  45103. {
  45104. name: "Big",
  45105. height: math.unit(500, "feet")
  45106. },
  45107. {
  45108. name: "Skyscraper Toys",
  45109. height: math.unit(2500, "feet")
  45110. },
  45111. {
  45112. name: "Plane Catcher",
  45113. height: math.unit(8, "miles")
  45114. },
  45115. {
  45116. name: "Planet Toys",
  45117. height: math.unit(15, "earths")
  45118. },
  45119. {
  45120. name: "Stardust",
  45121. height: math.unit(0.25, "galaxies")
  45122. },
  45123. {
  45124. name: "Snacks",
  45125. height: math.unit(70, "universes")
  45126. },
  45127. ]
  45128. ))
  45129. characterMakers.push(() => makeCharacter(
  45130. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45131. {
  45132. front: {
  45133. height: math.unit(1.6, "meters"),
  45134. weight: math.unit(60, "kg"),
  45135. name: "Front",
  45136. image: {
  45137. source: "./media/characters/bounty/front.svg",
  45138. extra: 1426/1308,
  45139. bottom: 15/1441
  45140. }
  45141. },
  45142. back: {
  45143. height: math.unit(1.6, "meters"),
  45144. weight: math.unit(60, "kg"),
  45145. name: "Back",
  45146. image: {
  45147. source: "./media/characters/bounty/back.svg",
  45148. extra: 1417/1307,
  45149. bottom: 8/1425
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Normal",
  45156. height: math.unit(1.6, "meters"),
  45157. default: true
  45158. },
  45159. {
  45160. name: "Macro",
  45161. height: math.unit(300, "meters")
  45162. },
  45163. ]
  45164. ))
  45165. characterMakers.push(() => makeCharacter(
  45166. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45167. {
  45168. front: {
  45169. height: math.unit(2 + 8/12, "feet"),
  45170. weight: math.unit(15, "lb"),
  45171. name: "Front",
  45172. image: {
  45173. source: "./media/characters/mochi/front.svg",
  45174. extra: 1022/852,
  45175. bottom: 435/1457
  45176. }
  45177. },
  45178. back: {
  45179. height: math.unit(2 + 8/12, "feet"),
  45180. weight: math.unit(15, "lb"),
  45181. name: "Back",
  45182. image: {
  45183. source: "./media/characters/mochi/back.svg",
  45184. extra: 1335/1119,
  45185. bottom: 39/1374
  45186. }
  45187. },
  45188. bird: {
  45189. height: math.unit(2 + 8/12, "feet"),
  45190. weight: math.unit(15, "lb"),
  45191. name: "Bird",
  45192. image: {
  45193. source: "./media/characters/mochi/bird.svg",
  45194. extra: 1251/1113,
  45195. bottom: 178/1429
  45196. }
  45197. },
  45198. kaiju: {
  45199. height: math.unit(154, "feet"),
  45200. weight: math.unit(1e7, "lb"),
  45201. name: "Kaiju",
  45202. image: {
  45203. source: "./media/characters/mochi/kaiju.svg",
  45204. extra: 460/324,
  45205. bottom: 40/500
  45206. }
  45207. },
  45208. head: {
  45209. height: math.unit(1.21, "feet"),
  45210. name: "Head",
  45211. image: {
  45212. source: "./media/characters/mochi/head.svg"
  45213. }
  45214. },
  45215. alternateTail: {
  45216. height: math.unit(2 + 8/12, "feet"),
  45217. weight: math.unit(45, "lb"),
  45218. name: "Alternate Tail",
  45219. image: {
  45220. source: "./media/characters/mochi/alternate-tail.svg",
  45221. extra: 139/76,
  45222. bottom: 45/184
  45223. }
  45224. },
  45225. },
  45226. [
  45227. {
  45228. name: "Micro",
  45229. height: math.unit(2, "inches")
  45230. },
  45231. {
  45232. name: "Normal",
  45233. height: math.unit(2 + 8/12, "feet"),
  45234. default: true
  45235. },
  45236. {
  45237. name: "Macro",
  45238. height: math.unit(106, "feet")
  45239. },
  45240. ]
  45241. ))
  45242. characterMakers.push(() => makeCharacter(
  45243. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45244. {
  45245. front: {
  45246. height: math.unit(5.67, "feet"),
  45247. weight: math.unit(135, "lb"),
  45248. name: "Front",
  45249. image: {
  45250. source: "./media/characters/sarel/front.svg",
  45251. extra: 865/788,
  45252. bottom: 97/962
  45253. }
  45254. },
  45255. back: {
  45256. height: math.unit(5.67, "feet"),
  45257. weight: math.unit(135, "lb"),
  45258. name: "Back",
  45259. image: {
  45260. source: "./media/characters/sarel/back.svg",
  45261. extra: 857/777,
  45262. bottom: 32/889
  45263. }
  45264. },
  45265. chozoan: {
  45266. height: math.unit(5.67, "feet"),
  45267. weight: math.unit(135, "lb"),
  45268. name: "Chozoan",
  45269. image: {
  45270. source: "./media/characters/sarel/chozoan.svg",
  45271. extra: 865/788,
  45272. bottom: 97/962
  45273. }
  45274. },
  45275. current: {
  45276. height: math.unit(5.67, "feet"),
  45277. weight: math.unit(135, "lb"),
  45278. name: "Current",
  45279. image: {
  45280. source: "./media/characters/sarel/current.svg",
  45281. extra: 865/788,
  45282. bottom: 97/962
  45283. }
  45284. },
  45285. head: {
  45286. height: math.unit(1.77, "feet"),
  45287. name: "Head",
  45288. image: {
  45289. source: "./media/characters/sarel/head.svg"
  45290. }
  45291. },
  45292. claws: {
  45293. height: math.unit(1.8, "feet"),
  45294. name: "Claws",
  45295. image: {
  45296. source: "./media/characters/sarel/claws.svg"
  45297. }
  45298. },
  45299. clawsAlt: {
  45300. height: math.unit(1.8, "feet"),
  45301. name: "Claws-alt",
  45302. image: {
  45303. source: "./media/characters/sarel/claws-alt.svg"
  45304. }
  45305. },
  45306. },
  45307. [
  45308. {
  45309. name: "Normal",
  45310. height: math.unit(5.67, "feet"),
  45311. default: true
  45312. },
  45313. ]
  45314. ))
  45315. characterMakers.push(() => makeCharacter(
  45316. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45317. {
  45318. front: {
  45319. height: math.unit(5500, "feet"),
  45320. name: "Front",
  45321. image: {
  45322. source: "./media/characters/alyonia/front.svg",
  45323. extra: 1200/1135,
  45324. bottom: 29/1229
  45325. }
  45326. },
  45327. back: {
  45328. height: math.unit(5500, "feet"),
  45329. name: "Back",
  45330. image: {
  45331. source: "./media/characters/alyonia/back.svg",
  45332. extra: 1205/1138,
  45333. bottom: 10/1215
  45334. }
  45335. },
  45336. },
  45337. [
  45338. {
  45339. name: "Small",
  45340. height: math.unit(10, "feet")
  45341. },
  45342. {
  45343. name: "Macro",
  45344. height: math.unit(500, "feet")
  45345. },
  45346. {
  45347. name: "Mega Macro",
  45348. height: math.unit(5500, "feet"),
  45349. default: true
  45350. },
  45351. {
  45352. name: "Mega Macro+",
  45353. height: math.unit(500000, "feet")
  45354. },
  45355. {
  45356. name: "Giga Macro",
  45357. height: math.unit(3000, "miles")
  45358. },
  45359. {
  45360. name: "Tera Macro",
  45361. height: math.unit(2.8e6, "miles")
  45362. },
  45363. {
  45364. name: "Galactic",
  45365. height: math.unit(120000, "lightyears")
  45366. },
  45367. ]
  45368. ))
  45369. characterMakers.push(() => makeCharacter(
  45370. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45371. {
  45372. werewolf: {
  45373. height: math.unit(8, "feet"),
  45374. weight: math.unit(425, "lb"),
  45375. name: "Werewolf",
  45376. image: {
  45377. source: "./media/characters/autumn/werewolf.svg",
  45378. extra: 2154/2031,
  45379. bottom: 160/2314
  45380. }
  45381. },
  45382. human: {
  45383. height: math.unit(5 + 8/12, "feet"),
  45384. weight: math.unit(150, "lb"),
  45385. name: "Human",
  45386. image: {
  45387. source: "./media/characters/autumn/human.svg",
  45388. extra: 1200/1149,
  45389. bottom: 30/1230
  45390. }
  45391. },
  45392. },
  45393. [
  45394. {
  45395. name: "Normal",
  45396. height: math.unit(8, "feet"),
  45397. default: true
  45398. },
  45399. ]
  45400. ))
  45401. characterMakers.push(() => makeCharacter(
  45402. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45403. {
  45404. front: {
  45405. height: math.unit(8 + 5/12, "feet"),
  45406. weight: math.unit(825, "lb"),
  45407. name: "Front",
  45408. image: {
  45409. source: "./media/characters/cobalt-charizard/front.svg",
  45410. extra: 1268/1155,
  45411. bottom: 122/1390
  45412. }
  45413. },
  45414. side: {
  45415. height: math.unit(8 + 5/12, "feet"),
  45416. weight: math.unit(825, "lb"),
  45417. name: "Side",
  45418. image: {
  45419. source: "./media/characters/cobalt-charizard/side.svg",
  45420. extra: 1348/1257,
  45421. bottom: 58/1406
  45422. }
  45423. },
  45424. gMax: {
  45425. height: math.unit(134 + 11/12, "feet"),
  45426. name: "G-Max",
  45427. image: {
  45428. source: "./media/characters/cobalt-charizard/g-max.svg",
  45429. extra: 1835/1541,
  45430. bottom: 151/1986
  45431. }
  45432. },
  45433. },
  45434. [
  45435. {
  45436. name: "Normal",
  45437. height: math.unit(8 + 5/12, "feet"),
  45438. default: true
  45439. },
  45440. ]
  45441. ))
  45442. characterMakers.push(() => makeCharacter(
  45443. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45444. {
  45445. front: {
  45446. height: math.unit(6 + 3/12, "feet"),
  45447. weight: math.unit(210, "lb"),
  45448. name: "Front",
  45449. image: {
  45450. source: "./media/characters/stella/front.svg",
  45451. extra: 3549/3335,
  45452. bottom: 51/3600
  45453. }
  45454. },
  45455. },
  45456. [
  45457. {
  45458. name: "Normal",
  45459. height: math.unit(6 + 3/12, "feet"),
  45460. default: true
  45461. },
  45462. ]
  45463. ))
  45464. characterMakers.push(() => makeCharacter(
  45465. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45466. {
  45467. front: {
  45468. height: math.unit(5, "feet"),
  45469. weight: math.unit(90, "lb"),
  45470. name: "Front",
  45471. image: {
  45472. source: "./media/characters/riley-bishop/front.svg",
  45473. extra: 1450/1428,
  45474. bottom: 152/1602
  45475. }
  45476. },
  45477. },
  45478. [
  45479. {
  45480. name: "Normal",
  45481. height: math.unit(5, "feet"),
  45482. default: true
  45483. },
  45484. ]
  45485. ))
  45486. characterMakers.push(() => makeCharacter(
  45487. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45488. {
  45489. side: {
  45490. height: math.unit(8 + 2/12, "feet"),
  45491. weight: math.unit(500, "kg"),
  45492. name: "Side",
  45493. image: {
  45494. source: "./media/characters/theo-arcanine/side.svg",
  45495. extra: 1342/1074,
  45496. bottom: 111/1453
  45497. }
  45498. },
  45499. },
  45500. [
  45501. {
  45502. name: "Normal",
  45503. height: math.unit(8 + 2/12, "feet"),
  45504. default: true
  45505. },
  45506. ]
  45507. ))
  45508. characterMakers.push(() => makeCharacter(
  45509. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45510. {
  45511. front: {
  45512. height: math.unit(4, "feet"),
  45513. name: "Front",
  45514. image: {
  45515. source: "./media/characters/kali/front.svg",
  45516. extra: 1074/867,
  45517. bottom: 34/1108
  45518. }
  45519. },
  45520. back: {
  45521. height: math.unit(4, "feet"),
  45522. name: "Back",
  45523. image: {
  45524. source: "./media/characters/kali/back.svg",
  45525. extra: 1068/863,
  45526. bottom: 26/1094
  45527. }
  45528. },
  45529. frontAlt: {
  45530. height: math.unit(4, "feet"),
  45531. name: "Front (Alt)",
  45532. image: {
  45533. source: "./media/characters/kali/front-alt.svg",
  45534. extra: 1921/1357,
  45535. bottom: 70/1991
  45536. }
  45537. },
  45538. },
  45539. [
  45540. {
  45541. name: "Normal",
  45542. height: math.unit(4, "feet"),
  45543. default: true
  45544. },
  45545. {
  45546. name: "Big'vali",
  45547. height: math.unit(11, "feet")
  45548. },
  45549. {
  45550. name: "Macro",
  45551. height: math.unit(32, "meters")
  45552. },
  45553. {
  45554. name: "Macro+",
  45555. height: math.unit(150, "meters")
  45556. },
  45557. {
  45558. name: "Megamacro",
  45559. height: math.unit(7500, "meters")
  45560. },
  45561. {
  45562. name: "Megamacro+",
  45563. height: math.unit(80, "kilometers")
  45564. },
  45565. ]
  45566. ))
  45567. characterMakers.push(() => makeCharacter(
  45568. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45569. {
  45570. side: {
  45571. height: math.unit(5 + 11/12, "feet"),
  45572. weight: math.unit(236, "lb"),
  45573. name: "Side",
  45574. image: {
  45575. source: "./media/characters/gapp/side.svg",
  45576. extra: 775/340,
  45577. bottom: 58/833
  45578. }
  45579. },
  45580. mouth: {
  45581. height: math.unit(2.98, "feet"),
  45582. name: "Mouth",
  45583. image: {
  45584. source: "./media/characters/gapp/mouth.svg"
  45585. }
  45586. },
  45587. },
  45588. [
  45589. {
  45590. name: "Normal",
  45591. height: math.unit(5 + 1/12, "feet"),
  45592. default: true
  45593. },
  45594. ]
  45595. ))
  45596. characterMakers.push(() => makeCharacter(
  45597. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45598. {
  45599. front: {
  45600. height: math.unit(6, "feet"),
  45601. name: "Front",
  45602. image: {
  45603. source: "./media/characters/persephone/front.svg",
  45604. extra: 1895/1717,
  45605. bottom: 96/1991
  45606. }
  45607. },
  45608. back: {
  45609. height: math.unit(6, "feet"),
  45610. name: "Back",
  45611. image: {
  45612. source: "./media/characters/persephone/back.svg",
  45613. extra: 1868/1679,
  45614. bottom: 26/1894
  45615. }
  45616. },
  45617. casual: {
  45618. height: math.unit(6, "feet"),
  45619. name: "Casual",
  45620. image: {
  45621. source: "./media/characters/persephone/casual.svg",
  45622. extra: 1713/1541,
  45623. bottom: 76/1789
  45624. }
  45625. },
  45626. gaming: {
  45627. height: math.unit(3.55, "feet"),
  45628. name: "Gaming",
  45629. image: {
  45630. source: "./media/characters/persephone/gaming.svg",
  45631. extra: 1242/1038,
  45632. bottom: 66/1308
  45633. }
  45634. },
  45635. head: {
  45636. height: math.unit(2.15, "feet"),
  45637. name: "😐",
  45638. image: {
  45639. source: "./media/characters/persephone/head.svg"
  45640. }
  45641. },
  45642. talking: {
  45643. height: math.unit(2.5, "feet"),
  45644. name: "💬",
  45645. image: {
  45646. source: "./media/characters/persephone/talking.svg"
  45647. }
  45648. },
  45649. hmm: {
  45650. height: math.unit(2.28, "feet"),
  45651. name: "🤨",
  45652. image: {
  45653. source: "./media/characters/persephone/hmm.svg"
  45654. }
  45655. },
  45656. },
  45657. [
  45658. {
  45659. name: "Human Size",
  45660. height: math.unit(6, "feet")
  45661. },
  45662. {
  45663. name: "Big Steppy",
  45664. height: math.unit(600, "meters"),
  45665. default: true
  45666. },
  45667. {
  45668. name: "Galaxy Brain",
  45669. height: math.unit(1, "zettameter")
  45670. },
  45671. ]
  45672. ))
  45673. characterMakers.push(() => makeCharacter(
  45674. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45675. {
  45676. front: {
  45677. height: math.unit(1.85, "meters"),
  45678. name: "Front",
  45679. image: {
  45680. source: "./media/characters/riley-foxthing/front.svg",
  45681. extra: 1495/1354,
  45682. bottom: 122/1617
  45683. }
  45684. },
  45685. frontAlt: {
  45686. height: math.unit(1.85, "meters"),
  45687. name: "Front (Alt)",
  45688. image: {
  45689. source: "./media/characters/riley-foxthing/front-alt.svg",
  45690. extra: 1572/1389,
  45691. bottom: 116/1688
  45692. }
  45693. },
  45694. },
  45695. [
  45696. {
  45697. name: "Normal Sized",
  45698. height: math.unit(1.85, "meters"),
  45699. default: true
  45700. },
  45701. {
  45702. name: "Quite Sizable",
  45703. height: math.unit(5, "meters")
  45704. },
  45705. {
  45706. name: "Rather Large",
  45707. height: math.unit(20, "meters")
  45708. },
  45709. {
  45710. name: "Macro",
  45711. height: math.unit(450, "meters")
  45712. },
  45713. {
  45714. name: "Giga",
  45715. height: math.unit(5, "km")
  45716. },
  45717. ]
  45718. ))
  45719. characterMakers.push(() => makeCharacter(
  45720. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45721. {
  45722. front: {
  45723. height: math.unit(6, "feet"),
  45724. weight: math.unit(200, "lb"),
  45725. name: "Front",
  45726. image: {
  45727. source: "./media/characters/blizzard/front.svg",
  45728. extra: 1136/990,
  45729. bottom: 136/1272
  45730. }
  45731. },
  45732. back: {
  45733. height: math.unit(6, "feet"),
  45734. weight: math.unit(200, "lb"),
  45735. name: "Back",
  45736. image: {
  45737. source: "./media/characters/blizzard/back.svg",
  45738. extra: 1175/1034,
  45739. bottom: 97/1272
  45740. }
  45741. },
  45742. sitting: {
  45743. height: math.unit(3.725, "feet"),
  45744. weight: math.unit(200, "lb"),
  45745. name: "Sitting",
  45746. image: {
  45747. source: "./media/characters/blizzard/sitting.svg",
  45748. extra: 581/485,
  45749. bottom: 90/671
  45750. }
  45751. },
  45752. frontWizard: {
  45753. height: math.unit(7.9, "feet"),
  45754. weight: math.unit(200, "lb"),
  45755. name: "Front (Wizard)",
  45756. image: {
  45757. source: "./media/characters/blizzard/front-wizard.svg"
  45758. }
  45759. },
  45760. backWizard: {
  45761. height: math.unit(7.9, "feet"),
  45762. weight: math.unit(200, "lb"),
  45763. name: "Back (Wizard)",
  45764. image: {
  45765. source: "./media/characters/blizzard/back-wizard.svg"
  45766. }
  45767. },
  45768. frontNsfw: {
  45769. height: math.unit(6, "feet"),
  45770. weight: math.unit(200, "lb"),
  45771. name: "Front (NSFW)",
  45772. image: {
  45773. source: "./media/characters/blizzard/front-nsfw.svg",
  45774. extra: 1136/990,
  45775. bottom: 136/1272
  45776. }
  45777. },
  45778. backNsfw: {
  45779. height: math.unit(6, "feet"),
  45780. weight: math.unit(200, "lb"),
  45781. name: "Back (NSFW)",
  45782. image: {
  45783. source: "./media/characters/blizzard/back-nsfw.svg",
  45784. extra: 1175/1034,
  45785. bottom: 97/1272
  45786. }
  45787. },
  45788. sittingNsfw: {
  45789. height: math.unit(3.725, "feet"),
  45790. weight: math.unit(200, "lb"),
  45791. name: "Sitting (NSFW)",
  45792. image: {
  45793. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45794. extra: 581/485,
  45795. bottom: 90/671
  45796. }
  45797. },
  45798. wizardFrontNsfw: {
  45799. height: math.unit(7.9, "feet"),
  45800. weight: math.unit(200, "lb"),
  45801. name: "Wizard (Front, NSFW)",
  45802. image: {
  45803. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45804. }
  45805. },
  45806. },
  45807. [
  45808. {
  45809. name: "Normal",
  45810. height: math.unit(6, "feet"),
  45811. default: true
  45812. },
  45813. ]
  45814. ))
  45815. characterMakers.push(() => makeCharacter(
  45816. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45817. {
  45818. front: {
  45819. height: math.unit(5 + 2/12, "feet"),
  45820. name: "Front",
  45821. image: {
  45822. source: "./media/characters/lumi/front.svg",
  45823. extra: 1328/1268,
  45824. bottom: 103/1431
  45825. }
  45826. },
  45827. back: {
  45828. height: math.unit(5 + 2/12, "feet"),
  45829. name: "Back",
  45830. image: {
  45831. source: "./media/characters/lumi/back.svg",
  45832. extra: 1381/1327,
  45833. bottom: 43/1424
  45834. }
  45835. },
  45836. },
  45837. [
  45838. {
  45839. name: "Normal",
  45840. height: math.unit(5 + 2/12, "feet"),
  45841. default: true
  45842. },
  45843. ]
  45844. ))
  45845. characterMakers.push(() => makeCharacter(
  45846. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45847. {
  45848. front: {
  45849. height: math.unit(5 + 9/12, "feet"),
  45850. name: "Front",
  45851. image: {
  45852. source: "./media/characters/aliya-cotton/front.svg",
  45853. extra: 577/564,
  45854. bottom: 29/606
  45855. }
  45856. },
  45857. },
  45858. [
  45859. {
  45860. name: "Normal",
  45861. height: math.unit(5 + 9/12, "feet"),
  45862. default: true
  45863. },
  45864. ]
  45865. ))
  45866. characterMakers.push(() => makeCharacter(
  45867. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45868. {
  45869. front: {
  45870. height: math.unit(2.7, "meters"),
  45871. weight: math.unit(25000, "lb"),
  45872. name: "Front",
  45873. image: {
  45874. source: "./media/characters/noah-luxray/front.svg",
  45875. extra: 1644/825,
  45876. bottom: 339/1983
  45877. }
  45878. },
  45879. side: {
  45880. height: math.unit(2.97, "meters"),
  45881. weight: math.unit(25000, "lb"),
  45882. name: "Side",
  45883. image: {
  45884. source: "./media/characters/noah-luxray/side.svg",
  45885. extra: 1319/650,
  45886. bottom: 163/1482
  45887. }
  45888. },
  45889. dick: {
  45890. height: math.unit(7.4, "feet"),
  45891. weight: math.unit(2500, "lb"),
  45892. name: "Dick",
  45893. image: {
  45894. source: "./media/characters/noah-luxray/dick.svg"
  45895. }
  45896. },
  45897. dickAlt: {
  45898. height: math.unit(10.83, "feet"),
  45899. weight: math.unit(2500, "lb"),
  45900. name: "Dick-alt",
  45901. image: {
  45902. source: "./media/characters/noah-luxray/dick-alt.svg"
  45903. }
  45904. },
  45905. },
  45906. [
  45907. {
  45908. name: "BIG",
  45909. height: math.unit(2.7, "meters"),
  45910. default: true
  45911. },
  45912. ]
  45913. ))
  45914. characterMakers.push(() => makeCharacter(
  45915. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45916. {
  45917. standing: {
  45918. height: math.unit(183, "cm"),
  45919. weight: math.unit(68, "kg"),
  45920. name: "Standing",
  45921. image: {
  45922. source: "./media/characters/arion/standing.svg",
  45923. extra: 1869/1807,
  45924. bottom: 93/1962
  45925. }
  45926. },
  45927. reclining: {
  45928. height: math.unit(70.5, "cm"),
  45929. weight: math.unit(68, "lb"),
  45930. name: "Reclining",
  45931. image: {
  45932. source: "./media/characters/arion/reclining.svg",
  45933. extra: 937/870,
  45934. bottom: 63/1000
  45935. }
  45936. },
  45937. },
  45938. [
  45939. {
  45940. name: "Colossus Size, Low",
  45941. height: math.unit(33, "meters"),
  45942. default: true
  45943. },
  45944. {
  45945. name: "Colossus Size, Mid",
  45946. height: math.unit(52, "meters")
  45947. },
  45948. {
  45949. name: "Colossus Size, High",
  45950. height: math.unit(60, "meters")
  45951. },
  45952. {
  45953. name: "Titan Size, Low",
  45954. height: math.unit(91, "meters"),
  45955. },
  45956. {
  45957. name: "Titan Size, Mid",
  45958. height: math.unit(122, "meters")
  45959. },
  45960. {
  45961. name: "Titan Size, High",
  45962. height: math.unit(162, "meters")
  45963. },
  45964. ]
  45965. ))
  45966. characterMakers.push(() => makeCharacter(
  45967. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45968. {
  45969. front: {
  45970. height: math.unit(53, "meters"),
  45971. name: "Front",
  45972. image: {
  45973. source: "./media/characters/stellar-marbey/front.svg",
  45974. extra: 1913/1805,
  45975. bottom: 92/2005
  45976. }
  45977. },
  45978. back: {
  45979. height: math.unit(53, "meters"),
  45980. name: "Back",
  45981. image: {
  45982. source: "./media/characters/stellar-marbey/back.svg",
  45983. extra: 1960/1851,
  45984. bottom: 28/1988
  45985. }
  45986. },
  45987. mouth: {
  45988. height: math.unit(3.5, "meters"),
  45989. name: "Mouth",
  45990. image: {
  45991. source: "./media/characters/stellar-marbey/mouth.svg"
  45992. }
  45993. },
  45994. },
  45995. [
  45996. {
  45997. name: "Macro",
  45998. height: math.unit(53, "meters"),
  45999. default: true
  46000. },
  46001. ]
  46002. ))
  46003. characterMakers.push(() => makeCharacter(
  46004. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46005. {
  46006. front: {
  46007. height: math.unit(8 + 1/12, "feet"),
  46008. weight: math.unit(233, "lb"),
  46009. name: "Front",
  46010. image: {
  46011. source: "./media/characters/matsu/front.svg",
  46012. extra: 832/772,
  46013. bottom: 40/872
  46014. }
  46015. },
  46016. back: {
  46017. height: math.unit(8 + 1/12, "feet"),
  46018. weight: math.unit(233, "lb"),
  46019. name: "Back",
  46020. image: {
  46021. source: "./media/characters/matsu/back.svg",
  46022. extra: 839/780,
  46023. bottom: 47/886
  46024. }
  46025. },
  46026. },
  46027. [
  46028. {
  46029. name: "Normal",
  46030. height: math.unit(8 + 1/12, "feet"),
  46031. default: true
  46032. },
  46033. ]
  46034. ))
  46035. characterMakers.push(() => makeCharacter(
  46036. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46037. {
  46038. front: {
  46039. height: math.unit(4, "feet"),
  46040. weight: math.unit(148, "lb"),
  46041. name: "Front",
  46042. image: {
  46043. source: "./media/characters/thiz/front.svg",
  46044. extra: 1913/1748,
  46045. bottom: 62/1975
  46046. }
  46047. },
  46048. },
  46049. [
  46050. {
  46051. name: "Normal",
  46052. height: math.unit(4, "feet"),
  46053. default: true
  46054. },
  46055. ]
  46056. ))
  46057. characterMakers.push(() => makeCharacter(
  46058. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46059. {
  46060. front: {
  46061. height: math.unit(7 + 6/12, "feet"),
  46062. weight: math.unit(267, "lb"),
  46063. name: "Front",
  46064. image: {
  46065. source: "./media/characters/marcel/front.svg",
  46066. extra: 1221/1096,
  46067. bottom: 76/1297
  46068. }
  46069. },
  46070. },
  46071. [
  46072. {
  46073. name: "Normal",
  46074. height: math.unit(7 + 6/12, "feet"),
  46075. default: true
  46076. },
  46077. ]
  46078. ))
  46079. characterMakers.push(() => makeCharacter(
  46080. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46081. {
  46082. side: {
  46083. height: math.unit(42, "meters"),
  46084. name: "Side",
  46085. image: {
  46086. source: "./media/characters/flake/side.svg",
  46087. extra: 1525/1306,
  46088. bottom: 209/1734
  46089. }
  46090. },
  46091. },
  46092. [
  46093. {
  46094. name: "Normal",
  46095. height: math.unit(42, "meters"),
  46096. default: true
  46097. },
  46098. ]
  46099. ))
  46100. characterMakers.push(() => makeCharacter(
  46101. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46102. {
  46103. dressed: {
  46104. height: math.unit(6 + 4/12, "feet"),
  46105. weight: math.unit(520, "lb"),
  46106. name: "Dressed",
  46107. image: {
  46108. source: "./media/characters/someonne/dressed.svg",
  46109. extra: 1020/1010,
  46110. bottom: 178/1198
  46111. }
  46112. },
  46113. undressed: {
  46114. height: math.unit(6 + 4/12, "feet"),
  46115. weight: math.unit(520, "lb"),
  46116. name: "Undressed",
  46117. image: {
  46118. source: "./media/characters/someonne/undressed.svg",
  46119. extra: 1019/1014,
  46120. bottom: 169/1188
  46121. }
  46122. },
  46123. },
  46124. [
  46125. {
  46126. name: "Normal",
  46127. height: math.unit(6 + 4/12, "feet"),
  46128. default: true
  46129. },
  46130. ]
  46131. ))
  46132. characterMakers.push(() => makeCharacter(
  46133. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46134. {
  46135. front: {
  46136. height: math.unit(3, "feet"),
  46137. weight: math.unit(30, "lb"),
  46138. name: "Front",
  46139. image: {
  46140. source: "./media/characters/till/front.svg",
  46141. extra: 892/823,
  46142. bottom: 55/947
  46143. }
  46144. },
  46145. },
  46146. [
  46147. {
  46148. name: "Normal",
  46149. height: math.unit(3, "feet"),
  46150. default: true
  46151. },
  46152. ]
  46153. ))
  46154. characterMakers.push(() => makeCharacter(
  46155. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46156. {
  46157. front: {
  46158. height: math.unit(9 + 8/12, "feet"),
  46159. weight: math.unit(800, "lb"),
  46160. name: "Front",
  46161. image: {
  46162. source: "./media/characters/sydney-heki/front.svg",
  46163. extra: 1360/1300,
  46164. bottom: 22/1382
  46165. }
  46166. },
  46167. back: {
  46168. height: math.unit(9 + 8/12, "feet"),
  46169. weight: math.unit(800, "lb"),
  46170. name: "Back",
  46171. image: {
  46172. source: "./media/characters/sydney-heki/back.svg",
  46173. extra: 1356/1293,
  46174. bottom: 12/1368
  46175. }
  46176. },
  46177. frontDressed: {
  46178. height: math.unit(9 + 8/12, "feet"),
  46179. weight: math.unit(800, "lb"),
  46180. name: "Front-dressed",
  46181. image: {
  46182. source: "./media/characters/sydney-heki/front-dressed.svg",
  46183. extra: 1360/1300,
  46184. bottom: 22/1382
  46185. }
  46186. },
  46187. },
  46188. [
  46189. {
  46190. name: "Normal",
  46191. height: math.unit(9 + 8/12, "feet"),
  46192. default: true
  46193. },
  46194. {
  46195. name: "Macro",
  46196. height: math.unit(500, "feet")
  46197. },
  46198. {
  46199. name: "Megamacro",
  46200. height: math.unit(3.6, "miles")
  46201. },
  46202. ]
  46203. ))
  46204. characterMakers.push(() => makeCharacter(
  46205. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46206. {
  46207. front: {
  46208. height: math.unit(200, "cm"),
  46209. weight: math.unit(250, "lb"),
  46210. name: "Front",
  46211. image: {
  46212. source: "./media/characters/fowler-karlsson/front.svg",
  46213. extra: 897/845,
  46214. bottom: 123/1020
  46215. }
  46216. },
  46217. back: {
  46218. height: math.unit(200, "cm"),
  46219. weight: math.unit(250, "lb"),
  46220. name: "Back",
  46221. image: {
  46222. source: "./media/characters/fowler-karlsson/back.svg",
  46223. extra: 999/944,
  46224. bottom: 26/1025
  46225. }
  46226. },
  46227. dick: {
  46228. height: math.unit(1.92, "feet"),
  46229. weight: math.unit(150, "lb"),
  46230. name: "Dick",
  46231. image: {
  46232. source: "./media/characters/fowler-karlsson/dick.svg"
  46233. }
  46234. },
  46235. },
  46236. [
  46237. {
  46238. name: "Normal",
  46239. height: math.unit(200, "cm"),
  46240. default: true
  46241. },
  46242. {
  46243. name: "Smaller Macro",
  46244. height: math.unit(90, "m")
  46245. },
  46246. {
  46247. name: "Macro",
  46248. height: math.unit(150, "m")
  46249. },
  46250. {
  46251. name: "Bigger Macro",
  46252. height: math.unit(300, "m")
  46253. },
  46254. ]
  46255. ))
  46256. characterMakers.push(() => makeCharacter(
  46257. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46258. {
  46259. side: {
  46260. height: math.unit(8 + 2/12, "feet"),
  46261. weight: math.unit(1, "tonne"),
  46262. name: "Side",
  46263. image: {
  46264. source: "./media/characters/rylide/side.svg",
  46265. extra: 1318/1034,
  46266. bottom: 106/1424
  46267. }
  46268. },
  46269. sitting: {
  46270. height: math.unit(303, "cm"),
  46271. weight: math.unit(1, "tonne"),
  46272. name: "Sitting",
  46273. image: {
  46274. source: "./media/characters/rylide/sitting.svg",
  46275. extra: 1303/1103,
  46276. bottom: 36/1339
  46277. }
  46278. },
  46279. },
  46280. [
  46281. {
  46282. name: "Normal",
  46283. height: math.unit(8 + 2/12, "feet"),
  46284. default: true
  46285. },
  46286. ]
  46287. ))
  46288. characterMakers.push(() => makeCharacter(
  46289. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46290. {
  46291. front: {
  46292. height: math.unit(5 + 10/12, "feet"),
  46293. weight: math.unit(160, "lb"),
  46294. name: "Front",
  46295. image: {
  46296. source: "./media/characters/pudask/front.svg",
  46297. extra: 1616/1590,
  46298. bottom: 161/1777
  46299. }
  46300. },
  46301. },
  46302. [
  46303. {
  46304. name: "Ferret Height",
  46305. height: math.unit(2 + 5/12, "feet")
  46306. },
  46307. {
  46308. name: "Canon Height",
  46309. height: math.unit(5 + 10/12, "feet"),
  46310. default: true
  46311. },
  46312. ]
  46313. ))
  46314. characterMakers.push(() => makeCharacter(
  46315. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46316. {
  46317. front: {
  46318. height: math.unit(3 + 6/12, "feet"),
  46319. weight: math.unit(60, "lb"),
  46320. name: "Front",
  46321. image: {
  46322. source: "./media/characters/ramita/front.svg",
  46323. extra: 1402/1232,
  46324. bottom: 62/1464
  46325. }
  46326. },
  46327. dressed: {
  46328. height: math.unit(3 + 6/12, "feet"),
  46329. weight: math.unit(60, "lb"),
  46330. name: "Dressed",
  46331. image: {
  46332. source: "./media/characters/ramita/dressed.svg",
  46333. extra: 1534/1249,
  46334. bottom: 50/1584
  46335. }
  46336. },
  46337. },
  46338. [
  46339. {
  46340. name: "Normal",
  46341. height: math.unit(3 + 6/12, "feet"),
  46342. default: true
  46343. },
  46344. ]
  46345. ))
  46346. characterMakers.push(() => makeCharacter(
  46347. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46348. {
  46349. front: {
  46350. height: math.unit(8, "feet"),
  46351. name: "Front",
  46352. image: {
  46353. source: "./media/characters/ark/front.svg",
  46354. extra: 772/693,
  46355. bottom: 45/817
  46356. }
  46357. },
  46358. },
  46359. [
  46360. {
  46361. name: "Normal",
  46362. height: math.unit(8, "feet"),
  46363. default: true
  46364. },
  46365. ]
  46366. ))
  46367. characterMakers.push(() => makeCharacter(
  46368. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46369. {
  46370. front: {
  46371. height: math.unit(6, "feet"),
  46372. weight: math.unit(250, "lb"),
  46373. volume: math.unit(5/8, "gallons"),
  46374. name: "Front",
  46375. image: {
  46376. source: "./media/characters/ludwig-horn/front.svg",
  46377. extra: 1782/1635,
  46378. bottom: 96/1878
  46379. }
  46380. },
  46381. back: {
  46382. height: math.unit(6, "feet"),
  46383. weight: math.unit(250, "lb"),
  46384. volume: math.unit(5/8, "gallons"),
  46385. name: "Back",
  46386. image: {
  46387. source: "./media/characters/ludwig-horn/back.svg",
  46388. extra: 1874/1729,
  46389. bottom: 27/1901
  46390. }
  46391. },
  46392. dick: {
  46393. height: math.unit(1.05, "feet"),
  46394. weight: math.unit(15, "lb"),
  46395. volume: math.unit(5/8, "gallons"),
  46396. name: "Dick",
  46397. image: {
  46398. source: "./media/characters/ludwig-horn/dick.svg"
  46399. }
  46400. },
  46401. },
  46402. [
  46403. {
  46404. name: "Small",
  46405. height: math.unit(6, "feet")
  46406. },
  46407. {
  46408. name: "Typical",
  46409. height: math.unit(12, "feet"),
  46410. default: true
  46411. },
  46412. {
  46413. name: "Building",
  46414. height: math.unit(80, "feet")
  46415. },
  46416. {
  46417. name: "Town",
  46418. height: math.unit(800, "feet")
  46419. },
  46420. {
  46421. name: "Kingdom",
  46422. height: math.unit(80000, "feet")
  46423. },
  46424. {
  46425. name: "Planet",
  46426. height: math.unit(8000000, "feet")
  46427. },
  46428. {
  46429. name: "Universe",
  46430. height: math.unit(8000000000, "feet")
  46431. },
  46432. {
  46433. name: "Transcended",
  46434. height: math.unit(8e27, "feet")
  46435. },
  46436. ]
  46437. ))
  46438. characterMakers.push(() => makeCharacter(
  46439. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46440. {
  46441. front: {
  46442. height: math.unit(5, "feet"),
  46443. weight: math.unit(50, "kg"),
  46444. name: "Front",
  46445. image: {
  46446. source: "./media/characters/biot-avery/front.svg",
  46447. extra: 1295/1232,
  46448. bottom: 86/1381
  46449. }
  46450. },
  46451. },
  46452. [
  46453. {
  46454. name: "Normal",
  46455. height: math.unit(5, "feet"),
  46456. default: true
  46457. },
  46458. ]
  46459. ))
  46460. characterMakers.push(() => makeCharacter(
  46461. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46462. {
  46463. front: {
  46464. height: math.unit(6, "feet"),
  46465. name: "Front",
  46466. image: {
  46467. source: "./media/characters/kitsune-kiro/front.svg",
  46468. extra: 1270/1158,
  46469. bottom: 42/1312
  46470. }
  46471. },
  46472. frontAlt: {
  46473. height: math.unit(6, "feet"),
  46474. name: "Front-alt",
  46475. image: {
  46476. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46477. extra: 1130/1081,
  46478. bottom: 36/1166
  46479. }
  46480. },
  46481. },
  46482. [
  46483. {
  46484. name: "Smol",
  46485. height: math.unit(3, "feet")
  46486. },
  46487. {
  46488. name: "Normal",
  46489. height: math.unit(6, "feet"),
  46490. default: true
  46491. },
  46492. ]
  46493. ))
  46494. characterMakers.push(() => makeCharacter(
  46495. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46496. {
  46497. front: {
  46498. height: math.unit(6, "feet"),
  46499. weight: math.unit(125, "lb"),
  46500. name: "Front",
  46501. image: {
  46502. source: "./media/characters/jack-thatcher/front.svg",
  46503. extra: 1474/1370,
  46504. bottom: 26/1500
  46505. }
  46506. },
  46507. back: {
  46508. height: math.unit(6, "feet"),
  46509. weight: math.unit(125, "lb"),
  46510. name: "Back",
  46511. image: {
  46512. source: "./media/characters/jack-thatcher/back.svg",
  46513. extra: 1489/1384,
  46514. bottom: 18/1507
  46515. }
  46516. },
  46517. },
  46518. [
  46519. {
  46520. name: "Normal",
  46521. height: math.unit(6, "feet"),
  46522. default: true
  46523. },
  46524. {
  46525. name: "Macro",
  46526. height: math.unit(75, "feet")
  46527. },
  46528. {
  46529. name: "Macro-er",
  46530. height: math.unit(250, "feet")
  46531. },
  46532. ]
  46533. ))
  46534. characterMakers.push(() => makeCharacter(
  46535. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46536. {
  46537. front: {
  46538. height: math.unit(7, "feet"),
  46539. weight: math.unit(110, "kg"),
  46540. name: "Front",
  46541. image: {
  46542. source: "./media/characters/max-hyper/front.svg",
  46543. extra: 1969/1881,
  46544. bottom: 49/2018
  46545. }
  46546. },
  46547. },
  46548. [
  46549. {
  46550. name: "Normal",
  46551. height: math.unit(7, "feet"),
  46552. default: true
  46553. },
  46554. ]
  46555. ))
  46556. characterMakers.push(() => makeCharacter(
  46557. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46558. {
  46559. front: {
  46560. height: math.unit(5 + 5/12, "feet"),
  46561. weight: math.unit(160, "lb"),
  46562. name: "Front",
  46563. image: {
  46564. source: "./media/characters/spook/front.svg",
  46565. extra: 794/791,
  46566. bottom: 54/848
  46567. }
  46568. },
  46569. back: {
  46570. height: math.unit(5 + 5/12, "feet"),
  46571. weight: math.unit(160, "lb"),
  46572. name: "Back",
  46573. image: {
  46574. source: "./media/characters/spook/back.svg",
  46575. extra: 812/798,
  46576. bottom: 32/844
  46577. }
  46578. },
  46579. },
  46580. [
  46581. {
  46582. name: "Normal",
  46583. height: math.unit(5 + 5/12, "feet"),
  46584. default: true
  46585. },
  46586. ]
  46587. ))
  46588. characterMakers.push(() => makeCharacter(
  46589. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46590. {
  46591. front: {
  46592. height: math.unit(18, "feet"),
  46593. name: "Front",
  46594. image: {
  46595. source: "./media/characters/xeaduulix/front.svg",
  46596. extra: 1380/1166,
  46597. bottom: 110/1490
  46598. }
  46599. },
  46600. back: {
  46601. height: math.unit(18, "feet"),
  46602. name: "Back",
  46603. image: {
  46604. source: "./media/characters/xeaduulix/back.svg",
  46605. extra: 1592/1170,
  46606. bottom: 128/1720
  46607. }
  46608. },
  46609. frontNsfw: {
  46610. height: math.unit(18, "feet"),
  46611. name: "Front (NSFW)",
  46612. image: {
  46613. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46614. extra: 1380/1166,
  46615. bottom: 110/1490
  46616. }
  46617. },
  46618. backNsfw: {
  46619. height: math.unit(18, "feet"),
  46620. name: "Back (NSFW)",
  46621. image: {
  46622. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46623. extra: 1592/1170,
  46624. bottom: 128/1720
  46625. }
  46626. },
  46627. },
  46628. [
  46629. {
  46630. name: "Normal",
  46631. height: math.unit(18, "feet"),
  46632. default: true
  46633. },
  46634. ]
  46635. ))
  46636. characterMakers.push(() => makeCharacter(
  46637. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46638. {
  46639. spreadWings: {
  46640. height: math.unit(20, "feet"),
  46641. name: "Spread Wings",
  46642. image: {
  46643. source: "./media/characters/fledge/spread-wings.svg",
  46644. extra: 693/635,
  46645. bottom: 26/719
  46646. }
  46647. },
  46648. front: {
  46649. height: math.unit(20, "feet"),
  46650. name: "Front",
  46651. image: {
  46652. source: "./media/characters/fledge/front.svg",
  46653. extra: 684/637,
  46654. bottom: 18/702
  46655. }
  46656. },
  46657. frontAlt: {
  46658. height: math.unit(20, "feet"),
  46659. name: "Front (Alt)",
  46660. image: {
  46661. source: "./media/characters/fledge/front-alt.svg",
  46662. extra: 708/664,
  46663. bottom: 13/721
  46664. }
  46665. },
  46666. back: {
  46667. height: math.unit(20, "feet"),
  46668. name: "Back",
  46669. image: {
  46670. source: "./media/characters/fledge/back.svg",
  46671. extra: 718/634,
  46672. bottom: 22/740
  46673. }
  46674. },
  46675. head: {
  46676. height: math.unit(5.55, "feet"),
  46677. name: "Head",
  46678. image: {
  46679. source: "./media/characters/fledge/head.svg"
  46680. }
  46681. },
  46682. headAlt: {
  46683. height: math.unit(5.1, "feet"),
  46684. name: "Head (Alt)",
  46685. image: {
  46686. source: "./media/characters/fledge/head-alt.svg"
  46687. }
  46688. },
  46689. },
  46690. [
  46691. {
  46692. name: "Small",
  46693. height: math.unit(6 + 2/12, "feet")
  46694. },
  46695. {
  46696. name: "Big",
  46697. height: math.unit(20, "feet"),
  46698. default: true
  46699. },
  46700. {
  46701. name: "Giant",
  46702. height: math.unit(100, "feet")
  46703. },
  46704. {
  46705. name: "Macro",
  46706. height: math.unit(200, "feet")
  46707. },
  46708. ]
  46709. ))
  46710. characterMakers.push(() => makeCharacter(
  46711. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46712. {
  46713. front: {
  46714. height: math.unit(1, "meter"),
  46715. name: "Front",
  46716. image: {
  46717. source: "./media/characters/atlas-morenai/front.svg",
  46718. extra: 1275/1043,
  46719. bottom: 19/1294
  46720. }
  46721. },
  46722. back: {
  46723. height: math.unit(1, "meter"),
  46724. name: "Back",
  46725. image: {
  46726. source: "./media/characters/atlas-morenai/back.svg",
  46727. extra: 1141/1001,
  46728. bottom: 25/1166
  46729. }
  46730. },
  46731. },
  46732. [
  46733. {
  46734. name: "Normal",
  46735. height: math.unit(1, "meter"),
  46736. default: true
  46737. },
  46738. {
  46739. name: "Magic-Infused",
  46740. height: math.unit(5, "meters")
  46741. },
  46742. ]
  46743. ))
  46744. characterMakers.push(() => makeCharacter(
  46745. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46746. {
  46747. front: {
  46748. height: math.unit(5, "meters"),
  46749. name: "Front",
  46750. image: {
  46751. source: "./media/characters/cintia/front.svg",
  46752. extra: 1312/1228,
  46753. bottom: 38/1350
  46754. }
  46755. },
  46756. back: {
  46757. height: math.unit(5, "meters"),
  46758. name: "Back",
  46759. image: {
  46760. source: "./media/characters/cintia/back.svg",
  46761. extra: 1260/1166,
  46762. bottom: 98/1358
  46763. }
  46764. },
  46765. frontDick: {
  46766. height: math.unit(5, "meters"),
  46767. name: "Front (Dick)",
  46768. image: {
  46769. source: "./media/characters/cintia/front-dick.svg",
  46770. extra: 1312/1228,
  46771. bottom: 38/1350
  46772. }
  46773. },
  46774. backDick: {
  46775. height: math.unit(5, "meters"),
  46776. name: "Back (Dick)",
  46777. image: {
  46778. source: "./media/characters/cintia/back-dick.svg",
  46779. extra: 1260/1166,
  46780. bottom: 98/1358
  46781. }
  46782. },
  46783. bust: {
  46784. height: math.unit(1.97, "meters"),
  46785. name: "Bust",
  46786. image: {
  46787. source: "./media/characters/cintia/bust.svg",
  46788. extra: 617/565,
  46789. bottom: 0/617
  46790. }
  46791. },
  46792. },
  46793. [
  46794. {
  46795. name: "Normal",
  46796. height: math.unit(5, "meters"),
  46797. default: true
  46798. },
  46799. ]
  46800. ))
  46801. characterMakers.push(() => makeCharacter(
  46802. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46803. {
  46804. side: {
  46805. height: math.unit(100, "feet"),
  46806. name: "Side",
  46807. image: {
  46808. source: "./media/characters/denora/side.svg",
  46809. extra: 875/803,
  46810. bottom: 9/884
  46811. }
  46812. },
  46813. },
  46814. [
  46815. {
  46816. name: "Standard",
  46817. height: math.unit(100, "feet"),
  46818. default: true
  46819. },
  46820. {
  46821. name: "Grand",
  46822. height: math.unit(1000, "feet")
  46823. },
  46824. {
  46825. name: "Conquering",
  46826. height: math.unit(10000, "feet")
  46827. },
  46828. ]
  46829. ))
  46830. characterMakers.push(() => makeCharacter(
  46831. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46832. {
  46833. dressed: {
  46834. height: math.unit(8 + 5/12, "feet"),
  46835. weight: math.unit(700, "lb"),
  46836. name: "Dressed",
  46837. image: {
  46838. source: "./media/characters/kiva/dressed.svg",
  46839. extra: 1102/1055,
  46840. bottom: 60/1162
  46841. }
  46842. },
  46843. nude: {
  46844. height: math.unit(8 + 5/12, "feet"),
  46845. weight: math.unit(700, "lb"),
  46846. name: "Nude",
  46847. image: {
  46848. source: "./media/characters/kiva/nude.svg",
  46849. extra: 1102/1055,
  46850. bottom: 60/1162
  46851. }
  46852. },
  46853. },
  46854. [
  46855. {
  46856. name: "Base Height",
  46857. height: math.unit(8 + 5/12, "feet"),
  46858. default: true
  46859. },
  46860. {
  46861. name: "Macro",
  46862. height: math.unit(100, "feet")
  46863. },
  46864. {
  46865. name: "Max",
  46866. height: math.unit(3280, "feet")
  46867. },
  46868. ]
  46869. ))
  46870. characterMakers.push(() => makeCharacter(
  46871. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46872. {
  46873. front: {
  46874. height: math.unit(6 + 8/12, "feet"),
  46875. weight: math.unit(250, "lb"),
  46876. name: "Front",
  46877. image: {
  46878. source: "./media/characters/ztragon/front.svg",
  46879. extra: 1825/1684,
  46880. bottom: 98/1923
  46881. }
  46882. },
  46883. },
  46884. [
  46885. {
  46886. name: "Normal",
  46887. height: math.unit(6 + 8/12, "feet"),
  46888. default: true
  46889. },
  46890. {
  46891. name: "Macro",
  46892. height: math.unit(80, "feet")
  46893. },
  46894. ]
  46895. ))
  46896. characterMakers.push(() => makeCharacter(
  46897. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46898. {
  46899. front: {
  46900. height: math.unit(10.4, "feet"),
  46901. weight: math.unit(2, "tons"),
  46902. name: "Front",
  46903. image: {
  46904. source: "./media/characters/yesenia/front.svg",
  46905. extra: 1479/1474,
  46906. bottom: 233/1712
  46907. }
  46908. },
  46909. },
  46910. [
  46911. {
  46912. name: "Normal",
  46913. height: math.unit(10.4, "feet"),
  46914. default: true
  46915. },
  46916. ]
  46917. ))
  46918. characterMakers.push(() => makeCharacter(
  46919. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46920. {
  46921. normal: {
  46922. height: math.unit(6 + 1/12, "feet"),
  46923. weight: math.unit(180, "lb"),
  46924. name: "Normal",
  46925. image: {
  46926. source: "./media/characters/leanne-lycheborne/normal.svg",
  46927. extra: 1748/1660,
  46928. bottom: 98/1846
  46929. }
  46930. },
  46931. were: {
  46932. height: math.unit(12, "feet"),
  46933. weight: math.unit(1600, "lb"),
  46934. name: "Were",
  46935. image: {
  46936. source: "./media/characters/leanne-lycheborne/were.svg",
  46937. extra: 1485/1432,
  46938. bottom: 66/1551
  46939. }
  46940. },
  46941. },
  46942. [
  46943. {
  46944. name: "Normal",
  46945. height: math.unit(6 + 1/12, "feet"),
  46946. default: true
  46947. },
  46948. ]
  46949. ))
  46950. characterMakers.push(() => makeCharacter(
  46951. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46952. {
  46953. side: {
  46954. height: math.unit(13, "feet"),
  46955. name: "Side",
  46956. image: {
  46957. source: "./media/characters/kira-tyler/side.svg",
  46958. extra: 693/393,
  46959. bottom: 58/751
  46960. }
  46961. },
  46962. },
  46963. [
  46964. {
  46965. name: "Normal",
  46966. height: math.unit(13, "feet"),
  46967. default: true
  46968. },
  46969. ]
  46970. ))
  46971. characterMakers.push(() => makeCharacter(
  46972. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46973. {
  46974. front: {
  46975. height: math.unit(10.3, "feet"),
  46976. weight: math.unit(150, "lb"),
  46977. name: "Front",
  46978. image: {
  46979. source: "./media/characters/blaze/front.svg",
  46980. extra: 1378/1286,
  46981. bottom: 172/1550
  46982. }
  46983. },
  46984. },
  46985. [
  46986. {
  46987. name: "Normal",
  46988. height: math.unit(10.3, "feet"),
  46989. default: true
  46990. },
  46991. ]
  46992. ))
  46993. characterMakers.push(() => makeCharacter(
  46994. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46995. {
  46996. side: {
  46997. height: math.unit(2, "meters"),
  46998. weight: math.unit(400, "kg"),
  46999. name: "Side",
  47000. image: {
  47001. source: "./media/characters/anu/side.svg",
  47002. extra: 506/394,
  47003. bottom: 18/524
  47004. }
  47005. },
  47006. },
  47007. [
  47008. {
  47009. name: "Humanoid",
  47010. height: math.unit(2, "meters")
  47011. },
  47012. {
  47013. name: "Normal",
  47014. height: math.unit(5, "meters"),
  47015. default: true
  47016. },
  47017. ]
  47018. ))
  47019. characterMakers.push(() => makeCharacter(
  47020. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47021. {
  47022. front: {
  47023. height: math.unit(5 + 5/12, "feet"),
  47024. weight: math.unit(170, "lb"),
  47025. name: "Front",
  47026. image: {
  47027. source: "./media/characters/synx-the-lynx/front.svg",
  47028. extra: 1893/1745,
  47029. bottom: 17/1910
  47030. }
  47031. },
  47032. side: {
  47033. height: math.unit(5 + 5/12, "feet"),
  47034. weight: math.unit(170, "lb"),
  47035. name: "Side",
  47036. image: {
  47037. source: "./media/characters/synx-the-lynx/side.svg",
  47038. extra: 1884/1740,
  47039. bottom: 39/1923
  47040. }
  47041. },
  47042. back: {
  47043. height: math.unit(5 + 5/12, "feet"),
  47044. weight: math.unit(170, "lb"),
  47045. name: "Back",
  47046. image: {
  47047. source: "./media/characters/synx-the-lynx/back.svg",
  47048. extra: 1903/1755,
  47049. bottom: 14/1917
  47050. }
  47051. },
  47052. },
  47053. [
  47054. {
  47055. name: "Normal",
  47056. height: math.unit(5 + 5/12, "feet"),
  47057. default: true
  47058. },
  47059. ]
  47060. ))
  47061. characterMakers.push(() => makeCharacter(
  47062. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47063. {
  47064. back: {
  47065. height: math.unit(15, "feet"),
  47066. name: "Back",
  47067. image: {
  47068. source: "./media/characters/nadezda-fex/back.svg",
  47069. extra: 1695/1481,
  47070. bottom: 25/1720
  47071. }
  47072. },
  47073. },
  47074. [
  47075. {
  47076. name: "Normal",
  47077. height: math.unit(15, "feet"),
  47078. default: true
  47079. },
  47080. {
  47081. name: "Macro",
  47082. height: math.unit(2.5, "miles")
  47083. },
  47084. {
  47085. name: "Goddess",
  47086. height: math.unit(2, "multiverses")
  47087. },
  47088. ]
  47089. ))
  47090. characterMakers.push(() => makeCharacter(
  47091. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47092. {
  47093. front: {
  47094. height: math.unit(216, "cm"),
  47095. name: "Front",
  47096. image: {
  47097. source: "./media/characters/lev/front.svg",
  47098. extra: 1728/1670,
  47099. bottom: 82/1810
  47100. }
  47101. },
  47102. back: {
  47103. height: math.unit(216, "cm"),
  47104. name: "Back",
  47105. image: {
  47106. source: "./media/characters/lev/back.svg",
  47107. extra: 1738/1675,
  47108. bottom: 24/1762
  47109. }
  47110. },
  47111. dressed: {
  47112. height: math.unit(216, "cm"),
  47113. name: "Dressed",
  47114. image: {
  47115. source: "./media/characters/lev/dressed.svg",
  47116. extra: 1397/1351,
  47117. bottom: 73/1470
  47118. }
  47119. },
  47120. head: {
  47121. height: math.unit(0.51, "meter"),
  47122. name: "Head",
  47123. image: {
  47124. source: "./media/characters/lev/head.svg"
  47125. }
  47126. },
  47127. },
  47128. [
  47129. {
  47130. name: "Normal",
  47131. height: math.unit(216, "cm"),
  47132. default: true
  47133. },
  47134. {
  47135. name: "Relatively Macro",
  47136. height: math.unit(80, "meters")
  47137. },
  47138. {
  47139. name: "Megamacro",
  47140. height: math.unit(21600, "meters")
  47141. },
  47142. {
  47143. name: "Megamacro+",
  47144. height: math.unit(64800, "meters")
  47145. },
  47146. ]
  47147. ))
  47148. characterMakers.push(() => makeCharacter(
  47149. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47150. {
  47151. front: {
  47152. height: math.unit(2, "meters"),
  47153. weight: math.unit(80, "kg"),
  47154. name: "Front",
  47155. image: {
  47156. source: "./media/characters/moka/front.svg",
  47157. extra: 1337/1255,
  47158. bottom: 58/1395
  47159. }
  47160. },
  47161. },
  47162. [
  47163. {
  47164. name: "Micro",
  47165. height: math.unit(15, "cm")
  47166. },
  47167. {
  47168. name: "Normal",
  47169. height: math.unit(2, "meters"),
  47170. default: true
  47171. },
  47172. {
  47173. name: "Macro",
  47174. height: math.unit(20, "meters"),
  47175. },
  47176. ]
  47177. ))
  47178. characterMakers.push(() => makeCharacter(
  47179. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47180. {
  47181. front: {
  47182. height: math.unit(9, "feet"),
  47183. weight: math.unit(240, "lb"),
  47184. name: "Front",
  47185. image: {
  47186. source: "./media/characters/kuzco/front.svg",
  47187. extra: 1593/1487,
  47188. bottom: 32/1625
  47189. }
  47190. },
  47191. side: {
  47192. height: math.unit(9, "feet"),
  47193. weight: math.unit(240, "lb"),
  47194. name: "Side",
  47195. image: {
  47196. source: "./media/characters/kuzco/side.svg",
  47197. extra: 1575/1485,
  47198. bottom: 30/1605
  47199. }
  47200. },
  47201. back: {
  47202. height: math.unit(9, "feet"),
  47203. weight: math.unit(240, "lb"),
  47204. name: "Back",
  47205. image: {
  47206. source: "./media/characters/kuzco/back.svg",
  47207. extra: 1603/1514,
  47208. bottom: 14/1617
  47209. }
  47210. },
  47211. },
  47212. [
  47213. {
  47214. name: "Normal",
  47215. height: math.unit(9, "feet"),
  47216. default: true
  47217. },
  47218. ]
  47219. ))
  47220. characterMakers.push(() => makeCharacter(
  47221. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47222. {
  47223. side: {
  47224. height: math.unit(2, "meters"),
  47225. weight: math.unit(300, "kg"),
  47226. name: "Side",
  47227. image: {
  47228. source: "./media/characters/ceruleus/side.svg",
  47229. extra: 1068/974,
  47230. bottom: 126/1194
  47231. }
  47232. },
  47233. maw: {
  47234. height: math.unit(0.8125, "meter"),
  47235. name: "Maw",
  47236. image: {
  47237. source: "./media/characters/ceruleus/maw.svg"
  47238. }
  47239. },
  47240. },
  47241. [
  47242. {
  47243. name: "Normal",
  47244. height: math.unit(16, "meters"),
  47245. default: true
  47246. },
  47247. ]
  47248. ))
  47249. characterMakers.push(() => makeCharacter(
  47250. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47251. {
  47252. front: {
  47253. height: math.unit(9, "feet"),
  47254. weight: math.unit(500, "kg"),
  47255. name: "Front",
  47256. image: {
  47257. source: "./media/characters/acouya/front.svg",
  47258. extra: 1660/1473,
  47259. bottom: 28/1688
  47260. }
  47261. },
  47262. },
  47263. [
  47264. {
  47265. name: "Normal",
  47266. height: math.unit(9, "feet"),
  47267. default: true
  47268. },
  47269. ]
  47270. ))
  47271. characterMakers.push(() => makeCharacter(
  47272. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47273. {
  47274. front: {
  47275. height: math.unit(5 + 6/12, "feet"),
  47276. weight: math.unit(195, "lb"),
  47277. name: "Front",
  47278. image: {
  47279. source: "./media/characters/vant/front.svg",
  47280. extra: 1396/1320,
  47281. bottom: 20/1416
  47282. }
  47283. },
  47284. back: {
  47285. height: math.unit(5 + 6/12, "feet"),
  47286. weight: math.unit(195, "lb"),
  47287. name: "Back",
  47288. image: {
  47289. source: "./media/characters/vant/back.svg",
  47290. extra: 1396/1320,
  47291. bottom: 20/1416
  47292. }
  47293. },
  47294. maw: {
  47295. height: math.unit(0.75, "feet"),
  47296. name: "Maw",
  47297. image: {
  47298. source: "./media/characters/vant/maw.svg"
  47299. }
  47300. },
  47301. paw: {
  47302. height: math.unit(1.07, "feet"),
  47303. name: "Paw",
  47304. image: {
  47305. source: "./media/characters/vant/paw.svg"
  47306. }
  47307. },
  47308. },
  47309. [
  47310. {
  47311. name: "Micro",
  47312. height: math.unit(0.25, "inches")
  47313. },
  47314. {
  47315. name: "Normal",
  47316. height: math.unit(5 + 6/12, "feet"),
  47317. default: true
  47318. },
  47319. {
  47320. name: "Macro",
  47321. height: math.unit(75, "feet")
  47322. },
  47323. ]
  47324. ))
  47325. characterMakers.push(() => makeCharacter(
  47326. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47327. {
  47328. front: {
  47329. height: math.unit(30, "meters"),
  47330. weight: math.unit(363, "tons"),
  47331. name: "Front",
  47332. image: {
  47333. source: "./media/characters/ahra/front.svg",
  47334. extra: 1914/1814,
  47335. bottom: 46/1960
  47336. }
  47337. },
  47338. },
  47339. [
  47340. {
  47341. name: "Macro",
  47342. height: math.unit(30, "meters"),
  47343. default: true
  47344. },
  47345. ]
  47346. ))
  47347. characterMakers.push(() => makeCharacter(
  47348. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47349. {
  47350. undressed: {
  47351. height: math.unit(2, "m"),
  47352. weight: math.unit(250, "kg"),
  47353. name: "Undressed",
  47354. image: {
  47355. source: "./media/characters/coriander/undressed.svg",
  47356. extra: 1757/1606,
  47357. bottom: 107/1864
  47358. }
  47359. },
  47360. dressed: {
  47361. height: math.unit(2, "m"),
  47362. weight: math.unit(250, "kg"),
  47363. name: "Dressed",
  47364. image: {
  47365. source: "./media/characters/coriander/dressed.svg",
  47366. extra: 1757/1606,
  47367. bottom: 107/1864
  47368. }
  47369. },
  47370. },
  47371. [
  47372. {
  47373. name: "Normal",
  47374. height: math.unit(4, "meters"),
  47375. default: true
  47376. },
  47377. {
  47378. name: "XL",
  47379. height: math.unit(6, "meters")
  47380. },
  47381. {
  47382. name: "XXL",
  47383. height: math.unit(8, "meters")
  47384. },
  47385. ]
  47386. ))
  47387. characterMakers.push(() => makeCharacter(
  47388. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47389. {
  47390. front: {
  47391. height: math.unit(6, "feet"),
  47392. name: "Front",
  47393. image: {
  47394. source: "./media/characters/syrinx/front.svg",
  47395. extra: 1557/1259,
  47396. bottom: 171/1728
  47397. }
  47398. },
  47399. },
  47400. [
  47401. {
  47402. name: "Normal",
  47403. height: math.unit(6 + 3/12, "feet"),
  47404. default: true
  47405. },
  47406. ]
  47407. ))
  47408. characterMakers.push(() => makeCharacter(
  47409. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47410. {
  47411. front: {
  47412. height: math.unit(11 + 6/12, "feet"),
  47413. weight: math.unit(1.5, "tons"),
  47414. name: "Front",
  47415. image: {
  47416. source: "./media/characters/bor/front.svg",
  47417. extra: 1189/1109,
  47418. bottom: 170/1359
  47419. }
  47420. },
  47421. },
  47422. [
  47423. {
  47424. name: "Normal",
  47425. height: math.unit(11 + 6/12, "feet"),
  47426. default: true
  47427. },
  47428. {
  47429. name: "Macro",
  47430. height: math.unit(32 + 9/12, "feet")
  47431. },
  47432. ]
  47433. ))
  47434. characterMakers.push(() => makeCharacter(
  47435. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47436. {
  47437. anthro: {
  47438. height: math.unit(9, "feet"),
  47439. weight: math.unit(2076, "lb"),
  47440. name: "Anthro",
  47441. image: {
  47442. source: "./media/characters/abacus/anthro.svg",
  47443. extra: 1540/1494,
  47444. bottom: 233/1773
  47445. }
  47446. },
  47447. pigeon: {
  47448. height: math.unit(1, "feet"),
  47449. name: "Pigeon",
  47450. image: {
  47451. source: "./media/characters/abacus/pigeon.svg",
  47452. extra: 528/525,
  47453. bottom: 46/574
  47454. }
  47455. },
  47456. },
  47457. [
  47458. {
  47459. name: "Normal",
  47460. height: math.unit(9, "feet"),
  47461. default: true
  47462. },
  47463. ]
  47464. ))
  47465. characterMakers.push(() => makeCharacter(
  47466. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47467. {
  47468. side: {
  47469. height: math.unit(6, "feet"),
  47470. name: "Side",
  47471. image: {
  47472. source: "./media/characters/delkhan/side.svg",
  47473. extra: 1884/1786,
  47474. bottom: 308/2192
  47475. }
  47476. },
  47477. head: {
  47478. height: math.unit(3.38, "feet"),
  47479. name: "Head",
  47480. image: {
  47481. source: "./media/characters/delkhan/head.svg"
  47482. }
  47483. },
  47484. },
  47485. [
  47486. {
  47487. name: "Normal",
  47488. height: math.unit(72, "feet"),
  47489. default: true
  47490. },
  47491. {
  47492. name: "Giant",
  47493. height: math.unit(172, "feet")
  47494. },
  47495. ]
  47496. ))
  47497. characterMakers.push(() => makeCharacter(
  47498. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47499. {
  47500. standing: {
  47501. height: math.unit(6, "feet"),
  47502. name: "Standing",
  47503. image: {
  47504. source: "./media/characters/euchidat/standing.svg",
  47505. extra: 1612/1553,
  47506. bottom: 116/1728
  47507. }
  47508. },
  47509. leaning: {
  47510. height: math.unit(6, "feet"),
  47511. name: "Leaning",
  47512. image: {
  47513. source: "./media/characters/euchidat/leaning.svg",
  47514. extra: 1719/1674,
  47515. bottom: 27/1746
  47516. }
  47517. },
  47518. },
  47519. [
  47520. {
  47521. name: "Normal",
  47522. height: math.unit(175, "feet"),
  47523. default: true
  47524. },
  47525. {
  47526. name: "Megamacro",
  47527. height: math.unit(190, "miles")
  47528. },
  47529. {
  47530. name: "Gigamacro",
  47531. height: math.unit(190000, "miles")
  47532. },
  47533. ]
  47534. ))
  47535. characterMakers.push(() => makeCharacter(
  47536. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47537. {
  47538. front: {
  47539. height: math.unit(6, "feet"),
  47540. weight: math.unit(150, "lb"),
  47541. name: "Front",
  47542. image: {
  47543. source: "./media/characters/rebecca-stack/front.svg",
  47544. extra: 1256/1201,
  47545. bottom: 18/1274
  47546. }
  47547. },
  47548. },
  47549. [
  47550. {
  47551. name: "Normal",
  47552. height: math.unit(5 + 8/12, "feet"),
  47553. default: true
  47554. },
  47555. {
  47556. name: "Demolitionist",
  47557. height: math.unit(200, "feet")
  47558. },
  47559. {
  47560. name: "Out of Control",
  47561. height: math.unit(2, "miles")
  47562. },
  47563. {
  47564. name: "Giga",
  47565. height: math.unit(7200, "miles")
  47566. },
  47567. ]
  47568. ))
  47569. characterMakers.push(() => makeCharacter(
  47570. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47571. {
  47572. front: {
  47573. height: math.unit(6, "feet"),
  47574. weight: math.unit(150, "lb"),
  47575. name: "Front",
  47576. image: {
  47577. source: "./media/characters/jenny-cartwright/front.svg",
  47578. extra: 1384/1376,
  47579. bottom: 58/1442
  47580. }
  47581. },
  47582. },
  47583. [
  47584. {
  47585. name: "Normal",
  47586. height: math.unit(6 + 7/12, "feet"),
  47587. default: true
  47588. },
  47589. {
  47590. name: "Librarian",
  47591. height: math.unit(55, "feet")
  47592. },
  47593. {
  47594. name: "Sightseer",
  47595. height: math.unit(50, "miles")
  47596. },
  47597. {
  47598. name: "Giga",
  47599. height: math.unit(30000, "miles")
  47600. },
  47601. ]
  47602. ))
  47603. characterMakers.push(() => makeCharacter(
  47604. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47605. {
  47606. nude: {
  47607. height: math.unit(8, "feet"),
  47608. weight: math.unit(225, "lb"),
  47609. name: "Nude",
  47610. image: {
  47611. source: "./media/characters/marvy/nude.svg",
  47612. extra: 1900/1683,
  47613. bottom: 89/1989
  47614. }
  47615. },
  47616. dressed: {
  47617. height: math.unit(8, "feet"),
  47618. weight: math.unit(225, "lb"),
  47619. name: "Dressed",
  47620. image: {
  47621. source: "./media/characters/marvy/dressed.svg",
  47622. extra: 1900/1683,
  47623. bottom: 89/1989
  47624. }
  47625. },
  47626. head: {
  47627. height: math.unit(2.85, "feet"),
  47628. name: "Head",
  47629. image: {
  47630. source: "./media/characters/marvy/head.svg"
  47631. }
  47632. },
  47633. },
  47634. [
  47635. {
  47636. name: "Normal",
  47637. height: math.unit(8, "feet"),
  47638. default: true
  47639. },
  47640. ]
  47641. ))
  47642. characterMakers.push(() => makeCharacter(
  47643. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47644. {
  47645. front: {
  47646. height: math.unit(8, "feet"),
  47647. weight: math.unit(250, "lb"),
  47648. name: "Front",
  47649. image: {
  47650. source: "./media/characters/leah/front.svg",
  47651. extra: 1257/1149,
  47652. bottom: 109/1366
  47653. }
  47654. },
  47655. },
  47656. [
  47657. {
  47658. name: "Normal",
  47659. height: math.unit(8, "feet"),
  47660. default: true
  47661. },
  47662. {
  47663. name: "Minimacro",
  47664. height: math.unit(40, "feet")
  47665. },
  47666. {
  47667. name: "Macro",
  47668. height: math.unit(124, "feet")
  47669. },
  47670. {
  47671. name: "Megamacro",
  47672. height: math.unit(850, "feet")
  47673. },
  47674. ]
  47675. ))
  47676. characterMakers.push(() => makeCharacter(
  47677. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47678. {
  47679. side: {
  47680. height: math.unit(13 + 6/12, "feet"),
  47681. weight: math.unit(3200, "lb"),
  47682. name: "Side",
  47683. image: {
  47684. source: "./media/characters/alvir/side.svg",
  47685. extra: 896/589,
  47686. bottom: 26/922
  47687. }
  47688. },
  47689. },
  47690. [
  47691. {
  47692. name: "Normal",
  47693. height: math.unit(13 + 6/12, "feet"),
  47694. default: true
  47695. },
  47696. ]
  47697. ))
  47698. characterMakers.push(() => makeCharacter(
  47699. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47700. {
  47701. front: {
  47702. height: math.unit(5 + 4/12, "feet"),
  47703. weight: math.unit(236, "lb"),
  47704. name: "Front",
  47705. image: {
  47706. source: "./media/characters/zaina-khalil/front.svg",
  47707. extra: 1533/1485,
  47708. bottom: 94/1627
  47709. }
  47710. },
  47711. side: {
  47712. height: math.unit(5 + 4/12, "feet"),
  47713. weight: math.unit(236, "lb"),
  47714. name: "Side",
  47715. image: {
  47716. source: "./media/characters/zaina-khalil/side.svg",
  47717. extra: 1537/1498,
  47718. bottom: 66/1603
  47719. }
  47720. },
  47721. back: {
  47722. height: math.unit(5 + 4/12, "feet"),
  47723. weight: math.unit(236, "lb"),
  47724. name: "Back",
  47725. image: {
  47726. source: "./media/characters/zaina-khalil/back.svg",
  47727. extra: 1546/1494,
  47728. bottom: 89/1635
  47729. }
  47730. },
  47731. },
  47732. [
  47733. {
  47734. name: "Normal",
  47735. height: math.unit(5 + 4/12, "feet"),
  47736. default: true
  47737. },
  47738. ]
  47739. ))
  47740. characterMakers.push(() => makeCharacter(
  47741. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47742. {
  47743. side: {
  47744. height: math.unit(12, "feet"),
  47745. weight: math.unit(4000, "lb"),
  47746. name: "Side",
  47747. image: {
  47748. source: "./media/characters/terry/side.svg",
  47749. extra: 1518/1439,
  47750. bottom: 149/1667
  47751. }
  47752. },
  47753. },
  47754. [
  47755. {
  47756. name: "Normal",
  47757. height: math.unit(12, "feet"),
  47758. default: true
  47759. },
  47760. ]
  47761. ))
  47762. characterMakers.push(() => makeCharacter(
  47763. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47764. {
  47765. front: {
  47766. height: math.unit(12, "feet"),
  47767. weight: math.unit(1500, "lb"),
  47768. name: "Front",
  47769. image: {
  47770. source: "./media/characters/kahea/front.svg",
  47771. extra: 1722/1617,
  47772. bottom: 179/1901
  47773. }
  47774. },
  47775. },
  47776. [
  47777. {
  47778. name: "Normal",
  47779. height: math.unit(12, "feet"),
  47780. default: true
  47781. },
  47782. ]
  47783. ))
  47784. characterMakers.push(() => makeCharacter(
  47785. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47786. {
  47787. demonFront: {
  47788. height: math.unit(36, "feet"),
  47789. name: "Front",
  47790. image: {
  47791. source: "./media/characters/alex-xuria/demon-front.svg",
  47792. extra: 1705/1673,
  47793. bottom: 198/1903
  47794. },
  47795. form: "demon",
  47796. default: true
  47797. },
  47798. demonBack: {
  47799. height: math.unit(36, "feet"),
  47800. name: "Back",
  47801. image: {
  47802. source: "./media/characters/alex-xuria/demon-back.svg",
  47803. extra: 1725/1693,
  47804. bottom: 70/1795
  47805. },
  47806. form: "demon"
  47807. },
  47808. demonHead: {
  47809. height: math.unit(2.14, "meters"),
  47810. name: "Head",
  47811. image: {
  47812. source: "./media/characters/alex-xuria/demon-head.svg"
  47813. },
  47814. form: "demon"
  47815. },
  47816. demonHand: {
  47817. height: math.unit(1.61, "meters"),
  47818. name: "Hand",
  47819. image: {
  47820. source: "./media/characters/alex-xuria/demon-hand.svg"
  47821. },
  47822. form: "demon"
  47823. },
  47824. demonPaw: {
  47825. height: math.unit(1.35, "meters"),
  47826. name: "Paw",
  47827. image: {
  47828. source: "./media/characters/alex-xuria/demon-paw.svg"
  47829. },
  47830. form: "demon"
  47831. },
  47832. demonFoot: {
  47833. height: math.unit(2.2, "meters"),
  47834. name: "Foot",
  47835. image: {
  47836. source: "./media/characters/alex-xuria/demon-foot.svg"
  47837. },
  47838. form: "demon"
  47839. },
  47840. demonCock: {
  47841. height: math.unit(1.74, "meters"),
  47842. name: "Cock",
  47843. image: {
  47844. source: "./media/characters/alex-xuria/demon-cock.svg"
  47845. },
  47846. form: "demon"
  47847. },
  47848. demonTailClosed: {
  47849. height: math.unit(1.47, "meters"),
  47850. name: "Tail (Closed)",
  47851. image: {
  47852. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47853. },
  47854. form: "demon"
  47855. },
  47856. demonTailOpen: {
  47857. height: math.unit(2.85, "meters"),
  47858. name: "Tail (Open)",
  47859. image: {
  47860. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47861. },
  47862. form: "demon"
  47863. },
  47864. incubusFront: {
  47865. height: math.unit(12, "feet"),
  47866. name: "Front",
  47867. image: {
  47868. source: "./media/characters/alex-xuria/incubus-front.svg",
  47869. extra: 1754/1677,
  47870. bottom: 125/1879
  47871. },
  47872. form: "incubus",
  47873. default: true
  47874. },
  47875. incubusBack: {
  47876. height: math.unit(12, "feet"),
  47877. name: "Back",
  47878. image: {
  47879. source: "./media/characters/alex-xuria/incubus-back.svg",
  47880. extra: 1702/1647,
  47881. bottom: 30/1732
  47882. },
  47883. form: "incubus"
  47884. },
  47885. incubusHead: {
  47886. height: math.unit(3.45, "feet"),
  47887. name: "Head",
  47888. image: {
  47889. source: "./media/characters/alex-xuria/incubus-head.svg"
  47890. },
  47891. form: "incubus"
  47892. },
  47893. rabbitFront: {
  47894. height: math.unit(6, "feet"),
  47895. name: "Front",
  47896. image: {
  47897. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47898. extra: 1369/1349,
  47899. bottom: 45/1414
  47900. },
  47901. form: "rabbit",
  47902. default: true
  47903. },
  47904. rabbitSide: {
  47905. height: math.unit(6, "feet"),
  47906. name: "Side",
  47907. image: {
  47908. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47909. extra: 1370/1356,
  47910. bottom: 37/1407
  47911. },
  47912. form: "rabbit"
  47913. },
  47914. rabbitBack: {
  47915. height: math.unit(6, "feet"),
  47916. name: "Back",
  47917. image: {
  47918. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47919. extra: 1375/1358,
  47920. bottom: 43/1418
  47921. },
  47922. form: "rabbit"
  47923. },
  47924. },
  47925. [
  47926. {
  47927. name: "Normal",
  47928. height: math.unit(6, "feet"),
  47929. default: true,
  47930. form: "rabbit"
  47931. },
  47932. {
  47933. name: "Incubus",
  47934. height: math.unit(12, "feet"),
  47935. default: true,
  47936. form: "incubus"
  47937. },
  47938. {
  47939. name: "Demon",
  47940. height: math.unit(36, "feet"),
  47941. default: true,
  47942. form: "demon"
  47943. }
  47944. ],
  47945. {
  47946. "demon": {
  47947. name: "Demon",
  47948. default: true
  47949. },
  47950. "incubus": {
  47951. name: "Incubus",
  47952. },
  47953. "rabbit": {
  47954. name: "Rabbit"
  47955. }
  47956. }
  47957. ))
  47958. characterMakers.push(() => makeCharacter(
  47959. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47960. {
  47961. front: {
  47962. height: math.unit(7 + 5/12, "feet"),
  47963. weight: math.unit(510, "lb"),
  47964. name: "Front",
  47965. image: {
  47966. source: "./media/characters/syrup/front.svg",
  47967. extra: 932/916,
  47968. bottom: 26/958
  47969. }
  47970. },
  47971. },
  47972. [
  47973. {
  47974. name: "Normal",
  47975. height: math.unit(7 + 5/12, "feet"),
  47976. default: true
  47977. },
  47978. {
  47979. name: "Big",
  47980. height: math.unit(50, "feet")
  47981. },
  47982. {
  47983. name: "Macro",
  47984. height: math.unit(300, "feet")
  47985. },
  47986. {
  47987. name: "Megamacro",
  47988. height: math.unit(1, "mile")
  47989. },
  47990. ]
  47991. ))
  47992. characterMakers.push(() => makeCharacter(
  47993. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47994. {
  47995. front: {
  47996. height: math.unit(6 + 9/12, "feet"),
  47997. name: "Front",
  47998. image: {
  47999. source: "./media/characters/zeimne/front.svg",
  48000. extra: 1969/1806,
  48001. bottom: 53/2022
  48002. }
  48003. },
  48004. },
  48005. [
  48006. {
  48007. name: "Normal",
  48008. height: math.unit(6 + 9/12, "feet"),
  48009. default: true
  48010. },
  48011. {
  48012. name: "Giant",
  48013. height: math.unit(550, "feet")
  48014. },
  48015. {
  48016. name: "Mega",
  48017. height: math.unit(3, "miles")
  48018. },
  48019. {
  48020. name: "Giga",
  48021. height: math.unit(250, "miles")
  48022. },
  48023. {
  48024. name: "Tera",
  48025. height: math.unit(1, "AU")
  48026. },
  48027. ]
  48028. ))
  48029. characterMakers.push(() => makeCharacter(
  48030. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48031. {
  48032. front: {
  48033. height: math.unit(5 + 2/12, "feet"),
  48034. name: "Front",
  48035. image: {
  48036. source: "./media/characters/grar/front.svg",
  48037. extra: 1331/1119,
  48038. bottom: 60/1391
  48039. }
  48040. },
  48041. back: {
  48042. height: math.unit(5 + 2/12, "feet"),
  48043. name: "Back",
  48044. image: {
  48045. source: "./media/characters/grar/back.svg",
  48046. extra: 1385/1169,
  48047. bottom: 23/1408
  48048. }
  48049. },
  48050. },
  48051. [
  48052. {
  48053. name: "Normal",
  48054. height: math.unit(5 + 2/12, "feet"),
  48055. default: true
  48056. },
  48057. ]
  48058. ))
  48059. characterMakers.push(() => makeCharacter(
  48060. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48061. {
  48062. front: {
  48063. height: math.unit(13 + 7/12, "feet"),
  48064. weight: math.unit(2200, "lb"),
  48065. name: "Front",
  48066. image: {
  48067. source: "./media/characters/endraya/front.svg",
  48068. extra: 1289/1215,
  48069. bottom: 50/1339
  48070. }
  48071. },
  48072. nude: {
  48073. height: math.unit(13 + 7/12, "feet"),
  48074. weight: math.unit(2200, "lb"),
  48075. name: "Nude",
  48076. image: {
  48077. source: "./media/characters/endraya/nude.svg",
  48078. extra: 1247/1171,
  48079. bottom: 40/1287
  48080. }
  48081. },
  48082. head: {
  48083. height: math.unit(2.6, "feet"),
  48084. name: "Head",
  48085. image: {
  48086. source: "./media/characters/endraya/head.svg"
  48087. }
  48088. },
  48089. slit: {
  48090. height: math.unit(3.4, "feet"),
  48091. name: "Slit",
  48092. image: {
  48093. source: "./media/characters/endraya/slit.svg"
  48094. }
  48095. },
  48096. },
  48097. [
  48098. {
  48099. name: "Normal",
  48100. height: math.unit(13 + 7/12, "feet"),
  48101. default: true
  48102. },
  48103. {
  48104. name: "Macro",
  48105. height: math.unit(200, "feet")
  48106. },
  48107. ]
  48108. ))
  48109. characterMakers.push(() => makeCharacter(
  48110. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48111. {
  48112. front: {
  48113. height: math.unit(1.81, "meters"),
  48114. weight: math.unit(69, "kg"),
  48115. name: "Front",
  48116. image: {
  48117. source: "./media/characters/rodryana/front.svg",
  48118. extra: 2002/1921,
  48119. bottom: 53/2055
  48120. }
  48121. },
  48122. back: {
  48123. height: math.unit(1.81, "meters"),
  48124. weight: math.unit(69, "kg"),
  48125. name: "Back",
  48126. image: {
  48127. source: "./media/characters/rodryana/back.svg",
  48128. extra: 1993/1926,
  48129. bottom: 48/2041
  48130. }
  48131. },
  48132. maw: {
  48133. height: math.unit(0.19769417475, "meters"),
  48134. name: "Maw",
  48135. image: {
  48136. source: "./media/characters/rodryana/maw.svg"
  48137. }
  48138. },
  48139. slit: {
  48140. height: math.unit(0.31631067961, "meters"),
  48141. name: "Slit",
  48142. image: {
  48143. source: "./media/characters/rodryana/slit.svg"
  48144. }
  48145. },
  48146. },
  48147. [
  48148. {
  48149. name: "Normal",
  48150. height: math.unit(1.81, "meters")
  48151. },
  48152. {
  48153. name: "Mini Macro",
  48154. height: math.unit(181, "meters")
  48155. },
  48156. {
  48157. name: "Macro",
  48158. height: math.unit(452, "meters"),
  48159. default: true
  48160. },
  48161. {
  48162. name: "Mega Macro",
  48163. height: math.unit(1.375, "km")
  48164. },
  48165. {
  48166. name: "Giga Macro",
  48167. height: math.unit(13.575, "km")
  48168. },
  48169. ]
  48170. ))
  48171. characterMakers.push(() => makeCharacter(
  48172. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48173. {
  48174. front: {
  48175. height: math.unit(6, "feet"),
  48176. weight: math.unit(1000, "lb"),
  48177. name: "Front",
  48178. image: {
  48179. source: "./media/characters/asaya/front.svg",
  48180. extra: 1460/1200,
  48181. bottom: 71/1531
  48182. }
  48183. },
  48184. },
  48185. [
  48186. {
  48187. name: "Normal",
  48188. height: math.unit(8, "km"),
  48189. default: true
  48190. },
  48191. ]
  48192. ))
  48193. characterMakers.push(() => makeCharacter(
  48194. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48195. {
  48196. front: {
  48197. height: math.unit(3.5, "meters"),
  48198. name: "Front",
  48199. image: {
  48200. source: "./media/characters/sarzu-and-israz/front.svg",
  48201. extra: 1570/1558,
  48202. bottom: 150/1720
  48203. },
  48204. },
  48205. back: {
  48206. height: math.unit(3.5, "meters"),
  48207. name: "Back",
  48208. image: {
  48209. source: "./media/characters/sarzu-and-israz/back.svg",
  48210. extra: 1523/1509,
  48211. bottom: 132/1655
  48212. },
  48213. },
  48214. frontFemale: {
  48215. height: math.unit(3.5, "meters"),
  48216. name: "Front (Female)",
  48217. image: {
  48218. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48219. extra: 1570/1558,
  48220. bottom: 150/1720
  48221. },
  48222. },
  48223. frontHerm: {
  48224. height: math.unit(3.5, "meters"),
  48225. name: "Front (Herm)",
  48226. image: {
  48227. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48228. extra: 1570/1558,
  48229. bottom: 150/1720
  48230. },
  48231. },
  48232. },
  48233. [
  48234. {
  48235. name: "Normal",
  48236. height: math.unit(3.5, "meters"),
  48237. default: true,
  48238. },
  48239. {
  48240. name: "Macro",
  48241. height: math.unit(65.5, "meters"),
  48242. },
  48243. ],
  48244. ))
  48245. characterMakers.push(() => makeCharacter(
  48246. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48247. {
  48248. front: {
  48249. height: math.unit(6, "feet"),
  48250. weight: math.unit(250, "lb"),
  48251. name: "Front",
  48252. image: {
  48253. source: "./media/characters/zenimma/front.svg",
  48254. extra: 1346/1320,
  48255. bottom: 58/1404
  48256. }
  48257. },
  48258. back: {
  48259. height: math.unit(6, "feet"),
  48260. weight: math.unit(250, "lb"),
  48261. name: "Back",
  48262. image: {
  48263. source: "./media/characters/zenimma/back.svg",
  48264. extra: 1324/1308,
  48265. bottom: 44/1368
  48266. }
  48267. },
  48268. dick: {
  48269. height: math.unit(1.44, "feet"),
  48270. name: "Dick",
  48271. image: {
  48272. source: "./media/characters/zenimma/dick.svg"
  48273. }
  48274. },
  48275. },
  48276. [
  48277. {
  48278. name: "Canon Height",
  48279. height: math.unit(66, "miles"),
  48280. default: true
  48281. },
  48282. ]
  48283. ))
  48284. characterMakers.push(() => makeCharacter(
  48285. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48286. {
  48287. nude: {
  48288. height: math.unit(6, "feet"),
  48289. weight: math.unit(150, "lb"),
  48290. name: "Nude",
  48291. image: {
  48292. source: "./media/characters/shavon/nude.svg",
  48293. extra: 1242/1096,
  48294. bottom: 98/1340
  48295. }
  48296. },
  48297. dressed: {
  48298. height: math.unit(6, "feet"),
  48299. weight: math.unit(150, "lb"),
  48300. name: "Dressed",
  48301. image: {
  48302. source: "./media/characters/shavon/dressed.svg",
  48303. extra: 1242/1096,
  48304. bottom: 98/1340
  48305. }
  48306. },
  48307. },
  48308. [
  48309. {
  48310. name: "Macro",
  48311. height: math.unit(255, "feet"),
  48312. default: true
  48313. },
  48314. ]
  48315. ))
  48316. characterMakers.push(() => makeCharacter(
  48317. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48318. {
  48319. front: {
  48320. height: math.unit(6, "feet"),
  48321. name: "Front",
  48322. image: {
  48323. source: "./media/characters/steph/front.svg",
  48324. extra: 1430/1330,
  48325. bottom: 54/1484
  48326. }
  48327. },
  48328. },
  48329. [
  48330. {
  48331. name: "Normal",
  48332. height: math.unit(6, "feet"),
  48333. default: true
  48334. },
  48335. ]
  48336. ))
  48337. characterMakers.push(() => makeCharacter(
  48338. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48339. {
  48340. front: {
  48341. height: math.unit(9, "feet"),
  48342. weight: math.unit(400, "lb"),
  48343. name: "Front",
  48344. image: {
  48345. source: "./media/characters/kil'aman/front.svg",
  48346. extra: 1210/1159,
  48347. bottom: 109/1319
  48348. }
  48349. },
  48350. head: {
  48351. height: math.unit(2.14, "feet"),
  48352. name: "Head",
  48353. image: {
  48354. source: "./media/characters/kil'aman/head.svg"
  48355. }
  48356. },
  48357. maw: {
  48358. height: math.unit(1.21, "feet"),
  48359. name: "Maw",
  48360. image: {
  48361. source: "./media/characters/kil'aman/maw.svg"
  48362. }
  48363. },
  48364. foot: {
  48365. height: math.unit(1.7, "feet"),
  48366. name: "Foot",
  48367. image: {
  48368. source: "./media/characters/kil'aman/foot.svg"
  48369. }
  48370. },
  48371. dick: {
  48372. height: math.unit(2.1, "feet"),
  48373. name: "Dick",
  48374. image: {
  48375. source: "./media/characters/kil'aman/dick.svg"
  48376. }
  48377. },
  48378. },
  48379. [
  48380. {
  48381. name: "Normal",
  48382. height: math.unit(9, "feet")
  48383. },
  48384. {
  48385. name: "Canon Height",
  48386. height: math.unit(10, "miles"),
  48387. default: true
  48388. },
  48389. {
  48390. name: "Maximum",
  48391. height: math.unit(6e9, "miles")
  48392. },
  48393. ]
  48394. ))
  48395. characterMakers.push(() => makeCharacter(
  48396. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48397. {
  48398. front: {
  48399. height: math.unit(90, "feet"),
  48400. weight: math.unit(675000, "lb"),
  48401. name: "Front",
  48402. image: {
  48403. source: "./media/characters/qadan/front.svg",
  48404. extra: 1012/1004,
  48405. bottom: 78/1090
  48406. }
  48407. },
  48408. back: {
  48409. height: math.unit(90, "feet"),
  48410. weight: math.unit(675000, "lb"),
  48411. name: "Back",
  48412. image: {
  48413. source: "./media/characters/qadan/back.svg",
  48414. extra: 1042/1031,
  48415. bottom: 55/1097
  48416. }
  48417. },
  48418. armored: {
  48419. height: math.unit(90, "feet"),
  48420. weight: math.unit(675000, "lb"),
  48421. name: "Armored",
  48422. image: {
  48423. source: "./media/characters/qadan/armored.svg",
  48424. extra: 1047/1037,
  48425. bottom: 48/1095
  48426. }
  48427. },
  48428. },
  48429. [
  48430. {
  48431. name: "Normal",
  48432. height: math.unit(90, "feet"),
  48433. default: true
  48434. },
  48435. ]
  48436. ))
  48437. characterMakers.push(() => makeCharacter(
  48438. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48439. {
  48440. front: {
  48441. height: math.unit(6, "feet"),
  48442. weight: math.unit(225, "lb"),
  48443. name: "Front",
  48444. image: {
  48445. source: "./media/characters/brooke/front.svg",
  48446. extra: 1050/1010,
  48447. bottom: 66/1116
  48448. }
  48449. },
  48450. back: {
  48451. height: math.unit(6, "feet"),
  48452. weight: math.unit(225, "lb"),
  48453. name: "Back",
  48454. image: {
  48455. source: "./media/characters/brooke/back.svg",
  48456. extra: 1053/1013,
  48457. bottom: 41/1094
  48458. }
  48459. },
  48460. dressed: {
  48461. height: math.unit(6, "feet"),
  48462. weight: math.unit(225, "lb"),
  48463. name: "Dressed",
  48464. image: {
  48465. source: "./media/characters/brooke/dressed.svg",
  48466. extra: 1050/1010,
  48467. bottom: 66/1116
  48468. }
  48469. },
  48470. },
  48471. [
  48472. {
  48473. name: "Canon Height",
  48474. height: math.unit(500, "miles"),
  48475. default: true
  48476. },
  48477. ]
  48478. ))
  48479. characterMakers.push(() => makeCharacter(
  48480. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48481. {
  48482. front: {
  48483. height: math.unit(6 + 2/12, "feet"),
  48484. weight: math.unit(210, "lb"),
  48485. name: "Front",
  48486. image: {
  48487. source: "./media/characters/wubs/front.svg",
  48488. extra: 1345/1325,
  48489. bottom: 70/1415
  48490. }
  48491. },
  48492. back: {
  48493. height: math.unit(6 + 2/12, "feet"),
  48494. weight: math.unit(210, "lb"),
  48495. name: "Back",
  48496. image: {
  48497. source: "./media/characters/wubs/back.svg",
  48498. extra: 1296/1275,
  48499. bottom: 58/1354
  48500. }
  48501. },
  48502. },
  48503. [
  48504. {
  48505. name: "Normal",
  48506. height: math.unit(6 + 2/12, "feet"),
  48507. default: true
  48508. },
  48509. {
  48510. name: "Macro",
  48511. height: math.unit(1000, "feet")
  48512. },
  48513. {
  48514. name: "Megamacro",
  48515. height: math.unit(1, "mile")
  48516. },
  48517. ]
  48518. ))
  48519. characterMakers.push(() => makeCharacter(
  48520. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48521. {
  48522. front: {
  48523. height: math.unit(4, "feet"),
  48524. weight: math.unit(120, "lb"),
  48525. name: "Front",
  48526. image: {
  48527. source: "./media/characters/blue/front.svg",
  48528. extra: 1636/1525,
  48529. bottom: 43/1679
  48530. }
  48531. },
  48532. back: {
  48533. height: math.unit(4, "feet"),
  48534. weight: math.unit(120, "lb"),
  48535. name: "Back",
  48536. image: {
  48537. source: "./media/characters/blue/back.svg",
  48538. extra: 1660/1560,
  48539. bottom: 57/1717
  48540. }
  48541. },
  48542. paws: {
  48543. height: math.unit(0.826, "feet"),
  48544. name: "Paws",
  48545. image: {
  48546. source: "./media/characters/blue/paws.svg"
  48547. }
  48548. },
  48549. },
  48550. [
  48551. {
  48552. name: "Micro",
  48553. height: math.unit(3, "inches")
  48554. },
  48555. {
  48556. name: "Normal",
  48557. height: math.unit(4, "feet"),
  48558. default: true
  48559. },
  48560. {
  48561. name: "Femenine Form",
  48562. height: math.unit(14, "feet")
  48563. },
  48564. {
  48565. name: "Werebat Form",
  48566. height: math.unit(18, "feet")
  48567. },
  48568. ]
  48569. ))
  48570. characterMakers.push(() => makeCharacter(
  48571. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48572. {
  48573. female: {
  48574. height: math.unit(7 + 4/12, "feet"),
  48575. weight: math.unit(243, "lb"),
  48576. name: "Female",
  48577. image: {
  48578. source: "./media/characters/kaya/female.svg",
  48579. extra: 975/898,
  48580. bottom: 34/1009
  48581. }
  48582. },
  48583. herm: {
  48584. height: math.unit(7 + 4/12, "feet"),
  48585. weight: math.unit(243, "lb"),
  48586. name: "Herm",
  48587. image: {
  48588. source: "./media/characters/kaya/herm.svg",
  48589. extra: 975/898,
  48590. bottom: 34/1009
  48591. }
  48592. },
  48593. },
  48594. [
  48595. {
  48596. name: "Normal",
  48597. height: math.unit(7 + 4/12, "feet"),
  48598. default: true
  48599. },
  48600. ]
  48601. ))
  48602. characterMakers.push(() => makeCharacter(
  48603. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48604. {
  48605. female: {
  48606. height: math.unit(9 + 4/12, "feet"),
  48607. weight: math.unit(398, "lb"),
  48608. name: "Female",
  48609. image: {
  48610. source: "./media/characters/kassandra/female.svg",
  48611. extra: 908/839,
  48612. bottom: 61/969
  48613. }
  48614. },
  48615. intersex: {
  48616. height: math.unit(9 + 4/12, "feet"),
  48617. weight: math.unit(398, "lb"),
  48618. name: "Intersex",
  48619. image: {
  48620. source: "./media/characters/kassandra/intersex.svg",
  48621. extra: 908/839,
  48622. bottom: 61/969
  48623. }
  48624. },
  48625. },
  48626. [
  48627. {
  48628. name: "Normal",
  48629. height: math.unit(9 + 4/12, "feet"),
  48630. default: true
  48631. },
  48632. ]
  48633. ))
  48634. characterMakers.push(() => makeCharacter(
  48635. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48636. {
  48637. front: {
  48638. height: math.unit(3, "meters"),
  48639. name: "Front",
  48640. image: {
  48641. source: "./media/characters/amy/front.svg",
  48642. extra: 1380/1343,
  48643. bottom: 70/1450
  48644. }
  48645. },
  48646. back: {
  48647. height: math.unit(3, "meters"),
  48648. name: "Back",
  48649. image: {
  48650. source: "./media/characters/amy/back.svg",
  48651. extra: 1380/1347,
  48652. bottom: 66/1446
  48653. }
  48654. },
  48655. },
  48656. [
  48657. {
  48658. name: "Normal",
  48659. height: math.unit(3, "meters"),
  48660. default: true
  48661. },
  48662. ]
  48663. ))
  48664. characterMakers.push(() => makeCharacter(
  48665. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48666. {
  48667. side: {
  48668. height: math.unit(47, "cm"),
  48669. weight: math.unit(10.8, "kg"),
  48670. name: "Side",
  48671. image: {
  48672. source: "./media/characters/alphaschakal/side.svg",
  48673. extra: 1058/568,
  48674. bottom: 62/1120
  48675. }
  48676. },
  48677. back: {
  48678. height: math.unit(78, "cm"),
  48679. weight: math.unit(10.8, "kg"),
  48680. name: "Back",
  48681. image: {
  48682. source: "./media/characters/alphaschakal/back.svg",
  48683. extra: 1102/942,
  48684. bottom: 185/1287
  48685. }
  48686. },
  48687. head: {
  48688. height: math.unit(28, "cm"),
  48689. name: "Head",
  48690. image: {
  48691. source: "./media/characters/alphaschakal/head.svg",
  48692. extra: 696/508,
  48693. bottom: 0/696
  48694. }
  48695. },
  48696. paw: {
  48697. height: math.unit(16, "cm"),
  48698. name: "Paw",
  48699. image: {
  48700. source: "./media/characters/alphaschakal/paw.svg"
  48701. }
  48702. },
  48703. },
  48704. [
  48705. {
  48706. name: "Normal",
  48707. height: math.unit(47, "cm"),
  48708. default: true
  48709. },
  48710. {
  48711. name: "Macro",
  48712. height: math.unit(340, "cm")
  48713. },
  48714. ]
  48715. ))
  48716. characterMakers.push(() => makeCharacter(
  48717. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48718. {
  48719. front: {
  48720. height: math.unit(36, "earths"),
  48721. name: "Front",
  48722. image: {
  48723. source: "./media/characters/ecobyss/front.svg",
  48724. extra: 1282/1215,
  48725. bottom: 11/1293
  48726. }
  48727. },
  48728. back: {
  48729. height: math.unit(36, "earths"),
  48730. name: "Back",
  48731. image: {
  48732. source: "./media/characters/ecobyss/back.svg",
  48733. extra: 1291/1222,
  48734. bottom: 8/1299
  48735. }
  48736. },
  48737. },
  48738. [
  48739. {
  48740. name: "Normal",
  48741. height: math.unit(36, "earths"),
  48742. default: true
  48743. },
  48744. ]
  48745. ))
  48746. characterMakers.push(() => makeCharacter(
  48747. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48748. {
  48749. front: {
  48750. height: math.unit(12, "feet"),
  48751. name: "Front",
  48752. image: {
  48753. source: "./media/characters/vasuk/front.svg",
  48754. extra: 1326/1207,
  48755. bottom: 64/1390
  48756. }
  48757. },
  48758. },
  48759. [
  48760. {
  48761. name: "Normal",
  48762. height: math.unit(12, "feet"),
  48763. default: true
  48764. },
  48765. ]
  48766. ))
  48767. characterMakers.push(() => makeCharacter(
  48768. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48769. {
  48770. side: {
  48771. height: math.unit(100, "feet"),
  48772. name: "Side",
  48773. image: {
  48774. source: "./media/characters/linneaus/side.svg",
  48775. extra: 987/807,
  48776. bottom: 47/1034
  48777. }
  48778. },
  48779. },
  48780. [
  48781. {
  48782. name: "Macro",
  48783. height: math.unit(100, "feet"),
  48784. default: true
  48785. },
  48786. ]
  48787. ))
  48788. characterMakers.push(() => makeCharacter(
  48789. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48790. {
  48791. front: {
  48792. height: math.unit(8, "feet"),
  48793. weight: math.unit(1200, "lb"),
  48794. name: "Front",
  48795. image: {
  48796. source: "./media/characters/nyterious-daligdig/front.svg",
  48797. extra: 1284/1094,
  48798. bottom: 84/1368
  48799. }
  48800. },
  48801. back: {
  48802. height: math.unit(8, "feet"),
  48803. weight: math.unit(1200, "lb"),
  48804. name: "Back",
  48805. image: {
  48806. source: "./media/characters/nyterious-daligdig/back.svg",
  48807. extra: 1301/1121,
  48808. bottom: 129/1430
  48809. }
  48810. },
  48811. mouth: {
  48812. height: math.unit(1.464, "feet"),
  48813. name: "Mouth",
  48814. image: {
  48815. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48816. }
  48817. },
  48818. },
  48819. [
  48820. {
  48821. name: "Small",
  48822. height: math.unit(8, "feet"),
  48823. default: true
  48824. },
  48825. {
  48826. name: "Normal",
  48827. height: math.unit(15, "feet")
  48828. },
  48829. {
  48830. name: "Macro",
  48831. height: math.unit(90, "feet")
  48832. },
  48833. ]
  48834. ))
  48835. characterMakers.push(() => makeCharacter(
  48836. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48837. {
  48838. front: {
  48839. height: math.unit(7 + 4/12, "feet"),
  48840. weight: math.unit(252, "lb"),
  48841. name: "Front",
  48842. image: {
  48843. source: "./media/characters/bandel/front.svg",
  48844. extra: 1946/1775,
  48845. bottom: 26/1972
  48846. }
  48847. },
  48848. back: {
  48849. height: math.unit(7 + 4/12, "feet"),
  48850. weight: math.unit(252, "lb"),
  48851. name: "Back",
  48852. image: {
  48853. source: "./media/characters/bandel/back.svg",
  48854. extra: 1940/1770,
  48855. bottom: 25/1965
  48856. }
  48857. },
  48858. maw: {
  48859. height: math.unit(2.15, "feet"),
  48860. name: "Maw",
  48861. image: {
  48862. source: "./media/characters/bandel/maw.svg"
  48863. }
  48864. },
  48865. stomach: {
  48866. height: math.unit(1.95, "feet"),
  48867. name: "Stomach",
  48868. image: {
  48869. source: "./media/characters/bandel/stomach.svg"
  48870. }
  48871. },
  48872. },
  48873. [
  48874. {
  48875. name: "Normal",
  48876. height: math.unit(7 + 4/12, "feet"),
  48877. default: true
  48878. },
  48879. ]
  48880. ))
  48881. characterMakers.push(() => makeCharacter(
  48882. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48883. {
  48884. front: {
  48885. height: math.unit(10 + 5/12, "feet"),
  48886. weight: math.unit(773.5, "kg"),
  48887. name: "Front",
  48888. image: {
  48889. source: "./media/characters/zed/front.svg",
  48890. extra: 987/941,
  48891. bottom: 52/1039
  48892. }
  48893. },
  48894. },
  48895. [
  48896. {
  48897. name: "Short",
  48898. height: math.unit(5 + 4/12, "feet")
  48899. },
  48900. {
  48901. name: "Average",
  48902. height: math.unit(10 + 5/12, "feet"),
  48903. default: true
  48904. },
  48905. {
  48906. name: "Mini-Macro",
  48907. height: math.unit(24 + 9/12, "feet")
  48908. },
  48909. {
  48910. name: "Macro",
  48911. height: math.unit(249, "feet")
  48912. },
  48913. {
  48914. name: "Mega-Macro",
  48915. height: math.unit(12490, "feet")
  48916. },
  48917. {
  48918. name: "Giga-Macro",
  48919. height: math.unit(24.9, "miles")
  48920. },
  48921. {
  48922. name: "Tera-Macro",
  48923. height: math.unit(24900, "miles")
  48924. },
  48925. {
  48926. name: "Cosmic Scale",
  48927. height: math.unit(38.9, "lightyears")
  48928. },
  48929. {
  48930. name: "Universal Scale",
  48931. height: math.unit(138e12, "lightyears")
  48932. },
  48933. ]
  48934. ))
  48935. characterMakers.push(() => makeCharacter(
  48936. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48937. {
  48938. front: {
  48939. height: math.unit(1561, "inches"),
  48940. name: "Front",
  48941. image: {
  48942. source: "./media/characters/ivan/front.svg",
  48943. extra: 1126/1071,
  48944. bottom: 26/1152
  48945. }
  48946. },
  48947. back: {
  48948. height: math.unit(1561, "inches"),
  48949. name: "Back",
  48950. image: {
  48951. source: "./media/characters/ivan/back.svg",
  48952. extra: 1134/1079,
  48953. bottom: 30/1164
  48954. }
  48955. },
  48956. },
  48957. [
  48958. {
  48959. name: "Normal",
  48960. height: math.unit(1561, "inches"),
  48961. default: true
  48962. },
  48963. ]
  48964. ))
  48965. characterMakers.push(() => makeCharacter(
  48966. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48967. {
  48968. front: {
  48969. height: math.unit(5 + 7/12, "feet"),
  48970. weight: math.unit(150, "lb"),
  48971. name: "Front",
  48972. image: {
  48973. source: "./media/characters/robin-arctic-hare/front.svg",
  48974. extra: 1148/974,
  48975. bottom: 20/1168
  48976. }
  48977. },
  48978. },
  48979. [
  48980. {
  48981. name: "Normal",
  48982. height: math.unit(5 + 7/12, "feet"),
  48983. default: true
  48984. },
  48985. ]
  48986. ))
  48987. characterMakers.push(() => makeCharacter(
  48988. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48989. {
  48990. side: {
  48991. height: math.unit(5, "feet"),
  48992. name: "Side",
  48993. image: {
  48994. source: "./media/characters/birch/side.svg",
  48995. extra: 985/796,
  48996. bottom: 111/1096
  48997. }
  48998. },
  48999. },
  49000. [
  49001. {
  49002. name: "Normal",
  49003. height: math.unit(5, "feet"),
  49004. default: true
  49005. },
  49006. ]
  49007. ))
  49008. characterMakers.push(() => makeCharacter(
  49009. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49010. {
  49011. front: {
  49012. height: math.unit(4, "feet"),
  49013. name: "Front",
  49014. image: {
  49015. source: "./media/characters/rasp/front.svg",
  49016. extra: 561/478,
  49017. bottom: 74/635
  49018. }
  49019. },
  49020. },
  49021. [
  49022. {
  49023. name: "Normal",
  49024. height: math.unit(4, "feet"),
  49025. default: true
  49026. },
  49027. ]
  49028. ))
  49029. characterMakers.push(() => makeCharacter(
  49030. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49031. {
  49032. front: {
  49033. height: math.unit(4 + 6/12, "feet"),
  49034. name: "Front",
  49035. image: {
  49036. source: "./media/characters/agatha/front.svg",
  49037. extra: 947/933,
  49038. bottom: 42/989
  49039. }
  49040. },
  49041. back: {
  49042. height: math.unit(4 + 6/12, "feet"),
  49043. name: "Back",
  49044. image: {
  49045. source: "./media/characters/agatha/back.svg",
  49046. extra: 935/922,
  49047. bottom: 48/983
  49048. }
  49049. },
  49050. },
  49051. [
  49052. {
  49053. name: "Normal",
  49054. height: math.unit(4 + 6 /12, "feet"),
  49055. default: true
  49056. },
  49057. {
  49058. name: "Max Size",
  49059. height: math.unit(500, "feet")
  49060. },
  49061. ]
  49062. ))
  49063. characterMakers.push(() => makeCharacter(
  49064. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49065. {
  49066. side: {
  49067. height: math.unit(30, "feet"),
  49068. name: "Side",
  49069. image: {
  49070. source: "./media/characters/roggy/side.svg",
  49071. extra: 909/643,
  49072. bottom: 63/972
  49073. }
  49074. },
  49075. lounging: {
  49076. height: math.unit(20, "feet"),
  49077. name: "Lounging",
  49078. image: {
  49079. source: "./media/characters/roggy/lounging.svg",
  49080. extra: 643/479,
  49081. bottom: 145/788
  49082. }
  49083. },
  49084. handpaw: {
  49085. height: math.unit(13.1, "feet"),
  49086. name: "Handpaw",
  49087. image: {
  49088. source: "./media/characters/roggy/handpaw.svg"
  49089. }
  49090. },
  49091. footpaw: {
  49092. height: math.unit(15.8, "feet"),
  49093. name: "Footpaw",
  49094. image: {
  49095. source: "./media/characters/roggy/footpaw.svg"
  49096. }
  49097. },
  49098. },
  49099. [
  49100. {
  49101. name: "Menacing",
  49102. height: math.unit(30, "feet"),
  49103. default: true
  49104. },
  49105. ]
  49106. ))
  49107. characterMakers.push(() => makeCharacter(
  49108. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49109. {
  49110. front: {
  49111. height: math.unit(5 + 7/12, "feet"),
  49112. weight: math.unit(135, "lb"),
  49113. name: "Front",
  49114. image: {
  49115. source: "./media/characters/naomi/front.svg",
  49116. extra: 1209/1154,
  49117. bottom: 129/1338
  49118. }
  49119. },
  49120. back: {
  49121. height: math.unit(5 + 7/12, "feet"),
  49122. weight: math.unit(135, "lb"),
  49123. name: "Back",
  49124. image: {
  49125. source: "./media/characters/naomi/back.svg",
  49126. extra: 1252/1190,
  49127. bottom: 23/1275
  49128. }
  49129. },
  49130. },
  49131. [
  49132. {
  49133. name: "Normal",
  49134. height: math.unit(5 + 7 /12, "feet"),
  49135. default: true
  49136. },
  49137. ]
  49138. ))
  49139. characterMakers.push(() => makeCharacter(
  49140. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49141. {
  49142. side: {
  49143. height: math.unit(35, "meters"),
  49144. name: "Side",
  49145. image: {
  49146. source: "./media/characters/kimpi/side.svg",
  49147. extra: 419/382,
  49148. bottom: 63/482
  49149. }
  49150. },
  49151. hand: {
  49152. height: math.unit(8.96, "meters"),
  49153. name: "Hand",
  49154. image: {
  49155. source: "./media/characters/kimpi/hand.svg"
  49156. }
  49157. },
  49158. },
  49159. [
  49160. {
  49161. name: "Normal",
  49162. height: math.unit(35, "meters"),
  49163. default: true
  49164. },
  49165. ]
  49166. ))
  49167. characterMakers.push(() => makeCharacter(
  49168. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49169. {
  49170. front: {
  49171. height: math.unit(4 + 4/12, "feet"),
  49172. name: "Front",
  49173. image: {
  49174. source: "./media/characters/pepper-purrloin/front.svg",
  49175. extra: 1141/1024,
  49176. bottom: 21/1162
  49177. }
  49178. },
  49179. },
  49180. [
  49181. {
  49182. name: "Normal",
  49183. height: math.unit(4 + 4/12, "feet"),
  49184. default: true
  49185. },
  49186. ]
  49187. ))
  49188. characterMakers.push(() => makeCharacter(
  49189. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49190. {
  49191. front: {
  49192. height: math.unit(6 + 2/12, "feet"),
  49193. name: "Front",
  49194. image: {
  49195. source: "./media/characters/raphael/front.svg",
  49196. extra: 1101/962,
  49197. bottom: 59/1160
  49198. }
  49199. },
  49200. },
  49201. [
  49202. {
  49203. name: "Normal",
  49204. height: math.unit(6 + 2/12, "feet"),
  49205. default: true
  49206. },
  49207. ]
  49208. ))
  49209. characterMakers.push(() => makeCharacter(
  49210. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49211. {
  49212. front: {
  49213. height: math.unit(6, "feet"),
  49214. weight: math.unit(150, "lb"),
  49215. name: "Front",
  49216. image: {
  49217. source: "./media/characters/victor-williams/front.svg",
  49218. extra: 1894/1825,
  49219. bottom: 67/1961
  49220. }
  49221. },
  49222. },
  49223. [
  49224. {
  49225. name: "Normal",
  49226. height: math.unit(6, "feet"),
  49227. default: true
  49228. },
  49229. ]
  49230. ))
  49231. characterMakers.push(() => makeCharacter(
  49232. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49233. {
  49234. front: {
  49235. height: math.unit(5 + 8/12, "feet"),
  49236. weight: math.unit(150, "lb"),
  49237. name: "Front",
  49238. image: {
  49239. source: "./media/characters/rachel/front.svg",
  49240. extra: 1902/1787,
  49241. bottom: 46/1948
  49242. }
  49243. },
  49244. },
  49245. [
  49246. {
  49247. name: "Base Height",
  49248. height: math.unit(5 + 8/12, "feet"),
  49249. default: true
  49250. },
  49251. {
  49252. name: "Macro",
  49253. height: math.unit(200, "feet")
  49254. },
  49255. {
  49256. name: "Mega Macro",
  49257. height: math.unit(1, "mile")
  49258. },
  49259. {
  49260. name: "Giga Macro",
  49261. height: math.unit(1500, "miles")
  49262. },
  49263. {
  49264. name: "Tera Macro",
  49265. height: math.unit(8000, "miles")
  49266. },
  49267. {
  49268. name: "Tera Macro+",
  49269. height: math.unit(2e5, "miles")
  49270. },
  49271. ]
  49272. ))
  49273. characterMakers.push(() => makeCharacter(
  49274. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49275. {
  49276. front: {
  49277. height: math.unit(6.5, "feet"),
  49278. name: "Front",
  49279. image: {
  49280. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49281. extra: 860/819,
  49282. bottom: 307/1167
  49283. }
  49284. },
  49285. back: {
  49286. height: math.unit(6.5, "feet"),
  49287. name: "Back",
  49288. image: {
  49289. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49290. extra: 880/837,
  49291. bottom: 395/1275
  49292. }
  49293. },
  49294. sleeping: {
  49295. height: math.unit(2.79, "feet"),
  49296. name: "Sleeping",
  49297. image: {
  49298. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49299. extra: 465/383,
  49300. bottom: 263/728
  49301. }
  49302. },
  49303. maw: {
  49304. height: math.unit(2.52, "feet"),
  49305. name: "Maw",
  49306. image: {
  49307. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49308. }
  49309. },
  49310. },
  49311. [
  49312. {
  49313. name: "Normal",
  49314. height: math.unit(6.5, "feet"),
  49315. default: true
  49316. },
  49317. ]
  49318. ))
  49319. characterMakers.push(() => makeCharacter(
  49320. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49321. {
  49322. front: {
  49323. height: math.unit(5, "feet"),
  49324. name: "Front",
  49325. image: {
  49326. source: "./media/characters/nova-nerium/front.svg",
  49327. extra: 1548/1392,
  49328. bottom: 374/1922
  49329. }
  49330. },
  49331. back: {
  49332. height: math.unit(5, "feet"),
  49333. name: "Back",
  49334. image: {
  49335. source: "./media/characters/nova-nerium/back.svg",
  49336. extra: 1658/1468,
  49337. bottom: 257/1915
  49338. }
  49339. },
  49340. },
  49341. [
  49342. {
  49343. name: "Normal",
  49344. height: math.unit(5, "feet"),
  49345. default: true
  49346. },
  49347. ]
  49348. ))
  49349. characterMakers.push(() => makeCharacter(
  49350. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49351. {
  49352. front: {
  49353. height: math.unit(5 + 4/12, "feet"),
  49354. name: "Front",
  49355. image: {
  49356. source: "./media/characters/ashe-pyriph/front.svg",
  49357. extra: 1935/1747,
  49358. bottom: 60/1995
  49359. }
  49360. },
  49361. },
  49362. [
  49363. {
  49364. name: "Normal",
  49365. height: math.unit(5 + 4/12, "feet"),
  49366. default: true
  49367. },
  49368. ]
  49369. ))
  49370. characterMakers.push(() => makeCharacter(
  49371. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49372. {
  49373. front: {
  49374. height: math.unit(8.7, "feet"),
  49375. name: "Front",
  49376. image: {
  49377. source: "./media/characters/flicker-wisp/front.svg",
  49378. extra: 1835/1613,
  49379. bottom: 449/2284
  49380. }
  49381. },
  49382. side: {
  49383. height: math.unit(8.7, "feet"),
  49384. name: "Side",
  49385. image: {
  49386. source: "./media/characters/flicker-wisp/side.svg",
  49387. extra: 1841/1642,
  49388. bottom: 336/2177
  49389. },
  49390. default: true
  49391. },
  49392. maw: {
  49393. height: math.unit(3.35, "feet"),
  49394. name: "Maw",
  49395. image: {
  49396. source: "./media/characters/flicker-wisp/maw.svg",
  49397. extra: 2338/1506,
  49398. bottom: 0/2338
  49399. }
  49400. },
  49401. ovipositor: {
  49402. height: math.unit(4.95, "feet"),
  49403. name: "Ovipositor",
  49404. image: {
  49405. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49406. }
  49407. },
  49408. egg: {
  49409. height: math.unit(0.385, "feet"),
  49410. weight: math.unit(2, "lb"),
  49411. name: "Egg",
  49412. image: {
  49413. source: "./media/characters/flicker-wisp/egg.svg"
  49414. }
  49415. },
  49416. },
  49417. [
  49418. {
  49419. name: "Normal",
  49420. height: math.unit(8.7, "feet"),
  49421. default: true
  49422. },
  49423. ]
  49424. ))
  49425. characterMakers.push(() => makeCharacter(
  49426. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49427. {
  49428. side: {
  49429. height: math.unit(11, "feet"),
  49430. name: "Side",
  49431. image: {
  49432. source: "./media/characters/faefnul/side.svg",
  49433. extra: 1100/1007,
  49434. bottom: 0/1100
  49435. }
  49436. },
  49437. },
  49438. [
  49439. {
  49440. name: "Normal",
  49441. height: math.unit(11, "feet"),
  49442. default: true
  49443. },
  49444. ]
  49445. ))
  49446. characterMakers.push(() => makeCharacter(
  49447. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49448. {
  49449. front: {
  49450. height: math.unit(6 + 2/12, "feet"),
  49451. name: "Front",
  49452. image: {
  49453. source: "./media/characters/shady/front.svg",
  49454. extra: 502/461,
  49455. bottom: 9/511
  49456. }
  49457. },
  49458. kneeling: {
  49459. height: math.unit(4.6, "feet"),
  49460. name: "Kneeling",
  49461. image: {
  49462. source: "./media/characters/shady/kneeling.svg",
  49463. extra: 1328/1219,
  49464. bottom: 117/1445
  49465. }
  49466. },
  49467. maw: {
  49468. height: math.unit(2, "feet"),
  49469. name: "Maw",
  49470. image: {
  49471. source: "./media/characters/shady/maw.svg"
  49472. }
  49473. },
  49474. },
  49475. [
  49476. {
  49477. name: "Nano",
  49478. height: math.unit(1, "mm")
  49479. },
  49480. {
  49481. name: "Micro",
  49482. height: math.unit(12, "mm")
  49483. },
  49484. {
  49485. name: "Tiny",
  49486. height: math.unit(3, "inches")
  49487. },
  49488. {
  49489. name: "Normal",
  49490. height: math.unit(6 + 2/12, "feet"),
  49491. default: true
  49492. },
  49493. {
  49494. name: "Big",
  49495. height: math.unit(15, "feet")
  49496. },
  49497. {
  49498. name: "Macro",
  49499. height: math.unit(150, "feet")
  49500. },
  49501. {
  49502. name: "Titanic",
  49503. height: math.unit(500, "feet")
  49504. },
  49505. ]
  49506. ))
  49507. characterMakers.push(() => makeCharacter(
  49508. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49509. {
  49510. front: {
  49511. height: math.unit(12, "feet"),
  49512. name: "Front",
  49513. image: {
  49514. source: "./media/characters/fenrir/front.svg",
  49515. extra: 968/875,
  49516. bottom: 22/990
  49517. }
  49518. },
  49519. },
  49520. [
  49521. {
  49522. name: "Big",
  49523. height: math.unit(12, "feet"),
  49524. default: true
  49525. },
  49526. ]
  49527. ))
  49528. characterMakers.push(() => makeCharacter(
  49529. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49530. {
  49531. front: {
  49532. height: math.unit(5 + 4/12, "feet"),
  49533. name: "Front",
  49534. image: {
  49535. source: "./media/characters/makar/front.svg",
  49536. extra: 1181/1112,
  49537. bottom: 78/1259
  49538. }
  49539. },
  49540. },
  49541. [
  49542. {
  49543. name: "Normal",
  49544. height: math.unit(5 + 4/12, "feet"),
  49545. default: true
  49546. },
  49547. ]
  49548. ))
  49549. characterMakers.push(() => makeCharacter(
  49550. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49551. {
  49552. front: {
  49553. height: math.unit(5 + 7/12, "feet"),
  49554. name: "Front",
  49555. image: {
  49556. source: "./media/characters/callow/front.svg",
  49557. extra: 1482/1304,
  49558. bottom: 23/1505
  49559. }
  49560. },
  49561. back: {
  49562. height: math.unit(5 + 7/12, "feet"),
  49563. name: "Back",
  49564. image: {
  49565. source: "./media/characters/callow/back.svg",
  49566. extra: 1484/1296,
  49567. bottom: 25/1509
  49568. }
  49569. },
  49570. },
  49571. [
  49572. {
  49573. name: "Micro",
  49574. height: math.unit(3, "inches"),
  49575. default: true
  49576. },
  49577. {
  49578. name: "Normal",
  49579. height: math.unit(5 + 7/12, "feet")
  49580. },
  49581. ]
  49582. ))
  49583. characterMakers.push(() => makeCharacter(
  49584. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49585. {
  49586. front: {
  49587. height: math.unit(6 + 2/12, "feet"),
  49588. name: "Front",
  49589. image: {
  49590. source: "./media/characters/natel/front.svg",
  49591. extra: 1833/1692,
  49592. bottom: 166/1999
  49593. }
  49594. },
  49595. },
  49596. [
  49597. {
  49598. name: "Normal",
  49599. height: math.unit(6 + 2/12, "feet"),
  49600. default: true
  49601. },
  49602. ]
  49603. ))
  49604. characterMakers.push(() => makeCharacter(
  49605. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49606. {
  49607. front: {
  49608. height: math.unit(1.75, "meters"),
  49609. name: "Front",
  49610. image: {
  49611. source: "./media/characters/misu/front.svg",
  49612. extra: 1690/1558,
  49613. bottom: 234/1924
  49614. }
  49615. },
  49616. back: {
  49617. height: math.unit(1.75, "meters"),
  49618. name: "Back",
  49619. image: {
  49620. source: "./media/characters/misu/back.svg",
  49621. extra: 1762/1618,
  49622. bottom: 146/1908
  49623. }
  49624. },
  49625. frontNude: {
  49626. height: math.unit(1.75, "meters"),
  49627. name: "Front (Nude)",
  49628. image: {
  49629. source: "./media/characters/misu/front-nude.svg",
  49630. extra: 1690/1558,
  49631. bottom: 234/1924
  49632. }
  49633. },
  49634. backNude: {
  49635. height: math.unit(1.75, "meters"),
  49636. name: "Back (Nude)",
  49637. image: {
  49638. source: "./media/characters/misu/back-nude.svg",
  49639. extra: 1762/1618,
  49640. bottom: 146/1908
  49641. }
  49642. },
  49643. frontErect: {
  49644. height: math.unit(1.75, "meters"),
  49645. name: "Front (Erect)",
  49646. image: {
  49647. source: "./media/characters/misu/front-erect.svg",
  49648. extra: 1690/1558,
  49649. bottom: 234/1924
  49650. }
  49651. },
  49652. maw: {
  49653. height: math.unit(0.47, "meters"),
  49654. name: "Maw",
  49655. image: {
  49656. source: "./media/characters/misu/maw.svg"
  49657. }
  49658. },
  49659. head: {
  49660. height: math.unit(0.35, "meters"),
  49661. name: "Head",
  49662. image: {
  49663. source: "./media/characters/misu/head.svg"
  49664. }
  49665. },
  49666. rear: {
  49667. height: math.unit(0.47, "meters"),
  49668. name: "Rear",
  49669. image: {
  49670. source: "./media/characters/misu/rear.svg"
  49671. }
  49672. },
  49673. },
  49674. [
  49675. {
  49676. name: "Normal",
  49677. height: math.unit(1.75, "meters")
  49678. },
  49679. {
  49680. name: "Not good for the people",
  49681. height: math.unit(42, "meters")
  49682. },
  49683. {
  49684. name: "Not good for the neighborhood",
  49685. height: math.unit(135, "meters")
  49686. },
  49687. {
  49688. name: "Bit bigger problem",
  49689. height: math.unit(380, "meters"),
  49690. default: true
  49691. },
  49692. {
  49693. name: "Not good for the city",
  49694. height: math.unit(1.5, "km")
  49695. },
  49696. {
  49697. name: "Not good for the county",
  49698. height: math.unit(5.5, "km")
  49699. },
  49700. {
  49701. name: "Not good for the state",
  49702. height: math.unit(25, "km")
  49703. },
  49704. {
  49705. name: "Not good for the country",
  49706. height: math.unit(125, "km")
  49707. },
  49708. {
  49709. name: "Not good for the continent",
  49710. height: math.unit(2100, "km")
  49711. },
  49712. {
  49713. name: "Not good for the planet",
  49714. height: math.unit(35000, "km")
  49715. },
  49716. {
  49717. name: "Just no",
  49718. height: math.unit(8.5e18, "km")
  49719. },
  49720. ]
  49721. ))
  49722. characterMakers.push(() => makeCharacter(
  49723. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49724. {
  49725. front: {
  49726. height: math.unit(6.5, "feet"),
  49727. name: "Front",
  49728. image: {
  49729. source: "./media/characters/poppy/front.svg",
  49730. extra: 1878/1812,
  49731. bottom: 43/1921
  49732. }
  49733. },
  49734. feet: {
  49735. height: math.unit(1.06, "feet"),
  49736. name: "Feet",
  49737. image: {
  49738. source: "./media/characters/poppy/feet.svg",
  49739. extra: 1083/1083,
  49740. bottom: 87/1170
  49741. }
  49742. },
  49743. },
  49744. [
  49745. {
  49746. name: "Human",
  49747. height: math.unit(6.5, "feet")
  49748. },
  49749. {
  49750. name: "Default",
  49751. height: math.unit(300, "feet"),
  49752. default: true
  49753. },
  49754. {
  49755. name: "Huge",
  49756. height: math.unit(850, "feet")
  49757. },
  49758. {
  49759. name: "Mega",
  49760. height: math.unit(8000, "feet")
  49761. },
  49762. {
  49763. name: "Giga",
  49764. height: math.unit(300, "miles")
  49765. },
  49766. ]
  49767. ))
  49768. characterMakers.push(() => makeCharacter(
  49769. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49770. {
  49771. bipedal: {
  49772. height: math.unit(7, "feet"),
  49773. name: "Bipedal",
  49774. image: {
  49775. source: "./media/characters/zener/bipedal.svg",
  49776. extra: 874/805,
  49777. bottom: 109/983
  49778. }
  49779. },
  49780. quadrupedal: {
  49781. height: math.unit(4.64, "feet"),
  49782. name: "Quadrupedal",
  49783. image: {
  49784. source: "./media/characters/zener/quadrupedal.svg",
  49785. extra: 638/507,
  49786. bottom: 190/828
  49787. }
  49788. },
  49789. cock: {
  49790. height: math.unit(18, "inches"),
  49791. name: "Cock",
  49792. image: {
  49793. source: "./media/characters/zener/cock.svg"
  49794. }
  49795. },
  49796. },
  49797. [
  49798. {
  49799. name: "Normal",
  49800. height: math.unit(7, "feet"),
  49801. default: true
  49802. },
  49803. ]
  49804. ))
  49805. characterMakers.push(() => makeCharacter(
  49806. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49807. {
  49808. nude: {
  49809. height: math.unit(5 + 6/12, "feet"),
  49810. name: "Nude",
  49811. image: {
  49812. source: "./media/characters/charlie-dog/nude.svg",
  49813. extra: 768/734,
  49814. bottom: 26/794
  49815. }
  49816. },
  49817. dressed: {
  49818. height: math.unit(5 + 6/12, "feet"),
  49819. name: "Dressed",
  49820. image: {
  49821. source: "./media/characters/charlie-dog/dressed.svg",
  49822. extra: 768/734,
  49823. bottom: 26/794
  49824. }
  49825. },
  49826. },
  49827. [
  49828. {
  49829. name: "Normal",
  49830. height: math.unit(5 + 6/12, "feet"),
  49831. default: true
  49832. },
  49833. ]
  49834. ))
  49835. characterMakers.push(() => makeCharacter(
  49836. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49837. {
  49838. front: {
  49839. height: math.unit(6 + 4/12, "feet"),
  49840. name: "Front",
  49841. image: {
  49842. source: "./media/characters/ir'istrasz/front.svg",
  49843. extra: 1014/977,
  49844. bottom: 65/1079
  49845. }
  49846. },
  49847. back: {
  49848. height: math.unit(6 + 4/12, "feet"),
  49849. name: "Back",
  49850. image: {
  49851. source: "./media/characters/ir'istrasz/back.svg",
  49852. extra: 1024/992,
  49853. bottom: 34/1058
  49854. }
  49855. },
  49856. },
  49857. [
  49858. {
  49859. name: "Normal",
  49860. height: math.unit(6 + 4/12, "feet"),
  49861. default: true
  49862. },
  49863. ]
  49864. ))
  49865. characterMakers.push(() => makeCharacter(
  49866. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49867. {
  49868. front: {
  49869. height: math.unit(5 + 8/12, "feet"),
  49870. name: "Front",
  49871. image: {
  49872. source: "./media/characters/dee-ditto/front.svg",
  49873. extra: 1874/1785,
  49874. bottom: 68/1942
  49875. }
  49876. },
  49877. back: {
  49878. height: math.unit(5 + 8/12, "feet"),
  49879. name: "Back",
  49880. image: {
  49881. source: "./media/characters/dee-ditto/back.svg",
  49882. extra: 1870/1783,
  49883. bottom: 77/1947
  49884. }
  49885. },
  49886. },
  49887. [
  49888. {
  49889. name: "Normal",
  49890. height: math.unit(5 + 8/12, "feet"),
  49891. default: true
  49892. },
  49893. ]
  49894. ))
  49895. characterMakers.push(() => makeCharacter(
  49896. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49897. {
  49898. front: {
  49899. height: math.unit(7 + 6/12, "feet"),
  49900. name: "Front",
  49901. image: {
  49902. source: "./media/characters/fey/front.svg",
  49903. extra: 995/979,
  49904. bottom: 30/1025
  49905. }
  49906. },
  49907. back: {
  49908. height: math.unit(7 + 6/12, "feet"),
  49909. name: "Back",
  49910. image: {
  49911. source: "./media/characters/fey/back.svg",
  49912. extra: 1079/1008,
  49913. bottom: 5/1084
  49914. }
  49915. },
  49916. dressed: {
  49917. height: math.unit(7 + 6/12, "feet"),
  49918. name: "Dressed",
  49919. image: {
  49920. source: "./media/characters/fey/dressed.svg",
  49921. extra: 995/979,
  49922. bottom: 30/1025
  49923. }
  49924. },
  49925. },
  49926. [
  49927. {
  49928. name: "Normal",
  49929. height: math.unit(7 + 6/12, "feet"),
  49930. default: true
  49931. },
  49932. ]
  49933. ))
  49934. characterMakers.push(() => makeCharacter(
  49935. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49936. {
  49937. standing: {
  49938. height: math.unit(17, "feet"),
  49939. name: "Standing",
  49940. image: {
  49941. source: "./media/characters/aster/standing.svg",
  49942. extra: 1798/1598,
  49943. bottom: 117/1915
  49944. }
  49945. },
  49946. },
  49947. [
  49948. {
  49949. name: "Normal",
  49950. height: math.unit(17, "feet"),
  49951. default: true
  49952. },
  49953. {
  49954. name: "Homewrecker",
  49955. height: math.unit(95, "feet")
  49956. },
  49957. {
  49958. name: "Planet Devourer",
  49959. height: math.unit(1008000, "miles")
  49960. },
  49961. ]
  49962. ))
  49963. characterMakers.push(() => makeCharacter(
  49964. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49965. {
  49966. front: {
  49967. height: math.unit(6 + 5/12, "feet"),
  49968. weight: math.unit(265, "lb"),
  49969. name: "Front",
  49970. image: {
  49971. source: "./media/characters/devon-childs/front.svg",
  49972. extra: 1795/1721,
  49973. bottom: 41/1836
  49974. }
  49975. },
  49976. side: {
  49977. height: math.unit(6 + 5/12, "feet"),
  49978. weight: math.unit(265, "lb"),
  49979. name: "Side",
  49980. image: {
  49981. source: "./media/characters/devon-childs/side.svg",
  49982. extra: 1812/1738,
  49983. bottom: 30/1842
  49984. }
  49985. },
  49986. back: {
  49987. height: math.unit(6 + 5/12, "feet"),
  49988. weight: math.unit(265, "lb"),
  49989. name: "Back",
  49990. image: {
  49991. source: "./media/characters/devon-childs/back.svg",
  49992. extra: 1808/1735,
  49993. bottom: 23/1831
  49994. }
  49995. },
  49996. hand: {
  49997. height: math.unit(1.464, "feet"),
  49998. name: "Hand",
  49999. image: {
  50000. source: "./media/characters/devon-childs/hand.svg"
  50001. }
  50002. },
  50003. foot: {
  50004. height: math.unit(1.6, "feet"),
  50005. name: "Foot",
  50006. image: {
  50007. source: "./media/characters/devon-childs/foot.svg"
  50008. }
  50009. },
  50010. },
  50011. [
  50012. {
  50013. name: "Micro",
  50014. height: math.unit(7, "cm")
  50015. },
  50016. {
  50017. name: "Normal",
  50018. height: math.unit(6 + 5/12, "feet"),
  50019. default: true
  50020. },
  50021. {
  50022. name: "Macro",
  50023. height: math.unit(154, "feet")
  50024. },
  50025. ]
  50026. ))
  50027. characterMakers.push(() => makeCharacter(
  50028. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50029. {
  50030. front: {
  50031. height: math.unit(6, "feet"),
  50032. weight: math.unit(180, "lb"),
  50033. name: "Front",
  50034. image: {
  50035. source: "./media/characters/lydemox-vir/front.svg",
  50036. extra: 1632/1435,
  50037. bottom: 58/1690
  50038. }
  50039. },
  50040. frontSFW: {
  50041. height: math.unit(6, "feet"),
  50042. weight: math.unit(180, "lb"),
  50043. name: "Front (SFW)",
  50044. image: {
  50045. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50046. extra: 1632/1435,
  50047. bottom: 58/1690
  50048. }
  50049. },
  50050. back: {
  50051. height: math.unit(6, "feet"),
  50052. weight: math.unit(180, "lb"),
  50053. name: "Back",
  50054. image: {
  50055. source: "./media/characters/lydemox-vir/back.svg",
  50056. extra: 1593/1408,
  50057. bottom: 31/1624
  50058. }
  50059. },
  50060. paw: {
  50061. height: math.unit(1.85, "feet"),
  50062. name: "Paw",
  50063. image: {
  50064. source: "./media/characters/lydemox-vir/paw.svg"
  50065. }
  50066. },
  50067. dick: {
  50068. height: math.unit(1.8, "feet"),
  50069. name: "Dick",
  50070. image: {
  50071. source: "./media/characters/lydemox-vir/dick.svg"
  50072. }
  50073. },
  50074. },
  50075. [
  50076. {
  50077. name: "Macro",
  50078. height: math.unit(100, "feet"),
  50079. default: true
  50080. },
  50081. {
  50082. name: "Teramacro",
  50083. height: math.unit(1, "earth")
  50084. },
  50085. {
  50086. name: "Planetary",
  50087. height: math.unit(20, "earths")
  50088. },
  50089. ]
  50090. ))
  50091. characterMakers.push(() => makeCharacter(
  50092. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50093. {
  50094. front: {
  50095. height: math.unit(15 + 8/12, "feet"),
  50096. weight: math.unit(1237, "kg"),
  50097. name: "Front",
  50098. image: {
  50099. source: "./media/characters/mia/front.svg",
  50100. extra: 1573/1446,
  50101. bottom: 58/1631
  50102. }
  50103. },
  50104. },
  50105. [
  50106. {
  50107. name: "Small",
  50108. height: math.unit(9 + 5/12, "feet")
  50109. },
  50110. {
  50111. name: "Normal",
  50112. height: math.unit(15 + 8/12, "feet"),
  50113. default: true
  50114. },
  50115. ]
  50116. ))
  50117. characterMakers.push(() => makeCharacter(
  50118. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50119. {
  50120. front: {
  50121. height: math.unit(10 + 6/12, "feet"),
  50122. weight: math.unit(1.3, "tons"),
  50123. name: "Front",
  50124. image: {
  50125. source: "./media/characters/mr-graves/front.svg",
  50126. extra: 1779/1695,
  50127. bottom: 198/1977
  50128. }
  50129. },
  50130. },
  50131. [
  50132. {
  50133. name: "Normal",
  50134. height: math.unit(10 + 6 /12, "feet"),
  50135. default: true
  50136. },
  50137. ]
  50138. ))
  50139. characterMakers.push(() => makeCharacter(
  50140. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50141. {
  50142. dressedFront: {
  50143. height: math.unit(5 + 8/12, "feet"),
  50144. weight: math.unit(125, "lb"),
  50145. name: "Dressed (Front)",
  50146. image: {
  50147. source: "./media/characters/jess/dressed-front.svg",
  50148. extra: 1176/1152,
  50149. bottom: 42/1218
  50150. }
  50151. },
  50152. dressedSide: {
  50153. height: math.unit(5 + 8/12, "feet"),
  50154. weight: math.unit(125, "lb"),
  50155. name: "Dressed (Side)",
  50156. image: {
  50157. source: "./media/characters/jess/dressed-side.svg",
  50158. extra: 1204/1190,
  50159. bottom: 6/1210
  50160. }
  50161. },
  50162. nudeFront: {
  50163. height: math.unit(5 + 8/12, "feet"),
  50164. weight: math.unit(125, "lb"),
  50165. name: "Nude (Front)",
  50166. image: {
  50167. source: "./media/characters/jess/nude-front.svg",
  50168. extra: 1176/1152,
  50169. bottom: 42/1218
  50170. }
  50171. },
  50172. nudeSide: {
  50173. height: math.unit(5 + 8/12, "feet"),
  50174. weight: math.unit(125, "lb"),
  50175. name: "Nude (Side)",
  50176. image: {
  50177. source: "./media/characters/jess/nude-side.svg",
  50178. extra: 1204/1190,
  50179. bottom: 6/1210
  50180. }
  50181. },
  50182. organsFront: {
  50183. height: math.unit(2.83799342105, "feet"),
  50184. name: "Organs (Front)",
  50185. image: {
  50186. source: "./media/characters/jess/organs-front.svg"
  50187. }
  50188. },
  50189. organsSide: {
  50190. height: math.unit(2.64225290474, "feet"),
  50191. name: "Organs (Side)",
  50192. image: {
  50193. source: "./media/characters/jess/organs-side.svg"
  50194. }
  50195. },
  50196. digestiveTractFront: {
  50197. height: math.unit(2.8106580871, "feet"),
  50198. name: "Digestive Tract (Front)",
  50199. image: {
  50200. source: "./media/characters/jess/digestive-tract-front.svg"
  50201. }
  50202. },
  50203. digestiveTractSide: {
  50204. height: math.unit(2.54365045014, "feet"),
  50205. name: "Digestive Tract (Side)",
  50206. image: {
  50207. source: "./media/characters/jess/digestive-tract-side.svg"
  50208. }
  50209. },
  50210. respiratorySystemFront: {
  50211. height: math.unit(1.11196233456, "feet"),
  50212. name: "Respiratory System (Front)",
  50213. image: {
  50214. source: "./media/characters/jess/respiratory-system-front.svg"
  50215. }
  50216. },
  50217. respiratorySystemSide: {
  50218. height: math.unit(0.89327966297, "feet"),
  50219. name: "Respiratory System (Side)",
  50220. image: {
  50221. source: "./media/characters/jess/respiratory-system-side.svg"
  50222. }
  50223. },
  50224. urinaryTractFront: {
  50225. height: math.unit(1.16126356186, "feet"),
  50226. name: "Urinary Tract (Front)",
  50227. image: {
  50228. source: "./media/characters/jess/urinary-tract-front.svg"
  50229. }
  50230. },
  50231. urinaryTractSide: {
  50232. height: math.unit(1.20910039627, "feet"),
  50233. name: "Urinary Tract (Side)",
  50234. image: {
  50235. source: "./media/characters/jess/urinary-tract-side.svg"
  50236. }
  50237. },
  50238. reproductiveOrgansFront: {
  50239. height: math.unit(0.48422591566, "feet"),
  50240. name: "Reproductive Organs (Front)",
  50241. image: {
  50242. source: "./media/characters/jess/reproductive-organs-front.svg"
  50243. }
  50244. },
  50245. reproductiveOrgansSide: {
  50246. height: math.unit(0.61553314481, "feet"),
  50247. name: "Reproductive Organs (Side)",
  50248. image: {
  50249. source: "./media/characters/jess/reproductive-organs-side.svg"
  50250. }
  50251. },
  50252. breastsFront: {
  50253. height: math.unit(0.47690395121, "feet"),
  50254. name: "Breasts (Front)",
  50255. image: {
  50256. source: "./media/characters/jess/breasts-front.svg"
  50257. }
  50258. },
  50259. breastsSide: {
  50260. height: math.unit(0.30556998307, "feet"),
  50261. name: "Breasts (Side)",
  50262. image: {
  50263. source: "./media/characters/jess/breasts-side.svg"
  50264. }
  50265. },
  50266. heartFront: {
  50267. height: math.unit(0.53011022622, "feet"),
  50268. name: "Heart (Front)",
  50269. image: {
  50270. source: "./media/characters/jess/heart-front.svg"
  50271. }
  50272. },
  50273. heartSide: {
  50274. height: math.unit(0.51790695213, "feet"),
  50275. name: "Heart (Side)",
  50276. image: {
  50277. source: "./media/characters/jess/heart-side.svg"
  50278. }
  50279. },
  50280. earsAndNoseFront: {
  50281. height: math.unit(0.29385483995, "feet"),
  50282. name: "Ears and Nose (Front)",
  50283. image: {
  50284. source: "./media/characters/jess/ears-and-nose-front.svg"
  50285. }
  50286. },
  50287. earsAndNoseSide: {
  50288. height: math.unit(0.18109658741, "feet"),
  50289. name: "Ears and Nose (Side)",
  50290. image: {
  50291. source: "./media/characters/jess/ears-and-nose-side.svg"
  50292. }
  50293. },
  50294. },
  50295. [
  50296. {
  50297. name: "Normal",
  50298. height: math.unit(5 + 8/12, "feet"),
  50299. default: true
  50300. },
  50301. ]
  50302. ))
  50303. characterMakers.push(() => makeCharacter(
  50304. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50305. {
  50306. front: {
  50307. height: math.unit(6, "feet"),
  50308. weight: math.unit(6.64467e-7, "grams"),
  50309. name: "Front",
  50310. image: {
  50311. source: "./media/characters/wimpering/front.svg",
  50312. extra: 597/587,
  50313. bottom: 34/631
  50314. }
  50315. },
  50316. },
  50317. [
  50318. {
  50319. name: "Micro",
  50320. height: math.unit(0.4, "mm"),
  50321. default: true
  50322. },
  50323. ]
  50324. ))
  50325. characterMakers.push(() => makeCharacter(
  50326. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50327. {
  50328. front: {
  50329. height: math.unit(5 + 2/12, "feet"),
  50330. weight: math.unit(110, "lb"),
  50331. name: "Front",
  50332. image: {
  50333. source: "./media/characters/keltre/front.svg",
  50334. extra: 1099/1057,
  50335. bottom: 22/1121
  50336. }
  50337. },
  50338. back: {
  50339. height: math.unit(5 + 2/12, "feet"),
  50340. weight: math.unit(110, "lb"),
  50341. name: "Back",
  50342. image: {
  50343. source: "./media/characters/keltre/back.svg",
  50344. extra: 1095/1053,
  50345. bottom: 17/1112
  50346. }
  50347. },
  50348. dressed: {
  50349. height: math.unit(5 + 2/12, "feet"),
  50350. weight: math.unit(110, "lb"),
  50351. name: "Dressed",
  50352. image: {
  50353. source: "./media/characters/keltre/dressed.svg",
  50354. extra: 1099/1057,
  50355. bottom: 22/1121
  50356. }
  50357. },
  50358. winter: {
  50359. height: math.unit(5 + 2/12, "feet"),
  50360. weight: math.unit(110, "lb"),
  50361. name: "Winter",
  50362. image: {
  50363. source: "./media/characters/keltre/winter.svg",
  50364. extra: 1099/1057,
  50365. bottom: 22/1121
  50366. }
  50367. },
  50368. head: {
  50369. height: math.unit(1.61 * 0.86, "feet"),
  50370. name: "Head",
  50371. image: {
  50372. source: "./media/characters/keltre/head.svg",
  50373. extra: 534/421,
  50374. bottom: 0/534
  50375. }
  50376. },
  50377. hand: {
  50378. height: math.unit(1.3 * 0.86, "feet"),
  50379. name: "Hand",
  50380. image: {
  50381. source: "./media/characters/keltre/hand.svg"
  50382. }
  50383. },
  50384. foot: {
  50385. height: math.unit(1.8 * 0.86, "feet"),
  50386. name: "Foot",
  50387. image: {
  50388. source: "./media/characters/keltre/foot.svg"
  50389. }
  50390. },
  50391. },
  50392. [
  50393. {
  50394. name: "Fine",
  50395. height: math.unit(1, "inch")
  50396. },
  50397. {
  50398. name: "Dimnutive",
  50399. height: math.unit(4, "inches")
  50400. },
  50401. {
  50402. name: "Tiny",
  50403. height: math.unit(1, "foot")
  50404. },
  50405. {
  50406. name: "Small",
  50407. height: math.unit(3, "feet")
  50408. },
  50409. {
  50410. name: "Normal",
  50411. height: math.unit(5 + 2/12, "feet"),
  50412. default: true
  50413. },
  50414. ]
  50415. ))
  50416. characterMakers.push(() => makeCharacter(
  50417. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50418. {
  50419. front: {
  50420. height: math.unit(6 + 2/12, "feet"),
  50421. name: "Front",
  50422. image: {
  50423. source: "./media/characters/nox/front.svg",
  50424. extra: 1917/1830,
  50425. bottom: 74/1991
  50426. }
  50427. },
  50428. back: {
  50429. height: math.unit(6 + 2/12, "feet"),
  50430. name: "Back",
  50431. image: {
  50432. source: "./media/characters/nox/back.svg",
  50433. extra: 1896/1815,
  50434. bottom: 21/1917
  50435. }
  50436. },
  50437. head: {
  50438. height: math.unit(1.1, "feet"),
  50439. name: "Head",
  50440. image: {
  50441. source: "./media/characters/nox/head.svg",
  50442. extra: 874/704,
  50443. bottom: 0/874
  50444. }
  50445. },
  50446. tattoo: {
  50447. height: math.unit(0.729, "feet"),
  50448. name: "Tattoo",
  50449. image: {
  50450. source: "./media/characters/nox/tattoo.svg"
  50451. }
  50452. },
  50453. },
  50454. [
  50455. {
  50456. name: "Normal",
  50457. height: math.unit(6 + 2/12, "feet")
  50458. },
  50459. {
  50460. name: "Gigamacro",
  50461. height: math.unit(2, "earths"),
  50462. default: true
  50463. },
  50464. {
  50465. name: "Cosmic",
  50466. height: math.unit(867, "yottameters")
  50467. },
  50468. ]
  50469. ))
  50470. characterMakers.push(() => makeCharacter(
  50471. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50472. {
  50473. front: {
  50474. height: math.unit(6, "feet"),
  50475. weight: math.unit(150, "lb"),
  50476. name: "Front",
  50477. image: {
  50478. source: "./media/characters/caspian/front.svg",
  50479. extra: 1443/1359,
  50480. bottom: 0/1443
  50481. }
  50482. },
  50483. back: {
  50484. height: math.unit(6, "feet"),
  50485. weight: math.unit(150, "lb"),
  50486. name: "Back",
  50487. image: {
  50488. source: "./media/characters/caspian/back.svg",
  50489. extra: 1379/1309,
  50490. bottom: 0/1379
  50491. }
  50492. },
  50493. head: {
  50494. height: math.unit(0.9, "feet"),
  50495. name: "Head",
  50496. image: {
  50497. source: "./media/characters/caspian/head.svg",
  50498. extra: 692/492,
  50499. bottom: 0/692
  50500. }
  50501. },
  50502. headAlt: {
  50503. height: math.unit(0.95, "feet"),
  50504. name: "Head (Alt)",
  50505. image: {
  50506. source: "./media/characters/caspian/head-alt.svg",
  50507. extra: 668/508,
  50508. bottom: 0/668
  50509. }
  50510. },
  50511. hand: {
  50512. height: math.unit(0.8, "feet"),
  50513. name: "Hand",
  50514. image: {
  50515. source: "./media/characters/caspian/hand.svg"
  50516. }
  50517. },
  50518. paw: {
  50519. height: math.unit(0.95, "feet"),
  50520. name: "Paw",
  50521. image: {
  50522. source: "./media/characters/caspian/paw.svg"
  50523. }
  50524. },
  50525. },
  50526. [
  50527. {
  50528. name: "Normal",
  50529. height: math.unit(162, "feet"),
  50530. default: true
  50531. },
  50532. ]
  50533. ))
  50534. characterMakers.push(() => makeCharacter(
  50535. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50536. {
  50537. front: {
  50538. height: math.unit(6, "feet"),
  50539. name: "Front",
  50540. image: {
  50541. source: "./media/characters/myra-aisling/front.svg",
  50542. extra: 1268/1166,
  50543. bottom: 73/1341
  50544. }
  50545. },
  50546. back: {
  50547. height: math.unit(6, "feet"),
  50548. name: "Back",
  50549. image: {
  50550. source: "./media/characters/myra-aisling/back.svg",
  50551. extra: 1249/1149,
  50552. bottom: 79/1328
  50553. }
  50554. },
  50555. dressed: {
  50556. height: math.unit(6, "feet"),
  50557. name: "Dressed",
  50558. image: {
  50559. source: "./media/characters/myra-aisling/dressed.svg",
  50560. extra: 1290/1189,
  50561. bottom: 47/1337
  50562. }
  50563. },
  50564. hand: {
  50565. height: math.unit(1.1, "feet"),
  50566. name: "Hand",
  50567. image: {
  50568. source: "./media/characters/myra-aisling/hand.svg"
  50569. }
  50570. },
  50571. paw: {
  50572. height: math.unit(1.23, "feet"),
  50573. name: "Paw",
  50574. image: {
  50575. source: "./media/characters/myra-aisling/paw.svg"
  50576. }
  50577. },
  50578. },
  50579. [
  50580. {
  50581. name: "Normal",
  50582. height: math.unit(160, "feet"),
  50583. default: true
  50584. },
  50585. ]
  50586. ))
  50587. characterMakers.push(() => makeCharacter(
  50588. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50589. {
  50590. front: {
  50591. height: math.unit(6, "feet"),
  50592. name: "Front",
  50593. image: {
  50594. source: "./media/characters/tenley-sidero/front.svg",
  50595. extra: 1365/1276,
  50596. bottom: 47/1412
  50597. }
  50598. },
  50599. back: {
  50600. height: math.unit(6, "feet"),
  50601. name: "Back",
  50602. image: {
  50603. source: "./media/characters/tenley-sidero/back.svg",
  50604. extra: 1383/1283,
  50605. bottom: 35/1418
  50606. }
  50607. },
  50608. dressed: {
  50609. height: math.unit(6, "feet"),
  50610. name: "Dressed",
  50611. image: {
  50612. source: "./media/characters/tenley-sidero/dressed.svg",
  50613. extra: 1364/1275,
  50614. bottom: 42/1406
  50615. }
  50616. },
  50617. head: {
  50618. height: math.unit(1.47, "feet"),
  50619. name: "Head",
  50620. image: {
  50621. source: "./media/characters/tenley-sidero/head.svg",
  50622. extra: 610/490,
  50623. bottom: 0/610
  50624. }
  50625. },
  50626. },
  50627. [
  50628. {
  50629. name: "Normal",
  50630. height: math.unit(154, "feet"),
  50631. default: true
  50632. },
  50633. ]
  50634. ))
  50635. characterMakers.push(() => makeCharacter(
  50636. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50637. {
  50638. front: {
  50639. height: math.unit(5, "inches"),
  50640. name: "Front",
  50641. image: {
  50642. source: "./media/characters/mallory/front.svg",
  50643. extra: 1919/1678,
  50644. bottom: 29/1948
  50645. }
  50646. },
  50647. hand: {
  50648. height: math.unit(0.73, "inches"),
  50649. name: "Hand",
  50650. image: {
  50651. source: "./media/characters/mallory/hand.svg"
  50652. }
  50653. },
  50654. paw: {
  50655. height: math.unit(0.68, "inches"),
  50656. name: "Paw",
  50657. image: {
  50658. source: "./media/characters/mallory/paw.svg"
  50659. }
  50660. },
  50661. },
  50662. [
  50663. {
  50664. name: "Small",
  50665. height: math.unit(5, "inches"),
  50666. default: true
  50667. },
  50668. ]
  50669. ))
  50670. characterMakers.push(() => makeCharacter(
  50671. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50672. {
  50673. naked: {
  50674. height: math.unit(6, "feet"),
  50675. name: "Naked",
  50676. image: {
  50677. source: "./media/characters/mab/naked.svg",
  50678. extra: 1855/1757,
  50679. bottom: 208/2063
  50680. }
  50681. },
  50682. outside: {
  50683. height: math.unit(6, "feet"),
  50684. name: "Outside",
  50685. image: {
  50686. source: "./media/characters/mab/outside.svg",
  50687. extra: 1855/1757,
  50688. bottom: 208/2063
  50689. }
  50690. },
  50691. party: {
  50692. height: math.unit(6, "feet"),
  50693. name: "Party",
  50694. image: {
  50695. source: "./media/characters/mab/party.svg",
  50696. extra: 1855/1757,
  50697. bottom: 208/2063
  50698. }
  50699. },
  50700. },
  50701. [
  50702. {
  50703. name: "Normal",
  50704. height: math.unit(165, "feet"),
  50705. default: true
  50706. },
  50707. ]
  50708. ))
  50709. characterMakers.push(() => makeCharacter(
  50710. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50711. {
  50712. feral: {
  50713. height: math.unit(12, "feet"),
  50714. weight: math.unit(20000, "lb"),
  50715. name: "Side",
  50716. image: {
  50717. source: "./media/characters/winter/feral.svg",
  50718. extra: 1286/943,
  50719. bottom: 112/1398
  50720. },
  50721. form: "feral",
  50722. default: true
  50723. },
  50724. feralNsfw: {
  50725. height: math.unit(12, "feet"),
  50726. weight: math.unit(20000, "lb"),
  50727. name: "Side (NSFW)",
  50728. image: {
  50729. source: "./media/characters/winter/feral-nsfw.svg",
  50730. extra: 1286/943,
  50731. bottom: 112/1398
  50732. },
  50733. form: "feral"
  50734. },
  50735. dick: {
  50736. height: math.unit(3.79, "feet"),
  50737. name: "Dick",
  50738. image: {
  50739. source: "./media/characters/winter/dick.svg"
  50740. },
  50741. form: "feral"
  50742. },
  50743. anthro: {
  50744. height: math.unit(12, "feet"),
  50745. weight: math.unit(10, "tons"),
  50746. name: "Anthro",
  50747. image: {
  50748. source: "./media/characters/winter/anthro.svg",
  50749. extra: 1701/1553,
  50750. bottom: 64/1765
  50751. },
  50752. form: "anthro",
  50753. default: true
  50754. },
  50755. },
  50756. [
  50757. {
  50758. name: "Big",
  50759. height: math.unit(12, "feet"),
  50760. default: true,
  50761. form: "feral"
  50762. },
  50763. {
  50764. name: "Big",
  50765. height: math.unit(12, "feet"),
  50766. default: true,
  50767. form: "anthro"
  50768. },
  50769. ],
  50770. {
  50771. "feral": {
  50772. name: "Feral",
  50773. default: true
  50774. },
  50775. "anthro": {
  50776. name: "Anthro"
  50777. }
  50778. }
  50779. ))
  50780. characterMakers.push(() => makeCharacter(
  50781. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50782. {
  50783. front: {
  50784. height: math.unit(4.1, "inches"),
  50785. name: "Front",
  50786. image: {
  50787. source: "./media/characters/alto/front.svg",
  50788. extra: 736/627,
  50789. bottom: 90/826
  50790. }
  50791. },
  50792. },
  50793. [
  50794. {
  50795. name: "Normal",
  50796. height: math.unit(4.1, "inches"),
  50797. default: true
  50798. },
  50799. ]
  50800. ))
  50801. characterMakers.push(() => makeCharacter(
  50802. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50803. {
  50804. sitting: {
  50805. height: math.unit(3, "feet"),
  50806. name: "Sitting",
  50807. image: {
  50808. source: "./media/characters/ratstrid-v/sitting.svg",
  50809. extra: 355/310,
  50810. bottom: 136/491
  50811. }
  50812. },
  50813. },
  50814. [
  50815. {
  50816. name: "Normal",
  50817. height: math.unit(3, "feet"),
  50818. default: true
  50819. },
  50820. ]
  50821. ))
  50822. characterMakers.push(() => makeCharacter(
  50823. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50824. {
  50825. back: {
  50826. height: math.unit(6, "feet"),
  50827. weight: math.unit(450, "lb"),
  50828. name: "Back",
  50829. image: {
  50830. source: "./media/characters/siz/back.svg",
  50831. extra: 1449/1274,
  50832. bottom: 13/1462
  50833. }
  50834. },
  50835. },
  50836. [
  50837. {
  50838. name: "Smallest",
  50839. height: math.unit(18 + 3/12, "feet")
  50840. },
  50841. {
  50842. name: "Modest",
  50843. height: math.unit(56 + 8/12, "feet"),
  50844. default: true
  50845. },
  50846. {
  50847. name: "Largest",
  50848. height: math.unit(3590, "feet")
  50849. },
  50850. ]
  50851. ))
  50852. characterMakers.push(() => makeCharacter(
  50853. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50854. {
  50855. front: {
  50856. height: math.unit(5 + 9/12, "feet"),
  50857. weight: math.unit(150, "lb"),
  50858. name: "Front",
  50859. image: {
  50860. source: "./media/characters/ven/front.svg",
  50861. extra: 1372/1320,
  50862. bottom: 73/1445
  50863. }
  50864. },
  50865. side: {
  50866. height: math.unit(5 + 9/12, "feet"),
  50867. weight: math.unit(1150, "lb"),
  50868. name: "Side",
  50869. image: {
  50870. source: "./media/characters/ven/side.svg",
  50871. extra: 1119/1070,
  50872. bottom: 42/1161
  50873. },
  50874. default: true
  50875. },
  50876. },
  50877. [
  50878. {
  50879. name: "Normal",
  50880. height: math.unit(5 + 9/12, "feet"),
  50881. default: true
  50882. },
  50883. ]
  50884. ))
  50885. characterMakers.push(() => makeCharacter(
  50886. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50887. {
  50888. front: {
  50889. height: math.unit(12, "feet"),
  50890. weight: math.unit(1000, "kg"),
  50891. name: "Front",
  50892. image: {
  50893. source: "./media/characters/maple/front.svg",
  50894. extra: 1193/1081,
  50895. bottom: 22/1215
  50896. }
  50897. },
  50898. },
  50899. [
  50900. {
  50901. name: "Compressed",
  50902. height: math.unit(7, "feet")
  50903. },
  50904. {
  50905. name: "Normal",
  50906. height: math.unit(12, "feet"),
  50907. default: true
  50908. },
  50909. ]
  50910. ))
  50911. characterMakers.push(() => makeCharacter(
  50912. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50913. {
  50914. front: {
  50915. height: math.unit(9, "feet"),
  50916. weight: math.unit(1500, "lb"),
  50917. name: "Front",
  50918. image: {
  50919. source: "./media/characters/nora/front.svg",
  50920. extra: 1348/1286,
  50921. bottom: 218/1566
  50922. }
  50923. },
  50924. erect: {
  50925. height: math.unit(9, "feet"),
  50926. weight: math.unit(11500, "lb"),
  50927. name: "Erect",
  50928. image: {
  50929. source: "./media/characters/nora/erect.svg",
  50930. extra: 1488/1433,
  50931. bottom: 133/1621
  50932. }
  50933. },
  50934. },
  50935. [
  50936. {
  50937. name: "Normal",
  50938. height: math.unit(9, "feet"),
  50939. default: true
  50940. },
  50941. ]
  50942. ))
  50943. characterMakers.push(() => makeCharacter(
  50944. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50945. {
  50946. front: {
  50947. height: math.unit(25, "feet"),
  50948. weight: math.unit(27500, "lb"),
  50949. name: "Front",
  50950. image: {
  50951. source: "./media/characters/north-caudin/front.svg",
  50952. extra: 1184/1082,
  50953. bottom: 23/1207
  50954. }
  50955. },
  50956. },
  50957. [
  50958. {
  50959. name: "Compressed",
  50960. height: math.unit(10, "feet")
  50961. },
  50962. {
  50963. name: "Normal",
  50964. height: math.unit(25, "feet"),
  50965. default: true
  50966. },
  50967. ]
  50968. ))
  50969. characterMakers.push(() => makeCharacter(
  50970. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50971. {
  50972. front: {
  50973. height: math.unit(9, "feet"),
  50974. weight: math.unit(1250, "lb"),
  50975. name: "Front",
  50976. image: {
  50977. source: "./media/characters/merrian/front.svg",
  50978. extra: 2393/2304,
  50979. bottom: 40/2433
  50980. }
  50981. },
  50982. },
  50983. [
  50984. {
  50985. name: "Normal",
  50986. height: math.unit(9, "feet"),
  50987. default: true
  50988. },
  50989. ]
  50990. ))
  50991. characterMakers.push(() => makeCharacter(
  50992. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50993. {
  50994. front: {
  50995. height: math.unit(9, "feet"),
  50996. weight: math.unit(1000, "lb"),
  50997. name: "Front",
  50998. image: {
  50999. source: "./media/characters/hazel/front.svg",
  51000. extra: 2351/2298,
  51001. bottom: 38/2389
  51002. }
  51003. },
  51004. },
  51005. [
  51006. {
  51007. name: "Normal",
  51008. height: math.unit(9, "feet"),
  51009. default: true
  51010. },
  51011. ]
  51012. ))
  51013. characterMakers.push(() => makeCharacter(
  51014. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51015. {
  51016. front: {
  51017. height: math.unit(13, "feet"),
  51018. weight: math.unit(3200, "lb"),
  51019. name: "Front",
  51020. image: {
  51021. source: "./media/characters/emma/front.svg",
  51022. extra: 2263/2029,
  51023. bottom: 68/2331
  51024. }
  51025. },
  51026. },
  51027. [
  51028. {
  51029. name: "Normal",
  51030. height: math.unit(13, "feet"),
  51031. default: true
  51032. },
  51033. ]
  51034. ))
  51035. characterMakers.push(() => makeCharacter(
  51036. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51037. {
  51038. front: {
  51039. height: math.unit(11 + 9/12, "feet"),
  51040. weight: math.unit(2500, "lb"),
  51041. name: "Front",
  51042. image: {
  51043. source: "./media/characters/ilumina/front.svg",
  51044. extra: 2248/2209,
  51045. bottom: 164/2412
  51046. }
  51047. },
  51048. },
  51049. [
  51050. {
  51051. name: "Normal",
  51052. height: math.unit(11 + 9/12, "feet"),
  51053. default: true
  51054. },
  51055. ]
  51056. ))
  51057. characterMakers.push(() => makeCharacter(
  51058. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51059. {
  51060. front: {
  51061. height: math.unit(8 + 10/12, "feet"),
  51062. weight: math.unit(1350, "lb"),
  51063. name: "Front",
  51064. image: {
  51065. source: "./media/characters/moonshine/front.svg",
  51066. extra: 2395/2288,
  51067. bottom: 40/2435
  51068. }
  51069. },
  51070. },
  51071. [
  51072. {
  51073. name: "Normal",
  51074. height: math.unit(8 + 10/12, "feet"),
  51075. default: true
  51076. },
  51077. ]
  51078. ))
  51079. characterMakers.push(() => makeCharacter(
  51080. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51081. {
  51082. front: {
  51083. height: math.unit(14, "feet"),
  51084. weight: math.unit(3400, "lb"),
  51085. name: "Front",
  51086. image: {
  51087. source: "./media/characters/aletia/front.svg",
  51088. extra: 1185/1052,
  51089. bottom: 21/1206
  51090. }
  51091. },
  51092. },
  51093. [
  51094. {
  51095. name: "Compressed",
  51096. height: math.unit(8, "feet")
  51097. },
  51098. {
  51099. name: "Normal",
  51100. height: math.unit(14, "feet"),
  51101. default: true
  51102. },
  51103. ]
  51104. ))
  51105. characterMakers.push(() => makeCharacter(
  51106. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51107. {
  51108. front: {
  51109. height: math.unit(17, "feet"),
  51110. weight: math.unit(6500, "lb"),
  51111. name: "Front",
  51112. image: {
  51113. source: "./media/characters/deidra/front.svg",
  51114. extra: 1201/1081,
  51115. bottom: 16/1217
  51116. }
  51117. },
  51118. },
  51119. [
  51120. {
  51121. name: "Compressed",
  51122. height: math.unit(9 + 6/12, "feet")
  51123. },
  51124. {
  51125. name: "Normal",
  51126. height: math.unit(17, "feet"),
  51127. default: true
  51128. },
  51129. ]
  51130. ))
  51131. characterMakers.push(() => makeCharacter(
  51132. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51133. {
  51134. front: {
  51135. height: math.unit(7 + 4/12, "feet"),
  51136. weight: math.unit(280, "lb"),
  51137. name: "Front",
  51138. image: {
  51139. source: "./media/characters/freki-yrmori/front.svg",
  51140. extra: 1286/1182,
  51141. bottom: 29/1315
  51142. }
  51143. },
  51144. maw: {
  51145. height: math.unit(0.9, "feet"),
  51146. name: "Maw",
  51147. image: {
  51148. source: "./media/characters/freki-yrmori/maw.svg"
  51149. }
  51150. },
  51151. },
  51152. [
  51153. {
  51154. name: "Normal",
  51155. height: math.unit(7 + 4/12, "feet"),
  51156. default: true
  51157. },
  51158. {
  51159. name: "Macro",
  51160. height: math.unit(38.5, "meters")
  51161. },
  51162. ]
  51163. ))
  51164. characterMakers.push(() => makeCharacter(
  51165. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51166. {
  51167. side: {
  51168. height: math.unit(47.2, "meters"),
  51169. weight: math.unit(10000, "tons"),
  51170. name: "Side",
  51171. image: {
  51172. source: "./media/characters/aetherios/side.svg",
  51173. extra: 2363/642,
  51174. bottom: 221/2584
  51175. }
  51176. },
  51177. top: {
  51178. height: math.unit(240, "meters"),
  51179. weight: math.unit(10000, "tons"),
  51180. name: "Top",
  51181. image: {
  51182. source: "./media/characters/aetherios/top.svg"
  51183. }
  51184. },
  51185. bottom: {
  51186. height: math.unit(240, "meters"),
  51187. weight: math.unit(10000, "tons"),
  51188. name: "Bottom",
  51189. image: {
  51190. source: "./media/characters/aetherios/bottom.svg"
  51191. }
  51192. },
  51193. head: {
  51194. height: math.unit(38.6, "meters"),
  51195. name: "Head",
  51196. image: {
  51197. source: "./media/characters/aetherios/head.svg",
  51198. extra: 1335/1112,
  51199. bottom: 0/1335
  51200. }
  51201. },
  51202. front: {
  51203. height: math.unit(29, "meters"),
  51204. name: "Front",
  51205. image: {
  51206. source: "./media/characters/aetherios/front.svg",
  51207. extra: 1266/953,
  51208. bottom: 158/1424
  51209. }
  51210. },
  51211. maw: {
  51212. height: math.unit(16.37, "meters"),
  51213. name: "Maw",
  51214. image: {
  51215. source: "./media/characters/aetherios/maw.svg",
  51216. extra: 748/637,
  51217. bottom: 0/748
  51218. },
  51219. extraAttributes: {
  51220. preyCapacity: {
  51221. name: "Capacity",
  51222. power: 3,
  51223. type: "volume",
  51224. base: math.unit(1000, "people")
  51225. },
  51226. tongueSize: {
  51227. name: "Tongue Size",
  51228. power: 2,
  51229. type: "area",
  51230. base: math.unit(21, "m^2")
  51231. }
  51232. }
  51233. },
  51234. forepaw: {
  51235. height: math.unit(18, "meters"),
  51236. name: "Forepaw",
  51237. image: {
  51238. source: "./media/characters/aetherios/forepaw.svg"
  51239. }
  51240. },
  51241. hindpaw: {
  51242. height: math.unit(23, "meters"),
  51243. name: "Hindpaw",
  51244. image: {
  51245. source: "./media/characters/aetherios/hindpaw.svg"
  51246. }
  51247. },
  51248. genitals: {
  51249. height: math.unit(42, "meters"),
  51250. name: "Genitals",
  51251. image: {
  51252. source: "./media/characters/aetherios/genitals.svg"
  51253. }
  51254. },
  51255. },
  51256. [
  51257. {
  51258. name: "Normal",
  51259. height: math.unit(47.2, "meters"),
  51260. default: true
  51261. },
  51262. {
  51263. name: "Macro",
  51264. height: math.unit(160, "meters")
  51265. },
  51266. {
  51267. name: "Mega",
  51268. height: math.unit(1.87, "km")
  51269. },
  51270. {
  51271. name: "Giga",
  51272. height: math.unit(40000, "km")
  51273. },
  51274. {
  51275. name: "Stellar",
  51276. height: math.unit(158000000, "km")
  51277. },
  51278. {
  51279. name: "Cosmic",
  51280. height: math.unit(9.46e12, "km")
  51281. },
  51282. ]
  51283. ))
  51284. characterMakers.push(() => makeCharacter(
  51285. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51286. {
  51287. front: {
  51288. height: math.unit(5 + 4/12, "feet"),
  51289. weight: math.unit(80, "lb"),
  51290. name: "Front",
  51291. image: {
  51292. source: "./media/characters/mizu-gieeg/front.svg",
  51293. extra: 850/709,
  51294. bottom: 52/902
  51295. }
  51296. },
  51297. back: {
  51298. height: math.unit(5 + 4/12, "feet"),
  51299. weight: math.unit(80, "lb"),
  51300. name: "Back",
  51301. image: {
  51302. source: "./media/characters/mizu-gieeg/back.svg",
  51303. extra: 882/745,
  51304. bottom: 25/907
  51305. }
  51306. },
  51307. },
  51308. [
  51309. {
  51310. name: "Normal",
  51311. height: math.unit(5 + 4/12, "feet"),
  51312. default: true
  51313. },
  51314. ]
  51315. ))
  51316. characterMakers.push(() => makeCharacter(
  51317. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51318. {
  51319. front: {
  51320. height: math.unit(6, "feet"),
  51321. name: "Front",
  51322. image: {
  51323. source: "./media/characters/roselle-st-papier/front.svg",
  51324. extra: 1430/1280,
  51325. bottom: 37/1467
  51326. }
  51327. },
  51328. back: {
  51329. height: math.unit(6, "feet"),
  51330. name: "Back",
  51331. image: {
  51332. source: "./media/characters/roselle-st-papier/back.svg",
  51333. extra: 1491/1296,
  51334. bottom: 23/1514
  51335. }
  51336. },
  51337. ear: {
  51338. height: math.unit(1.26, "feet"),
  51339. name: "Ear",
  51340. image: {
  51341. source: "./media/characters/roselle-st-papier/ear.svg"
  51342. }
  51343. },
  51344. },
  51345. [
  51346. {
  51347. name: "Normal",
  51348. height: math.unit(150, "feet"),
  51349. default: true
  51350. },
  51351. ]
  51352. ))
  51353. characterMakers.push(() => makeCharacter(
  51354. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51355. {
  51356. front: {
  51357. height: math.unit(1, "inches"),
  51358. name: "Front",
  51359. image: {
  51360. source: "./media/characters/valargent/front.svg",
  51361. extra: 1825/1694,
  51362. bottom: 62/1887
  51363. }
  51364. },
  51365. back: {
  51366. height: math.unit(1, "inches"),
  51367. name: "Back",
  51368. image: {
  51369. source: "./media/characters/valargent/back.svg",
  51370. extra: 1775/1682,
  51371. bottom: 88/1863
  51372. }
  51373. },
  51374. },
  51375. [
  51376. {
  51377. name: "Micro",
  51378. height: math.unit(1, "inch"),
  51379. default: true
  51380. },
  51381. ]
  51382. ))
  51383. characterMakers.push(() => makeCharacter(
  51384. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51385. {
  51386. front: {
  51387. height: math.unit(3.4, "meters"),
  51388. name: "Front",
  51389. image: {
  51390. source: "./media/characters/zarina/front.svg",
  51391. extra: 1733/1425,
  51392. bottom: 93/1826
  51393. }
  51394. },
  51395. squatting: {
  51396. height: math.unit(2.14, "meters"),
  51397. name: "Squatting",
  51398. image: {
  51399. source: "./media/characters/zarina/squatting.svg",
  51400. extra: 1073/788,
  51401. bottom: 63/1136
  51402. }
  51403. },
  51404. back: {
  51405. height: math.unit(2.14, "meters"),
  51406. name: "Back",
  51407. image: {
  51408. source: "./media/characters/zarina/back.svg",
  51409. extra: 1128/885,
  51410. bottom: 0/1128
  51411. }
  51412. },
  51413. },
  51414. [
  51415. {
  51416. name: "Normal",
  51417. height: math.unit(3.4, "meters"),
  51418. default: true
  51419. },
  51420. {
  51421. name: "Big",
  51422. height: math.unit(5, "meters")
  51423. },
  51424. {
  51425. name: "Macro",
  51426. height: math.unit(110, "meters")
  51427. },
  51428. ]
  51429. ))
  51430. characterMakers.push(() => makeCharacter(
  51431. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51432. {
  51433. front: {
  51434. height: math.unit(7, "feet"),
  51435. name: "Front",
  51436. image: {
  51437. source: "./media/characters/ventus-astro-fox/front.svg",
  51438. extra: 1792/1623,
  51439. bottom: 28/1820
  51440. }
  51441. },
  51442. back: {
  51443. height: math.unit(7, "feet"),
  51444. name: "Back",
  51445. image: {
  51446. source: "./media/characters/ventus-astro-fox/back.svg",
  51447. extra: 1789/1620,
  51448. bottom: 31/1820
  51449. }
  51450. },
  51451. outfit: {
  51452. height: math.unit(7, "feet"),
  51453. name: "Outfit",
  51454. image: {
  51455. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51456. extra: 1054/925,
  51457. bottom: 15/1069
  51458. }
  51459. },
  51460. head: {
  51461. height: math.unit(1.12, "feet"),
  51462. name: "Head",
  51463. image: {
  51464. source: "./media/characters/ventus-astro-fox/head.svg",
  51465. extra: 866/504,
  51466. bottom: 0/866
  51467. }
  51468. },
  51469. hand: {
  51470. height: math.unit(1, "feet"),
  51471. name: "Hand",
  51472. image: {
  51473. source: "./media/characters/ventus-astro-fox/hand.svg"
  51474. }
  51475. },
  51476. paw: {
  51477. height: math.unit(1.5, "feet"),
  51478. name: "Paw",
  51479. image: {
  51480. source: "./media/characters/ventus-astro-fox/paw.svg"
  51481. }
  51482. },
  51483. },
  51484. [
  51485. {
  51486. name: "Normal",
  51487. height: math.unit(7, "feet"),
  51488. default: true
  51489. },
  51490. {
  51491. name: "Macro",
  51492. height: math.unit(200, "feet")
  51493. },
  51494. {
  51495. name: "Cosmic",
  51496. height: math.unit(3, "universes")
  51497. },
  51498. ]
  51499. ))
  51500. characterMakers.push(() => makeCharacter(
  51501. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51502. {
  51503. front: {
  51504. height: math.unit(3, "meters"),
  51505. weight: math.unit(7000, "lb"),
  51506. name: "Front",
  51507. image: {
  51508. source: "./media/characters/core-t/front.svg",
  51509. extra: 5729/4941,
  51510. bottom: 1129/6858
  51511. }
  51512. },
  51513. },
  51514. [
  51515. {
  51516. name: "Big",
  51517. height: math.unit(3, "meters"),
  51518. default: true
  51519. },
  51520. ]
  51521. ))
  51522. characterMakers.push(() => makeCharacter(
  51523. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51524. {
  51525. normal: {
  51526. height: math.unit(6 + 6/12, "feet"),
  51527. weight: math.unit(275, "lb"),
  51528. name: "Front",
  51529. image: {
  51530. source: "./media/characters/cadbunny/normal.svg",
  51531. extra: 1129/947,
  51532. bottom: 93/1222
  51533. },
  51534. default: true,
  51535. form: "normal"
  51536. },
  51537. gigantamax: {
  51538. height: math.unit(26, "feet"),
  51539. weight: math.unit(16000, "lb"),
  51540. name: "Front",
  51541. image: {
  51542. source: "./media/characters/cadbunny/gigantamax.svg",
  51543. extra: 1133/944,
  51544. bottom: 90/1223
  51545. },
  51546. default: true,
  51547. form: "gigantamax"
  51548. },
  51549. },
  51550. [
  51551. {
  51552. name: "Normal",
  51553. height: math.unit(6 + 6/12, "feet"),
  51554. default: true,
  51555. form: "normal"
  51556. },
  51557. {
  51558. name: "Small",
  51559. height: math.unit(26, "feet"),
  51560. default: true,
  51561. form: "gigantamax"
  51562. },
  51563. {
  51564. name: "Large",
  51565. height: math.unit(78, "feet"),
  51566. form: "gigantamax"
  51567. },
  51568. ],
  51569. {
  51570. "normal": {
  51571. name: "Normal",
  51572. default: true
  51573. },
  51574. "gigantamax": {
  51575. name: "Gigantamax"
  51576. }
  51577. }
  51578. ))
  51579. characterMakers.push(() => makeCharacter(
  51580. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51581. {
  51582. anthroFront: {
  51583. height: math.unit(8, "feet"),
  51584. weight: math.unit(300, "lb"),
  51585. name: "Front",
  51586. image: {
  51587. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51588. extra: 1272/1176,
  51589. bottom: 53/1325
  51590. },
  51591. form: "anthro",
  51592. default: true
  51593. },
  51594. feralSide: {
  51595. height: math.unit(4, "feet"),
  51596. weight: math.unit(250, "lb"),
  51597. name: "Side",
  51598. image: {
  51599. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51600. extra: 731/621,
  51601. bottom: 0/731
  51602. },
  51603. form: "feral",
  51604. default: true
  51605. },
  51606. },
  51607. [
  51608. {
  51609. name: "Regular",
  51610. height: math.unit(8, "feet"),
  51611. form: "anthro"
  51612. },
  51613. {
  51614. name: "Macro",
  51615. height: math.unit(250, "feet"),
  51616. form: "anthro",
  51617. default: true
  51618. },
  51619. {
  51620. name: "Regular",
  51621. height: math.unit(4, "feet"),
  51622. form: "feral"
  51623. },
  51624. {
  51625. name: "Macro",
  51626. height: math.unit(125, "feet"),
  51627. form: "feral",
  51628. default: true
  51629. },
  51630. ],
  51631. {
  51632. "anthro": {
  51633. name: "Anthro",
  51634. default: true
  51635. },
  51636. "feral": {
  51637. name: "Feral",
  51638. },
  51639. }
  51640. ))
  51641. characterMakers.push(() => makeCharacter(
  51642. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51643. {
  51644. front: {
  51645. height: math.unit(11 + 10/12, "feet"),
  51646. weight: math.unit(1587, "kg"),
  51647. name: "Front",
  51648. image: {
  51649. source: "./media/characters/maple-javira-dragon/front.svg",
  51650. extra: 1136/744,
  51651. bottom: 73/1209
  51652. }
  51653. },
  51654. side: {
  51655. height: math.unit(11 + 10/12, "feet"),
  51656. weight: math.unit(1587, "kg"),
  51657. name: "Side",
  51658. image: {
  51659. source: "./media/characters/maple-javira-dragon/side.svg",
  51660. extra: 712/505,
  51661. bottom: 17/729
  51662. }
  51663. },
  51664. head: {
  51665. height: math.unit(8.05, "feet"),
  51666. name: "Head",
  51667. image: {
  51668. source: "./media/characters/maple-javira-dragon/head.svg",
  51669. extra: 1420/1344,
  51670. bottom: 0/1420
  51671. }
  51672. },
  51673. },
  51674. [
  51675. {
  51676. name: "Normal",
  51677. height: math.unit(11 + 10/12, "feet"),
  51678. default: true
  51679. },
  51680. ]
  51681. ))
  51682. characterMakers.push(() => makeCharacter(
  51683. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51684. {
  51685. front: {
  51686. height: math.unit(117, "cm"),
  51687. weight: math.unit(50, "kg"),
  51688. name: "Front",
  51689. image: {
  51690. source: "./media/characters/sonia-wyverntail/front.svg",
  51691. extra: 708/592,
  51692. bottom: 25/733
  51693. }
  51694. },
  51695. },
  51696. [
  51697. {
  51698. name: "Normal",
  51699. height: math.unit(117, "cm"),
  51700. default: true
  51701. },
  51702. ]
  51703. ))
  51704. characterMakers.push(() => makeCharacter(
  51705. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51706. {
  51707. front: {
  51708. height: math.unit(6 + 5/12, "feet"),
  51709. name: "Front",
  51710. image: {
  51711. source: "./media/characters/micah/front.svg",
  51712. extra: 1758/1546,
  51713. bottom: 214/1972
  51714. }
  51715. },
  51716. },
  51717. [
  51718. {
  51719. name: "Normal",
  51720. height: math.unit(6 + 5/12, "feet"),
  51721. default: true
  51722. },
  51723. ]
  51724. ))
  51725. characterMakers.push(() => makeCharacter(
  51726. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51727. {
  51728. front: {
  51729. height: math.unit(1.75, "meters"),
  51730. weight: math.unit(100, "kg"),
  51731. name: "Front",
  51732. image: {
  51733. source: "./media/characters/zarya/front.svg",
  51734. extra: 741/735,
  51735. bottom: 44/785
  51736. },
  51737. extraAttributes: {
  51738. "tailLength": {
  51739. name: "Tail Length",
  51740. power: 1,
  51741. type: "length",
  51742. base: math.unit(180, "cm")
  51743. },
  51744. "pawLength": {
  51745. name: "Paw Length",
  51746. power: 1,
  51747. type: "length",
  51748. base: math.unit(31, "cm")
  51749. },
  51750. }
  51751. },
  51752. side: {
  51753. height: math.unit(1.75, "meters"),
  51754. weight: math.unit(100, "kg"),
  51755. name: "Side",
  51756. image: {
  51757. source: "./media/characters/zarya/side.svg",
  51758. extra: 776/770,
  51759. bottom: 17/793
  51760. },
  51761. extraAttributes: {
  51762. "tailLength": {
  51763. name: "Tail Length",
  51764. power: 1,
  51765. type: "length",
  51766. base: math.unit(180, "cm")
  51767. },
  51768. "pawLength": {
  51769. name: "Paw Length",
  51770. power: 1,
  51771. type: "length",
  51772. base: math.unit(31, "cm")
  51773. },
  51774. }
  51775. },
  51776. back: {
  51777. height: math.unit(1.75, "meters"),
  51778. weight: math.unit(100, "kg"),
  51779. name: "Back",
  51780. image: {
  51781. source: "./media/characters/zarya/back.svg",
  51782. extra: 741/735,
  51783. bottom: 44/785
  51784. },
  51785. extraAttributes: {
  51786. "tailLength": {
  51787. name: "Tail Length",
  51788. power: 1,
  51789. type: "length",
  51790. base: math.unit(180, "cm")
  51791. },
  51792. "pawLength": {
  51793. name: "Paw Length",
  51794. power: 1,
  51795. type: "length",
  51796. base: math.unit(31, "cm")
  51797. },
  51798. }
  51799. },
  51800. frontNoTail: {
  51801. height: math.unit(1.75, "meters"),
  51802. weight: math.unit(100, "kg"),
  51803. name: "Front (No Tail)",
  51804. image: {
  51805. source: "./media/characters/zarya/front-no-tail.svg",
  51806. extra: 741/735,
  51807. bottom: 44/785
  51808. },
  51809. extraAttributes: {
  51810. "tailLength": {
  51811. name: "Tail Length",
  51812. power: 1,
  51813. type: "length",
  51814. base: math.unit(180, "cm")
  51815. },
  51816. "pawLength": {
  51817. name: "Paw Length",
  51818. power: 1,
  51819. type: "length",
  51820. base: math.unit(31, "cm")
  51821. },
  51822. }
  51823. },
  51824. dressed: {
  51825. height: math.unit(1.75, "meters"),
  51826. weight: math.unit(100, "kg"),
  51827. name: "Dressed",
  51828. image: {
  51829. source: "./media/characters/zarya/dressed.svg",
  51830. extra: 683/672,
  51831. bottom: 79/762
  51832. },
  51833. extraAttributes: {
  51834. "tailLength": {
  51835. name: "Tail Length",
  51836. power: 1,
  51837. type: "length",
  51838. base: math.unit(180, "cm")
  51839. },
  51840. "pawLength": {
  51841. name: "Paw Length",
  51842. power: 1,
  51843. type: "length",
  51844. base: math.unit(31, "cm")
  51845. },
  51846. }
  51847. },
  51848. },
  51849. [
  51850. {
  51851. name: "Micro",
  51852. height: math.unit(5, "cm")
  51853. },
  51854. {
  51855. name: "Normal",
  51856. height: math.unit(1.75, "meters"),
  51857. default: true
  51858. },
  51859. {
  51860. name: "Macro",
  51861. height: math.unit(122, "meters")
  51862. },
  51863. ]
  51864. ))
  51865. characterMakers.push(() => makeCharacter(
  51866. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51867. {
  51868. front: {
  51869. height: math.unit(7.5, "feet"),
  51870. name: "Front",
  51871. image: {
  51872. source: "./media/characters/sven-hatisson/front.svg",
  51873. extra: 917/857,
  51874. bottom: 42/959
  51875. }
  51876. },
  51877. back: {
  51878. height: math.unit(7.5, "feet"),
  51879. name: "Back",
  51880. image: {
  51881. source: "./media/characters/sven-hatisson/back.svg",
  51882. extra: 903/856,
  51883. bottom: 15/918
  51884. }
  51885. },
  51886. },
  51887. [
  51888. {
  51889. name: "Base Height",
  51890. height: math.unit(7.5, "feet")
  51891. },
  51892. {
  51893. name: "Usual Height",
  51894. height: math.unit(13.5, "feet"),
  51895. default: true
  51896. },
  51897. {
  51898. name: "Smaller Macro",
  51899. height: math.unit(85, "feet")
  51900. },
  51901. {
  51902. name: "Moderate Macro",
  51903. height: math.unit(320, "feet")
  51904. },
  51905. {
  51906. name: "Large Macro",
  51907. height: math.unit(1000, "feet")
  51908. },
  51909. {
  51910. name: "Largest Size",
  51911. height: math.unit(2, "miles")
  51912. },
  51913. ]
  51914. ))
  51915. characterMakers.push(() => makeCharacter(
  51916. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51917. {
  51918. side: {
  51919. height: math.unit(1.8, "meters"),
  51920. weight: math.unit(275, "kg"),
  51921. name: "Side",
  51922. image: {
  51923. source: "./media/characters/terra/side.svg",
  51924. extra: 1273/1147,
  51925. bottom: 0/1273
  51926. }
  51927. },
  51928. },
  51929. [
  51930. {
  51931. name: "Normal",
  51932. height: math.unit(16.2, "meters"),
  51933. default: true
  51934. },
  51935. ]
  51936. ))
  51937. characterMakers.push(() => makeCharacter(
  51938. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51939. {
  51940. borzoiFront: {
  51941. height: math.unit(6 + 9/12, "feet"),
  51942. name: "Front",
  51943. image: {
  51944. source: "./media/characters/rae/borzoi-front.svg",
  51945. extra: 1161/1098,
  51946. bottom: 31/1192
  51947. },
  51948. form: "borzoi",
  51949. default: true
  51950. },
  51951. werewolfFront: {
  51952. height: math.unit(8 + 7/12, "feet"),
  51953. name: "Front",
  51954. image: {
  51955. source: "./media/characters/rae/werewolf-front.svg",
  51956. extra: 1411/1334,
  51957. bottom: 127/1538
  51958. },
  51959. form: "werewolf",
  51960. default: true
  51961. },
  51962. },
  51963. [
  51964. {
  51965. name: "Normal",
  51966. height: math.unit(6 + 9/12, "feet"),
  51967. default: true,
  51968. form: "borzoi"
  51969. },
  51970. {
  51971. name: "Normal",
  51972. height: math.unit(8 + 7/12, "feet"),
  51973. default: true,
  51974. form: "werewolf"
  51975. },
  51976. ],
  51977. {
  51978. "borzoi": {
  51979. name: "Borzoi",
  51980. default: true
  51981. },
  51982. "werewolf": {
  51983. name: "Werewolf",
  51984. },
  51985. }
  51986. ))
  51987. characterMakers.push(() => makeCharacter(
  51988. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51989. {
  51990. front: {
  51991. height: math.unit(8 + 7/12, "feet"),
  51992. weight: math.unit(482, "lb"),
  51993. name: "Front",
  51994. image: {
  51995. source: "./media/characters/kit/front.svg",
  51996. extra: 1247/1103,
  51997. bottom: 41/1288
  51998. }
  51999. },
  52000. back: {
  52001. height: math.unit(8 + 7/12, "feet"),
  52002. weight: math.unit(482, "lb"),
  52003. name: "Back",
  52004. image: {
  52005. source: "./media/characters/kit/back.svg",
  52006. extra: 1252/1123,
  52007. bottom: 21/1273
  52008. }
  52009. },
  52010. paw: {
  52011. height: math.unit(1.46, "feet"),
  52012. name: "Paw",
  52013. image: {
  52014. source: "./media/characters/kit/paw.svg"
  52015. }
  52016. },
  52017. },
  52018. [
  52019. {
  52020. name: "Normal",
  52021. height: math.unit(2.61, "meters"),
  52022. default: true
  52023. },
  52024. {
  52025. name: "\"Tall\"",
  52026. height: math.unit(8.21, "meters")
  52027. },
  52028. {
  52029. name: "Tall",
  52030. height: math.unit(19.6, "meters")
  52031. },
  52032. {
  52033. name: "Very Tall",
  52034. height: math.unit(57.91, "meters")
  52035. },
  52036. {
  52037. name: "Semi-Macro",
  52038. height: math.unit(138.64, "meters")
  52039. },
  52040. {
  52041. name: "Macro",
  52042. height: math.unit(831.99, "meters")
  52043. },
  52044. {
  52045. name: "EX-Macro",
  52046. height: math.unit(96451121, "meters")
  52047. },
  52048. {
  52049. name: "S1-Omnipotent",
  52050. height: math.unit(4.42074e+9, "meters")
  52051. },
  52052. {
  52053. name: "S2-Omnipotent",
  52054. height: math.unit(9.42074e+17, "meters")
  52055. },
  52056. {
  52057. name: "Omnipotent",
  52058. height: math.unit(4.23112e+24, "meters")
  52059. },
  52060. {
  52061. name: "Hypergod",
  52062. height: math.unit(5.05176e+27, "meters")
  52063. },
  52064. {
  52065. name: "Hypergod-EX",
  52066. height: math.unit(9.45532e+49, "meters")
  52067. },
  52068. {
  52069. name: "Hypergod-SP",
  52070. height: math.unit(9.45532e+195, "meters")
  52071. },
  52072. ]
  52073. ))
  52074. characterMakers.push(() => makeCharacter(
  52075. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52076. {
  52077. side: {
  52078. height: math.unit(0.6, "meters"),
  52079. weight: math.unit(24, "kg"),
  52080. name: "Side",
  52081. image: {
  52082. source: "./media/characters/celeste/side.svg",
  52083. extra: 810/517,
  52084. bottom: 53/863
  52085. }
  52086. },
  52087. },
  52088. [
  52089. {
  52090. name: "Velociraptor",
  52091. height: math.unit(0.6, "meters"),
  52092. default: true
  52093. },
  52094. {
  52095. name: "Utahraptor",
  52096. height: math.unit(1.8, "meters")
  52097. },
  52098. {
  52099. name: "Gallimimus",
  52100. height: math.unit(4.0, "meters")
  52101. },
  52102. {
  52103. name: "Large",
  52104. height: math.unit(20, "meters")
  52105. },
  52106. {
  52107. name: "Planetary",
  52108. height: math.unit(50, "megameters")
  52109. },
  52110. {
  52111. name: "Stellar",
  52112. height: math.unit(1.5, "gigameters")
  52113. },
  52114. {
  52115. name: "Galactic",
  52116. height: math.unit(100, "exameters")
  52117. },
  52118. ]
  52119. ))
  52120. characterMakers.push(() => makeCharacter(
  52121. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52122. {
  52123. front: {
  52124. height: math.unit(6, "feet"),
  52125. weight: math.unit(210, "lb"),
  52126. name: "Front",
  52127. image: {
  52128. source: "./media/characters/glacia/front.svg",
  52129. extra: 958/901,
  52130. bottom: 45/1003
  52131. }
  52132. },
  52133. },
  52134. [
  52135. {
  52136. name: "Macro",
  52137. height: math.unit(1000, "meters"),
  52138. default: true
  52139. },
  52140. ]
  52141. ))
  52142. characterMakers.push(() => makeCharacter(
  52143. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52144. {
  52145. front: {
  52146. height: math.unit(4, "meters"),
  52147. name: "Front",
  52148. image: {
  52149. source: "./media/characters/giri/front.svg",
  52150. extra: 966/894,
  52151. bottom: 21/987
  52152. }
  52153. },
  52154. },
  52155. [
  52156. {
  52157. name: "Normal",
  52158. height: math.unit(4, "meters"),
  52159. default: true
  52160. },
  52161. ]
  52162. ))
  52163. characterMakers.push(() => makeCharacter(
  52164. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52165. {
  52166. back: {
  52167. height: math.unit(4, "feet"),
  52168. weight: math.unit(37, "lb"),
  52169. name: "Back",
  52170. image: {
  52171. source: "./media/characters/tin/back.svg",
  52172. extra: 845/780,
  52173. bottom: 28/873
  52174. }
  52175. },
  52176. },
  52177. [
  52178. {
  52179. name: "Normal",
  52180. height: math.unit(4, "feet"),
  52181. default: true
  52182. },
  52183. ]
  52184. ))
  52185. characterMakers.push(() => makeCharacter(
  52186. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52187. {
  52188. front: {
  52189. height: math.unit(25, "feet"),
  52190. name: "Front",
  52191. image: {
  52192. source: "./media/characters/cadenza-vivace/front.svg",
  52193. extra: 1842/1578,
  52194. bottom: 30/1872
  52195. }
  52196. },
  52197. },
  52198. [
  52199. {
  52200. name: "Macro",
  52201. height: math.unit(25, "feet"),
  52202. default: true
  52203. },
  52204. ]
  52205. ))
  52206. characterMakers.push(() => makeCharacter(
  52207. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52208. {
  52209. front: {
  52210. height: math.unit(10, "feet"),
  52211. weight: math.unit(625, "kg"),
  52212. name: "Front",
  52213. image: {
  52214. source: "./media/characters/zain/front.svg",
  52215. extra: 1682/1498,
  52216. bottom: 223/1905
  52217. }
  52218. },
  52219. back: {
  52220. height: math.unit(10, "feet"),
  52221. weight: math.unit(625, "kg"),
  52222. name: "Back",
  52223. image: {
  52224. source: "./media/characters/zain/back.svg",
  52225. extra: 1814/1657,
  52226. bottom: 152/1966
  52227. }
  52228. },
  52229. head: {
  52230. height: math.unit(10, "feet"),
  52231. weight: math.unit(625, "kg"),
  52232. name: "Head",
  52233. image: {
  52234. source: "./media/characters/zain/head.svg",
  52235. extra: 1059/762,
  52236. bottom: 0/1059
  52237. }
  52238. },
  52239. },
  52240. [
  52241. {
  52242. name: "Normal",
  52243. height: math.unit(10, "feet"),
  52244. default: true
  52245. },
  52246. ]
  52247. ))
  52248. characterMakers.push(() => makeCharacter(
  52249. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52250. {
  52251. front: {
  52252. height: math.unit(6 + 5/12, "feet"),
  52253. weight: math.unit(750, "lb"),
  52254. name: "Front",
  52255. image: {
  52256. source: "./media/characters/ruchex/front.svg",
  52257. extra: 877/820,
  52258. bottom: 17/894
  52259. },
  52260. extraAttributes: {
  52261. "width": {
  52262. name: "Width",
  52263. power: 1,
  52264. type: "length",
  52265. base: math.unit(4.757, "feet")
  52266. },
  52267. }
  52268. },
  52269. },
  52270. [
  52271. {
  52272. name: "Normal",
  52273. height: math.unit(6 + 5/12, "feet"),
  52274. default: true
  52275. },
  52276. ]
  52277. ))
  52278. characterMakers.push(() => makeCharacter(
  52279. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52280. {
  52281. dressedFront: {
  52282. height: math.unit(191, "cm"),
  52283. weight: math.unit(80, "kg"),
  52284. name: "Front",
  52285. image: {
  52286. source: "./media/characters/buster/dressed-front.svg",
  52287. extra: 1022/973,
  52288. bottom: 69/1091
  52289. }
  52290. },
  52291. dressedBack: {
  52292. height: math.unit(191, "cm"),
  52293. weight: math.unit(80, "kg"),
  52294. name: "Back",
  52295. image: {
  52296. source: "./media/characters/buster/dressed-back.svg",
  52297. extra: 1018/970,
  52298. bottom: 55/1073
  52299. }
  52300. },
  52301. nudeFront: {
  52302. height: math.unit(191, "cm"),
  52303. weight: math.unit(80, "kg"),
  52304. name: "Front (Nude)",
  52305. image: {
  52306. source: "./media/characters/buster/nude-front.svg",
  52307. extra: 1022/973,
  52308. bottom: 69/1091
  52309. }
  52310. },
  52311. nudeBack: {
  52312. height: math.unit(191, "cm"),
  52313. weight: math.unit(80, "kg"),
  52314. name: "Back (Nude)",
  52315. image: {
  52316. source: "./media/characters/buster/nude-back.svg",
  52317. extra: 1018/970,
  52318. bottom: 55/1073
  52319. }
  52320. },
  52321. dick: {
  52322. height: math.unit(2.59, "feet"),
  52323. name: "Dick",
  52324. image: {
  52325. source: "./media/characters/buster/dick.svg"
  52326. }
  52327. },
  52328. ass: {
  52329. height: math.unit(1.2, "feet"),
  52330. name: "Ass",
  52331. image: {
  52332. source: "./media/characters/buster/ass.svg"
  52333. }
  52334. },
  52335. },
  52336. [
  52337. {
  52338. name: "Normal",
  52339. height: math.unit(191, "cm"),
  52340. default: true
  52341. },
  52342. ]
  52343. ))
  52344. characterMakers.push(() => makeCharacter(
  52345. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52346. {
  52347. side: {
  52348. height: math.unit(8.1, "feet"),
  52349. weight: math.unit(3500, "lb"),
  52350. name: "Side",
  52351. image: {
  52352. source: "./media/characters/sonya/side.svg",
  52353. extra: 1730/1317,
  52354. bottom: 86/1816
  52355. }
  52356. },
  52357. },
  52358. [
  52359. {
  52360. name: "Normal",
  52361. height: math.unit(8.1, "feet"),
  52362. default: true
  52363. },
  52364. ]
  52365. ))
  52366. characterMakers.push(() => makeCharacter(
  52367. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52368. {
  52369. front: {
  52370. height: math.unit(6, "feet"),
  52371. weight: math.unit(150, "lb"),
  52372. name: "Front",
  52373. image: {
  52374. source: "./media/characters/cadence-andrysiak/front.svg",
  52375. extra: 1164/1121,
  52376. bottom: 60/1224
  52377. }
  52378. },
  52379. back: {
  52380. height: math.unit(6, "feet"),
  52381. weight: math.unit(150, "lb"),
  52382. name: "Back",
  52383. image: {
  52384. source: "./media/characters/cadence-andrysiak/back.svg",
  52385. extra: 1200/1165,
  52386. bottom: 9/1209
  52387. }
  52388. },
  52389. dressed: {
  52390. height: math.unit(6, "feet"),
  52391. weight: math.unit(150, "lb"),
  52392. name: "Dressed",
  52393. image: {
  52394. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52395. extra: 1164/1121,
  52396. bottom: 60/1224
  52397. }
  52398. },
  52399. },
  52400. [
  52401. {
  52402. name: "Micro",
  52403. height: math.unit(1, "mm")
  52404. },
  52405. {
  52406. name: "Normal",
  52407. height: math.unit(6, "feet"),
  52408. default: true
  52409. },
  52410. ]
  52411. ))
  52412. characterMakers.push(() => makeCharacter(
  52413. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52414. {
  52415. front: {
  52416. height: math.unit(60, "inches"),
  52417. weight: math.unit(16, "lb"),
  52418. preyCapacity: math.unit(80, "liters"),
  52419. name: "Front",
  52420. image: {
  52421. source: "./media/characters/penny-lynx/front.svg",
  52422. extra: 1959/1769,
  52423. bottom: 49/2008
  52424. }
  52425. },
  52426. },
  52427. [
  52428. {
  52429. name: "Nokia",
  52430. height: math.unit(2, "inches")
  52431. },
  52432. {
  52433. name: "Desktop",
  52434. height: math.unit(24, "inches")
  52435. },
  52436. {
  52437. name: "TV",
  52438. height: math.unit(60, "inches")
  52439. },
  52440. {
  52441. name: "Jumbotron",
  52442. height: math.unit(12, "feet")
  52443. },
  52444. {
  52445. name: "Billboard",
  52446. height: math.unit(48, "feet"),
  52447. default: true
  52448. },
  52449. {
  52450. name: "IMAX",
  52451. height: math.unit(96, "feet")
  52452. },
  52453. {
  52454. name: "SINGULARITY",
  52455. height: math.unit(864938, "miles")
  52456. },
  52457. ]
  52458. ))
  52459. characterMakers.push(() => makeCharacter(
  52460. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52461. {
  52462. front: {
  52463. height: math.unit(5 + 4/12, "feet"),
  52464. weight: math.unit(230, "lb"),
  52465. name: "Front",
  52466. image: {
  52467. source: "./media/characters/sukebe/front.svg",
  52468. extra: 2130/2038,
  52469. bottom: 90/2220
  52470. }
  52471. },
  52472. back: {
  52473. height: math.unit(3.48, "feet"),
  52474. weight: math.unit(230, "lb"),
  52475. name: "Back",
  52476. image: {
  52477. source: "./media/characters/sukebe/back.svg",
  52478. extra: 1670/1604,
  52479. bottom: 0/1670
  52480. }
  52481. },
  52482. },
  52483. [
  52484. {
  52485. name: "Normal",
  52486. height: math.unit(5 + 4/12, "feet"),
  52487. default: true
  52488. },
  52489. ]
  52490. ))
  52491. characterMakers.push(() => makeCharacter(
  52492. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52493. {
  52494. front: {
  52495. height: math.unit(6, "feet"),
  52496. name: "Front",
  52497. image: {
  52498. source: "./media/characters/nylla/front.svg",
  52499. extra: 1868/1699,
  52500. bottom: 97/1965
  52501. }
  52502. },
  52503. back: {
  52504. height: math.unit(6, "feet"),
  52505. name: "Back",
  52506. image: {
  52507. source: "./media/characters/nylla/back.svg",
  52508. extra: 1889/1712,
  52509. bottom: 93/1982
  52510. }
  52511. },
  52512. frontNsfw: {
  52513. height: math.unit(6, "feet"),
  52514. name: "Front (NSFW)",
  52515. image: {
  52516. source: "./media/characters/nylla/front-nsfw.svg",
  52517. extra: 1868/1699,
  52518. bottom: 97/1965
  52519. },
  52520. extraAttributes: {
  52521. "dickLength": {
  52522. name: "Dick Length",
  52523. power: 1,
  52524. type: "length",
  52525. base: math.unit(1.4, "feet")
  52526. },
  52527. "cumVolume": {
  52528. name: "Cum Volume",
  52529. power: 3,
  52530. type: "volume",
  52531. base: math.unit(100, "mL")
  52532. },
  52533. }
  52534. },
  52535. backNsfw: {
  52536. height: math.unit(6, "feet"),
  52537. name: "Back (NSFW)",
  52538. image: {
  52539. source: "./media/characters/nylla/back-nsfw.svg",
  52540. extra: 1889/1712,
  52541. bottom: 93/1982
  52542. }
  52543. },
  52544. maw: {
  52545. height: math.unit(2.10, "feet"),
  52546. name: "Maw",
  52547. image: {
  52548. source: "./media/characters/nylla/maw.svg"
  52549. }
  52550. },
  52551. paws: {
  52552. height: math.unit(2.06, "feet"),
  52553. name: "Paws",
  52554. image: {
  52555. source: "./media/characters/nylla/paws.svg"
  52556. }
  52557. },
  52558. muzzle: {
  52559. height: math.unit(0.61, "feet"),
  52560. name: "Muzzle",
  52561. image: {
  52562. source: "./media/characters/nylla/muzzle.svg"
  52563. }
  52564. },
  52565. sheath: {
  52566. height: math.unit(1.305, "feet"),
  52567. name: "Sheath",
  52568. image: {
  52569. source: "./media/characters/nylla/sheath.svg"
  52570. }
  52571. },
  52572. },
  52573. [
  52574. {
  52575. name: "Micro",
  52576. height: math.unit(7.5, "inches")
  52577. },
  52578. {
  52579. name: "Normal",
  52580. height: math.unit(7, "feet"),
  52581. default: true
  52582. },
  52583. {
  52584. name: "Macro",
  52585. height: math.unit(60, "feet")
  52586. },
  52587. {
  52588. name: "Mega",
  52589. height: math.unit(200, "feet")
  52590. },
  52591. ]
  52592. ))
  52593. characterMakers.push(() => makeCharacter(
  52594. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52595. {
  52596. front: {
  52597. height: math.unit(10, "feet"),
  52598. weight: math.unit(2300, "lb"),
  52599. name: "Front",
  52600. image: {
  52601. source: "./media/characters/hunt3r/front.svg",
  52602. extra: 1909/1742,
  52603. bottom: 46/1955
  52604. }
  52605. },
  52606. },
  52607. [
  52608. {
  52609. name: "Normal",
  52610. height: math.unit(10, "feet"),
  52611. default: true
  52612. },
  52613. ]
  52614. ))
  52615. characterMakers.push(() => makeCharacter(
  52616. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52617. {
  52618. dressed: {
  52619. height: math.unit(11, "feet"),
  52620. weight: math.unit(18500, "lb"),
  52621. preyCapacity: math.unit(9, "people"),
  52622. name: "Dressed",
  52623. image: {
  52624. source: "./media/characters/cylphis/dressed.svg",
  52625. extra: 1028/1003,
  52626. bottom: 75/1103
  52627. },
  52628. },
  52629. undressed: {
  52630. height: math.unit(11, "feet"),
  52631. weight: math.unit(18500, "lb"),
  52632. preyCapacity: math.unit(9, "people"),
  52633. name: "Undressed",
  52634. image: {
  52635. source: "./media/characters/cylphis/undressed.svg",
  52636. extra: 1028/1003,
  52637. bottom: 75/1103
  52638. }
  52639. },
  52640. full: {
  52641. height: math.unit(11, "feet"),
  52642. weight: math.unit(18500 + 150*9, "lb"),
  52643. preyCapacity: math.unit(9, "people"),
  52644. name: "Full",
  52645. image: {
  52646. source: "./media/characters/cylphis/full.svg",
  52647. extra: 1028/1003,
  52648. bottom: 75/1103
  52649. }
  52650. },
  52651. },
  52652. [
  52653. {
  52654. name: "Small",
  52655. height: math.unit(8, "feet")
  52656. },
  52657. {
  52658. name: "Normal",
  52659. height: math.unit(11, "feet"),
  52660. default: true
  52661. },
  52662. ]
  52663. ))
  52664. characterMakers.push(() => makeCharacter(
  52665. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52666. {
  52667. front: {
  52668. height: math.unit(2 + 7/12, "feet"),
  52669. name: "Front",
  52670. image: {
  52671. source: "./media/characters/orishan/front.svg",
  52672. extra: 1058/1023,
  52673. bottom: 23/1081
  52674. }
  52675. },
  52676. back: {
  52677. height: math.unit(2 + 7/12, "feet"),
  52678. name: "Back",
  52679. image: {
  52680. source: "./media/characters/orishan/back.svg",
  52681. extra: 1058/1023,
  52682. bottom: 23/1081
  52683. }
  52684. },
  52685. },
  52686. [
  52687. {
  52688. name: "Micro",
  52689. height: math.unit(2, "cm")
  52690. },
  52691. {
  52692. name: "Normal",
  52693. height: math.unit(2 + 7/12, "feet"),
  52694. default: true
  52695. },
  52696. ]
  52697. ))
  52698. characterMakers.push(() => makeCharacter(
  52699. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52700. {
  52701. front: {
  52702. height: math.unit(3, "meters"),
  52703. weight: math.unit(508, "kg"),
  52704. name: "Front",
  52705. image: {
  52706. source: "./media/characters/seranis/front.svg",
  52707. extra: 1478/1454,
  52708. bottom: 41/1519
  52709. }
  52710. },
  52711. },
  52712. [
  52713. {
  52714. name: "Normal",
  52715. height: math.unit(3, "meters"),
  52716. default: true
  52717. },
  52718. {
  52719. name: "Macro",
  52720. height: math.unit(108, "meters")
  52721. },
  52722. {
  52723. name: "Megamacro",
  52724. height: math.unit(1250, "meters")
  52725. },
  52726. ]
  52727. ))
  52728. characterMakers.push(() => makeCharacter(
  52729. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52730. {
  52731. undressed: {
  52732. height: math.unit(5 + 3/12, "feet"),
  52733. name: "Undressed",
  52734. image: {
  52735. source: "./media/characters/ankou/undressed.svg",
  52736. extra: 1301/1213,
  52737. bottom: 87/1388
  52738. }
  52739. },
  52740. dressed: {
  52741. height: math.unit(5 + 3/12, "feet"),
  52742. name: "Dressed",
  52743. image: {
  52744. source: "./media/characters/ankou/dressed.svg",
  52745. extra: 1301/1213,
  52746. bottom: 87/1388
  52747. }
  52748. },
  52749. head: {
  52750. height: math.unit(1.61, "feet"),
  52751. name: "Head",
  52752. image: {
  52753. source: "./media/characters/ankou/head.svg"
  52754. }
  52755. },
  52756. },
  52757. [
  52758. {
  52759. name: "Normal",
  52760. height: math.unit(5 + 3/12, "feet"),
  52761. default: true
  52762. },
  52763. ]
  52764. ))
  52765. characterMakers.push(() => makeCharacter(
  52766. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52767. {
  52768. side: {
  52769. height: math.unit(6 + 3/12, "feet"),
  52770. weight: math.unit(200, "kg"),
  52771. name: "Side",
  52772. image: {
  52773. source: "./media/characters/juniper-skunktaur/side.svg",
  52774. extra: 1574/1229,
  52775. bottom: 38/1612
  52776. }
  52777. },
  52778. front: {
  52779. height: math.unit(6 + 3/12, "feet"),
  52780. weight: math.unit(200, "kg"),
  52781. name: "Front",
  52782. image: {
  52783. source: "./media/characters/juniper-skunktaur/front.svg",
  52784. extra: 1337/1278,
  52785. bottom: 22/1359
  52786. }
  52787. },
  52788. back: {
  52789. height: math.unit(6 + 3/12, "feet"),
  52790. weight: math.unit(200, "kg"),
  52791. name: "Back",
  52792. image: {
  52793. source: "./media/characters/juniper-skunktaur/back.svg",
  52794. extra: 1618/1273,
  52795. bottom: 13/1631
  52796. }
  52797. },
  52798. top: {
  52799. height: math.unit(2.62, "feet"),
  52800. weight: math.unit(200, "kg"),
  52801. name: "Top",
  52802. image: {
  52803. source: "./media/characters/juniper-skunktaur/top.svg"
  52804. }
  52805. },
  52806. },
  52807. [
  52808. {
  52809. name: "Normal",
  52810. height: math.unit(6 + 3/12, "feet"),
  52811. default: true
  52812. },
  52813. ]
  52814. ))
  52815. characterMakers.push(() => makeCharacter(
  52816. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52817. {
  52818. front: {
  52819. height: math.unit(20.5, "feet"),
  52820. name: "Front",
  52821. image: {
  52822. source: "./media/characters/rei/front.svg",
  52823. extra: 1349/1195,
  52824. bottom: 31/1380
  52825. }
  52826. },
  52827. back: {
  52828. height: math.unit(20.5, "feet"),
  52829. name: "Back",
  52830. image: {
  52831. source: "./media/characters/rei/back.svg",
  52832. extra: 1358/1204,
  52833. bottom: 22/1380
  52834. }
  52835. },
  52836. pawsDigi: {
  52837. height: math.unit(3.45, "feet"),
  52838. name: "Paws (Digi)",
  52839. image: {
  52840. source: "./media/characters/rei/paws-digi.svg"
  52841. }
  52842. },
  52843. pawsPlanti: {
  52844. height: math.unit(3.45, "feet"),
  52845. name: "Paws (Planti)",
  52846. image: {
  52847. source: "./media/characters/rei/paws-planti.svg"
  52848. }
  52849. },
  52850. },
  52851. [
  52852. {
  52853. name: "Normal",
  52854. height: math.unit(20.5, "feet"),
  52855. default: true
  52856. },
  52857. ]
  52858. ))
  52859. characterMakers.push(() => makeCharacter(
  52860. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52861. {
  52862. front: {
  52863. height: math.unit(5 + 11/12, "feet"),
  52864. name: "Front",
  52865. image: {
  52866. source: "./media/characters/carina/front.svg",
  52867. extra: 1720/1449,
  52868. bottom: 14/1734
  52869. }
  52870. },
  52871. back: {
  52872. height: math.unit(5 + 11/12, "feet"),
  52873. name: "Back",
  52874. image: {
  52875. source: "./media/characters/carina/back.svg",
  52876. extra: 1493/1445,
  52877. bottom: 17/1510
  52878. }
  52879. },
  52880. paw: {
  52881. height: math.unit(0.92, "feet"),
  52882. name: "Paw",
  52883. image: {
  52884. source: "./media/characters/carina/paw.svg"
  52885. }
  52886. },
  52887. },
  52888. [
  52889. {
  52890. name: "Normal",
  52891. height: math.unit(5 + 11/12, "feet"),
  52892. default: true
  52893. },
  52894. ]
  52895. ))
  52896. characterMakers.push(() => makeCharacter(
  52897. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52898. {
  52899. normal_front: {
  52900. height: math.unit(4.88, "meters"),
  52901. name: "Front",
  52902. image: {
  52903. source: "./media/characters/maya/normal-front.svg",
  52904. extra: 1222/1145,
  52905. bottom: 57/1279
  52906. },
  52907. form: "normal",
  52908. default: true
  52909. },
  52910. monstrous_front: {
  52911. height: math.unit(10, "meters"),
  52912. name: "Front",
  52913. image: {
  52914. source: "./media/characters/maya/monstrous-front.svg",
  52915. extra: 1523/1109,
  52916. bottom: 113/1636
  52917. },
  52918. form: "monstrous",
  52919. extraAttributes: {
  52920. "swallowSize": {
  52921. name: "Tailmaw Bite Size",
  52922. power: 3,
  52923. type: "volume",
  52924. base: math.unit(43000, "liters")
  52925. },
  52926. }
  52927. },
  52928. taur_front: {
  52929. height: math.unit(10, "meters"),
  52930. name: "Front",
  52931. image: {
  52932. source: "./media/characters/maya/taur-front.svg",
  52933. extra: 743/506,
  52934. bottom: 101/844
  52935. },
  52936. form: "taur",
  52937. },
  52938. },
  52939. [
  52940. {
  52941. name: "Normal",
  52942. height: math.unit(4.88, "meters"),
  52943. default: true,
  52944. form: "normal"
  52945. },
  52946. {
  52947. name: "Macro",
  52948. height: math.unit(38.1, "meters"),
  52949. form: "normal"
  52950. },
  52951. {
  52952. name: "Macro+",
  52953. height: math.unit(152.4, "meters"),
  52954. form: "normal"
  52955. },
  52956. {
  52957. name: "Macro++",
  52958. height: math.unit(16.09, "km"),
  52959. form: "normal"
  52960. },
  52961. {
  52962. name: "Mega-macro",
  52963. height: math.unit(700, "megameters"),
  52964. form: "normal"
  52965. },
  52966. {
  52967. name: "Satiated",
  52968. height: math.unit(10, "meters"),
  52969. default: true,
  52970. form: "monstrous"
  52971. },
  52972. {
  52973. name: "Hungry",
  52974. height: math.unit(75, "meters"),
  52975. form: "monstrous"
  52976. },
  52977. {
  52978. name: "Ravenous",
  52979. height: math.unit(500, "meters"),
  52980. form: "monstrous"
  52981. },
  52982. {
  52983. name: "\"Normal\"",
  52984. height: math.unit(10, "meters"),
  52985. form: "taur"
  52986. },
  52987. {
  52988. name: "Macro",
  52989. height: math.unit(50, "meters"),
  52990. form: "taur"
  52991. },
  52992. ],
  52993. {
  52994. "normal": {
  52995. name: "Normal",
  52996. default: true
  52997. },
  52998. "monstrous": {
  52999. name: "Monstrous",
  53000. },
  53001. "taur": {
  53002. name: "Taur",
  53003. },
  53004. }
  53005. ))
  53006. characterMakers.push(() => makeCharacter(
  53007. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53008. {
  53009. front: {
  53010. height: math.unit(6 + 2/12, "feet"),
  53011. weight: math.unit(500, "lb"),
  53012. preyCapacity: math.unit(4, "people"),
  53013. name: "Front",
  53014. image: {
  53015. source: "./media/characters/yepir/front.svg"
  53016. }
  53017. },
  53018. side: {
  53019. height: math.unit(6 + 2/12, "feet"),
  53020. weight: math.unit(500, "lb"),
  53021. preyCapacity: math.unit(4, "people"),
  53022. name: "Side",
  53023. image: {
  53024. source: "./media/characters/yepir/side.svg"
  53025. }
  53026. },
  53027. paw: {
  53028. height: math.unit(1.05, "feet"),
  53029. name: "Paw",
  53030. image: {
  53031. source: "./media/characters/yepir/paw.svg"
  53032. }
  53033. },
  53034. },
  53035. [
  53036. {
  53037. name: "Normal",
  53038. height: math.unit(6 + 2/12, "feet"),
  53039. default: true
  53040. },
  53041. ]
  53042. ))
  53043. characterMakers.push(() => makeCharacter(
  53044. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53045. {
  53046. front: {
  53047. height: math.unit(5 + 4/12, "feet"),
  53048. name: "Front",
  53049. image: {
  53050. source: "./media/characters/russec/front.svg",
  53051. extra: 1926/1626,
  53052. bottom: 72/1998
  53053. }
  53054. },
  53055. back: {
  53056. height: math.unit(5 + 4/12, "feet"),
  53057. name: "Back",
  53058. image: {
  53059. source: "./media/characters/russec/back.svg",
  53060. extra: 1910/1591,
  53061. bottom: 48/1958
  53062. }
  53063. },
  53064. },
  53065. [
  53066. {
  53067. name: "Small",
  53068. height: math.unit(5 + 4/12, "feet")
  53069. },
  53070. {
  53071. name: "Normal",
  53072. height: math.unit(72, "feet"),
  53073. default: true
  53074. },
  53075. ]
  53076. ))
  53077. characterMakers.push(() => makeCharacter(
  53078. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53079. {
  53080. side: {
  53081. height: math.unit(12, "feet"),
  53082. name: "Side",
  53083. image: {
  53084. source: "./media/characters/cianus/side.svg",
  53085. extra: 808/526,
  53086. bottom: 61/869
  53087. }
  53088. },
  53089. },
  53090. [
  53091. {
  53092. name: "Normal",
  53093. height: math.unit(12, "feet"),
  53094. default: true
  53095. },
  53096. ]
  53097. ))
  53098. characterMakers.push(() => makeCharacter(
  53099. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53100. {
  53101. front: {
  53102. height: math.unit(9 + 6/12, "feet"),
  53103. weight: math.unit(300, "lb"),
  53104. name: "Front",
  53105. image: {
  53106. source: "./media/characters/ahab/front.svg",
  53107. extra: 1897/1868,
  53108. bottom: 121/2018
  53109. }
  53110. },
  53111. frontNsfw: {
  53112. height: math.unit(9 + 6/12, "feet"),
  53113. weight: math.unit(300, "lb"),
  53114. name: "Front-nsfw",
  53115. image: {
  53116. source: "./media/characters/ahab/front-nsfw.svg",
  53117. extra: 1897/1868,
  53118. bottom: 121/2018
  53119. }
  53120. },
  53121. },
  53122. [
  53123. {
  53124. name: "Normal",
  53125. height: math.unit(9 + 6/12, "feet")
  53126. },
  53127. {
  53128. name: "Macro",
  53129. height: math.unit(657, "feet"),
  53130. default: true
  53131. },
  53132. ]
  53133. ))
  53134. characterMakers.push(() => makeCharacter(
  53135. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53136. {
  53137. front: {
  53138. height: math.unit(2.69, "meters"),
  53139. weight: math.unit(132, "kg"),
  53140. name: "Front",
  53141. image: {
  53142. source: "./media/characters/aarkus/front.svg",
  53143. extra: 1400/1231,
  53144. bottom: 34/1434
  53145. }
  53146. },
  53147. back: {
  53148. height: math.unit(2.69, "meters"),
  53149. weight: math.unit(132, "kg"),
  53150. name: "Back",
  53151. image: {
  53152. source: "./media/characters/aarkus/back.svg",
  53153. extra: 1381/1218,
  53154. bottom: 30/1411
  53155. }
  53156. },
  53157. frontNsfw: {
  53158. height: math.unit(2.69, "meters"),
  53159. weight: math.unit(132, "kg"),
  53160. name: "Front (NSFW)",
  53161. image: {
  53162. source: "./media/characters/aarkus/front-nsfw.svg",
  53163. extra: 1400/1231,
  53164. bottom: 34/1434
  53165. }
  53166. },
  53167. foot: {
  53168. height: math.unit(1.45, "feet"),
  53169. name: "Foot",
  53170. image: {
  53171. source: "./media/characters/aarkus/foot.svg"
  53172. }
  53173. },
  53174. head: {
  53175. height: math.unit(2.85, "feet"),
  53176. name: "Head",
  53177. image: {
  53178. source: "./media/characters/aarkus/head.svg"
  53179. }
  53180. },
  53181. headAlt: {
  53182. height: math.unit(3.07, "feet"),
  53183. name: "Head (Alt)",
  53184. image: {
  53185. source: "./media/characters/aarkus/head-alt.svg"
  53186. }
  53187. },
  53188. mouth: {
  53189. height: math.unit(1.25, "feet"),
  53190. name: "Mouth",
  53191. image: {
  53192. source: "./media/characters/aarkus/mouth.svg"
  53193. }
  53194. },
  53195. dick: {
  53196. height: math.unit(1.77, "feet"),
  53197. name: "Dick",
  53198. image: {
  53199. source: "./media/characters/aarkus/dick.svg"
  53200. }
  53201. },
  53202. },
  53203. [
  53204. {
  53205. name: "Normal",
  53206. height: math.unit(2.69, "meters"),
  53207. default: true
  53208. },
  53209. {
  53210. name: "Macro",
  53211. height: math.unit(269, "meters")
  53212. },
  53213. {
  53214. name: "Macro+",
  53215. height: math.unit(672.5, "meters")
  53216. },
  53217. {
  53218. name: "Megamacro",
  53219. height: math.unit(2.017, "km")
  53220. },
  53221. ]
  53222. ))
  53223. characterMakers.push(() => makeCharacter(
  53224. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53225. {
  53226. front: {
  53227. height: math.unit(23.47, "cm"),
  53228. weight: math.unit(600, "grams"),
  53229. name: "Front",
  53230. image: {
  53231. source: "./media/characters/diode/front.svg",
  53232. extra: 1778/1396,
  53233. bottom: 95/1873
  53234. }
  53235. },
  53236. side: {
  53237. height: math.unit(23.47, "cm"),
  53238. weight: math.unit(600, "grams"),
  53239. name: "Side",
  53240. image: {
  53241. source: "./media/characters/diode/side.svg",
  53242. extra: 1831/1404,
  53243. bottom: 86/1917
  53244. }
  53245. },
  53246. wings: {
  53247. height: math.unit(0.683, "feet"),
  53248. name: "Wings",
  53249. image: {
  53250. source: "./media/characters/diode/wings.svg"
  53251. }
  53252. },
  53253. },
  53254. [
  53255. {
  53256. name: "Normal",
  53257. height: math.unit(23.47, "cm"),
  53258. default: true
  53259. },
  53260. ]
  53261. ))
  53262. characterMakers.push(() => makeCharacter(
  53263. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53264. {
  53265. front: {
  53266. height: math.unit(6 + 3/12, "feet"),
  53267. weight: math.unit(250, "lb"),
  53268. name: "Front",
  53269. image: {
  53270. source: "./media/characters/reika/front.svg",
  53271. extra: 1120/1078,
  53272. bottom: 86/1206
  53273. }
  53274. },
  53275. },
  53276. [
  53277. {
  53278. name: "Normal",
  53279. height: math.unit(6 + 3/12, "feet"),
  53280. default: true
  53281. },
  53282. ]
  53283. ))
  53284. characterMakers.push(() => makeCharacter(
  53285. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53286. {
  53287. front: {
  53288. height: math.unit(16 + 8/12, "feet"),
  53289. weight: math.unit(9000, "lb"),
  53290. name: "Front",
  53291. image: {
  53292. source: "./media/characters/lokuto-takama/front.svg",
  53293. extra: 1774/1632,
  53294. bottom: 147/1921
  53295. },
  53296. extraAttributes: {
  53297. "bustWidth": {
  53298. name: "Bust Width",
  53299. power: 1,
  53300. type: "length",
  53301. base: math.unit(2.4, "meters")
  53302. },
  53303. "breastWeight": {
  53304. name: "Breast Weight",
  53305. power: 3,
  53306. type: "mass",
  53307. base: math.unit(1000, "kg")
  53308. },
  53309. }
  53310. },
  53311. },
  53312. [
  53313. {
  53314. name: "Normal",
  53315. height: math.unit(16 + 8/12, "feet"),
  53316. default: true
  53317. },
  53318. ]
  53319. ))
  53320. characterMakers.push(() => makeCharacter(
  53321. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53322. {
  53323. front: {
  53324. height: math.unit(10, "cm"),
  53325. weight: math.unit(850, "grams"),
  53326. name: "Front",
  53327. image: {
  53328. source: "./media/characters/owak-bone/front.svg",
  53329. extra: 1965/1801,
  53330. bottom: 31/1996
  53331. }
  53332. },
  53333. },
  53334. [
  53335. {
  53336. name: "Normal",
  53337. height: math.unit(10, "cm"),
  53338. default: true
  53339. },
  53340. ]
  53341. ))
  53342. characterMakers.push(() => makeCharacter(
  53343. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53344. {
  53345. front: {
  53346. height: math.unit(2 + 6/12, "feet"),
  53347. weight: math.unit(9, "lb"),
  53348. name: "Front",
  53349. image: {
  53350. source: "./media/characters/muffin/front.svg",
  53351. extra: 1220/1195,
  53352. bottom: 84/1304
  53353. }
  53354. },
  53355. },
  53356. [
  53357. {
  53358. name: "Normal",
  53359. height: math.unit(2 + 6/12, "feet"),
  53360. default: true
  53361. },
  53362. ]
  53363. ))
  53364. characterMakers.push(() => makeCharacter(
  53365. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53366. {
  53367. front: {
  53368. height: math.unit(7, "feet"),
  53369. name: "Front",
  53370. image: {
  53371. source: "./media/characters/chimera/front.svg",
  53372. extra: 1752/1614,
  53373. bottom: 68/1820
  53374. }
  53375. },
  53376. },
  53377. [
  53378. {
  53379. name: "Normal",
  53380. height: math.unit(7, "feet")
  53381. },
  53382. {
  53383. name: "Gigamacro",
  53384. height: math.unit(2.9, "gigameters"),
  53385. default: true
  53386. },
  53387. {
  53388. name: "Universal",
  53389. height: math.unit(1.56e26, "yottameters")
  53390. },
  53391. ]
  53392. ))
  53393. characterMakers.push(() => makeCharacter(
  53394. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53395. {
  53396. front: {
  53397. height: math.unit(3, "feet"),
  53398. weight: math.unit(20, "lb"),
  53399. name: "Front",
  53400. image: {
  53401. source: "./media/characters/kit-fennec-fox/front.svg",
  53402. extra: 1027/932,
  53403. bottom: 16/1043
  53404. }
  53405. },
  53406. back: {
  53407. height: math.unit(3, "feet"),
  53408. weight: math.unit(20, "lb"),
  53409. name: "Back",
  53410. image: {
  53411. source: "./media/characters/kit-fennec-fox/back.svg",
  53412. extra: 1027/932,
  53413. bottom: 16/1043
  53414. }
  53415. },
  53416. },
  53417. [
  53418. {
  53419. name: "Normal",
  53420. height: math.unit(3, "feet"),
  53421. default: true
  53422. },
  53423. ]
  53424. ))
  53425. characterMakers.push(() => makeCharacter(
  53426. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53427. {
  53428. front: {
  53429. height: math.unit(167, "cm"),
  53430. name: "Front",
  53431. image: {
  53432. source: "./media/characters/blue-otter/front.svg",
  53433. extra: 1951/1920,
  53434. bottom: 31/1982
  53435. }
  53436. },
  53437. },
  53438. [
  53439. {
  53440. name: "Otter-Sized",
  53441. height: math.unit(100, "cm")
  53442. },
  53443. {
  53444. name: "Normal",
  53445. height: math.unit(167, "cm"),
  53446. default: true
  53447. },
  53448. ]
  53449. ))
  53450. characterMakers.push(() => makeCharacter(
  53451. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53452. {
  53453. front: {
  53454. height: math.unit(4 + 4/12, "feet"),
  53455. name: "Front",
  53456. image: {
  53457. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53458. extra: 1072/1067,
  53459. bottom: 117/1189
  53460. }
  53461. },
  53462. back: {
  53463. height: math.unit(4 + 4/12, "feet"),
  53464. name: "Back",
  53465. image: {
  53466. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53467. extra: 1135/1129,
  53468. bottom: 57/1192
  53469. }
  53470. },
  53471. head: {
  53472. height: math.unit(1.77, "feet"),
  53473. name: "Head",
  53474. image: {
  53475. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53476. }
  53477. },
  53478. },
  53479. [
  53480. {
  53481. name: "Normal",
  53482. height: math.unit(4 + 4/12, "feet"),
  53483. default: true
  53484. },
  53485. ]
  53486. ))
  53487. characterMakers.push(() => makeCharacter(
  53488. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53489. {
  53490. front: {
  53491. height: math.unit(2, "inches"),
  53492. name: "Front",
  53493. image: {
  53494. source: "./media/characters/carley-hartford/front.svg",
  53495. extra: 1035/988,
  53496. bottom: 23/1058
  53497. }
  53498. },
  53499. back: {
  53500. height: math.unit(2, "inches"),
  53501. name: "Back",
  53502. image: {
  53503. source: "./media/characters/carley-hartford/back.svg",
  53504. extra: 1035/988,
  53505. bottom: 23/1058
  53506. }
  53507. },
  53508. dressed: {
  53509. height: math.unit(2, "inches"),
  53510. name: "Dressed",
  53511. image: {
  53512. source: "./media/characters/carley-hartford/dressed.svg",
  53513. extra: 651/620,
  53514. bottom: 0/651
  53515. }
  53516. },
  53517. },
  53518. [
  53519. {
  53520. name: "Micro",
  53521. height: math.unit(2, "inches"),
  53522. default: true
  53523. },
  53524. {
  53525. name: "Macro",
  53526. height: math.unit(6 + 3/12, "feet")
  53527. },
  53528. ]
  53529. ))
  53530. characterMakers.push(() => makeCharacter(
  53531. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53532. {
  53533. front: {
  53534. height: math.unit(2 + 3/12, "feet"),
  53535. weight: math.unit(15 + 7/16, "lb"),
  53536. name: "Front",
  53537. image: {
  53538. source: "./media/characters/duke/front.svg",
  53539. extra: 910/815,
  53540. bottom: 30/940
  53541. }
  53542. },
  53543. },
  53544. [
  53545. {
  53546. name: "Normal",
  53547. height: math.unit(2 + 3/12, "feet"),
  53548. default: true
  53549. },
  53550. ]
  53551. ))
  53552. characterMakers.push(() => makeCharacter(
  53553. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53554. {
  53555. front: {
  53556. height: math.unit(5 + 4/12, "feet"),
  53557. weight: math.unit(156, "lb"),
  53558. name: "Front",
  53559. image: {
  53560. source: "./media/characters/dein/front.svg",
  53561. extra: 855/815,
  53562. bottom: 48/903
  53563. }
  53564. },
  53565. side: {
  53566. height: math.unit(5 + 4/12, "feet"),
  53567. weight: math.unit(156, "lb"),
  53568. name: "side",
  53569. image: {
  53570. source: "./media/characters/dein/side.svg",
  53571. extra: 846/803,
  53572. bottom: 25/871
  53573. }
  53574. },
  53575. maw: {
  53576. height: math.unit(1.45, "feet"),
  53577. name: "Maw",
  53578. image: {
  53579. source: "./media/characters/dein/maw.svg"
  53580. }
  53581. },
  53582. },
  53583. [
  53584. {
  53585. name: "Ferret Sized",
  53586. height: math.unit(2 + 5/12, "feet")
  53587. },
  53588. {
  53589. name: "Normal",
  53590. height: math.unit(5 + 4/12, "feet"),
  53591. default: true
  53592. },
  53593. ]
  53594. ))
  53595. characterMakers.push(() => makeCharacter(
  53596. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53597. {
  53598. front: {
  53599. height: math.unit(84 + 8/12, "feet"),
  53600. weight: math.unit(942180, "lb"),
  53601. name: "Front",
  53602. image: {
  53603. source: "./media/characters/daurine-arima/front.svg",
  53604. extra: 1989/1782,
  53605. bottom: 37/2026
  53606. }
  53607. },
  53608. side: {
  53609. height: math.unit(84 + 8/12, "feet"),
  53610. weight: math.unit(942180, "lb"),
  53611. name: "Side",
  53612. image: {
  53613. source: "./media/characters/daurine-arima/side.svg",
  53614. extra: 1997/1790,
  53615. bottom: 21/2018
  53616. }
  53617. },
  53618. back: {
  53619. height: math.unit(84 + 8/12, "feet"),
  53620. weight: math.unit(942180, "lb"),
  53621. name: "Back",
  53622. image: {
  53623. source: "./media/characters/daurine-arima/back.svg",
  53624. extra: 1992/1800,
  53625. bottom: 12/2004
  53626. }
  53627. },
  53628. head: {
  53629. height: math.unit(15.5, "feet"),
  53630. name: "Head",
  53631. image: {
  53632. source: "./media/characters/daurine-arima/head.svg"
  53633. }
  53634. },
  53635. headAlt: {
  53636. height: math.unit(19.19, "feet"),
  53637. name: "Head (Alt)",
  53638. image: {
  53639. source: "./media/characters/daurine-arima/head-alt.svg"
  53640. }
  53641. },
  53642. },
  53643. [
  53644. {
  53645. name: "Minimum height",
  53646. height: math.unit(8 + 10/12, "feet")
  53647. },
  53648. {
  53649. name: "Comfort height",
  53650. height: math.unit(19 + 6 /12, "feet")
  53651. },
  53652. {
  53653. name: "\"Normal\" height",
  53654. height: math.unit(28 + 10/12, "feet")
  53655. },
  53656. {
  53657. name: "Base height",
  53658. height: math.unit(84 + 8/12, "feet"),
  53659. default: true
  53660. },
  53661. {
  53662. name: "Mini-macro",
  53663. height: math.unit(2360, "feet")
  53664. },
  53665. {
  53666. name: "Macro",
  53667. height: math.unit(10, "miles")
  53668. },
  53669. {
  53670. name: "Goddess",
  53671. height: math.unit(9.99e40, "yottameters")
  53672. },
  53673. ]
  53674. ))
  53675. characterMakers.push(() => makeCharacter(
  53676. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53677. {
  53678. front: {
  53679. height: math.unit(2.3, "meters"),
  53680. name: "Front",
  53681. image: {
  53682. source: "./media/characters/cilenomon/front.svg",
  53683. extra: 1963/1778,
  53684. bottom: 54/2017
  53685. }
  53686. },
  53687. },
  53688. [
  53689. {
  53690. name: "Normal",
  53691. height: math.unit(2.3, "meters"),
  53692. default: true
  53693. },
  53694. {
  53695. name: "Big",
  53696. height: math.unit(5, "meters")
  53697. },
  53698. {
  53699. name: "Macro",
  53700. height: math.unit(30, "meters")
  53701. },
  53702. {
  53703. name: "True",
  53704. height: math.unit(1, "universe")
  53705. },
  53706. ]
  53707. ))
  53708. characterMakers.push(() => makeCharacter(
  53709. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53710. {
  53711. front: {
  53712. height: math.unit(5, "feet"),
  53713. name: "Front",
  53714. image: {
  53715. source: "./media/characters/sen-mink/front.svg",
  53716. extra: 1727/1675,
  53717. bottom: 35/1762
  53718. }
  53719. },
  53720. },
  53721. [
  53722. {
  53723. name: "Normal",
  53724. height: math.unit(5, "feet"),
  53725. default: true
  53726. },
  53727. ]
  53728. ))
  53729. characterMakers.push(() => makeCharacter(
  53730. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53731. {
  53732. front: {
  53733. height: math.unit(5.42999, "feet"),
  53734. weight: math.unit(100, "lb"),
  53735. name: "Front",
  53736. image: {
  53737. source: "./media/characters/ophois/front.svg",
  53738. extra: 1429/1286,
  53739. bottom: 60/1489
  53740. }
  53741. },
  53742. },
  53743. [
  53744. {
  53745. name: "Normal",
  53746. height: math.unit(5.42999, "feet"),
  53747. default: true
  53748. },
  53749. ]
  53750. ))
  53751. characterMakers.push(() => makeCharacter(
  53752. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53753. {
  53754. front: {
  53755. height: math.unit(2, "meters"),
  53756. name: "Front",
  53757. image: {
  53758. source: "./media/characters/riley/front.svg",
  53759. extra: 1779/1754,
  53760. bottom: 139/1918
  53761. }
  53762. },
  53763. },
  53764. [
  53765. {
  53766. name: "Normal",
  53767. height: math.unit(2, "meters"),
  53768. default: true
  53769. },
  53770. ]
  53771. ))
  53772. characterMakers.push(() => makeCharacter(
  53773. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53774. {
  53775. front: {
  53776. height: math.unit(6 + 2/12, "feet"),
  53777. weight: math.unit(195, "lb"),
  53778. preyCapacity: math.unit(6, "people"),
  53779. name: "Front",
  53780. image: {
  53781. source: "./media/characters/shuken-flash/front.svg",
  53782. extra: 1905/1739,
  53783. bottom: 65/1970
  53784. }
  53785. },
  53786. back: {
  53787. height: math.unit(6 + 2/12, "feet"),
  53788. weight: math.unit(195, "lb"),
  53789. preyCapacity: math.unit(6, "people"),
  53790. name: "Back",
  53791. image: {
  53792. source: "./media/characters/shuken-flash/back.svg",
  53793. extra: 1912/1751,
  53794. bottom: 13/1925
  53795. }
  53796. },
  53797. },
  53798. [
  53799. {
  53800. name: "Normal",
  53801. height: math.unit(6 + 2/12, "feet"),
  53802. default: true
  53803. },
  53804. ]
  53805. ))
  53806. characterMakers.push(() => makeCharacter(
  53807. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53808. {
  53809. front: {
  53810. height: math.unit(5 + 9/12, "feet"),
  53811. weight: math.unit(150, "lb"),
  53812. name: "Front",
  53813. image: {
  53814. source: "./media/characters/plat/front.svg",
  53815. extra: 1816/1703,
  53816. bottom: 43/1859
  53817. }
  53818. },
  53819. side: {
  53820. height: math.unit(5 + 9/12, "feet"),
  53821. weight: math.unit(300, "lb"),
  53822. name: "Side",
  53823. image: {
  53824. source: "./media/characters/plat/side.svg",
  53825. extra: 1824/1699,
  53826. bottom: 18/1842
  53827. }
  53828. },
  53829. },
  53830. [
  53831. {
  53832. name: "Normal",
  53833. height: math.unit(5 + 9/12, "feet"),
  53834. default: true
  53835. },
  53836. ]
  53837. ))
  53838. characterMakers.push(() => makeCharacter(
  53839. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53840. {
  53841. front: {
  53842. height: math.unit(9, "feet"),
  53843. weight: math.unit(1800, "lb"),
  53844. name: "Front",
  53845. image: {
  53846. source: "./media/characters/elaine/front.svg",
  53847. extra: 1833/1354,
  53848. bottom: 25/1858
  53849. }
  53850. },
  53851. back: {
  53852. height: math.unit(8.8, "feet"),
  53853. weight: math.unit(1800, "lb"),
  53854. name: "Back",
  53855. image: {
  53856. source: "./media/characters/elaine/back.svg",
  53857. extra: 1641/1233,
  53858. bottom: 53/1694
  53859. }
  53860. },
  53861. },
  53862. [
  53863. {
  53864. name: "Normal",
  53865. height: math.unit(9, "feet"),
  53866. default: true
  53867. },
  53868. ]
  53869. ))
  53870. characterMakers.push(() => makeCharacter(
  53871. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53872. {
  53873. front: {
  53874. height: math.unit(17 + 9/12, "feet"),
  53875. weight: math.unit(8000, "lb"),
  53876. name: "Front",
  53877. image: {
  53878. source: "./media/characters/vera-raven/front.svg",
  53879. extra: 1457/1412,
  53880. bottom: 121/1578
  53881. }
  53882. },
  53883. side: {
  53884. height: math.unit(17 + 9/12, "feet"),
  53885. weight: math.unit(8000, "lb"),
  53886. name: "Side",
  53887. image: {
  53888. source: "./media/characters/vera-raven/side.svg",
  53889. extra: 1510/1464,
  53890. bottom: 54/1564
  53891. }
  53892. },
  53893. },
  53894. [
  53895. {
  53896. name: "Normal",
  53897. height: math.unit(17 + 9/12, "feet"),
  53898. default: true
  53899. },
  53900. ]
  53901. ))
  53902. characterMakers.push(() => makeCharacter(
  53903. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53904. {
  53905. dressed: {
  53906. height: math.unit(6 + 9/12, "feet"),
  53907. name: "Dressed",
  53908. image: {
  53909. source: "./media/characters/nakisha/dressed.svg",
  53910. extra: 1909/1757,
  53911. bottom: 48/1957
  53912. }
  53913. },
  53914. nude: {
  53915. height: math.unit(6 + 9/12, "feet"),
  53916. name: "Nude",
  53917. image: {
  53918. source: "./media/characters/nakisha/nude.svg",
  53919. extra: 1917/1765,
  53920. bottom: 34/1951
  53921. }
  53922. },
  53923. },
  53924. [
  53925. {
  53926. name: "Normal",
  53927. height: math.unit(6 + 9/12, "feet"),
  53928. default: true
  53929. },
  53930. ]
  53931. ))
  53932. characterMakers.push(() => makeCharacter(
  53933. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53934. {
  53935. front: {
  53936. height: math.unit(87, "meters"),
  53937. name: "Front",
  53938. image: {
  53939. source: "./media/characters/serafin/front.svg",
  53940. extra: 1919/1776,
  53941. bottom: 65/1984
  53942. }
  53943. },
  53944. },
  53945. [
  53946. {
  53947. name: "Normal",
  53948. height: math.unit(87, "meters"),
  53949. default: true
  53950. },
  53951. ]
  53952. ))
  53953. characterMakers.push(() => makeCharacter(
  53954. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53955. {
  53956. front: {
  53957. height: math.unit(6, "feet"),
  53958. weight: math.unit(200, "lb"),
  53959. name: "Front",
  53960. image: {
  53961. source: "./media/characters/poptart/front.svg",
  53962. extra: 615/583,
  53963. bottom: 23/638
  53964. }
  53965. },
  53966. back: {
  53967. height: math.unit(6, "feet"),
  53968. weight: math.unit(200, "lb"),
  53969. name: "Back",
  53970. image: {
  53971. source: "./media/characters/poptart/back.svg",
  53972. extra: 617/584,
  53973. bottom: 22/639
  53974. }
  53975. },
  53976. frontNsfw: {
  53977. height: math.unit(6, "feet"),
  53978. weight: math.unit(200, "lb"),
  53979. name: "Front (NSFW)",
  53980. image: {
  53981. source: "./media/characters/poptart/front-nsfw.svg",
  53982. extra: 615/583,
  53983. bottom: 23/638
  53984. }
  53985. },
  53986. backNsfw: {
  53987. height: math.unit(6, "feet"),
  53988. weight: math.unit(200, "lb"),
  53989. name: "Back (NSFW)",
  53990. image: {
  53991. source: "./media/characters/poptart/back-nsfw.svg",
  53992. extra: 617/584,
  53993. bottom: 22/639
  53994. }
  53995. },
  53996. hand: {
  53997. height: math.unit(1.14, "feet"),
  53998. name: "Hand",
  53999. image: {
  54000. source: "./media/characters/poptart/hand.svg"
  54001. }
  54002. },
  54003. foot: {
  54004. height: math.unit(1.5, "feet"),
  54005. name: "Foot",
  54006. image: {
  54007. source: "./media/characters/poptart/foot.svg"
  54008. }
  54009. },
  54010. },
  54011. [
  54012. {
  54013. name: "Normal",
  54014. height: math.unit(6, "feet"),
  54015. default: true
  54016. },
  54017. {
  54018. name: "Grande",
  54019. height: math.unit(350, "feet")
  54020. },
  54021. {
  54022. name: "Massif",
  54023. height: math.unit(967, "feet")
  54024. },
  54025. ]
  54026. ))
  54027. characterMakers.push(() => makeCharacter(
  54028. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54029. {
  54030. hyenaSide: {
  54031. height: math.unit(120, "cm"),
  54032. weight: math.unit(120, "lb"),
  54033. name: "Side",
  54034. image: {
  54035. source: "./media/characters/trance/hyena-side.svg",
  54036. extra: 998/904,
  54037. bottom: 76/1074
  54038. }
  54039. },
  54040. },
  54041. [
  54042. {
  54043. name: "Normal",
  54044. height: math.unit(120, "cm"),
  54045. default: true
  54046. },
  54047. {
  54048. name: "Dire",
  54049. height: math.unit(230, "cm")
  54050. },
  54051. {
  54052. name: "Macro",
  54053. height: math.unit(37, "feet")
  54054. },
  54055. ]
  54056. ))
  54057. characterMakers.push(() => makeCharacter(
  54058. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54059. {
  54060. front: {
  54061. height: math.unit(6 + 3/12, "feet"),
  54062. name: "Front",
  54063. image: {
  54064. source: "./media/characters/michael-berretta/front.svg",
  54065. extra: 515/494,
  54066. bottom: 20/535
  54067. }
  54068. },
  54069. back: {
  54070. height: math.unit(6 + 3/12, "feet"),
  54071. name: "Back",
  54072. image: {
  54073. source: "./media/characters/michael-berretta/back.svg",
  54074. extra: 520/497,
  54075. bottom: 21/541
  54076. }
  54077. },
  54078. frontNsfw: {
  54079. height: math.unit(6 + 3/12, "feet"),
  54080. name: "Front (NSFW)",
  54081. image: {
  54082. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54083. extra: 515/494,
  54084. bottom: 20/535
  54085. }
  54086. },
  54087. dick: {
  54088. height: math.unit(1, "feet"),
  54089. name: "Dick",
  54090. image: {
  54091. source: "./media/characters/michael-berretta/dick.svg"
  54092. }
  54093. },
  54094. },
  54095. [
  54096. {
  54097. name: "Normal",
  54098. height: math.unit(6 + 3/12, "feet"),
  54099. default: true
  54100. },
  54101. {
  54102. name: "Big",
  54103. height: math.unit(12, "feet")
  54104. },
  54105. {
  54106. name: "Macro",
  54107. height: math.unit(187.5, "feet")
  54108. },
  54109. ]
  54110. ))
  54111. characterMakers.push(() => makeCharacter(
  54112. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54113. {
  54114. front: {
  54115. height: math.unit(9 + 9/12, "feet"),
  54116. weight: math.unit(1244, "lb"),
  54117. name: "Front",
  54118. image: {
  54119. source: "./media/characters/stella-edgecomb/front.svg",
  54120. extra: 1835/1706,
  54121. bottom: 49/1884
  54122. }
  54123. },
  54124. pen: {
  54125. height: math.unit(0.95, "feet"),
  54126. name: "Pen",
  54127. image: {
  54128. source: "./media/characters/stella-edgecomb/pen.svg"
  54129. }
  54130. },
  54131. },
  54132. [
  54133. {
  54134. name: "Cozy Bear",
  54135. height: math.unit(0.5, "inches")
  54136. },
  54137. {
  54138. name: "Normal",
  54139. height: math.unit(9 + 9/12, "feet"),
  54140. default: true
  54141. },
  54142. {
  54143. name: "Giga Bear",
  54144. height: math.unit(1, "mile")
  54145. },
  54146. {
  54147. name: "Great Bear",
  54148. height: math.unit(53, "miles")
  54149. },
  54150. {
  54151. name: "Goddess Bear",
  54152. height: math.unit(40000, "miles")
  54153. },
  54154. {
  54155. name: "Sun Bear",
  54156. height: math.unit(900000, "miles")
  54157. },
  54158. ]
  54159. ))
  54160. characterMakers.push(() => makeCharacter(
  54161. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54162. {
  54163. anthroFront: {
  54164. height: math.unit(556, "cm"),
  54165. weight: math.unit(2650, "kg"),
  54166. preyCapacity: math.unit(3, "people"),
  54167. name: "Front",
  54168. image: {
  54169. source: "./media/characters/ash´iika/front.svg",
  54170. extra: 710/673,
  54171. bottom: 15/725
  54172. },
  54173. form: "anthro",
  54174. default: true
  54175. },
  54176. anthroSide: {
  54177. height: math.unit(556, "cm"),
  54178. weight: math.unit(2650, "kg"),
  54179. preyCapacity: math.unit(3, "people"),
  54180. name: "Side",
  54181. image: {
  54182. source: "./media/characters/ash´iika/side.svg",
  54183. extra: 696/676,
  54184. bottom: 13/709
  54185. },
  54186. form: "anthro"
  54187. },
  54188. anthroDressed: {
  54189. height: math.unit(556, "cm"),
  54190. weight: math.unit(2650, "kg"),
  54191. preyCapacity: math.unit(3, "people"),
  54192. name: "Dressed",
  54193. image: {
  54194. source: "./media/characters/ash´iika/dressed.svg",
  54195. extra: 710/673,
  54196. bottom: 15/725
  54197. },
  54198. form: "anthro"
  54199. },
  54200. anthroHead: {
  54201. height: math.unit(3.5, "feet"),
  54202. name: "Head",
  54203. image: {
  54204. source: "./media/characters/ash´iika/head.svg",
  54205. extra: 348/291,
  54206. bottom: 45/393
  54207. },
  54208. form: "anthro"
  54209. },
  54210. feralSide: {
  54211. height: math.unit(870, "cm"),
  54212. weight: math.unit(17500, "kg"),
  54213. preyCapacity: math.unit(15, "people"),
  54214. name: "Side",
  54215. image: {
  54216. source: "./media/characters/ash´iika/feral.svg",
  54217. extra: 595/199,
  54218. bottom: 7/602
  54219. },
  54220. form: "feral",
  54221. default: true,
  54222. },
  54223. },
  54224. [
  54225. {
  54226. name: "Normal",
  54227. height: math.unit(556, "cm"),
  54228. default: true,
  54229. form: "anthro"
  54230. },
  54231. {
  54232. name: "Macro",
  54233. height: math.unit(88, "meters"),
  54234. form: "anthro"
  54235. },
  54236. {
  54237. name: "Normal",
  54238. height: math.unit(870, "cm"),
  54239. default: true,
  54240. form: "feral"
  54241. },
  54242. {
  54243. name: "Large",
  54244. height: math.unit(25, "meters"),
  54245. form: "feral"
  54246. },
  54247. ],
  54248. {
  54249. "anthro": {
  54250. name: "Anthro",
  54251. default: true
  54252. },
  54253. "feral": {
  54254. name: "Feral",
  54255. },
  54256. }
  54257. ))
  54258. characterMakers.push(() => makeCharacter(
  54259. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54260. {
  54261. front: {
  54262. height: math.unit(10, "feet"),
  54263. weight: math.unit(800, "lb"),
  54264. name: "Front",
  54265. image: {
  54266. source: "./media/characters/yen/front.svg",
  54267. extra: 443/411,
  54268. bottom: 6/449
  54269. }
  54270. },
  54271. sleeping: {
  54272. height: math.unit(10, "feet"),
  54273. weight: math.unit(800, "lb"),
  54274. name: "Sleeping",
  54275. image: {
  54276. source: "./media/characters/yen/sleeping.svg",
  54277. extra: 470/422,
  54278. bottom: 0/470
  54279. }
  54280. },
  54281. head: {
  54282. height: math.unit(2.2, "feet"),
  54283. name: "Head",
  54284. image: {
  54285. source: "./media/characters/yen/head.svg"
  54286. }
  54287. },
  54288. headAlt: {
  54289. height: math.unit(2.1, "feet"),
  54290. name: "Head (Alt)",
  54291. image: {
  54292. source: "./media/characters/yen/head-alt.svg"
  54293. }
  54294. },
  54295. },
  54296. [
  54297. {
  54298. name: "Normal",
  54299. height: math.unit(10, "feet"),
  54300. default: true
  54301. },
  54302. ]
  54303. ))
  54304. characterMakers.push(() => makeCharacter(
  54305. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54306. {
  54307. front: {
  54308. height: math.unit(12, "feet"),
  54309. name: "Front",
  54310. image: {
  54311. source: "./media/characters/citra/front.svg",
  54312. extra: 1950/1710,
  54313. bottom: 47/1997
  54314. }
  54315. },
  54316. },
  54317. [
  54318. {
  54319. name: "Normal",
  54320. height: math.unit(12, "feet"),
  54321. default: true
  54322. },
  54323. ]
  54324. ))
  54325. characterMakers.push(() => makeCharacter(
  54326. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54327. {
  54328. side: {
  54329. height: math.unit(7 + 10/12, "feet"),
  54330. name: "Side",
  54331. image: {
  54332. source: "./media/characters/sholstim/side.svg",
  54333. extra: 786/682,
  54334. bottom: 40/826
  54335. }
  54336. },
  54337. },
  54338. [
  54339. {
  54340. name: "Normal",
  54341. height: math.unit(7 + 10/12, "feet"),
  54342. default: true
  54343. },
  54344. ]
  54345. ))
  54346. characterMakers.push(() => makeCharacter(
  54347. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54348. {
  54349. front: {
  54350. height: math.unit(3.10, "meters"),
  54351. name: "Front",
  54352. image: {
  54353. source: "./media/characters/aggyn/front.svg",
  54354. extra: 1188/963,
  54355. bottom: 24/1212
  54356. }
  54357. },
  54358. },
  54359. [
  54360. {
  54361. name: "Normal",
  54362. height: math.unit(3.10, "meters"),
  54363. default: true
  54364. },
  54365. ]
  54366. ))
  54367. characterMakers.push(() => makeCharacter(
  54368. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54369. {
  54370. front: {
  54371. height: math.unit(7 + 5/12, "feet"),
  54372. weight: math.unit(687, "lb"),
  54373. name: "Front",
  54374. image: {
  54375. source: "./media/characters/alsandair-hergenroether/front.svg",
  54376. extra: 1251/1186,
  54377. bottom: 75/1326
  54378. }
  54379. },
  54380. back: {
  54381. height: math.unit(7 + 5/12, "feet"),
  54382. weight: math.unit(687, "lb"),
  54383. name: "Back",
  54384. image: {
  54385. source: "./media/characters/alsandair-hergenroether/back.svg",
  54386. extra: 1290/1229,
  54387. bottom: 17/1307
  54388. }
  54389. },
  54390. },
  54391. [
  54392. {
  54393. name: "Max Compression",
  54394. height: math.unit(7 + 5/12, "feet"),
  54395. default: true
  54396. },
  54397. {
  54398. name: "\"Normal\"",
  54399. height: math.unit(2, "universes")
  54400. },
  54401. ]
  54402. ))
  54403. characterMakers.push(() => makeCharacter(
  54404. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54405. {
  54406. front: {
  54407. height: math.unit(4 + 1/12, "feet"),
  54408. weight: math.unit(92, "lb"),
  54409. name: "Front",
  54410. image: {
  54411. source: "./media/characters/ie/front.svg",
  54412. extra: 1585/1352,
  54413. bottom: 91/1676
  54414. }
  54415. },
  54416. },
  54417. [
  54418. {
  54419. name: "Normal",
  54420. height: math.unit(4 + 1/12, "feet"),
  54421. default: true
  54422. },
  54423. ]
  54424. ))
  54425. characterMakers.push(() => makeCharacter(
  54426. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54427. {
  54428. anthro: {
  54429. height: math.unit(6, "feet"),
  54430. weight: math.unit(150, "lb"),
  54431. name: "Front",
  54432. image: {
  54433. source: "./media/characters/willow/anthro.svg",
  54434. extra: 1073/986,
  54435. bottom: 34/1107
  54436. },
  54437. form: "anthro",
  54438. default: true
  54439. },
  54440. taur: {
  54441. height: math.unit(6, "feet"),
  54442. weight: math.unit(150, "lb"),
  54443. name: "Side",
  54444. image: {
  54445. source: "./media/characters/willow/taur.svg",
  54446. extra: 647/512,
  54447. bottom: 136/783
  54448. },
  54449. form: "taur",
  54450. default: true
  54451. },
  54452. },
  54453. [
  54454. {
  54455. name: "Humanoid",
  54456. height: math.unit(2.7, "meters"),
  54457. form: "anthro"
  54458. },
  54459. {
  54460. name: "Normal",
  54461. height: math.unit(9, "meters"),
  54462. form: "anthro",
  54463. default: true
  54464. },
  54465. {
  54466. name: "Humanoid",
  54467. height: math.unit(2.1, "meters"),
  54468. form: "taur"
  54469. },
  54470. {
  54471. name: "Normal",
  54472. height: math.unit(7, "meters"),
  54473. form: "taur",
  54474. default: true
  54475. },
  54476. ],
  54477. {
  54478. "anthro": {
  54479. name: "Anthro",
  54480. default: true
  54481. },
  54482. "taur": {
  54483. name: "Taur",
  54484. },
  54485. }
  54486. ))
  54487. characterMakers.push(() => makeCharacter(
  54488. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54489. {
  54490. front: {
  54491. height: math.unit(2 + 5/12, "feet"),
  54492. name: "Front",
  54493. image: {
  54494. source: "./media/characters/kyan/front.svg",
  54495. extra: 460/334,
  54496. bottom: 23/483
  54497. },
  54498. extraAttributes: {
  54499. "toeLength": {
  54500. name: "Toe Length",
  54501. power: 1,
  54502. type: "length",
  54503. base: math.unit(7, "cm")
  54504. },
  54505. "toeclawLength": {
  54506. name: "Toeclaw Length",
  54507. power: 1,
  54508. type: "length",
  54509. base: math.unit(4.7, "cm")
  54510. },
  54511. "earHeight": {
  54512. name: "Ear Height",
  54513. power: 1,
  54514. type: "length",
  54515. base: math.unit(14.1, "cm")
  54516. },
  54517. }
  54518. },
  54519. paws: {
  54520. height: math.unit(0.45, "feet"),
  54521. name: "Paws",
  54522. image: {
  54523. source: "./media/characters/kyan/paws.svg",
  54524. extra: 581/581,
  54525. bottom: 114/695
  54526. }
  54527. },
  54528. },
  54529. [
  54530. {
  54531. name: "Normal",
  54532. height: math.unit(2 + 5/12, "feet"),
  54533. default: true
  54534. },
  54535. ]
  54536. ))
  54537. characterMakers.push(() => makeCharacter(
  54538. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54539. {
  54540. front: {
  54541. height: math.unit(2 + 2/3, "feet"),
  54542. name: "Front",
  54543. image: {
  54544. source: "./media/characters/xazzon/front.svg",
  54545. extra: 1109/984,
  54546. bottom: 42/1151
  54547. }
  54548. },
  54549. back: {
  54550. height: math.unit(2 + 2/3, "feet"),
  54551. name: "Back",
  54552. image: {
  54553. source: "./media/characters/xazzon/back.svg",
  54554. extra: 1095/971,
  54555. bottom: 23/1118
  54556. }
  54557. },
  54558. },
  54559. [
  54560. {
  54561. name: "Normal",
  54562. height: math.unit(2 + 2/3, "feet"),
  54563. default: true
  54564. },
  54565. ]
  54566. ))
  54567. characterMakers.push(() => makeCharacter(
  54568. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54569. {
  54570. dressed: {
  54571. height: math.unit(5 + 7/12, "feet"),
  54572. weight: math.unit(173, "lb"),
  54573. name: "Dressed",
  54574. image: {
  54575. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54576. extra: 3262/2862,
  54577. bottom: 188/3450
  54578. }
  54579. },
  54580. undressed: {
  54581. height: math.unit(5 + 7/12, "feet"),
  54582. weight: math.unit(173, "lb"),
  54583. name: "Undressed",
  54584. image: {
  54585. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54586. extra: 3262/2862,
  54587. bottom: 188/3450
  54588. }
  54589. },
  54590. },
  54591. [
  54592. {
  54593. name: "The void",
  54594. height: math.unit(7.29193e-34, "angstroms")
  54595. },
  54596. {
  54597. name: "Uh-Oh.",
  54598. height: math.unit(5.734e-7, "angstroms")
  54599. },
  54600. {
  54601. name: "Pico",
  54602. height: math.unit(0.876, "angstroms")
  54603. },
  54604. {
  54605. name: "Nano",
  54606. height: math.unit(0.000134200, "mm")
  54607. },
  54608. {
  54609. name: "Micro",
  54610. height: math.unit(0.0673020, "mm")
  54611. },
  54612. {
  54613. name: "Tiny",
  54614. height: math.unit(2.4, "mm")
  54615. },
  54616. {
  54617. name: "Actual Normal",
  54618. height: math.unit(3, "inches"),
  54619. default: true
  54620. },
  54621. {
  54622. name: "Normal",
  54623. height: math.unit(5 + 8/12, "feet")
  54624. },
  54625. {
  54626. name: "Giant",
  54627. height: math.unit(12, "feet")
  54628. },
  54629. {
  54630. name: "City Ruler",
  54631. height: math.unit(270, "meters")
  54632. },
  54633. {
  54634. name: "Giga",
  54635. height: math.unit(1117.6, "km")
  54636. },
  54637. {
  54638. name: "All-Powerful Queen",
  54639. height: math.unit(70.8, "gigameters")
  54640. },
  54641. {
  54642. name: "'Goddess'",
  54643. height: math.unit(600, "yottameters")
  54644. },
  54645. {
  54646. name: "Biggest!",
  54647. height: math.unit(4.23e5, "yottameters")
  54648. },
  54649. ]
  54650. ))
  54651. characterMakers.push(() => makeCharacter(
  54652. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54653. {
  54654. front: {
  54655. height: math.unit(8, "feet"),
  54656. weight: math.unit(300, "lb"),
  54657. name: "Front",
  54658. image: {
  54659. source: "./media/characters/khyla-shadowsong/front.svg",
  54660. extra: 861/798,
  54661. bottom: 32/893
  54662. }
  54663. },
  54664. side: {
  54665. height: math.unit(8, "feet"),
  54666. weight: math.unit(300, "lb"),
  54667. name: "Side",
  54668. image: {
  54669. source: "./media/characters/khyla-shadowsong/side.svg",
  54670. extra: 790/750,
  54671. bottom: 87/877
  54672. }
  54673. },
  54674. back: {
  54675. height: math.unit(8, "feet"),
  54676. weight: math.unit(300, "lb"),
  54677. name: "Back",
  54678. image: {
  54679. source: "./media/characters/khyla-shadowsong/back.svg",
  54680. extra: 855/808,
  54681. bottom: 14/869
  54682. }
  54683. },
  54684. head: {
  54685. height: math.unit(2.7, "feet"),
  54686. name: "Head",
  54687. image: {
  54688. source: "./media/characters/khyla-shadowsong/head.svg"
  54689. }
  54690. },
  54691. },
  54692. [
  54693. {
  54694. name: "Micro",
  54695. height: math.unit(6, "inches")
  54696. },
  54697. {
  54698. name: "Normal",
  54699. height: math.unit(8, "feet"),
  54700. default: true
  54701. },
  54702. ]
  54703. ))
  54704. characterMakers.push(() => makeCharacter(
  54705. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54706. {
  54707. hyperFront: {
  54708. height: math.unit(9 + 4/12, "feet"),
  54709. weight: math.unit(2000, "lb"),
  54710. name: "Front",
  54711. image: {
  54712. source: "./media/characters/tiden/hyper-front.svg",
  54713. extra: 400/382,
  54714. bottom: 6/406
  54715. },
  54716. form: "hyper",
  54717. },
  54718. regularFront: {
  54719. height: math.unit(7 + 10/12, "feet"),
  54720. weight: math.unit(470, "lb"),
  54721. name: "Front",
  54722. image: {
  54723. source: "./media/characters/tiden/regular-front.svg",
  54724. extra: 468/442,
  54725. bottom: 6/474
  54726. },
  54727. form: "regular",
  54728. },
  54729. },
  54730. [
  54731. {
  54732. name: "Normal",
  54733. height: math.unit(9 + 4/12, "feet"),
  54734. default: true,
  54735. form: "hyper"
  54736. },
  54737. {
  54738. name: "Normal",
  54739. height: math.unit(7 + 10/12, "feet"),
  54740. default: true,
  54741. form: "regular"
  54742. },
  54743. ],
  54744. {
  54745. "hyper": {
  54746. name: "Hyper",
  54747. default: true
  54748. },
  54749. "regular": {
  54750. name: "Regular",
  54751. },
  54752. }
  54753. ))
  54754. characterMakers.push(() => makeCharacter(
  54755. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54756. {
  54757. side: {
  54758. height: math.unit(6, "feet"),
  54759. weight: math.unit(150, "lb"),
  54760. name: "Side",
  54761. image: {
  54762. source: "./media/characters/jason-crowe/side.svg",
  54763. extra: 1771/766,
  54764. bottom: 219/1990
  54765. }
  54766. },
  54767. },
  54768. [
  54769. {
  54770. name: "Pocket Gryphon",
  54771. height: math.unit(6, "cm")
  54772. },
  54773. {
  54774. name: "Raven",
  54775. height: math.unit(60, "cm")
  54776. },
  54777. {
  54778. name: "Normal",
  54779. height: math.unit(1, "meter"),
  54780. default: true
  54781. },
  54782. ]
  54783. ))
  54784. characterMakers.push(() => makeCharacter(
  54785. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54786. {
  54787. front: {
  54788. height: math.unit(9 + 6/12, "feet"),
  54789. weight: math.unit(1100, "lb"),
  54790. name: "Front",
  54791. image: {
  54792. source: "./media/characters/django/front.svg",
  54793. extra: 1231/1136,
  54794. bottom: 34/1265
  54795. }
  54796. },
  54797. side: {
  54798. height: math.unit(9 + 6/12, "feet"),
  54799. weight: math.unit(1100, "lb"),
  54800. name: "Side",
  54801. image: {
  54802. source: "./media/characters/django/side.svg",
  54803. extra: 1267/1174,
  54804. bottom: 9/1276
  54805. }
  54806. },
  54807. },
  54808. [
  54809. {
  54810. name: "Normal",
  54811. height: math.unit(9 + 6/12, "feet"),
  54812. default: true
  54813. },
  54814. {
  54815. name: "Macro 1",
  54816. height: math.unit(50, "feet")
  54817. },
  54818. {
  54819. name: "Macro 2",
  54820. height: math.unit(500, "feet")
  54821. },
  54822. {
  54823. name: "Mega Macro",
  54824. height: math.unit(5300, "feet")
  54825. },
  54826. ]
  54827. ))
  54828. characterMakers.push(() => makeCharacter(
  54829. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54830. {
  54831. frontSfw: {
  54832. height: math.unit(120, "cm"),
  54833. weight: math.unit(15, "kg"),
  54834. name: "Front (SFW)",
  54835. image: {
  54836. source: "./media/characters/eri/front-sfw.svg",
  54837. extra: 1014/939,
  54838. bottom: 37/1051
  54839. },
  54840. form: "moth",
  54841. },
  54842. frontNsfw: {
  54843. height: math.unit(120, "cm"),
  54844. weight: math.unit(15, "kg"),
  54845. name: "Front (NSFW)",
  54846. image: {
  54847. source: "./media/characters/eri/front-nsfw.svg",
  54848. extra: 1014/939,
  54849. bottom: 37/1051
  54850. },
  54851. form: "moth",
  54852. default: true
  54853. },
  54854. egg: {
  54855. height: math.unit(10, "cm"),
  54856. name: "Egg",
  54857. image: {
  54858. source: "./media/characters/eri/egg.svg"
  54859. },
  54860. form: "egg",
  54861. default: true
  54862. },
  54863. },
  54864. [
  54865. {
  54866. name: "Normal",
  54867. height: math.unit(120, "cm"),
  54868. default: true,
  54869. form: "moth"
  54870. },
  54871. {
  54872. name: "Normal",
  54873. height: math.unit(10, "cm"),
  54874. default: true,
  54875. form: "egg"
  54876. },
  54877. ],
  54878. {
  54879. "moth": {
  54880. name: "Moth",
  54881. default: true
  54882. },
  54883. "egg": {
  54884. name: "Egg",
  54885. },
  54886. }
  54887. ))
  54888. characterMakers.push(() => makeCharacter(
  54889. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54890. {
  54891. front: {
  54892. height: math.unit(200, "feet"),
  54893. name: "Front",
  54894. image: {
  54895. source: "./media/characters/bishop-dowser/front.svg",
  54896. extra: 933/868,
  54897. bottom: 106/1039
  54898. }
  54899. },
  54900. },
  54901. [
  54902. {
  54903. name: "Giant",
  54904. height: math.unit(200, "feet"),
  54905. default: true
  54906. },
  54907. ]
  54908. ))
  54909. characterMakers.push(() => makeCharacter(
  54910. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54911. {
  54912. front: {
  54913. height: math.unit(2, "meters"),
  54914. preyCapacity: math.unit(3, "people"),
  54915. name: "Front",
  54916. image: {
  54917. source: "./media/characters/fryra/front.svg",
  54918. extra: 1025/948,
  54919. bottom: 30/1055
  54920. },
  54921. extraAttributes: {
  54922. "breastVolume": {
  54923. name: "Breast Volume",
  54924. power: 3,
  54925. type: "volume",
  54926. base: math.unit(8, "liters")
  54927. },
  54928. }
  54929. },
  54930. back: {
  54931. height: math.unit(2, "meters"),
  54932. preyCapacity: math.unit(3, "people"),
  54933. name: "Back",
  54934. image: {
  54935. source: "./media/characters/fryra/back.svg",
  54936. extra: 993/938,
  54937. bottom: 38/1031
  54938. },
  54939. extraAttributes: {
  54940. "breastVolume": {
  54941. name: "Breast Volume",
  54942. power: 3,
  54943. type: "volume",
  54944. base: math.unit(8, "liters")
  54945. },
  54946. }
  54947. },
  54948. head: {
  54949. height: math.unit(1.33, "feet"),
  54950. name: "Head",
  54951. image: {
  54952. source: "./media/characters/fryra/head.svg"
  54953. }
  54954. },
  54955. maw: {
  54956. height: math.unit(0.56, "feet"),
  54957. name: "Maw",
  54958. image: {
  54959. source: "./media/characters/fryra/maw.svg"
  54960. }
  54961. },
  54962. },
  54963. [
  54964. {
  54965. name: "Micro",
  54966. height: math.unit(5, "cm")
  54967. },
  54968. {
  54969. name: "Normal",
  54970. height: math.unit(2, "meters"),
  54971. default: true
  54972. },
  54973. {
  54974. name: "Small Macro",
  54975. height: math.unit(8, "meters")
  54976. },
  54977. {
  54978. name: "Macro",
  54979. height: math.unit(50, "meters")
  54980. },
  54981. {
  54982. name: "Megamacro",
  54983. height: math.unit(1, "km")
  54984. },
  54985. {
  54986. name: "Planetary",
  54987. height: math.unit(300000, "km")
  54988. },
  54989. {
  54990. name: "Universal",
  54991. height: math.unit(250, "lightyears")
  54992. },
  54993. {
  54994. name: "Fabric of Reality",
  54995. height: math.unit(1000, "multiverses")
  54996. },
  54997. ]
  54998. ))
  54999. characterMakers.push(() => makeCharacter(
  55000. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55001. {
  55002. frontDressed: {
  55003. height: math.unit(6 + 2/12, "feet"),
  55004. name: "Front (Dressed)",
  55005. image: {
  55006. source: "./media/characters/fiera/front-dressed.svg",
  55007. extra: 1883/1793,
  55008. bottom: 70/1953
  55009. }
  55010. },
  55011. backDressed: {
  55012. height: math.unit(6 + 2/12, "feet"),
  55013. name: "Back (Dressed)",
  55014. image: {
  55015. source: "./media/characters/fiera/back-dressed.svg",
  55016. extra: 1847/1780,
  55017. bottom: 70/1917
  55018. }
  55019. },
  55020. frontNude: {
  55021. height: math.unit(6 + 2/12, "feet"),
  55022. name: "Front (Nude)",
  55023. image: {
  55024. source: "./media/characters/fiera/front-nude.svg",
  55025. extra: 1875/1785,
  55026. bottom: 66/1941
  55027. }
  55028. },
  55029. backNude: {
  55030. height: math.unit(6 + 2/12, "feet"),
  55031. name: "Back (Nude)",
  55032. image: {
  55033. source: "./media/characters/fiera/back-nude.svg",
  55034. extra: 1855/1788,
  55035. bottom: 44/1899
  55036. }
  55037. },
  55038. maw: {
  55039. height: math.unit(1.3, "feet"),
  55040. name: "Maw",
  55041. image: {
  55042. source: "./media/characters/fiera/maw.svg"
  55043. }
  55044. },
  55045. paw: {
  55046. height: math.unit(1, "feet"),
  55047. name: "Paw",
  55048. image: {
  55049. source: "./media/characters/fiera/paw.svg"
  55050. }
  55051. },
  55052. shoe: {
  55053. height: math.unit(1.05, "feet"),
  55054. name: "Shoe",
  55055. image: {
  55056. source: "./media/characters/fiera/shoe.svg"
  55057. }
  55058. },
  55059. },
  55060. [
  55061. {
  55062. name: "Normal",
  55063. height: math.unit(6 + 2/12, "feet"),
  55064. default: true
  55065. },
  55066. {
  55067. name: "Size Difference",
  55068. height: math.unit(13, "feet")
  55069. },
  55070. {
  55071. name: "Macro",
  55072. height: math.unit(60, "feet")
  55073. },
  55074. {
  55075. name: "Mega Macro",
  55076. height: math.unit(200, "feet")
  55077. },
  55078. ]
  55079. ))
  55080. characterMakers.push(() => makeCharacter(
  55081. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55082. {
  55083. back: {
  55084. height: math.unit(6, "feet"),
  55085. name: "Back",
  55086. image: {
  55087. source: "./media/characters/flare/back.svg",
  55088. extra: 1883/1765,
  55089. bottom: 32/1915
  55090. }
  55091. },
  55092. },
  55093. [
  55094. {
  55095. name: "Normal",
  55096. height: math.unit(6 + 2/12, "feet"),
  55097. default: true
  55098. },
  55099. {
  55100. name: "Size Difference",
  55101. height: math.unit(13, "feet")
  55102. },
  55103. {
  55104. name: "Macro",
  55105. height: math.unit(60, "feet")
  55106. },
  55107. {
  55108. name: "Macro 2",
  55109. height: math.unit(100, "feet")
  55110. },
  55111. {
  55112. name: "Mega Macro",
  55113. height: math.unit(200, "feet")
  55114. },
  55115. ]
  55116. ))
  55117. characterMakers.push(() => makeCharacter(
  55118. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55119. {
  55120. front: {
  55121. height: math.unit(2.2, "m"),
  55122. weight: math.unit(300, "kg"),
  55123. name: "Front",
  55124. image: {
  55125. source: "./media/characters/hanna/front.svg",
  55126. extra: 1696/1502,
  55127. bottom: 206/1902
  55128. }
  55129. },
  55130. },
  55131. [
  55132. {
  55133. name: "Humanoid",
  55134. height: math.unit(2.2, "meters")
  55135. },
  55136. {
  55137. name: "Normal",
  55138. height: math.unit(4.8, "meters"),
  55139. default: true
  55140. },
  55141. ]
  55142. ))
  55143. characterMakers.push(() => makeCharacter(
  55144. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55145. {
  55146. front: {
  55147. height: math.unit(2.8, "meters"),
  55148. name: "Front",
  55149. image: {
  55150. source: "./media/characters/argo/front.svg",
  55151. extra: 731/518,
  55152. bottom: 84/815
  55153. }
  55154. },
  55155. },
  55156. [
  55157. {
  55158. name: "Normal",
  55159. height: math.unit(3, "meters"),
  55160. default: true
  55161. },
  55162. ]
  55163. ))
  55164. characterMakers.push(() => makeCharacter(
  55165. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55166. {
  55167. side: {
  55168. height: math.unit(3.8, "meters"),
  55169. name: "Side",
  55170. image: {
  55171. source: "./media/characters/sybil/side.svg",
  55172. extra: 382/361,
  55173. bottom: 25/407
  55174. }
  55175. },
  55176. },
  55177. [
  55178. {
  55179. name: "Normal",
  55180. height: math.unit(3.8, "meters"),
  55181. default: true
  55182. },
  55183. ]
  55184. ))
  55185. characterMakers.push(() => makeCharacter(
  55186. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55187. {
  55188. side: {
  55189. height: math.unit(6, "meters"),
  55190. name: "Side",
  55191. image: {
  55192. source: "./media/characters/plum/side.svg",
  55193. extra: 858/755,
  55194. bottom: 45/903
  55195. },
  55196. form: "taur",
  55197. default: true
  55198. },
  55199. back: {
  55200. height: math.unit(6.3, "meters"),
  55201. name: "Back",
  55202. image: {
  55203. source: "./media/characters/plum/back.svg",
  55204. extra: 887/813,
  55205. bottom: 32/919
  55206. },
  55207. form: "taur",
  55208. },
  55209. feral: {
  55210. height: math.unit(5.5, "meter"),
  55211. name: "Front",
  55212. image: {
  55213. source: "./media/characters/plum/feral.svg",
  55214. extra: 568/403,
  55215. bottom: 51/619
  55216. },
  55217. form: "feral",
  55218. default: true
  55219. },
  55220. head: {
  55221. height: math.unit(1.46, "meter"),
  55222. name: "Head",
  55223. image: {
  55224. source: "./media/characters/plum/head.svg"
  55225. },
  55226. form: "taur"
  55227. },
  55228. tailTop: {
  55229. height: math.unit(5.6, "meter"),
  55230. name: "Tail (Top)",
  55231. image: {
  55232. source: "./media/characters/plum/tail-top.svg"
  55233. },
  55234. form: "taur",
  55235. },
  55236. tailBottom: {
  55237. height: math.unit(5.6, "meter"),
  55238. name: "Tail (Bottom)",
  55239. image: {
  55240. source: "./media/characters/plum/tail-bottom.svg"
  55241. },
  55242. form: "taur",
  55243. },
  55244. feralHead: {
  55245. height: math.unit(2.56549521, "meter"),
  55246. name: "Head",
  55247. image: {
  55248. source: "./media/characters/plum/head.svg"
  55249. },
  55250. form: "feral"
  55251. },
  55252. feralTailTop: {
  55253. height: math.unit(5.44728435, "meter"),
  55254. name: "Tail (Top)",
  55255. image: {
  55256. source: "./media/characters/plum/tail-top.svg"
  55257. },
  55258. form: "feral",
  55259. },
  55260. feralTailBottom: {
  55261. height: math.unit(5.44728435, "meter"),
  55262. name: "Tail (Bottom)",
  55263. image: {
  55264. source: "./media/characters/plum/tail-bottom.svg"
  55265. },
  55266. form: "feral",
  55267. },
  55268. },
  55269. [
  55270. {
  55271. name: "Normal",
  55272. height: math.unit(6, "meters"),
  55273. default: true,
  55274. form: "taur"
  55275. },
  55276. {
  55277. name: "Normal",
  55278. height: math.unit(5.5, "meters"),
  55279. default: true,
  55280. form: "feral"
  55281. },
  55282. ],
  55283. {
  55284. "taur": {
  55285. name: "Taur",
  55286. default: true
  55287. },
  55288. "feral": {
  55289. name: "Feral",
  55290. },
  55291. }
  55292. ))
  55293. characterMakers.push(() => makeCharacter(
  55294. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55295. {
  55296. front: {
  55297. height: math.unit(6, "feet"),
  55298. weight: math.unit(115, "lb"),
  55299. name: "Front",
  55300. image: {
  55301. source: "./media/characters/celeste-kitsune/front.svg",
  55302. extra: 393/366,
  55303. bottom: 7/400
  55304. }
  55305. },
  55306. side: {
  55307. height: math.unit(6, "feet"),
  55308. weight: math.unit(115, "lb"),
  55309. name: "Side",
  55310. image: {
  55311. source: "./media/characters/celeste-kitsune/side.svg",
  55312. extra: 818/765,
  55313. bottom: 40/858
  55314. }
  55315. },
  55316. },
  55317. [
  55318. {
  55319. name: "Megamacro",
  55320. height: math.unit(1500, "miles"),
  55321. default: true
  55322. },
  55323. ]
  55324. ))
  55325. characterMakers.push(() => makeCharacter(
  55326. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55327. {
  55328. front: {
  55329. height: math.unit(8, "meters"),
  55330. name: "Front",
  55331. image: {
  55332. source: "./media/characters/io/front.svg",
  55333. extra: 865/722,
  55334. bottom: 58/923
  55335. }
  55336. },
  55337. back: {
  55338. height: math.unit(8, "meters"),
  55339. name: "Back",
  55340. image: {
  55341. source: "./media/characters/io/back.svg",
  55342. extra: 920/776,
  55343. bottom: 42/962
  55344. }
  55345. },
  55346. head: {
  55347. height: math.unit(5.09, "meters"),
  55348. name: "Head",
  55349. image: {
  55350. source: "./media/characters/io/head.svg"
  55351. }
  55352. },
  55353. hand: {
  55354. height: math.unit(1.6, "meters"),
  55355. name: "Hand",
  55356. image: {
  55357. source: "./media/characters/io/hand.svg"
  55358. }
  55359. },
  55360. foot: {
  55361. height: math.unit(2.4, "meters"),
  55362. name: "Foot",
  55363. image: {
  55364. source: "./media/characters/io/foot.svg"
  55365. }
  55366. },
  55367. },
  55368. [
  55369. {
  55370. name: "Normal",
  55371. height: math.unit(8, "meters"),
  55372. default: true
  55373. },
  55374. ]
  55375. ))
  55376. characterMakers.push(() => makeCharacter(
  55377. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55378. {
  55379. side: {
  55380. height: math.unit(6 + 3/12, "feet"),
  55381. weight: math.unit(225, "lb"),
  55382. name: "Side",
  55383. image: {
  55384. source: "./media/characters/silas/side.svg",
  55385. extra: 703/653,
  55386. bottom: 23/726
  55387. },
  55388. extraAttributes: {
  55389. "pawLength": {
  55390. name: "Paw Length",
  55391. power: 1,
  55392. type: "length",
  55393. base: math.unit(12, "inches")
  55394. },
  55395. "pawWidth": {
  55396. name: "Paw Width",
  55397. power: 1,
  55398. type: "length",
  55399. base: math.unit(4.5, "inches")
  55400. },
  55401. "pawArea": {
  55402. name: "Paw Area",
  55403. power: 2,
  55404. type: "area",
  55405. base: math.unit(12 * 4.5, "inches^2")
  55406. },
  55407. }
  55408. },
  55409. },
  55410. [
  55411. {
  55412. name: "Normal",
  55413. height: math.unit(6 + 3/12, "feet"),
  55414. default: true
  55415. },
  55416. ]
  55417. ))
  55418. characterMakers.push(() => makeCharacter(
  55419. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55420. {
  55421. back: {
  55422. height: math.unit(1.6, "meters"),
  55423. weight: math.unit(150, "lb"),
  55424. name: "Back",
  55425. image: {
  55426. source: "./media/characters/zari/back.svg",
  55427. extra: 424/411,
  55428. bottom: 32/456
  55429. },
  55430. extraAttributes: {
  55431. "bladderCapacity": {
  55432. name: "Bladder Size",
  55433. power: 3,
  55434. type: "volume",
  55435. base: math.unit(500, "mL")
  55436. },
  55437. "bladderFlow": {
  55438. name: "Flow Rate",
  55439. power: 3,
  55440. type: "volume",
  55441. base: math.unit(25, "mL")
  55442. },
  55443. }
  55444. },
  55445. },
  55446. [
  55447. {
  55448. name: "Normal",
  55449. height: math.unit(1.6, "meters"),
  55450. default: true
  55451. },
  55452. ]
  55453. ))
  55454. characterMakers.push(() => makeCharacter(
  55455. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55456. {
  55457. front: {
  55458. height: math.unit(25, "feet"),
  55459. weight: math.unit(5, "tons"),
  55460. name: "Front",
  55461. image: {
  55462. source: "./media/characters/charlie-human/front.svg",
  55463. extra: 1870/1740,
  55464. bottom: 102/1972
  55465. },
  55466. extraAttributes: {
  55467. "dickLength": {
  55468. name: "Dick Length",
  55469. power: 1,
  55470. type: "length",
  55471. base: math.unit(9, "feet")
  55472. },
  55473. }
  55474. },
  55475. back: {
  55476. height: math.unit(25, "feet"),
  55477. weight: math.unit(5, "tons"),
  55478. name: "Back",
  55479. image: {
  55480. source: "./media/characters/charlie-human/back.svg",
  55481. extra: 1858/1733,
  55482. bottom: 105/1963
  55483. },
  55484. extraAttributes: {
  55485. "dickLength": {
  55486. name: "Dick Length",
  55487. power: 1,
  55488. type: "length",
  55489. base: math.unit(9, "feet")
  55490. },
  55491. }
  55492. },
  55493. },
  55494. [
  55495. {
  55496. name: "\"Normal\"",
  55497. height: math.unit(6 + 4/12, "feet")
  55498. },
  55499. {
  55500. name: "Big",
  55501. height: math.unit(25, "feet"),
  55502. default: true
  55503. },
  55504. ]
  55505. ))
  55506. characterMakers.push(() => makeCharacter(
  55507. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55508. {
  55509. front: {
  55510. height: math.unit(6 + 4/12, "feet"),
  55511. weight: math.unit(320, "lb"),
  55512. name: "Front",
  55513. image: {
  55514. source: "./media/characters/ookitsu/front.svg",
  55515. extra: 1160/976,
  55516. bottom: 38/1198
  55517. }
  55518. },
  55519. frontNsfw: {
  55520. height: math.unit(6 + 4/12, "feet"),
  55521. weight: math.unit(320, "lb"),
  55522. name: "Front (NSFW)",
  55523. image: {
  55524. source: "./media/characters/ookitsu/front-nsfw.svg",
  55525. extra: 1160/976,
  55526. bottom: 38/1198
  55527. }
  55528. },
  55529. back: {
  55530. height: math.unit(6 + 4/12, "feet"),
  55531. weight: math.unit(320, "lb"),
  55532. name: "Back",
  55533. image: {
  55534. source: "./media/characters/ookitsu/back.svg",
  55535. extra: 1030/975,
  55536. bottom: 70/1100
  55537. }
  55538. },
  55539. head: {
  55540. height: math.unit(1.79, "feet"),
  55541. name: "Head",
  55542. image: {
  55543. source: "./media/characters/ookitsu/head.svg"
  55544. }
  55545. },
  55546. hand: {
  55547. height: math.unit(0.92, "feet"),
  55548. name: "Hand",
  55549. image: {
  55550. source: "./media/characters/ookitsu/hand.svg"
  55551. }
  55552. },
  55553. tails: {
  55554. height: math.unit(3.3, "feet"),
  55555. name: "Tails",
  55556. image: {
  55557. source: "./media/characters/ookitsu/tails.svg"
  55558. }
  55559. },
  55560. dick: {
  55561. height: math.unit(1.10833, "feet"),
  55562. name: "Dick",
  55563. image: {
  55564. source: "./media/characters/ookitsu/dick.svg"
  55565. }
  55566. },
  55567. },
  55568. [
  55569. {
  55570. name: "Normal",
  55571. height: math.unit(6 + 4/12, "feet"),
  55572. default: true
  55573. },
  55574. {
  55575. name: "Macro",
  55576. height: math.unit(30, "feet")
  55577. },
  55578. ]
  55579. ))
  55580. characterMakers.push(() => makeCharacter(
  55581. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55582. {
  55583. anthroFront: {
  55584. height: math.unit(6, "feet"),
  55585. weight: math.unit(250, "lb"),
  55586. name: "Front",
  55587. image: {
  55588. source: "./media/characters/jhusky/anthro-front.svg",
  55589. extra: 474/439,
  55590. bottom: 7/481
  55591. },
  55592. form: "anthro",
  55593. default: true
  55594. },
  55595. taurSideSfw: {
  55596. height: math.unit(6 + 4/12, "feet"),
  55597. weight: math.unit(500, "lb"),
  55598. name: "Side (SFW)",
  55599. image: {
  55600. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55601. extra: 1741/1629,
  55602. bottom: 196/1937
  55603. },
  55604. form: "taur",
  55605. default: true
  55606. },
  55607. taurSideNsfw: {
  55608. height: math.unit(6 + 4/12, "feet"),
  55609. weight: math.unit(500, "lb"),
  55610. name: "Taur (NSFW)",
  55611. image: {
  55612. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55613. extra: 1741/1629,
  55614. bottom: 196/1937
  55615. },
  55616. form: "taur",
  55617. },
  55618. },
  55619. [
  55620. {
  55621. name: "Huge",
  55622. height: math.unit(500, "feet"),
  55623. form: "anthro"
  55624. },
  55625. {
  55626. name: "Macro",
  55627. height: math.unit(1000, "feet"),
  55628. default: true,
  55629. form: "anthro"
  55630. },
  55631. {
  55632. name: "Megamacro",
  55633. height: math.unit(10000, "feet"),
  55634. form: "anthro"
  55635. },
  55636. {
  55637. name: "Huge",
  55638. height: math.unit(528, "feet"),
  55639. form: "taur"
  55640. },
  55641. {
  55642. name: "Macro",
  55643. height: math.unit(1056, "feet"),
  55644. default: true,
  55645. form: "taur"
  55646. },
  55647. {
  55648. name: "Megamacro",
  55649. height: math.unit(10556, "feet"),
  55650. form: "taur"
  55651. },
  55652. ],
  55653. {
  55654. "anthro": {
  55655. name: "Anthro",
  55656. default: true
  55657. },
  55658. "taur": {
  55659. name: "Taur",
  55660. },
  55661. }
  55662. ))
  55663. characterMakers.push(() => makeCharacter(
  55664. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55665. {
  55666. front: {
  55667. height: math.unit(8, "feet"),
  55668. weight: math.unit(500, "lb"),
  55669. name: "Front",
  55670. image: {
  55671. source: "./media/characters/armail/front.svg",
  55672. extra: 1753/1669,
  55673. bottom: 155/1908
  55674. }
  55675. },
  55676. back: {
  55677. height: math.unit(8, "feet"),
  55678. weight: math.unit(500, "lb"),
  55679. name: "Back",
  55680. image: {
  55681. source: "./media/characters/armail/back.svg",
  55682. extra: 1872/1803,
  55683. bottom: 63/1935
  55684. }
  55685. },
  55686. },
  55687. [
  55688. {
  55689. name: "Micro",
  55690. height: math.unit(0.25, "feet")
  55691. },
  55692. {
  55693. name: "Normal",
  55694. height: math.unit(8, "feet"),
  55695. default: true
  55696. },
  55697. {
  55698. name: "Mini-macro",
  55699. height: math.unit(30, "feet")
  55700. },
  55701. {
  55702. name: "Macro",
  55703. height: math.unit(400, "feet")
  55704. },
  55705. {
  55706. name: "Mega-macro",
  55707. height: math.unit(6000, "feet")
  55708. },
  55709. ]
  55710. ))
  55711. characterMakers.push(() => makeCharacter(
  55712. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55713. {
  55714. front: {
  55715. height: math.unit(6 + 7/12, "feet"),
  55716. weight: math.unit(210, "lb"),
  55717. name: "Front",
  55718. image: {
  55719. source: "./media/characters/wilfred-t-buxton/front.svg",
  55720. extra: 1068/882,
  55721. bottom: 28/1096
  55722. }
  55723. },
  55724. },
  55725. [
  55726. {
  55727. name: "Normal",
  55728. height: math.unit(6 + 7/12, "feet"),
  55729. default: true
  55730. },
  55731. ]
  55732. ))
  55733. characterMakers.push(() => makeCharacter(
  55734. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55735. {
  55736. front: {
  55737. height: math.unit(5 + 2/12, "feet"),
  55738. weight: math.unit(120, "lb"),
  55739. name: "Front",
  55740. image: {
  55741. source: "./media/characters/leighton-marrow/front.svg",
  55742. extra: 441/409,
  55743. bottom: 37/478
  55744. }
  55745. },
  55746. },
  55747. [
  55748. {
  55749. name: "Normal",
  55750. height: math.unit(5 + 2/12, "feet"),
  55751. default: true
  55752. },
  55753. ]
  55754. ))
  55755. characterMakers.push(() => makeCharacter(
  55756. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55757. {
  55758. front: {
  55759. height: math.unit(4, "meters"),
  55760. weight: math.unit(1200, "kg"),
  55761. name: "Front",
  55762. image: {
  55763. source: "./media/characters/licos/front.svg",
  55764. extra: 1727/1604,
  55765. bottom: 101/1828
  55766. },
  55767. form: "anthro",
  55768. default: true
  55769. },
  55770. taur_side: {
  55771. height: math.unit(20, "meters"),
  55772. weight: math.unit(1100000, "kg"),
  55773. name: "Side",
  55774. image: {
  55775. source: "./media/characters/licos/taur.svg",
  55776. extra: 1158/1091,
  55777. bottom: 80/1238
  55778. },
  55779. form: "taur",
  55780. default: true
  55781. },
  55782. },
  55783. [
  55784. {
  55785. name: "Normal",
  55786. height: math.unit(4, "meters"),
  55787. default: true,
  55788. form: "anthro"
  55789. },
  55790. {
  55791. name: "Normal",
  55792. height: math.unit(20, "meters"),
  55793. default: true,
  55794. form: "taur"
  55795. },
  55796. ],
  55797. {
  55798. "anthro": {
  55799. name: "Anthro",
  55800. default: true
  55801. },
  55802. "taur": {
  55803. name: "Taur",
  55804. },
  55805. }
  55806. ))
  55807. characterMakers.push(() => makeCharacter(
  55808. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55809. {
  55810. front: {
  55811. height: math.unit(10 + 3/12, "feet"),
  55812. name: "Front",
  55813. image: {
  55814. source: "./media/characters/theo-monkey/front.svg",
  55815. extra: 1735/1658,
  55816. bottom: 73/1808
  55817. }
  55818. },
  55819. back: {
  55820. height: math.unit(10 + 3/12, "feet"),
  55821. name: "Back",
  55822. image: {
  55823. source: "./media/characters/theo-monkey/back.svg",
  55824. extra: 1742/1664,
  55825. bottom: 33/1775
  55826. }
  55827. },
  55828. head: {
  55829. height: math.unit(2.29, "feet"),
  55830. name: "Head",
  55831. image: {
  55832. source: "./media/characters/theo-monkey/head.svg"
  55833. }
  55834. },
  55835. handPalm: {
  55836. height: math.unit(1.73, "feet"),
  55837. name: "Hand (Palm)",
  55838. image: {
  55839. source: "./media/characters/theo-monkey/hand-palm.svg"
  55840. }
  55841. },
  55842. handBack: {
  55843. height: math.unit(1.63, "feet"),
  55844. name: "Hand (Back)",
  55845. image: {
  55846. source: "./media/characters/theo-monkey/hand-back.svg"
  55847. }
  55848. },
  55849. footSole: {
  55850. height: math.unit(2.15, "feet"),
  55851. name: "Foot (Sole)",
  55852. image: {
  55853. source: "./media/characters/theo-monkey/foot-sole.svg"
  55854. }
  55855. },
  55856. footSide: {
  55857. height: math.unit(1.6, "feet"),
  55858. name: "Foot (Side)",
  55859. image: {
  55860. source: "./media/characters/theo-monkey/foot-side.svg"
  55861. }
  55862. },
  55863. },
  55864. [
  55865. {
  55866. name: "Normal",
  55867. height: math.unit(10 + 3/12, "feet"),
  55868. default: true
  55869. },
  55870. ]
  55871. ))
  55872. characterMakers.push(() => makeCharacter(
  55873. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55874. {
  55875. front: {
  55876. height: math.unit(11, "feet"),
  55877. weight: math.unit(3000, "lb"),
  55878. preyCapacity: math.unit(10, "people"),
  55879. name: "Front",
  55880. image: {
  55881. source: "./media/characters/brook/front.svg",
  55882. extra: 909/835,
  55883. bottom: 108/1017
  55884. }
  55885. },
  55886. back: {
  55887. height: math.unit(11, "feet"),
  55888. weight: math.unit(3000, "lb"),
  55889. preyCapacity: math.unit(10, "people"),
  55890. name: "Back",
  55891. image: {
  55892. source: "./media/characters/brook/back.svg",
  55893. extra: 976/916,
  55894. bottom: 34/1010
  55895. }
  55896. },
  55897. backAlt: {
  55898. height: math.unit(11, "feet"),
  55899. weight: math.unit(3000, "lb"),
  55900. preyCapacity: math.unit(10, "people"),
  55901. name: "Back (Alt)",
  55902. image: {
  55903. source: "./media/characters/brook/back-alt.svg",
  55904. extra: 1283/1213,
  55905. bottom: 35/1318
  55906. }
  55907. },
  55908. bust: {
  55909. height: math.unit(9.0859030837, "feet"),
  55910. weight: math.unit(3000, "lb"),
  55911. preyCapacity: math.unit(10, "people"),
  55912. name: "Bust",
  55913. image: {
  55914. source: "./media/characters/brook/bust.svg",
  55915. extra: 2043/1923,
  55916. bottom: 0/2043
  55917. }
  55918. },
  55919. },
  55920. [
  55921. {
  55922. name: "Small",
  55923. height: math.unit(11, "feet"),
  55924. default: true
  55925. },
  55926. {
  55927. name: "Towering",
  55928. height: math.unit(5, "km")
  55929. },
  55930. {
  55931. name: "Enormous",
  55932. height: math.unit(25, "earths")
  55933. },
  55934. ]
  55935. ))
  55936. characterMakers.push(() => makeCharacter(
  55937. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55938. {
  55939. front: {
  55940. height: math.unit(4, "feet"),
  55941. weight: math.unit(150, "lb"),
  55942. name: "Front",
  55943. image: {
  55944. source: "./media/characters/squishi/front.svg",
  55945. extra: 1428/1271,
  55946. bottom: 30/1458
  55947. },
  55948. extraAttributes: {
  55949. "pawSize": {
  55950. name: "Paw Size",
  55951. power: 1,
  55952. type: "length",
  55953. base: math.unit(14, "ShoeSizeMensUS"),
  55954. defaultUnit: "ShoeSizeMensUS"
  55955. },
  55956. }
  55957. },
  55958. side: {
  55959. height: math.unit(4, "feet"),
  55960. weight: math.unit(150, "lb"),
  55961. name: "Side",
  55962. image: {
  55963. source: "./media/characters/squishi/side.svg",
  55964. extra: 1428/1271,
  55965. bottom: 30/1458
  55966. },
  55967. extraAttributes: {
  55968. "pawSize": {
  55969. name: "Paw Size",
  55970. power: 1,
  55971. type: "length",
  55972. base: math.unit(14, "ShoeSizeMensUS"),
  55973. defaultUnit: "ShoeSizeMensUS"
  55974. },
  55975. }
  55976. },
  55977. back: {
  55978. height: math.unit(4, "feet"),
  55979. weight: math.unit(150, "lb"),
  55980. name: "Back",
  55981. image: {
  55982. source: "./media/characters/squishi/back.svg",
  55983. extra: 1428/1271,
  55984. bottom: 30/1458
  55985. },
  55986. extraAttributes: {
  55987. "pawSize": {
  55988. name: "Paw Size",
  55989. power: 1,
  55990. type: "length",
  55991. base: math.unit(14, "ShoeSizeMensUS"),
  55992. defaultUnit: "ShoeSizeMensUS"
  55993. },
  55994. }
  55995. },
  55996. },
  55997. [
  55998. {
  55999. name: "Normal",
  56000. height: math.unit(4, "feet"),
  56001. default: true
  56002. },
  56003. ]
  56004. ))
  56005. characterMakers.push(() => makeCharacter(
  56006. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56007. {
  56008. front: {
  56009. height: math.unit(7 + 8/12, "feet"),
  56010. weight: math.unit(333, "lb"),
  56011. name: "Front",
  56012. image: {
  56013. source: "./media/characters/vincent-vasroc/front.svg",
  56014. extra: 1962/1860,
  56015. bottom: 41/2003
  56016. }
  56017. },
  56018. back: {
  56019. height: math.unit(7 + 8/12, "feet"),
  56020. weight: math.unit(333, "lb"),
  56021. name: "Back",
  56022. image: {
  56023. source: "./media/characters/vincent-vasroc/back.svg",
  56024. extra: 1952/1815,
  56025. bottom: 33/1985
  56026. }
  56027. },
  56028. paw: {
  56029. height: math.unit(1.24, "feet"),
  56030. name: "Paw",
  56031. image: {
  56032. source: "./media/characters/vincent-vasroc/paw.svg"
  56033. }
  56034. },
  56035. ear: {
  56036. height: math.unit(0.75, "feet"),
  56037. name: "Ear",
  56038. image: {
  56039. source: "./media/characters/vincent-vasroc/ear.svg"
  56040. }
  56041. },
  56042. },
  56043. [
  56044. {
  56045. name: "Nano",
  56046. height: math.unit(92, "micrometers")
  56047. },
  56048. {
  56049. name: "Normal",
  56050. height: math.unit(7 + 8/12, "feet"),
  56051. default: true
  56052. },
  56053. ]
  56054. ))
  56055. characterMakers.push(() => makeCharacter(
  56056. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56057. {
  56058. frontNsfw: {
  56059. height: math.unit(40, "feet"),
  56060. weight: math.unit(58, "tons"),
  56061. name: "Front (NSFW)",
  56062. image: {
  56063. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56064. extra: 1265/965,
  56065. bottom: 155/1420
  56066. }
  56067. },
  56068. frontSfw: {
  56069. height: math.unit(40, "feet"),
  56070. weight: math.unit(58, "tons"),
  56071. name: "Front (SFW)",
  56072. image: {
  56073. source: "./media/characters/ru-kahn/front-sfw.svg",
  56074. extra: 1265/965,
  56075. bottom: 80/1345
  56076. }
  56077. },
  56078. },
  56079. [
  56080. {
  56081. name: "Small",
  56082. height: math.unit(4, "feet")
  56083. },
  56084. {
  56085. name: "Normal",
  56086. height: math.unit(40, "feet"),
  56087. default: true
  56088. },
  56089. {
  56090. name: "Macro",
  56091. height: math.unit(400, "feet")
  56092. },
  56093. ]
  56094. ))
  56095. characterMakers.push(() => makeCharacter(
  56096. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56097. {
  56098. frontNude: {
  56099. height: math.unit(6 + 5/12, "feet"),
  56100. name: "Front (Nude)",
  56101. image: {
  56102. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56103. extra: 1369/1366,
  56104. bottom: 68/1437
  56105. }
  56106. },
  56107. frontDressed: {
  56108. height: math.unit(6 + 5/12, "feet"),
  56109. name: "Front (Dressed)",
  56110. image: {
  56111. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56112. extra: 1369/1366,
  56113. bottom: 68/1437
  56114. }
  56115. },
  56116. },
  56117. [
  56118. {
  56119. name: "Normal",
  56120. height: math.unit(6 + 5/12, "feet"),
  56121. default: true
  56122. },
  56123. {
  56124. name: "Maximum",
  56125. height: math.unit(1930, "feet")
  56126. },
  56127. ]
  56128. ))
  56129. characterMakers.push(() => makeCharacter(
  56130. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56131. {
  56132. front: {
  56133. height: math.unit(5 + 6/12, "feet"),
  56134. name: "Front",
  56135. image: {
  56136. source: "./media/characters/kaja/front.svg",
  56137. extra: 1874/1514,
  56138. bottom: 117/1991
  56139. }
  56140. },
  56141. },
  56142. [
  56143. {
  56144. name: "Normal",
  56145. height: math.unit(5 + 6/12, "feet"),
  56146. default: true
  56147. },
  56148. ]
  56149. ))
  56150. characterMakers.push(() => makeCharacter(
  56151. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56152. {
  56153. front: {
  56154. height: math.unit(5 + 9/12, "feet"),
  56155. weight: math.unit(200, "lb"),
  56156. name: "Front",
  56157. image: {
  56158. source: "./media/characters/mark-smith/front.svg",
  56159. extra: 1004/943,
  56160. bottom: 58/1062
  56161. }
  56162. },
  56163. back: {
  56164. height: math.unit(5 + 9/12, "feet"),
  56165. weight: math.unit(200, "lb"),
  56166. name: "Back",
  56167. image: {
  56168. source: "./media/characters/mark-smith/back.svg",
  56169. extra: 1023/953,
  56170. bottom: 24/1047
  56171. }
  56172. },
  56173. head: {
  56174. height: math.unit(1.82, "feet"),
  56175. name: "Head",
  56176. image: {
  56177. source: "./media/characters/mark-smith/head.svg"
  56178. }
  56179. },
  56180. hand: {
  56181. height: math.unit(1.4, "feet"),
  56182. name: "Hand",
  56183. image: {
  56184. source: "./media/characters/mark-smith/hand.svg"
  56185. }
  56186. },
  56187. paw: {
  56188. height: math.unit(1.69, "feet"),
  56189. name: "Paw",
  56190. image: {
  56191. source: "./media/characters/mark-smith/paw.svg"
  56192. }
  56193. },
  56194. },
  56195. [
  56196. {
  56197. name: "Micro",
  56198. height: math.unit(0.25, "inches")
  56199. },
  56200. {
  56201. name: "Normal",
  56202. height: math.unit(5 + 9/12, "feet"),
  56203. default: true
  56204. },
  56205. {
  56206. name: "Macro",
  56207. height: math.unit(500, "feet")
  56208. },
  56209. ]
  56210. ))
  56211. characterMakers.push(() => makeCharacter(
  56212. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56213. {
  56214. frontNude: {
  56215. height: math.unit(6, "feet"),
  56216. name: "Front (Nude)",
  56217. image: {
  56218. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56219. extra: 1384/1321,
  56220. bottom: 57/1441
  56221. }
  56222. },
  56223. frontDressed: {
  56224. height: math.unit(6, "feet"),
  56225. name: "Front (Dressed)",
  56226. image: {
  56227. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56228. extra: 1384/1321,
  56229. bottom: 57/1441
  56230. }
  56231. },
  56232. },
  56233. [
  56234. {
  56235. name: "Normal",
  56236. height: math.unit(6, "feet"),
  56237. default: true
  56238. },
  56239. {
  56240. name: "Maximum",
  56241. height: math.unit(1776, "feet")
  56242. },
  56243. ]
  56244. ))
  56245. characterMakers.push(() => makeCharacter(
  56246. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56247. {
  56248. front: {
  56249. height: math.unit(2 + 4/12, "feet"),
  56250. weight: math.unit(350, "lb"),
  56251. name: "Front",
  56252. image: {
  56253. source: "./media/characters/devos/front.svg",
  56254. extra: 958/852,
  56255. bottom: 143/1101
  56256. }
  56257. },
  56258. },
  56259. [
  56260. {
  56261. name: "Base",
  56262. height: math.unit(2 + 4/12, "feet"),
  56263. default: true
  56264. },
  56265. ]
  56266. ))
  56267. characterMakers.push(() => makeCharacter(
  56268. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56269. {
  56270. front: {
  56271. height: math.unit(9 + 2/12, "feet"),
  56272. name: "Front",
  56273. image: {
  56274. source: "./media/characters/hiveheart/front.svg",
  56275. extra: 394/364,
  56276. bottom: 65/459
  56277. }
  56278. },
  56279. back: {
  56280. height: math.unit(9 + 2/12, "feet"),
  56281. name: "Back",
  56282. image: {
  56283. source: "./media/characters/hiveheart/back.svg",
  56284. extra: 374/357,
  56285. bottom: 63/437
  56286. }
  56287. },
  56288. },
  56289. [
  56290. {
  56291. name: "Base",
  56292. height: math.unit(9 + 2/12, "feet"),
  56293. default: true
  56294. },
  56295. ]
  56296. ))
  56297. characterMakers.push(() => makeCharacter(
  56298. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56299. {
  56300. front: {
  56301. height: math.unit(2.5, "inches"),
  56302. weight: math.unit(0.6, "oz"),
  56303. name: "Front",
  56304. image: {
  56305. source: "./media/characters/bryn/front.svg",
  56306. extra: 1480/1205,
  56307. bottom: 27/1507
  56308. }
  56309. },
  56310. back: {
  56311. height: math.unit(2.5, "inches"),
  56312. weight: math.unit(0.6, "oz"),
  56313. name: "Back",
  56314. image: {
  56315. source: "./media/characters/bryn/back.svg",
  56316. extra: 1475/1201,
  56317. bottom: 39/1514
  56318. }
  56319. },
  56320. foot: {
  56321. height: math.unit(0.4, "inches"),
  56322. name: "Foot",
  56323. image: {
  56324. source: "./media/characters/bryn/foot.svg"
  56325. }
  56326. },
  56327. },
  56328. [
  56329. {
  56330. name: "Normal",
  56331. height: math.unit(2.5, "inches"),
  56332. default: true
  56333. },
  56334. ]
  56335. ))
  56336. characterMakers.push(() => makeCharacter(
  56337. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56338. {
  56339. side: {
  56340. height: math.unit(7, "feet"),
  56341. weight: math.unit(657, "kg"),
  56342. name: "Side",
  56343. image: {
  56344. source: "./media/characters/delta/side.svg",
  56345. extra: 781/212,
  56346. bottom: 7/788
  56347. },
  56348. extraAttributes: {
  56349. "wingspan": {
  56350. name: "Wingspan",
  56351. power: 1,
  56352. type: "length",
  56353. base: math.unit(48, "feet")
  56354. },
  56355. "length": {
  56356. name: "Length",
  56357. power: 1,
  56358. type: "length",
  56359. base: math.unit(21, "feet")
  56360. },
  56361. "pawSize": {
  56362. name: "Paw Size",
  56363. power: 2,
  56364. type: "area",
  56365. base: math.unit(1.5*1.4, "feet^2")
  56366. },
  56367. }
  56368. },
  56369. },
  56370. [
  56371. {
  56372. name: "Normal",
  56373. height: math.unit(6, "feet"),
  56374. default: true
  56375. },
  56376. ]
  56377. ))
  56378. characterMakers.push(() => makeCharacter(
  56379. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56380. {
  56381. front: {
  56382. height: math.unit(6, "feet"),
  56383. name: "Front",
  56384. image: {
  56385. source: "./media/characters/pyrow/front.svg",
  56386. extra: 513/486,
  56387. bottom: 14/527
  56388. }
  56389. },
  56390. frontWing: {
  56391. height: math.unit(6, "feet"),
  56392. name: "Front (Wing)",
  56393. image: {
  56394. source: "./media/characters/pyrow/front-wing.svg",
  56395. extra: 539/383,
  56396. bottom: 20/559
  56397. }
  56398. },
  56399. back: {
  56400. height: math.unit(6, "feet"),
  56401. name: "Back",
  56402. image: {
  56403. source: "./media/characters/pyrow/back.svg",
  56404. extra: 500/473,
  56405. bottom: 9/509
  56406. }
  56407. },
  56408. },
  56409. [
  56410. {
  56411. name: "Normal",
  56412. height: math.unit(6, "feet"),
  56413. default: true
  56414. },
  56415. ]
  56416. ))
  56417. characterMakers.push(() => makeCharacter(
  56418. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56419. {
  56420. front: {
  56421. height: math.unit(5, "meters"),
  56422. weight: math.unit(3, "tonnes"),
  56423. name: "Front",
  56424. image: {
  56425. source: "./media/characters/velikan/front.svg",
  56426. extra: 867/744,
  56427. bottom: 71/938
  56428. },
  56429. extraAttributes: {
  56430. "shoeSize": {
  56431. name: "Shoe Size",
  56432. power: 1,
  56433. type: "length",
  56434. base: math.unit(135, "ShoeSizeUK"),
  56435. defaultUnit: "ShoeSizeUK"
  56436. },
  56437. }
  56438. },
  56439. },
  56440. [
  56441. {
  56442. name: "Normal",
  56443. height: math.unit(5, "meters"),
  56444. default: true
  56445. },
  56446. {
  56447. name: "Macro",
  56448. height: math.unit(1, "km")
  56449. },
  56450. {
  56451. name: "Mega Macro",
  56452. height: math.unit(100, "km")
  56453. },
  56454. {
  56455. name: "Giga Macro",
  56456. height: math.unit(2, "megameters")
  56457. },
  56458. {
  56459. name: "Planetary",
  56460. height: math.unit(22, "megameters")
  56461. },
  56462. {
  56463. name: "Solar",
  56464. height: math.unit(8, "gigameters")
  56465. },
  56466. {
  56467. name: "Cosmic",
  56468. height: math.unit(10, "zettameters")
  56469. },
  56470. {
  56471. name: "Omni",
  56472. height: math.unit(9e260, "multiverses")
  56473. },
  56474. ]
  56475. ))
  56476. characterMakers.push(() => makeCharacter(
  56477. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56478. {
  56479. front: {
  56480. height: math.unit(4 + 3/12, "feet"),
  56481. weight: math.unit(90, "lb"),
  56482. name: "Front",
  56483. image: {
  56484. source: "./media/characters/sabiki/front.svg",
  56485. extra: 1662/1423,
  56486. bottom: 65/1727
  56487. }
  56488. },
  56489. },
  56490. [
  56491. {
  56492. name: "Normal",
  56493. height: math.unit(4 + 3/12, "feet"),
  56494. default: true
  56495. },
  56496. ]
  56497. ))
  56498. characterMakers.push(() => makeCharacter(
  56499. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56500. {
  56501. frontSfw: {
  56502. height: math.unit(2, "mm"),
  56503. name: "Front (SFW)",
  56504. image: {
  56505. source: "./media/characters/carmel/front-sfw.svg",
  56506. extra: 1131/1006,
  56507. bottom: 66/1197
  56508. }
  56509. },
  56510. frontNsfw: {
  56511. height: math.unit(2, "mm"),
  56512. name: "Front (NSFW)",
  56513. image: {
  56514. source: "./media/characters/carmel/front-nsfw.svg",
  56515. extra: 1131/1006,
  56516. bottom: 66/1197
  56517. }
  56518. },
  56519. foot: {
  56520. height: math.unit(0.3, "mm"),
  56521. name: "Foot",
  56522. image: {
  56523. source: "./media/characters/carmel/foot.svg"
  56524. }
  56525. },
  56526. tongue: {
  56527. height: math.unit(0.71, "mm"),
  56528. name: "Tongue",
  56529. image: {
  56530. source: "./media/characters/carmel/tongue.svg"
  56531. }
  56532. },
  56533. dick: {
  56534. height: math.unit(0.085, "mm"),
  56535. name: "Dick",
  56536. image: {
  56537. source: "./media/characters/carmel/dick.svg"
  56538. }
  56539. },
  56540. },
  56541. [
  56542. {
  56543. name: "Micro",
  56544. height: math.unit(2, "mm"),
  56545. default: true
  56546. },
  56547. {
  56548. name: "Normal",
  56549. height: math.unit(4 + 8/12, "feet")
  56550. },
  56551. {
  56552. name: "Mega Macro",
  56553. height: math.unit(250, "feet")
  56554. },
  56555. {
  56556. name: "BIGGER",
  56557. height: math.unit(1000, "feet")
  56558. },
  56559. {
  56560. name: "BIGGEST",
  56561. height: math.unit(2, "miles")
  56562. },
  56563. ]
  56564. ))
  56565. characterMakers.push(() => makeCharacter(
  56566. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56567. {
  56568. front: {
  56569. height: math.unit(6.5, "feet"),
  56570. weight: math.unit(198, "lb"),
  56571. name: "Front",
  56572. image: {
  56573. source: "./media/characters/tamani/anthro.svg",
  56574. extra: 930/890,
  56575. bottom: 34/964
  56576. },
  56577. form: "anthro",
  56578. default: true
  56579. },
  56580. side: {
  56581. height: math.unit(6, "feet"),
  56582. weight: math.unit(198*2, "lb"),
  56583. name: "Side",
  56584. image: {
  56585. source: "./media/characters/tamani/feral.svg",
  56586. extra: 559/519,
  56587. bottom: 43/602
  56588. },
  56589. form: "feral"
  56590. },
  56591. },
  56592. [
  56593. {
  56594. name: "Normal",
  56595. height: math.unit(6.5, "feet"),
  56596. default: true,
  56597. form: "anthro"
  56598. },
  56599. {
  56600. name: "Normal",
  56601. height: math.unit(6, "feet"),
  56602. default: true,
  56603. form: "feral"
  56604. },
  56605. ],
  56606. {
  56607. "anthro": {
  56608. name: "Anthro",
  56609. default: true
  56610. },
  56611. "feral": {
  56612. name: "Feral",
  56613. },
  56614. }
  56615. ))
  56616. characterMakers.push(() => makeCharacter(
  56617. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56618. {
  56619. front: {
  56620. height: math.unit(4 + 1/12, "feet"),
  56621. weight: math.unit(114, "lb"),
  56622. name: "Front",
  56623. image: {
  56624. source: "./media/characters/dex/front.svg",
  56625. extra: 787/680,
  56626. bottom: 18/805
  56627. }
  56628. },
  56629. side: {
  56630. height: math.unit(4 + 1/12, "feet"),
  56631. weight: math.unit(114, "lb"),
  56632. name: "Side",
  56633. image: {
  56634. source: "./media/characters/dex/side.svg",
  56635. extra: 785/680,
  56636. bottom: 12/797
  56637. }
  56638. },
  56639. back: {
  56640. height: math.unit(4 + 1/12, "feet"),
  56641. weight: math.unit(114, "lb"),
  56642. name: "Back",
  56643. image: {
  56644. source: "./media/characters/dex/back.svg",
  56645. extra: 785/681,
  56646. bottom: 17/802
  56647. }
  56648. },
  56649. loungewear: {
  56650. height: math.unit(4 + 1/12, "feet"),
  56651. weight: math.unit(114, "lb"),
  56652. name: "Loungewear",
  56653. image: {
  56654. source: "./media/characters/dex/loungewear.svg",
  56655. extra: 787/680,
  56656. bottom: 18/805
  56657. }
  56658. },
  56659. workout: {
  56660. height: math.unit(4 + 1/12, "feet"),
  56661. weight: math.unit(114, "lb"),
  56662. name: "Workout",
  56663. image: {
  56664. source: "./media/characters/dex/workout.svg",
  56665. extra: 787/680,
  56666. bottom: 18/805
  56667. }
  56668. },
  56669. schoolUniform: {
  56670. height: math.unit(4 + 1/12, "feet"),
  56671. weight: math.unit(114, "lb"),
  56672. name: "School-uniform",
  56673. image: {
  56674. source: "./media/characters/dex/school-uniform.svg",
  56675. extra: 787/680,
  56676. bottom: 18/805
  56677. }
  56678. },
  56679. maw: {
  56680. height: math.unit(0.55, "feet"),
  56681. name: "Maw",
  56682. image: {
  56683. source: "./media/characters/dex/maw.svg"
  56684. }
  56685. },
  56686. paw: {
  56687. height: math.unit(0.87, "feet"),
  56688. name: "Paw",
  56689. image: {
  56690. source: "./media/characters/dex/paw.svg"
  56691. }
  56692. },
  56693. bust: {
  56694. height: math.unit(1.67, "feet"),
  56695. name: "Bust",
  56696. image: {
  56697. source: "./media/characters/dex/bust.svg"
  56698. }
  56699. },
  56700. },
  56701. [
  56702. {
  56703. name: "Normal",
  56704. height: math.unit(4 + 1/12, "feet"),
  56705. default: true
  56706. },
  56707. ]
  56708. ))
  56709. characterMakers.push(() => makeCharacter(
  56710. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56711. {
  56712. front: {
  56713. height: math.unit(4 + 3/12, "feet"),
  56714. weight: math.unit(60, "lb"),
  56715. name: "Front",
  56716. image: {
  56717. source: "./media/characters/silke/front.svg",
  56718. extra: 1334/1122,
  56719. bottom: 21/1355
  56720. }
  56721. },
  56722. back: {
  56723. height: math.unit(4 + 3/12, "feet"),
  56724. weight: math.unit(60, "lb"),
  56725. name: "Back",
  56726. image: {
  56727. source: "./media/characters/silke/back.svg",
  56728. extra: 1328/1092,
  56729. bottom: 16/1344
  56730. }
  56731. },
  56732. dressed: {
  56733. height: math.unit(4 + 3/12, "feet"),
  56734. weight: math.unit(60, "lb"),
  56735. name: "Dressed",
  56736. image: {
  56737. source: "./media/characters/silke/dressed.svg",
  56738. extra: 1334/1122,
  56739. bottom: 43/1377
  56740. }
  56741. },
  56742. },
  56743. [
  56744. {
  56745. name: "Normal",
  56746. height: math.unit(4 + 3/12, "feet"),
  56747. default: true
  56748. },
  56749. ]
  56750. ))
  56751. characterMakers.push(() => makeCharacter(
  56752. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56753. {
  56754. front: {
  56755. height: math.unit(1.58, "meters"),
  56756. weight: math.unit(47, "kg"),
  56757. name: "Front",
  56758. image: {
  56759. source: "./media/characters/wireshark/front.svg",
  56760. extra: 883/838,
  56761. bottom: 66/949
  56762. }
  56763. },
  56764. },
  56765. [
  56766. {
  56767. name: "Normal",
  56768. height: math.unit(1.58, "meters"),
  56769. default: true
  56770. },
  56771. ]
  56772. ))
  56773. characterMakers.push(() => makeCharacter(
  56774. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56775. {
  56776. front: {
  56777. height: math.unit(6, "meters"),
  56778. weight: math.unit(15000, "kg"),
  56779. name: "Front",
  56780. image: {
  56781. source: "./media/characters/gallagher/front.svg",
  56782. extra: 532/493,
  56783. bottom: 0/532
  56784. }
  56785. },
  56786. },
  56787. [
  56788. {
  56789. name: "Normal",
  56790. height: math.unit(6, "meters"),
  56791. default: true
  56792. },
  56793. ]
  56794. ))
  56795. characterMakers.push(() => makeCharacter(
  56796. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56797. {
  56798. front: {
  56799. height: math.unit(2.4, "meters"),
  56800. weight: math.unit(270, "kg"),
  56801. name: "Front",
  56802. image: {
  56803. source: "./media/characters/alice/front.svg",
  56804. extra: 950/900,
  56805. bottom: 36/986
  56806. }
  56807. },
  56808. side: {
  56809. height: math.unit(2.4, "meters"),
  56810. weight: math.unit(270, "kg"),
  56811. name: "Side",
  56812. image: {
  56813. source: "./media/characters/alice/side.svg",
  56814. extra: 921/876,
  56815. bottom: 19/940
  56816. }
  56817. },
  56818. dressed: {
  56819. height: math.unit(2.4, "meters"),
  56820. weight: math.unit(270, "kg"),
  56821. name: "Dressed",
  56822. image: {
  56823. source: "./media/characters/alice/dressed.svg",
  56824. extra: 905/850,
  56825. bottom: 81/986
  56826. }
  56827. },
  56828. fishnet: {
  56829. height: math.unit(2.4, "meters"),
  56830. weight: math.unit(270, "kg"),
  56831. name: "Fishnet",
  56832. image: {
  56833. source: "./media/characters/alice/fishnet.svg",
  56834. extra: 905/850,
  56835. bottom: 81/986
  56836. }
  56837. },
  56838. },
  56839. [
  56840. {
  56841. name: "Normal",
  56842. height: math.unit(2.4, "meters"),
  56843. default: true
  56844. },
  56845. ]
  56846. ))
  56847. characterMakers.push(() => makeCharacter(
  56848. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56849. {
  56850. front: {
  56851. height: math.unit(175.25, "feet"),
  56852. name: "Front",
  56853. image: {
  56854. source: "./media/characters/fio/front.svg",
  56855. extra: 1883/1591,
  56856. bottom: 34/1917
  56857. }
  56858. },
  56859. },
  56860. [
  56861. {
  56862. name: "Normal",
  56863. height: math.unit(175.25, "cm"),
  56864. default: true
  56865. },
  56866. ]
  56867. ))
  56868. characterMakers.push(() => makeCharacter(
  56869. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56870. {
  56871. side: {
  56872. height: math.unit(6, "meters"),
  56873. weight: math.unit(3400, "kg"),
  56874. preyCapacity: math.unit(1700, "liters"),
  56875. name: "Side",
  56876. image: {
  56877. source: "./media/characters/hass/side.svg",
  56878. extra: 1058/997,
  56879. bottom: 177/1235
  56880. }
  56881. },
  56882. feeding: {
  56883. height: math.unit(6*0.63, "meters"),
  56884. weight: math.unit(3400, "kg"),
  56885. preyCapacity: math.unit(1700, "liters"),
  56886. name: "Feeding",
  56887. image: {
  56888. source: "./media/characters/hass/feeding.svg",
  56889. extra: 689/579,
  56890. bottom: 146/835
  56891. }
  56892. },
  56893. guts: {
  56894. height: math.unit(6, "meters"),
  56895. weight: math.unit(3400, "kg"),
  56896. name: "Guts",
  56897. image: {
  56898. source: "./media/characters/hass/guts.svg",
  56899. extra: 1223/1198,
  56900. bottom: 182/1405
  56901. }
  56902. },
  56903. dickFront: {
  56904. height: math.unit(1.4, "meters"),
  56905. name: "Dick (Front)",
  56906. image: {
  56907. source: "./media/characters/hass/dick-front.svg"
  56908. }
  56909. },
  56910. dickSide: {
  56911. height: math.unit(1.3, "meters"),
  56912. name: "Dick (Side)",
  56913. image: {
  56914. source: "./media/characters/hass/dick-side.svg"
  56915. }
  56916. },
  56917. dickBack: {
  56918. height: math.unit(1.4, "meters"),
  56919. name: "Dick (Back)",
  56920. image: {
  56921. source: "./media/characters/hass/dick-back.svg"
  56922. }
  56923. },
  56924. },
  56925. [
  56926. {
  56927. name: "Normal",
  56928. height: math.unit(6, "meters"),
  56929. default: true
  56930. },
  56931. ]
  56932. ))
  56933. characterMakers.push(() => makeCharacter(
  56934. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56935. {
  56936. front: {
  56937. height: math.unit(4, "feet"),
  56938. weight: math.unit(60, "lb"),
  56939. name: "Front",
  56940. image: {
  56941. source: "./media/characters/hickory-finnegan/front.svg",
  56942. extra: 444/411,
  56943. bottom: 10/454
  56944. }
  56945. },
  56946. side: {
  56947. height: math.unit(4, "feet"),
  56948. weight: math.unit(60, "lb"),
  56949. name: "Side",
  56950. image: {
  56951. source: "./media/characters/hickory-finnegan/side.svg",
  56952. extra: 444/411,
  56953. bottom: 10/454
  56954. }
  56955. },
  56956. back: {
  56957. height: math.unit(4, "feet"),
  56958. weight: math.unit(60, "lb"),
  56959. name: "Back",
  56960. image: {
  56961. source: "./media/characters/hickory-finnegan/back.svg",
  56962. extra: 444/411,
  56963. bottom: 10/454
  56964. }
  56965. },
  56966. },
  56967. [
  56968. {
  56969. name: "Normal",
  56970. height: math.unit(4, "feet"),
  56971. default: true
  56972. },
  56973. ]
  56974. ))
  56975. characterMakers.push(() => makeCharacter(
  56976. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56977. {
  56978. snivy_front: {
  56979. height: math.unit(2, "feet"),
  56980. weight: math.unit(17.9, "lb"),
  56981. name: "Front",
  56982. image: {
  56983. source: "./media/characters/robin-phox/snivy-front.svg",
  56984. extra: 569/504,
  56985. bottom: 33/602
  56986. },
  56987. form: "snivy",
  56988. default: true
  56989. },
  56990. snivy_frontNsfw: {
  56991. height: math.unit(2, "feet"),
  56992. weight: math.unit(17.9, "lb"),
  56993. name: "Front (NSFW)",
  56994. image: {
  56995. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56996. extra: 569/504,
  56997. bottom: 33/602
  56998. },
  56999. form: "snivy",
  57000. },
  57001. snivy_back: {
  57002. height: math.unit(2, "feet"),
  57003. weight: math.unit(17.9, "lb"),
  57004. name: "Back",
  57005. image: {
  57006. source: "./media/characters/robin-phox/snivy-back.svg",
  57007. extra: 577/508,
  57008. bottom: 21/598
  57009. },
  57010. form: "snivy",
  57011. },
  57012. snivy_foot: {
  57013. height: math.unit(0.68, "feet"),
  57014. name: "Foot",
  57015. image: {
  57016. source: "./media/characters/robin-phox/snivy-foot.svg"
  57017. },
  57018. form: "snivy",
  57019. },
  57020. snivy_sole: {
  57021. height: math.unit(0.68, "feet"),
  57022. name: "Sole",
  57023. image: {
  57024. source: "./media/characters/robin-phox/snivy-sole.svg"
  57025. },
  57026. form: "snivy",
  57027. },
  57028. yoshi_front: {
  57029. height: math.unit(6, "feet"),
  57030. weight: math.unit(150, "lb"),
  57031. name: "Front",
  57032. image: {
  57033. source: "./media/characters/robin-phox/yoshi-front.svg",
  57034. extra: 890/792,
  57035. bottom: 29/919
  57036. },
  57037. form: "yoshi",
  57038. default: true
  57039. },
  57040. yoshi_frontNsfw: {
  57041. height: math.unit(6, "feet"),
  57042. weight: math.unit(150, "lb"),
  57043. name: "Front (NSFW)",
  57044. image: {
  57045. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57046. extra: 890/792,
  57047. bottom: 29/919
  57048. },
  57049. form: "yoshi",
  57050. },
  57051. yoshi_back: {
  57052. height: math.unit(6, "feet"),
  57053. weight: math.unit(150, "lb"),
  57054. name: "Back",
  57055. image: {
  57056. source: "./media/characters/robin-phox/yoshi-back.svg",
  57057. extra: 890/792,
  57058. bottom: 29/919
  57059. },
  57060. form: "yoshi",
  57061. },
  57062. yoshi_foot: {
  57063. height: math.unit(1.5, "feet"),
  57064. name: "Foot",
  57065. image: {
  57066. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57067. },
  57068. form: "yoshi",
  57069. },
  57070. delphox_front: {
  57071. height: math.unit(4 + 11/12, "feet"),
  57072. weight: math.unit(86, "lb"),
  57073. name: "Front",
  57074. image: {
  57075. source: "./media/characters/robin-phox/delphox-front.svg",
  57076. extra: 1266/1069,
  57077. bottom: 32/1298
  57078. },
  57079. form: "delphox",
  57080. default: true
  57081. },
  57082. delphox_frontNsfw: {
  57083. height: math.unit(4 + 11/12, "feet"),
  57084. weight: math.unit(86, "lb"),
  57085. name: "Front (NSFW)",
  57086. image: {
  57087. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57088. extra: 1266/1069,
  57089. bottom: 32/1298
  57090. },
  57091. form: "delphox",
  57092. },
  57093. delphox_back: {
  57094. height: math.unit(4 + 11/12, "feet"),
  57095. weight: math.unit(86, "lb"),
  57096. name: "Back",
  57097. image: {
  57098. source: "./media/characters/robin-phox/delphox-back.svg",
  57099. extra: 1269/1083,
  57100. bottom: 15/1284
  57101. },
  57102. form: "delphox",
  57103. },
  57104. mienshao_front: {
  57105. height: math.unit(4 + 7/12, "feet"),
  57106. weight: math.unit(78.3, "lb"),
  57107. name: "Front",
  57108. image: {
  57109. source: "./media/characters/robin-phox/mienshao-front.svg",
  57110. extra: 1052/970,
  57111. bottom: 108/1160
  57112. },
  57113. form: "mienshao",
  57114. default: true
  57115. },
  57116. mienshao_frontNsfw: {
  57117. height: math.unit(4 + 7/12, "feet"),
  57118. weight: math.unit(78.3, "lb"),
  57119. name: "Front (NSFW)",
  57120. image: {
  57121. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57122. extra: 1052/970,
  57123. bottom: 108/1160
  57124. },
  57125. form: "mienshao",
  57126. },
  57127. mienshao_back: {
  57128. height: math.unit(4 + 7/12, "feet"),
  57129. weight: math.unit(78.3, "lb"),
  57130. name: "Back",
  57131. image: {
  57132. source: "./media/characters/robin-phox/mienshao-back.svg",
  57133. extra: 1102/982,
  57134. bottom: 32/1134
  57135. },
  57136. form: "mienshao",
  57137. },
  57138. inteleon_front: {
  57139. height: math.unit(6 + 3/12, "feet"),
  57140. weight: math.unit(99.6, "lb"),
  57141. name: "Front",
  57142. image: {
  57143. source: "./media/characters/robin-phox/inteleon-front.svg",
  57144. extra: 910/799,
  57145. bottom: 76/986
  57146. },
  57147. form: "inteleon",
  57148. default: true
  57149. },
  57150. inteleon_frontNsfw: {
  57151. height: math.unit(6 + 3/12, "feet"),
  57152. weight: math.unit(99.6, "lb"),
  57153. name: "Front (NSFW)",
  57154. image: {
  57155. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57156. extra: 910/799,
  57157. bottom: 76/986
  57158. },
  57159. form: "inteleon",
  57160. },
  57161. inteleon_back: {
  57162. height: math.unit(6 + 3/12, "feet"),
  57163. weight: math.unit(99.6, "lb"),
  57164. name: "Back",
  57165. image: {
  57166. source: "./media/characters/robin-phox/inteleon-back.svg",
  57167. extra: 907/796,
  57168. bottom: 25/932
  57169. },
  57170. form: "inteleon",
  57171. },
  57172. reshiram_front: {
  57173. height: math.unit(10 + 6/12, "feet"),
  57174. weight: math.unit(727.5, "lb"),
  57175. name: "Front",
  57176. image: {
  57177. source: "./media/characters/robin-phox/reshiram-front.svg",
  57178. extra: 1198/940,
  57179. bottom: 123/1321
  57180. },
  57181. form: "reshiram",
  57182. },
  57183. reshiram_frontNsfw: {
  57184. height: math.unit(10 + 6/12, "feet"),
  57185. weight: math.unit(727.5, "lb"),
  57186. name: "Front-nsfw",
  57187. image: {
  57188. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57189. extra: 1198/940,
  57190. bottom: 123/1321
  57191. },
  57192. form: "reshiram",
  57193. },
  57194. reshiram_back: {
  57195. height: math.unit(10 + 6/12, "feet"),
  57196. weight: math.unit(727.5, "lb"),
  57197. name: "Back",
  57198. image: {
  57199. source: "./media/characters/robin-phox/reshiram-back.svg",
  57200. extra: 1024/904,
  57201. bottom: 85/1109
  57202. },
  57203. form: "reshiram",
  57204. },
  57205. samurott_front: {
  57206. height: math.unit(8, "feet"),
  57207. weight: math.unit(208.6, "lb"),
  57208. name: "Front",
  57209. image: {
  57210. source: "./media/characters/robin-phox/samurott-front.svg",
  57211. extra: 1048/984,
  57212. bottom: 100/1148
  57213. },
  57214. form: "samurott",
  57215. },
  57216. samurott_frontNsfw: {
  57217. height: math.unit(8, "feet"),
  57218. weight: math.unit(208.6, "lb"),
  57219. name: "Front-nsfw",
  57220. image: {
  57221. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57222. extra: 1048/984,
  57223. bottom: 100/1148
  57224. },
  57225. form: "samurott",
  57226. },
  57227. samurott_back: {
  57228. height: math.unit(8, "feet"),
  57229. weight: math.unit(208.6, "lb"),
  57230. name: "Back",
  57231. image: {
  57232. source: "./media/characters/robin-phox/samurott-back.svg",
  57233. extra: 1110/1042,
  57234. bottom: 12/1122
  57235. },
  57236. form: "samurott",
  57237. },
  57238. samurott_feral: {
  57239. height: math.unit(4 + 11/12, "feet"),
  57240. weight: math.unit(208.6, "lb"),
  57241. name: "Feral",
  57242. image: {
  57243. source: "./media/characters/robin-phox/samurott-feral.svg",
  57244. extra: 766/681,
  57245. bottom: 108/874
  57246. },
  57247. form: "samurott",
  57248. },
  57249. },
  57250. [
  57251. {
  57252. name: "Normal",
  57253. height: math.unit(2, "feet"),
  57254. default: true,
  57255. form: "snivy"
  57256. },
  57257. {
  57258. name: "Normal",
  57259. height: math.unit(6, "feet"),
  57260. default: true,
  57261. form: "yoshi"
  57262. },
  57263. {
  57264. name: "Normal",
  57265. height: math.unit(4 + 11/12, "feet"),
  57266. default: true,
  57267. form: "delphox"
  57268. },
  57269. {
  57270. name: "Normal",
  57271. height: math.unit(4 + 7/12, "feet"),
  57272. default: true,
  57273. form: "mienshao"
  57274. },
  57275. {
  57276. name: "Normal",
  57277. height: math.unit(6 + 3/12, "feet"),
  57278. default: true,
  57279. form: "inteleon"
  57280. },
  57281. {
  57282. name: "Normal",
  57283. height: math.unit(10 + 6/12, "feet"),
  57284. default: true,
  57285. form: "reshiram"
  57286. },
  57287. {
  57288. name: "Normal",
  57289. height: math.unit(8, "feet"),
  57290. default: true,
  57291. form: "samurott"
  57292. },
  57293. {
  57294. name: "Macro",
  57295. height: math.unit(500, "feet"),
  57296. allForms: true
  57297. },
  57298. {
  57299. name: "Mega Macro",
  57300. height: math.unit(10, "earths"),
  57301. allForms: true
  57302. },
  57303. {
  57304. name: "Giga Macro",
  57305. height: math.unit(1, "galaxy"),
  57306. allForms: true
  57307. },
  57308. {
  57309. name: "Godly Macro",
  57310. height: math.unit(1e10, "multiverses"),
  57311. allForms: true
  57312. },
  57313. ],
  57314. {
  57315. "snivy": {
  57316. name: "Snivy",
  57317. default: true
  57318. },
  57319. "yoshi": {
  57320. name: "Yoshi",
  57321. },
  57322. "delphox": {
  57323. name: "Delphox",
  57324. },
  57325. "mienshao": {
  57326. name: "Mienshao",
  57327. },
  57328. "inteleon": {
  57329. name: "Inteleon",
  57330. },
  57331. "reshiram": {
  57332. name: "Reshiram",
  57333. },
  57334. "samurott": {
  57335. name: "Samurott",
  57336. },
  57337. }
  57338. ))
  57339. characterMakers.push(() => makeCharacter(
  57340. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57341. {
  57342. front: {
  57343. height: math.unit(4, "feet"),
  57344. name: "Front",
  57345. image: {
  57346. source: "./media/characters/ash-leung/front.svg",
  57347. extra: 1916/1792,
  57348. bottom: 50/1966
  57349. }
  57350. },
  57351. },
  57352. [
  57353. {
  57354. name: "Atomic",
  57355. height: math.unit(1, "angstrom")
  57356. },
  57357. {
  57358. name: "Microscopic",
  57359. height: math.unit(4000, "angstroms")
  57360. },
  57361. {
  57362. name: "Speck",
  57363. height: math.unit(1, "mm")
  57364. },
  57365. {
  57366. name: "Small",
  57367. height: math.unit(1, "inch")
  57368. },
  57369. {
  57370. name: "Normal",
  57371. height: math.unit(4, "feet"),
  57372. default: true
  57373. },
  57374. ]
  57375. ))
  57376. characterMakers.push(() => makeCharacter(
  57377. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57378. {
  57379. frontDressed: {
  57380. height: math.unit(2.08, "meters"),
  57381. weight: math.unit(175, "lb"),
  57382. name: "Front (Dressed)",
  57383. image: {
  57384. source: "./media/characters/carie/front-dressed.svg",
  57385. extra: 456/417,
  57386. bottom: 7/463
  57387. }
  57388. },
  57389. backDressed: {
  57390. height: math.unit(2.08, "meters"),
  57391. weight: math.unit(175, "lb"),
  57392. name: "Back (Dressed)",
  57393. image: {
  57394. source: "./media/characters/carie/back-dressed.svg",
  57395. extra: 455/414,
  57396. bottom: 11/466
  57397. }
  57398. },
  57399. front: {
  57400. height: math.unit(2, "meters"),
  57401. weight: math.unit(175, "lb"),
  57402. name: "Front",
  57403. image: {
  57404. source: "./media/characters/carie/front.svg",
  57405. extra: 438/399,
  57406. bottom: 12/450
  57407. }
  57408. },
  57409. back: {
  57410. height: math.unit(2, "meters"),
  57411. weight: math.unit(175, "lb"),
  57412. name: "Back",
  57413. image: {
  57414. source: "./media/characters/carie/back.svg",
  57415. extra: 438/397,
  57416. bottom: 7/445
  57417. }
  57418. },
  57419. },
  57420. [
  57421. {
  57422. name: "Normal",
  57423. height: math.unit(2.08, "meters"),
  57424. default: true
  57425. },
  57426. {
  57427. name: "Macro",
  57428. height: math.unit(2.08e3, "meters")
  57429. },
  57430. {
  57431. name: "Mega Macro",
  57432. height: math.unit(2.08e6, "meters")
  57433. },
  57434. {
  57435. name: "Giga Macro",
  57436. height: math.unit(2.08e9, "meters")
  57437. },
  57438. {
  57439. name: "Tera Macro",
  57440. height: math.unit(2.08e12, "meters")
  57441. },
  57442. {
  57443. name: "Peta Macro",
  57444. height: math.unit(2.08e15, "meters")
  57445. },
  57446. {
  57447. name: "Exa Macro",
  57448. height: math.unit(2.08e18, "meters")
  57449. },
  57450. {
  57451. name: "Zetta Macro",
  57452. height: math.unit(2.08e21, "meters")
  57453. },
  57454. {
  57455. name: "Yotta Macro",
  57456. height: math.unit(2.08e24, "meters")
  57457. },
  57458. ]
  57459. ))
  57460. characterMakers.push(() => makeCharacter(
  57461. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57462. {
  57463. front: {
  57464. height: math.unit(5 + 2/12, "feet"),
  57465. weight: math.unit(120, "lb"),
  57466. name: "Front",
  57467. image: {
  57468. source: "./media/characters/sai-bree/front.svg",
  57469. extra: 1843/1702,
  57470. bottom: 91/1934
  57471. }
  57472. },
  57473. back: {
  57474. height: math.unit(5 + 2/12, "feet"),
  57475. weight: math.unit(120, "lb"),
  57476. name: "Back",
  57477. image: {
  57478. source: "./media/characters/sai-bree/back.svg",
  57479. extra: 1809/1637,
  57480. bottom: 56/1865
  57481. }
  57482. },
  57483. },
  57484. [
  57485. {
  57486. name: "Normal",
  57487. height: math.unit(5 + 2/12, "feet"),
  57488. default: true
  57489. },
  57490. {
  57491. name: "Macro",
  57492. height: math.unit(500, "feet")
  57493. },
  57494. ]
  57495. ))
  57496. characterMakers.push(() => makeCharacter(
  57497. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57498. {
  57499. side: {
  57500. height: math.unit(0.77, "meters"),
  57501. weight: math.unit(120, "lb"),
  57502. name: "Side",
  57503. image: {
  57504. source: "./media/characters/davwyn/side.svg",
  57505. extra: 1557/1225,
  57506. bottom: 131/1688
  57507. }
  57508. },
  57509. front: {
  57510. height: math.unit(0.835410, "meters"),
  57511. weight: math.unit(120, "lb"),
  57512. name: "Front",
  57513. image: {
  57514. source: "./media/characters/davwyn/front.svg",
  57515. extra: 870/843,
  57516. bottom: 175/1045
  57517. }
  57518. },
  57519. },
  57520. [
  57521. {
  57522. name: "Minidrake",
  57523. height: math.unit(0.77/4, "meters")
  57524. },
  57525. {
  57526. name: "Normal",
  57527. height: math.unit(0.77, "meters"),
  57528. default: true
  57529. },
  57530. ]
  57531. ))
  57532. characterMakers.push(() => makeCharacter(
  57533. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57534. {
  57535. front: {
  57536. height: math.unit(10 + 3/12, "feet"),
  57537. weight: math.unit(2857, "lb"),
  57538. name: "Front",
  57539. image: {
  57540. source: "./media/characters/balans/front.svg",
  57541. extra: 427/402,
  57542. bottom: 26/453
  57543. }
  57544. },
  57545. side: {
  57546. height: math.unit(10 + 3/12, "feet"),
  57547. weight: math.unit(2857, "lb"),
  57548. name: "Side",
  57549. image: {
  57550. source: "./media/characters/balans/side.svg",
  57551. extra: 397/371,
  57552. bottom: 17/414
  57553. }
  57554. },
  57555. back: {
  57556. height: math.unit(10 + 3/12, "feet"),
  57557. weight: math.unit(2857, "lb"),
  57558. name: "Back",
  57559. image: {
  57560. source: "./media/characters/balans/back.svg",
  57561. extra: 408/381,
  57562. bottom: 14/422
  57563. }
  57564. },
  57565. hand: {
  57566. height: math.unit(1.15, "feet"),
  57567. name: "Hand",
  57568. image: {
  57569. source: "./media/characters/balans/hand.svg"
  57570. }
  57571. },
  57572. footRest: {
  57573. height: math.unit(3.1, "feet"),
  57574. name: "Foot (Rest)",
  57575. image: {
  57576. source: "./media/characters/balans/foot-rest.svg"
  57577. }
  57578. },
  57579. footActive: {
  57580. height: math.unit(3.5, "feet"),
  57581. name: "Foot (Active)",
  57582. image: {
  57583. source: "./media/characters/balans/foot-active.svg"
  57584. }
  57585. },
  57586. },
  57587. [
  57588. {
  57589. name: "Normal",
  57590. height: math.unit(10 + 3/12, "feet"),
  57591. default: true
  57592. },
  57593. ]
  57594. ))
  57595. characterMakers.push(() => makeCharacter(
  57596. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57597. {
  57598. side: {
  57599. height: math.unit(9, "meters"),
  57600. weight: math.unit(114, "tonnes"),
  57601. name: "Side",
  57602. image: {
  57603. source: "./media/characters/eldkveikir/side.svg",
  57604. extra: 1927/338,
  57605. bottom: 42/1969
  57606. }
  57607. },
  57608. sitting: {
  57609. height: math.unit(13.4, "meters"),
  57610. weight: math.unit(114, "tonnes"),
  57611. name: "Sitting",
  57612. image: {
  57613. source: "./media/characters/eldkveikir/sitting.svg",
  57614. extra: 1108/963,
  57615. bottom: 610/1718
  57616. }
  57617. },
  57618. maw: {
  57619. height: math.unit(8.36, "meters"),
  57620. name: "Maw",
  57621. image: {
  57622. source: "./media/characters/eldkveikir/maw.svg"
  57623. }
  57624. },
  57625. hand: {
  57626. height: math.unit(4.84, "meters"),
  57627. name: "Hand",
  57628. image: {
  57629. source: "./media/characters/eldkveikir/hand.svg"
  57630. }
  57631. },
  57632. foot: {
  57633. height: math.unit(6.9, "meters"),
  57634. name: "Foot",
  57635. image: {
  57636. source: "./media/characters/eldkveikir/foot.svg"
  57637. }
  57638. },
  57639. genitals: {
  57640. height: math.unit(9.6, "meters"),
  57641. name: "Genitals",
  57642. image: {
  57643. source: "./media/characters/eldkveikir/genitals.svg"
  57644. }
  57645. },
  57646. },
  57647. [
  57648. {
  57649. name: "Normal",
  57650. height: math.unit(9, "meters"),
  57651. default: true
  57652. },
  57653. ]
  57654. ))
  57655. characterMakers.push(() => makeCharacter(
  57656. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57657. {
  57658. front: {
  57659. height: math.unit(14, "feet"),
  57660. weight: math.unit(4100, "lb"),
  57661. name: "Front",
  57662. image: {
  57663. source: "./media/characters/arrow/front.svg",
  57664. extra: 330/318,
  57665. bottom: 56/386
  57666. }
  57667. },
  57668. },
  57669. [
  57670. {
  57671. name: "Normal",
  57672. height: math.unit(14, "feet"),
  57673. default: true
  57674. },
  57675. {
  57676. name: "Minimacro",
  57677. height: math.unit(63, "feet")
  57678. },
  57679. {
  57680. name: "Macro",
  57681. height: math.unit(630, "feet")
  57682. },
  57683. {
  57684. name: "Megamacro",
  57685. height: math.unit(12600, "feet")
  57686. },
  57687. {
  57688. name: "Gigamacro",
  57689. height: math.unit(18000, "miles")
  57690. },
  57691. ]
  57692. ))
  57693. characterMakers.push(() => makeCharacter(
  57694. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57695. {
  57696. front: {
  57697. height: math.unit(10, "feet"),
  57698. weight: math.unit(2.4, "tons"),
  57699. name: "Front",
  57700. image: {
  57701. source: "./media/characters/3yk-k0-unit/front.svg",
  57702. extra: 573/561,
  57703. bottom: 33/606
  57704. }
  57705. },
  57706. back: {
  57707. height: math.unit(10, "feet"),
  57708. weight: math.unit(2.4, "tons"),
  57709. name: "Back",
  57710. image: {
  57711. source: "./media/characters/3yk-k0-unit/back.svg",
  57712. extra: 614/573,
  57713. bottom: 32/646
  57714. }
  57715. },
  57716. maw: {
  57717. height: math.unit(2.15, "feet"),
  57718. name: "Maw",
  57719. image: {
  57720. source: "./media/characters/3yk-k0-unit/maw.svg"
  57721. }
  57722. },
  57723. },
  57724. [
  57725. {
  57726. name: "Normal",
  57727. height: math.unit(10, "feet"),
  57728. default: true
  57729. },
  57730. ]
  57731. ))
  57732. characterMakers.push(() => makeCharacter(
  57733. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57734. {
  57735. front: {
  57736. height: math.unit(8 + 8/12, "feet"),
  57737. name: "Front",
  57738. image: {
  57739. source: "./media/characters/nemo/front.svg",
  57740. extra: 1308/1217,
  57741. bottom: 57/1365
  57742. }
  57743. },
  57744. },
  57745. [
  57746. {
  57747. name: "Normal",
  57748. height: math.unit(8 + 8/12, "feet"),
  57749. default: true
  57750. },
  57751. ]
  57752. ))
  57753. characterMakers.push(() => makeCharacter(
  57754. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57755. {
  57756. front: {
  57757. height: math.unit(8, "feet"),
  57758. weight: math.unit(760, "lb"),
  57759. name: "Front",
  57760. image: {
  57761. source: "./media/characters/rexx/front.svg",
  57762. extra: 786/750,
  57763. bottom: 17/803
  57764. },
  57765. extraAttributes: {
  57766. "pawLength": {
  57767. name: "Paw Length",
  57768. power: 1,
  57769. type: "length",
  57770. base: math.unit(27, "inches")
  57771. },
  57772. }
  57773. },
  57774. },
  57775. [
  57776. {
  57777. name: "Micro",
  57778. height: math.unit(2, "inches")
  57779. },
  57780. {
  57781. name: "Normal",
  57782. height: math.unit(8, "feet"),
  57783. default: true
  57784. },
  57785. {
  57786. name: "Macro",
  57787. height: math.unit(150, "feet")
  57788. },
  57789. ]
  57790. ))
  57791. characterMakers.push(() => makeCharacter(
  57792. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57793. {
  57794. front: {
  57795. height: math.unit(18, "feet"),
  57796. weight: math.unit(1975, "lb"),
  57797. name: "Front",
  57798. image: {
  57799. source: "./media/characters/draco/front.svg",
  57800. extra: 1325/1241,
  57801. bottom: 83/1408
  57802. }
  57803. },
  57804. back: {
  57805. height: math.unit(18, "feet"),
  57806. weight: math.unit(1975, "lb"),
  57807. name: "Back",
  57808. image: {
  57809. source: "./media/characters/draco/back.svg",
  57810. extra: 1332/1250,
  57811. bottom: 43/1375
  57812. }
  57813. },
  57814. dick: {
  57815. height: math.unit(7.5, "feet"),
  57816. name: "Dick",
  57817. image: {
  57818. source: "./media/characters/draco/dick.svg"
  57819. }
  57820. },
  57821. },
  57822. [
  57823. {
  57824. name: "Normal",
  57825. height: math.unit(18, "feet"),
  57826. default: true
  57827. },
  57828. ]
  57829. ))
  57830. characterMakers.push(() => makeCharacter(
  57831. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57832. {
  57833. front: {
  57834. height: math.unit(3.2, "meters"),
  57835. name: "Front",
  57836. image: {
  57837. source: "./media/characters/harriett/front.svg",
  57838. extra: 1966/1915,
  57839. bottom: 9/1975
  57840. }
  57841. },
  57842. },
  57843. [
  57844. {
  57845. name: "Normal",
  57846. height: math.unit(3.2, "meters"),
  57847. default: true
  57848. },
  57849. ]
  57850. ))
  57851. characterMakers.push(() => makeCharacter(
  57852. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57853. {
  57854. sitting: {
  57855. height: math.unit(0.8, "meter"),
  57856. name: "Sitting",
  57857. image: {
  57858. source: "./media/characters/serpentus/sitting.svg",
  57859. extra: 293/290,
  57860. bottom: 140/433
  57861. }
  57862. },
  57863. },
  57864. [
  57865. {
  57866. name: "Normal",
  57867. height: math.unit(0.8, "meter"),
  57868. default: true
  57869. },
  57870. ]
  57871. ))
  57872. characterMakers.push(() => makeCharacter(
  57873. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57874. {
  57875. front: {
  57876. height: math.unit(5.7174385736, "feet"),
  57877. name: "Front",
  57878. image: {
  57879. source: "./media/characters/nova-polecat/front.svg",
  57880. extra: 1317/1216,
  57881. bottom: 92/1409
  57882. }
  57883. },
  57884. },
  57885. [
  57886. {
  57887. name: "Normal",
  57888. height: math.unit(5.7174385736, "feet"),
  57889. default: true
  57890. },
  57891. ]
  57892. ))
  57893. characterMakers.push(() => makeCharacter(
  57894. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57895. {
  57896. front: {
  57897. height: math.unit(5 + 4/12, "feet"),
  57898. weight: math.unit(250, "lb"),
  57899. name: "Front",
  57900. image: {
  57901. source: "./media/characters/mook/front.svg",
  57902. extra: 1088/1037,
  57903. bottom: 132/1220
  57904. }
  57905. },
  57906. back: {
  57907. height: math.unit(5 + 1/12, "feet"),
  57908. weight: math.unit(250, "lb"),
  57909. name: "Back",
  57910. image: {
  57911. source: "./media/characters/mook/back.svg",
  57912. extra: 1184/905,
  57913. bottom: 96/1280
  57914. }
  57915. },
  57916. head: {
  57917. height: math.unit(1.85, "feet"),
  57918. name: "Head",
  57919. image: {
  57920. source: "./media/characters/mook/head.svg"
  57921. }
  57922. },
  57923. hand: {
  57924. height: math.unit(1.9, "feet"),
  57925. name: "Hand",
  57926. image: {
  57927. source: "./media/characters/mook/hand.svg"
  57928. }
  57929. },
  57930. palm: {
  57931. height: math.unit(1.84, "feet"),
  57932. name: "Palm",
  57933. image: {
  57934. source: "./media/characters/mook/palm.svg"
  57935. }
  57936. },
  57937. foot: {
  57938. height: math.unit(1.44, "feet"),
  57939. name: "Foot",
  57940. image: {
  57941. source: "./media/characters/mook/foot.svg"
  57942. }
  57943. },
  57944. sole: {
  57945. height: math.unit(1.44, "feet"),
  57946. name: "Sole",
  57947. image: {
  57948. source: "./media/characters/mook/sole.svg"
  57949. }
  57950. },
  57951. },
  57952. [
  57953. {
  57954. name: "Normal",
  57955. height: math.unit(5 + 4/12, "feet"),
  57956. default: true
  57957. },
  57958. {
  57959. name: "Big",
  57960. height: math.unit(12, "feet")
  57961. },
  57962. ]
  57963. ))
  57964. characterMakers.push(() => makeCharacter(
  57965. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57966. {
  57967. front: {
  57968. height: math.unit(6 + 10/12, "feet"),
  57969. weight: math.unit(233, "lb"),
  57970. name: "Front",
  57971. image: {
  57972. source: "./media/characters/kayla/front.svg",
  57973. extra: 1850/1775,
  57974. bottom: 65/1915
  57975. }
  57976. },
  57977. },
  57978. [
  57979. {
  57980. name: "Normal",
  57981. height: math.unit(6 + 10/12, "feet"),
  57982. default: true
  57983. },
  57984. {
  57985. name: "Amazonian",
  57986. height: math.unit(12 + 5/12, "feet")
  57987. },
  57988. {
  57989. name: "Mini Giantess",
  57990. height: math.unit(26, "feet")
  57991. },
  57992. {
  57993. name: "Giantess",
  57994. height: math.unit(200, "feet")
  57995. },
  57996. {
  57997. name: "Mega Giantess",
  57998. height: math.unit(2500, "feet")
  57999. },
  58000. {
  58001. name: "City Sized",
  58002. height: math.unit(50, "miles")
  58003. },
  58004. {
  58005. name: "Country Sized",
  58006. height: math.unit(500, "miles")
  58007. },
  58008. {
  58009. name: "Continent Sized",
  58010. height: math.unit(2500, "miles")
  58011. },
  58012. {
  58013. name: "Planet Sized",
  58014. height: math.unit(10000, "miles")
  58015. },
  58016. {
  58017. name: "Star Sized",
  58018. height: math.unit(5e6, "miles")
  58019. },
  58020. {
  58021. name: "Solar System Sized",
  58022. height: math.unit(125, "AU")
  58023. },
  58024. {
  58025. name: "Galaxy Sized",
  58026. height: math.unit(300e3, "lightyears")
  58027. },
  58028. {
  58029. name: "Universe Sized",
  58030. height: math.unit(200e9, "lightyears")
  58031. },
  58032. {
  58033. name: "Multiverse Sized",
  58034. height: math.unit(20, "exauniverses")
  58035. },
  58036. {
  58037. name: "Mother of Existence",
  58038. height: math.unit(1e6, "yottauniverses")
  58039. },
  58040. ]
  58041. ))
  58042. characterMakers.push(() => makeCharacter(
  58043. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58044. {
  58045. side: {
  58046. height: math.unit(9.5, "meters"),
  58047. name: "Side",
  58048. image: {
  58049. source: "./media/characters/kulve-ragnarok/side.svg",
  58050. extra: 364/326,
  58051. bottom: 50/414
  58052. }
  58053. },
  58054. },
  58055. [
  58056. {
  58057. name: "Normal",
  58058. height: math.unit(9.5, "meters"),
  58059. default: true
  58060. },
  58061. ]
  58062. ))
  58063. characterMakers.push(() => makeCharacter(
  58064. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58065. {
  58066. front: {
  58067. height: math.unit(8 + 9/12, "feet"),
  58068. name: "Front",
  58069. image: {
  58070. source: "./media/characters/atlas-goat/front.svg",
  58071. extra: 1462/1323,
  58072. bottom: 12/1474
  58073. }
  58074. },
  58075. },
  58076. [
  58077. {
  58078. name: "Normal",
  58079. height: math.unit(8 + 9/12, "feet"),
  58080. default: true
  58081. },
  58082. {
  58083. name: "Skyline",
  58084. height: math.unit(845, "feet")
  58085. },
  58086. {
  58087. name: "Orbital",
  58088. height: math.unit(93000, "miles")
  58089. },
  58090. {
  58091. name: "Constellation",
  58092. height: math.unit(27000, "lightyears")
  58093. },
  58094. ]
  58095. ))
  58096. characterMakers.push(() => makeCharacter(
  58097. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58098. {
  58099. side: {
  58100. height: math.unit(1.8, "meters"),
  58101. weight: math.unit(120, "kg"),
  58102. name: "Side",
  58103. image: {
  58104. source: "./media/characters/xie-ling/side.svg",
  58105. extra: 646/574,
  58106. bottom: 44/690
  58107. }
  58108. },
  58109. },
  58110. [
  58111. {
  58112. name: "Tiny",
  58113. height: math.unit(1.80, "meters")
  58114. },
  58115. {
  58116. name: "Small",
  58117. height: math.unit(6, "meters")
  58118. },
  58119. {
  58120. name: "Medium",
  58121. height: math.unit(15, "meters")
  58122. },
  58123. {
  58124. name: "Normal",
  58125. height: math.unit(30, "meters"),
  58126. default: true
  58127. },
  58128. {
  58129. name: "Above Normal",
  58130. height: math.unit(60, "meters")
  58131. },
  58132. {
  58133. name: "Big",
  58134. height: math.unit(220, "meters")
  58135. },
  58136. {
  58137. name: "Giant",
  58138. height: math.unit(2.2, "km")
  58139. },
  58140. {
  58141. name: "Macro",
  58142. height: math.unit(25, "km")
  58143. },
  58144. {
  58145. name: "Mega Macro",
  58146. height: math.unit(350, "km")
  58147. },
  58148. {
  58149. name: "Mega Macro+",
  58150. height: math.unit(5000, "km")
  58151. },
  58152. {
  58153. name: "Goddess",
  58154. height: math.unit(3, "multiverses")
  58155. },
  58156. ]
  58157. ))
  58158. characterMakers.push(() => makeCharacter(
  58159. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58160. {
  58161. frontSfw: {
  58162. height: math.unit(5 + 11/12, "feet"),
  58163. weight: math.unit(210, "lb"),
  58164. name: "Front",
  58165. image: {
  58166. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58167. extra: 1928/1821,
  58168. bottom: 45/1973
  58169. }
  58170. },
  58171. backSfw: {
  58172. height: math.unit(5 + 11/12, "feet"),
  58173. weight: math.unit(210, "lb"),
  58174. name: "Back",
  58175. image: {
  58176. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58177. extra: 1920/1813,
  58178. bottom: 34/1954
  58179. }
  58180. },
  58181. frontNsfw: {
  58182. height: math.unit(5 + 11/12, "feet"),
  58183. weight: math.unit(210, "lb"),
  58184. name: "Front (NSFW)",
  58185. image: {
  58186. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58187. extra: 1928/1821,
  58188. bottom: 45/1973
  58189. }
  58190. },
  58191. backNsfw: {
  58192. height: math.unit(5 + 11/12, "feet"),
  58193. weight: math.unit(210, "lb"),
  58194. name: "Back (NSFW)",
  58195. image: {
  58196. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58197. extra: 1920/1813,
  58198. bottom: 34/1954
  58199. }
  58200. },
  58201. },
  58202. [
  58203. {
  58204. name: "Normal",
  58205. height: math.unit(5 + 11/12, "feet"),
  58206. default: true
  58207. },
  58208. {
  58209. name: "Goddess",
  58210. height: math.unit(20 + 3/12, "feet")
  58211. },
  58212. {
  58213. name: "Breaker of Man",
  58214. height: math.unit(329 + 9/12, "feet")
  58215. },
  58216. {
  58217. name: "Solar Justice",
  58218. height: math.unit(0.6, "solarradii")
  58219. },
  58220. {
  58221. name: "She Who Judges",
  58222. height: math.unit(1, "universe")
  58223. },
  58224. ]
  58225. ))
  58226. characterMakers.push(() => makeCharacter(
  58227. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58228. {
  58229. casual_front: {
  58230. height: math.unit(6 + 1/12, "feet"),
  58231. weight: math.unit(190, "lb"),
  58232. preyCapacity: math.unit(1, "people"),
  58233. name: "Front",
  58234. image: {
  58235. source: "./media/characters/managarmr/casual-front.svg",
  58236. extra: 411/381,
  58237. bottom: 15/426
  58238. },
  58239. extraAttributes: {
  58240. "pawSize": {
  58241. name: "Paw Size",
  58242. power: 1,
  58243. type: "length",
  58244. base: math.unit(0.2, "meters")
  58245. },
  58246. },
  58247. form: "casual",
  58248. },
  58249. casual_back: {
  58250. height: math.unit(6 + 1/12, "feet"),
  58251. weight: math.unit(190, "lb"),
  58252. preyCapacity: math.unit(1, "people"),
  58253. name: "Back",
  58254. image: {
  58255. source: "./media/characters/managarmr/casual-back.svg",
  58256. extra: 413/383,
  58257. bottom: 13/426
  58258. },
  58259. extraAttributes: {
  58260. "pawSize": {
  58261. name: "Paw Size",
  58262. power: 1,
  58263. type: "length",
  58264. base: math.unit(0.2, "meters")
  58265. },
  58266. },
  58267. form: "casual",
  58268. },
  58269. base_front: {
  58270. height: math.unit(7, "feet"),
  58271. weight: math.unit(210, "lb"),
  58272. preyCapacity: math.unit(2, "people"),
  58273. name: "Front",
  58274. image: {
  58275. source: "./media/characters/managarmr/base-front.svg",
  58276. extra: 580/485,
  58277. bottom: 32/612
  58278. },
  58279. extraAttributes: {
  58280. "wingspan": {
  58281. name: "Wingspan",
  58282. power: 1,
  58283. type: "length",
  58284. base: math.unit(4, "meters")
  58285. },
  58286. "pawSize": {
  58287. name: "Paw Size",
  58288. power: 1,
  58289. type: "length",
  58290. base: math.unit(0.2, "meters")
  58291. },
  58292. },
  58293. form: "base",
  58294. },
  58295. "true-divine_front": {
  58296. height: math.unit(40, "feet"),
  58297. weight: math.unit(39000, "lb"),
  58298. preyCapacity: math.unit(375, "people"),
  58299. name: "Front",
  58300. image: {
  58301. source: "./media/characters/managarmr/true-divine-front.svg",
  58302. extra: 725/573,
  58303. bottom: 120/845
  58304. },
  58305. extraAttributes: {
  58306. "wingspan": {
  58307. name: "Wingspan",
  58308. power: 1,
  58309. type: "length",
  58310. base: math.unit(20, "meters")
  58311. },
  58312. "pawSize": {
  58313. name: "Paw Size",
  58314. power: 1,
  58315. type: "length",
  58316. base: math.unit(1.5, "meters")
  58317. },
  58318. },
  58319. form: "true-divine",
  58320. },
  58321. },
  58322. [
  58323. {
  58324. name: "Normal",
  58325. height: math.unit(6 + 1/12, "feet"),
  58326. form: "casual",
  58327. default: true
  58328. },
  58329. {
  58330. name: "Normal",
  58331. height: math.unit(7, "feet"),
  58332. form: "base",
  58333. default: true
  58334. },
  58335. ],
  58336. {
  58337. "casual": {
  58338. name: "Casual",
  58339. default: true
  58340. },
  58341. "base": {
  58342. name: "Base",
  58343. },
  58344. "true-divine": {
  58345. name: "True Divine",
  58346. },
  58347. }
  58348. ))
  58349. characterMakers.push(() => makeCharacter(
  58350. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58351. {
  58352. front: {
  58353. height: math.unit(1.8, "meters"),
  58354. weight: math.unit(110, "kg"),
  58355. name: "Front",
  58356. image: {
  58357. source: "./media/characters/mystra/front.svg",
  58358. extra: 529/442,
  58359. bottom: 31/560
  58360. }
  58361. },
  58362. frontLewd: {
  58363. height: math.unit(1.8, "meters"),
  58364. weight: math.unit(110, "kg"),
  58365. name: "Front (Lewd)",
  58366. image: {
  58367. source: "./media/characters/mystra/front-lewd.svg",
  58368. extra: 529/442,
  58369. bottom: 31/560
  58370. }
  58371. },
  58372. head: {
  58373. height: math.unit(1.63, "feet"),
  58374. name: "Head",
  58375. image: {
  58376. source: "./media/characters/mystra/head.svg"
  58377. }
  58378. },
  58379. paw: {
  58380. height: math.unit(1.9, "feet"),
  58381. name: "Paw",
  58382. image: {
  58383. source: "./media/characters/mystra/paw.svg"
  58384. }
  58385. },
  58386. },
  58387. [
  58388. {
  58389. name: "Incognito",
  58390. height: math.unit(2.3, "meters")
  58391. },
  58392. {
  58393. name: "Small Macro",
  58394. height: math.unit(300, "meters")
  58395. },
  58396. {
  58397. name: "Small Mega",
  58398. height: math.unit(2, "km")
  58399. },
  58400. {
  58401. name: "Mega",
  58402. height: math.unit(30, "km")
  58403. },
  58404. {
  58405. name: "Small Giga",
  58406. height: math.unit(100, "km")
  58407. },
  58408. {
  58409. name: "Giga",
  58410. height: math.unit(1000, "km"),
  58411. default: true
  58412. },
  58413. {
  58414. name: "Continental",
  58415. height: math.unit(5000, "km")
  58416. },
  58417. {
  58418. name: "Terra",
  58419. height: math.unit(20000, "km")
  58420. },
  58421. {
  58422. name: "Solar",
  58423. height: math.unit(2e6, "km")
  58424. },
  58425. {
  58426. name: "Galactic",
  58427. height: math.unit(528502, "lightyears")
  58428. },
  58429. {
  58430. name: "Universal",
  58431. height: math.unit(20, "universes")
  58432. },
  58433. ]
  58434. ))
  58435. characterMakers.push(() => makeCharacter(
  58436. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58437. {
  58438. front: {
  58439. height: math.unit(2, "meters"),
  58440. weight: math.unit(140, "kg"),
  58441. name: "Front",
  58442. image: {
  58443. source: "./media/characters/caleb/front.svg",
  58444. extra: 873/817,
  58445. bottom: 47/920
  58446. }
  58447. },
  58448. back: {
  58449. height: math.unit(2, "meters"),
  58450. weight: math.unit(140, "kg"),
  58451. name: "Back",
  58452. image: {
  58453. source: "./media/characters/caleb/back.svg",
  58454. extra: 877/828,
  58455. bottom: 24/901
  58456. }
  58457. },
  58458. snakeTail: {
  58459. height: math.unit(1.44, "feet"),
  58460. name: "Snake Tail",
  58461. image: {
  58462. source: "./media/characters/caleb/snake-tail.svg"
  58463. }
  58464. },
  58465. dick: {
  58466. height: math.unit(2.6, "feet"),
  58467. name: "Dick",
  58468. image: {
  58469. source: "./media/characters/caleb/dick.svg"
  58470. }
  58471. },
  58472. },
  58473. [
  58474. {
  58475. name: "Incognito",
  58476. height: math.unit(3, "meters")
  58477. },
  58478. {
  58479. name: "Home Size",
  58480. height: math.unit(200, "meters"),
  58481. default: true
  58482. },
  58483. {
  58484. name: "Macro",
  58485. height: math.unit(500, "meters")
  58486. },
  58487. {
  58488. name: "Big Macro",
  58489. height: math.unit(5, "km")
  58490. },
  58491. {
  58492. name: "Giga",
  58493. height: math.unit(250, "km")
  58494. },
  58495. {
  58496. name: "Giga+",
  58497. height: math.unit(5000, "km")
  58498. },
  58499. {
  58500. name: "Small Terra",
  58501. height: math.unit(35e3, "km")
  58502. },
  58503. {
  58504. name: "Terra",
  58505. height: math.unit(2e6, "km")
  58506. },
  58507. {
  58508. name: "Terra+",
  58509. height: math.unit(1.5e6, "km")
  58510. },
  58511. ]
  58512. ))
  58513. characterMakers.push(() => makeCharacter(
  58514. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58515. {
  58516. front: {
  58517. height: math.unit(2, "meters"),
  58518. weight: math.unit(120, "kg"),
  58519. name: "Front",
  58520. image: {
  58521. source: "./media/characters/gilirian/front.svg",
  58522. extra: 805/737,
  58523. bottom: 13/818
  58524. }
  58525. },
  58526. side: {
  58527. height: math.unit(2, "meters"),
  58528. weight: math.unit(120, "kg"),
  58529. name: "Side",
  58530. image: {
  58531. source: "./media/characters/gilirian/side.svg",
  58532. extra: 810/746,
  58533. bottom: 6/816
  58534. }
  58535. },
  58536. back: {
  58537. height: math.unit(2, "meters"),
  58538. weight: math.unit(120, "kg"),
  58539. name: "Back",
  58540. image: {
  58541. source: "./media/characters/gilirian/back.svg",
  58542. extra: 815/745,
  58543. bottom: 15/830
  58544. }
  58545. },
  58546. frontNsfw: {
  58547. height: math.unit(2, "meters"),
  58548. weight: math.unit(120, "kg"),
  58549. name: "Front (NSFW)",
  58550. image: {
  58551. source: "./media/characters/gilirian/front-nsfw.svg",
  58552. extra: 805/737,
  58553. bottom: 13/818
  58554. }
  58555. },
  58556. sideNsfw: {
  58557. height: math.unit(2, "meters"),
  58558. weight: math.unit(120, "kg"),
  58559. name: "Side (NSFW)",
  58560. image: {
  58561. source: "./media/characters/gilirian/side-nsfw.svg",
  58562. extra: 810/746,
  58563. bottom: 6/816
  58564. }
  58565. },
  58566. },
  58567. [
  58568. {
  58569. name: "Incognito",
  58570. height: math.unit(2, "meters"),
  58571. default: true
  58572. },
  58573. {
  58574. name: "Macro",
  58575. height: math.unit(250, "meters")
  58576. },
  58577. {
  58578. name: "Big Macro",
  58579. height: math.unit(1500, "meters")
  58580. },
  58581. {
  58582. name: "Mega",
  58583. height: math.unit(40, "km")
  58584. },
  58585. {
  58586. name: "Giga",
  58587. height: math.unit(300, "km")
  58588. },
  58589. {
  58590. name: "Extra Giga",
  58591. height: math.unit(5000, "km")
  58592. },
  58593. {
  58594. name: "Small Terra",
  58595. height: math.unit(10e3, "km")
  58596. },
  58597. {
  58598. name: "Terra",
  58599. height: math.unit(3e5, "km")
  58600. },
  58601. {
  58602. name: "Galactic",
  58603. height: math.unit(369950, "lightyears")
  58604. },
  58605. ]
  58606. ))
  58607. characterMakers.push(() => makeCharacter(
  58608. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58609. {
  58610. front: {
  58611. height: math.unit(2.5, "meters"),
  58612. weight: math.unit(230, "lb"),
  58613. name: "Front",
  58614. image: {
  58615. source: "./media/characters/tarken/front.svg",
  58616. extra: 764/720,
  58617. bottom: 49/813
  58618. }
  58619. },
  58620. back: {
  58621. height: math.unit(2.5, "meters"),
  58622. weight: math.unit(230, "lb"),
  58623. name: "Back",
  58624. image: {
  58625. source: "./media/characters/tarken/back.svg",
  58626. extra: 756/720,
  58627. bottom: 35/791
  58628. }
  58629. },
  58630. frontNsfw: {
  58631. height: math.unit(2.5, "meters"),
  58632. weight: math.unit(230, "lb"),
  58633. name: "Front (NSFW)",
  58634. image: {
  58635. source: "./media/characters/tarken/front-nsfw.svg",
  58636. extra: 764/720,
  58637. bottom: 49/813
  58638. }
  58639. },
  58640. backNsfw: {
  58641. height: math.unit(2.5, "meters"),
  58642. weight: math.unit(230, "lb"),
  58643. name: "Back (NSFW)",
  58644. image: {
  58645. source: "./media/characters/tarken/back-nsfw.svg",
  58646. extra: 756/720,
  58647. bottom: 35/791
  58648. }
  58649. },
  58650. head: {
  58651. height: math.unit(2.22, "feet"),
  58652. name: "Head",
  58653. image: {
  58654. source: "./media/characters/tarken/head.svg"
  58655. }
  58656. },
  58657. tail: {
  58658. height: math.unit(5.25, "feet"),
  58659. name: "Tail",
  58660. image: {
  58661. source: "./media/characters/tarken/tail.svg"
  58662. }
  58663. },
  58664. dick: {
  58665. height: math.unit(1.95, "feet"),
  58666. name: "Dick",
  58667. image: {
  58668. source: "./media/characters/tarken/dick.svg"
  58669. }
  58670. },
  58671. hand: {
  58672. height: math.unit(1.78, "feet"),
  58673. name: "Hand",
  58674. image: {
  58675. source: "./media/characters/tarken/hand.svg"
  58676. }
  58677. },
  58678. beam: {
  58679. height: math.unit(1.5, "feet"),
  58680. name: "Beam",
  58681. image: {
  58682. source: "./media/characters/tarken/beam.svg"
  58683. }
  58684. },
  58685. },
  58686. [
  58687. {
  58688. name: "Original Size",
  58689. height: math.unit(2.5, "meters")
  58690. },
  58691. {
  58692. name: "Macro",
  58693. height: math.unit(150, "meters"),
  58694. default: true
  58695. },
  58696. {
  58697. name: "Macro+",
  58698. height: math.unit(300, "meters")
  58699. },
  58700. {
  58701. name: "Mega",
  58702. height: math.unit(2, "km")
  58703. },
  58704. {
  58705. name: "Mega+",
  58706. height: math.unit(35, "km")
  58707. },
  58708.  {
  58709. name: "Mega++",
  58710. height: math.unit(60, "km")
  58711. },
  58712. {
  58713. name: "Giga",
  58714. height: math.unit(200, "km")
  58715. },
  58716. {
  58717. name: "Giga+",
  58718. height: math.unit(2500, "km")
  58719. },
  58720. {
  58721. name: "Giga++",
  58722. height: math.unit(6600, "km")
  58723. },
  58724. {
  58725. name: "Terra",
  58726. height: math.unit(20000, "km")
  58727. },
  58728. {
  58729. name: "Terra+",
  58730. height: math.unit(300000, "km")
  58731. },
  58732. ]
  58733. ))
  58734. characterMakers.push(() => makeCharacter(
  58735. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58736. {
  58737. magpie_dressed: {
  58738. height: math.unit(1.7, "meters"),
  58739. weight: math.unit(70, "kg"),
  58740. name: "Dressed",
  58741. image: {
  58742. source: "./media/characters/otreus/magpie-dressed.svg",
  58743. extra: 691/672,
  58744. bottom: 116/807
  58745. },
  58746. form: "magpie",
  58747. default: true
  58748. },
  58749. magpie_nude: {
  58750. height: math.unit(1.7, "meters"),
  58751. weight: math.unit(70, "kg"),
  58752. name: "Nude",
  58753. image: {
  58754. source: "./media/characters/otreus/magpie-nude.svg",
  58755. extra: 691/672,
  58756. bottom: 116/807
  58757. },
  58758. form: "magpie",
  58759. },
  58760. magpie_dressedLewd: {
  58761. height: math.unit(1.7, "meters"),
  58762. weight: math.unit(70, "kg"),
  58763. name: "Dressed (Lewd)",
  58764. image: {
  58765. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58766. extra: 691/672,
  58767. bottom: 116/807
  58768. },
  58769. form: "magpie",
  58770. },
  58771. magpie_nudeLewd: {
  58772. height: math.unit(1.7, "meters"),
  58773. weight: math.unit(70, "kg"),
  58774. name: "Nude (Lewd)",
  58775. image: {
  58776. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58777. extra: 691/672,
  58778. bottom: 116/807
  58779. },
  58780. form: "magpie",
  58781. },
  58782. magpie_leftFoot: {
  58783. height: math.unit(1.58, "feet"),
  58784. name: "Left Foot",
  58785. image: {
  58786. source: "./media/characters/otreus/magpie-left-foot.svg"
  58787. },
  58788. form: "magpie",
  58789. },
  58790. magpie_rightFoot: {
  58791. height: math.unit(1.58, "feet"),
  58792. name: "Right Foot",
  58793. image: {
  58794. source: "./media/characters/otreus/magpie-right-foot.svg"
  58795. },
  58796. form: "magpie",
  58797. },
  58798. magpie_wingspan: {
  58799. height: math.unit(2, "meters"),
  58800. weight: math.unit(70, "kg"),
  58801. name: "Wingspan",
  58802. image: {
  58803. source: "./media/characters/otreus/magpie-wingspan.svg"
  58804. },
  58805. extraAttributes: {
  58806. "wingspan": {
  58807. name: "Wingspan",
  58808. power: 1,
  58809. type: "length",
  58810. base: math.unit(3.35, "meters")
  58811. },
  58812. },
  58813. form: "magpie",
  58814. },
  58815. hippogriff_dressed: {
  58816. height: math.unit(1.7, "meters"),
  58817. weight: math.unit(70, "kg"),
  58818. name: "Dressed",
  58819. image: {
  58820. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58821. extra: 710/689,
  58822. bottom: 67/777
  58823. },
  58824. form: "hippogriff",
  58825. default: true
  58826. },
  58827. hippogriff_nude: {
  58828. height: math.unit(1.7, "meters"),
  58829. weight: math.unit(70, "kg"),
  58830. name: "Nude",
  58831. image: {
  58832. source: "./media/characters/otreus/hippogriff-nude.svg",
  58833. extra: 710/689,
  58834. bottom: 67/777
  58835. },
  58836. form: "hippogriff",
  58837. },
  58838. hippogriff_dressedLewd: {
  58839. height: math.unit(1.7, "meters"),
  58840. weight: math.unit(70, "kg"),
  58841. name: "Dressed (Lewd)",
  58842. image: {
  58843. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58844. extra: 710/689,
  58845. bottom: 67/777
  58846. },
  58847. form: "hippogriff",
  58848. },
  58849. hippogriff_nudeLewd: {
  58850. height: math.unit(1.7, "meters"),
  58851. weight: math.unit(70, "kg"),
  58852. name: "Nude (Lewd)",
  58853. image: {
  58854. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58855. extra: 710/689,
  58856. bottom: 67/777
  58857. },
  58858. form: "hippogriff",
  58859. },
  58860. },
  58861. [
  58862. {
  58863. name: "Original Size",
  58864. height: math.unit(1.7, "meters"),
  58865. allForms: true
  58866. },
  58867. {
  58868. name: "Incognito Size",
  58869. height: math.unit(2, "meters"),
  58870. allForms: true
  58871. },
  58872. {
  58873. name: "Mega",
  58874. height: math.unit(2, "km"),
  58875. allForms: true
  58876. },
  58877. {
  58878. name: "Mega+",
  58879. height: math.unit(40, "km"),
  58880. allForms: true
  58881. },
  58882. {
  58883. name: "Giga",
  58884. height: math.unit(250, "km"),
  58885. allForms: true
  58886. },
  58887. {
  58888. name: "Giga+",
  58889. height: math.unit(3000, "km"),
  58890. allForms: true
  58891. },
  58892. {
  58893. name: "Terra",
  58894. height: math.unit(20000, "km"),
  58895. allForms: true
  58896. },
  58897. {
  58898. name: "Solar (Home Size)",
  58899. height: math.unit(3e6, "km"),
  58900. allForms: true,
  58901. default: true
  58902. },
  58903. ],
  58904. {
  58905. "magpie": {
  58906. name: "Magpie",
  58907. default: true
  58908. },
  58909. "hippogriff": {
  58910. name: "Hippogriff",
  58911. },
  58912. }
  58913. ))
  58914. characterMakers.push(() => makeCharacter(
  58915. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58916. {
  58917. frontDressed: {
  58918. height: math.unit(1.8, "meters"),
  58919. weight: math.unit(90, "kg"),
  58920. name: "Front (Dressed)",
  58921. image: {
  58922. source: "./media/characters/thalia/front-dressed.svg",
  58923. extra: 478/402,
  58924. bottom: 55/533
  58925. }
  58926. },
  58927. backDressed: {
  58928. height: math.unit(1.8, "meters"),
  58929. weight: math.unit(90, "kg"),
  58930. name: "Back (Dressed)",
  58931. image: {
  58932. source: "./media/characters/thalia/back-dressed.svg",
  58933. extra: 500/424,
  58934. bottom: 15/515
  58935. }
  58936. },
  58937. frontNude: {
  58938. height: math.unit(1.8, "meters"),
  58939. weight: math.unit(90, "kg"),
  58940. name: "Front (Nude)",
  58941. image: {
  58942. source: "./media/characters/thalia/front-nude.svg",
  58943. extra: 478/402,
  58944. bottom: 55/533
  58945. }
  58946. },
  58947. backNude: {
  58948. height: math.unit(1.8, "meters"),
  58949. weight: math.unit(90, "kg"),
  58950. name: "Back (Nude)",
  58951. image: {
  58952. source: "./media/characters/thalia/back-nude.svg",
  58953. extra: 500/424,
  58954. bottom: 15/515
  58955. }
  58956. },
  58957. },
  58958. [
  58959. {
  58960. name: "Incognito",
  58961. height: math.unit(3, "meters")
  58962. },
  58963. {
  58964. name: "Macro",
  58965. height: math.unit(500, "meters")
  58966. },
  58967. {
  58968. name: "Mega",
  58969. height: math.unit(5, "km")
  58970. },
  58971. {
  58972. name: "Mega+",
  58973. height: math.unit(30, "km")
  58974. },
  58975. {
  58976. name: "Giga",
  58977. height: math.unit(350, "km")
  58978. },
  58979. {
  58980. name: "Giga+",
  58981. height: math.unit(4000, "km")
  58982. },
  58983. {
  58984. name: "Terra",
  58985. height: math.unit(35000, "km")
  58986. },
  58987. {
  58988. name: "Original Size",
  58989. height: math.unit(130000, "km")
  58990. },
  58991. {
  58992. name: "Solar (Home Size)",
  58993. height: math.unit(4e6, "km"),
  58994. default: true
  58995. },
  58996. ]
  58997. ))
  58998. characterMakers.push(() => makeCharacter(
  58999. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59000. {
  59001. front: {
  59002. height: math.unit(1.8, "meters"),
  59003. weight: math.unit(95, "kg"),
  59004. name: "Front",
  59005. image: {
  59006. source: "./media/characters/shango/front.svg",
  59007. extra: 1925/1774,
  59008. bottom: 67/1992
  59009. }
  59010. },
  59011. back: {
  59012. height: math.unit(1.8, "meters"),
  59013. weight: math.unit(95, "kg"),
  59014. name: "Back",
  59015. image: {
  59016. source: "./media/characters/shango/back.svg",
  59017. extra: 1915/1766,
  59018. bottom: 52/1967
  59019. }
  59020. },
  59021. frontLewd: {
  59022. height: math.unit(1.8, "meters"),
  59023. weight: math.unit(95, "kg"),
  59024. name: "Front (Lewd)",
  59025. image: {
  59026. source: "./media/characters/shango/front-lewd.svg",
  59027. extra: 1925/1774,
  59028. bottom: 67/1992
  59029. }
  59030. },
  59031. backLewd: {
  59032. height: math.unit(1.8, "meters"),
  59033. weight: math.unit(95, "kg"),
  59034. name: "Back (Lewd)",
  59035. image: {
  59036. source: "./media/characters/shango/back-lewd.svg",
  59037. extra: 1915/1766,
  59038. bottom: 52/1967
  59039. }
  59040. },
  59041. maw: {
  59042. height: math.unit(1.64, "feet"),
  59043. name: "Maw",
  59044. image: {
  59045. source: "./media/characters/shango/maw.svg"
  59046. }
  59047. },
  59048. dick: {
  59049. height: math.unit(2.14, "feet"),
  59050. name: "Dick",
  59051. image: {
  59052. source: "./media/characters/shango/dick.svg"
  59053. }
  59054. },
  59055. },
  59056. [
  59057. {
  59058. name: "Incognito",
  59059. height: math.unit(1.8, "meters")
  59060. },
  59061. {
  59062. name: "Home Size",
  59063. height: math.unit(60, "meters"),
  59064. default: true
  59065. },
  59066. {
  59067. name: "Macro",
  59068. height: math.unit(450, "meters")
  59069. },
  59070. {
  59071. name: "Mega",
  59072. height: math.unit(6, "km")
  59073. },
  59074. {
  59075. name: "Mega+",
  59076. height: math.unit(35, "km")
  59077. },
  59078. {
  59079. name: "Giga",
  59080. height: math.unit(500, "km")
  59081. },
  59082. {
  59083. name: "Giga+",
  59084. height: math.unit(5000, "km")
  59085. },
  59086. {
  59087. name: "Terra",
  59088. height: math.unit(60000, "km")
  59089. },
  59090. {
  59091. name: "Terra+",
  59092. height: math.unit(400000, "km")
  59093. },
  59094. ]
  59095. ))
  59096. characterMakers.push(() => makeCharacter(
  59097. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59098. {
  59099. front: {
  59100. height: math.unit(2, "meters"),
  59101. weight: math.unit(95, "kg"),
  59102. name: "Front",
  59103. image: {
  59104. source: "./media/characters/osiris-gryphon/front.svg",
  59105. extra: 1508/1313,
  59106. bottom: 87/1595
  59107. }
  59108. },
  59109. back: {
  59110. height: math.unit(2, "meters"),
  59111. weight: math.unit(95, "kg"),
  59112. name: "Back",
  59113. image: {
  59114. source: "./media/characters/osiris-gryphon/back.svg",
  59115. extra: 1436/1309,
  59116. bottom: 64/1500
  59117. }
  59118. },
  59119. frontLewd: {
  59120. height: math.unit(2, "meters"),
  59121. weight: math.unit(95, "kg"),
  59122. name: "Front-lewd",
  59123. image: {
  59124. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59125. extra: 1508/1313,
  59126. bottom: 87/1595
  59127. }
  59128. },
  59129. wing: {
  59130. height: math.unit(6.3333, "feet"),
  59131. name: "Wing",
  59132. image: {
  59133. source: "./media/characters/osiris-gryphon/wing.svg"
  59134. }
  59135. },
  59136. },
  59137. [
  59138. {
  59139. name: "Incognito",
  59140. height: math.unit(2, "meters")
  59141. },
  59142. {
  59143. name: "Home Size",
  59144. height: math.unit(30, "meters"),
  59145. default: true
  59146. },
  59147. {
  59148. name: "Macro",
  59149. height: math.unit(100, "meters")
  59150. },
  59151. {
  59152. name: "Macro+",
  59153. height: math.unit(350, "meters")
  59154. },
  59155. {
  59156. name: "Mega",
  59157. height: math.unit(40, "km")
  59158. },
  59159. {
  59160. name: "Giga",
  59161. height: math.unit(300, "km")
  59162. },
  59163. {
  59164. name: "Giga+",
  59165. height: math.unit(2000, "km")
  59166. },
  59167. {
  59168. name: "Terra",
  59169. height: math.unit(30000, "km")
  59170. },
  59171. ]
  59172. ))
  59173. characterMakers.push(() => makeCharacter(
  59174. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59175. {
  59176. front: {
  59177. height: math.unit(2.5, "meters"),
  59178. weight: math.unit(200, "kg"),
  59179. name: "Front",
  59180. image: {
  59181. source: "./media/characters/atlas-dragon/front.svg",
  59182. extra: 745/462,
  59183. bottom: 36/781
  59184. }
  59185. },
  59186. back: {
  59187. height: math.unit(2.5, "meters"),
  59188. weight: math.unit(200, "kg"),
  59189. name: "Back",
  59190. image: {
  59191. source: "./media/characters/atlas-dragon/back.svg",
  59192. extra: 848/822,
  59193. bottom: 57/905
  59194. }
  59195. },
  59196. frontLewd: {
  59197. height: math.unit(2.5, "meters"),
  59198. weight: math.unit(200, "kg"),
  59199. name: "Front (Lewd)",
  59200. image: {
  59201. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59202. extra: 745/462,
  59203. bottom: 36/781
  59204. }
  59205. },
  59206. backLewd: {
  59207. height: math.unit(2.5, "meters"),
  59208. weight: math.unit(200, "kg"),
  59209. name: "Back (Lewd)",
  59210. image: {
  59211. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59212. extra: 848/822,
  59213. bottom: 57/905
  59214. }
  59215. },
  59216. },
  59217. [
  59218. {
  59219. name: "Incognito",
  59220. height: math.unit(2.5, "meters")
  59221. },
  59222. {
  59223. name: "Small Macro",
  59224. height: math.unit(50, "meters")
  59225. },
  59226. {
  59227. name: "Macro",
  59228. height: math.unit(350, "meters")
  59229. },
  59230. {
  59231. name: "Mega",
  59232. height: math.unit(5.5, "kilometers")
  59233. },
  59234. {
  59235. name: "Mega+",
  59236. height: math.unit(50, "km")
  59237. },
  59238. {
  59239. name: "Giga",
  59240. height: math.unit(350, "km")
  59241. },
  59242. {
  59243. name: "Giga+",
  59244. height: math.unit(2000, "km")
  59245. },
  59246. {
  59247. name: "Giga++",
  59248. height: math.unit(6500, "km")
  59249. },
  59250. {
  59251. name: "Terra",
  59252. height: math.unit(30000, "km")
  59253. },
  59254. {
  59255. name: "Terra+",
  59256. height: math.unit(250000, "km")
  59257. },
  59258. {
  59259. name: "True Size",
  59260. height: math.unit(100, "multiverses"),
  59261. default: true
  59262. },
  59263. ]
  59264. ))
  59265. characterMakers.push(() => makeCharacter(
  59266. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59267. {
  59268. front: {
  59269. height: math.unit(1.8, "m"),
  59270. weight: math.unit(120, "kg"),
  59271. name: "Front",
  59272. image: {
  59273. source: "./media/characters/chey/front.svg",
  59274. extra: 1359/1270,
  59275. bottom: 18/1377
  59276. }
  59277. },
  59278. arm: {
  59279. height: math.unit(2.05, "feet"),
  59280. name: "Arm",
  59281. image: {
  59282. source: "./media/characters/chey/arm.svg"
  59283. }
  59284. },
  59285. head: {
  59286. height: math.unit(1.89, "feet"),
  59287. name: "Head",
  59288. image: {
  59289. source: "./media/characters/chey/head.svg"
  59290. }
  59291. },
  59292. },
  59293. [
  59294. {
  59295. name: "Original Size",
  59296. height: math.unit(5, "cm")
  59297. },
  59298. {
  59299. name: "Incognito Size",
  59300. height: math.unit(2.4, "m")
  59301. },
  59302. {
  59303. name: "Home Size",
  59304. height: math.unit(200, "meters"),
  59305. default: true
  59306. },
  59307. {
  59308. name: "Mega",
  59309. height: math.unit(2, "km")
  59310. },
  59311. {
  59312. name: "Giga (Preferred Size)",
  59313. height: math.unit(2000, "km")
  59314. },
  59315. {
  59316. name: "Giga+",
  59317. height: math.unit(6000, "km")
  59318. },
  59319. {
  59320. name: "Terra",
  59321. height: math.unit(17000, "km")
  59322. },
  59323. {
  59324. name: "Terra+",
  59325. height: math.unit(75000, "km")
  59326. },
  59327. {
  59328. name: "Terra++",
  59329. height: math.unit(225000, "km")
  59330. },
  59331. ]
  59332. ))
  59333. characterMakers.push(() => makeCharacter(
  59334. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59335. {
  59336. side: {
  59337. height: math.unit(7.8, "meters"),
  59338. name: "Side",
  59339. image: {
  59340. source: "./media/characters/ragnarok/side.svg",
  59341. extra: 725/621,
  59342. bottom: 72/797
  59343. }
  59344. },
  59345. },
  59346. [
  59347. {
  59348. name: "Normal",
  59349. height: math.unit(7.8, "meters"),
  59350. default: true
  59351. },
  59352. ]
  59353. ))
  59354. characterMakers.push(() => makeCharacter(
  59355. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59356. {
  59357. hyena_front: {
  59358. height: math.unit(2.1, "meters"),
  59359. weight: math.unit(110, "kg"),
  59360. name: "Front",
  59361. image: {
  59362. source: "./media/characters/nima/hyena-front.svg",
  59363. extra: 1904/1796,
  59364. bottom: 67/1971
  59365. },
  59366. form: "hyena",
  59367. },
  59368. hyena_back: {
  59369. height: math.unit(2.1, "meters"),
  59370. weight: math.unit(110, "kg"),
  59371. name: "Back",
  59372. image: {
  59373. source: "./media/characters/nima/hyena-back.svg",
  59374. extra: 1964/1884,
  59375. bottom: 35/1999
  59376. },
  59377. form: "hyena",
  59378. },
  59379. shark_front: {
  59380. height: math.unit(1.95, "meters"),
  59381. weight: math.unit(110, "kg"),
  59382. name: "Front",
  59383. image: {
  59384. source: "./media/characters/nima/shark-front.svg",
  59385. extra: 2238/2013,
  59386. bottom: 0/223
  59387. },
  59388. form: "shark",
  59389. },
  59390. paw: {
  59391. height: math.unit(1, "feet"),
  59392. name: "Paw",
  59393. image: {
  59394. source: "./media/characters/nima/paw.svg"
  59395. }
  59396. },
  59397. circlet: {
  59398. height: math.unit(0.3, "feet"),
  59399. name: "Circlet",
  59400. image: {
  59401. source: "./media/characters/nima/circlet.svg"
  59402. }
  59403. },
  59404. necklace: {
  59405. height: math.unit(1.2, "feet"),
  59406. name: "Necklace",
  59407. image: {
  59408. source: "./media/characters/nima/necklace.svg"
  59409. }
  59410. },
  59411. bracelet: {
  59412. height: math.unit(0.51, "feet"),
  59413. name: "Bracelet",
  59414. image: {
  59415. source: "./media/characters/nima/bracelet.svg"
  59416. }
  59417. },
  59418. armband: {
  59419. height: math.unit(1.3, "feet"),
  59420. name: "Armband",
  59421. image: {
  59422. source: "./media/characters/nima/armband.svg"
  59423. }
  59424. },
  59425. },
  59426. [
  59427. {
  59428. name: "Incognito",
  59429. height: math.unit(2.1, "meters"),
  59430. allForms: true
  59431. },
  59432. {
  59433. name: "Small Macro",
  59434. height: math.unit(50, "meters"),
  59435. allForms: true
  59436. },
  59437. {
  59438. name: "Macro",
  59439. height: math.unit(200, "meters"),
  59440. allForms: true
  59441. },
  59442. {
  59443. name: "Mega",
  59444. height: math.unit(2.5, "km"),
  59445. allForms: true
  59446. },
  59447. {
  59448. name: "Mega+",
  59449. height: math.unit(30, "km"),
  59450. allForms: true
  59451. },
  59452. {
  59453. name: "Giga (Home Size)",
  59454. height: math.unit(400, "km"),
  59455. allForms: true,
  59456. default: true
  59457. },
  59458. {
  59459. name: "Giga+",
  59460. height: math.unit(2500, "km"),
  59461. allForms: true
  59462. },
  59463. {
  59464. name: "Giga++",
  59465. height: math.unit(8000, "km"),
  59466. allForms: true
  59467. },
  59468. {
  59469. name: "Terra",
  59470. height: math.unit(20000, "km"),
  59471. allForms: true
  59472. },
  59473. {
  59474. name: "Terra+",
  59475. height: math.unit(70000, "km"),
  59476. allForms: true
  59477. },
  59478. {
  59479. name: "Terra++",
  59480. height: math.unit(600000, "km"),
  59481. allForms: true
  59482. },
  59483. {
  59484. name: "Galactic",
  59485. height: math.unit(40, "galaxies"),
  59486. allForms: true
  59487. },
  59488. {
  59489. name: "Universal",
  59490. height: math.unit(40, "universes"),
  59491. allForms: true
  59492. },
  59493. ],
  59494. {
  59495. "hyena": {
  59496. name: "Hyena",
  59497. default: true
  59498. },
  59499. "shark": {
  59500. name: "Shark",
  59501. },
  59502. }
  59503. ))
  59504. characterMakers.push(() => makeCharacter(
  59505. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59506. {
  59507. anthro_front: {
  59508. height: math.unit(1.5, "meters"),
  59509. name: "Front",
  59510. image: {
  59511. source: "./media/characters/adelaide/anthro-front.svg",
  59512. extra: 860/783,
  59513. bottom: 60/920
  59514. },
  59515. form: "anthro",
  59516. default: true
  59517. },
  59518. hand: {
  59519. height: math.unit(0.65, "feet"),
  59520. name: "Hand",
  59521. image: {
  59522. source: "./media/characters/adelaide/hand.svg"
  59523. },
  59524. form: "anthro"
  59525. },
  59526. foot: {
  59527. height: math.unit(1.38 * 259 / 314, "feet"),
  59528. name: "Foot",
  59529. image: {
  59530. source: "./media/characters/adelaide/foot.svg",
  59531. extra: 259/259,
  59532. bottom: 55/314
  59533. },
  59534. form: "anthro"
  59535. },
  59536. feather: {
  59537. height: math.unit(0.85, "feet"),
  59538. name: "Feather",
  59539. image: {
  59540. source: "./media/characters/adelaide/feather.svg"
  59541. },
  59542. form: "anthro"
  59543. },
  59544. feral_side: {
  59545. height: math.unit(1, "meters"),
  59546. name: "Side",
  59547. image: {
  59548. source: "./media/characters/adelaide/feral-side.svg",
  59549. extra: 550/467,
  59550. bottom: 37/587
  59551. },
  59552. form: "feral",
  59553. default: true
  59554. },
  59555. feral_hand: {
  59556. height: math.unit(0.58, "feet"),
  59557. name: "Hand",
  59558. image: {
  59559. source: "./media/characters/adelaide/hand.svg"
  59560. },
  59561. form: "feral"
  59562. },
  59563. feral_foot: {
  59564. height: math.unit(1.2 * 259 / 314, "feet"),
  59565. name: "Foot",
  59566. image: {
  59567. source: "./media/characters/adelaide/foot.svg",
  59568. extra: 259/259,
  59569. bottom: 55/314
  59570. },
  59571. form: "feral"
  59572. },
  59573. feral_feather: {
  59574. height: math.unit(0.63, "feet"),
  59575. name: "Feather",
  59576. image: {
  59577. source: "./media/characters/adelaide/feather.svg"
  59578. },
  59579. form: "feral"
  59580. },
  59581. },
  59582. [
  59583. {
  59584. name: "Normal",
  59585. height: math.unit(1.5, "meters"),
  59586. form: "anthro",
  59587. default: true
  59588. },
  59589. {
  59590. name: "Normal",
  59591. height: math.unit(1, "meters"),
  59592. form: "feral",
  59593. default: true
  59594. },
  59595. ],
  59596. {
  59597. "anthro": {
  59598. name: "Anthro",
  59599. default: true
  59600. },
  59601. "feral": {
  59602. name: "Feral",
  59603. },
  59604. }
  59605. ))
  59606. characterMakers.push(() => makeCharacter(
  59607. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59608. {
  59609. front: {
  59610. height: math.unit(2.5, "meters"),
  59611. name: "Front",
  59612. image: {
  59613. source: "./media/characters/goa/front.svg",
  59614. extra: 1109/1013,
  59615. bottom: 150/1259
  59616. }
  59617. },
  59618. },
  59619. [
  59620. {
  59621. name: "Normal",
  59622. height: math.unit(2.5, "meters"),
  59623. default: true
  59624. },
  59625. ]
  59626. ))
  59627. characterMakers.push(() => makeCharacter(
  59628. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59629. {
  59630. front: {
  59631. height: math.unit(2, "meters"),
  59632. weight: math.unit(100, "kg"),
  59633. name: "Front",
  59634. image: {
  59635. source: "./media/characters/kiki-weavile/front.svg",
  59636. extra: 357/332,
  59637. bottom: 60/417
  59638. }
  59639. },
  59640. },
  59641. [
  59642. {
  59643. name: "Normal",
  59644. height: math.unit(2, "meters"),
  59645. default: true
  59646. },
  59647. ]
  59648. ))
  59649. characterMakers.push(() => makeCharacter(
  59650. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59651. {
  59652. side: {
  59653. height: math.unit(1.6, "meters"),
  59654. name: "Side",
  59655. image: {
  59656. source: "./media/characters/liza/side.svg",
  59657. extra: 943/915,
  59658. bottom: 72/1015
  59659. }
  59660. },
  59661. },
  59662. [
  59663. {
  59664. name: "Normal",
  59665. height: math.unit(1.6, "meters"),
  59666. default: true
  59667. },
  59668. ]
  59669. ))
  59670. characterMakers.push(() => makeCharacter(
  59671. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59672. {
  59673. side: {
  59674. height: math.unit(2.5, "meters"),
  59675. preyCapacity: math.unit(1, "people"),
  59676. name: "Side",
  59677. image: {
  59678. source: "./media/characters/persephone-sweetbreath/side.svg",
  59679. extra: 796/700,
  59680. bottom: 44/840
  59681. }
  59682. },
  59683. sideVore: {
  59684. height: math.unit(2.5, "meters"),
  59685. preyCapacity: math.unit(1, "people"),
  59686. name: "Side (Full)",
  59687. image: {
  59688. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59689. extra: 796/700,
  59690. bottom: 44/840
  59691. }
  59692. },
  59693. },
  59694. [
  59695. {
  59696. name: "Normal",
  59697. height: math.unit(2.5, "meters"),
  59698. default: true
  59699. },
  59700. ]
  59701. ))
  59702. characterMakers.push(() => makeCharacter(
  59703. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59704. {
  59705. front: {
  59706. height: math.unit(32, "meters"),
  59707. name: "Front",
  59708. image: {
  59709. source: "./media/characters/pierce/front.svg",
  59710. extra: 1695/1475,
  59711. bottom: 185/1880
  59712. }
  59713. },
  59714. side: {
  59715. height: math.unit(32, "meters"),
  59716. name: "Side",
  59717. image: {
  59718. source: "./media/characters/pierce/side.svg",
  59719. extra: 974/859,
  59720. bottom: 43/1017
  59721. }
  59722. },
  59723. frontWingless: {
  59724. height: math.unit(32, "meters"),
  59725. name: "Front (Wingless)",
  59726. image: {
  59727. source: "./media/characters/pierce/front-wingless.svg",
  59728. extra: 1695/1475,
  59729. bottom: 185/1880
  59730. }
  59731. },
  59732. sideWingless: {
  59733. height: math.unit(32, "meters"),
  59734. name: "Side (Wingless)",
  59735. image: {
  59736. source: "./media/characters/pierce/side-wingless.svg",
  59737. extra: 974/859,
  59738. bottom: 43/1017
  59739. }
  59740. },
  59741. maw: {
  59742. height: math.unit(19.3, "meters"),
  59743. name: "Maw",
  59744. image: {
  59745. source: "./media/characters/pierce/maw.svg"
  59746. }
  59747. },
  59748. },
  59749. [
  59750. {
  59751. name: "Small",
  59752. height: math.unit(8.5, "meters")
  59753. },
  59754. {
  59755. name: "Normal",
  59756. height: math.unit(32, "meters"),
  59757. default: true
  59758. },
  59759. ]
  59760. ))
  59761. characterMakers.push(() => makeCharacter(
  59762. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59763. {
  59764. front: {
  59765. height: math.unit(2.3, "meters"),
  59766. weight: math.unit(165, "kg"),
  59767. name: "Front",
  59768. image: {
  59769. source: "./media/characters/shira/front.svg",
  59770. extra: 924/919,
  59771. bottom: 17/941
  59772. },
  59773. form: "cobra",
  59774. default: true
  59775. },
  59776. back: {
  59777. height: math.unit(2.3, "meters"),
  59778. weight: math.unit(165, "kg"),
  59779. name: "Back",
  59780. image: {
  59781. source: "./media/characters/shira/back.svg",
  59782. extra: 928/922,
  59783. bottom: 18/946
  59784. },
  59785. form: "cobra"
  59786. },
  59787. frontLewd: {
  59788. height: math.unit(2.3, "meters"),
  59789. weight: math.unit(165, "kg"),
  59790. name: "Front (Lewd)",
  59791. image: {
  59792. source: "./media/characters/shira/front-lewd.svg",
  59793. extra: 924/919,
  59794. bottom: 17/941
  59795. },
  59796. form: "cobra"
  59797. },
  59798. backLewd: {
  59799. height: math.unit(2.3, "meters"),
  59800. weight: math.unit(165, "kg"),
  59801. name: "Back (Lewd)",
  59802. image: {
  59803. source: "./media/characters/shira/back-lewd.svg",
  59804. extra: 928/922,
  59805. bottom: 18/946
  59806. },
  59807. form: "cobra"
  59808. },
  59809. maw: {
  59810. height: math.unit(1.14, "feet"),
  59811. name: "Maw",
  59812. image: {
  59813. source: "./media/characters/shira/maw.svg"
  59814. },
  59815. form: "cobra"
  59816. },
  59817. magma_front: {
  59818. height: math.unit(2.3, "meters"),
  59819. weight: math.unit(165, "kg"),
  59820. name: "Front",
  59821. image: {
  59822. source: "./media/characters/shira/magma-front.svg",
  59823. extra: 1870/1693,
  59824. bottom: 24/1894
  59825. },
  59826. form: "magma",
  59827. },
  59828. magma_back: {
  59829. height: math.unit(2.3, "meters"),
  59830. weight: math.unit(165, "kg"),
  59831. name: "Back",
  59832. image: {
  59833. source: "./media/characters/shira/magma-back.svg",
  59834. extra: 1918/1756,
  59835. bottom: 46/1964
  59836. },
  59837. form: "magma",
  59838. },
  59839. },
  59840. [
  59841. {
  59842. name: "Incognito",
  59843. height: math.unit(2.3, "meters"),
  59844. allForms: true
  59845. },
  59846. {
  59847. name: "Home Size",
  59848. height: math.unit(150, "meters"),
  59849. default: true,
  59850. allForms: true
  59851. },
  59852. {
  59853. name: "Macro",
  59854. height: math.unit(2, "km"),
  59855. allForms: true
  59856. },
  59857. {
  59858. name: "Mega",
  59859. height: math.unit(30, "km"),
  59860. allForms: true
  59861. },
  59862. {
  59863. name: "Giga",
  59864. height: math.unit(450, "km"),
  59865. allForms: true
  59866. },
  59867. {
  59868. name: "Giga+",
  59869. height: math.unit(3000, "km"),
  59870. allForms: true
  59871. },
  59872. {
  59873. name: "Giga++",
  59874. height: math.unit(6000, "km"),
  59875. allForms: true
  59876. },
  59877. {
  59878. name: "Terra",
  59879. height: math.unit(80000, "km"),
  59880. allForms: true
  59881. },
  59882. {
  59883. name: "Terra+",
  59884. height: math.unit(350000, "km"),
  59885. allForms: true
  59886. },
  59887. {
  59888. name: "Solar",
  59889. height: math.unit(1e6, "km"),
  59890. allForms: true
  59891. },
  59892. ],
  59893. {
  59894. "cobra": {
  59895. name: "Cobra",
  59896. default: true
  59897. },
  59898. "magma": {
  59899. name: "Magma Dragon",
  59900. },
  59901. }
  59902. ))
  59903. characterMakers.push(() => makeCharacter(
  59904. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59905. {
  59906. front: {
  59907. height: math.unit(2, "meters"),
  59908. weight: math.unit(160, "kg"),
  59909. name: "Front",
  59910. image: {
  59911. source: "./media/characters/daxerios/front.svg",
  59912. extra: 1334/1277,
  59913. bottom: 45/1379
  59914. }
  59915. },
  59916. frontLewd: {
  59917. height: math.unit(2, "meters"),
  59918. weight: math.unit(160, "kg"),
  59919. name: "Front (Lewd)",
  59920. image: {
  59921. source: "./media/characters/daxerios/front-lewd.svg",
  59922. extra: 1334/1277,
  59923. bottom: 45/1379
  59924. }
  59925. },
  59926. dick: {
  59927. height: math.unit(2.35, "feet"),
  59928. name: "Dick",
  59929. image: {
  59930. source: "./media/characters/daxerios/dick.svg"
  59931. }
  59932. },
  59933. },
  59934. [
  59935. {
  59936. name: "\"Small\"",
  59937. height: math.unit(5, "meters")
  59938. },
  59939. {
  59940. name: "Original Size",
  59941. height: math.unit(500, "meters"),
  59942. default: true
  59943. },
  59944. {
  59945. name: "Mega",
  59946. height: math.unit(2, "km")
  59947. },
  59948. {
  59949. name: "Mega+",
  59950. height: math.unit(35, "km")
  59951. },
  59952. {
  59953. name: "Giga",
  59954. height: math.unit(250, "km")
  59955. },
  59956. {
  59957. name: "Giga+",
  59958. height: math.unit(3000, "km")
  59959. },
  59960. {
  59961. name: "Terra",
  59962. height: math.unit(25000, "km")
  59963. },
  59964. {
  59965. name: "Terra+",
  59966. height: math.unit(300000, "km")
  59967. },
  59968. {
  59969. name: "Solar",
  59970. height: math.unit(1e6, "km")
  59971. },
  59972. ]
  59973. ))
  59974. characterMakers.push(() => makeCharacter(
  59975. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59976. {
  59977. front: {
  59978. height: math.unit(8 + 4/12, "feet"),
  59979. weight: math.unit(464, "lb"),
  59980. name: "Front",
  59981. image: {
  59982. source: "./media/characters/caveat/front.svg",
  59983. extra: 1861/1678,
  59984. bottom: 40/1901
  59985. }
  59986. },
  59987. },
  59988. [
  59989. {
  59990. name: "Normal",
  59991. height: math.unit(8 + 4/12, "feet"),
  59992. default: true
  59993. },
  59994. ]
  59995. ))
  59996. characterMakers.push(() => makeCharacter(
  59997. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59998. {
  59999. front: {
  60000. height: math.unit(12, "feet"),
  60001. weight: math.unit(1800, "lb"),
  60002. name: "Front",
  60003. image: {
  60004. source: "./media/characters/centbair/front.svg",
  60005. extra: 781/663,
  60006. bottom: 25/806
  60007. }
  60008. },
  60009. frontNsfw: {
  60010. height: math.unit(12, "feet"),
  60011. weight: math.unit(1800, "lb"),
  60012. name: "Front (NSFW)",
  60013. image: {
  60014. source: "./media/characters/centbair/front-nsfw.svg",
  60015. extra: 781/663,
  60016. bottom: 25/806
  60017. }
  60018. },
  60019. back: {
  60020. height: math.unit(12, "feet"),
  60021. weight: math.unit(1800, "lb"),
  60022. name: "Back",
  60023. image: {
  60024. source: "./media/characters/centbair/back.svg",
  60025. extra: 808/761,
  60026. bottom: 19/827
  60027. }
  60028. },
  60029. dick: {
  60030. height: math.unit(6.5, "feet"),
  60031. name: "Dick",
  60032. image: {
  60033. source: "./media/characters/centbair/dick.svg"
  60034. }
  60035. },
  60036. slit: {
  60037. height: math.unit(3.25, "feet"),
  60038. name: "Slit",
  60039. image: {
  60040. source: "./media/characters/centbair/slit.svg"
  60041. }
  60042. },
  60043. },
  60044. [
  60045. {
  60046. name: "Normal",
  60047. height: math.unit(12, "feet"),
  60048. default: true
  60049. },
  60050. ]
  60051. ))
  60052. characterMakers.push(() => makeCharacter(
  60053. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60054. {
  60055. front: {
  60056. height: math.unit(5 + 7/12, "feet"),
  60057. name: "Front",
  60058. image: {
  60059. source: "./media/characters/andy/front.svg",
  60060. extra: 634/588,
  60061. bottom: 36/670
  60062. },
  60063. extraAttributes: {
  60064. "pawLength": {
  60065. name: "Paw Length",
  60066. power: 1,
  60067. type: "length",
  60068. base: math.unit(1, "feet")
  60069. },
  60070. }
  60071. },
  60072. side: {
  60073. height: math.unit(5 + 7/12, "feet"),
  60074. name: "Side",
  60075. image: {
  60076. source: "./media/characters/andy/side.svg",
  60077. extra: 641/596,
  60078. bottom: 34/675
  60079. },
  60080. extraAttributes: {
  60081. "pawLength": {
  60082. name: "Paw Length",
  60083. power: 1,
  60084. type: "length",
  60085. base: math.unit(1, "feet")
  60086. },
  60087. }
  60088. },
  60089. back: {
  60090. height: math.unit(5 + 7/12, "feet"),
  60091. name: "Back",
  60092. image: {
  60093. source: "./media/characters/andy/back.svg",
  60094. extra: 618/583,
  60095. bottom: 39/657
  60096. },
  60097. extraAttributes: {
  60098. "pawLength": {
  60099. name: "Paw Length",
  60100. power: 1,
  60101. type: "length",
  60102. base: math.unit(1, "feet")
  60103. },
  60104. }
  60105. },
  60106. paw: {
  60107. height: math.unit(1.13, "feet"),
  60108. name: "Paw",
  60109. image: {
  60110. source: "./media/characters/andy/paw.svg"
  60111. }
  60112. },
  60113. },
  60114. [
  60115. {
  60116. name: "Micro",
  60117. height: math.unit(4, "inches")
  60118. },
  60119. {
  60120. name: "Normal",
  60121. height: math.unit(5 + 7/12, "feet"),
  60122. default: true
  60123. },
  60124. {
  60125. name: "Macro",
  60126. height: math.unit(390.42, "feet")
  60127. },
  60128. ]
  60129. ))
  60130. characterMakers.push(() => makeCharacter(
  60131. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60132. {
  60133. front: {
  60134. height: math.unit(7, "feet"),
  60135. weight: math.unit(250, "lb"),
  60136. name: "Front",
  60137. image: {
  60138. source: "./media/characters/vix-titan/front.svg",
  60139. extra: 460/428,
  60140. bottom: 15/475
  60141. },
  60142. extraAttributes: {
  60143. "pawWidth": {
  60144. name: "Paw Width",
  60145. power: 1,
  60146. type: "length",
  60147. base: math.unit(0.75, "feet")
  60148. },
  60149. }
  60150. },
  60151. },
  60152. [
  60153. {
  60154. name: "Normal",
  60155. height: math.unit(7, "feet"),
  60156. default: true
  60157. },
  60158. {
  60159. name: "Giant",
  60160. height: math.unit(1500, "feet")
  60161. },
  60162. {
  60163. name: "Mega",
  60164. height: math.unit(10, "miles")
  60165. },
  60166. {
  60167. name: "Giga",
  60168. height: math.unit(150, "miles")
  60169. },
  60170. {
  60171. name: "Tera",
  60172. height: math.unit(144000, "miles")
  60173. },
  60174. ]
  60175. ))
  60176. characterMakers.push(() => makeCharacter(
  60177. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60178. {
  60179. front: {
  60180. height: math.unit(6 + 2/12, "feet"),
  60181. name: "Front",
  60182. image: {
  60183. source: "./media/characters/reiku/front.svg",
  60184. extra: 1910/1757,
  60185. bottom: 103/2013
  60186. },
  60187. extraAttributes: {
  60188. "thighThickness": {
  60189. name: "Thigh Thickness",
  60190. power: 1,
  60191. type: "length",
  60192. base: math.unit(1.12, "feet")
  60193. },
  60194. "assThickness": {
  60195. name: "Ass Thickness",
  60196. power: 1,
  60197. type: "length",
  60198. base: math.unit(1.12*2, "feet")
  60199. },
  60200. }
  60201. },
  60202. side: {
  60203. height: math.unit(6 + 2/12, "feet"),
  60204. name: "Side",
  60205. image: {
  60206. source: "./media/characters/reiku/side.svg",
  60207. extra: 1846/1748,
  60208. bottom: 99/1945
  60209. },
  60210. extraAttributes: {
  60211. "thighThickness": {
  60212. name: "Thigh Thickness",
  60213. power: 1,
  60214. type: "length",
  60215. base: math.unit(1.12, "feet")
  60216. },
  60217. "assThickness": {
  60218. name: "Ass Thickness",
  60219. power: 1,
  60220. type: "length",
  60221. base: math.unit(1.12*2, "feet")
  60222. },
  60223. }
  60224. },
  60225. back: {
  60226. height: math.unit(6 + 2/12, "feet"),
  60227. name: "Back",
  60228. image: {
  60229. source: "./media/characters/reiku/back.svg",
  60230. extra: 1941/1786,
  60231. bottom: 34/1975
  60232. },
  60233. extraAttributes: {
  60234. "thighThickness": {
  60235. name: "Thigh Thickness",
  60236. power: 1,
  60237. type: "length",
  60238. base: math.unit(1.12, "feet")
  60239. },
  60240. "assThickness": {
  60241. name: "Ass Thickness",
  60242. power: 1,
  60243. type: "length",
  60244. base: math.unit(1.12*2, "feet")
  60245. },
  60246. }
  60247. },
  60248. head: {
  60249. height: math.unit(1.8, "feet"),
  60250. name: "Head",
  60251. image: {
  60252. source: "./media/characters/reiku/head.svg"
  60253. }
  60254. },
  60255. tailTop: {
  60256. height: math.unit(8.4, "feet"),
  60257. name: "Tail (Top)",
  60258. image: {
  60259. source: "./media/characters/reiku/tail-top.svg"
  60260. }
  60261. },
  60262. tailBottom: {
  60263. height: math.unit(8.4, "feet"),
  60264. name: "Tail (Bottom)",
  60265. image: {
  60266. source: "./media/characters/reiku/tail-bottom.svg"
  60267. }
  60268. },
  60269. foot: {
  60270. height: math.unit(2.6, "feet"),
  60271. name: "Foot",
  60272. image: {
  60273. source: "./media/characters/reiku/foot.svg"
  60274. }
  60275. },
  60276. footCurled: {
  60277. height: math.unit(2.3, "feet"),
  60278. name: "Foot (Curled)",
  60279. image: {
  60280. source: "./media/characters/reiku/foot-curled.svg"
  60281. }
  60282. },
  60283. footSide: {
  60284. height: math.unit(1.26, "feet"),
  60285. name: "Foot (Side)",
  60286. image: {
  60287. source: "./media/characters/reiku/foot-side.svg"
  60288. }
  60289. },
  60290. },
  60291. [
  60292. {
  60293. name: "Normal",
  60294. height: math.unit(6 + 2/12, "feet"),
  60295. default: true
  60296. },
  60297. ]
  60298. ))
  60299. characterMakers.push(() => makeCharacter(
  60300. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60301. {
  60302. front: {
  60303. height: math.unit(7, "feet"),
  60304. weight: math.unit(500, "kg"),
  60305. name: "Front",
  60306. image: {
  60307. source: "./media/characters/cialda/front.svg",
  60308. extra: 912/745,
  60309. bottom: 55/967
  60310. }
  60311. },
  60312. },
  60313. [
  60314. {
  60315. name: "Normal",
  60316. height: math.unit(7, "feet"),
  60317. default: true
  60318. },
  60319. ]
  60320. ))
  60321. characterMakers.push(() => makeCharacter(
  60322. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60323. {
  60324. side: {
  60325. height: math.unit(6, "feet"),
  60326. weight: math.unit(600, "lb"),
  60327. preyCapacity: math.unit(25, "liters"),
  60328. name: "Side",
  60329. image: {
  60330. source: "./media/characters/darkkin/side.svg",
  60331. extra: 1597/1447,
  60332. bottom: 101/1698
  60333. }
  60334. },
  60335. },
  60336. [
  60337. {
  60338. name: "Canon Height",
  60339. height: math.unit(568, "feet"),
  60340. default: true
  60341. },
  60342. ]
  60343. ))
  60344. characterMakers.push(() => makeCharacter(
  60345. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60346. {
  60347. front: {
  60348. height: math.unit(6, "feet"),
  60349. weight: math.unit(1500, "lb"),
  60350. preyCapacity: math.unit(3, "people"),
  60351. name: "Front",
  60352. image: {
  60353. source: "./media/characters/livnia/front.svg",
  60354. extra: 934/932,
  60355. bottom: 83/1017
  60356. }
  60357. },
  60358. back: {
  60359. height: math.unit(6, "feet"),
  60360. weight: math.unit(1500, "lb"),
  60361. preyCapacity: math.unit(3, "people"),
  60362. name: "Back",
  60363. image: {
  60364. source: "./media/characters/livnia/back.svg",
  60365. extra: 916/915,
  60366. bottom: 58/974
  60367. }
  60368. },
  60369. head: {
  60370. height: math.unit(1.53, "feet"),
  60371. name: "Head",
  60372. image: {
  60373. source: "./media/characters/livnia/head.svg"
  60374. }
  60375. },
  60376. maw: {
  60377. height: math.unit(0.78, "feet"),
  60378. name: "Maw",
  60379. image: {
  60380. source: "./media/characters/livnia/maw.svg"
  60381. }
  60382. },
  60383. genitals: {
  60384. height: math.unit(0.35, "feet"),
  60385. name: "Genitals",
  60386. image: {
  60387. source: "./media/characters/livnia/genitals.svg"
  60388. }
  60389. },
  60390. },
  60391. [
  60392. {
  60393. name: "Normal",
  60394. height: math.unit(1000, "feet"),
  60395. default: true
  60396. },
  60397. ]
  60398. ))
  60399. characterMakers.push(() => makeCharacter(
  60400. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60401. {
  60402. front: {
  60403. height: math.unit(4, "feet"),
  60404. weight: math.unit(73, "lb"),
  60405. name: "Front",
  60406. image: {
  60407. source: "./media/characters/hayaku/front.svg",
  60408. extra: 1011/888,
  60409. bottom: 33/1044
  60410. }
  60411. },
  60412. back: {
  60413. height: math.unit(4, "feet"),
  60414. weight: math.unit(73, "lb"),
  60415. name: "Back",
  60416. image: {
  60417. source: "./media/characters/hayaku/back.svg",
  60418. extra: 1040/930,
  60419. bottom: 20/1060
  60420. }
  60421. },
  60422. },
  60423. [
  60424. {
  60425. name: "Normal",
  60426. height: math.unit(4, "feet"),
  60427. default: true
  60428. },
  60429. ]
  60430. ))
  60431. characterMakers.push(() => makeCharacter(
  60432. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60433. {
  60434. front: {
  60435. height: math.unit(6 + 7/12, "feet"),
  60436. weight: math.unit(300, "lb"),
  60437. name: "Front",
  60438. image: {
  60439. source: "./media/characters/athena-bryzant/front.svg",
  60440. extra: 870/835,
  60441. bottom: 33/903
  60442. }
  60443. },
  60444. back: {
  60445. height: math.unit(6 + 7/12, "feet"),
  60446. weight: math.unit(300, "lb"),
  60447. name: "Back",
  60448. image: {
  60449. source: "./media/characters/athena-bryzant/back.svg",
  60450. extra: 858/823,
  60451. bottom: 30/888
  60452. }
  60453. },
  60454. head: {
  60455. height: math.unit(2.38, "feet"),
  60456. name: "Head",
  60457. image: {
  60458. source: "./media/characters/athena-bryzant/head.svg"
  60459. }
  60460. },
  60461. wings: {
  60462. height: math.unit(2.85, "feet"),
  60463. name: "Wings",
  60464. image: {
  60465. source: "./media/characters/athena-bryzant/wings.svg"
  60466. }
  60467. },
  60468. },
  60469. [
  60470. {
  60471. name: "Normal",
  60472. height: math.unit(6 + 7/12, "feet"),
  60473. default: true
  60474. },
  60475. {
  60476. name: "Big",
  60477. height: math.unit(8, "feet")
  60478. },
  60479. {
  60480. name: "Very Big",
  60481. height: math.unit(11, "feet")
  60482. },
  60483. ]
  60484. ))
  60485. characterMakers.push(() => makeCharacter(
  60486. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60487. {
  60488. side: {
  60489. height: math.unit(3, "meters"),
  60490. weight: math.unit(7500, "kg"),
  60491. preyCapacity: math.unit(1e12, "people"),
  60492. name: "Side",
  60493. image: {
  60494. source: "./media/characters/zel-kesh/side.svg",
  60495. extra: 910/407,
  60496. bottom: 147/1057
  60497. }
  60498. },
  60499. },
  60500. [
  60501. {
  60502. name: "Normal",
  60503. height: math.unit(3, "meters"),
  60504. default: true
  60505. },
  60506. ]
  60507. ))
  60508. characterMakers.push(() => makeCharacter(
  60509. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60510. {
  60511. front: {
  60512. height: math.unit(2, "meters"),
  60513. weight: math.unit(95, "kg"),
  60514. name: "Front",
  60515. image: {
  60516. source: "./media/characters/kane-fox/front.svg",
  60517. extra: 945/888,
  60518. bottom: 27/972
  60519. }
  60520. },
  60521. back: {
  60522. height: math.unit(2, "meters"),
  60523. weight: math.unit(95, "kg"),
  60524. name: "Back",
  60525. image: {
  60526. source: "./media/characters/kane-fox/back.svg",
  60527. extra: 959/914,
  60528. bottom: 15/974
  60529. }
  60530. },
  60531. frontLewd: {
  60532. height: math.unit(2, "meters"),
  60533. weight: math.unit(95, "kg"),
  60534. name: "Front (Lewd)",
  60535. image: {
  60536. source: "./media/characters/kane-fox/front-lewd.svg",
  60537. extra: 945/888,
  60538. bottom: 27/972
  60539. }
  60540. },
  60541. },
  60542. [
  60543. {
  60544. name: "Home Size",
  60545. height: math.unit(2, "meters"),
  60546. default: true
  60547. },
  60548. {
  60549. name: "Macro",
  60550. height: math.unit(200, "meters")
  60551. },
  60552. {
  60553. name: "Small Mega",
  60554. height: math.unit(3, "km")
  60555. },
  60556. {
  60557. name: "Mega",
  60558. height: math.unit(50, "km")
  60559. },
  60560. {
  60561. name: "Giga",
  60562. height: math.unit(200, "km")
  60563. },
  60564. {
  60565. name: "Giga+",
  60566. height: math.unit(2500, "km")
  60567. },
  60568. {
  60569. name: "Terra",
  60570. height: math.unit(70000, "km")
  60571. },
  60572. {
  60573. name: "Terra+",
  60574. height: math.unit(150000, "km")
  60575. },
  60576. {
  60577. name: "Terra++",
  60578. height: math.unit(400000, "km")
  60579. },
  60580. ]
  60581. ))
  60582. characterMakers.push(() => makeCharacter(
  60583. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60584. {
  60585. otter_front: {
  60586. height: math.unit(1.8, "meters"),
  60587. weight: math.unit(90, "kg"),
  60588. name: "Front",
  60589. image: {
  60590. source: "./media/characters/ayranus/otter-front.svg",
  60591. extra: 468/452,
  60592. bottom: 43/511
  60593. },
  60594. form: "otter",
  60595. },
  60596. otter_frontLewd: {
  60597. height: math.unit(1.8, "meters"),
  60598. weight: math.unit(90, "kg"),
  60599. name: "Front (Lewd)",
  60600. image: {
  60601. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60602. extra: 468/452,
  60603. bottom: 43/511
  60604. },
  60605. form: "otter",
  60606. },
  60607. lionbat_front: {
  60608. height: math.unit(1.8, "meters"),
  60609. weight: math.unit(90, "kg"),
  60610. name: "Front (Lewd)",
  60611. image: {
  60612. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60613. extra: 797/740,
  60614. bottom: 78/875
  60615. },
  60616. form: "lionbat",
  60617. },
  60618. paw: {
  60619. height: math.unit(1.5, "feet"),
  60620. name: "Paw",
  60621. image: {
  60622. source: "./media/characters/ayranus/paw.svg"
  60623. },
  60624. },
  60625. },
  60626. [
  60627. {
  60628. name: "Incognito",
  60629. height: math.unit(1.8, "meters"),
  60630. allForms: true
  60631. },
  60632. {
  60633. name: "Macro",
  60634. height: math.unit(60, "meters"),
  60635. allForms: true
  60636. },
  60637. {
  60638. name: "Macro+",
  60639. height: math.unit(200, "meters"),
  60640. allForms: true
  60641. },
  60642. {
  60643. name: "Mega",
  60644. height: math.unit(35, "km"),
  60645. allForms: true
  60646. },
  60647. {
  60648. name: "Giga",
  60649. height: math.unit(220, "km"),
  60650. allForms: true
  60651. },
  60652. {
  60653. name: "Giga+",
  60654. height: math.unit(1500, "km"),
  60655. allForms: true
  60656. },
  60657. {
  60658. name: "Terra",
  60659. height: math.unit(13000, "km"),
  60660. allForms: true
  60661. },
  60662. {
  60663. name: "Terra+",
  60664. height: math.unit(500000, "km"),
  60665. allForms: true
  60666. },
  60667. {
  60668. name: "Galactic",
  60669. height: math.unit(486080, "parsecs"),
  60670. default: true,
  60671. allForms: true
  60672. },
  60673. ],
  60674. {
  60675. "otter": {
  60676. name: "Otter",
  60677. default: true
  60678. },
  60679. "lionbat": {
  60680. name: "Lionbat",
  60681. },
  60682. }
  60683. ))
  60684. characterMakers.push(() => makeCharacter(
  60685. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60686. {
  60687. front: {
  60688. height: math.unit(7 + 4/12, "feet"),
  60689. weight: math.unit(400, "lb"),
  60690. name: "Front",
  60691. image: {
  60692. source: "./media/characters/proxy/front.svg",
  60693. extra: 1605/1542,
  60694. bottom: 55/1660
  60695. }
  60696. },
  60697. side: {
  60698. height: math.unit(7 + 4/12, "feet"),
  60699. weight: math.unit(400, "lb"),
  60700. name: "Side",
  60701. image: {
  60702. source: "./media/characters/proxy/side.svg",
  60703. extra: 794/759,
  60704. bottom: 6/800
  60705. }
  60706. },
  60707. hand: {
  60708. height: math.unit(1.54, "feet"),
  60709. name: "Hand",
  60710. image: {
  60711. source: "./media/characters/proxy/hand.svg"
  60712. }
  60713. },
  60714. paw: {
  60715. height: math.unit(1.53, "feet"),
  60716. name: "Paw",
  60717. image: {
  60718. source: "./media/characters/proxy/paw.svg"
  60719. }
  60720. },
  60721. maw: {
  60722. height: math.unit(1.9, "feet"),
  60723. name: "Maw",
  60724. image: {
  60725. source: "./media/characters/proxy/maw.svg"
  60726. }
  60727. },
  60728. },
  60729. [
  60730. {
  60731. name: "Normal",
  60732. height: math.unit(7 + 4/12, "feet"),
  60733. default: true
  60734. },
  60735. ]
  60736. ))
  60737. characterMakers.push(() => makeCharacter(
  60738. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60739. {
  60740. front: {
  60741. height: math.unit(4, "meters"),
  60742. name: "Front",
  60743. image: {
  60744. source: "./media/characters/crocozilla/front.svg",
  60745. extra: 1790/1742,
  60746. bottom: 78/1868
  60747. }
  60748. },
  60749. },
  60750. [
  60751. {
  60752. name: "Normal",
  60753. height: math.unit(4, "meters"),
  60754. default: true
  60755. },
  60756. ]
  60757. ))
  60758. characterMakers.push(() => makeCharacter(
  60759. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60760. {
  60761. front: {
  60762. height: math.unit(1.8, "meters"),
  60763. weight: math.unit(120, "kg"),
  60764. name: "Front",
  60765. image: {
  60766. source: "./media/characters/kurz/front.svg",
  60767. extra: 1960/1824,
  60768. bottom: 41/2001
  60769. }
  60770. },
  60771. back: {
  60772. height: math.unit(1.8, "meters"),
  60773. weight: math.unit(120, "kg"),
  60774. name: "Back",
  60775. image: {
  60776. source: "./media/characters/kurz/back.svg",
  60777. extra: 1906/1787,
  60778. bottom: 60/1966
  60779. }
  60780. },
  60781. frontLewd: {
  60782. height: math.unit(1.8, "meters"),
  60783. weight: math.unit(120, "kg"),
  60784. name: "Front (Lewd)",
  60785. image: {
  60786. source: "./media/characters/kurz/front-lewd.svg",
  60787. extra: 1960/1824,
  60788. bottom: 41/2001
  60789. }
  60790. },
  60791. maw: {
  60792. height: math.unit(0.69, "meters"),
  60793. name: "Maw",
  60794. image: {
  60795. source: "./media/characters/kurz/maw.svg"
  60796. }
  60797. },
  60798. },
  60799. [
  60800. {
  60801. name: "Original Size",
  60802. height: math.unit(1.8, "meters")
  60803. },
  60804. {
  60805. name: "Incognito Size",
  60806. height: math.unit(2.4, "meters"),
  60807. default: true
  60808. },
  60809. {
  60810. name: "Macro",
  60811. height: math.unit(30, "meters")
  60812. },
  60813. {
  60814. name: "Macro+",
  60815. height: math.unit(250, "meters")
  60816. },
  60817. {
  60818. name: "Mega",
  60819. height: math.unit(2, "km")
  60820. },
  60821. {
  60822. name: "Mega+",
  60823. height: math.unit(35, "km")
  60824. },
  60825. {
  60826. name: "Mega++",
  60827. height: math.unit(75, "km")
  60828. },
  60829. {
  60830. name: "Giga",
  60831. height: math.unit(250, "km")
  60832. },
  60833. {
  60834. name: "Terra",
  60835. height: math.unit(15000, "km")
  60836. },
  60837. {
  60838. name: "Terra+",
  60839. height: math.unit(2250000, "km")
  60840. },
  60841. ]
  60842. ))
  60843. characterMakers.push(() => makeCharacter(
  60844. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60845. {
  60846. front: {
  60847. height: math.unit(16 + 3/12, "feet"),
  60848. weight: math.unit(3575, "lb"),
  60849. name: "Front",
  60850. image: {
  60851. source: "./media/characters/nikita/front.svg",
  60852. extra: 1064/955,
  60853. bottom: 47/1111
  60854. }
  60855. },
  60856. },
  60857. [
  60858. {
  60859. name: "Normal",
  60860. height: math.unit(16 + 3/12, "feet"),
  60861. default: true
  60862. },
  60863. {
  60864. name: "Big",
  60865. height: math.unit(21, "feet")
  60866. },
  60867. {
  60868. name: "Biggest",
  60869. height: math.unit(50, "feet")
  60870. },
  60871. ]
  60872. ))
  60873. characterMakers.push(() => makeCharacter(
  60874. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60875. {
  60876. front: {
  60877. height: math.unit(1.92, "m"),
  60878. weight: math.unit(76, "kg"),
  60879. name: "Front",
  60880. image: {
  60881. source: "./media/characters/kyara/front.svg",
  60882. extra: 1550/1438,
  60883. bottom: 139/1689
  60884. }
  60885. },
  60886. back: {
  60887. height: math.unit(1.92, "m"),
  60888. weight: math.unit(76, "kg"),
  60889. name: "Back",
  60890. image: {
  60891. source: "./media/characters/kyara/back.svg",
  60892. extra: 1523/1427,
  60893. bottom: 83/1606
  60894. }
  60895. },
  60896. head: {
  60897. height: math.unit(1.22, "feet"),
  60898. name: "Head",
  60899. image: {
  60900. source: "./media/characters/kyara/head.svg"
  60901. }
  60902. },
  60903. maw: {
  60904. height: math.unit(0.73, "feet"),
  60905. name: "Maw",
  60906. image: {
  60907. source: "./media/characters/kyara/maw.svg"
  60908. }
  60909. },
  60910. paws: {
  60911. height: math.unit(0.95, "feet"),
  60912. name: "Paws",
  60913. image: {
  60914. source: "./media/characters/kyara/paws.svg"
  60915. }
  60916. },
  60917. },
  60918. [
  60919. {
  60920. name: "Normal",
  60921. height: math.unit(1.92, "meters"),
  60922. default: true
  60923. },
  60924. {
  60925. name: "Mini Macro",
  60926. height: math.unit(192, "meters")
  60927. },
  60928. {
  60929. name: "Macro",
  60930. height: math.unit(480, "meters")
  60931. },
  60932. {
  60933. name: "Mega Macro",
  60934. height: math.unit(1440, "meters")
  60935. },
  60936. ]
  60937. ))
  60938. characterMakers.push(() => makeCharacter(
  60939. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60940. {
  60941. front: {
  60942. height: math.unit(6, "feet"),
  60943. weight: math.unit(160, "lbs"),
  60944. preyCapacity: math.unit(0.05, "people"),
  60945. name: "Front",
  60946. image: {
  60947. source: "./media/characters/layla-amari/front.svg",
  60948. extra: 1922/1723,
  60949. bottom: 90/2012
  60950. }
  60951. },
  60952. back: {
  60953. height: math.unit(6, "feet"),
  60954. weight: math.unit(160, "lbs"),
  60955. preyCapacity: math.unit(0.05, "people"),
  60956. name: "Back",
  60957. image: {
  60958. source: "./media/characters/layla-amari/back.svg",
  60959. extra: 1917/1718,
  60960. bottom: 50/1967
  60961. }
  60962. },
  60963. frontDressed: {
  60964. height: math.unit(6, "feet"),
  60965. weight: math.unit(160, "lbs"),
  60966. preyCapacity: math.unit(0.05, "people"),
  60967. name: "Front (Dressed)",
  60968. image: {
  60969. source: "./media/characters/layla-amari/front-dressed.svg",
  60970. extra: 1922/1723,
  60971. bottom: 90/2012
  60972. }
  60973. },
  60974. face: {
  60975. height: math.unit(0.93, "feet"),
  60976. name: "Face",
  60977. image: {
  60978. source: "./media/characters/layla-amari/face.svg"
  60979. }
  60980. },
  60981. hand: {
  60982. height: math.unit(0.66 , "feet"),
  60983. name: "Hand",
  60984. image: {
  60985. source: "./media/characters/layla-amari/hand.svg"
  60986. }
  60987. },
  60988. foot: {
  60989. height: math.unit(1, "feet"),
  60990. name: "Foot",
  60991. image: {
  60992. source: "./media/characters/layla-amari/foot.svg"
  60993. }
  60994. },
  60995. necklace: {
  60996. height: math.unit(0.32, "feet"),
  60997. name: "Necklace",
  60998. image: {
  60999. source: "./media/characters/layla-amari/necklace.svg"
  61000. }
  61001. },
  61002. nipple: {
  61003. height: math.unit(0.2, "feet"),
  61004. name: "Nipple",
  61005. image: {
  61006. source: "./media/characters/layla-amari/nipple.svg"
  61007. }
  61008. },
  61009. slit: {
  61010. height: math.unit(0.26, "feet"),
  61011. name: "Slit",
  61012. image: {
  61013. source: "./media/characters/layla-amari/slit.svg"
  61014. }
  61015. },
  61016. },
  61017. [
  61018. {
  61019. name: "Natural",
  61020. height: math.unit(825, "feet"),
  61021. default: true
  61022. },
  61023. {
  61024. name: "Enhanced",
  61025. height: math.unit(8250, "feet")
  61026. },
  61027. {
  61028. name: "Apparent Size",
  61029. height: math.unit(9.04363e+8, "meters")
  61030. },
  61031. ]
  61032. ))
  61033. characterMakers.push(() => makeCharacter(
  61034. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61035. {
  61036. front: {
  61037. height: math.unit(1.3, "meters"),
  61038. name: "Front",
  61039. image: {
  61040. source: "./media/characters/percy/front.svg",
  61041. extra: 1444/1289,
  61042. bottom: 54/1498
  61043. }
  61044. },
  61045. },
  61046. [
  61047. {
  61048. name: "Normal",
  61049. height: math.unit(1.3, "meters"),
  61050. default: true
  61051. },
  61052. ]
  61053. ))
  61054. characterMakers.push(() => makeCharacter(
  61055. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61056. {
  61057. side: {
  61058. height: math.unit(10, "meters"),
  61059. name: "Side",
  61060. image: {
  61061. source: "./media/characters/grev/side.svg",
  61062. extra: 653/266,
  61063. bottom: 77/730
  61064. }
  61065. },
  61066. head: {
  61067. height: math.unit(16.2, "m"),
  61068. name: "Head",
  61069. image: {
  61070. source: "./media/characters/grev/head.svg"
  61071. }
  61072. },
  61073. dick: {
  61074. height: math.unit(2.8135932034, "m"),
  61075. name: "Dick",
  61076. image: {
  61077. source: "./media/characters/grev/dick.svg"
  61078. }
  61079. },
  61080. },
  61081. [
  61082. {
  61083. name: "Friend-Sized",
  61084. height: math.unit(80, "cm")
  61085. },
  61086. {
  61087. name: "Normal",
  61088. height: math.unit(10, "meters"),
  61089. default: true
  61090. },
  61091. {
  61092. name: "Macro",
  61093. height: math.unit(200, "meters")
  61094. },
  61095. ]
  61096. ))
  61097. characterMakers.push(() => makeCharacter(
  61098. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61099. {
  61100. front: {
  61101. height: math.unit(19.75, "feet"),
  61102. weight: math.unit(20000, "lb"),
  61103. name: "Front",
  61104. image: {
  61105. source: "./media/characters/azuuca/front.svg",
  61106. extra: 1593/1511,
  61107. bottom: 55/1648
  61108. }
  61109. },
  61110. },
  61111. [
  61112. {
  61113. name: "Normal",
  61114. height: math.unit(19.75, "feet"),
  61115. default: true
  61116. },
  61117. ]
  61118. ))
  61119. characterMakers.push(() => makeCharacter(
  61120. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61121. {
  61122. front: {
  61123. height: math.unit(15, "feet"),
  61124. weight: math.unit(1500, "lb"),
  61125. name: "Front",
  61126. image: {
  61127. source: "./media/characters/valuria/front.svg",
  61128. extra: 1588/1486,
  61129. bottom: 31/1619
  61130. }
  61131. },
  61132. },
  61133. [
  61134. {
  61135. name: "Normal",
  61136. height: math.unit(15, "feet"),
  61137. default: true
  61138. },
  61139. {
  61140. name: "Small",
  61141. height: math.unit(500, "feet")
  61142. },
  61143. {
  61144. name: "Macro",
  61145. height: math.unit(4000, "feet")
  61146. },
  61147. {
  61148. name: "Mega Macro",
  61149. height: math.unit(2000, "miles")
  61150. },
  61151. {
  61152. name: "Giga Macro",
  61153. height: math.unit(3e6, "miles")
  61154. },
  61155. ]
  61156. ))
  61157. characterMakers.push(() => makeCharacter(
  61158. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61159. {
  61160. front: {
  61161. height: math.unit(3500, "solarradii"),
  61162. name: "Front",
  61163. image: {
  61164. source: "./media/characters/terigaia/front.svg",
  61165. extra: 1531/1451,
  61166. bottom: 98/1629
  61167. }
  61168. },
  61169. },
  61170. [
  61171. {
  61172. name: "Normal",
  61173. height: math.unit(3500, "solarradii"),
  61174. default: true
  61175. },
  61176. ]
  61177. ))
  61178. characterMakers.push(() => makeCharacter(
  61179. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61180. {
  61181. front: {
  61182. height: math.unit(9.34, "feet"),
  61183. weight: math.unit(600, "lb"),
  61184. name: "Front",
  61185. image: {
  61186. source: "./media/characters/blair-blaziken/front.svg",
  61187. extra: 1557/1462,
  61188. bottom: 55/1612
  61189. }
  61190. },
  61191. },
  61192. [
  61193. {
  61194. name: "Normal",
  61195. height: math.unit(9.34, "feet"),
  61196. default: true
  61197. },
  61198. ]
  61199. ))
  61200. characterMakers.push(() => makeCharacter(
  61201. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61202. {
  61203. pistrogre_front: {
  61204. height: math.unit(10, "feet"),
  61205. weight: math.unit(10, "tons"),
  61206. name: "Front",
  61207. image: {
  61208. source: "./media/characters/braxia/pistrogre-front.svg",
  61209. extra: 1531/1334,
  61210. bottom: 114/1645
  61211. },
  61212. form: "pistrogre",
  61213. default: true
  61214. },
  61215. human_front: {
  61216. height: math.unit(10, "feet"),
  61217. weight: math.unit(10, "tons"),
  61218. name: "Front",
  61219. image: {
  61220. source: "./media/characters/braxia/human-front.svg",
  61221. extra: 1574/1501,
  61222. bottom: 37/1611
  61223. },
  61224. form: "human",
  61225. default: true
  61226. },
  61227. },
  61228. [
  61229. {
  61230. name: "Normal",
  61231. height: math.unit(10, "feet"),
  61232. default: true,
  61233. allForms: true
  61234. },
  61235. {
  61236. name: "Macro",
  61237. height: math.unit(1000, "feet"),
  61238. allForms: true
  61239. },
  61240. {
  61241. name: "Mega Macro",
  61242. height: math.unit(100, "miles"),
  61243. allForms: true
  61244. },
  61245. {
  61246. name: "Cosmic",
  61247. height: math.unit(1000000, "lightyears"),
  61248. allForms: true
  61249. },
  61250. {
  61251. name: "ϐѮԆԬӁꭍϞԢ",
  61252. height: math.unit(1000, "multiverses"),
  61253. allForms: true
  61254. },
  61255. ],
  61256. {
  61257. "pistrogre": {
  61258. name: "Pistrogre",
  61259. default: true
  61260. },
  61261. "human": {
  61262. name: "Human",
  61263. },
  61264. }
  61265. ))
  61266. characterMakers.push(() => makeCharacter(
  61267. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61268. {
  61269. front: {
  61270. height: math.unit(6 + 1/12, "feet"),
  61271. weight: math.unit(280, "lb"),
  61272. name: "Front",
  61273. image: {
  61274. source: "./media/characters/kiriga-yato/front.svg",
  61275. extra: 445/394,
  61276. bottom: 11/456
  61277. }
  61278. },
  61279. },
  61280. [
  61281. {
  61282. name: "Descended",
  61283. height: math.unit(3, "feet")
  61284. },
  61285. {
  61286. name: "Average",
  61287. height: math.unit(6 + 1/12, "feet"),
  61288. default: true
  61289. },
  61290. {
  61291. name: "Ascended",
  61292. height: math.unit(9 + 2/12, "feet")
  61293. },
  61294. ]
  61295. ))
  61296. characterMakers.push(() => makeCharacter(
  61297. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61298. {
  61299. front: {
  61300. height: math.unit(6, "feet"),
  61301. weight: math.unit(150, "lb"),
  61302. name: "Front",
  61303. image: {
  61304. source: "./media/characters/kylie/front.svg",
  61305. extra: 1114/1046,
  61306. bottom: 65/1179
  61307. },
  61308. extraAttributes: {
  61309. "hoofSize": {
  61310. name: "Hoof Size",
  61311. power: 2,
  61312. type: "area",
  61313. base: math.unit(0.034, "m^2")
  61314. },
  61315. "footSize": {
  61316. name: "Foot Size",
  61317. power: 2,
  61318. type: "area",
  61319. base: math.unit(0.75, "m^2")
  61320. },
  61321. }
  61322. },
  61323. side: {
  61324. height: math.unit(6, "feet"),
  61325. weight: math.unit(150, "lb"),
  61326. name: "Side",
  61327. image: {
  61328. source: "./media/characters/kylie/side.svg",
  61329. extra: 1178/1110,
  61330. bottom: 21/1199
  61331. },
  61332. extraAttributes: {
  61333. "hoofSize": {
  61334. name: "Hoof Size",
  61335. power: 2,
  61336. type: "area",
  61337. base: math.unit(0.034, "m^2")
  61338. },
  61339. "footSize": {
  61340. name: "Foot Size",
  61341. power: 2,
  61342. type: "area",
  61343. base: math.unit(0.75, "m^2")
  61344. },
  61345. }
  61346. },
  61347. back: {
  61348. height: math.unit(6, "feet"),
  61349. weight: math.unit(150, "lb"),
  61350. name: "Back",
  61351. image: {
  61352. source: "./media/characters/kylie/back.svg",
  61353. extra: 1115/1047,
  61354. bottom: 66/1181
  61355. },
  61356. extraAttributes: {
  61357. "hoofSize": {
  61358. name: "Hoof Size",
  61359. power: 2,
  61360. type: "area",
  61361. base: math.unit(0.034, "m^2")
  61362. },
  61363. "footSize": {
  61364. name: "Foot Size",
  61365. power: 2,
  61366. type: "area",
  61367. base: math.unit(0.75, "m^2")
  61368. },
  61369. }
  61370. },
  61371. head: {
  61372. height: math.unit(1.85, "feet"),
  61373. name: "Head",
  61374. image: {
  61375. source: "./media/characters/kylie/head.svg"
  61376. }
  61377. },
  61378. },
  61379. [
  61380. {
  61381. name: "Normal",
  61382. height: math.unit(90, "meters"),
  61383. default: true
  61384. },
  61385. ]
  61386. ))
  61387. characterMakers.push(() => makeCharacter(
  61388. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61389. {
  61390. front: {
  61391. height: math.unit(245, "feet"),
  61392. weight: math.unit(400000, "lb"),
  61393. name: "Front",
  61394. image: {
  61395. source: "./media/characters/sabado/front.svg",
  61396. extra: 1309/1164,
  61397. bottom: 29/1338
  61398. }
  61399. },
  61400. },
  61401. [
  61402. {
  61403. name: "Normal",
  61404. height: math.unit(245, "feet"),
  61405. default: true
  61406. },
  61407. ]
  61408. ))
  61409. characterMakers.push(() => makeCharacter(
  61410. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61411. {
  61412. shark_front: {
  61413. height: math.unit(2, "meters"),
  61414. weight: math.unit(200, "kg"),
  61415. name: "Front",
  61416. image: {
  61417. source: "./media/characters/zechal/shark-front.svg",
  61418. extra: 969/925,
  61419. bottom: 74/1043
  61420. },
  61421. form: "shark",
  61422. },
  61423. shark_back: {
  61424. height: math.unit(2, "meters"),
  61425. weight: math.unit(200, "kg"),
  61426. name: "Back",
  61427. image: {
  61428. source: "./media/characters/zechal/shark-back.svg",
  61429. extra: 994/949,
  61430. bottom: 176/1170
  61431. },
  61432. form: "shark",
  61433. },
  61434. shark_frontLewd: {
  61435. height: math.unit(2, "meters"),
  61436. weight: math.unit(200, "kg"),
  61437. name: "Front (Lewd)",
  61438. image: {
  61439. source: "./media/characters/zechal/shark-front-lewd.svg",
  61440. extra: 969/925,
  61441. bottom: 74/1043
  61442. },
  61443. form: "shark",
  61444. },
  61445. shark_side: {
  61446. height: math.unit(1.56, "meters"),
  61447. weight: math.unit(200, "kg"),
  61448. name: "Side",
  61449. image: {
  61450. source: "./media/characters/zechal/shark-side.svg"
  61451. },
  61452. form: "shark",
  61453. },
  61454. dragon_front: {
  61455. height: math.unit(2, "meters"),
  61456. weight: math.unit(200, "kg"),
  61457. name: "Front",
  61458. image: {
  61459. source: "./media/characters/zechal/dragon-front.svg",
  61460. extra: 1041/925,
  61461. bottom: 74/1115
  61462. },
  61463. form: "dragon",
  61464. },
  61465. dragon_back: {
  61466. height: math.unit(2, "meters"),
  61467. weight: math.unit(200, "kg"),
  61468. name: "Back",
  61469. image: {
  61470. source: "./media/characters/zechal/dragon-back.svg",
  61471. extra: 1061/949,
  61472. bottom: 176/1237
  61473. },
  61474. form: "dragon",
  61475. },
  61476. dragon_frontLewd: {
  61477. height: math.unit(2, "meters"),
  61478. weight: math.unit(200, "kg"),
  61479. name: "Front (Lewd)",
  61480. image: {
  61481. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61482. extra: 1041/925,
  61483. bottom: 74/1115
  61484. },
  61485. form: "dragon",
  61486. },
  61487. dragon_side: {
  61488. height: math.unit(1.56, "meters"),
  61489. weight: math.unit(200, "kg"),
  61490. name: "Side",
  61491. image: {
  61492. source: "./media/characters/zechal/dragon-side.svg"
  61493. },
  61494. form: "dragon",
  61495. },
  61496. foot: {
  61497. height: math.unit(0.5, "meters"),
  61498. name: "Foot",
  61499. image: {
  61500. source: "./media/characters/zechal/foot.svg"
  61501. }
  61502. },
  61503. sheathFront: {
  61504. height: math.unit(0.45, "meters"),
  61505. name: "Sheath (Front)",
  61506. image: {
  61507. source: "./media/characters/zechal/sheath-front.svg"
  61508. }
  61509. },
  61510. sheathSide: {
  61511. height: math.unit(0.45, "meters"),
  61512. name: "Sheath (Side)",
  61513. image: {
  61514. source: "./media/characters/zechal/sheath-side.svg"
  61515. }
  61516. },
  61517. },
  61518. [
  61519. {
  61520. name: "Incognito",
  61521. height: math.unit(2, "meters"),
  61522. allForms: true
  61523. },
  61524. {
  61525. name: "Small Rampage",
  61526. height: math.unit(25, "meters"),
  61527. allForms: true
  61528. },
  61529. {
  61530. name: "Home Size",
  61531. height: math.unit(250, "meters"),
  61532. allForms: true,
  61533. default: true
  61534. },
  61535. {
  61536. name: "Macro+",
  61537. height: math.unit(700, "meters"),
  61538. allForms: true
  61539. },
  61540. {
  61541. name: "Small Mega",
  61542. height: math.unit(3, "km"),
  61543. allForms: true
  61544. },
  61545. {
  61546. name: "Mega",
  61547. height: math.unit(15, "km"),
  61548. allForms: true
  61549. },
  61550. {
  61551. name: "Giga",
  61552. height: math.unit(300, "km"),
  61553. allForms: true
  61554. },
  61555. {
  61556. name: "Giga+",
  61557. height: math.unit(1750, "km"),
  61558. allForms: true
  61559. },
  61560. {
  61561. name: "Continental",
  61562. height: math.unit(5000, "km"),
  61563. allForms: true
  61564. },
  61565. {
  61566. name: "Terra",
  61567. height: math.unit(20000, "km"),
  61568. allForms: true
  61569. },
  61570. {
  61571. name: "Terra+",
  61572. height: math.unit(300000, "km"),
  61573. allForms: true
  61574. },
  61575. {
  61576. name: "Solar",
  61577. height: math.unit(40000000, "km"),
  61578. allForms: true
  61579. },
  61580. {
  61581. name: "Galactic",
  61582. height: math.unit(810133, "parsecs"),
  61583. allForms: true
  61584. },
  61585. {
  61586. name: "Universal",
  61587. height: math.unit(25, "universes"),
  61588. allForms: true
  61589. },
  61590. ],
  61591. {
  61592. "shark": {
  61593. name: "Shark",
  61594. default: true
  61595. },
  61596. "dragon": {
  61597. name: "Dragon",
  61598. },
  61599. }
  61600. ))
  61601. characterMakers.push(() => makeCharacter(
  61602. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61603. {
  61604. front: {
  61605. height: math.unit(2.2, "meters"),
  61606. weight: math.unit(150, "kg"),
  61607. name: "Front",
  61608. image: {
  61609. source: "./media/characters/sergis/front.svg",
  61610. extra: 1314/1312,
  61611. bottom: 112/1426
  61612. }
  61613. },
  61614. back: {
  61615. height: math.unit(2.2, "meters"),
  61616. weight: math.unit(150, "kg"),
  61617. name: "Back",
  61618. image: {
  61619. source: "./media/characters/sergis/back.svg",
  61620. extra: 1335/1333,
  61621. bottom: 19/1354
  61622. }
  61623. },
  61624. frontLewd: {
  61625. height: math.unit(2.2, "meters"),
  61626. weight: math.unit(150, "kg"),
  61627. name: "Front (Lewd)",
  61628. image: {
  61629. source: "./media/characters/sergis/front-lewd.svg",
  61630. extra: 1314/1312,
  61631. bottom: 112/1426
  61632. }
  61633. },
  61634. frontDressed: {
  61635. height: math.unit(2.2, "meters"),
  61636. weight: math.unit(150, "kg"),
  61637. name: "Front (Dressed)",
  61638. image: {
  61639. source: "./media/characters/sergis/front-dressed.svg",
  61640. extra: 1330/1328,
  61641. bottom: 95/1425
  61642. }
  61643. },
  61644. frontDressedLewd: {
  61645. height: math.unit(2.2, "meters"),
  61646. weight: math.unit(150, "kg"),
  61647. name: "Front (Dressed, Lewd)",
  61648. image: {
  61649. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61650. extra: 1330/1328,
  61651. bottom: 95/1425
  61652. }
  61653. },
  61654. maw: {
  61655. height: math.unit(0.48, "meters"),
  61656. name: "Maw",
  61657. image: {
  61658. source: "./media/characters/sergis/maw.svg"
  61659. }
  61660. },
  61661. sheath: {
  61662. height: math.unit(0.38, "meters"),
  61663. name: "Sheath",
  61664. image: {
  61665. source: "./media/characters/sergis/sheath.svg"
  61666. }
  61667. },
  61668. },
  61669. [
  61670. {
  61671. name: "Incognito Size",
  61672. height: math.unit(2.2, "meters")
  61673. },
  61674. {
  61675. name: "Small Macro",
  61676. height: math.unit(40, "meters")
  61677. },
  61678. {
  61679. name: "Macro",
  61680. height: math.unit(150, "meters")
  61681. },
  61682. {
  61683. name: "Macro+",
  61684. height: math.unit(300, "meters")
  61685. },
  61686. {
  61687. name: "Mega",
  61688. height: math.unit(2.5, "km")
  61689. },
  61690. {
  61691. name: "Mega+",
  61692. height: math.unit(30, "km")
  61693. },
  61694. {
  61695. name: "Home Size",
  61696. height: math.unit(300, "km"),
  61697. default: true
  61698. },
  61699. {
  61700. name: "Giga+",
  61701. height: math.unit(1000, "km")
  61702. },
  61703. {
  61704. name: "Giga++",
  61705. height: math.unit(6000, "km")
  61706. },
  61707. {
  61708. name: "Terra",
  61709. height: math.unit(70000, "km")
  61710. },
  61711. {
  61712. name: "Terra+",
  61713. height: math.unit(200000, "km")
  61714. },
  61715. {
  61716. name: "Galactic",
  61717. height: math.unit(634200, "lightyears")
  61718. },
  61719. ]
  61720. ))
  61721. characterMakers.push(() => makeCharacter(
  61722. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61723. {
  61724. standard: {
  61725. height: math.unit(1 + 5/12, "feet"),
  61726. name: "Standard",
  61727. image: {
  61728. source: "./media/characters/spade/standard.svg",
  61729. extra: 1794/1703,
  61730. bottom: 115/1909
  61731. }
  61732. },
  61733. disguised: {
  61734. height: math.unit(1 + 5/12, "feet"),
  61735. name: "Disguised",
  61736. image: {
  61737. source: "./media/characters/spade/disguised.svg",
  61738. extra: 1794/1700,
  61739. bottom: 98/1892
  61740. }
  61741. },
  61742. },
  61743. [
  61744. {
  61745. name: "Normal",
  61746. height: math.unit(1 + 5/12, "feet"),
  61747. default: true
  61748. },
  61749. ]
  61750. ))
  61751. characterMakers.push(() => makeCharacter(
  61752. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61753. {
  61754. frontNsfw: {
  61755. height: math.unit(5, "meters"),
  61756. weight: math.unit(2000, "kg"),
  61757. preyCapacity: math.unit(5, "people"),
  61758. name: "Front (NSFW)",
  61759. image: {
  61760. source: "./media/characters/zeanlain/front-nsfw.svg",
  61761. extra: 1087/938,
  61762. bottom: 93/1180
  61763. },
  61764. extraAttributes: {
  61765. "wingspan": {
  61766. name: "Wingspan",
  61767. power: 1,
  61768. type: "length",
  61769. base: math.unit(10, "meters")
  61770. },
  61771. "footSize": {
  61772. name: "Foot Size",
  61773. power: 1,
  61774. type: "length",
  61775. base: math.unit(0.68, "meters")
  61776. },
  61777. "cockLength": {
  61778. name: "Cock Length",
  61779. power: 1,
  61780. type: "length",
  61781. base: math.unit(1.69, "meters")
  61782. },
  61783. "ballVolume": {
  61784. name: "Ball Volume",
  61785. power: 3,
  61786. type: "volume",
  61787. base: math.unit(0.028, "m^3")
  61788. },
  61789. }
  61790. },
  61791. front: {
  61792. height: math.unit(5, "meters"),
  61793. weight: math.unit(2000, "kg"),
  61794. preyCapacity: math.unit(3, "people"),
  61795. name: "Front",
  61796. image: {
  61797. source: "./media/characters/zeanlain/front.svg",
  61798. extra: 1087/938,
  61799. bottom: 93/1180
  61800. },
  61801. extraAttributes: {
  61802. "wingspan": {
  61803. name: "Wingspan",
  61804. power: 1,
  61805. type: "length",
  61806. base: math.unit(10, "meters")
  61807. },
  61808. "footSize": {
  61809. name: "Foot Size",
  61810. power: 1,
  61811. type: "length",
  61812. base: math.unit(0.68, "meters")
  61813. },
  61814. }
  61815. },
  61816. },
  61817. [
  61818. {
  61819. name: "Normal",
  61820. height: math.unit(5, "meters"),
  61821. default: true
  61822. },
  61823. ]
  61824. ))
  61825. characterMakers.push(() => makeCharacter(
  61826. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61827. {
  61828. front: {
  61829. height: math.unit(10, "meters"),
  61830. weight: math.unit(250000, "kg"),
  61831. name: "Front",
  61832. image: {
  61833. source: "./media/characters/airamis/front.svg",
  61834. extra: 865/835,
  61835. bottom: 13/878
  61836. }
  61837. },
  61838. },
  61839. [
  61840. {
  61841. name: "Normal",
  61842. height: math.unit(10, "meters"),
  61843. default: true
  61844. },
  61845. ]
  61846. ))
  61847. characterMakers.push(() => makeCharacter(
  61848. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61849. {
  61850. front: {
  61851. height: math.unit(3 + 3/12, "feet"),
  61852. weight: math.unit(75, "lb"),
  61853. name: "Front",
  61854. image: {
  61855. source: "./media/characters/corra-tourmaline/front.svg",
  61856. extra: 1037/864,
  61857. bottom: 39/1076
  61858. }
  61859. },
  61860. back: {
  61861. height: math.unit(3 + 3/12, "feet"),
  61862. weight: math.unit(75, "lb"),
  61863. name: "Back",
  61864. image: {
  61865. source: "./media/characters/corra-tourmaline/back.svg",
  61866. extra: 1022/849,
  61867. bottom: 26/1048
  61868. }
  61869. },
  61870. dressed: {
  61871. height: math.unit(3 + 3/12, "feet"),
  61872. weight: math.unit(75, "lb"),
  61873. name: "Dressed",
  61874. image: {
  61875. source: "./media/characters/corra-tourmaline/dressed.svg",
  61876. extra: 1037/864,
  61877. bottom: 39/1076
  61878. }
  61879. },
  61880. beans: {
  61881. height: math.unit(0.37, "feet"),
  61882. name: "Beans",
  61883. image: {
  61884. source: "./media/characters/corra-tourmaline/beans.svg"
  61885. }
  61886. },
  61887. },
  61888. [
  61889. {
  61890. name: "Normal",
  61891. height: math.unit(3 + 3/12, "feet"),
  61892. default: true
  61893. },
  61894. {
  61895. name: "Macro",
  61896. height: math.unit(32, "feet")
  61897. },
  61898. ]
  61899. ))
  61900. characterMakers.push(() => makeCharacter(
  61901. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61902. {
  61903. front: {
  61904. height: math.unit(6 + 2/12, "feet"),
  61905. weight: math.unit(203, "lb"),
  61906. name: "Front",
  61907. image: {
  61908. source: "./media/characters/maki-kawa/front.svg",
  61909. extra: 950/890,
  61910. bottom: 62/1012
  61911. }
  61912. },
  61913. back: {
  61914. height: math.unit(6 + 2/12, "feet"),
  61915. weight: math.unit(203, "lb"),
  61916. name: "Back",
  61917. image: {
  61918. source: "./media/characters/maki-kawa/back.svg",
  61919. extra: 953/878,
  61920. bottom: 49/1002
  61921. }
  61922. },
  61923. frontBarista: {
  61924. height: math.unit(6 + 2/12, "feet"),
  61925. weight: math.unit(203, "lb"),
  61926. name: "Front (Barista)",
  61927. image: {
  61928. source: "./media/characters/maki-kawa/front-barista.svg",
  61929. extra: 943/883,
  61930. bottom: 69/1012
  61931. }
  61932. },
  61933. backBarista: {
  61934. height: math.unit(6 + 2/12, "feet"),
  61935. weight: math.unit(203, "lb"),
  61936. name: "Back (Barista)",
  61937. image: {
  61938. source: "./media/characters/maki-kawa/back-barista.svg",
  61939. extra: 953/878,
  61940. bottom: 49/1002
  61941. }
  61942. },
  61943. frontWrestler: {
  61944. height: math.unit(6 + 2/12, "feet"),
  61945. weight: math.unit(203, "lb"),
  61946. name: "Front (Wrestler)",
  61947. image: {
  61948. source: "./media/characters/maki-kawa/front-wrestler.svg",
  61949. extra: 950/890,
  61950. bottom: 62/1012
  61951. }
  61952. },
  61953. backWrestler: {
  61954. height: math.unit(6 + 2/12, "feet"),
  61955. weight: math.unit(203, "lb"),
  61956. name: "Back (Wrestler)",
  61957. image: {
  61958. source: "./media/characters/maki-kawa/back-wrestler.svg",
  61959. extra: 953/878,
  61960. bottom: 49/1002
  61961. }
  61962. },
  61963. headFront: {
  61964. height: math.unit(1.64, "feet"),
  61965. name: "Head (Front)",
  61966. image: {
  61967. source: "./media/characters/maki-kawa/head-front.svg"
  61968. }
  61969. },
  61970. headSide: {
  61971. height: math.unit(1.59, "feet"),
  61972. name: "Head (Side)",
  61973. image: {
  61974. source: "./media/characters/maki-kawa/head-side.svg"
  61975. }
  61976. },
  61977. paw: {
  61978. height: math.unit(0.9, "feet"),
  61979. name: "Paw",
  61980. image: {
  61981. source: "./media/characters/maki-kawa/paw.svg"
  61982. }
  61983. },
  61984. },
  61985. [
  61986. {
  61987. name: "Normal",
  61988. height: math.unit(6 + 2/12, "feet"),
  61989. default: true
  61990. },
  61991. {
  61992. name: "Macro",
  61993. height: math.unit(617, "feet")
  61994. },
  61995. ]
  61996. ))
  61997. characterMakers.push(() => makeCharacter(
  61998. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  61999. {
  62000. front: {
  62001. height: math.unit(10, "feet"),
  62002. weight: math.unit(1500, "lb"),
  62003. name: "Front",
  62004. image: {
  62005. source: "./media/characters/lennox/front.svg",
  62006. extra: 1623/1496,
  62007. bottom: 18/1641
  62008. }
  62009. },
  62010. back: {
  62011. height: math.unit(10, "feet"),
  62012. weight: math.unit(1500, "lb"),
  62013. name: "Back",
  62014. image: {
  62015. source: "./media/characters/lennox/back.svg",
  62016. extra: 1641/1481,
  62017. bottom: 13/1654
  62018. }
  62019. },
  62020. maw: {
  62021. height: math.unit(2.94, "feet"),
  62022. name: "Maw",
  62023. image: {
  62024. source: "./media/characters/lennox/maw.svg"
  62025. }
  62026. },
  62027. },
  62028. [
  62029. {
  62030. name: "Micro",
  62031. height: math.unit(1, "inch")
  62032. },
  62033. {
  62034. name: "Normal",
  62035. height: math.unit(10, "feet"),
  62036. default: true
  62037. },
  62038. {
  62039. name: "Macro",
  62040. height: math.unit(200, "feet")
  62041. },
  62042. ]
  62043. ))
  62044. characterMakers.push(() => makeCharacter(
  62045. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62046. {
  62047. frontDressed: {
  62048. height: math.unit(15 + 7/12, "feet"),
  62049. weight: math.unit(5000, "lb"),
  62050. name: "Front (Dressed)",
  62051. image: {
  62052. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62053. extra: 1136/1023,
  62054. bottom: 51/1187
  62055. }
  62056. },
  62057. backDressed: {
  62058. height: math.unit(15 + 7/12, "feet"),
  62059. weight: math.unit(5000, "lb"),
  62060. name: "Back (Dressed)",
  62061. image: {
  62062. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62063. extra: 2359/2143,
  62064. bottom: 103/2462
  62065. }
  62066. },
  62067. front: {
  62068. height: math.unit(15 + 7/12, "feet"),
  62069. weight: math.unit(5000, "lb"),
  62070. name: "Front",
  62071. image: {
  62072. source: "./media/characters/vyse-iron-thunder/front.svg",
  62073. extra: 1136/1023,
  62074. bottom: 51/1187
  62075. }
  62076. },
  62077. hand: {
  62078. height: math.unit(2.36, "feet"),
  62079. name: "Hand",
  62080. image: {
  62081. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62082. }
  62083. },
  62084. foot: {
  62085. height: math.unit(1.72, "feet"),
  62086. name: "Foot",
  62087. image: {
  62088. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62089. }
  62090. },
  62091. mouth: {
  62092. height: math.unit(2, "feet"),
  62093. name: "Mouth",
  62094. image: {
  62095. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62096. }
  62097. },
  62098. eye: {
  62099. height: math.unit(0.58, "feet"),
  62100. name: "Eye",
  62101. image: {
  62102. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62103. }
  62104. },
  62105. },
  62106. [
  62107. {
  62108. name: "Normal",
  62109. height: math.unit(15 + 7/12, "feet"),
  62110. default: true
  62111. },
  62112. {
  62113. name: "Macro",
  62114. height: math.unit(157, "feet")
  62115. },
  62116. {
  62117. name: "Macro+",
  62118. height: math.unit(1570, "feet")
  62119. },
  62120. {
  62121. name: "Macro++",
  62122. height: math.unit(15700, "feet")
  62123. },
  62124. {
  62125. name: "Macro+++",
  62126. height: math.unit(157000, "feet")
  62127. },
  62128. {
  62129. name: "Macro++++",
  62130. height: math.unit(1570000, "feet")
  62131. },
  62132. ]
  62133. ))
  62134. characterMakers.push(() => makeCharacter(
  62135. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62136. {
  62137. side: {
  62138. height: math.unit(6, "feet"),
  62139. weight: math.unit(115, "lb"),
  62140. name: "Side",
  62141. image: {
  62142. source: "./media/characters/moonbeam/side.svg",
  62143. extra: 839/485,
  62144. bottom: 60/899
  62145. }
  62146. },
  62147. },
  62148. [
  62149. {
  62150. name: "Normal",
  62151. height: math.unit(6, "feet"),
  62152. default: true
  62153. },
  62154. ]
  62155. ))
  62156. characterMakers.push(() => makeCharacter(
  62157. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62158. {
  62159. front: {
  62160. height: math.unit(3500, "miles"),
  62161. weight: math.unit(1659, "petatonnes"),
  62162. name: "Front",
  62163. image: {
  62164. source: "./media/characters/baltica/front.svg",
  62165. extra: 429/428,
  62166. bottom: 41/470
  62167. }
  62168. },
  62169. back: {
  62170. height: math.unit(3500, "miles"),
  62171. weight: math.unit(1659, "petatonnes"),
  62172. name: "Back",
  62173. image: {
  62174. source: "./media/characters/baltica/back.svg",
  62175. extra: 452/451,
  62176. bottom: 8/460
  62177. }
  62178. },
  62179. },
  62180. [
  62181. {
  62182. name: "Gigamacro",
  62183. height: math.unit(3500, "miles"),
  62184. default: true
  62185. },
  62186. ]
  62187. ))
  62188. characterMakers.push(() => makeCharacter(
  62189. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62190. {
  62191. front: {
  62192. height: math.unit(6 + 10/12, "feet"),
  62193. weight: math.unit(200, "lb"),
  62194. name: "Front",
  62195. image: {
  62196. source: "./media/characters/shadow-wolf/front.svg",
  62197. extra: 1931/1760,
  62198. bottom: 88/2019
  62199. }
  62200. },
  62201. },
  62202. [
  62203. {
  62204. name: "Normal",
  62205. height: math.unit(6 + 10/12, "feet"),
  62206. default: true
  62207. },
  62208. ]
  62209. ))
  62210. characterMakers.push(() => makeCharacter(
  62211. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62212. {
  62213. front: {
  62214. height: math.unit(5 + 10/12, "feet"),
  62215. name: "Front",
  62216. image: {
  62217. source: "./media/characters/quincy-praying-mantis/front.svg",
  62218. extra: 1055/891,
  62219. bottom: 92/1147
  62220. }
  62221. },
  62222. soles: {
  62223. height: math.unit(0.85, "feet"),
  62224. name: "Soles",
  62225. image: {
  62226. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62227. extra: 429/324,
  62228. bottom: 89/518
  62229. },
  62230. extraAttributes: {
  62231. "shoeSize": {
  62232. name: "Shoe Size",
  62233. power: 1,
  62234. type: "length",
  62235. base: math.unit(23, "ShoeSizeMensUS"),
  62236. defaultUnit: "ShoeSizeMensUS"
  62237. },
  62238. }
  62239. },
  62240. foot: {
  62241. height: math.unit(0.72, "feet"),
  62242. name: "Foot",
  62243. image: {
  62244. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62245. extra: 349/349,
  62246. bottom: 76/425
  62247. }
  62248. },
  62249. },
  62250. [
  62251. {
  62252. name: "Normal",
  62253. height: math.unit(5 + 10/12, "feet"),
  62254. default: true
  62255. },
  62256. ]
  62257. ))
  62258. characterMakers.push(() => makeCharacter(
  62259. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62260. {
  62261. front: {
  62262. height: math.unit(6, "feet"),
  62263. name: "Front",
  62264. image: {
  62265. source: "./media/characters/christopher-redwood/front.svg",
  62266. extra: 1402/1341,
  62267. bottom: 23/1425
  62268. }
  62269. },
  62270. back: {
  62271. height: math.unit(6, "feet"),
  62272. name: "Back",
  62273. image: {
  62274. source: "./media/characters/christopher-redwood/back.svg",
  62275. extra: 1406/1345,
  62276. bottom: 36/1442
  62277. }
  62278. },
  62279. head: {
  62280. height: math.unit(1.685, "feet"),
  62281. name: "Head",
  62282. image: {
  62283. source: "./media/characters/christopher-redwood/head.svg"
  62284. }
  62285. },
  62286. },
  62287. [
  62288. {
  62289. name: "Normal",
  62290. height: math.unit(6, "feet"),
  62291. default: true
  62292. },
  62293. ]
  62294. ))
  62295. characterMakers.push(() => makeCharacter(
  62296. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62297. {
  62298. front: {
  62299. height: math.unit(1.9, "meters"),
  62300. weight: math.unit(140, "lb"),
  62301. name: "Front",
  62302. image: {
  62303. source: "./media/characters/kara-fox/front.svg",
  62304. extra: 766/711,
  62305. bottom: 41/807
  62306. }
  62307. },
  62308. back: {
  62309. height: math.unit(1.9, "meters"),
  62310. weight: math.unit(140, "lb"),
  62311. name: "Back",
  62312. image: {
  62313. source: "./media/characters/kara-fox/back.svg",
  62314. extra: 766/596,
  62315. bottom: 29/795
  62316. }
  62317. },
  62318. maw: {
  62319. height: math.unit(0.78, "feet"),
  62320. name: "Maw",
  62321. image: {
  62322. source: "./media/characters/kara-fox/maw.svg"
  62323. }
  62324. },
  62325. pawpads: {
  62326. height: math.unit(0.96, "feet"),
  62327. name: "Pawpads",
  62328. image: {
  62329. source: "./media/characters/kara-fox/pawpads.svg"
  62330. }
  62331. },
  62332. },
  62333. [
  62334. {
  62335. name: "Normal",
  62336. height: math.unit(1.9, "meters"),
  62337. default: true
  62338. },
  62339. {
  62340. name: "Giantess",
  62341. height: math.unit(80, "meters")
  62342. },
  62343. ]
  62344. ))
  62345. characterMakers.push(() => makeCharacter(
  62346. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62347. {
  62348. front: {
  62349. height: math.unit(12, "feet"),
  62350. name: "Front",
  62351. image: {
  62352. source: "./media/characters/naomi-espeon/front.svg",
  62353. extra: 892/797,
  62354. bottom: 5/897
  62355. }
  62356. },
  62357. back: {
  62358. height: math.unit(12, "feet"),
  62359. name: "Back",
  62360. image: {
  62361. source: "./media/characters/naomi-espeon/back.svg",
  62362. extra: 890/785,
  62363. bottom: 12/902
  62364. }
  62365. },
  62366. },
  62367. [
  62368. {
  62369. name: "Normal",
  62370. height: math.unit(12, "feet"),
  62371. default: true
  62372. },
  62373. ]
  62374. ))
  62375. //characters
  62376. function makeCharacters() {
  62377. const results = [];
  62378. characterMakers.forEach(character => {
  62379. results.push(character());
  62380. });
  62381. return results;
  62382. }